move code from private rep
diff --git a/.gitignore b/.gitignore
index aa4ab68..df3f905 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,4 +8,7 @@
 _docs/_config.yml
 _docs/_data/
 _docs/_docs/
-_docs/tmp/
\ No newline at end of file
+_docs/tmp/
+/build
+./secret.js
+.vscode/
\ No newline at end of file
diff --git a/gulpfile.js b/gulpfile.js
new file mode 100644
index 0000000..1317d1c
--- /dev/null
+++ b/gulpfile.js
@@ -0,0 +1,134 @@
+import browserSync from 'browser-sync';
+import gulp from 'gulp';
+import gulpPlumber from 'gulp-plumber';
+import pug from 'gulp-pug';
+import replace from 'gulp-replace';
+import prettier from 'gulp-prettier';
+import imagemin, {mozjpeg, gifsicle, svgo} from 'gulp-imagemin';
+import imageminPngquant from 'imagemin-pngquant'
+import clean from 'gulp-clean';
+import vinylFtp from 'vinyl-ftp';
+
+import {readFileSync} from 'fs';
+
+
+let pugPath = "";
+
+
+
+//Компилятор PUG -> HTML
+const html = () => {
+    let pugTruePath = 'src/**/' + pugPath;
+    if(!pugPath || pugPath.includes("_")){
+        pugTruePath = ['src/**/*.pug', '!src/_*/**'];
+    }
+    return gulp.src(pugTruePath)
+        .pipe(gulpPlumber())
+        .pipe(pug({
+            pretty: false,
+        }))
+        .pipe(replace('/public/', '/'))
+        .pipe(prettier({
+            singleQuote: true,
+            parser:"html",
+            tabWidth: 2,
+            useTabs: false,
+            htmlWhitespaceSensitivity:"css",
+            printWidth:240,
+        }))
+        .on('data', function(file){
+            console.log('▒ PUG→HTML: ' + file.path.replace(file.cwd, '') );
+        })
+        .pipe(gulp.dest('./public')).on('end', (e) => {
+        });
+}
+
+
+
+//Оптимизаци изображений
+export function img(){
+    return gulp.src('public/img/**/*')
+    .pipe(imagemin([
+        gifsicle({interlaced: true}),
+        mozjpeg({quality: 90, progressive: true}),
+        imageminPngquant(),
+        svgo()
+    ]))
+    .pipe(gulp.dest('build/img'))
+}
+
+
+export function clearBuild() {
+    return gulp.src('build/*').pipe(clean());
+}
+
+
+export function buildCode(){
+    return gulp.src('public/**/*', "!public/img/**/*").pipe(gulp.dest('build')).on('end', (e) => {
+        console.log("Код перемещен");
+    });
+}
+
+
+
+
+//Слежка за файлами, обновление браузера
+export const watchpug = () => {
+    browserSync.init({
+        server: {
+            baseDir: "./public",
+            open: true,
+            cors: true,
+            notify: false,
+        },
+        watch: true,
+    });
+    gulp.watch(['src/**/*.pug', 'src/**/*.html'], {
+
+    }).on('change', function(pathPug, stats){
+        pugPath = null;
+        console.log("Изм.: " + pathPug);
+        if(!pathPug.includes("_components")){
+            let pathArray = pathPug.split("\\");
+            let filename = pathArray[pathArray.length - 1];
+            pugPath = filename;
+        }
+        html();
+
+
+    });
+}
+
+
+
+
+export const ftp = (cb) => {
+    let ftpJson = JSON.parse(readFileSync('./.vscode/sftp.json'));
+
+    //Отправка на FTP
+    let connection = vinylFtp.create( {
+        host:     ftpJson.host,
+        user:     ftpJson.username,
+        password: ftpJson.password,
+        parallel: ftpJson.port,
+        log: console.log,
+        port: 21,
+    } );
+    let connFolder = ftpJson.remotePath;
+
+
+    let globs = [
+        './build/**',
+        './build/**/.htaccess',
+    ];
+    return gulp.src( globs, { buffer: false } )
+        .pipe( connection.newerOrDifferentSize( connFolder ) )
+        .pipe( connection.dest( connFolder ) );
+}
+
+
+
+
+export let build = gulp.series(html, clearBuild, buildCode, img);
+export let fix = gulp.series(html, clearBuild, buildCode);
+export default gulp.series(html, watchpug);
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..9abab96
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,19394 @@
+{
+  "name": "extrasites",
+  "version": "1.0.0",
+  "lockfileVersion": 2,
+  "requires": true,
+  "packages": {
+    "": {
+      "name": "extrasites",
+      "version": "1.0.0",
+      "license": "ISC",
+      "devDependencies": {
+        "browser-sync": "^*",
+        "gulp": "^4.0.2",
+        "gulp-clean": "^*",
+        "gulp-file-sync": "^*",
+        "gulp-imagemin": "^8.0.0",
+        "gulp-plumber": "^*",
+        "gulp-prettier": "^*",
+        "gulp-pug": "^*",
+        "gulp-replace": "^1.1.3",
+        "gulp-util": "^*",
+        "imagemin": "^*",
+        "imagemin-jpeg-recompress": "^*",
+        "imagemin-pngquant": "^*",
+        "vinyl-ftp": "^*"
+      }
+    },
+    "node_modules/@babel/helper-validator-identifier": {
+      "version": "7.15.7",
+      "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz",
+      "integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==",
+      "dev": true,
+      "engines": {
+        "node": ">=6.9.0"
+      }
+    },
+    "node_modules/@babel/parser": {
+      "version": "7.16.2",
+      "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.2.tgz",
+      "integrity": "sha512-RUVpT0G2h6rOZwqLDTrKk7ksNv7YpAilTnYe1/Q+eDjxEceRMKVWbCsX7t8h6C1qCFi/1Y8WZjcEPBAFG27GPw==",
+      "dev": true,
+      "bin": {
+        "parser": "bin/babel-parser.js"
+      },
+      "engines": {
+        "node": ">=6.0.0"
+      }
+    },
+    "node_modules/@babel/types": {
+      "version": "7.16.0",
+      "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz",
+      "integrity": "sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==",
+      "dev": true,
+      "dependencies": {
+        "@babel/helper-validator-identifier": "^7.15.7",
+        "to-fast-properties": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=6.9.0"
+      }
+    },
+    "node_modules/@nodelib/fs.scandir": {
+      "version": "2.1.5",
+      "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
+      "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
+      "dev": true,
+      "dependencies": {
+        "@nodelib/fs.stat": "2.0.5",
+        "run-parallel": "^1.1.9"
+      },
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/@nodelib/fs.stat": {
+      "version": "2.0.5",
+      "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
+      "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
+      "dev": true,
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/@nodelib/fs.walk": {
+      "version": "1.2.8",
+      "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
+      "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
+      "dev": true,
+      "dependencies": {
+        "@nodelib/fs.scandir": "2.1.5",
+        "fastq": "^1.6.0"
+      },
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/@sindresorhus/is": {
+      "version": "0.7.0",
+      "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz",
+      "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/@tokenizer/token": {
+      "version": "0.3.0",
+      "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz",
+      "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==",
+      "dev": true
+    },
+    "node_modules/@trysound/sax": {
+      "version": "0.2.0",
+      "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz",
+      "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">=10.13.0"
+      }
+    },
+    "node_modules/@types/expect": {
+      "version": "1.20.4",
+      "resolved": "https://registry.npmjs.org/@types/expect/-/expect-1.20.4.tgz",
+      "integrity": "sha512-Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg==",
+      "dev": true
+    },
+    "node_modules/@types/node": {
+      "version": "14.17.32",
+      "resolved": "https://registry.npmjs.org/@types/node/-/node-14.17.32.tgz",
+      "integrity": "sha512-JcII3D5/OapPGx+eJ+Ik1SQGyt6WvuqdRfh9jUwL6/iHGjmyOriBDciBUu7lEIBTL2ijxwrR70WUnw5AEDmFvQ==",
+      "dev": true
+    },
+    "node_modules/@types/vinyl": {
+      "version": "2.0.6",
+      "resolved": "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.6.tgz",
+      "integrity": "sha512-ayJ0iOCDNHnKpKTgBG6Q6JOnHTj9zFta+3j2b8Ejza0e4cvRyMn0ZoLEmbPrTHe5YYRlDYPvPWVdV4cTaRyH7g==",
+      "dev": true,
+      "dependencies": {
+        "@types/expect": "^1.20.4",
+        "@types/node": "*"
+      }
+    },
+    "node_modules/accepts": {
+      "version": "1.3.7",
+      "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz",
+      "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==",
+      "dev": true,
+      "dependencies": {
+        "mime-types": "~2.1.24",
+        "negotiator": "0.6.2"
+      },
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/acorn": {
+      "version": "7.4.1",
+      "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
+      "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
+      "dev": true,
+      "bin": {
+        "acorn": "bin/acorn"
+      },
+      "engines": {
+        "node": ">=0.4.0"
+      }
+    },
+    "node_modules/after": {
+      "version": "0.8.2",
+      "resolved": "https://registry.npmjs.org/after/-/after-0.8.2.tgz",
+      "integrity": "sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=",
+      "dev": true
+    },
+    "node_modules/ansi-colors": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz",
+      "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==",
+      "dev": true,
+      "dependencies": {
+        "ansi-wrap": "^0.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/ansi-cyan": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/ansi-cyan/-/ansi-cyan-0.1.1.tgz",
+      "integrity": "sha1-U4rlKK+JgvKK4w2G8vF0VtJgmHM=",
+      "dev": true,
+      "dependencies": {
+        "ansi-wrap": "0.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/ansi-gray": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz",
+      "integrity": "sha1-KWLPVOyXksSFEKPetSRDaGHvclE=",
+      "dev": true,
+      "dependencies": {
+        "ansi-wrap": "0.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/ansi-red": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz",
+      "integrity": "sha1-jGOPnRCAgAo1PJwoyKgcpHBdlGw=",
+      "dev": true,
+      "dependencies": {
+        "ansi-wrap": "0.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/ansi-regex": {
+      "version": "5.0.1",
+      "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+      "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/ansi-styles": {
+      "version": "4.3.0",
+      "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+      "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+      "dev": true,
+      "dependencies": {
+        "color-convert": "^2.0.1"
+      },
+      "engines": {
+        "node": ">=8"
+      },
+      "funding": {
+        "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+      }
+    },
+    "node_modules/ansi-wrap": {
+      "version": "0.1.0",
+      "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz",
+      "integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/anymatch": {
+      "version": "3.1.2",
+      "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz",
+      "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==",
+      "dev": true,
+      "dependencies": {
+        "normalize-path": "^3.0.0",
+        "picomatch": "^2.0.4"
+      },
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/append-buffer": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz",
+      "integrity": "sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE=",
+      "dev": true,
+      "dependencies": {
+        "buffer-equal": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/arch": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz",
+      "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/feross"
+        },
+        {
+          "type": "patreon",
+          "url": "https://www.patreon.com/feross"
+        },
+        {
+          "type": "consulting",
+          "url": "https://feross.org/support"
+        }
+      ]
+    },
+    "node_modules/archive-type": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz",
+      "integrity": "sha1-+S5yIzBW38aWlHJ0nCZ72wRrHXA=",
+      "dev": true,
+      "dependencies": {
+        "file-type": "^4.2.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/archive-type/node_modules/file-type": {
+      "version": "4.4.0",
+      "resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz",
+      "integrity": "sha1-G2AOX8ofvcboDApwxxyNul95BsU=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/archy": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz",
+      "integrity": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=",
+      "dev": true
+    },
+    "node_modules/arr-diff": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz",
+      "integrity": "sha1-aHwydYFjWI/vfeezb6vklesaOZo=",
+      "dev": true,
+      "dependencies": {
+        "arr-flatten": "^1.0.1",
+        "array-slice": "^0.2.3"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/arr-diff/node_modules/array-slice": {
+      "version": "0.2.3",
+      "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz",
+      "integrity": "sha1-3Tz7gO15c6dRF82sabC5nshhhvU=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "make-iterator": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/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==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "make-iterator": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/arr-union": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-2.1.0.tgz",
+      "integrity": "sha1-IPnqtexw9cfSFbEHexw5Fh0pLH0=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/array-differ": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz",
+      "integrity": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/array-each": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz",
+      "integrity": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/array-initial": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz",
+      "integrity": "sha1-L6dLJnOTccOUe9enrcc74zSz15U=",
+      "dev": true,
+      "dependencies": {
+        "array-slice": "^1.0.0",
+        "is-number": "^4.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/array-initial/node_modules/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==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/array-last": {
+      "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,
+      "dependencies": {
+        "is-number": "^4.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/array-last/node_modules/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==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/array-slice": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz",
+      "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "default-compare": "^1.0.0",
+        "get-value": "^2.0.6",
+        "kind-of": "^5.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/array-union": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/array-union/-/array-union-3.0.1.tgz",
+      "integrity": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==",
+      "dev": true,
+      "engines": {
+        "node": ">=12"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/array-uniq": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
+      "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/array-unique": {
+      "version": "0.3.2",
+      "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
+      "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/arraybuffer.slice": {
+      "version": "0.0.7",
+      "resolved": "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz",
+      "integrity": "sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog==",
+      "dev": true
+    },
+    "node_modules/asap": {
+      "version": "2.0.6",
+      "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
+      "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=",
+      "dev": true
+    },
+    "node_modules/assert-never": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/assert-never/-/assert-never-1.2.1.tgz",
+      "integrity": "sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==",
+      "dev": true
+    },
+    "node_modules/assign-symbols": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
+      "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/async": {
+      "version": "1.5.2",
+      "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
+      "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=",
+      "dev": true
+    },
+    "node_modules/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,
+      "dependencies": {
+        "end-of-stream": "^1.1.0",
+        "once": "^1.3.2",
+        "process-nextick-args": "^2.0.0",
+        "stream-exhaust": "^1.0.1"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/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==",
+      "dev": true
+    },
+    "node_modules/async-each-series": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/async-each-series/-/async-each-series-0.1.1.tgz",
+      "integrity": "sha1-dhfBkXQB/Yykooqtzj266Yr+tDI=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.8.0"
+      }
+    },
+    "node_modules/async-settle": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz",
+      "integrity": "sha1-HQqRS7Aldb7IqPOnTlCA9yssDGs=",
+      "dev": true,
+      "dependencies": {
+        "async-done": "^1.2.2"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/atob": {
+      "version": "2.1.2",
+      "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
+      "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==",
+      "dev": true,
+      "bin": {
+        "atob": "bin/atob.js"
+      },
+      "engines": {
+        "node": ">= 4.5.0"
+      }
+    },
+    "node_modules/axios": {
+      "version": "0.21.4",
+      "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz",
+      "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",
+      "dev": true,
+      "dependencies": {
+        "follow-redirects": "^1.14.0"
+      }
+    },
+    "node_modules/babel-walk": {
+      "version": "3.0.0-canary-5",
+      "resolved": "https://registry.npmjs.org/babel-walk/-/babel-walk-3.0.0-canary-5.tgz",
+      "integrity": "sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==",
+      "dev": true,
+      "dependencies": {
+        "@babel/types": "^7.9.6"
+      },
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/bach": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz",
+      "integrity": "sha1-Szzpa/JxNPeaG0FKUcFONMO9mIA=",
+      "dev": true,
+      "dependencies": {
+        "arr-filter": "^1.1.1",
+        "arr-flatten": "^1.0.1",
+        "arr-map": "^2.0.0",
+        "array-each": "^1.0.0",
+        "array-initial": "^1.0.0",
+        "array-last": "^1.1.1",
+        "async-done": "^1.2.2",
+        "async-settle": "^1.0.0",
+        "now-and-later": "^2.0.0"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/backo2": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz",
+      "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=",
+      "dev": true
+    },
+    "node_modules/balanced-match": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+      "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+      "dev": true
+    },
+    "node_modules/base": {
+      "version": "0.11.2",
+      "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
+      "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
+      "dev": true,
+      "dependencies": {
+        "cache-base": "^1.0.1",
+        "class-utils": "^0.3.5",
+        "component-emitter": "^1.2.1",
+        "define-property": "^1.0.0",
+        "isobject": "^3.0.1",
+        "mixin-deep": "^1.2.0",
+        "pascalcase": "^0.1.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/base/node_modules/define-property": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
+      "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
+      "dev": true,
+      "dependencies": {
+        "is-descriptor": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/base64-arraybuffer": {
+      "version": "0.1.4",
+      "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz",
+      "integrity": "sha1-mBjHngWbE1X5fgQooBfIOOkLqBI=",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.6.0"
+      }
+    },
+    "node_modules/base64-js": {
+      "version": "1.5.1",
+      "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
+      "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/feross"
+        },
+        {
+          "type": "patreon",
+          "url": "https://www.patreon.com/feross"
+        },
+        {
+          "type": "consulting",
+          "url": "https://feross.org/support"
+        }
+      ]
+    },
+    "node_modules/base64id": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz",
+      "integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==",
+      "dev": true,
+      "engines": {
+        "node": "^4.5.0 || >= 5.9"
+      }
+    },
+    "node_modules/batch": {
+      "version": "0.6.1",
+      "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz",
+      "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=",
+      "dev": true
+    },
+    "node_modules/beeper": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz",
+      "integrity": "sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/bin-build": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/bin-build/-/bin-build-3.0.0.tgz",
+      "integrity": "sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA==",
+      "dev": true,
+      "dependencies": {
+        "decompress": "^4.0.0",
+        "download": "^6.2.2",
+        "execa": "^0.7.0",
+        "p-map-series": "^1.0.0",
+        "tempfile": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/bin-build/node_modules/cross-spawn": {
+      "version": "5.1.0",
+      "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz",
+      "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=",
+      "dev": true,
+      "dependencies": {
+        "lru-cache": "^4.0.1",
+        "shebang-command": "^1.2.0",
+        "which": "^1.2.9"
+      }
+    },
+    "node_modules/bin-build/node_modules/execa": {
+      "version": "0.7.0",
+      "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz",
+      "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=",
+      "dev": true,
+      "dependencies": {
+        "cross-spawn": "^5.0.1",
+        "get-stream": "^3.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"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/bin-build/node_modules/get-stream": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
+      "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/bin-check": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz",
+      "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==",
+      "dev": true,
+      "dependencies": {
+        "execa": "^0.7.0",
+        "executable": "^4.1.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/bin-check/node_modules/cross-spawn": {
+      "version": "5.1.0",
+      "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz",
+      "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=",
+      "dev": true,
+      "dependencies": {
+        "lru-cache": "^4.0.1",
+        "shebang-command": "^1.2.0",
+        "which": "^1.2.9"
+      }
+    },
+    "node_modules/bin-check/node_modules/execa": {
+      "version": "0.7.0",
+      "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz",
+      "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=",
+      "dev": true,
+      "dependencies": {
+        "cross-spawn": "^5.0.1",
+        "get-stream": "^3.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"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/bin-check/node_modules/get-stream": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
+      "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/bin-version": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz",
+      "integrity": "sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ==",
+      "dev": true,
+      "dependencies": {
+        "execa": "^1.0.0",
+        "find-versions": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/bin-version-check": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz",
+      "integrity": "sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ==",
+      "dev": true,
+      "dependencies": {
+        "bin-version": "^3.0.0",
+        "semver": "^5.6.0",
+        "semver-truncate": "^1.1.2"
+      },
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/bin-wrapper": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-4.1.0.tgz",
+      "integrity": "sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q==",
+      "dev": true,
+      "dependencies": {
+        "bin-check": "^4.1.0",
+        "bin-version-check": "^4.0.0",
+        "download": "^7.1.0",
+        "import-lazy": "^3.1.0",
+        "os-filter-obj": "^2.0.0",
+        "pify": "^4.0.1"
+      },
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/bin-wrapper/node_modules/download": {
+      "version": "7.1.0",
+      "resolved": "https://registry.npmjs.org/download/-/download-7.1.0.tgz",
+      "integrity": "sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==",
+      "dev": true,
+      "dependencies": {
+        "archive-type": "^4.0.0",
+        "caw": "^2.0.1",
+        "content-disposition": "^0.5.2",
+        "decompress": "^4.2.0",
+        "ext-name": "^5.0.0",
+        "file-type": "^8.1.0",
+        "filenamify": "^2.0.0",
+        "get-stream": "^3.0.0",
+        "got": "^8.3.1",
+        "make-dir": "^1.2.0",
+        "p-event": "^2.1.0",
+        "pify": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/bin-wrapper/node_modules/download/node_modules/pify": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+      "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/bin-wrapper/node_modules/file-type": {
+      "version": "8.1.0",
+      "resolved": "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz",
+      "integrity": "sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==",
+      "dev": true,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/bin-wrapper/node_modules/get-stream": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
+      "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/bin-wrapper/node_modules/got": {
+      "version": "8.3.2",
+      "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz",
+      "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==",
+      "dev": true,
+      "dependencies": {
+        "@sindresorhus/is": "^0.7.0",
+        "cacheable-request": "^2.1.1",
+        "decompress-response": "^3.3.0",
+        "duplexer3": "^0.1.4",
+        "get-stream": "^3.0.0",
+        "into-stream": "^3.1.0",
+        "is-retry-allowed": "^1.1.0",
+        "isurl": "^1.0.0-alpha5",
+        "lowercase-keys": "^1.0.0",
+        "mimic-response": "^1.0.0",
+        "p-cancelable": "^0.4.0",
+        "p-timeout": "^2.0.1",
+        "pify": "^3.0.0",
+        "safe-buffer": "^5.1.1",
+        "timed-out": "^4.0.1",
+        "url-parse-lax": "^3.0.0",
+        "url-to-options": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/bin-wrapper/node_modules/got/node_modules/pify": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+      "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/bin-wrapper/node_modules/p-cancelable": {
+      "version": "0.4.1",
+      "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz",
+      "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/bin-wrapper/node_modules/p-event": {
+      "version": "2.3.1",
+      "resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz",
+      "integrity": "sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==",
+      "dev": true,
+      "dependencies": {
+        "p-timeout": "^2.0.1"
+      },
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/bin-wrapper/node_modules/p-timeout": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz",
+      "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==",
+      "dev": true,
+      "dependencies": {
+        "p-finally": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/bin-wrapper/node_modules/prepend-http": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz",
+      "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/bin-wrapper/node_modules/url-parse-lax": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz",
+      "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=",
+      "dev": true,
+      "dependencies": {
+        "prepend-http": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/binary-extensions": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
+      "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/binaryextensions": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/binaryextensions/-/binaryextensions-2.3.0.tgz",
+      "integrity": "sha512-nAihlQsYGyc5Bwq6+EsubvANYGExeJKHDO3RjnvwU042fawQTQfM3Kxn7IHUXQOz4bzfwsGYYHGSvXyW4zOGLg==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.8"
+      },
+      "funding": {
+        "url": "https://bevry.me/fund"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "file-uri-to-path": "1.0.0"
+      }
+    },
+    "node_modules/bl": {
+      "version": "1.2.3",
+      "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz",
+      "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==",
+      "dev": true,
+      "dependencies": {
+        "readable-stream": "^2.3.5",
+        "safe-buffer": "^5.1.1"
+      }
+    },
+    "node_modules/blob": {
+      "version": "0.0.5",
+      "resolved": "https://registry.npmjs.org/blob/-/blob-0.0.5.tgz",
+      "integrity": "sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig==",
+      "dev": true
+    },
+    "node_modules/boolbase": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
+      "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=",
+      "dev": true,
+      "optional": true
+    },
+    "node_modules/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,
+      "dependencies": {
+        "balanced-match": "^1.0.0",
+        "concat-map": "0.0.1"
+      }
+    },
+    "node_modules/braces": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
+      "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+      "dev": true,
+      "dependencies": {
+        "fill-range": "^7.0.1"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/browser-sync": {
+      "version": "2.27.7",
+      "resolved": "https://registry.npmjs.org/browser-sync/-/browser-sync-2.27.7.tgz",
+      "integrity": "sha512-9ElnnA/u+s2Jd+IgY+2SImB+sAEIteHsMG0NR96m7Ph/wztpvJCUpyC2on1KqmG9iAp941j+5jfmd34tEguGbg==",
+      "dev": true,
+      "dependencies": {
+        "browser-sync-client": "^2.27.7",
+        "browser-sync-ui": "^2.27.7",
+        "bs-recipes": "1.3.4",
+        "bs-snippet-injector": "^2.0.1",
+        "chokidar": "^3.5.1",
+        "connect": "3.6.6",
+        "connect-history-api-fallback": "^1",
+        "dev-ip": "^1.0.1",
+        "easy-extender": "^2.3.4",
+        "eazy-logger": "3.1.0",
+        "etag": "^1.8.1",
+        "fresh": "^0.5.2",
+        "fs-extra": "3.0.1",
+        "http-proxy": "^1.18.1",
+        "immutable": "^3",
+        "localtunnel": "^2.0.1",
+        "micromatch": "^4.0.2",
+        "opn": "5.3.0",
+        "portscanner": "2.1.1",
+        "qs": "6.2.3",
+        "raw-body": "^2.3.2",
+        "resp-modifier": "6.0.2",
+        "rx": "4.1.0",
+        "send": "0.16.2",
+        "serve-index": "1.9.1",
+        "serve-static": "1.13.2",
+        "server-destroy": "1.0.1",
+        "socket.io": "2.4.0",
+        "ua-parser-js": "1.0.2",
+        "yargs": "^15.4.1"
+      },
+      "bin": {
+        "browser-sync": "dist/bin.js"
+      },
+      "engines": {
+        "node": ">= 8.0.0"
+      }
+    },
+    "node_modules/browser-sync-client": {
+      "version": "2.27.7",
+      "resolved": "https://registry.npmjs.org/browser-sync-client/-/browser-sync-client-2.27.7.tgz",
+      "integrity": "sha512-wKg9UP9a4sCIkBBAXUdbkdWFJzfSAQizGh+nC19W9y9zOo9s5jqeYRFUUbs7x5WKhjtspT+xetVp9AtBJ6BmWg==",
+      "dev": true,
+      "dependencies": {
+        "etag": "1.8.1",
+        "fresh": "0.5.2",
+        "mitt": "^1.1.3",
+        "rxjs": "^5.5.6"
+      },
+      "engines": {
+        "node": ">=8.0.0"
+      }
+    },
+    "node_modules/browser-sync-ui": {
+      "version": "2.27.7",
+      "resolved": "https://registry.npmjs.org/browser-sync-ui/-/browser-sync-ui-2.27.7.tgz",
+      "integrity": "sha512-Bt4OQpx9p18OIzk0KKyu7jqlvmjacasUlk8ARY3uuIyiFWSBiRgr2i6XY8dEMF14DtbooaEBOpHEu9VCYvMcCw==",
+      "dev": true,
+      "dependencies": {
+        "async-each-series": "0.1.1",
+        "connect-history-api-fallback": "^1",
+        "immutable": "^3",
+        "server-destroy": "1.0.1",
+        "socket.io-client": "^2.4.0",
+        "stream-throttle": "^0.1.3"
+      }
+    },
+    "node_modules/bs-recipes": {
+      "version": "1.3.4",
+      "resolved": "https://registry.npmjs.org/bs-recipes/-/bs-recipes-1.3.4.tgz",
+      "integrity": "sha1-DS1NSKcYyMBEdp/cT4lZLci2lYU=",
+      "dev": true
+    },
+    "node_modules/bs-snippet-injector": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/bs-snippet-injector/-/bs-snippet-injector-2.0.1.tgz",
+      "integrity": "sha1-YbU5PxH1JVntEgaTEANDtu2wTdU=",
+      "dev": true
+    },
+    "node_modules/buffer": {
+      "version": "5.7.1",
+      "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
+      "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/feross"
+        },
+        {
+          "type": "patreon",
+          "url": "https://www.patreon.com/feross"
+        },
+        {
+          "type": "consulting",
+          "url": "https://feross.org/support"
+        }
+      ],
+      "dependencies": {
+        "base64-js": "^1.3.1",
+        "ieee754": "^1.1.13"
+      }
+    },
+    "node_modules/buffer-alloc": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz",
+      "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==",
+      "dev": true,
+      "dependencies": {
+        "buffer-alloc-unsafe": "^1.1.0",
+        "buffer-fill": "^1.0.0"
+      }
+    },
+    "node_modules/buffer-alloc-unsafe": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz",
+      "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==",
+      "dev": true
+    },
+    "node_modules/buffer-crc32": {
+      "version": "0.2.13",
+      "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
+      "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=",
+      "dev": true,
+      "engines": {
+        "node": "*"
+      }
+    },
+    "node_modules/buffer-equal": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz",
+      "integrity": "sha1-WWFrSYME1Var1GaWayLu2j7KX74=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.4.0"
+      }
+    },
+    "node_modules/buffer-fill": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz",
+      "integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw=",
+      "dev": true
+    },
+    "node_modules/buffer-from": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
+      "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
+      "dev": true
+    },
+    "node_modules/bytes": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz",
+      "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.8"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "collection-visit": "^1.0.0",
+        "component-emitter": "^1.2.1",
+        "get-value": "^2.0.6",
+        "has-value": "^1.0.0",
+        "isobject": "^3.0.1",
+        "set-value": "^2.0.0",
+        "to-object-path": "^0.3.0",
+        "union-value": "^1.0.0",
+        "unset-value": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/cacheable-request": {
+      "version": "2.1.4",
+      "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz",
+      "integrity": "sha1-DYCIAbY0KtM8kd+dC0TcCbkeXD0=",
+      "dev": true,
+      "dependencies": {
+        "clone-response": "1.0.2",
+        "get-stream": "3.0.0",
+        "http-cache-semantics": "3.8.1",
+        "keyv": "3.0.0",
+        "lowercase-keys": "1.0.0",
+        "normalize-url": "2.0.1",
+        "responselike": "1.0.2"
+      }
+    },
+    "node_modules/cacheable-request/node_modules/get-stream": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
+      "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/cacheable-request/node_modules/lowercase-keys": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz",
+      "integrity": "sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/call-bind": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
+      "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
+      "dev": true,
+      "dependencies": {
+        "function-bind": "^1.1.1",
+        "get-intrinsic": "^1.0.2"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/camelcase": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz",
+      "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/caw": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz",
+      "integrity": "sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==",
+      "dev": true,
+      "dependencies": {
+        "get-proxy": "^2.0.0",
+        "isurl": "^1.0.0-alpha5",
+        "tunnel-agent": "^0.6.0",
+        "url-to-options": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/chalk": {
+      "version": "4.1.2",
+      "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+      "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+      "dev": true,
+      "dependencies": {
+        "ansi-styles": "^4.1.0",
+        "supports-color": "^7.1.0"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/chalk/chalk?sponsor=1"
+      }
+    },
+    "node_modules/character-parser": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz",
+      "integrity": "sha1-x84o821LzZdE5f/CxfzeHHMmH8A=",
+      "dev": true,
+      "dependencies": {
+        "is-regex": "^1.0.3"
+      }
+    },
+    "node_modules/chokidar": {
+      "version": "3.5.2",
+      "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz",
+      "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==",
+      "dev": true,
+      "dependencies": {
+        "anymatch": "~3.1.2",
+        "braces": "~3.0.2",
+        "glob-parent": "~5.1.2",
+        "is-binary-path": "~2.1.0",
+        "is-glob": "~4.0.1",
+        "normalize-path": "~3.0.0",
+        "readdirp": "~3.6.0"
+      },
+      "engines": {
+        "node": ">= 8.10.0"
+      },
+      "optionalDependencies": {
+        "fsevents": "~2.3.2"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "arr-union": "^3.1.0",
+        "define-property": "^0.2.5",
+        "isobject": "^3.0.0",
+        "static-extend": "^0.1.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/class-utils/node_modules/arr-union": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
+      "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/class-utils/node_modules/define-property": {
+      "version": "0.2.5",
+      "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+      "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+      "dev": true,
+      "dependencies": {
+        "is-descriptor": "^0.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/class-utils/node_modules/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,
+      "dependencies": {
+        "kind-of": "^3.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": {
+      "version": "3.2.2",
+      "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+      "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+      "dev": true,
+      "dependencies": {
+        "is-buffer": "^1.1.5"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/class-utils/node_modules/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,
+      "dependencies": {
+        "kind-of": "^3.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": {
+      "version": "3.2.2",
+      "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+      "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+      "dev": true,
+      "dependencies": {
+        "is-buffer": "^1.1.5"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/class-utils/node_modules/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,
+      "dependencies": {
+        "is-accessor-descriptor": "^0.1.6",
+        "is-data-descriptor": "^0.1.4",
+        "kind-of": "^5.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/cliui": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
+      "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
+      "dev": true,
+      "dependencies": {
+        "string-width": "^4.2.0",
+        "strip-ansi": "^6.0.0",
+        "wrap-ansi": "^6.2.0"
+      }
+    },
+    "node_modules/clone": {
+      "version": "2.1.2",
+      "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz",
+      "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.8"
+      }
+    },
+    "node_modules/clone-buffer": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz",
+      "integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/clone-response": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz",
+      "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=",
+      "dev": true,
+      "dependencies": {
+        "mimic-response": "^1.0.0"
+      }
+    },
+    "node_modules/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=",
+      "dev": true
+    },
+    "node_modules/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,
+      "dependencies": {
+        "inherits": "^2.0.1",
+        "process-nextick-args": "^2.0.0",
+        "readable-stream": "^2.3.5"
+      }
+    },
+    "node_modules/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=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/collection-map": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz",
+      "integrity": "sha1-rqDwb40mx4DCt1SUOFVEsiVa8Yw=",
+      "dev": true,
+      "dependencies": {
+        "arr-map": "^2.0.2",
+        "for-own": "^1.0.0",
+        "make-iterator": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/collection-visit": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz",
+      "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=",
+      "dev": true,
+      "dependencies": {
+        "map-visit": "^1.0.0",
+        "object-visit": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/color-convert": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+      "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+      "dev": true,
+      "dependencies": {
+        "color-name": "~1.1.4"
+      },
+      "engines": {
+        "node": ">=7.0.0"
+      }
+    },
+    "node_modules/color-name": {
+      "version": "1.1.4",
+      "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+      "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+      "dev": true
+    },
+    "node_modules/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==",
+      "dev": true,
+      "bin": {
+        "color-support": "bin.js"
+      }
+    },
+    "node_modules/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
+    },
+    "node_modules/component-bind": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz",
+      "integrity": "sha1-AMYIq33Nk4l8AAllGx06jh5zu9E=",
+      "dev": true
+    },
+    "node_modules/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==",
+      "dev": true
+    },
+    "node_modules/component-inherit": {
+      "version": "0.0.3",
+      "resolved": "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz",
+      "integrity": "sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM=",
+      "dev": true
+    },
+    "node_modules/concat-map": {
+      "version": "0.0.1",
+      "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+      "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
+      "dev": true
+    },
+    "node_modules/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,
+      "engines": [
+        "node >= 0.8"
+      ],
+      "dependencies": {
+        "buffer-from": "^1.0.0",
+        "inherits": "^2.0.3",
+        "readable-stream": "^2.2.2",
+        "typedarray": "^0.0.6"
+      }
+    },
+    "node_modules/config-chain": {
+      "version": "1.1.13",
+      "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz",
+      "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==",
+      "dev": true,
+      "dependencies": {
+        "ini": "^1.3.4",
+        "proto-list": "~1.2.1"
+      }
+    },
+    "node_modules/connect": {
+      "version": "3.6.6",
+      "resolved": "https://registry.npmjs.org/connect/-/connect-3.6.6.tgz",
+      "integrity": "sha1-Ce/2xVr3I24TcTWnJXSFi2eG9SQ=",
+      "dev": true,
+      "dependencies": {
+        "debug": "2.6.9",
+        "finalhandler": "1.1.0",
+        "parseurl": "~1.3.2",
+        "utils-merge": "1.0.1"
+      },
+      "engines": {
+        "node": ">= 0.10.0"
+      }
+    },
+    "node_modules/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,
+      "engines": {
+        "node": ">=0.8"
+      }
+    },
+    "node_modules/constantinople": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/constantinople/-/constantinople-4.0.1.tgz",
+      "integrity": "sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==",
+      "dev": true,
+      "dependencies": {
+        "@babel/parser": "^7.6.0",
+        "@babel/types": "^7.6.1"
+      }
+    },
+    "node_modules/content-disposition": {
+      "version": "0.5.3",
+      "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz",
+      "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==",
+      "dev": true,
+      "dependencies": {
+        "safe-buffer": "5.1.2"
+      },
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/convert-source-map": {
+      "version": "1.8.0",
+      "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz",
+      "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==",
+      "dev": true,
+      "dependencies": {
+        "safe-buffer": "~5.1.1"
+      }
+    },
+    "node_modules/cookie": {
+      "version": "0.4.1",
+      "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz",
+      "integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/copy-descriptor": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz",
+      "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/copy-props": {
+      "version": "2.0.5",
+      "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz",
+      "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==",
+      "dev": true,
+      "dependencies": {
+        "each-props": "^1.3.2",
+        "is-plain-object": "^5.0.0"
+      }
+    },
+    "node_modules/core-util-is": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
+      "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
+      "dev": true
+    },
+    "node_modules/crc": {
+      "version": "3.8.0",
+      "resolved": "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz",
+      "integrity": "sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==",
+      "dev": true,
+      "dependencies": {
+        "buffer": "^5.1.0"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "nice-try": "^1.0.4",
+        "path-key": "^2.0.1",
+        "semver": "^5.5.0",
+        "shebang-command": "^1.2.0",
+        "which": "^1.2.9"
+      },
+      "engines": {
+        "node": ">=4.8"
+      }
+    },
+    "node_modules/css-select": {
+      "version": "4.1.3",
+      "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.1.3.tgz",
+      "integrity": "sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "boolbase": "^1.0.0",
+        "css-what": "^5.0.0",
+        "domhandler": "^4.2.0",
+        "domutils": "^2.6.0",
+        "nth-check": "^2.0.0"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/fb55"
+      }
+    },
+    "node_modules/css-tree": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz",
+      "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "mdn-data": "2.0.14",
+        "source-map": "^0.6.1"
+      },
+      "engines": {
+        "node": ">=8.0.0"
+      }
+    },
+    "node_modules/css-what": {
+      "version": "5.1.0",
+      "resolved": "https://registry.npmjs.org/css-what/-/css-what-5.1.0.tgz",
+      "integrity": "sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">= 6"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/fb55"
+      }
+    },
+    "node_modules/csso": {
+      "version": "4.2.0",
+      "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz",
+      "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "css-tree": "^1.1.2"
+      },
+      "engines": {
+        "node": ">=8.0.0"
+      }
+    },
+    "node_modules/cyclist": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz",
+      "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=",
+      "dev": true
+    },
+    "node_modules/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,
+      "dependencies": {
+        "es5-ext": "^0.10.50",
+        "type": "^1.0.1"
+      }
+    },
+    "node_modules/dateformat": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz",
+      "integrity": "sha1-QGXiATz5+5Ft39gu+1Bq1MZ2kGI=",
+      "dev": true,
+      "engines": {
+        "node": "*"
+      }
+    },
+    "node_modules/debug": {
+      "version": "2.6.9",
+      "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+      "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+      "dev": true,
+      "dependencies": {
+        "ms": "2.0.0"
+      }
+    },
+    "node_modules/decamelize": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
+      "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/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=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10"
+      }
+    },
+    "node_modules/decompress": {
+      "version": "4.2.1",
+      "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz",
+      "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==",
+      "dev": true,
+      "dependencies": {
+        "decompress-tar": "^4.0.0",
+        "decompress-tarbz2": "^4.0.0",
+        "decompress-targz": "^4.0.0",
+        "decompress-unzip": "^4.0.1",
+        "graceful-fs": "^4.1.10",
+        "make-dir": "^1.0.0",
+        "pify": "^2.3.0",
+        "strip-dirs": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/decompress-response": {
+      "version": "3.3.0",
+      "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz",
+      "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=",
+      "dev": true,
+      "dependencies": {
+        "mimic-response": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/decompress-tar": {
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz",
+      "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==",
+      "dev": true,
+      "dependencies": {
+        "file-type": "^5.2.0",
+        "is-stream": "^1.1.0",
+        "tar-stream": "^1.5.2"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/decompress-tar/node_modules/file-type": {
+      "version": "5.2.0",
+      "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz",
+      "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/decompress-tarbz2": {
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz",
+      "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==",
+      "dev": true,
+      "dependencies": {
+        "decompress-tar": "^4.1.0",
+        "file-type": "^6.1.0",
+        "is-stream": "^1.1.0",
+        "seek-bzip": "^1.0.5",
+        "unbzip2-stream": "^1.0.9"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/decompress-tarbz2/node_modules/file-type": {
+      "version": "6.2.0",
+      "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz",
+      "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/decompress-targz": {
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz",
+      "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==",
+      "dev": true,
+      "dependencies": {
+        "decompress-tar": "^4.1.1",
+        "file-type": "^5.2.0",
+        "is-stream": "^1.1.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/decompress-targz/node_modules/file-type": {
+      "version": "5.2.0",
+      "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz",
+      "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/decompress-unzip": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz",
+      "integrity": "sha1-3qrM39FK6vhVePczroIQ+bSEj2k=",
+      "dev": true,
+      "dependencies": {
+        "file-type": "^3.8.0",
+        "get-stream": "^2.2.0",
+        "pify": "^2.3.0",
+        "yauzl": "^2.4.2"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/decompress-unzip/node_modules/file-type": {
+      "version": "3.9.0",
+      "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz",
+      "integrity": "sha1-JXoHg4TR24CHvESdEH1SpSZyuek=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/decompress-unzip/node_modules/get-stream": {
+      "version": "2.3.1",
+      "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz",
+      "integrity": "sha1-Xzj5PzRgCWZu4BUKBUFn+Rvdld4=",
+      "dev": true,
+      "dependencies": {
+        "object-assign": "^4.0.1",
+        "pinkie-promise": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/decompress-unzip/node_modules/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,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/decompress-unzip/node_modules/pify": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+      "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/decompress/node_modules/pify": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+      "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "kind-of": "^5.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/default-resolution": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz",
+      "integrity": "sha1-vLgrqnKtebQmp2cy8aga1t8m1oQ=",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "object-keys": "^1.0.12"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      }
+    },
+    "node_modules/define-property": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz",
+      "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==",
+      "dev": true,
+      "dependencies": {
+        "is-descriptor": "^1.0.2",
+        "isobject": "^3.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/depd": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
+      "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/destroy": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz",
+      "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=",
+      "dev": true
+    },
+    "node_modules/detect-file": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz",
+      "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/dev-ip": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/dev-ip/-/dev-ip-1.0.1.tgz",
+      "integrity": "sha1-p2o+0YVb56ASu4rBbLgPPADcKPA=",
+      "dev": true,
+      "bin": {
+        "dev-ip": "lib/dev-ip.js"
+      },
+      "engines": {
+        "node": ">= 0.8.0"
+      }
+    },
+    "node_modules/dir-glob": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
+      "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
+      "dev": true,
+      "dependencies": {
+        "path-type": "^4.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/dlv": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz",
+      "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==",
+      "dev": true
+    },
+    "node_modules/doctypes": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/doctypes/-/doctypes-1.1.0.tgz",
+      "integrity": "sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk=",
+      "dev": true
+    },
+    "node_modules/dom-serializer": {
+      "version": "1.3.2",
+      "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz",
+      "integrity": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "domelementtype": "^2.0.1",
+        "domhandler": "^4.2.0",
+        "entities": "^2.0.0"
+      },
+      "funding": {
+        "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
+      }
+    },
+    "node_modules/domelementtype": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz",
+      "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/fb55"
+        }
+      ],
+      "optional": true
+    },
+    "node_modules/domhandler": {
+      "version": "4.2.2",
+      "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz",
+      "integrity": "sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "domelementtype": "^2.2.0"
+      },
+      "engines": {
+        "node": ">= 4"
+      },
+      "funding": {
+        "url": "https://github.com/fb55/domhandler?sponsor=1"
+      }
+    },
+    "node_modules/domutils": {
+      "version": "2.8.0",
+      "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz",
+      "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "dom-serializer": "^1.0.1",
+        "domelementtype": "^2.2.0",
+        "domhandler": "^4.2.0"
+      },
+      "funding": {
+        "url": "https://github.com/fb55/domutils?sponsor=1"
+      }
+    },
+    "node_modules/download": {
+      "version": "6.2.5",
+      "resolved": "https://registry.npmjs.org/download/-/download-6.2.5.tgz",
+      "integrity": "sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA==",
+      "dev": true,
+      "dependencies": {
+        "caw": "^2.0.0",
+        "content-disposition": "^0.5.2",
+        "decompress": "^4.0.0",
+        "ext-name": "^5.0.0",
+        "file-type": "5.2.0",
+        "filenamify": "^2.0.0",
+        "get-stream": "^3.0.0",
+        "got": "^7.0.0",
+        "make-dir": "^1.0.0",
+        "p-event": "^1.0.0",
+        "pify": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/download/node_modules/file-type": {
+      "version": "5.2.0",
+      "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz",
+      "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/download/node_modules/get-stream": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
+      "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/download/node_modules/pify": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+      "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/duplexer2": {
+      "version": "0.0.2",
+      "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz",
+      "integrity": "sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds=",
+      "dev": true,
+      "dependencies": {
+        "readable-stream": "~1.1.9"
+      }
+    },
+    "node_modules/duplexer2/node_modules/isarray": {
+      "version": "0.0.1",
+      "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
+      "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=",
+      "dev": true
+    },
+    "node_modules/duplexer2/node_modules/readable-stream": {
+      "version": "1.1.14",
+      "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz",
+      "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=",
+      "dev": true,
+      "dependencies": {
+        "core-util-is": "~1.0.0",
+        "inherits": "~2.0.1",
+        "isarray": "0.0.1",
+        "string_decoder": "~0.10.x"
+      }
+    },
+    "node_modules/duplexer2/node_modules/string_decoder": {
+      "version": "0.10.31",
+      "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
+      "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=",
+      "dev": true
+    },
+    "node_modules/duplexer3": {
+      "version": "0.1.4",
+      "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz",
+      "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=",
+      "dev": true
+    },
+    "node_modules/duplexify": {
+      "version": "3.7.1",
+      "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz",
+      "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==",
+      "dev": true,
+      "dependencies": {
+        "end-of-stream": "^1.0.0",
+        "inherits": "^2.0.1",
+        "readable-stream": "^2.0.0",
+        "stream-shift": "^1.0.0"
+      }
+    },
+    "node_modules/each-props": {
+      "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,
+      "dependencies": {
+        "is-plain-object": "^2.0.1",
+        "object.defaults": "^1.1.0"
+      }
+    },
+    "node_modules/each-props/node_modules/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,
+      "dependencies": {
+        "isobject": "^3.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/easy-extender": {
+      "version": "2.3.4",
+      "resolved": "https://registry.npmjs.org/easy-extender/-/easy-extender-2.3.4.tgz",
+      "integrity": "sha512-8cAwm6md1YTiPpOvDULYJL4ZS6WfM5/cTeVVh4JsvyYZAoqlRVUpHL9Gr5Fy7HA6xcSZicUia3DeAgO3Us8E+Q==",
+      "dev": true,
+      "dependencies": {
+        "lodash": "^4.17.10"
+      },
+      "engines": {
+        "node": ">= 4.0.0"
+      }
+    },
+    "node_modules/eazy-logger": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/eazy-logger/-/eazy-logger-3.1.0.tgz",
+      "integrity": "sha512-/snsn2JqBtUSSstEl4R0RKjkisGHAhvYj89i7r3ytNUKW12y178KDZwXLXIgwDqLW6E/VRMT9qfld7wvFae8bQ==",
+      "dev": true,
+      "dependencies": {
+        "tfunk": "^4.0.0"
+      },
+      "engines": {
+        "node": ">= 0.8.0"
+      }
+    },
+    "node_modules/ee-first": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
+      "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=",
+      "dev": true
+    },
+    "node_modules/emoji-regex": {
+      "version": "8.0.0",
+      "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+      "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+      "dev": true
+    },
+    "node_modules/encodeurl": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
+      "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.8"
+      }
+    },
+    "node_modules/end-of-stream": {
+      "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,
+      "dependencies": {
+        "once": "^1.4.0"
+      }
+    },
+    "node_modules/engine.io": {
+      "version": "3.5.0",
+      "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-3.5.0.tgz",
+      "integrity": "sha512-21HlvPUKaitDGE4GXNtQ7PLP0Sz4aWLddMPw2VTyFz1FVZqu/kZsJUO8WNpKuE/OCL7nkfRaOui2ZCJloGznGA==",
+      "dev": true,
+      "dependencies": {
+        "accepts": "~1.3.4",
+        "base64id": "2.0.0",
+        "cookie": "~0.4.1",
+        "debug": "~4.1.0",
+        "engine.io-parser": "~2.2.0",
+        "ws": "~7.4.2"
+      },
+      "engines": {
+        "node": ">=8.0.0"
+      }
+    },
+    "node_modules/engine.io-client": {
+      "version": "3.5.2",
+      "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.5.2.tgz",
+      "integrity": "sha512-QEqIp+gJ/kMHeUun7f5Vv3bteRHppHH/FMBQX/esFj/fuYfjyUKWGMo3VCvIP/V8bE9KcjHmRZrhIz2Z9oNsDA==",
+      "dev": true,
+      "dependencies": {
+        "component-emitter": "~1.3.0",
+        "component-inherit": "0.0.3",
+        "debug": "~3.1.0",
+        "engine.io-parser": "~2.2.0",
+        "has-cors": "1.1.0",
+        "indexof": "0.0.1",
+        "parseqs": "0.0.6",
+        "parseuri": "0.0.6",
+        "ws": "~7.4.2",
+        "xmlhttprequest-ssl": "~1.6.2",
+        "yeast": "0.1.2"
+      }
+    },
+    "node_modules/engine.io-client/node_modules/debug": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
+      "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
+      "dev": true,
+      "dependencies": {
+        "ms": "2.0.0"
+      }
+    },
+    "node_modules/engine.io-parser": {
+      "version": "2.2.1",
+      "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.2.1.tgz",
+      "integrity": "sha512-x+dN/fBH8Ro8TFwJ+rkB2AmuVw9Yu2mockR/p3W8f8YtExwFgDvBDi0GWyb4ZLkpahtDGZgtr3zLovanJghPqg==",
+      "dev": true,
+      "dependencies": {
+        "after": "0.8.2",
+        "arraybuffer.slice": "~0.0.7",
+        "base64-arraybuffer": "0.1.4",
+        "blob": "0.0.5",
+        "has-binary2": "~1.0.2"
+      }
+    },
+    "node_modules/engine.io/node_modules/debug": {
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
+      "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
+      "deprecated": "Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)",
+      "dev": true,
+      "dependencies": {
+        "ms": "^2.1.1"
+      }
+    },
+    "node_modules/engine.io/node_modules/ms": {
+      "version": "2.1.3",
+      "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+      "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+      "dev": true
+    },
+    "node_modules/entities": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
+      "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
+      "dev": true,
+      "optional": true,
+      "funding": {
+        "url": "https://github.com/fb55/entities?sponsor=1"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "is-arrayish": "^0.2.1"
+      }
+    },
+    "node_modules/es5-ext": {
+      "version": "0.10.53",
+      "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz",
+      "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==",
+      "dev": true,
+      "dependencies": {
+        "es6-iterator": "~2.0.3",
+        "es6-symbol": "~3.1.3",
+        "next-tick": "~1.0.0"
+      }
+    },
+    "node_modules/es6-iterator": {
+      "version": "2.0.3",
+      "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz",
+      "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=",
+      "dev": true,
+      "dependencies": {
+        "d": "1",
+        "es5-ext": "^0.10.35",
+        "es6-symbol": "^3.1.1"
+      }
+    },
+    "node_modules/es6-symbol": {
+      "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,
+      "dependencies": {
+        "d": "^1.0.1",
+        "ext": "^1.1.2"
+      }
+    },
+    "node_modules/es6-weak-map": {
+      "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,
+      "dependencies": {
+        "d": "1",
+        "es5-ext": "^0.10.46",
+        "es6-iterator": "^2.0.3",
+        "es6-symbol": "^3.1.1"
+      }
+    },
+    "node_modules/escalade": {
+      "version": "3.1.1",
+      "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
+      "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
+      "dev": true,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/escape-html": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
+      "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=",
+      "dev": true
+    },
+    "node_modules/escape-string-regexp": {
+      "version": "1.0.5",
+      "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+      "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.8.0"
+      }
+    },
+    "node_modules/etag": {
+      "version": "1.8.1",
+      "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
+      "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/eventemitter3": {
+      "version": "4.0.7",
+      "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
+      "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==",
+      "dev": true
+    },
+    "node_modules/exec-buffer": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/exec-buffer/-/exec-buffer-3.2.0.tgz",
+      "integrity": "sha512-wsiD+2Tp6BWHoVv3B+5Dcx6E7u5zky+hUwOHjuH2hKSLR3dvRmX8fk8UD8uqQixHs4Wk6eDmiegVrMPjKj7wpA==",
+      "dev": true,
+      "dependencies": {
+        "execa": "^0.7.0",
+        "p-finally": "^1.0.0",
+        "pify": "^3.0.0",
+        "rimraf": "^2.5.4",
+        "tempfile": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/exec-buffer/node_modules/cross-spawn": {
+      "version": "5.1.0",
+      "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz",
+      "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=",
+      "dev": true,
+      "dependencies": {
+        "lru-cache": "^4.0.1",
+        "shebang-command": "^1.2.0",
+        "which": "^1.2.9"
+      }
+    },
+    "node_modules/exec-buffer/node_modules/execa": {
+      "version": "0.7.0",
+      "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz",
+      "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=",
+      "dev": true,
+      "dependencies": {
+        "cross-spawn": "^5.0.1",
+        "get-stream": "^3.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"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/exec-buffer/node_modules/get-stream": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
+      "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/exec-buffer/node_modules/pify": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+      "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/execa": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
+      "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
+      "dev": true,
+      "dependencies": {
+        "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"
+      },
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/executable": {
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz",
+      "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==",
+      "dev": true,
+      "dependencies": {
+        "pify": "^2.2.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/executable/node_modules/pify": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+      "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "debug": "^2.3.3",
+        "define-property": "^0.2.5",
+        "extend-shallow": "^2.0.1",
+        "posix-character-classes": "^0.1.0",
+        "regex-not": "^1.0.0",
+        "snapdragon": "^0.8.1",
+        "to-regex": "^3.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/expand-brackets/node_modules/define-property": {
+      "version": "0.2.5",
+      "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+      "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+      "dev": true,
+      "dependencies": {
+        "is-descriptor": "^0.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/expand-brackets/node_modules/extend-shallow": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+      "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+      "dev": true,
+      "dependencies": {
+        "is-extendable": "^0.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/expand-brackets/node_modules/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,
+      "dependencies": {
+        "kind-of": "^3.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": {
+      "version": "3.2.2",
+      "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+      "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+      "dev": true,
+      "dependencies": {
+        "is-buffer": "^1.1.5"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/expand-brackets/node_modules/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,
+      "dependencies": {
+        "kind-of": "^3.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": {
+      "version": "3.2.2",
+      "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+      "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+      "dev": true,
+      "dependencies": {
+        "is-buffer": "^1.1.5"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/expand-brackets/node_modules/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,
+      "dependencies": {
+        "is-accessor-descriptor": "^0.1.6",
+        "is-data-descriptor": "^0.1.4",
+        "kind-of": "^5.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/expand-brackets/node_modules/is-extendable": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+      "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/expand-tilde": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz",
+      "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=",
+      "dev": true,
+      "dependencies": {
+        "homedir-polyfill": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/ext": {
+      "version": "1.6.0",
+      "resolved": "https://registry.npmjs.org/ext/-/ext-1.6.0.tgz",
+      "integrity": "sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg==",
+      "dev": true,
+      "dependencies": {
+        "type": "^2.5.0"
+      }
+    },
+    "node_modules/ext-list": {
+      "version": "2.2.2",
+      "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz",
+      "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==",
+      "dev": true,
+      "dependencies": {
+        "mime-db": "^1.28.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/ext-name": {
+      "version": "5.0.0",
+      "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz",
+      "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==",
+      "dev": true,
+      "dependencies": {
+        "ext-list": "^2.0.0",
+        "sort-keys-length": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/ext/node_modules/type": {
+      "version": "2.5.0",
+      "resolved": "https://registry.npmjs.org/type/-/type-2.5.0.tgz",
+      "integrity": "sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw==",
+      "dev": true
+    },
+    "node_modules/extend": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
+      "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
+      "dev": true
+    },
+    "node_modules/extend-shallow": {
+      "version": "1.1.4",
+      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-1.1.4.tgz",
+      "integrity": "sha1-Gda/lN/AnXa6cR85uHLSH/TdkHE=",
+      "dev": true,
+      "dependencies": {
+        "kind-of": "^1.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/extend-shallow/node_modules/kind-of": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz",
+      "integrity": "sha1-FAo9LUGjbS78+pN3tiwk+ElaXEQ=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/extglob": {
+      "version": "2.0.4",
+      "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
+      "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
+      "dev": true,
+      "dependencies": {
+        "array-unique": "^0.3.2",
+        "define-property": "^1.0.0",
+        "expand-brackets": "^2.1.4",
+        "extend-shallow": "^2.0.1",
+        "fragment-cache": "^0.2.1",
+        "regex-not": "^1.0.0",
+        "snapdragon": "^0.8.1",
+        "to-regex": "^3.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/extglob/node_modules/define-property": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
+      "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
+      "dev": true,
+      "dependencies": {
+        "is-descriptor": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/extglob/node_modules/extend-shallow": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+      "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+      "dev": true,
+      "dependencies": {
+        "is-extendable": "^0.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/extglob/node_modules/is-extendable": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+      "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/fancy-log": {
+      "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,
+      "dependencies": {
+        "ansi-gray": "^0.1.1",
+        "color-support": "^1.1.3",
+        "parse-node-version": "^1.0.0",
+        "time-stamp": "^1.0.0"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/fast-glob": {
+      "version": "3.2.7",
+      "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz",
+      "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==",
+      "dev": true,
+      "dependencies": {
+        "@nodelib/fs.stat": "^2.0.2",
+        "@nodelib/fs.walk": "^1.2.3",
+        "glob-parent": "^5.1.2",
+        "merge2": "^1.3.0",
+        "micromatch": "^4.0.4"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/fast-levenshtein": {
+      "version": "1.1.4",
+      "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz",
+      "integrity": "sha1-5qdUzI8V5YmHqpy9J69m/W9OWvk=",
+      "dev": true
+    },
+    "node_modules/fast-xml-parser": {
+      "version": "3.21.1",
+      "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.21.1.tgz",
+      "integrity": "sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "strnum": "^1.0.4"
+      },
+      "bin": {
+        "xml2js": "cli.js"
+      },
+      "funding": {
+        "type": "paypal",
+        "url": "https://paypal.me/naturalintelligence"
+      }
+    },
+    "node_modules/fastq": {
+      "version": "1.13.0",
+      "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz",
+      "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==",
+      "dev": true,
+      "dependencies": {
+        "reusify": "^1.0.4"
+      }
+    },
+    "node_modules/fd-slicer": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
+      "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=",
+      "dev": true,
+      "dependencies": {
+        "pend": "~1.2.0"
+      }
+    },
+    "node_modules/file-type": {
+      "version": "16.5.3",
+      "resolved": "https://registry.npmjs.org/file-type/-/file-type-16.5.3.tgz",
+      "integrity": "sha512-uVsl7iFhHSOY4bEONLlTK47iAHtNsFHWP5YE4xJfZ4rnX7S1Q3wce09XgqSC7E/xh8Ncv/be1lNoyprlUH/x6A==",
+      "dev": true,
+      "dependencies": {
+        "readable-web-to-node-stream": "^3.0.0",
+        "strtok3": "^6.2.4",
+        "token-types": "^4.1.1"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sindresorhus/file-type?sponsor=1"
+      }
+    },
+    "node_modules/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
+    },
+    "node_modules/filename-reserved-regex": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz",
+      "integrity": "sha1-q/c9+rc10EVECr/qLZHzieu/oik=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/filenamify": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz",
+      "integrity": "sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==",
+      "dev": true,
+      "dependencies": {
+        "filename-reserved-regex": "^2.0.0",
+        "strip-outer": "^1.0.0",
+        "trim-repeated": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "to-regex-range": "^5.0.1"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/finalhandler": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz",
+      "integrity": "sha1-zgtoVbRYU+eRsvzGgARtiCU91/U=",
+      "dev": true,
+      "dependencies": {
+        "debug": "2.6.9",
+        "encodeurl": "~1.0.1",
+        "escape-html": "~1.0.3",
+        "on-finished": "~2.3.0",
+        "parseurl": "~1.3.2",
+        "statuses": "~1.3.1",
+        "unpipe": "~1.0.0"
+      },
+      "engines": {
+        "node": ">= 0.8"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "locate-path": "^5.0.0",
+        "path-exists": "^4.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/find-versions": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz",
+      "integrity": "sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==",
+      "dev": true,
+      "dependencies": {
+        "semver-regex": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/findup-sync": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz",
+      "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==",
+      "dev": true,
+      "dependencies": {
+        "detect-file": "^1.0.0",
+        "is-glob": "^4.0.0",
+        "micromatch": "^3.0.4",
+        "resolve-dir": "^1.0.1"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/findup-sync/node_modules/arr-diff": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
+      "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/findup-sync/node_modules/braces": {
+      "version": "2.3.2",
+      "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
+      "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+      "dev": true,
+      "dependencies": {
+        "arr-flatten": "^1.1.0",
+        "array-unique": "^0.3.2",
+        "extend-shallow": "^2.0.1",
+        "fill-range": "^4.0.0",
+        "isobject": "^3.0.1",
+        "repeat-element": "^1.1.2",
+        "snapdragon": "^0.8.1",
+        "snapdragon-node": "^2.0.1",
+        "split-string": "^3.0.2",
+        "to-regex": "^3.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/findup-sync/node_modules/braces/node_modules/extend-shallow": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+      "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+      "dev": true,
+      "dependencies": {
+        "is-extendable": "^0.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/findup-sync/node_modules/braces/node_modules/is-extendable": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+      "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/findup-sync/node_modules/extend-shallow": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
+      "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
+      "dev": true,
+      "dependencies": {
+        "assign-symbols": "^1.0.0",
+        "is-extendable": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/findup-sync/node_modules/fill-range": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
+      "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
+      "dev": true,
+      "dependencies": {
+        "extend-shallow": "^2.0.1",
+        "is-number": "^3.0.0",
+        "repeat-string": "^1.6.1",
+        "to-regex-range": "^2.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/findup-sync/node_modules/fill-range/node_modules/extend-shallow": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+      "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+      "dev": true,
+      "dependencies": {
+        "is-extendable": "^0.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/findup-sync/node_modules/fill-range/node_modules/is-extendable": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+      "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/findup-sync/node_modules/is-number": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+      "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+      "dev": true,
+      "dependencies": {
+        "kind-of": "^3.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/findup-sync/node_modules/is-number/node_modules/kind-of": {
+      "version": "3.2.2",
+      "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+      "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+      "dev": true,
+      "dependencies": {
+        "is-buffer": "^1.1.5"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/findup-sync/node_modules/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==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/findup-sync/node_modules/micromatch": {
+      "version": "3.1.10",
+      "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+      "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+      "dev": true,
+      "dependencies": {
+        "arr-diff": "^4.0.0",
+        "array-unique": "^0.3.2",
+        "braces": "^2.3.1",
+        "define-property": "^2.0.2",
+        "extend-shallow": "^3.0.2",
+        "extglob": "^2.0.4",
+        "fragment-cache": "^0.2.1",
+        "kind-of": "^6.0.2",
+        "nanomatch": "^1.2.9",
+        "object.pick": "^1.3.0",
+        "regex-not": "^1.0.0",
+        "snapdragon": "^0.8.1",
+        "to-regex": "^3.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/findup-sync/node_modules/to-regex-range": {
+      "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,
+      "dependencies": {
+        "is-number": "^3.0.0",
+        "repeat-string": "^1.6.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/fined": {
+      "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,
+      "dependencies": {
+        "expand-tilde": "^2.0.2",
+        "is-plain-object": "^2.0.3",
+        "object.defaults": "^1.1.0",
+        "object.pick": "^1.2.0",
+        "parse-filepath": "^1.0.1"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/fined/node_modules/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,
+      "dependencies": {
+        "isobject": "^3.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/flagged-respawn": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz",
+      "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "inherits": "^2.0.3",
+        "readable-stream": "^2.3.6"
+      }
+    },
+    "node_modules/follow-redirects": {
+      "version": "1.14.5",
+      "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.5.tgz",
+      "integrity": "sha512-wtphSXy7d4/OR+MvIFbCVBDzZ5520qV8XfPklSN5QtxuMUJZ+b0Wnst1e1lCDocfzuCkHqj8k0FpZqO+UIaKNA==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "individual",
+          "url": "https://github.com/sponsors/RubenVerborgh"
+        }
+      ],
+      "engines": {
+        "node": ">=4.0"
+      },
+      "peerDependenciesMeta": {
+        "debug": {
+          "optional": true
+        }
+      }
+    },
+    "node_modules/for-in": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",
+      "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "for-in": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/fragment-cache": {
+      "version": "0.2.1",
+      "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz",
+      "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=",
+      "dev": true,
+      "dependencies": {
+        "map-cache": "^0.2.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/fresh": {
+      "version": "0.5.2",
+      "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
+      "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/from2": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz",
+      "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=",
+      "dev": true,
+      "dependencies": {
+        "inherits": "^2.0.1",
+        "readable-stream": "^2.0.0"
+      }
+    },
+    "node_modules/fs-constants": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
+      "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==",
+      "dev": true
+    },
+    "node_modules/fs-extra": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz",
+      "integrity": "sha1-N5TzeMWLNC6n27sjCVEJxLO2IpE=",
+      "dev": true,
+      "dependencies": {
+        "graceful-fs": "^4.1.2",
+        "jsonfile": "^3.0.0",
+        "universalify": "^0.1.0"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "graceful-fs": "^4.1.11",
+        "through2": "^2.0.3"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/fs.realpath": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+      "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
+      "dev": true
+    },
+    "node_modules/fsevents": {
+      "version": "2.3.2",
+      "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
+      "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
+      "dev": true,
+      "hasInstallScript": true,
+      "optional": true,
+      "os": [
+        "darwin"
+      ],
+      "engines": {
+        "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
+      }
+    },
+    "node_modules/ftp": {
+      "version": "0.3.10",
+      "resolved": "https://registry.npmjs.org/ftp/-/ftp-0.3.10.tgz",
+      "integrity": "sha1-kZfYYa2BQvPmPVqDv+TFn3MwiF0=",
+      "dev": true,
+      "dependencies": {
+        "readable-stream": "1.1.x",
+        "xregexp": "2.0.0"
+      },
+      "engines": {
+        "node": ">=0.8.0"
+      }
+    },
+    "node_modules/ftp/node_modules/isarray": {
+      "version": "0.0.1",
+      "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
+      "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=",
+      "dev": true
+    },
+    "node_modules/ftp/node_modules/readable-stream": {
+      "version": "1.1.14",
+      "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz",
+      "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=",
+      "dev": true,
+      "dependencies": {
+        "core-util-is": "~1.0.0",
+        "inherits": "~2.0.1",
+        "isarray": "0.0.1",
+        "string_decoder": "~0.10.x"
+      }
+    },
+    "node_modules/ftp/node_modules/string_decoder": {
+      "version": "0.10.31",
+      "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
+      "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=",
+      "dev": true
+    },
+    "node_modules/function-bind": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
+      "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
+      "dev": true
+    },
+    "node_modules/get-caller-file": {
+      "version": "2.0.5",
+      "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
+      "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
+      "dev": true,
+      "engines": {
+        "node": "6.* || 8.* || >= 10.*"
+      }
+    },
+    "node_modules/get-intrinsic": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz",
+      "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==",
+      "dev": true,
+      "dependencies": {
+        "function-bind": "^1.1.1",
+        "has": "^1.0.3",
+        "has-symbols": "^1.0.1"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/get-proxy": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz",
+      "integrity": "sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==",
+      "dev": true,
+      "dependencies": {
+        "npm-conf": "^1.1.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "pump": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/get-value": {
+      "version": "2.0.6",
+      "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz",
+      "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gifsicle": {
+      "version": "5.2.1",
+      "resolved": "https://registry.npmjs.org/gifsicle/-/gifsicle-5.2.1.tgz",
+      "integrity": "sha512-9ewIQQCAnSmkU2DhuWafd1DdsgzAkKqIWnY+023xBLSiK9Az2TDUozWQW+SyRQgFMclbe6RQldUk/49TRO3Aqw==",
+      "dev": true,
+      "hasInstallScript": true,
+      "optional": true,
+      "dependencies": {
+        "bin-build": "^3.0.0",
+        "bin-wrapper": "^4.0.0",
+        "execa": "^5.0.0"
+      },
+      "bin": {
+        "gifsicle": "cli.js"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/imagemin/gisicle-bin?sponsor=1"
+      }
+    },
+    "node_modules/gifsicle/node_modules/cross-spawn": {
+      "version": "7.0.3",
+      "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
+      "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "path-key": "^3.1.0",
+        "shebang-command": "^2.0.0",
+        "which": "^2.0.1"
+      },
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/gifsicle/node_modules/execa": {
+      "version": "5.1.1",
+      "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
+      "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "cross-spawn": "^7.0.3",
+        "get-stream": "^6.0.0",
+        "human-signals": "^2.1.0",
+        "is-stream": "^2.0.0",
+        "merge-stream": "^2.0.0",
+        "npm-run-path": "^4.0.1",
+        "onetime": "^5.1.2",
+        "signal-exit": "^3.0.3",
+        "strip-final-newline": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sindresorhus/execa?sponsor=1"
+      }
+    },
+    "node_modules/gifsicle/node_modules/get-stream": {
+      "version": "6.0.1",
+      "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
+      "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/gifsicle/node_modules/is-stream": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
+      "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">=8"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/gifsicle/node_modules/npm-run-path": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
+      "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "path-key": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/gifsicle/node_modules/path-key": {
+      "version": "3.1.1",
+      "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+      "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/gifsicle/node_modules/shebang-command": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+      "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "shebang-regex": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/gifsicle/node_modules/shebang-regex": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+      "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/gifsicle/node_modules/which": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+      "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "isexe": "^2.0.0"
+      },
+      "bin": {
+        "node-which": "bin/node-which"
+      },
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/glob": {
+      "version": "7.2.0",
+      "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz",
+      "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==",
+      "dev": true,
+      "dependencies": {
+        "fs.realpath": "^1.0.0",
+        "inflight": "^1.0.4",
+        "inherits": "2",
+        "minimatch": "^3.0.4",
+        "once": "^1.3.0",
+        "path-is-absolute": "^1.0.0"
+      },
+      "engines": {
+        "node": "*"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/isaacs"
+      }
+    },
+    "node_modules/glob-parent": {
+      "version": "5.1.2",
+      "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+      "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+      "dev": true,
+      "dependencies": {
+        "is-glob": "^4.0.1"
+      },
+      "engines": {
+        "node": ">= 6"
+      }
+    },
+    "node_modules/glob-stream": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz",
+      "integrity": "sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ=",
+      "dev": true,
+      "dependencies": {
+        "extend": "^3.0.0",
+        "glob": "^7.1.1",
+        "glob-parent": "^3.1.0",
+        "is-negated-glob": "^1.0.0",
+        "ordered-read-streams": "^1.0.0",
+        "pumpify": "^1.3.5",
+        "readable-stream": "^2.1.5",
+        "remove-trailing-separator": "^1.0.1",
+        "to-absolute-glob": "^2.0.0",
+        "unique-stream": "^2.0.2"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/glob-stream/node_modules/glob-parent": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz",
+      "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=",
+      "dev": true,
+      "dependencies": {
+        "is-glob": "^3.1.0",
+        "path-dirname": "^1.0.0"
+      }
+    },
+    "node_modules/glob-stream/node_modules/is-glob": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
+      "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
+      "dev": true,
+      "dependencies": {
+        "is-extglob": "^2.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/glob-watcher": {
+      "version": "5.0.5",
+      "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz",
+      "integrity": "sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==",
+      "dev": true,
+      "dependencies": {
+        "anymatch": "^2.0.0",
+        "async-done": "^1.2.0",
+        "chokidar": "^2.0.0",
+        "is-negated-glob": "^1.0.0",
+        "just-debounce": "^1.0.0",
+        "normalize-path": "^3.0.0",
+        "object.defaults": "^1.1.0"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/glob-watcher/node_modules/anymatch": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
+      "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
+      "dev": true,
+      "dependencies": {
+        "micromatch": "^3.1.4",
+        "normalize-path": "^2.1.1"
+      }
+    },
+    "node_modules/glob-watcher/node_modules/anymatch/node_modules/normalize-path": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
+      "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
+      "dev": true,
+      "dependencies": {
+        "remove-trailing-separator": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/glob-watcher/node_modules/arr-diff": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
+      "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/glob-watcher/node_modules/binary-extensions": {
+      "version": "1.13.1",
+      "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz",
+      "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/glob-watcher/node_modules/braces": {
+      "version": "2.3.2",
+      "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
+      "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+      "dev": true,
+      "dependencies": {
+        "arr-flatten": "^1.1.0",
+        "array-unique": "^0.3.2",
+        "extend-shallow": "^2.0.1",
+        "fill-range": "^4.0.0",
+        "isobject": "^3.0.1",
+        "repeat-element": "^1.1.2",
+        "snapdragon": "^0.8.1",
+        "snapdragon-node": "^2.0.1",
+        "split-string": "^3.0.2",
+        "to-regex": "^3.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/glob-watcher/node_modules/chokidar": {
+      "version": "2.1.8",
+      "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz",
+      "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==",
+      "deprecated": "Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.",
+      "dev": true,
+      "dependencies": {
+        "anymatch": "^2.0.0",
+        "async-each": "^1.0.1",
+        "braces": "^2.3.2",
+        "glob-parent": "^3.1.0",
+        "inherits": "^2.0.3",
+        "is-binary-path": "^1.0.0",
+        "is-glob": "^4.0.0",
+        "normalize-path": "^3.0.0",
+        "path-is-absolute": "^1.0.0",
+        "readdirp": "^2.2.1",
+        "upath": "^1.1.1"
+      },
+      "optionalDependencies": {
+        "fsevents": "^1.2.7"
+      }
+    },
+    "node_modules/glob-watcher/node_modules/extend-shallow": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+      "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+      "dev": true,
+      "dependencies": {
+        "is-extendable": "^0.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/glob-watcher/node_modules/fill-range": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
+      "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
+      "dev": true,
+      "dependencies": {
+        "extend-shallow": "^2.0.1",
+        "is-number": "^3.0.0",
+        "repeat-string": "^1.6.1",
+        "to-regex-range": "^2.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/glob-watcher/node_modules/fsevents": {
+      "version": "1.2.13",
+      "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz",
+      "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==",
+      "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.",
+      "dev": true,
+      "hasInstallScript": true,
+      "optional": true,
+      "os": [
+        "darwin"
+      ],
+      "dependencies": {
+        "bindings": "^1.5.0",
+        "nan": "^2.12.1"
+      },
+      "engines": {
+        "node": ">= 4.0"
+      }
+    },
+    "node_modules/glob-watcher/node_modules/glob-parent": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz",
+      "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=",
+      "dev": true,
+      "dependencies": {
+        "is-glob": "^3.1.0",
+        "path-dirname": "^1.0.0"
+      }
+    },
+    "node_modules/glob-watcher/node_modules/glob-parent/node_modules/is-glob": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
+      "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
+      "dev": true,
+      "dependencies": {
+        "is-extglob": "^2.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/glob-watcher/node_modules/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,
+      "dependencies": {
+        "binary-extensions": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/glob-watcher/node_modules/is-extendable": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+      "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/glob-watcher/node_modules/is-number": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+      "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+      "dev": true,
+      "dependencies": {
+        "kind-of": "^3.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/glob-watcher/node_modules/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,
+      "dependencies": {
+        "isobject": "^3.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/glob-watcher/node_modules/kind-of": {
+      "version": "3.2.2",
+      "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+      "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+      "dev": true,
+      "dependencies": {
+        "is-buffer": "^1.1.5"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/glob-watcher/node_modules/micromatch": {
+      "version": "3.1.10",
+      "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+      "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+      "dev": true,
+      "dependencies": {
+        "arr-diff": "^4.0.0",
+        "array-unique": "^0.3.2",
+        "braces": "^2.3.1",
+        "define-property": "^2.0.2",
+        "extend-shallow": "^3.0.2",
+        "extglob": "^2.0.4",
+        "fragment-cache": "^0.2.1",
+        "kind-of": "^6.0.2",
+        "nanomatch": "^1.2.9",
+        "object.pick": "^1.3.0",
+        "regex-not": "^1.0.0",
+        "snapdragon": "^0.8.1",
+        "to-regex": "^3.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/glob-watcher/node_modules/micromatch/node_modules/extend-shallow": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
+      "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
+      "dev": true,
+      "dependencies": {
+        "assign-symbols": "^1.0.0",
+        "is-extendable": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/glob-watcher/node_modules/micromatch/node_modules/is-extendable": {
+      "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,
+      "dependencies": {
+        "is-plain-object": "^2.0.4"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/glob-watcher/node_modules/micromatch/node_modules/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==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/glob-watcher/node_modules/readdirp": {
+      "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,
+      "dependencies": {
+        "graceful-fs": "^4.1.11",
+        "micromatch": "^3.1.10",
+        "readable-stream": "^2.0.2"
+      },
+      "engines": {
+        "node": ">=0.10"
+      }
+    },
+    "node_modules/glob-watcher/node_modules/to-regex-range": {
+      "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,
+      "dependencies": {
+        "is-number": "^3.0.0",
+        "repeat-string": "^1.6.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/global-modules": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz",
+      "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==",
+      "dev": true,
+      "dependencies": {
+        "global-prefix": "^1.0.1",
+        "is-windows": "^1.0.1",
+        "resolve-dir": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/global-prefix": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz",
+      "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=",
+      "dev": true,
+      "dependencies": {
+        "expand-tilde": "^2.0.2",
+        "homedir-polyfill": "^1.0.1",
+        "ini": "^1.3.4",
+        "is-windows": "^1.0.1",
+        "which": "^1.2.14"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/globby": {
+      "version": "12.0.2",
+      "resolved": "https://registry.npmjs.org/globby/-/globby-12.0.2.tgz",
+      "integrity": "sha512-lAsmb/5Lww4r7MM9nCCliDZVIKbZTavrsunAsHLr9oHthrZP1qi7/gAnHOsUs9bLvEt2vKVJhHmxuL7QbDuPdQ==",
+      "dev": true,
+      "dependencies": {
+        "array-union": "^3.0.1",
+        "dir-glob": "^3.0.1",
+        "fast-glob": "^3.2.7",
+        "ignore": "^5.1.8",
+        "merge2": "^1.4.1",
+        "slash": "^4.0.0"
+      },
+      "engines": {
+        "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/globby/node_modules/slash": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz",
+      "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==",
+      "dev": true,
+      "engines": {
+        "node": ">=12"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/glogg": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz",
+      "integrity": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==",
+      "dev": true,
+      "dependencies": {
+        "sparkles": "^1.0.0"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/got": {
+      "version": "7.1.0",
+      "resolved": "https://registry.npmjs.org/got/-/got-7.1.0.tgz",
+      "integrity": "sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==",
+      "dev": true,
+      "dependencies": {
+        "decompress-response": "^3.2.0",
+        "duplexer3": "^0.1.4",
+        "get-stream": "^3.0.0",
+        "is-plain-obj": "^1.1.0",
+        "is-retry-allowed": "^1.0.0",
+        "is-stream": "^1.0.0",
+        "isurl": "^1.0.0-alpha5",
+        "lowercase-keys": "^1.0.0",
+        "p-cancelable": "^0.3.0",
+        "p-timeout": "^1.1.1",
+        "safe-buffer": "^5.0.1",
+        "timed-out": "^4.0.0",
+        "url-parse-lax": "^1.0.0",
+        "url-to-options": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/got/node_modules/get-stream": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
+      "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/graceful-fs": {
+      "version": "4.2.8",
+      "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz",
+      "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==",
+      "dev": true
+    },
+    "node_modules/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,
+      "dependencies": {
+        "glob-watcher": "^5.0.3",
+        "gulp-cli": "^2.2.0",
+        "undertaker": "^1.2.1",
+        "vinyl-fs": "^3.0.0"
+      },
+      "bin": {
+        "gulp": "bin/gulp.js"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/gulp-clean": {
+      "version": "0.4.0",
+      "resolved": "https://registry.npmjs.org/gulp-clean/-/gulp-clean-0.4.0.tgz",
+      "integrity": "sha512-DARK8rNMo4lHOFLGTiHEJdf19GuoBDHqGUaypz+fOhrvOs3iFO7ntdYtdpNxv+AzSJBx/JfypF0yEj9ks1IStQ==",
+      "dev": true,
+      "dependencies": {
+        "fancy-log": "^1.3.2",
+        "plugin-error": "^0.1.2",
+        "rimraf": "^2.6.2",
+        "through2": "^2.0.3",
+        "vinyl": "^2.1.0"
+      },
+      "engines": {
+        "node": ">=0.9"
+      }
+    },
+    "node_modules/gulp-cli": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz",
+      "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==",
+      "dev": true,
+      "dependencies": {
+        "ansi-colors": "^1.0.1",
+        "archy": "^1.0.0",
+        "array-sort": "^1.0.0",
+        "color-support": "^1.1.3",
+        "concat-stream": "^1.6.0",
+        "copy-props": "^2.0.1",
+        "fancy-log": "^1.3.2",
+        "gulplog": "^1.0.0",
+        "interpret": "^1.4.0",
+        "isobject": "^3.0.1",
+        "liftoff": "^3.1.0",
+        "matchdep": "^2.0.0",
+        "mute-stdout": "^1.0.0",
+        "pretty-hrtime": "^1.0.0",
+        "replace-homedir": "^1.0.0",
+        "semver-greatest-satisfied-range": "^1.1.0",
+        "v8flags": "^3.2.0",
+        "yargs": "^7.1.0"
+      },
+      "bin": {
+        "gulp": "bin/gulp.js"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/gulp-cli/node_modules/ansi-regex": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+      "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gulp-cli/node_modules/cliui": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz",
+      "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=",
+      "dev": true,
+      "dependencies": {
+        "string-width": "^1.0.1",
+        "strip-ansi": "^3.0.1",
+        "wrap-ansi": "^2.0.0"
+      }
+    },
+    "node_modules/gulp-cli/node_modules/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==",
+      "dev": true
+    },
+    "node_modules/gulp-cli/node_modules/is-fullwidth-code-point": {
+      "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,
+      "dependencies": {
+        "number-is-nan": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gulp-cli/node_modules/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=",
+      "dev": true
+    },
+    "node_modules/gulp-cli/node_modules/string-width": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
+      "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
+      "dev": true,
+      "dependencies": {
+        "code-point-at": "^1.0.0",
+        "is-fullwidth-code-point": "^1.0.0",
+        "strip-ansi": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gulp-cli/node_modules/strip-ansi": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+      "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+      "dev": true,
+      "dependencies": {
+        "ansi-regex": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gulp-cli/node_modules/which-module": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz",
+      "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=",
+      "dev": true
+    },
+    "node_modules/gulp-cli/node_modules/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,
+      "dependencies": {
+        "string-width": "^1.0.1",
+        "strip-ansi": "^3.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gulp-cli/node_modules/y18n": {
+      "version": "3.2.2",
+      "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz",
+      "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==",
+      "dev": true
+    },
+    "node_modules/gulp-cli/node_modules/yargs": {
+      "version": "7.1.2",
+      "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.2.tgz",
+      "integrity": "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==",
+      "dev": true,
+      "dependencies": {
+        "camelcase": "^3.0.0",
+        "cliui": "^3.2.0",
+        "decamelize": "^1.1.1",
+        "get-caller-file": "^1.0.1",
+        "os-locale": "^1.4.0",
+        "read-pkg-up": "^1.0.1",
+        "require-directory": "^2.1.1",
+        "require-main-filename": "^1.0.1",
+        "set-blocking": "^2.0.0",
+        "string-width": "^1.0.2",
+        "which-module": "^1.0.0",
+        "y18n": "^3.2.1",
+        "yargs-parser": "^5.0.1"
+      }
+    },
+    "node_modules/gulp-cli/node_modules/yargs-parser": {
+      "version": "5.0.1",
+      "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz",
+      "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==",
+      "dev": true,
+      "dependencies": {
+        "camelcase": "^3.0.0",
+        "object.assign": "^4.1.0"
+      }
+    },
+    "node_modules/gulp-file-sync": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/gulp-file-sync/-/gulp-file-sync-2.0.0.tgz",
+      "integrity": "sha512-SW+CzVvPKIZiAUCj89mRYZ/Nhr7C1LRcCc68ytBE8m/u7+NrZs224U7iL/ARqXWOfArRtBAg7VIF9pix2xcASg==",
+      "dev": true,
+      "dependencies": {
+        "crc": "^3.5.0",
+        "fancy-log": "^1.3.2",
+        "fs-extra": "^5.0.0",
+        "plugin-error": "^0.1.2"
+      }
+    },
+    "node_modules/gulp-file-sync/node_modules/fs-extra": {
+      "version": "5.0.0",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-5.0.0.tgz",
+      "integrity": "sha512-66Pm4RYbjzdyeuqudYqhFiNBbCIuI9kgRqLPSHIlXHidW8NIQtVdkM1yeZ4lXwuhbTETv3EUGMNHAAw6hiundQ==",
+      "dev": true,
+      "dependencies": {
+        "graceful-fs": "^4.1.2",
+        "jsonfile": "^4.0.0",
+        "universalify": "^0.1.0"
+      }
+    },
+    "node_modules/gulp-file-sync/node_modules/jsonfile": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
+      "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=",
+      "dev": true,
+      "optionalDependencies": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "node_modules/gulp-imagemin": {
+      "version": "8.0.0",
+      "resolved": "https://registry.npmjs.org/gulp-imagemin/-/gulp-imagemin-8.0.0.tgz",
+      "integrity": "sha512-8Sl77dv+e/TTjtrOjzvv1XThqCKQ8O3cqH5gRwMbMeATkPY1TN06jtJtPohT8q19ptIx4og5fxhR8dLRfzUw9w==",
+      "dev": true,
+      "dependencies": {
+        "chalk": "^4.1.2",
+        "fancy-log": "^1.3.3",
+        "imagemin": "^8.0.1",
+        "plugin-error": "^1.0.1",
+        "plur": "^4.0.0",
+        "pretty-bytes": "^5.6.0",
+        "through2-concurrent": "^2.0.0"
+      },
+      "engines": {
+        "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      },
+      "optionalDependencies": {
+        "imagemin-gifsicle": "^7.0.0",
+        "imagemin-mozjpeg": "^9.0.0",
+        "imagemin-optipng": "^8.0.0",
+        "imagemin-svgo": "^9.0.0"
+      },
+      "peerDependencies": {
+        "gulp": ">=4"
+      },
+      "peerDependenciesMeta": {
+        "gulp": {
+          "optional": true
+        }
+      }
+    },
+    "node_modules/gulp-imagemin/node_modules/arr-diff": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
+      "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gulp-imagemin/node_modules/arr-union": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
+      "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gulp-imagemin/node_modules/extend-shallow": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
+      "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
+      "dev": true,
+      "dependencies": {
+        "assign-symbols": "^1.0.0",
+        "is-extendable": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gulp-imagemin/node_modules/plugin-error": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz",
+      "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==",
+      "dev": true,
+      "dependencies": {
+        "ansi-colors": "^1.0.1",
+        "arr-diff": "^4.0.0",
+        "arr-union": "^3.1.0",
+        "extend-shallow": "^3.0.2"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/gulp-plumber": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/gulp-plumber/-/gulp-plumber-1.2.1.tgz",
+      "integrity": "sha512-mctAi9msEAG7XzW5ytDVZ9PxWMzzi1pS2rBH7lA095DhMa6KEXjm+St0GOCc567pJKJ/oCvosVAZEpAey0q2eQ==",
+      "dev": true,
+      "dependencies": {
+        "chalk": "^1.1.3",
+        "fancy-log": "^1.3.2",
+        "plugin-error": "^0.1.2",
+        "through2": "^2.0.3"
+      },
+      "engines": {
+        "node": ">=0.10",
+        "npm": ">=1.2.10"
+      }
+    },
+    "node_modules/gulp-plumber/node_modules/ansi-regex": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+      "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gulp-plumber/node_modules/ansi-styles": {
+      "version": "2.2.1",
+      "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+      "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gulp-plumber/node_modules/chalk": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+      "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+      "dev": true,
+      "dependencies": {
+        "ansi-styles": "^2.2.1",
+        "escape-string-regexp": "^1.0.2",
+        "has-ansi": "^2.0.0",
+        "strip-ansi": "^3.0.0",
+        "supports-color": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gulp-plumber/node_modules/strip-ansi": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+      "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+      "dev": true,
+      "dependencies": {
+        "ansi-regex": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gulp-plumber/node_modules/supports-color": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+      "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.8.0"
+      }
+    },
+    "node_modules/gulp-prettier": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/gulp-prettier/-/gulp-prettier-4.0.0.tgz",
+      "integrity": "sha512-REx99tBRRKJD7qLPaKpplReM9cq2vFvqhMbcUZtJEVjxGjb5Ji+gN9vi8bsM8UhnDV+l0Zrf5x6L4uZiDmvGFQ==",
+      "dev": true,
+      "dependencies": {
+        "plugin-error": "^1.0.1",
+        "prettier": "^2.0.0",
+        "through2": "^4.0.2"
+      },
+      "engines": {
+        "node": ">=12"
+      }
+    },
+    "node_modules/gulp-prettier/node_modules/arr-diff": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
+      "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gulp-prettier/node_modules/arr-union": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
+      "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gulp-prettier/node_modules/extend-shallow": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
+      "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
+      "dev": true,
+      "dependencies": {
+        "assign-symbols": "^1.0.0",
+        "is-extendable": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gulp-prettier/node_modules/plugin-error": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz",
+      "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==",
+      "dev": true,
+      "dependencies": {
+        "ansi-colors": "^1.0.1",
+        "arr-diff": "^4.0.0",
+        "arr-union": "^3.1.0",
+        "extend-shallow": "^3.0.2"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/gulp-prettier/node_modules/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,
+      "dependencies": {
+        "inherits": "^2.0.3",
+        "string_decoder": "^1.1.1",
+        "util-deprecate": "^1.0.1"
+      },
+      "engines": {
+        "node": ">= 6"
+      }
+    },
+    "node_modules/gulp-prettier/node_modules/through2": {
+      "version": "4.0.2",
+      "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz",
+      "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==",
+      "dev": true,
+      "dependencies": {
+        "readable-stream": "3"
+      }
+    },
+    "node_modules/gulp-pug": {
+      "version": "5.0.0",
+      "resolved": "https://registry.npmjs.org/gulp-pug/-/gulp-pug-5.0.0.tgz",
+      "integrity": "sha512-NPnuj9hw35s78X/6Ho0vieKT/ipa0rh8cEAq3R4RWybZ7XEFPNez0O6kcxJipOLp3U6gjglsU1yiAR28bkuFkA==",
+      "dev": true,
+      "dependencies": {
+        "fancy-log": "^1.3.3",
+        "plugin-error": "^1.0.1",
+        "pug": "^3.0.2",
+        "replace-ext": "^2.0.0",
+        "through2": "^4.0.2",
+        "vinyl-contents": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=10.13.0"
+      }
+    },
+    "node_modules/gulp-pug/node_modules/arr-diff": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
+      "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gulp-pug/node_modules/arr-union": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
+      "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gulp-pug/node_modules/extend-shallow": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
+      "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
+      "dev": true,
+      "dependencies": {
+        "assign-symbols": "^1.0.0",
+        "is-extendable": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gulp-pug/node_modules/plugin-error": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz",
+      "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==",
+      "dev": true,
+      "dependencies": {
+        "ansi-colors": "^1.0.1",
+        "arr-diff": "^4.0.0",
+        "arr-union": "^3.1.0",
+        "extend-shallow": "^3.0.2"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/gulp-pug/node_modules/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,
+      "dependencies": {
+        "inherits": "^2.0.3",
+        "string_decoder": "^1.1.1",
+        "util-deprecate": "^1.0.1"
+      },
+      "engines": {
+        "node": ">= 6"
+      }
+    },
+    "node_modules/gulp-pug/node_modules/through2": {
+      "version": "4.0.2",
+      "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz",
+      "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==",
+      "dev": true,
+      "dependencies": {
+        "readable-stream": "3"
+      }
+    },
+    "node_modules/gulp-replace": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/gulp-replace/-/gulp-replace-1.1.3.tgz",
+      "integrity": "sha512-HcPHpWY4XdF8zxYkDODHnG2+7a3nD/Y8Mfu3aBgMiCFDW3X2GiOKXllsAmILcxe3KZT2BXoN18WrpEFm48KfLQ==",
+      "dev": true,
+      "dependencies": {
+        "@types/node": "^14.14.41",
+        "@types/vinyl": "^2.0.4",
+        "istextorbinary": "^3.0.0",
+        "replacestream": "^4.0.3",
+        "yargs-parser": ">=5.0.0-security.0"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/gulp-util": {
+      "version": "3.0.8",
+      "resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz",
+      "integrity": "sha1-AFTh50RQLifATBh8PsxQXdVLu08=",
+      "deprecated": "gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5",
+      "dev": true,
+      "dependencies": {
+        "array-differ": "^1.0.0",
+        "array-uniq": "^1.0.2",
+        "beeper": "^1.0.0",
+        "chalk": "^1.0.0",
+        "dateformat": "^2.0.0",
+        "fancy-log": "^1.1.0",
+        "gulplog": "^1.0.0",
+        "has-gulplog": "^0.1.0",
+        "lodash._reescape": "^3.0.0",
+        "lodash._reevaluate": "^3.0.0",
+        "lodash._reinterpolate": "^3.0.0",
+        "lodash.template": "^3.0.0",
+        "minimist": "^1.1.0",
+        "multipipe": "^0.1.2",
+        "object-assign": "^3.0.0",
+        "replace-ext": "0.0.1",
+        "through2": "^2.0.0",
+        "vinyl": "^0.5.0"
+      },
+      "engines": {
+        "node": ">=0.10"
+      }
+    },
+    "node_modules/gulp-util/node_modules/ansi-regex": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+      "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gulp-util/node_modules/ansi-styles": {
+      "version": "2.2.1",
+      "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+      "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gulp-util/node_modules/chalk": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+      "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+      "dev": true,
+      "dependencies": {
+        "ansi-styles": "^2.2.1",
+        "escape-string-regexp": "^1.0.2",
+        "has-ansi": "^2.0.0",
+        "strip-ansi": "^3.0.0",
+        "supports-color": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gulp-util/node_modules/clone": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
+      "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.8"
+      }
+    },
+    "node_modules/gulp-util/node_modules/clone-stats": {
+      "version": "0.0.1",
+      "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz",
+      "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=",
+      "dev": true
+    },
+    "node_modules/gulp-util/node_modules/replace-ext": {
+      "version": "0.0.1",
+      "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz",
+      "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.4"
+      }
+    },
+    "node_modules/gulp-util/node_modules/strip-ansi": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+      "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+      "dev": true,
+      "dependencies": {
+        "ansi-regex": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/gulp-util/node_modules/supports-color": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+      "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.8.0"
+      }
+    },
+    "node_modules/gulp-util/node_modules/vinyl": {
+      "version": "0.5.3",
+      "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz",
+      "integrity": "sha1-sEVbOPxeDPMNQyUTLkYZcMIJHN4=",
+      "dev": true,
+      "dependencies": {
+        "clone": "^1.0.0",
+        "clone-stats": "^0.0.1",
+        "replace-ext": "0.0.1"
+      },
+      "engines": {
+        "node": ">= 0.9"
+      }
+    },
+    "node_modules/gulplog": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz",
+      "integrity": "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=",
+      "dev": true,
+      "dependencies": {
+        "glogg": "^1.0.0"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/has": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
+      "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
+      "dev": true,
+      "dependencies": {
+        "function-bind": "^1.1.1"
+      },
+      "engines": {
+        "node": ">= 0.4.0"
+      }
+    },
+    "node_modules/has-ansi": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
+      "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
+      "dev": true,
+      "dependencies": {
+        "ansi-regex": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/has-ansi/node_modules/ansi-regex": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+      "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/has-binary2": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/has-binary2/-/has-binary2-1.0.3.tgz",
+      "integrity": "sha512-G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw==",
+      "dev": true,
+      "dependencies": {
+        "isarray": "2.0.1"
+      }
+    },
+    "node_modules/has-binary2/node_modules/isarray": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz",
+      "integrity": "sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4=",
+      "dev": true
+    },
+    "node_modules/has-cors": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz",
+      "integrity": "sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk=",
+      "dev": true
+    },
+    "node_modules/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,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/has-gulplog": {
+      "version": "0.1.0",
+      "resolved": "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz",
+      "integrity": "sha1-ZBTIKRNpfaUVkDl9r7EvIpZ4Ec4=",
+      "dev": true,
+      "dependencies": {
+        "sparkles": "^1.0.0"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/has-symbol-support-x": {
+      "version": "1.4.2",
+      "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz",
+      "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==",
+      "dev": true,
+      "engines": {
+        "node": "*"
+      }
+    },
+    "node_modules/has-symbols": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz",
+      "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.4"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/has-to-string-tag-x": {
+      "version": "1.4.1",
+      "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz",
+      "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==",
+      "dev": true,
+      "dependencies": {
+        "has-symbol-support-x": "^1.4.1"
+      },
+      "engines": {
+        "node": "*"
+      }
+    },
+    "node_modules/has-tostringtag": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
+      "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==",
+      "dev": true,
+      "dependencies": {
+        "has-symbols": "^1.0.2"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/has-value": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz",
+      "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=",
+      "dev": true,
+      "dependencies": {
+        "get-value": "^2.0.6",
+        "has-values": "^1.0.0",
+        "isobject": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/has-values": {
+      "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,
+      "dependencies": {
+        "is-number": "^3.0.0",
+        "kind-of": "^4.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/has-values/node_modules/is-number": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+      "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+      "dev": true,
+      "dependencies": {
+        "kind-of": "^3.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/has-values/node_modules/is-number/node_modules/kind-of": {
+      "version": "3.2.2",
+      "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+      "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+      "dev": true,
+      "dependencies": {
+        "is-buffer": "^1.1.5"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/has-values/node_modules/kind-of": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz",
+      "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=",
+      "dev": true,
+      "dependencies": {
+        "is-buffer": "^1.1.5"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/homedir-polyfill": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz",
+      "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==",
+      "dev": true,
+      "dependencies": {
+        "parse-passwd": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/hosted-git-info": {
+      "version": "2.8.9",
+      "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz",
+      "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==",
+      "dev": true
+    },
+    "node_modules/http-cache-semantics": {
+      "version": "3.8.1",
+      "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz",
+      "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==",
+      "dev": true
+    },
+    "node_modules/http-errors": {
+      "version": "1.7.3",
+      "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz",
+      "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==",
+      "dev": true,
+      "dependencies": {
+        "depd": "~1.1.2",
+        "inherits": "2.0.4",
+        "setprototypeof": "1.1.1",
+        "statuses": ">= 1.5.0 < 2",
+        "toidentifier": "1.0.0"
+      },
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/http-errors/node_modules/statuses": {
+      "version": "1.5.0",
+      "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
+      "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "eventemitter3": "^4.0.0",
+        "follow-redirects": "^1.0.0",
+        "requires-port": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=8.0.0"
+      }
+    },
+    "node_modules/human-signals": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
+      "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">=10.17.0"
+      }
+    },
+    "node_modules/iconv-lite": {
+      "version": "0.4.24",
+      "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+      "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+      "dev": true,
+      "dependencies": {
+        "safer-buffer": ">= 2.1.2 < 3"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/ieee754": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
+      "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/feross"
+        },
+        {
+          "type": "patreon",
+          "url": "https://www.patreon.com/feross"
+        },
+        {
+          "type": "consulting",
+          "url": "https://feross.org/support"
+        }
+      ]
+    },
+    "node_modules/ignore": {
+      "version": "5.1.8",
+      "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz",
+      "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==",
+      "dev": true,
+      "engines": {
+        "node": ">= 4"
+      }
+    },
+    "node_modules/imagemin": {
+      "version": "8.0.1",
+      "resolved": "https://registry.npmjs.org/imagemin/-/imagemin-8.0.1.tgz",
+      "integrity": "sha512-Q/QaPi+5HuwbZNtQRqUVk6hKacI6z9iWiCSQBisAv7uBynZwO7t1svkryKl7+iSQbkU/6t9DWnHz04cFs2WY7w==",
+      "dev": true,
+      "dependencies": {
+        "file-type": "^16.5.3",
+        "globby": "^12.0.0",
+        "graceful-fs": "^4.2.8",
+        "junk": "^3.1.0",
+        "p-pipe": "^4.0.0",
+        "replace-ext": "^2.0.0",
+        "slash": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=12"
+      }
+    },
+    "node_modules/imagemin-gifsicle": {
+      "version": "7.0.0",
+      "resolved": "https://registry.npmjs.org/imagemin-gifsicle/-/imagemin-gifsicle-7.0.0.tgz",
+      "integrity": "sha512-LaP38xhxAwS3W8PFh4y5iQ6feoTSF+dTAXFRUEYQWYst6Xd+9L/iPk34QGgK/VO/objmIlmq9TStGfVY2IcHIA==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "execa": "^1.0.0",
+        "gifsicle": "^5.0.0",
+        "is-gif": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/imagemin/imagemin-gifsicle?sponsor=1"
+      }
+    },
+    "node_modules/imagemin-jpeg-recompress": {
+      "version": "7.0.0",
+      "resolved": "https://registry.npmjs.org/imagemin-jpeg-recompress/-/imagemin-jpeg-recompress-7.0.0.tgz",
+      "integrity": "sha512-8bO1I6Xncw82i1drrLL/IemZfdD8+oZImUFzMffHUP4YrvyJZpbS8QTC95yIQuuA0NLWDaGuB93sGN8z4T3DnA==",
+      "dev": true,
+      "dependencies": {
+        "exec-buffer": "^3.0.0",
+        "is-jpg": "^2.0.0",
+        "jpeg-recompress-bin": "^5.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/imagemin-mozjpeg": {
+      "version": "9.0.0",
+      "resolved": "https://registry.npmjs.org/imagemin-mozjpeg/-/imagemin-mozjpeg-9.0.0.tgz",
+      "integrity": "sha512-TwOjTzYqCFRgROTWpVSt5UTT0JeCuzF1jswPLKALDd89+PmrJ2PdMMYeDLYZ1fs9cTovI9GJd68mRSnuVt691w==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "execa": "^4.0.0",
+        "is-jpg": "^2.0.0",
+        "mozjpeg": "^7.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/imagemin-mozjpeg/node_modules/cross-spawn": {
+      "version": "7.0.3",
+      "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
+      "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "path-key": "^3.1.0",
+        "shebang-command": "^2.0.0",
+        "which": "^2.0.1"
+      },
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/imagemin-mozjpeg/node_modules/execa": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz",
+      "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "cross-spawn": "^7.0.0",
+        "get-stream": "^5.0.0",
+        "human-signals": "^1.1.1",
+        "is-stream": "^2.0.0",
+        "merge-stream": "^2.0.0",
+        "npm-run-path": "^4.0.0",
+        "onetime": "^5.1.0",
+        "signal-exit": "^3.0.2",
+        "strip-final-newline": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sindresorhus/execa?sponsor=1"
+      }
+    },
+    "node_modules/imagemin-mozjpeg/node_modules/get-stream": {
+      "version": "5.2.0",
+      "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
+      "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "pump": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/imagemin-mozjpeg/node_modules/human-signals": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz",
+      "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">=8.12.0"
+      }
+    },
+    "node_modules/imagemin-mozjpeg/node_modules/is-stream": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
+      "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">=8"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/imagemin-mozjpeg/node_modules/npm-run-path": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
+      "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "path-key": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/imagemin-mozjpeg/node_modules/path-key": {
+      "version": "3.1.1",
+      "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+      "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/imagemin-mozjpeg/node_modules/shebang-command": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+      "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "shebang-regex": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/imagemin-mozjpeg/node_modules/shebang-regex": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+      "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/imagemin-mozjpeg/node_modules/which": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+      "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "isexe": "^2.0.0"
+      },
+      "bin": {
+        "node-which": "bin/node-which"
+      },
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/imagemin-optipng": {
+      "version": "8.0.0",
+      "resolved": "https://registry.npmjs.org/imagemin-optipng/-/imagemin-optipng-8.0.0.tgz",
+      "integrity": "sha512-CUGfhfwqlPjAC0rm8Fy+R2DJDBGjzy2SkfyT09L8rasnF9jSoHFqJ1xxSZWK6HVPZBMhGPMxCTL70OgTHlLF5A==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "exec-buffer": "^3.0.0",
+        "is-png": "^2.0.0",
+        "optipng-bin": "^7.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/imagemin-pngquant": {
+      "version": "9.0.2",
+      "resolved": "https://registry.npmjs.org/imagemin-pngquant/-/imagemin-pngquant-9.0.2.tgz",
+      "integrity": "sha512-cj//bKo8+Frd/DM8l6Pg9pws1pnDUjgb7ae++sUX1kUVdv2nrngPykhiUOgFeE0LGY/LmUbCf4egCHC4YUcZSg==",
+      "dev": true,
+      "dependencies": {
+        "execa": "^4.0.0",
+        "is-png": "^2.0.0",
+        "is-stream": "^2.0.0",
+        "ow": "^0.17.0",
+        "pngquant-bin": "^6.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/imagemin-pngquant/node_modules/cross-spawn": {
+      "version": "7.0.3",
+      "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
+      "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
+      "dev": true,
+      "dependencies": {
+        "path-key": "^3.1.0",
+        "shebang-command": "^2.0.0",
+        "which": "^2.0.1"
+      },
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/imagemin-pngquant/node_modules/execa": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz",
+      "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==",
+      "dev": true,
+      "dependencies": {
+        "cross-spawn": "^7.0.0",
+        "get-stream": "^5.0.0",
+        "human-signals": "^1.1.1",
+        "is-stream": "^2.0.0",
+        "merge-stream": "^2.0.0",
+        "npm-run-path": "^4.0.0",
+        "onetime": "^5.1.0",
+        "signal-exit": "^3.0.2",
+        "strip-final-newline": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sindresorhus/execa?sponsor=1"
+      }
+    },
+    "node_modules/imagemin-pngquant/node_modules/get-stream": {
+      "version": "5.2.0",
+      "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
+      "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
+      "dev": true,
+      "dependencies": {
+        "pump": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/imagemin-pngquant/node_modules/human-signals": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz",
+      "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==",
+      "dev": true,
+      "engines": {
+        "node": ">=8.12.0"
+      }
+    },
+    "node_modules/imagemin-pngquant/node_modules/is-stream": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
+      "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/imagemin-pngquant/node_modules/npm-run-path": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
+      "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
+      "dev": true,
+      "dependencies": {
+        "path-key": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/imagemin-pngquant/node_modules/path-key": {
+      "version": "3.1.1",
+      "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+      "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/imagemin-pngquant/node_modules/shebang-command": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+      "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+      "dev": true,
+      "dependencies": {
+        "shebang-regex": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/imagemin-pngquant/node_modules/shebang-regex": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+      "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/imagemin-pngquant/node_modules/which": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+      "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+      "dev": true,
+      "dependencies": {
+        "isexe": "^2.0.0"
+      },
+      "bin": {
+        "node-which": "bin/node-which"
+      },
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/imagemin-svgo": {
+      "version": "9.0.0",
+      "resolved": "https://registry.npmjs.org/imagemin-svgo/-/imagemin-svgo-9.0.0.tgz",
+      "integrity": "sha512-uNgXpKHd99C0WODkrJ8OO/3zW3qjgS4pW7hcuII0RcHN3tnKxDjJWcitdVC/TZyfIqSricU8WfrHn26bdSW62g==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "is-svg": "^4.2.1",
+        "svgo": "^2.1.0"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sindresorhus/imagemin-svgo?sponsor=1"
+      }
+    },
+    "node_modules/immutable": {
+      "version": "3.8.2",
+      "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.8.2.tgz",
+      "integrity": "sha1-wkOZUUVbs5kT2vKBN28VMOEErfM=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/import-lazy": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz",
+      "integrity": "sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==",
+      "dev": true,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/indexof": {
+      "version": "0.0.1",
+      "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz",
+      "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=",
+      "dev": true
+    },
+    "node_modules/inflight": {
+      "version": "1.0.6",
+      "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
+      "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
+      "dev": true,
+      "dependencies": {
+        "once": "^1.3.0",
+        "wrappy": "1"
+      }
+    },
+    "node_modules/inherits": {
+      "version": "2.0.4",
+      "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+      "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
+      "dev": true
+    },
+    "node_modules/ini": {
+      "version": "1.3.8",
+      "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
+      "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
+      "dev": true
+    },
+    "node_modules/interpret": {
+      "version": "1.4.0",
+      "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz",
+      "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/into-stream": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz",
+      "integrity": "sha1-lvsKk2wSur1v8XUqF9BWFqvQlMY=",
+      "dev": true,
+      "dependencies": {
+        "from2": "^2.1.1",
+        "p-is-promise": "^1.1.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/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=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/irregular-plurals": {
+      "version": "3.3.0",
+      "resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-3.3.0.tgz",
+      "integrity": "sha512-MVBLKUTangM3EfRPFROhmWQQKRDsrgI83J8GS3jXy+OwYqiR2/aoWndYQ5416jLE3uaGgLH7ncme3X9y09gZ3g==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/is-absolute": {
+      "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,
+      "dependencies": {
+        "is-relative": "^1.0.0",
+        "is-windows": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-accessor-descriptor": {
+      "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,
+      "dependencies": {
+        "kind-of": "^6.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-accessor-descriptor/node_modules/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==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-arrayish": {
+      "version": "0.2.1",
+      "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
+      "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=",
+      "dev": true
+    },
+    "node_modules/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,
+      "dependencies": {
+        "binary-extensions": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/is-buffer": {
+      "version": "1.1.6",
+      "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+      "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+      "dev": true
+    },
+    "node_modules/is-core-module": {
+      "version": "2.8.0",
+      "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz",
+      "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==",
+      "dev": true,
+      "dependencies": {
+        "has": "^1.0.3"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/is-data-descriptor": {
+      "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,
+      "dependencies": {
+        "kind-of": "^6.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-data-descriptor/node_modules/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==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-descriptor": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
+      "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
+      "dev": true,
+      "dependencies": {
+        "is-accessor-descriptor": "^1.0.0",
+        "is-data-descriptor": "^1.0.0",
+        "kind-of": "^6.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-descriptor/node_modules/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==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-expression": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/is-expression/-/is-expression-4.0.0.tgz",
+      "integrity": "sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==",
+      "dev": true,
+      "dependencies": {
+        "acorn": "^7.1.1",
+        "object-assign": "^4.1.1"
+      }
+    },
+    "node_modules/is-expression/node_modules/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,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-extendable": {
+      "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,
+      "dependencies": {
+        "is-plain-object": "^2.0.4"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-extendable/node_modules/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,
+      "dependencies": {
+        "isobject": "^3.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-extglob": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+      "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-fullwidth-code-point": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+      "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/is-gif": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/is-gif/-/is-gif-3.0.0.tgz",
+      "integrity": "sha512-IqJ/jlbw5WJSNfwQ/lHEDXF8rxhRgF6ythk2oiEvhpG29F704eX9NO6TvPfMiq9DrbwgcEDnETYNcZDPewQoVw==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "file-type": "^10.4.0"
+      },
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/is-gif/node_modules/file-type": {
+      "version": "10.11.0",
+      "resolved": "https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz",
+      "integrity": "sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/is-glob": {
+      "version": "4.0.3",
+      "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
+      "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+      "dev": true,
+      "dependencies": {
+        "is-extglob": "^2.1.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-jpg": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/is-jpg/-/is-jpg-2.0.0.tgz",
+      "integrity": "sha1-LhmX+m6RZuqsAkLarkQ0A+TvHZc=",
+      "dev": true,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/is-natural-number": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz",
+      "integrity": "sha1-q5124dtM7VHjXeDHLr7PCfc0zeg=",
+      "dev": true
+    },
+    "node_modules/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=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/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,
+      "engines": {
+        "node": ">=0.12.0"
+      }
+    },
+    "node_modules/is-number-like": {
+      "version": "1.0.8",
+      "resolved": "https://registry.npmjs.org/is-number-like/-/is-number-like-1.0.8.tgz",
+      "integrity": "sha512-6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA==",
+      "dev": true,
+      "dependencies": {
+        "lodash.isfinite": "^3.3.2"
+      }
+    },
+    "node_modules/is-object": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz",
+      "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==",
+      "dev": true,
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/is-plain-obj": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
+      "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-plain-object": {
+      "version": "5.0.0",
+      "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz",
+      "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-png": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/is-png/-/is-png-2.0.0.tgz",
+      "integrity": "sha512-4KPGizaVGj2LK7xwJIz8o5B2ubu1D/vcQsgOGFEDlpcvgZHto4gBnyd0ig7Ws+67ixmwKoNmu0hYnpo6AaKb5g==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/is-promise": {
+      "version": "2.2.2",
+      "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz",
+      "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==",
+      "dev": true
+    },
+    "node_modules/is-regex": {
+      "version": "1.1.4",
+      "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
+      "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==",
+      "dev": true,
+      "dependencies": {
+        "call-bind": "^1.0.2",
+        "has-tostringtag": "^1.0.0"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/is-relative": {
+      "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,
+      "dependencies": {
+        "is-unc-path": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-retry-allowed": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz",
+      "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-stream": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
+      "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-svg": {
+      "version": "4.3.1",
+      "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-4.3.1.tgz",
+      "integrity": "sha512-h2CGs+yPUyvkgTJQS9cJzo9lYK06WgRiXUqBBHtglSzVKAuH4/oWsqk7LGfbSa1hGk9QcZ0SyQtVggvBA8LZXA==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "fast-xml-parser": "^3.19.0"
+      },
+      "engines": {
+        "node": ">=6"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/is-unc-path": {
+      "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,
+      "dependencies": {
+        "unc-path-regex": "^0.1.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-utf8": {
+      "version": "0.2.1",
+      "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz",
+      "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=",
+      "dev": true
+    },
+    "node_modules/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=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/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==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-wsl": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz",
+      "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/isarray": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+      "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+      "dev": true
+    },
+    "node_modules/isexe": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+      "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
+      "dev": true
+    },
+    "node_modules/isobject": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
+      "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/istextorbinary": {
+      "version": "3.3.0",
+      "resolved": "https://registry.npmjs.org/istextorbinary/-/istextorbinary-3.3.0.tgz",
+      "integrity": "sha512-Tvq1W6NAcZeJ8op+Hq7tdZ434rqnMx4CCZ7H0ff83uEloDvVbqAwaMTZcafKGJT0VHkYzuXUiCY4hlXQg6WfoQ==",
+      "dev": true,
+      "dependencies": {
+        "binaryextensions": "^2.2.0",
+        "textextensions": "^3.2.0"
+      },
+      "engines": {
+        "node": ">=8"
+      },
+      "funding": {
+        "url": "https://bevry.me/fund"
+      }
+    },
+    "node_modules/isurl": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz",
+      "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==",
+      "dev": true,
+      "dependencies": {
+        "has-to-string-tag-x": "^1.2.0",
+        "is-object": "^1.0.1"
+      },
+      "engines": {
+        "node": ">= 4"
+      }
+    },
+    "node_modules/jpeg-recompress-bin": {
+      "version": "5.1.2",
+      "resolved": "https://registry.npmjs.org/jpeg-recompress-bin/-/jpeg-recompress-bin-5.1.2.tgz",
+      "integrity": "sha512-JjR7+gqmw1D1jYgicMpRi+t/Si13+xOMDuvYRSQFMkrKmnOwTqti+9U9ZHrbUnXjrulqK9Sjjq/Hn8E9UnOFpA==",
+      "dev": true,
+      "hasInstallScript": true,
+      "dependencies": {
+        "bin-build": "^3.0.0",
+        "bin-wrapper": "^4.1.0"
+      },
+      "bin": {
+        "jpeg-recompress": "cli.js"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/js-stringify": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/js-stringify/-/js-stringify-1.0.2.tgz",
+      "integrity": "sha1-Fzb939lyTyijaCrcYjCufk6Weds=",
+      "dev": true
+    },
+    "node_modules/json-buffer": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz",
+      "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=",
+      "dev": true
+    },
+    "node_modules/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=",
+      "dev": true
+    },
+    "node_modules/jsonfile": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz",
+      "integrity": "sha1-pezG9l9T9mLEQVx2daAzHQmS7GY=",
+      "dev": true,
+      "optionalDependencies": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "node_modules/jstransformer": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/jstransformer/-/jstransformer-1.0.0.tgz",
+      "integrity": "sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM=",
+      "dev": true,
+      "dependencies": {
+        "is-promise": "^2.0.0",
+        "promise": "^7.0.1"
+      }
+    },
+    "node_modules/junk": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz",
+      "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/just-debounce": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.1.0.tgz",
+      "integrity": "sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==",
+      "dev": true
+    },
+    "node_modules/keyv": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz",
+      "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==",
+      "dev": true,
+      "dependencies": {
+        "json-buffer": "3.0.0"
+      }
+    },
+    "node_modules/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==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "default-resolution": "^2.0.0",
+        "es6-weak-map": "^2.0.1"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/lazystream": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz",
+      "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==",
+      "dev": true,
+      "dependencies": {
+        "readable-stream": "^2.0.5"
+      },
+      "engines": {
+        "node": ">= 0.6.3"
+      }
+    },
+    "node_modules/lcid": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz",
+      "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=",
+      "dev": true,
+      "dependencies": {
+        "invert-kv": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/lead": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz",
+      "integrity": "sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI=",
+      "dev": true,
+      "dependencies": {
+        "flush-write-stream": "^1.0.2"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/liftoff": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz",
+      "integrity": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==",
+      "dev": true,
+      "dependencies": {
+        "extend": "^3.0.0",
+        "findup-sync": "^3.0.0",
+        "fined": "^1.0.1",
+        "flagged-respawn": "^1.0.0",
+        "is-plain-object": "^2.0.4",
+        "object.map": "^1.0.0",
+        "rechoir": "^0.6.2",
+        "resolve": "^1.1.7"
+      },
+      "engines": {
+        "node": ">= 0.8"
+      }
+    },
+    "node_modules/liftoff/node_modules/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,
+      "dependencies": {
+        "isobject": "^3.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/limiter": {
+      "version": "1.1.5",
+      "resolved": "https://registry.npmjs.org/limiter/-/limiter-1.1.5.tgz",
+      "integrity": "sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==",
+      "dev": true
+    },
+    "node_modules/load-json-file": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz",
+      "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=",
+      "dev": true,
+      "dependencies": {
+        "graceful-fs": "^4.1.2",
+        "parse-json": "^2.2.0",
+        "pify": "^2.0.0",
+        "pinkie-promise": "^2.0.0",
+        "strip-bom": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/load-json-file/node_modules/pify": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+      "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/localtunnel": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/localtunnel/-/localtunnel-2.0.2.tgz",
+      "integrity": "sha512-n418Cn5ynvJd7m/N1d9WVJISLJF/ellZnfsLnx8WBWGzxv/ntNcFkJ1o6se5quUhCplfLGBNL5tYHiq5WF3Nug==",
+      "dev": true,
+      "dependencies": {
+        "axios": "0.21.4",
+        "debug": "4.3.2",
+        "openurl": "1.1.1",
+        "yargs": "17.1.1"
+      },
+      "bin": {
+        "lt": "bin/lt.js"
+      },
+      "engines": {
+        "node": ">=8.3.0"
+      }
+    },
+    "node_modules/localtunnel/node_modules/cliui": {
+      "version": "7.0.4",
+      "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
+      "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
+      "dev": true,
+      "dependencies": {
+        "string-width": "^4.2.0",
+        "strip-ansi": "^6.0.0",
+        "wrap-ansi": "^7.0.0"
+      }
+    },
+    "node_modules/localtunnel/node_modules/debug": {
+      "version": "4.3.2",
+      "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz",
+      "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==",
+      "dev": true,
+      "dependencies": {
+        "ms": "2.1.2"
+      },
+      "engines": {
+        "node": ">=6.0"
+      },
+      "peerDependenciesMeta": {
+        "supports-color": {
+          "optional": true
+        }
+      }
+    },
+    "node_modules/localtunnel/node_modules/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
+    },
+    "node_modules/localtunnel/node_modules/wrap-ansi": {
+      "version": "7.0.0",
+      "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+      "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+      "dev": true,
+      "dependencies": {
+        "ansi-styles": "^4.0.0",
+        "string-width": "^4.1.0",
+        "strip-ansi": "^6.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+      }
+    },
+    "node_modules/localtunnel/node_modules/y18n": {
+      "version": "5.0.8",
+      "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
+      "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
+      "dev": true,
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/localtunnel/node_modules/yargs": {
+      "version": "17.1.1",
+      "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.1.1.tgz",
+      "integrity": "sha512-c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ==",
+      "dev": true,
+      "dependencies": {
+        "cliui": "^7.0.2",
+        "escalade": "^3.1.1",
+        "get-caller-file": "^2.0.5",
+        "require-directory": "^2.1.1",
+        "string-width": "^4.2.0",
+        "y18n": "^5.0.5",
+        "yargs-parser": "^20.2.2"
+      },
+      "engines": {
+        "node": ">=12"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "p-locate": "^4.1.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/lodash": {
+      "version": "4.17.21",
+      "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
+      "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
+      "dev": true
+    },
+    "node_modules/lodash._basecopy": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz",
+      "integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=",
+      "dev": true
+    },
+    "node_modules/lodash._basetostring": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz",
+      "integrity": "sha1-0YYdh3+CSlL2aYMtyvPuFVZqB9U=",
+      "dev": true
+    },
+    "node_modules/lodash._basevalues": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz",
+      "integrity": "sha1-W3dXYoAr3j0yl1A+JjAIIP32Ybc=",
+      "dev": true
+    },
+    "node_modules/lodash._getnative": {
+      "version": "3.9.1",
+      "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz",
+      "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=",
+      "dev": true
+    },
+    "node_modules/lodash._isiterateecall": {
+      "version": "3.0.9",
+      "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz",
+      "integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=",
+      "dev": true
+    },
+    "node_modules/lodash._reescape": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz",
+      "integrity": "sha1-Kx1vXf4HyKNVdT5fJ/rH8c3hYWo=",
+      "dev": true
+    },
+    "node_modules/lodash._reevaluate": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz",
+      "integrity": "sha1-WLx0xAZklTrgsSTYBpltrKQx4u0=",
+      "dev": true
+    },
+    "node_modules/lodash._reinterpolate": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz",
+      "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=",
+      "dev": true
+    },
+    "node_modules/lodash._root": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz",
+      "integrity": "sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI=",
+      "dev": true
+    },
+    "node_modules/lodash.escape": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz",
+      "integrity": "sha1-mV7g3BjBtIzJLv+ucaEKq1tIdpg=",
+      "dev": true,
+      "dependencies": {
+        "lodash._root": "^3.0.0"
+      }
+    },
+    "node_modules/lodash.isarguments": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz",
+      "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=",
+      "dev": true
+    },
+    "node_modules/lodash.isarray": {
+      "version": "3.0.4",
+      "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz",
+      "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=",
+      "dev": true
+    },
+    "node_modules/lodash.isfinite": {
+      "version": "3.3.2",
+      "resolved": "https://registry.npmjs.org/lodash.isfinite/-/lodash.isfinite-3.3.2.tgz",
+      "integrity": "sha1-+4m2WpqAKBgz8LdHizpRBPiY67M=",
+      "dev": true
+    },
+    "node_modules/lodash.keys": {
+      "version": "3.1.2",
+      "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz",
+      "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=",
+      "dev": true,
+      "dependencies": {
+        "lodash._getnative": "^3.0.0",
+        "lodash.isarguments": "^3.0.0",
+        "lodash.isarray": "^3.0.0"
+      }
+    },
+    "node_modules/lodash.restparam": {
+      "version": "3.6.1",
+      "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz",
+      "integrity": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=",
+      "dev": true
+    },
+    "node_modules/lodash.template": {
+      "version": "3.6.2",
+      "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz",
+      "integrity": "sha1-+M3sxhaaJVvpCYrosMU9N4kx0U8=",
+      "dev": true,
+      "dependencies": {
+        "lodash._basecopy": "^3.0.0",
+        "lodash._basetostring": "^3.0.0",
+        "lodash._basevalues": "^3.0.0",
+        "lodash._isiterateecall": "^3.0.0",
+        "lodash._reinterpolate": "^3.0.0",
+        "lodash.escape": "^3.0.0",
+        "lodash.keys": "^3.0.0",
+        "lodash.restparam": "^3.0.0",
+        "lodash.templatesettings": "^3.0.0"
+      }
+    },
+    "node_modules/lodash.templatesettings": {
+      "version": "3.1.1",
+      "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz",
+      "integrity": "sha1-+zB4RHU7Zrnxr6VOJix0UwfbqOU=",
+      "dev": true,
+      "dependencies": {
+        "lodash._reinterpolate": "^3.0.0",
+        "lodash.escape": "^3.0.0"
+      }
+    },
+    "node_modules/lowercase-keys": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz",
+      "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/lru-cache": {
+      "version": "4.1.5",
+      "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz",
+      "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==",
+      "dev": true,
+      "dependencies": {
+        "pseudomap": "^1.0.2",
+        "yallist": "^2.1.2"
+      }
+    },
+    "node_modules/make-dir": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz",
+      "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==",
+      "dev": true,
+      "dependencies": {
+        "pify": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/make-dir/node_modules/pify": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+      "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/make-iterator": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz",
+      "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==",
+      "dev": true,
+      "dependencies": {
+        "kind-of": "^6.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/make-iterator/node_modules/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==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/map-cache": {
+      "version": "0.2.2",
+      "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
+      "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/map-visit": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz",
+      "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=",
+      "dev": true,
+      "dependencies": {
+        "object-visit": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/matchdep": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz",
+      "integrity": "sha1-xvNINKDY28OzfCfui7yyfHd1WC4=",
+      "dev": true,
+      "dependencies": {
+        "findup-sync": "^2.0.0",
+        "micromatch": "^3.0.4",
+        "resolve": "^1.4.0",
+        "stack-trace": "0.0.10"
+      },
+      "engines": {
+        "node": ">= 0.10.0"
+      }
+    },
+    "node_modules/matchdep/node_modules/arr-diff": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
+      "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/matchdep/node_modules/braces": {
+      "version": "2.3.2",
+      "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
+      "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
+      "dev": true,
+      "dependencies": {
+        "arr-flatten": "^1.1.0",
+        "array-unique": "^0.3.2",
+        "extend-shallow": "^2.0.1",
+        "fill-range": "^4.0.0",
+        "isobject": "^3.0.1",
+        "repeat-element": "^1.1.2",
+        "snapdragon": "^0.8.1",
+        "snapdragon-node": "^2.0.1",
+        "split-string": "^3.0.2",
+        "to-regex": "^3.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/matchdep/node_modules/braces/node_modules/extend-shallow": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+      "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+      "dev": true,
+      "dependencies": {
+        "is-extendable": "^0.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/matchdep/node_modules/braces/node_modules/is-extendable": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+      "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/matchdep/node_modules/extend-shallow": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
+      "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
+      "dev": true,
+      "dependencies": {
+        "assign-symbols": "^1.0.0",
+        "is-extendable": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/matchdep/node_modules/fill-range": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
+      "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
+      "dev": true,
+      "dependencies": {
+        "extend-shallow": "^2.0.1",
+        "is-number": "^3.0.0",
+        "repeat-string": "^1.6.1",
+        "to-regex-range": "^2.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/matchdep/node_modules/fill-range/node_modules/extend-shallow": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+      "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+      "dev": true,
+      "dependencies": {
+        "is-extendable": "^0.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/matchdep/node_modules/fill-range/node_modules/is-extendable": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+      "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/matchdep/node_modules/findup-sync": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz",
+      "integrity": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=",
+      "dev": true,
+      "dependencies": {
+        "detect-file": "^1.0.0",
+        "is-glob": "^3.1.0",
+        "micromatch": "^3.0.4",
+        "resolve-dir": "^1.0.1"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/matchdep/node_modules/is-glob": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
+      "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
+      "dev": true,
+      "dependencies": {
+        "is-extglob": "^2.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/matchdep/node_modules/is-number": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
+      "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
+      "dev": true,
+      "dependencies": {
+        "kind-of": "^3.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/matchdep/node_modules/is-number/node_modules/kind-of": {
+      "version": "3.2.2",
+      "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+      "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+      "dev": true,
+      "dependencies": {
+        "is-buffer": "^1.1.5"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/matchdep/node_modules/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==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/matchdep/node_modules/micromatch": {
+      "version": "3.1.10",
+      "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
+      "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
+      "dev": true,
+      "dependencies": {
+        "arr-diff": "^4.0.0",
+        "array-unique": "^0.3.2",
+        "braces": "^2.3.1",
+        "define-property": "^2.0.2",
+        "extend-shallow": "^3.0.2",
+        "extglob": "^2.0.4",
+        "fragment-cache": "^0.2.1",
+        "kind-of": "^6.0.2",
+        "nanomatch": "^1.2.9",
+        "object.pick": "^1.3.0",
+        "regex-not": "^1.0.0",
+        "snapdragon": "^0.8.1",
+        "to-regex": "^3.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/matchdep/node_modules/to-regex-range": {
+      "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,
+      "dependencies": {
+        "is-number": "^3.0.0",
+        "repeat-string": "^1.6.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/mdn-data": {
+      "version": "2.0.14",
+      "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz",
+      "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==",
+      "dev": true,
+      "optional": true
+    },
+    "node_modules/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
+    },
+    "node_modules/merge2": {
+      "version": "1.4.1",
+      "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
+      "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
+      "dev": true,
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/micromatch": {
+      "version": "4.0.4",
+      "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz",
+      "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==",
+      "dev": true,
+      "dependencies": {
+        "braces": "^3.0.1",
+        "picomatch": "^2.2.3"
+      },
+      "engines": {
+        "node": ">=8.6"
+      }
+    },
+    "node_modules/mime": {
+      "version": "1.4.1",
+      "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz",
+      "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==",
+      "dev": true,
+      "bin": {
+        "mime": "cli.js"
+      }
+    },
+    "node_modules/mime-db": {
+      "version": "1.50.0",
+      "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.50.0.tgz",
+      "integrity": "sha512-9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A==",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/mime-types": {
+      "version": "2.1.33",
+      "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.33.tgz",
+      "integrity": "sha512-plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g==",
+      "dev": true,
+      "dependencies": {
+        "mime-db": "1.50.0"
+      },
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/mimic-fn": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
+      "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
+      "dev": true,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/mimic-response": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz",
+      "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/minimatch": {
+      "version": "3.0.4",
+      "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
+      "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
+      "dev": true,
+      "dependencies": {
+        "brace-expansion": "^1.1.7"
+      },
+      "engines": {
+        "node": "*"
+      }
+    },
+    "node_modules/minimist": {
+      "version": "1.2.5",
+      "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
+      "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
+      "dev": true
+    },
+    "node_modules/mitt": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz",
+      "integrity": "sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==",
+      "dev": true
+    },
+    "node_modules/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,
+      "dependencies": {
+        "for-in": "^1.0.2",
+        "is-extendable": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/mozjpeg": {
+      "version": "7.1.1",
+      "resolved": "https://registry.npmjs.org/mozjpeg/-/mozjpeg-7.1.1.tgz",
+      "integrity": "sha512-iIDxWvzhWvLC9mcRJ1uSkiKaj4drF58oCqK2bITm5c2Jt6cJ8qQjSSru2PCaysG+hLIinryj8mgz5ZJzOYTv1A==",
+      "dev": true,
+      "hasInstallScript": true,
+      "optional": true,
+      "dependencies": {
+        "bin-build": "^3.0.0",
+        "bin-wrapper": "^4.0.0"
+      },
+      "bin": {
+        "mozjpeg": "cli.js"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/ms": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+      "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+      "dev": true
+    },
+    "node_modules/multipipe": {
+      "version": "0.1.2",
+      "resolved": "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz",
+      "integrity": "sha1-Ko8t33Du1WTf8tV/HhoTfZ8FB4s=",
+      "dev": true,
+      "dependencies": {
+        "duplexer2": "0.0.2"
+      }
+    },
+    "node_modules/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==",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/nan": {
+      "version": "2.15.0",
+      "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz",
+      "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==",
+      "dev": true,
+      "optional": true
+    },
+    "node_modules/nanomatch": {
+      "version": "1.2.13",
+      "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz",
+      "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==",
+      "dev": true,
+      "dependencies": {
+        "arr-diff": "^4.0.0",
+        "array-unique": "^0.3.2",
+        "define-property": "^2.0.2",
+        "extend-shallow": "^3.0.2",
+        "fragment-cache": "^0.2.1",
+        "is-windows": "^1.0.2",
+        "kind-of": "^6.0.2",
+        "object.pick": "^1.3.0",
+        "regex-not": "^1.0.0",
+        "snapdragon": "^0.8.1",
+        "to-regex": "^3.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/nanomatch/node_modules/arr-diff": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
+      "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/nanomatch/node_modules/extend-shallow": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
+      "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
+      "dev": true,
+      "dependencies": {
+        "assign-symbols": "^1.0.0",
+        "is-extendable": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/nanomatch/node_modules/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==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/negotiator": {
+      "version": "0.6.2",
+      "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz",
+      "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/next-tick": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz",
+      "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=",
+      "dev": true
+    },
+    "node_modules/nice-try": {
+      "version": "1.0.5",
+      "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
+      "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==",
+      "dev": true
+    },
+    "node_modules/normalize-package-data": {
+      "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,
+      "dependencies": {
+        "hosted-git-info": "^2.1.4",
+        "resolve": "^1.10.0",
+        "semver": "2 || 3 || 4 || 5",
+        "validate-npm-package-license": "^3.0.1"
+      }
+    },
+    "node_modules/normalize-path": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
+      "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/normalize-url": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz",
+      "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==",
+      "dev": true,
+      "dependencies": {
+        "prepend-http": "^2.0.0",
+        "query-string": "^5.0.1",
+        "sort-keys": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/normalize-url/node_modules/prepend-http": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz",
+      "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/normalize-url/node_modules/sort-keys": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz",
+      "integrity": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=",
+      "dev": true,
+      "dependencies": {
+        "is-plain-obj": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "once": "^1.3.2"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/npm-conf": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz",
+      "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==",
+      "dev": true,
+      "dependencies": {
+        "config-chain": "^1.1.11",
+        "pify": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/npm-conf/node_modules/pify": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+      "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "path-key": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/nth-check": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz",
+      "integrity": "sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "boolbase": "^1.0.0"
+      },
+      "funding": {
+        "url": "https://github.com/fb55/nth-check?sponsor=1"
+      }
+    },
+    "node_modules/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=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/object-assign": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz",
+      "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/object-copy": {
+      "version": "0.1.0",
+      "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz",
+      "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=",
+      "dev": true,
+      "dependencies": {
+        "copy-descriptor": "^0.1.0",
+        "define-property": "^0.2.5",
+        "kind-of": "^3.0.3"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/object-copy/node_modules/define-property": {
+      "version": "0.2.5",
+      "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+      "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+      "dev": true,
+      "dependencies": {
+        "is-descriptor": "^0.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/object-copy/node_modules/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,
+      "dependencies": {
+        "kind-of": "^3.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/object-copy/node_modules/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,
+      "dependencies": {
+        "kind-of": "^3.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/object-copy/node_modules/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,
+      "dependencies": {
+        "is-accessor-descriptor": "^0.1.6",
+        "is-data-descriptor": "^0.1.4",
+        "kind-of": "^5.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/object-copy/node_modules/is-descriptor/node_modules/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==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/object-copy/node_modules/kind-of": {
+      "version": "3.2.2",
+      "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+      "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+      "dev": true,
+      "dependencies": {
+        "is-buffer": "^1.1.5"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/object-keys": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
+      "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.4"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "isobject": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/object.assign": {
+      "version": "4.1.2",
+      "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz",
+      "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==",
+      "dev": true,
+      "dependencies": {
+        "call-bind": "^1.0.0",
+        "define-properties": "^1.1.3",
+        "has-symbols": "^1.0.1",
+        "object-keys": "^1.1.1"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/object.defaults": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz",
+      "integrity": "sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=",
+      "dev": true,
+      "dependencies": {
+        "array-each": "^1.0.1",
+        "array-slice": "^1.0.0",
+        "for-own": "^1.0.0",
+        "isobject": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/object.map": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz",
+      "integrity": "sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=",
+      "dev": true,
+      "dependencies": {
+        "for-own": "^1.0.0",
+        "make-iterator": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/object.pick": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz",
+      "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=",
+      "dev": true,
+      "dependencies": {
+        "isobject": "^3.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/object.reduce": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz",
+      "integrity": "sha1-b+NI8qx/oPlcpiEiZZkJaCW7A60=",
+      "dev": true,
+      "dependencies": {
+        "for-own": "^1.0.0",
+        "make-iterator": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/on-finished": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
+      "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=",
+      "dev": true,
+      "dependencies": {
+        "ee-first": "1.1.1"
+      },
+      "engines": {
+        "node": ">= 0.8"
+      }
+    },
+    "node_modules/once": {
+      "version": "1.4.0",
+      "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
+      "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
+      "dev": true,
+      "dependencies": {
+        "wrappy": "1"
+      }
+    },
+    "node_modules/onetime": {
+      "version": "5.1.2",
+      "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
+      "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
+      "dev": true,
+      "dependencies": {
+        "mimic-fn": "^2.1.0"
+      },
+      "engines": {
+        "node": ">=6"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/openurl": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/openurl/-/openurl-1.1.1.tgz",
+      "integrity": "sha1-OHW0sO96UsFW8NtB1GCduw+Us4c=",
+      "dev": true
+    },
+    "node_modules/opn": {
+      "version": "5.3.0",
+      "resolved": "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz",
+      "integrity": "sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==",
+      "dev": true,
+      "dependencies": {
+        "is-wsl": "^1.1.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/optipng-bin": {
+      "version": "7.0.1",
+      "resolved": "https://registry.npmjs.org/optipng-bin/-/optipng-bin-7.0.1.tgz",
+      "integrity": "sha512-W99mpdW7Nt2PpFiaO+74pkht7KEqkXkeRomdWXfEz3SALZ6hns81y/pm1dsGZ6ItUIfchiNIP6ORDr1zETU1jA==",
+      "dev": true,
+      "hasInstallScript": true,
+      "optional": true,
+      "dependencies": {
+        "bin-build": "^3.0.0",
+        "bin-wrapper": "^4.0.0"
+      },
+      "bin": {
+        "optipng": "cli.js"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "readable-stream": "^2.0.1"
+      }
+    },
+    "node_modules/os-filter-obj": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz",
+      "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==",
+      "dev": true,
+      "dependencies": {
+        "arch": "^2.1.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/os-locale": {
+      "version": "1.4.0",
+      "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz",
+      "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=",
+      "dev": true,
+      "dependencies": {
+        "lcid": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/ow": {
+      "version": "0.17.0",
+      "resolved": "https://registry.npmjs.org/ow/-/ow-0.17.0.tgz",
+      "integrity": "sha512-i3keDzDQP5lWIe4oODyDFey1qVrq2hXKTuTH2VpqwpYtzPiKZt2ziRI4NBQmgW40AnV5Euz17OyWweCb+bNEQA==",
+      "dev": true,
+      "dependencies": {
+        "type-fest": "^0.11.0"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/p-cancelable": {
+      "version": "0.3.0",
+      "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz",
+      "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/p-event": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/p-event/-/p-event-1.3.0.tgz",
+      "integrity": "sha1-jmtPT2XHK8W2/ii3XtqHT5akoIU=",
+      "dev": true,
+      "dependencies": {
+        "p-timeout": "^1.1.1"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/p-finally": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
+      "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/p-is-promise": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz",
+      "integrity": "sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "p-try": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=6"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "p-limit": "^2.2.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/p-map-series": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/p-map-series/-/p-map-series-1.0.0.tgz",
+      "integrity": "sha1-v5j+V1cFZYqeE1G++4WuTB8Hvco=",
+      "dev": true,
+      "dependencies": {
+        "p-reduce": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/p-pipe": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/p-pipe/-/p-pipe-4.0.0.tgz",
+      "integrity": "sha512-HkPfFklpZQPUKBFXzKFB6ihLriIHxnmuQdK9WmLDwe4hf2PdhhfWT/FJa+pc3bA1ywvKXtedxIRmd4Y7BTXE4w==",
+      "dev": true,
+      "engines": {
+        "node": ">=12"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/p-reduce": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz",
+      "integrity": "sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/p-timeout": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz",
+      "integrity": "sha1-XrOzU7f86Z8QGhA4iAuwVOu+o4Y=",
+      "dev": true,
+      "dependencies": {
+        "p-finally": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/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,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "cyclist": "^1.0.1",
+        "inherits": "^2.0.3",
+        "readable-stream": "^2.1.5"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "is-absolute": "^1.0.0",
+        "map-cache": "^0.2.0",
+        "path-root": "^0.1.1"
+      },
+      "engines": {
+        "node": ">=0.8"
+      }
+    },
+    "node_modules/parse-json": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz",
+      "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=",
+      "dev": true,
+      "dependencies": {
+        "error-ex": "^1.2.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/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==",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/parse-passwd": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz",
+      "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/parseqs": {
+      "version": "0.0.6",
+      "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.6.tgz",
+      "integrity": "sha512-jeAGzMDbfSHHA091hr0r31eYfTig+29g3GKKE/PPbEQ65X0lmMwlEoqmhzu0iztID5uJpZsFlUPDP8ThPL7M8w==",
+      "dev": true
+    },
+    "node_modules/parseuri": {
+      "version": "0.0.6",
+      "resolved": "https://registry.npmjs.org/parseuri/-/parseuri-0.0.6.tgz",
+      "integrity": "sha512-AUjen8sAkGgao7UyCX6Ahv0gIK2fABKmYjvP4xmy5JaKvcbTRueIqIPHLAfq30xJddqSE033IOMUSOMCcK3Sow==",
+      "dev": true
+    },
+    "node_modules/parseurl": {
+      "version": "1.3.3",
+      "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
+      "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.8"
+      }
+    },
+    "node_modules/pascalcase": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz",
+      "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/path-dirname": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz",
+      "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=",
+      "dev": true
+    },
+    "node_modules/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,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/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=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/path-key": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
+      "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/path-parse": {
+      "version": "1.0.7",
+      "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
+      "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
+      "dev": true
+    },
+    "node_modules/path-root": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz",
+      "integrity": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=",
+      "dev": true,
+      "dependencies": {
+        "path-root-regex": "^0.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/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=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/path-type": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
+      "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/peek-readable": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/peek-readable/-/peek-readable-4.0.1.tgz",
+      "integrity": "sha512-7qmhptnR0WMSpxT5rMHG9bW/mYSR1uqaPFj2MHvT+y/aOUu6msJijpKt5SkTDKySwg65OWG2JwTMBlgcbwMHrQ==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      },
+      "funding": {
+        "type": "github",
+        "url": "https://github.com/sponsors/Borewit"
+      }
+    },
+    "node_modules/pend": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
+      "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=",
+      "dev": true
+    },
+    "node_modules/picocolors": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
+      "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==",
+      "dev": true,
+      "optional": true
+    },
+    "node_modules/picomatch": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz",
+      "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==",
+      "dev": true,
+      "engines": {
+        "node": ">=8.6"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/jonschlinkert"
+      }
+    },
+    "node_modules/pify": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
+      "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
+      "dev": true,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/pinkie": {
+      "version": "2.0.4",
+      "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz",
+      "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "pinkie": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/plugin-error": {
+      "version": "0.1.2",
+      "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-0.1.2.tgz",
+      "integrity": "sha1-O5uzM1zPAPQl4HQ34ZJ2ln2kes4=",
+      "dev": true,
+      "dependencies": {
+        "ansi-cyan": "^0.1.1",
+        "ansi-red": "^0.1.1",
+        "arr-diff": "^1.0.1",
+        "arr-union": "^2.0.1",
+        "extend-shallow": "^1.1.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/plur": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/plur/-/plur-4.0.0.tgz",
+      "integrity": "sha512-4UGewrYgqDFw9vV6zNV+ADmPAUAfJPKtGvb/VdpQAx25X5f3xXdGdyOEVFwkl8Hl/tl7+xbeHqSEM+D5/TirUg==",
+      "dev": true,
+      "dependencies": {
+        "irregular-plurals": "^3.2.0"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/pngquant-bin": {
+      "version": "6.0.1",
+      "resolved": "https://registry.npmjs.org/pngquant-bin/-/pngquant-bin-6.0.1.tgz",
+      "integrity": "sha512-Q3PUyolfktf+hYio6wsg3SanQzEU/v8aICg/WpzxXcuCMRb7H2Q81okfpcEztbMvw25ILjd3a87doj2N9kvbpQ==",
+      "dev": true,
+      "hasInstallScript": true,
+      "dependencies": {
+        "bin-build": "^3.0.0",
+        "bin-wrapper": "^4.0.1",
+        "execa": "^4.0.0"
+      },
+      "bin": {
+        "pngquant": "cli.js"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/pngquant-bin/node_modules/cross-spawn": {
+      "version": "7.0.3",
+      "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
+      "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
+      "dev": true,
+      "dependencies": {
+        "path-key": "^3.1.0",
+        "shebang-command": "^2.0.0",
+        "which": "^2.0.1"
+      },
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/pngquant-bin/node_modules/execa": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz",
+      "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==",
+      "dev": true,
+      "dependencies": {
+        "cross-spawn": "^7.0.0",
+        "get-stream": "^5.0.0",
+        "human-signals": "^1.1.1",
+        "is-stream": "^2.0.0",
+        "merge-stream": "^2.0.0",
+        "npm-run-path": "^4.0.0",
+        "onetime": "^5.1.0",
+        "signal-exit": "^3.0.2",
+        "strip-final-newline": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sindresorhus/execa?sponsor=1"
+      }
+    },
+    "node_modules/pngquant-bin/node_modules/get-stream": {
+      "version": "5.2.0",
+      "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
+      "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
+      "dev": true,
+      "dependencies": {
+        "pump": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/pngquant-bin/node_modules/human-signals": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz",
+      "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==",
+      "dev": true,
+      "engines": {
+        "node": ">=8.12.0"
+      }
+    },
+    "node_modules/pngquant-bin/node_modules/is-stream": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
+      "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/pngquant-bin/node_modules/npm-run-path": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
+      "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
+      "dev": true,
+      "dependencies": {
+        "path-key": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/pngquant-bin/node_modules/path-key": {
+      "version": "3.1.1",
+      "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+      "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/pngquant-bin/node_modules/shebang-command": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+      "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+      "dev": true,
+      "dependencies": {
+        "shebang-regex": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/pngquant-bin/node_modules/shebang-regex": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+      "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/pngquant-bin/node_modules/which": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+      "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+      "dev": true,
+      "dependencies": {
+        "isexe": "^2.0.0"
+      },
+      "bin": {
+        "node-which": "bin/node-which"
+      },
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/portscanner": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/portscanner/-/portscanner-2.1.1.tgz",
+      "integrity": "sha1-6rtAnk3iSVD1oqUW01rnaTQ/u5Y=",
+      "dev": true,
+      "dependencies": {
+        "async": "1.5.2",
+        "is-number-like": "^1.0.3"
+      },
+      "engines": {
+        "node": ">=0.4",
+        "npm": ">=1.0.0"
+      }
+    },
+    "node_modules/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=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/prepend-http": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz",
+      "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/prettier": {
+      "version": "2.4.1",
+      "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.4.1.tgz",
+      "integrity": "sha512-9fbDAXSBcc6Bs1mZrDYb3XKzDLm4EXXL9sC1LqKP5rZkT6KRr/rf9amVUcODVXgguK/isJz0d0hP72WeaKWsvA==",
+      "dev": true,
+      "bin": {
+        "prettier": "bin-prettier.js"
+      },
+      "engines": {
+        "node": ">=10.13.0"
+      }
+    },
+    "node_modules/pretty-bytes": {
+      "version": "5.6.0",
+      "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz",
+      "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==",
+      "dev": true,
+      "engines": {
+        "node": ">=6"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/pretty-hrtime": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz",
+      "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.8"
+      }
+    },
+    "node_modules/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==",
+      "dev": true
+    },
+    "node_modules/promise": {
+      "version": "7.3.1",
+      "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz",
+      "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==",
+      "dev": true,
+      "dependencies": {
+        "asap": "~2.0.3"
+      }
+    },
+    "node_modules/proto-list": {
+      "version": "1.2.4",
+      "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz",
+      "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=",
+      "dev": true
+    },
+    "node_modules/pseudomap": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz",
+      "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=",
+      "dev": true
+    },
+    "node_modules/pug": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/pug/-/pug-3.0.2.tgz",
+      "integrity": "sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw==",
+      "dev": true,
+      "dependencies": {
+        "pug-code-gen": "^3.0.2",
+        "pug-filters": "^4.0.0",
+        "pug-lexer": "^5.0.1",
+        "pug-linker": "^4.0.0",
+        "pug-load": "^3.0.0",
+        "pug-parser": "^6.0.0",
+        "pug-runtime": "^3.0.1",
+        "pug-strip-comments": "^2.0.0"
+      }
+    },
+    "node_modules/pug-attrs": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/pug-attrs/-/pug-attrs-3.0.0.tgz",
+      "integrity": "sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==",
+      "dev": true,
+      "dependencies": {
+        "constantinople": "^4.0.1",
+        "js-stringify": "^1.0.2",
+        "pug-runtime": "^3.0.0"
+      }
+    },
+    "node_modules/pug-code-gen": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/pug-code-gen/-/pug-code-gen-3.0.2.tgz",
+      "integrity": "sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg==",
+      "dev": true,
+      "dependencies": {
+        "constantinople": "^4.0.1",
+        "doctypes": "^1.1.0",
+        "js-stringify": "^1.0.2",
+        "pug-attrs": "^3.0.0",
+        "pug-error": "^2.0.0",
+        "pug-runtime": "^3.0.0",
+        "void-elements": "^3.1.0",
+        "with": "^7.0.0"
+      }
+    },
+    "node_modules/pug-error": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/pug-error/-/pug-error-2.0.0.tgz",
+      "integrity": "sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ==",
+      "dev": true
+    },
+    "node_modules/pug-filters": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/pug-filters/-/pug-filters-4.0.0.tgz",
+      "integrity": "sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==",
+      "dev": true,
+      "dependencies": {
+        "constantinople": "^4.0.1",
+        "jstransformer": "1.0.0",
+        "pug-error": "^2.0.0",
+        "pug-walk": "^2.0.0",
+        "resolve": "^1.15.1"
+      }
+    },
+    "node_modules/pug-lexer": {
+      "version": "5.0.1",
+      "resolved": "https://registry.npmjs.org/pug-lexer/-/pug-lexer-5.0.1.tgz",
+      "integrity": "sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==",
+      "dev": true,
+      "dependencies": {
+        "character-parser": "^2.2.0",
+        "is-expression": "^4.0.0",
+        "pug-error": "^2.0.0"
+      }
+    },
+    "node_modules/pug-linker": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/pug-linker/-/pug-linker-4.0.0.tgz",
+      "integrity": "sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==",
+      "dev": true,
+      "dependencies": {
+        "pug-error": "^2.0.0",
+        "pug-walk": "^2.0.0"
+      }
+    },
+    "node_modules/pug-load": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/pug-load/-/pug-load-3.0.0.tgz",
+      "integrity": "sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==",
+      "dev": true,
+      "dependencies": {
+        "object-assign": "^4.1.1",
+        "pug-walk": "^2.0.0"
+      }
+    },
+    "node_modules/pug-load/node_modules/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,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/pug-parser": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/pug-parser/-/pug-parser-6.0.0.tgz",
+      "integrity": "sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==",
+      "dev": true,
+      "dependencies": {
+        "pug-error": "^2.0.0",
+        "token-stream": "1.0.0"
+      }
+    },
+    "node_modules/pug-runtime": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/pug-runtime/-/pug-runtime-3.0.1.tgz",
+      "integrity": "sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg==",
+      "dev": true
+    },
+    "node_modules/pug-strip-comments": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/pug-strip-comments/-/pug-strip-comments-2.0.0.tgz",
+      "integrity": "sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==",
+      "dev": true,
+      "dependencies": {
+        "pug-error": "^2.0.0"
+      }
+    },
+    "node_modules/pug-walk": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/pug-walk/-/pug-walk-2.0.0.tgz",
+      "integrity": "sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==",
+      "dev": true
+    },
+    "node_modules/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,
+      "dependencies": {
+        "end-of-stream": "^1.1.0",
+        "once": "^1.3.1"
+      }
+    },
+    "node_modules/pumpify": {
+      "version": "1.5.1",
+      "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz",
+      "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==",
+      "dev": true,
+      "dependencies": {
+        "duplexify": "^3.6.0",
+        "inherits": "^2.0.3",
+        "pump": "^2.0.0"
+      }
+    },
+    "node_modules/pumpify/node_modules/pump": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz",
+      "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==",
+      "dev": true,
+      "dependencies": {
+        "end-of-stream": "^1.1.0",
+        "once": "^1.3.1"
+      }
+    },
+    "node_modules/qs": {
+      "version": "6.2.3",
+      "resolved": "https://registry.npmjs.org/qs/-/qs-6.2.3.tgz",
+      "integrity": "sha1-HPyyXBCpsrSDBT/zn138kjOQjP4=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.6"
+      }
+    },
+    "node_modules/query-string": {
+      "version": "5.1.1",
+      "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz",
+      "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==",
+      "dev": true,
+      "dependencies": {
+        "decode-uri-component": "^0.2.0",
+        "object-assign": "^4.1.0",
+        "strict-uri-encode": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/query-string/node_modules/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,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/queue-microtask": {
+      "version": "1.2.3",
+      "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
+      "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/feross"
+        },
+        {
+          "type": "patreon",
+          "url": "https://www.patreon.com/feross"
+        },
+        {
+          "type": "consulting",
+          "url": "https://feross.org/support"
+        }
+      ]
+    },
+    "node_modules/range-parser": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
+      "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/raw-body": {
+      "version": "2.4.1",
+      "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.1.tgz",
+      "integrity": "sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA==",
+      "dev": true,
+      "dependencies": {
+        "bytes": "3.1.0",
+        "http-errors": "1.7.3",
+        "iconv-lite": "0.4.24",
+        "unpipe": "1.0.0"
+      },
+      "engines": {
+        "node": ">= 0.8"
+      }
+    },
+    "node_modules/read-pkg": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz",
+      "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=",
+      "dev": true,
+      "dependencies": {
+        "load-json-file": "^1.0.0",
+        "normalize-package-data": "^2.3.2",
+        "path-type": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/read-pkg-up": {
+      "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,
+      "dependencies": {
+        "find-up": "^1.0.0",
+        "read-pkg": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/read-pkg-up/node_modules/find-up": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz",
+      "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=",
+      "dev": true,
+      "dependencies": {
+        "path-exists": "^2.0.0",
+        "pinkie-promise": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/read-pkg-up/node_modules/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,
+      "dependencies": {
+        "pinkie-promise": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/read-pkg/node_modules/path-type": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz",
+      "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=",
+      "dev": true,
+      "dependencies": {
+        "graceful-fs": "^4.1.2",
+        "pify": "^2.0.0",
+        "pinkie-promise": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/read-pkg/node_modules/pify": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+      "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/readable-stream": {
+      "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,
+      "dependencies": {
+        "core-util-is": "~1.0.0",
+        "inherits": "~2.0.3",
+        "isarray": "~1.0.0",
+        "process-nextick-args": "~2.0.0",
+        "safe-buffer": "~5.1.1",
+        "string_decoder": "~1.1.1",
+        "util-deprecate": "~1.0.1"
+      }
+    },
+    "node_modules/readable-web-to-node-stream": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz",
+      "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==",
+      "dev": true,
+      "dependencies": {
+        "readable-stream": "^3.6.0"
+      },
+      "engines": {
+        "node": ">=8"
+      },
+      "funding": {
+        "type": "github",
+        "url": "https://github.com/sponsors/Borewit"
+      }
+    },
+    "node_modules/readable-web-to-node-stream/node_modules/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,
+      "dependencies": {
+        "inherits": "^2.0.3",
+        "string_decoder": "^1.1.1",
+        "util-deprecate": "^1.0.1"
+      },
+      "engines": {
+        "node": ">= 6"
+      }
+    },
+    "node_modules/readdirp": {
+      "version": "3.6.0",
+      "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
+      "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
+      "dev": true,
+      "dependencies": {
+        "picomatch": "^2.2.1"
+      },
+      "engines": {
+        "node": ">=8.10.0"
+      }
+    },
+    "node_modules/rechoir": {
+      "version": "0.6.2",
+      "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz",
+      "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=",
+      "dev": true,
+      "dependencies": {
+        "resolve": "^1.1.6"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/regex-not": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz",
+      "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==",
+      "dev": true,
+      "dependencies": {
+        "extend-shallow": "^3.0.2",
+        "safe-regex": "^1.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/regex-not/node_modules/extend-shallow": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
+      "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
+      "dev": true,
+      "dependencies": {
+        "assign-symbols": "^1.0.0",
+        "is-extendable": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/remove-bom-buffer": {
+      "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,
+      "dependencies": {
+        "is-buffer": "^1.1.5",
+        "is-utf8": "^0.2.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/remove-bom-stream": {
+      "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,
+      "dependencies": {
+        "remove-bom-buffer": "^3.0.0",
+        "safe-buffer": "^5.1.0",
+        "through2": "^2.0.3"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/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=",
+      "dev": true
+    },
+    "node_modules/repeat-element": {
+      "version": "1.1.4",
+      "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz",
+      "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/repeat-string": {
+      "version": "1.6.1",
+      "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
+      "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10"
+      }
+    },
+    "node_modules/replace-ext": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-2.0.0.tgz",
+      "integrity": "sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==",
+      "dev": true,
+      "engines": {
+        "node": ">= 10"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "homedir-polyfill": "^1.0.1",
+        "is-absolute": "^1.0.0",
+        "remove-trailing-separator": "^1.1.0"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/replacestream": {
+      "version": "4.0.3",
+      "resolved": "https://registry.npmjs.org/replacestream/-/replacestream-4.0.3.tgz",
+      "integrity": "sha512-AC0FiLS352pBBiZhd4VXB1Ab/lh0lEgpP+GGvZqbQh8a5cmXVoTe5EX/YeTFArnp4SRGTHh1qCHu9lGs1qG8sA==",
+      "dev": true,
+      "dependencies": {
+        "escape-string-regexp": "^1.0.3",
+        "object-assign": "^4.0.1",
+        "readable-stream": "^2.0.2"
+      }
+    },
+    "node_modules/replacestream/node_modules/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,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/require-directory": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
+      "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/require-main-filename": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
+      "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
+      "dev": true
+    },
+    "node_modules/requires-port": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
+      "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=",
+      "dev": true
+    },
+    "node_modules/resolve": {
+      "version": "1.20.0",
+      "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz",
+      "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==",
+      "dev": true,
+      "dependencies": {
+        "is-core-module": "^2.2.0",
+        "path-parse": "^1.0.6"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "expand-tilde": "^2.0.0",
+        "global-modules": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/resolve-options": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz",
+      "integrity": "sha1-MrueOcBtZzONyTeMDW1gdFZq0TE=",
+      "dev": true,
+      "dependencies": {
+        "value-or-function": "^3.0.0"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/resolve-url": {
+      "version": "0.2.1",
+      "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz",
+      "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=",
+      "deprecated": "https://github.com/lydell/resolve-url#deprecated",
+      "dev": true
+    },
+    "node_modules/resp-modifier": {
+      "version": "6.0.2",
+      "resolved": "https://registry.npmjs.org/resp-modifier/-/resp-modifier-6.0.2.tgz",
+      "integrity": "sha1-sSTeXE+6/LpUH0j/pzlw9KpFa08=",
+      "dev": true,
+      "dependencies": {
+        "debug": "^2.2.0",
+        "minimatch": "^3.0.2"
+      },
+      "engines": {
+        "node": ">= 0.8.0"
+      }
+    },
+    "node_modules/responselike": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz",
+      "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=",
+      "dev": true,
+      "dependencies": {
+        "lowercase-keys": "^1.0.0"
+      }
+    },
+    "node_modules/ret": {
+      "version": "0.1.15",
+      "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz",
+      "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.12"
+      }
+    },
+    "node_modules/reusify": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
+      "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
+      "dev": true,
+      "engines": {
+        "iojs": ">=1.0.0",
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/rimraf": {
+      "version": "2.7.1",
+      "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
+      "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+      "dev": true,
+      "dependencies": {
+        "glob": "^7.1.3"
+      },
+      "bin": {
+        "rimraf": "bin.js"
+      }
+    },
+    "node_modules/run-parallel": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
+      "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/feross"
+        },
+        {
+          "type": "patreon",
+          "url": "https://www.patreon.com/feross"
+        },
+        {
+          "type": "consulting",
+          "url": "https://feross.org/support"
+        }
+      ],
+      "dependencies": {
+        "queue-microtask": "^1.2.2"
+      }
+    },
+    "node_modules/rx": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/rx/-/rx-4.1.0.tgz",
+      "integrity": "sha1-pfE/957zt0D+MKqAP7CfmIBdR4I=",
+      "dev": true
+    },
+    "node_modules/rxjs": {
+      "version": "5.5.12",
+      "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-5.5.12.tgz",
+      "integrity": "sha512-xx2itnL5sBbqeeiVgNPVuQQ1nC8Jp2WfNJhXWHmElW9YmrpS9UVnNzhP3EH3HFqexO5Tlp8GhYY+WEcqcVMvGw==",
+      "dev": true,
+      "dependencies": {
+        "symbol-observable": "1.0.1"
+      },
+      "engines": {
+        "npm": ">=2.0.0"
+      }
+    },
+    "node_modules/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==",
+      "dev": true
+    },
+    "node_modules/safe-regex": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz",
+      "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=",
+      "dev": true,
+      "dependencies": {
+        "ret": "~0.1.10"
+      }
+    },
+    "node_modules/safer-buffer": {
+      "version": "2.1.2",
+      "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
+      "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
+      "dev": true
+    },
+    "node_modules/seek-bzip": {
+      "version": "1.0.6",
+      "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz",
+      "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==",
+      "dev": true,
+      "dependencies": {
+        "commander": "^2.8.1"
+      },
+      "bin": {
+        "seek-bunzip": "bin/seek-bunzip",
+        "seek-table": "bin/seek-bzip-table"
+      }
+    },
+    "node_modules/semver": {
+      "version": "5.7.1",
+      "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+      "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+      "dev": true,
+      "bin": {
+        "semver": "bin/semver"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "sver-compat": "^1.5.0"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/semver-regex": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz",
+      "integrity": "sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==",
+      "dev": true,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/semver-truncate": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz",
+      "integrity": "sha1-V/Qd5pcHpicJp+AQS6IRcQnqR+g=",
+      "dev": true,
+      "dependencies": {
+        "semver": "^5.3.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/send": {
+      "version": "0.16.2",
+      "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz",
+      "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==",
+      "dev": true,
+      "dependencies": {
+        "debug": "2.6.9",
+        "depd": "~1.1.2",
+        "destroy": "~1.0.4",
+        "encodeurl": "~1.0.2",
+        "escape-html": "~1.0.3",
+        "etag": "~1.8.1",
+        "fresh": "0.5.2",
+        "http-errors": "~1.6.2",
+        "mime": "1.4.1",
+        "ms": "2.0.0",
+        "on-finished": "~2.3.0",
+        "range-parser": "~1.2.0",
+        "statuses": "~1.4.0"
+      },
+      "engines": {
+        "node": ">= 0.8.0"
+      }
+    },
+    "node_modules/send/node_modules/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,
+      "dependencies": {
+        "depd": "~1.1.2",
+        "inherits": "2.0.3",
+        "setprototypeof": "1.1.0",
+        "statuses": ">= 1.4.0 < 2"
+      },
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/send/node_modules/inherits": {
+      "version": "2.0.3",
+      "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
+      "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
+      "dev": true
+    },
+    "node_modules/send/node_modules/setprototypeof": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz",
+      "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==",
+      "dev": true
+    },
+    "node_modules/send/node_modules/statuses": {
+      "version": "1.4.0",
+      "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz",
+      "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "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"
+      },
+      "engines": {
+        "node": ">= 0.8.0"
+      }
+    },
+    "node_modules/serve-index/node_modules/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,
+      "dependencies": {
+        "depd": "~1.1.2",
+        "inherits": "2.0.3",
+        "setprototypeof": "1.1.0",
+        "statuses": ">= 1.4.0 < 2"
+      },
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/serve-index/node_modules/inherits": {
+      "version": "2.0.3",
+      "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
+      "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
+      "dev": true
+    },
+    "node_modules/serve-index/node_modules/setprototypeof": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz",
+      "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==",
+      "dev": true
+    },
+    "node_modules/serve-index/node_modules/statuses": {
+      "version": "1.5.0",
+      "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
+      "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/serve-static": {
+      "version": "1.13.2",
+      "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz",
+      "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==",
+      "dev": true,
+      "dependencies": {
+        "encodeurl": "~1.0.2",
+        "escape-html": "~1.0.3",
+        "parseurl": "~1.3.2",
+        "send": "0.16.2"
+      },
+      "engines": {
+        "node": ">= 0.8.0"
+      }
+    },
+    "node_modules/server-destroy": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz",
+      "integrity": "sha1-8Tv5KOQrnD55OD5hzDmYtdFObN0=",
+      "dev": true
+    },
+    "node_modules/set-blocking": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
+      "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=",
+      "dev": true
+    },
+    "node_modules/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,
+      "dependencies": {
+        "extend-shallow": "^2.0.1",
+        "is-extendable": "^0.1.1",
+        "is-plain-object": "^2.0.3",
+        "split-string": "^3.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/set-value/node_modules/extend-shallow": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+      "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+      "dev": true,
+      "dependencies": {
+        "is-extendable": "^0.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/set-value/node_modules/is-extendable": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+      "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/set-value/node_modules/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,
+      "dependencies": {
+        "isobject": "^3.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/setprototypeof": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz",
+      "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==",
+      "dev": true
+    },
+    "node_modules/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,
+      "dependencies": {
+        "shebang-regex": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/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,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/signal-exit": {
+      "version": "3.0.5",
+      "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.5.tgz",
+      "integrity": "sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ==",
+      "dev": true
+    },
+    "node_modules/slash": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
+      "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/snapdragon": {
+      "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,
+      "dependencies": {
+        "base": "^0.11.1",
+        "debug": "^2.2.0",
+        "define-property": "^0.2.5",
+        "extend-shallow": "^2.0.1",
+        "map-cache": "^0.2.2",
+        "source-map": "^0.5.6",
+        "source-map-resolve": "^0.5.0",
+        "use": "^3.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/snapdragon-node": {
+      "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,
+      "dependencies": {
+        "define-property": "^1.0.0",
+        "isobject": "^3.0.0",
+        "snapdragon-util": "^3.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/snapdragon-node/node_modules/define-property": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
+      "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
+      "dev": true,
+      "dependencies": {
+        "is-descriptor": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/snapdragon-util": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz",
+      "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==",
+      "dev": true,
+      "dependencies": {
+        "kind-of": "^3.2.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/snapdragon-util/node_modules/kind-of": {
+      "version": "3.2.2",
+      "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+      "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+      "dev": true,
+      "dependencies": {
+        "is-buffer": "^1.1.5"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/snapdragon/node_modules/define-property": {
+      "version": "0.2.5",
+      "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+      "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+      "dev": true,
+      "dependencies": {
+        "is-descriptor": "^0.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/snapdragon/node_modules/extend-shallow": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+      "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
+      "dev": true,
+      "dependencies": {
+        "is-extendable": "^0.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/snapdragon/node_modules/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,
+      "dependencies": {
+        "kind-of": "^3.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of": {
+      "version": "3.2.2",
+      "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+      "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+      "dev": true,
+      "dependencies": {
+        "is-buffer": "^1.1.5"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/snapdragon/node_modules/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,
+      "dependencies": {
+        "kind-of": "^3.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of": {
+      "version": "3.2.2",
+      "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+      "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+      "dev": true,
+      "dependencies": {
+        "is-buffer": "^1.1.5"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/snapdragon/node_modules/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,
+      "dependencies": {
+        "is-accessor-descriptor": "^0.1.6",
+        "is-data-descriptor": "^0.1.4",
+        "kind-of": "^5.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/snapdragon/node_modules/is-extendable": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+      "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/snapdragon/node_modules/source-map": {
+      "version": "0.5.7",
+      "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+      "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/socket.io": {
+      "version": "2.4.0",
+      "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-2.4.0.tgz",
+      "integrity": "sha512-9UPJ1UTvKayuQfVv2IQ3k7tCQC/fboDyIK62i99dAQIyHKaBsNdTpwHLgKJ6guRWxRtC9H+138UwpaGuQO9uWQ==",
+      "dev": true,
+      "dependencies": {
+        "debug": "~4.1.0",
+        "engine.io": "~3.5.0",
+        "has-binary2": "~1.0.2",
+        "socket.io-adapter": "~1.1.0",
+        "socket.io-client": "2.4.0",
+        "socket.io-parser": "~3.4.0"
+      }
+    },
+    "node_modules/socket.io-adapter": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-1.1.2.tgz",
+      "integrity": "sha512-WzZRUj1kUjrTIrUKpZLEzFZ1OLj5FwLlAFQs9kuZJzJi5DKdU7FsWc36SNmA8iDOtwBQyT8FkrriRM8vXLYz8g==",
+      "dev": true
+    },
+    "node_modules/socket.io-client": {
+      "version": "2.4.0",
+      "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.4.0.tgz",
+      "integrity": "sha512-M6xhnKQHuuZd4Ba9vltCLT9oa+YvTsP8j9NcEiLElfIg8KeYPyhWOes6x4t+LTAC8enQbE/995AdTem2uNyKKQ==",
+      "dev": true,
+      "dependencies": {
+        "backo2": "1.0.2",
+        "component-bind": "1.0.0",
+        "component-emitter": "~1.3.0",
+        "debug": "~3.1.0",
+        "engine.io-client": "~3.5.0",
+        "has-binary2": "~1.0.2",
+        "indexof": "0.0.1",
+        "parseqs": "0.0.6",
+        "parseuri": "0.0.6",
+        "socket.io-parser": "~3.3.0",
+        "to-array": "0.1.4"
+      }
+    },
+    "node_modules/socket.io-client/node_modules/debug": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
+      "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
+      "dev": true,
+      "dependencies": {
+        "ms": "2.0.0"
+      }
+    },
+    "node_modules/socket.io-client/node_modules/isarray": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz",
+      "integrity": "sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4=",
+      "dev": true
+    },
+    "node_modules/socket.io-client/node_modules/socket.io-parser": {
+      "version": "3.3.2",
+      "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.3.2.tgz",
+      "integrity": "sha512-FJvDBuOALxdCI9qwRrO/Rfp9yfndRtc1jSgVgV8FDraihmSP/MLGD5PEuJrNfjALvcQ+vMDM/33AWOYP/JSjDg==",
+      "dev": true,
+      "dependencies": {
+        "component-emitter": "~1.3.0",
+        "debug": "~3.1.0",
+        "isarray": "2.0.1"
+      }
+    },
+    "node_modules/socket.io-parser": {
+      "version": "3.4.1",
+      "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.4.1.tgz",
+      "integrity": "sha512-11hMgzL+WCLWf1uFtHSNvliI++tcRUWdoeYuwIl+Axvwy9z2gQM+7nJyN3STj1tLj5JyIUH8/gpDGxzAlDdi0A==",
+      "dev": true,
+      "dependencies": {
+        "component-emitter": "1.2.1",
+        "debug": "~4.1.0",
+        "isarray": "2.0.1"
+      }
+    },
+    "node_modules/socket.io-parser/node_modules/component-emitter": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz",
+      "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=",
+      "dev": true
+    },
+    "node_modules/socket.io-parser/node_modules/debug": {
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
+      "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
+      "deprecated": "Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)",
+      "dev": true,
+      "dependencies": {
+        "ms": "^2.1.1"
+      }
+    },
+    "node_modules/socket.io-parser/node_modules/isarray": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz",
+      "integrity": "sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4=",
+      "dev": true
+    },
+    "node_modules/socket.io-parser/node_modules/ms": {
+      "version": "2.1.3",
+      "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+      "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+      "dev": true
+    },
+    "node_modules/socket.io/node_modules/debug": {
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
+      "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
+      "deprecated": "Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)",
+      "dev": true,
+      "dependencies": {
+        "ms": "^2.1.1"
+      }
+    },
+    "node_modules/socket.io/node_modules/ms": {
+      "version": "2.1.3",
+      "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+      "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+      "dev": true
+    },
+    "node_modules/sort-keys": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz",
+      "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=",
+      "dev": true,
+      "dependencies": {
+        "is-plain-obj": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/sort-keys-length": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz",
+      "integrity": "sha1-nLb09OnkgVWmqgZx7dM2/xR5oYg=",
+      "dev": true,
+      "dependencies": {
+        "sort-keys": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/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,
+      "optional": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "atob": "^2.1.2",
+        "decode-uri-component": "^0.2.0",
+        "resolve-url": "^0.2.1",
+        "source-map-url": "^0.4.0",
+        "urix": "^0.1.0"
+      }
+    },
+    "node_modules/source-map-url": {
+      "version": "0.4.1",
+      "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz",
+      "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==",
+      "dev": true
+    },
+    "node_modules/sparkles": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz",
+      "integrity": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/spdx-correct": {
+      "version": "3.1.1",
+      "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz",
+      "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==",
+      "dev": true,
+      "dependencies": {
+        "spdx-expression-parse": "^3.0.0",
+        "spdx-license-ids": "^3.0.0"
+      }
+    },
+    "node_modules/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==",
+      "dev": true
+    },
+    "node_modules/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,
+      "dependencies": {
+        "spdx-exceptions": "^2.1.0",
+        "spdx-license-ids": "^3.0.0"
+      }
+    },
+    "node_modules/spdx-license-ids": {
+      "version": "3.0.10",
+      "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz",
+      "integrity": "sha512-oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA==",
+      "dev": true
+    },
+    "node_modules/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,
+      "dependencies": {
+        "extend-shallow": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/split-string/node_modules/extend-shallow": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
+      "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
+      "dev": true,
+      "dependencies": {
+        "assign-symbols": "^1.0.0",
+        "is-extendable": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/stable": {
+      "version": "0.1.8",
+      "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz",
+      "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==",
+      "dev": true,
+      "optional": true
+    },
+    "node_modules/stack-trace": {
+      "version": "0.0.10",
+      "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz",
+      "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=",
+      "dev": true,
+      "engines": {
+        "node": "*"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "define-property": "^0.2.5",
+        "object-copy": "^0.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/static-extend/node_modules/define-property": {
+      "version": "0.2.5",
+      "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
+      "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
+      "dev": true,
+      "dependencies": {
+        "is-descriptor": "^0.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/static-extend/node_modules/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,
+      "dependencies": {
+        "kind-of": "^3.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of": {
+      "version": "3.2.2",
+      "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+      "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+      "dev": true,
+      "dependencies": {
+        "is-buffer": "^1.1.5"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/static-extend/node_modules/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,
+      "dependencies": {
+        "kind-of": "^3.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of": {
+      "version": "3.2.2",
+      "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+      "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+      "dev": true,
+      "dependencies": {
+        "is-buffer": "^1.1.5"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/static-extend/node_modules/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,
+      "dependencies": {
+        "is-accessor-descriptor": "^0.1.6",
+        "is-data-descriptor": "^0.1.4",
+        "kind-of": "^5.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/statuses": {
+      "version": "1.3.1",
+      "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz",
+      "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/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==",
+      "dev": true
+    },
+    "node_modules/stream-shift": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz",
+      "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==",
+      "dev": true
+    },
+    "node_modules/stream-throttle": {
+      "version": "0.1.3",
+      "resolved": "https://registry.npmjs.org/stream-throttle/-/stream-throttle-0.1.3.tgz",
+      "integrity": "sha1-rdV8jXzHOoFjDTHNVdOWHPr7qcM=",
+      "dev": true,
+      "dependencies": {
+        "commander": "^2.2.0",
+        "limiter": "^1.0.5"
+      },
+      "bin": {
+        "throttleproxy": "bin/throttleproxy.js"
+      },
+      "engines": {
+        "node": ">= 0.10.0"
+      }
+    },
+    "node_modules/strict-uri-encode": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz",
+      "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/string_decoder": {
+      "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,
+      "dependencies": {
+        "safe-buffer": "~5.1.0"
+      }
+    },
+    "node_modules/string-width": {
+      "version": "4.2.3",
+      "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+      "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+      "dev": true,
+      "dependencies": {
+        "emoji-regex": "^8.0.0",
+        "is-fullwidth-code-point": "^3.0.0",
+        "strip-ansi": "^6.0.1"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/strip-ansi": {
+      "version": "6.0.1",
+      "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+      "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+      "dev": true,
+      "dependencies": {
+        "ansi-regex": "^5.0.1"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/strip-bom": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz",
+      "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=",
+      "dev": true,
+      "dependencies": {
+        "is-utf8": "^0.2.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/strip-dirs": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz",
+      "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==",
+      "dev": true,
+      "dependencies": {
+        "is-natural-number": "^4.0.1"
+      }
+    },
+    "node_modules/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,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/strip-final-newline": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
+      "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
+      "dev": true,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/strip-outer": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz",
+      "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==",
+      "dev": true,
+      "dependencies": {
+        "escape-string-regexp": "^1.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/strnum": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.4.tgz",
+      "integrity": "sha512-lMzNMfDpaQOLt4B2mEbfzYS0+T7dvCXeojnlGf6f1AygvWDMcWyXYaLbyICfjVu29sErR8fnRagQfBW/N/hGgw==",
+      "dev": true,
+      "optional": true
+    },
+    "node_modules/strtok3": {
+      "version": "6.2.4",
+      "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-6.2.4.tgz",
+      "integrity": "sha512-GO8IcFF9GmFDvqduIspUBwCzCbqzegyVKIsSymcMgiZKeCfrN9SowtUoi8+b59WZMAjIzVZic/Ft97+pynR3Iw==",
+      "dev": true,
+      "dependencies": {
+        "@tokenizer/token": "^0.3.0",
+        "peek-readable": "^4.0.1"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "type": "github",
+        "url": "https://github.com/sponsors/Borewit"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "has-flag": "^4.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/sver-compat": {
+      "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,
+      "dependencies": {
+        "es6-iterator": "^2.0.1",
+        "es6-symbol": "^3.1.1"
+      }
+    },
+    "node_modules/svgo": {
+      "version": "2.8.0",
+      "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz",
+      "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "@trysound/sax": "0.2.0",
+        "commander": "^7.2.0",
+        "css-select": "^4.1.3",
+        "css-tree": "^1.1.3",
+        "csso": "^4.2.0",
+        "picocolors": "^1.0.0",
+        "stable": "^0.1.8"
+      },
+      "bin": {
+        "svgo": "bin/svgo"
+      },
+      "engines": {
+        "node": ">=10.13.0"
+      }
+    },
+    "node_modules/svgo/node_modules/commander": {
+      "version": "7.2.0",
+      "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
+      "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">= 10"
+      }
+    },
+    "node_modules/symbol-observable": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz",
+      "integrity": "sha1-g0D8RwLDEi310iKI+IKD9RPT/dQ=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/tar-stream": {
+      "version": "1.6.2",
+      "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz",
+      "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==",
+      "dev": true,
+      "dependencies": {
+        "bl": "^1.0.0",
+        "buffer-alloc": "^1.2.0",
+        "end-of-stream": "^1.0.0",
+        "fs-constants": "^1.0.0",
+        "readable-stream": "^2.3.0",
+        "to-buffer": "^1.1.1",
+        "xtend": "^4.0.0"
+      },
+      "engines": {
+        "node": ">= 0.8.0"
+      }
+    },
+    "node_modules/temp-dir": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz",
+      "integrity": "sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/tempfile": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz",
+      "integrity": "sha1-awRGhWqbERTRhW/8vlCczLCXcmU=",
+      "dev": true,
+      "dependencies": {
+        "temp-dir": "^1.0.0",
+        "uuid": "^3.0.1"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/textextensions": {
+      "version": "3.3.0",
+      "resolved": "https://registry.npmjs.org/textextensions/-/textextensions-3.3.0.tgz",
+      "integrity": "sha512-mk82dS8eRABNbeVJrEiN5/UMSCliINAuz8mkUwH4SwslkNP//gbEzlWNS5au0z5Dpx40SQxzqZevZkn+WYJ9Dw==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      },
+      "funding": {
+        "url": "https://bevry.me/fund"
+      }
+    },
+    "node_modules/tfunk": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/tfunk/-/tfunk-4.0.0.tgz",
+      "integrity": "sha512-eJQ0dGfDIzWNiFNYFVjJ+Ezl/GmwHaFTBTjrtqNPW0S7cuVDBrZrmzUz6VkMeCR4DZFqhd4YtLwsw3i2wYHswQ==",
+      "dev": true,
+      "dependencies": {
+        "chalk": "^1.1.3",
+        "dlv": "^1.1.3"
+      }
+    },
+    "node_modules/tfunk/node_modules/ansi-regex": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+      "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/tfunk/node_modules/ansi-styles": {
+      "version": "2.2.1",
+      "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+      "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/tfunk/node_modules/chalk": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+      "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+      "dev": true,
+      "dependencies": {
+        "ansi-styles": "^2.2.1",
+        "escape-string-regexp": "^1.0.2",
+        "has-ansi": "^2.0.0",
+        "strip-ansi": "^3.0.0",
+        "supports-color": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/tfunk/node_modules/strip-ansi": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+      "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+      "dev": true,
+      "dependencies": {
+        "ansi-regex": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/tfunk/node_modules/supports-color": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+      "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.8.0"
+      }
+    },
+    "node_modules/through": {
+      "version": "2.3.8",
+      "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
+      "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=",
+      "dev": true
+    },
+    "node_modules/through2": {
+      "version": "2.0.5",
+      "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
+      "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
+      "dev": true,
+      "dependencies": {
+        "readable-stream": "~2.3.6",
+        "xtend": "~4.0.1"
+      }
+    },
+    "node_modules/through2-concurrent": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/through2-concurrent/-/through2-concurrent-2.0.0.tgz",
+      "integrity": "sha512-R5/jLkfMvdmDD+seLwN7vB+mhbqzWop5fAjx5IX8/yQq7VhBhzDmhXgaHAOnhnWkCpRMM7gToYHycB0CS/pd+A==",
+      "dev": true,
+      "dependencies": {
+        "through2": "^2.0.0"
+      }
+    },
+    "node_modules/through2-filter": {
+      "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,
+      "dependencies": {
+        "through2": "~2.0.0",
+        "xtend": "~4.0.0"
+      }
+    },
+    "node_modules/time-stamp": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz",
+      "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/timed-out": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz",
+      "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "is-absolute": "^1.0.0",
+        "is-negated-glob": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/to-array": {
+      "version": "0.1.4",
+      "resolved": "https://registry.npmjs.org/to-array/-/to-array-0.1.4.tgz",
+      "integrity": "sha1-F+bBH3PdTz10zaek/zI46a2b+JA=",
+      "dev": true
+    },
+    "node_modules/to-buffer": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz",
+      "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==",
+      "dev": true
+    },
+    "node_modules/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,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "kind-of": "^3.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/to-object-path/node_modules/kind-of": {
+      "version": "3.2.2",
+      "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
+      "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
+      "dev": true,
+      "dependencies": {
+        "is-buffer": "^1.1.5"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/to-regex": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz",
+      "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==",
+      "dev": true,
+      "dependencies": {
+        "define-property": "^2.0.2",
+        "extend-shallow": "^3.0.2",
+        "regex-not": "^1.0.2",
+        "safe-regex": "^1.1.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "is-number": "^7.0.0"
+      },
+      "engines": {
+        "node": ">=8.0"
+      }
+    },
+    "node_modules/to-regex/node_modules/extend-shallow": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
+      "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
+      "dev": true,
+      "dependencies": {
+        "assign-symbols": "^1.0.0",
+        "is-extendable": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/to-through": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz",
+      "integrity": "sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY=",
+      "dev": true,
+      "dependencies": {
+        "through2": "^2.0.3"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/toidentifier": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz",
+      "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.6"
+      }
+    },
+    "node_modules/token-stream": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/token-stream/-/token-stream-1.0.0.tgz",
+      "integrity": "sha1-zCAOqyYT9BZtJ/+a/HylbUnfbrQ=",
+      "dev": true
+    },
+    "node_modules/token-types": {
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/token-types/-/token-types-4.1.1.tgz",
+      "integrity": "sha512-hD+QyuUAyI2spzsI0B7gf/jJ2ggR4RjkAo37j3StuePhApJUwcWDjnHDOFdIWYSwNR28H14hpwm4EI+V1Ted1w==",
+      "dev": true,
+      "dependencies": {
+        "@tokenizer/token": "^0.3.0",
+        "ieee754": "^1.2.1"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "type": "github",
+        "url": "https://github.com/sponsors/Borewit"
+      }
+    },
+    "node_modules/trim-repeated": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz",
+      "integrity": "sha1-42RqLqTokTEr9+rObPsFOAvAHCE=",
+      "dev": true,
+      "dependencies": {
+        "escape-string-regexp": "^1.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/tunnel-agent": {
+      "version": "0.6.0",
+      "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
+      "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
+      "dev": true,
+      "dependencies": {
+        "safe-buffer": "^5.0.1"
+      },
+      "engines": {
+        "node": "*"
+      }
+    },
+    "node_modules/type": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz",
+      "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==",
+      "dev": true
+    },
+    "node_modules/type-fest": {
+      "version": "0.11.0",
+      "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz",
+      "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/typedarray": {
+      "version": "0.0.6",
+      "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
+      "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=",
+      "dev": true
+    },
+    "node_modules/ua-parser-js": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.2.tgz",
+      "integrity": "sha512-00y/AXhx0/SsnI51fTc0rLRmafiGOM4/O+ny10Ps7f+j/b8p/ZY11ytMgznXkOVo4GQ+KwQG5UQLkLGirsACRg==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "opencollective",
+          "url": "https://opencollective.com/ua-parser-js"
+        },
+        {
+          "type": "paypal",
+          "url": "https://paypal.me/faisalman"
+        }
+      ],
+      "engines": {
+        "node": "*"
+      }
+    },
+    "node_modules/unbzip2-stream": {
+      "version": "1.4.3",
+      "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz",
+      "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==",
+      "dev": true,
+      "dependencies": {
+        "buffer": "^5.2.1",
+        "through": "^2.3.8"
+      }
+    },
+    "node_modules/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=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/undertaker": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-1.3.0.tgz",
+      "integrity": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==",
+      "dev": true,
+      "dependencies": {
+        "arr-flatten": "^1.0.1",
+        "arr-map": "^2.0.0",
+        "bach": "^1.0.0",
+        "collection-map": "^1.0.0",
+        "es6-weak-map": "^2.0.1",
+        "fast-levenshtein": "^1.0.0",
+        "last-run": "^1.1.0",
+        "object.defaults": "^1.0.0",
+        "object.reduce": "^1.0.0",
+        "undertaker-registry": "^1.0.0"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/undertaker-registry": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz",
+      "integrity": "sha1-XkvaMI5KiirlhPm5pDWaSZglzFA=",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "arr-union": "^3.1.0",
+        "get-value": "^2.0.6",
+        "is-extendable": "^0.1.1",
+        "set-value": "^2.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/union-value/node_modules/arr-union": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
+      "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/union-value/node_modules/is-extendable": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+      "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/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,
+      "dependencies": {
+        "json-stable-stringify-without-jsonify": "^1.0.1",
+        "through2-filter": "^3.0.0"
+      }
+    },
+    "node_modules/universalify": {
+      "version": "0.1.2",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
+      "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==",
+      "dev": true,
+      "engines": {
+        "node": ">= 4.0.0"
+      }
+    },
+    "node_modules/unpipe": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
+      "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.8"
+      }
+    },
+    "node_modules/unset-value": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz",
+      "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=",
+      "dev": true,
+      "dependencies": {
+        "has-value": "^0.3.1",
+        "isobject": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/unset-value/node_modules/has-value": {
+      "version": "0.3.1",
+      "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz",
+      "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=",
+      "dev": true,
+      "dependencies": {
+        "get-value": "^2.0.3",
+        "has-values": "^0.1.4",
+        "isobject": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/unset-value/node_modules/has-value/node_modules/isobject": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
+      "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=",
+      "dev": true,
+      "dependencies": {
+        "isarray": "1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/unset-value/node_modules/has-values": {
+      "version": "0.1.4",
+      "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz",
+      "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/upath": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz",
+      "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==",
+      "dev": true,
+      "engines": {
+        "node": ">=4",
+        "yarn": "*"
+      }
+    },
+    "node_modules/urix": {
+      "version": "0.1.0",
+      "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz",
+      "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=",
+      "deprecated": "Please see https://github.com/lydell/urix#deprecated",
+      "dev": true
+    },
+    "node_modules/url-parse-lax": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz",
+      "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=",
+      "dev": true,
+      "dependencies": {
+        "prepend-http": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/url-to-options": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz",
+      "integrity": "sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=",
+      "dev": true,
+      "engines": {
+        "node": ">= 4"
+      }
+    },
+    "node_modules/use": {
+      "version": "3.1.1",
+      "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz",
+      "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/util-deprecate": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+      "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=",
+      "dev": true
+    },
+    "node_modules/utils-merge": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
+      "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.4.0"
+      }
+    },
+    "node_modules/uuid": {
+      "version": "3.4.0",
+      "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
+      "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
+      "deprecated": "Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain circumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.",
+      "dev": true,
+      "bin": {
+        "uuid": "bin/uuid"
+      }
+    },
+    "node_modules/v8flags": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz",
+      "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==",
+      "dev": true,
+      "dependencies": {
+        "homedir-polyfill": "^1.0.1"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/validate-npm-package-license": {
+      "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,
+      "dependencies": {
+        "spdx-correct": "^3.0.0",
+        "spdx-expression-parse": "^3.0.0"
+      }
+    },
+    "node_modules/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=",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/vinyl": {
+      "version": "2.2.1",
+      "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz",
+      "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==",
+      "dev": true,
+      "dependencies": {
+        "clone": "^2.1.1",
+        "clone-buffer": "^1.0.0",
+        "clone-stats": "^1.0.0",
+        "cloneable-readable": "^1.0.0",
+        "remove-trailing-separator": "^1.0.1",
+        "replace-ext": "^1.0.0"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/vinyl-contents": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/vinyl-contents/-/vinyl-contents-1.0.0.tgz",
+      "integrity": "sha512-xBH8ZUy8IK7K06eCBmd2GGjdf1EqNEGPNfRP2VsrCvSvsOggywGCGZg435WZiG/kcyCdXc1CZXCf4pUJ2EuEsg==",
+      "dev": true,
+      "dependencies": {
+        "bl": "^3.0.0",
+        "readable-stream": "^3.3.0",
+        "vinyl": "^2.2.0"
+      },
+      "engines": {
+        "node": ">= 6"
+      }
+    },
+    "node_modules/vinyl-contents/node_modules/bl": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/bl/-/bl-3.0.1.tgz",
+      "integrity": "sha512-jrCW5ZhfQ/Vt07WX1Ngs+yn9BDqPL/gw28S7s9H6QK/gupnizNzJAss5akW20ISgOrbLTlXOOCTJeNUQqruAWQ==",
+      "dev": true,
+      "dependencies": {
+        "readable-stream": "^3.0.1"
+      }
+    },
+    "node_modules/vinyl-contents/node_modules/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,
+      "dependencies": {
+        "inherits": "^2.0.3",
+        "string_decoder": "^1.1.1",
+        "util-deprecate": "^1.0.1"
+      },
+      "engines": {
+        "node": ">= 6"
+      }
+    },
+    "node_modules/vinyl-fs": {
+      "version": "3.0.3",
+      "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz",
+      "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==",
+      "dev": true,
+      "dependencies": {
+        "fs-mkdirp-stream": "^1.0.0",
+        "glob-stream": "^6.1.0",
+        "graceful-fs": "^4.0.0",
+        "is-valid-glob": "^1.0.0",
+        "lazystream": "^1.0.0",
+        "lead": "^1.0.0",
+        "object.assign": "^4.0.4",
+        "pumpify": "^1.3.5",
+        "readable-stream": "^2.3.3",
+        "remove-bom-buffer": "^3.0.0",
+        "remove-bom-stream": "^1.2.0",
+        "resolve-options": "^1.1.0",
+        "through2": "^2.0.0",
+        "to-through": "^2.0.0",
+        "value-or-function": "^3.0.0",
+        "vinyl": "^2.0.0",
+        "vinyl-sourcemap": "^1.1.0"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/vinyl-ftp": {
+      "version": "0.6.1",
+      "resolved": "https://registry.npmjs.org/vinyl-ftp/-/vinyl-ftp-0.6.1.tgz",
+      "integrity": "sha512-HVp7xuWx9xQC+tzsCCYCnpd3ZVXK8wa4sMEhdkiGY6rY7P1sIm71YkfLjzdYXGS4hseOiSBSS75jPxZBozol6A==",
+      "dev": true,
+      "dependencies": {
+        "ftp": "^0.3.8",
+        "minimatch": "^3.0.2",
+        "object-assign": "^4.1.1",
+        "parallel-transform": "^1.1.0",
+        "through2": "^2.0.3",
+        "vinyl": "^2.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/vinyl-ftp/node_modules/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,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/vinyl-sourcemap": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz",
+      "integrity": "sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY=",
+      "dev": true,
+      "dependencies": {
+        "append-buffer": "^1.0.2",
+        "convert-source-map": "^1.5.0",
+        "graceful-fs": "^4.1.6",
+        "normalize-path": "^2.1.1",
+        "now-and-later": "^2.0.0",
+        "remove-bom-buffer": "^3.0.0",
+        "vinyl": "^2.0.0"
+      },
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/vinyl-sourcemap/node_modules/normalize-path": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
+      "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
+      "dev": true,
+      "dependencies": {
+        "remove-trailing-separator": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/vinyl/node_modules/replace-ext": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz",
+      "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.10"
+      }
+    },
+    "node_modules/void-elements": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz",
+      "integrity": "sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/which": {
+      "version": "1.3.1",
+      "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
+      "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+      "dev": true,
+      "dependencies": {
+        "isexe": "^2.0.0"
+      },
+      "bin": {
+        "which": "bin/which"
+      }
+    },
+    "node_modules/which-module": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
+      "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=",
+      "dev": true
+    },
+    "node_modules/with": {
+      "version": "7.0.2",
+      "resolved": "https://registry.npmjs.org/with/-/with-7.0.2.tgz",
+      "integrity": "sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==",
+      "dev": true,
+      "dependencies": {
+        "@babel/parser": "^7.9.6",
+        "@babel/types": "^7.9.6",
+        "assert-never": "^1.2.1",
+        "babel-walk": "3.0.0-canary-5"
+      },
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/wrap-ansi": {
+      "version": "6.2.0",
+      "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
+      "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
+      "dev": true,
+      "dependencies": {
+        "ansi-styles": "^4.0.0",
+        "string-width": "^4.1.0",
+        "strip-ansi": "^6.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/wrappy": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
+      "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
+      "dev": true
+    },
+    "node_modules/ws": {
+      "version": "7.4.6",
+      "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz",
+      "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==",
+      "dev": true,
+      "engines": {
+        "node": ">=8.3.0"
+      },
+      "peerDependencies": {
+        "bufferutil": "^4.0.1",
+        "utf-8-validate": "^5.0.2"
+      },
+      "peerDependenciesMeta": {
+        "bufferutil": {
+          "optional": true
+        },
+        "utf-8-validate": {
+          "optional": true
+        }
+      }
+    },
+    "node_modules/xmlhttprequest-ssl": {
+      "version": "1.6.3",
+      "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.6.3.tgz",
+      "integrity": "sha512-3XfeQE/wNkvrIktn2Kf0869fC0BN6UpydVasGIeSm2B1Llihf7/0UfZM+eCkOw3P7bP4+qPgqhm7ZoxuJtFU0Q==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.4.0"
+      }
+    },
+    "node_modules/xregexp": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz",
+      "integrity": "sha1-UqY+VsoLhKfzpfPWGHLxJq16WUM=",
+      "dev": true,
+      "engines": {
+        "node": "*"
+      }
+    },
+    "node_modules/xtend": {
+      "version": "4.0.2",
+      "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
+      "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.4"
+      }
+    },
+    "node_modules/y18n": {
+      "version": "4.0.3",
+      "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
+      "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==",
+      "dev": true
+    },
+    "node_modules/yallist": {
+      "version": "2.1.2",
+      "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz",
+      "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=",
+      "dev": true
+    },
+    "node_modules/yargs": {
+      "version": "15.4.1",
+      "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
+      "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
+      "dev": true,
+      "dependencies": {
+        "cliui": "^6.0.0",
+        "decamelize": "^1.2.0",
+        "find-up": "^4.1.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": "^4.2.0",
+        "which-module": "^2.0.0",
+        "y18n": "^4.0.0",
+        "yargs-parser": "^18.1.2"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/yargs-parser": {
+      "version": "20.2.9",
+      "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
+      "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==",
+      "dev": true,
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/yargs/node_modules/camelcase": {
+      "version": "5.3.1",
+      "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
+      "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
+      "dev": true,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/yargs/node_modules/yargs-parser": {
+      "version": "18.1.3",
+      "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz",
+      "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==",
+      "dev": true,
+      "dependencies": {
+        "camelcase": "^5.0.0",
+        "decamelize": "^1.2.0"
+      },
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/yauzl": {
+      "version": "2.10.0",
+      "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz",
+      "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=",
+      "dev": true,
+      "dependencies": {
+        "buffer-crc32": "~0.2.3",
+        "fd-slicer": "~1.1.0"
+      }
+    },
+    "node_modules/yeast": {
+      "version": "0.1.2",
+      "resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz",
+      "integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk=",
+      "dev": true
+    }
+  },
+  "dependencies": {
+    "@babel/helper-validator-identifier": {
+      "version": "7.15.7",
+      "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz",
+      "integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==",
+      "dev": true
+    },
+    "@babel/parser": {
+      "version": "7.16.2",
+      "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.2.tgz",
+      "integrity": "sha512-RUVpT0G2h6rOZwqLDTrKk7ksNv7YpAilTnYe1/Q+eDjxEceRMKVWbCsX7t8h6C1qCFi/1Y8WZjcEPBAFG27GPw==",
+      "dev": true
+    },
+    "@babel/types": {
+      "version": "7.16.0",
+      "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz",
+      "integrity": "sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==",
+      "dev": true,
+      "requires": {
+        "@babel/helper-validator-identifier": "^7.15.7",
+        "to-fast-properties": "^2.0.0"
+      }
+    },
+    "@nodelib/fs.scandir": {
+      "version": "2.1.5",
+      "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
+      "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
+      "dev": true,
+      "requires": {
+        "@nodelib/fs.stat": "2.0.5",
+        "run-parallel": "^1.1.9"
+      }
+    },
+    "@nodelib/fs.stat": {
+      "version": "2.0.5",
+      "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
+      "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
+      "dev": true
+    },
+    "@nodelib/fs.walk": {
+      "version": "1.2.8",
+      "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
+      "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
+      "dev": true,
+      "requires": {
+        "@nodelib/fs.scandir": "2.1.5",
+        "fastq": "^1.6.0"
+      }
+    },
+    "@sindresorhus/is": {
+      "version": "0.7.0",
+      "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz",
+      "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==",
+      "dev": true
+    },
+    "@tokenizer/token": {
+      "version": "0.3.0",
+      "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz",
+      "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==",
+      "dev": true
+    },
+    "@trysound/sax": {
+      "version": "0.2.0",
+      "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz",
+      "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==",
+      "dev": true,
+      "optional": true
+    },
+    "@types/expect": {
+      "version": "1.20.4",
+      "resolved": "https://registry.npmjs.org/@types/expect/-/expect-1.20.4.tgz",
+      "integrity": "sha512-Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg==",
+      "dev": true
+    },
+    "@types/node": {
+      "version": "14.17.32",
+      "resolved": "https://registry.npmjs.org/@types/node/-/node-14.17.32.tgz",
+      "integrity": "sha512-JcII3D5/OapPGx+eJ+Ik1SQGyt6WvuqdRfh9jUwL6/iHGjmyOriBDciBUu7lEIBTL2ijxwrR70WUnw5AEDmFvQ==",
+      "dev": true
+    },
+    "@types/vinyl": {
+      "version": "2.0.6",
+      "resolved": "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.6.tgz",
+      "integrity": "sha512-ayJ0iOCDNHnKpKTgBG6Q6JOnHTj9zFta+3j2b8Ejza0e4cvRyMn0ZoLEmbPrTHe5YYRlDYPvPWVdV4cTaRyH7g==",
+      "dev": true,
+      "requires": {
+        "@types/expect": "^1.20.4",
+        "@types/node": "*"
+      }
+    },
+    "accepts": {
+      "version": "1.3.7",
+      "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz",
+      "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==",
+      "dev": true,
+      "requires": {
+        "mime-types": "~2.1.24",
+        "negotiator": "0.6.2"
+      }
+    },
+    "acorn": {
+      "version": "7.4.1",
+      "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
+      "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
+      "dev": true
+    },
+    "after": {
+      "version": "0.8.2",
+      "resolved": "https://registry.npmjs.org/after/-/after-0.8.2.tgz",
+      "integrity": "sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=",
+      "dev": true
+    },
+    "ansi-colors": {
+      "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"
+      }
+    },
+    "ansi-cyan": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/ansi-cyan/-/ansi-cyan-0.1.1.tgz",
+      "integrity": "sha1-U4rlKK+JgvKK4w2G8vF0VtJgmHM=",
+      "dev": true,
+      "requires": {
+        "ansi-wrap": "0.1.0"
+      }
+    },
+    "ansi-gray": {
+      "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-red": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz",
+      "integrity": "sha1-jGOPnRCAgAo1PJwoyKgcpHBdlGw=",
+      "dev": true,
+      "requires": {
+        "ansi-wrap": "0.1.0"
+      }
+    },
+    "ansi-regex": {
+      "version": "5.0.1",
+      "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+      "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+      "dev": true
+    },
+    "ansi-styles": {
+      "version": "4.3.0",
+      "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+      "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+      "dev": true,
+      "requires": {
+        "color-convert": "^2.0.1"
+      }
+    },
+    "ansi-wrap": {
+      "version": "0.1.0",
+      "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz",
+      "integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=",
+      "dev": true
+    },
+    "anymatch": {
+      "version": "3.1.2",
+      "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz",
+      "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==",
+      "dev": true,
+      "requires": {
+        "normalize-path": "^3.0.0",
+        "picomatch": "^2.0.4"
+      }
+    },
+    "append-buffer": {
+      "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"
+      }
+    },
+    "arch": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz",
+      "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==",
+      "dev": true
+    },
+    "archive-type": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz",
+      "integrity": "sha1-+S5yIzBW38aWlHJ0nCZ72wRrHXA=",
+      "dev": true,
+      "requires": {
+        "file-type": "^4.2.0"
+      },
+      "dependencies": {
+        "file-type": {
+          "version": "4.4.0",
+          "resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz",
+          "integrity": "sha1-G2AOX8ofvcboDApwxxyNul95BsU=",
+          "dev": true
+        }
+      }
+    },
+    "archy": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz",
+      "integrity": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=",
+      "dev": true
+    },
+    "arr-diff": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz",
+      "integrity": "sha1-aHwydYFjWI/vfeezb6vklesaOZo=",
+      "dev": true,
+      "requires": {
+        "arr-flatten": "^1.0.1",
+        "array-slice": "^0.2.3"
+      },
+      "dependencies": {
+        "array-slice": {
+          "version": "0.2.3",
+          "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz",
+          "integrity": "sha1-3Tz7gO15c6dRF82sabC5nshhhvU=",
+          "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"
+      }
+    },
+    "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==",
+      "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"
+      }
+    },
+    "arr-union": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-2.1.0.tgz",
+      "integrity": "sha1-IPnqtexw9cfSFbEHexw5Fh0pLH0=",
+      "dev": true
+    },
+    "array-differ": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz",
+      "integrity": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE=",
+      "dev": true
+    },
+    "array-each": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz",
+      "integrity": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=",
+      "dev": true
+    },
+    "array-initial": {
+      "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"
+      },
+      "dependencies": {
+        "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==",
+          "dev": true
+        }
+      }
+    },
+    "array-last": {
+      "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"
+      },
+      "dependencies": {
+        "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==",
+          "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==",
+      "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",
+        "kind-of": "^5.0.2"
+      }
+    },
+    "array-union": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/array-union/-/array-union-3.0.1.tgz",
+      "integrity": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==",
+      "dev": true
+    },
+    "array-uniq": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
+      "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=",
+      "dev": true
+    },
+    "array-unique": {
+      "version": "0.3.2",
+      "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
+      "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=",
+      "dev": true
+    },
+    "arraybuffer.slice": {
+      "version": "0.0.7",
+      "resolved": "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz",
+      "integrity": "sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog==",
+      "dev": true
+    },
+    "asap": {
+      "version": "2.0.6",
+      "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
+      "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=",
+      "dev": true
+    },
+    "assert-never": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/assert-never/-/assert-never-1.2.1.tgz",
+      "integrity": "sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==",
+      "dev": true
+    },
+    "assign-symbols": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
+      "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=",
+      "dev": true
+    },
+    "async": {
+      "version": "1.5.2",
+      "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
+      "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=",
+      "dev": true
+    },
+    "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",
+        "process-nextick-args": "^2.0.0",
+        "stream-exhaust": "^1.0.1"
+      }
+    },
+    "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==",
+      "dev": true
+    },
+    "async-each-series": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/async-each-series/-/async-each-series-0.1.1.tgz",
+      "integrity": "sha1-dhfBkXQB/Yykooqtzj266Yr+tDI=",
+      "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"
+      }
+    },
+    "atob": {
+      "version": "2.1.2",
+      "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
+      "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==",
+      "dev": true
+    },
+    "axios": {
+      "version": "0.21.4",
+      "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz",
+      "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",
+      "dev": true,
+      "requires": {
+        "follow-redirects": "^1.14.0"
+      }
+    },
+    "babel-walk": {
+      "version": "3.0.0-canary-5",
+      "resolved": "https://registry.npmjs.org/babel-walk/-/babel-walk-3.0.0-canary-5.tgz",
+      "integrity": "sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==",
+      "dev": true,
+      "requires": {
+        "@babel/types": "^7.9.6"
+      }
+    },
+    "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",
+        "arr-map": "^2.0.0",
+        "array-each": "^1.0.0",
+        "array-initial": "^1.0.0",
+        "array-last": "^1.1.1",
+        "async-done": "^1.2.2",
+        "async-settle": "^1.0.0",
+        "now-and-later": "^2.0.0"
+      }
+    },
+    "backo2": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz",
+      "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=",
+      "dev": true
+    },
+    "balanced-match": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+      "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+      "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",
+        "component-emitter": "^1.2.1",
+        "define-property": "^1.0.0",
+        "isobject": "^3.0.1",
+        "mixin-deep": "^1.2.0",
+        "pascalcase": "^0.1.1"
+      },
+      "dependencies": {
+        "define-property": {
+          "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"
+          }
+        }
+      }
+    },
+    "base64-arraybuffer": {
+      "version": "0.1.4",
+      "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz",
+      "integrity": "sha1-mBjHngWbE1X5fgQooBfIOOkLqBI=",
+      "dev": true
+    },
+    "base64-js": {
+      "version": "1.5.1",
+      "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
+      "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
+      "dev": true
+    },
+    "base64id": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz",
+      "integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==",
+      "dev": true
+    },
+    "batch": {
+      "version": "0.6.1",
+      "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz",
+      "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=",
+      "dev": true
+    },
+    "beeper": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz",
+      "integrity": "sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak=",
+      "dev": true
+    },
+    "bin-build": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/bin-build/-/bin-build-3.0.0.tgz",
+      "integrity": "sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA==",
+      "dev": true,
+      "requires": {
+        "decompress": "^4.0.0",
+        "download": "^6.2.2",
+        "execa": "^0.7.0",
+        "p-map-series": "^1.0.0",
+        "tempfile": "^2.0.0"
+      },
+      "dependencies": {
+        "cross-spawn": {
+          "version": "5.1.0",
+          "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz",
+          "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=",
+          "dev": true,
+          "requires": {
+            "lru-cache": "^4.0.1",
+            "shebang-command": "^1.2.0",
+            "which": "^1.2.9"
+          }
+        },
+        "execa": {
+          "version": "0.7.0",
+          "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz",
+          "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=",
+          "dev": true,
+          "requires": {
+            "cross-spawn": "^5.0.1",
+            "get-stream": "^3.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"
+          }
+        },
+        "get-stream": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
+          "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=",
+          "dev": true
+        }
+      }
+    },
+    "bin-check": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz",
+      "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==",
+      "dev": true,
+      "requires": {
+        "execa": "^0.7.0",
+        "executable": "^4.1.0"
+      },
+      "dependencies": {
+        "cross-spawn": {
+          "version": "5.1.0",
+          "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz",
+          "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=",
+          "dev": true,
+          "requires": {
+            "lru-cache": "^4.0.1",
+            "shebang-command": "^1.2.0",
+            "which": "^1.2.9"
+          }
+        },
+        "execa": {
+          "version": "0.7.0",
+          "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz",
+          "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=",
+          "dev": true,
+          "requires": {
+            "cross-spawn": "^5.0.1",
+            "get-stream": "^3.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"
+          }
+        },
+        "get-stream": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
+          "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=",
+          "dev": true
+        }
+      }
+    },
+    "bin-version": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz",
+      "integrity": "sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ==",
+      "dev": true,
+      "requires": {
+        "execa": "^1.0.0",
+        "find-versions": "^3.0.0"
+      }
+    },
+    "bin-version-check": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz",
+      "integrity": "sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ==",
+      "dev": true,
+      "requires": {
+        "bin-version": "^3.0.0",
+        "semver": "^5.6.0",
+        "semver-truncate": "^1.1.2"
+      }
+    },
+    "bin-wrapper": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-4.1.0.tgz",
+      "integrity": "sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q==",
+      "dev": true,
+      "requires": {
+        "bin-check": "^4.1.0",
+        "bin-version-check": "^4.0.0",
+        "download": "^7.1.0",
+        "import-lazy": "^3.1.0",
+        "os-filter-obj": "^2.0.0",
+        "pify": "^4.0.1"
+      },
+      "dependencies": {
+        "download": {
+          "version": "7.1.0",
+          "resolved": "https://registry.npmjs.org/download/-/download-7.1.0.tgz",
+          "integrity": "sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==",
+          "dev": true,
+          "requires": {
+            "archive-type": "^4.0.0",
+            "caw": "^2.0.1",
+            "content-disposition": "^0.5.2",
+            "decompress": "^4.2.0",
+            "ext-name": "^5.0.0",
+            "file-type": "^8.1.0",
+            "filenamify": "^2.0.0",
+            "get-stream": "^3.0.0",
+            "got": "^8.3.1",
+            "make-dir": "^1.2.0",
+            "p-event": "^2.1.0",
+            "pify": "^3.0.0"
+          },
+          "dependencies": {
+            "pify": {
+              "version": "3.0.0",
+              "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+              "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
+              "dev": true
+            }
+          }
+        },
+        "file-type": {
+          "version": "8.1.0",
+          "resolved": "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz",
+          "integrity": "sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==",
+          "dev": true
+        },
+        "get-stream": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
+          "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=",
+          "dev": true
+        },
+        "got": {
+          "version": "8.3.2",
+          "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz",
+          "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==",
+          "dev": true,
+          "requires": {
+            "@sindresorhus/is": "^0.7.0",
+            "cacheable-request": "^2.1.1",
+            "decompress-response": "^3.3.0",
+            "duplexer3": "^0.1.4",
+            "get-stream": "^3.0.0",
+            "into-stream": "^3.1.0",
+            "is-retry-allowed": "^1.1.0",
+            "isurl": "^1.0.0-alpha5",
+            "lowercase-keys": "^1.0.0",
+            "mimic-response": "^1.0.0",
+            "p-cancelable": "^0.4.0",
+            "p-timeout": "^2.0.1",
+            "pify": "^3.0.0",
+            "safe-buffer": "^5.1.1",
+            "timed-out": "^4.0.1",
+            "url-parse-lax": "^3.0.0",
+            "url-to-options": "^1.0.1"
+          },
+          "dependencies": {
+            "pify": {
+              "version": "3.0.0",
+              "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+              "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
+              "dev": true
+            }
+          }
+        },
+        "p-cancelable": {
+          "version": "0.4.1",
+          "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz",
+          "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==",
+          "dev": true
+        },
+        "p-event": {
+          "version": "2.3.1",
+          "resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz",
+          "integrity": "sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==",
+          "dev": true,
+          "requires": {
+            "p-timeout": "^2.0.1"
+          }
+        },
+        "p-timeout": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz",
+          "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==",
+          "dev": true,
+          "requires": {
+            "p-finally": "^1.0.0"
+          }
+        },
+        "prepend-http": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz",
+          "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=",
+          "dev": true
+        },
+        "url-parse-lax": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz",
+          "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=",
+          "dev": true,
+          "requires": {
+            "prepend-http": "^2.0.0"
+          }
+        }
+      }
+    },
+    "binary-extensions": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
+      "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
+      "dev": true
+    },
+    "binaryextensions": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/binaryextensions/-/binaryextensions-2.3.0.tgz",
+      "integrity": "sha512-nAihlQsYGyc5Bwq6+EsubvANYGExeJKHDO3RjnvwU042fawQTQfM3Kxn7IHUXQOz4bzfwsGYYHGSvXyW4zOGLg==",
+      "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"
+      }
+    },
+    "bl": {
+      "version": "1.2.3",
+      "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz",
+      "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==",
+      "dev": true,
+      "requires": {
+        "readable-stream": "^2.3.5",
+        "safe-buffer": "^5.1.1"
+      }
+    },
+    "blob": {
+      "version": "0.0.5",
+      "resolved": "https://registry.npmjs.org/blob/-/blob-0.0.5.tgz",
+      "integrity": "sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig==",
+      "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,
+      "optional": 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"
+      }
+    },
+    "braces": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
+      "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+      "dev": true,
+      "requires": {
+        "fill-range": "^7.0.1"
+      }
+    },
+    "browser-sync": {
+      "version": "2.27.7",
+      "resolved": "https://registry.npmjs.org/browser-sync/-/browser-sync-2.27.7.tgz",
+      "integrity": "sha512-9ElnnA/u+s2Jd+IgY+2SImB+sAEIteHsMG0NR96m7Ph/wztpvJCUpyC2on1KqmG9iAp941j+5jfmd34tEguGbg==",
+      "dev": true,
+      "requires": {
+        "browser-sync-client": "^2.27.7",
+        "browser-sync-ui": "^2.27.7",
+        "bs-recipes": "1.3.4",
+        "bs-snippet-injector": "^2.0.1",
+        "chokidar": "^3.5.1",
+        "connect": "3.6.6",
+        "connect-history-api-fallback": "^1",
+        "dev-ip": "^1.0.1",
+        "easy-extender": "^2.3.4",
+        "eazy-logger": "3.1.0",
+        "etag": "^1.8.1",
+        "fresh": "^0.5.2",
+        "fs-extra": "3.0.1",
+        "http-proxy": "^1.18.1",
+        "immutable": "^3",
+        "localtunnel": "^2.0.1",
+        "micromatch": "^4.0.2",
+        "opn": "5.3.0",
+        "portscanner": "2.1.1",
+        "qs": "6.2.3",
+        "raw-body": "^2.3.2",
+        "resp-modifier": "6.0.2",
+        "rx": "4.1.0",
+        "send": "0.16.2",
+        "serve-index": "1.9.1",
+        "serve-static": "1.13.2",
+        "server-destroy": "1.0.1",
+        "socket.io": "2.4.0",
+        "ua-parser-js": "1.0.2",
+        "yargs": "^15.4.1"
+      }
+    },
+    "browser-sync-client": {
+      "version": "2.27.7",
+      "resolved": "https://registry.npmjs.org/browser-sync-client/-/browser-sync-client-2.27.7.tgz",
+      "integrity": "sha512-wKg9UP9a4sCIkBBAXUdbkdWFJzfSAQizGh+nC19W9y9zOo9s5jqeYRFUUbs7x5WKhjtspT+xetVp9AtBJ6BmWg==",
+      "dev": true,
+      "requires": {
+        "etag": "1.8.1",
+        "fresh": "0.5.2",
+        "mitt": "^1.1.3",
+        "rxjs": "^5.5.6"
+      }
+    },
+    "browser-sync-ui": {
+      "version": "2.27.7",
+      "resolved": "https://registry.npmjs.org/browser-sync-ui/-/browser-sync-ui-2.27.7.tgz",
+      "integrity": "sha512-Bt4OQpx9p18OIzk0KKyu7jqlvmjacasUlk8ARY3uuIyiFWSBiRgr2i6XY8dEMF14DtbooaEBOpHEu9VCYvMcCw==",
+      "dev": true,
+      "requires": {
+        "async-each-series": "0.1.1",
+        "connect-history-api-fallback": "^1",
+        "immutable": "^3",
+        "server-destroy": "1.0.1",
+        "socket.io-client": "^2.4.0",
+        "stream-throttle": "^0.1.3"
+      }
+    },
+    "bs-recipes": {
+      "version": "1.3.4",
+      "resolved": "https://registry.npmjs.org/bs-recipes/-/bs-recipes-1.3.4.tgz",
+      "integrity": "sha1-DS1NSKcYyMBEdp/cT4lZLci2lYU=",
+      "dev": true
+    },
+    "bs-snippet-injector": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/bs-snippet-injector/-/bs-snippet-injector-2.0.1.tgz",
+      "integrity": "sha1-YbU5PxH1JVntEgaTEANDtu2wTdU=",
+      "dev": true
+    },
+    "buffer": {
+      "version": "5.7.1",
+      "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
+      "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
+      "dev": true,
+      "requires": {
+        "base64-js": "^1.3.1",
+        "ieee754": "^1.1.13"
+      }
+    },
+    "buffer-alloc": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz",
+      "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==",
+      "dev": true,
+      "requires": {
+        "buffer-alloc-unsafe": "^1.1.0",
+        "buffer-fill": "^1.0.0"
+      }
+    },
+    "buffer-alloc-unsafe": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz",
+      "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==",
+      "dev": true
+    },
+    "buffer-crc32": {
+      "version": "0.2.13",
+      "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
+      "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=",
+      "dev": true
+    },
+    "buffer-equal": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz",
+      "integrity": "sha1-WWFrSYME1Var1GaWayLu2j7KX74=",
+      "dev": true
+    },
+    "buffer-fill": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz",
+      "integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw=",
+      "dev": true
+    },
+    "buffer-from": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
+      "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
+      "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
+    },
+    "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",
+        "get-value": "^2.0.6",
+        "has-value": "^1.0.0",
+        "isobject": "^3.0.1",
+        "set-value": "^2.0.0",
+        "to-object-path": "^0.3.0",
+        "union-value": "^1.0.0",
+        "unset-value": "^1.0.0"
+      }
+    },
+    "cacheable-request": {
+      "version": "2.1.4",
+      "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz",
+      "integrity": "sha1-DYCIAbY0KtM8kd+dC0TcCbkeXD0=",
+      "dev": true,
+      "requires": {
+        "clone-response": "1.0.2",
+        "get-stream": "3.0.0",
+        "http-cache-semantics": "3.8.1",
+        "keyv": "3.0.0",
+        "lowercase-keys": "1.0.0",
+        "normalize-url": "2.0.1",
+        "responselike": "1.0.2"
+      },
+      "dependencies": {
+        "get-stream": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
+          "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=",
+          "dev": true
+        },
+        "lowercase-keys": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz",
+          "integrity": "sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=",
+          "dev": true
+        }
+      }
+    },
+    "call-bind": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
+      "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
+      "dev": true,
+      "requires": {
+        "function-bind": "^1.1.1",
+        "get-intrinsic": "^1.0.2"
+      }
+    },
+    "camelcase": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz",
+      "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=",
+      "dev": true
+    },
+    "caw": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz",
+      "integrity": "sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==",
+      "dev": true,
+      "requires": {
+        "get-proxy": "^2.0.0",
+        "isurl": "^1.0.0-alpha5",
+        "tunnel-agent": "^0.6.0",
+        "url-to-options": "^1.0.1"
+      }
+    },
+    "chalk": {
+      "version": "4.1.2",
+      "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+      "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+      "dev": true,
+      "requires": {
+        "ansi-styles": "^4.1.0",
+        "supports-color": "^7.1.0"
+      }
+    },
+    "character-parser": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz",
+      "integrity": "sha1-x84o821LzZdE5f/CxfzeHHMmH8A=",
+      "dev": true,
+      "requires": {
+        "is-regex": "^1.0.3"
+      }
+    },
+    "chokidar": {
+      "version": "3.5.2",
+      "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz",
+      "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==",
+      "dev": true,
+      "requires": {
+        "anymatch": "~3.1.2",
+        "braces": "~3.0.2",
+        "fsevents": "~2.3.2",
+        "glob-parent": "~5.1.2",
+        "is-binary-path": "~2.1.0",
+        "is-glob": "~4.0.1",
+        "normalize-path": "~3.0.0",
+        "readdirp": "~3.6.0"
+      }
+    },
+    "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",
+        "isobject": "^3.0.0",
+        "static-extend": "^0.1.1"
+      },
+      "dependencies": {
+        "arr-union": {
+          "version": "3.1.0",
+          "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
+          "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
+          "dev": true
+        },
+        "define-property": {
+          "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"
+          }
+        },
+        "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"
+          },
+          "dependencies": {
+            "kind-of": {
+              "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-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"
+          },
+          "dependencies": {
+            "kind-of": {
+              "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-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",
+            "kind-of": "^5.0.0"
+          }
+        }
+      }
+    },
+    "cliui": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
+      "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
+      "dev": true,
+      "requires": {
+        "string-width": "^4.2.0",
+        "strip-ansi": "^6.0.0",
+        "wrap-ansi": "^6.2.0"
+      }
+    },
+    "clone": {
+      "version": "2.1.2",
+      "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz",
+      "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=",
+      "dev": true
+    },
+    "clone-response": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz",
+      "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=",
+      "dev": true,
+      "requires": {
+        "mimic-response": "^1.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=",
+      "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",
+        "readable-stream": "^2.3.5"
+      }
+    },
+    "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=",
+      "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",
+        "make-iterator": "^1.0.0"
+      }
+    },
+    "collection-visit": {
+      "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"
+      }
+    },
+    "color-convert": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+      "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+      "dev": true,
+      "requires": {
+        "color-name": "~1.1.4"
+      }
+    },
+    "color-name": {
+      "version": "1.1.4",
+      "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+      "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+      "dev": true
+    },
+    "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==",
+      "dev": true
+    },
+    "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
+    },
+    "component-bind": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz",
+      "integrity": "sha1-AMYIq33Nk4l8AAllGx06jh5zu9E=",
+      "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==",
+      "dev": true
+    },
+    "component-inherit": {
+      "version": "0.0.3",
+      "resolved": "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz",
+      "integrity": "sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM=",
+      "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=",
+      "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",
+        "readable-stream": "^2.2.2",
+        "typedarray": "^0.0.6"
+      }
+    },
+    "config-chain": {
+      "version": "1.1.13",
+      "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz",
+      "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==",
+      "dev": true,
+      "requires": {
+        "ini": "^1.3.4",
+        "proto-list": "~1.2.1"
+      }
+    },
+    "connect": {
+      "version": "3.6.6",
+      "resolved": "https://registry.npmjs.org/connect/-/connect-3.6.6.tgz",
+      "integrity": "sha1-Ce/2xVr3I24TcTWnJXSFi2eG9SQ=",
+      "dev": true,
+      "requires": {
+        "debug": "2.6.9",
+        "finalhandler": "1.1.0",
+        "parseurl": "~1.3.2",
+        "utils-merge": "1.0.1"
+      }
+    },
+    "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
+    },
+    "constantinople": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/constantinople/-/constantinople-4.0.1.tgz",
+      "integrity": "sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==",
+      "dev": true,
+      "requires": {
+        "@babel/parser": "^7.6.0",
+        "@babel/types": "^7.6.1"
+      }
+    },
+    "content-disposition": {
+      "version": "0.5.3",
+      "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz",
+      "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==",
+      "dev": true,
+      "requires": {
+        "safe-buffer": "5.1.2"
+      }
+    },
+    "convert-source-map": {
+      "version": "1.8.0",
+      "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz",
+      "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==",
+      "dev": true,
+      "requires": {
+        "safe-buffer": "~5.1.1"
+      }
+    },
+    "cookie": {
+      "version": "0.4.1",
+      "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz",
+      "integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==",
+      "dev": true
+    },
+    "copy-descriptor": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz",
+      "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=",
+      "dev": true
+    },
+    "copy-props": {
+      "version": "2.0.5",
+      "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz",
+      "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==",
+      "dev": true,
+      "requires": {
+        "each-props": "^1.3.2",
+        "is-plain-object": "^5.0.0"
+      }
+    },
+    "core-util-is": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
+      "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
+      "dev": true
+    },
+    "crc": {
+      "version": "3.8.0",
+      "resolved": "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz",
+      "integrity": "sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==",
+      "dev": true,
+      "requires": {
+        "buffer": "^5.1.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"
+      }
+    },
+    "css-select": {
+      "version": "4.1.3",
+      "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.1.3.tgz",
+      "integrity": "sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "boolbase": "^1.0.0",
+        "css-what": "^5.0.0",
+        "domhandler": "^4.2.0",
+        "domutils": "^2.6.0",
+        "nth-check": "^2.0.0"
+      }
+    },
+    "css-tree": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz",
+      "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "mdn-data": "2.0.14",
+        "source-map": "^0.6.1"
+      }
+    },
+    "css-what": {
+      "version": "5.1.0",
+      "resolved": "https://registry.npmjs.org/css-what/-/css-what-5.1.0.tgz",
+      "integrity": "sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==",
+      "dev": true,
+      "optional": true
+    },
+    "csso": {
+      "version": "4.2.0",
+      "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz",
+      "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "css-tree": "^1.1.2"
+      }
+    },
+    "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"
+      }
+    },
+    "dateformat": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz",
+      "integrity": "sha1-QGXiATz5+5Ft39gu+1Bq1MZ2kGI=",
+      "dev": true
+    },
+    "debug": {
+      "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"
+      }
+    },
+    "decamelize": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
+      "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=",
+      "dev": true
+    },
+    "decompress": {
+      "version": "4.2.1",
+      "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz",
+      "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==",
+      "dev": true,
+      "requires": {
+        "decompress-tar": "^4.0.0",
+        "decompress-tarbz2": "^4.0.0",
+        "decompress-targz": "^4.0.0",
+        "decompress-unzip": "^4.0.1",
+        "graceful-fs": "^4.1.10",
+        "make-dir": "^1.0.0",
+        "pify": "^2.3.0",
+        "strip-dirs": "^2.0.0"
+      },
+      "dependencies": {
+        "pify": {
+          "version": "2.3.0",
+          "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+          "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+          "dev": true
+        }
+      }
+    },
+    "decompress-response": {
+      "version": "3.3.0",
+      "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz",
+      "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=",
+      "dev": true,
+      "requires": {
+        "mimic-response": "^1.0.0"
+      }
+    },
+    "decompress-tar": {
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz",
+      "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==",
+      "dev": true,
+      "requires": {
+        "file-type": "^5.2.0",
+        "is-stream": "^1.1.0",
+        "tar-stream": "^1.5.2"
+      },
+      "dependencies": {
+        "file-type": {
+          "version": "5.2.0",
+          "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz",
+          "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=",
+          "dev": true
+        }
+      }
+    },
+    "decompress-tarbz2": {
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz",
+      "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==",
+      "dev": true,
+      "requires": {
+        "decompress-tar": "^4.1.0",
+        "file-type": "^6.1.0",
+        "is-stream": "^1.1.0",
+        "seek-bzip": "^1.0.5",
+        "unbzip2-stream": "^1.0.9"
+      },
+      "dependencies": {
+        "file-type": {
+          "version": "6.2.0",
+          "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz",
+          "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==",
+          "dev": true
+        }
+      }
+    },
+    "decompress-targz": {
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz",
+      "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==",
+      "dev": true,
+      "requires": {
+        "decompress-tar": "^4.1.1",
+        "file-type": "^5.2.0",
+        "is-stream": "^1.1.0"
+      },
+      "dependencies": {
+        "file-type": {
+          "version": "5.2.0",
+          "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz",
+          "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=",
+          "dev": true
+        }
+      }
+    },
+    "decompress-unzip": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz",
+      "integrity": "sha1-3qrM39FK6vhVePczroIQ+bSEj2k=",
+      "dev": true,
+      "requires": {
+        "file-type": "^3.8.0",
+        "get-stream": "^2.2.0",
+        "pify": "^2.3.0",
+        "yauzl": "^2.4.2"
+      },
+      "dependencies": {
+        "file-type": {
+          "version": "3.9.0",
+          "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz",
+          "integrity": "sha1-JXoHg4TR24CHvESdEH1SpSZyuek=",
+          "dev": true
+        },
+        "get-stream": {
+          "version": "2.3.1",
+          "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz",
+          "integrity": "sha1-Xzj5PzRgCWZu4BUKBUFn+Rvdld4=",
+          "dev": true,
+          "requires": {
+            "object-assign": "^4.0.1",
+            "pinkie-promise": "^2.0.0"
+          }
+        },
+        "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
+        },
+        "pify": {
+          "version": "2.3.0",
+          "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+          "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+          "dev": true
+        }
+      }
+    },
+    "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"
+      }
+    },
+    "default-resolution": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz",
+      "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"
+      }
+    },
+    "define-property": {
+      "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"
+      }
+    },
+    "depd": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
+      "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=",
+      "dev": true
+    },
+    "destroy": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz",
+      "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=",
+      "dev": true
+    },
+    "detect-file": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz",
+      "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=",
+      "dev": true
+    },
+    "dev-ip": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/dev-ip/-/dev-ip-1.0.1.tgz",
+      "integrity": "sha1-p2o+0YVb56ASu4rBbLgPPADcKPA=",
+      "dev": true
+    },
+    "dir-glob": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
+      "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
+      "dev": true,
+      "requires": {
+        "path-type": "^4.0.0"
+      }
+    },
+    "dlv": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz",
+      "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==",
+      "dev": true
+    },
+    "doctypes": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/doctypes/-/doctypes-1.1.0.tgz",
+      "integrity": "sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk=",
+      "dev": true
+    },
+    "dom-serializer": {
+      "version": "1.3.2",
+      "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz",
+      "integrity": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "domelementtype": "^2.0.1",
+        "domhandler": "^4.2.0",
+        "entities": "^2.0.0"
+      }
+    },
+    "domelementtype": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz",
+      "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==",
+      "dev": true,
+      "optional": true
+    },
+    "domhandler": {
+      "version": "4.2.2",
+      "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz",
+      "integrity": "sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "domelementtype": "^2.2.0"
+      }
+    },
+    "domutils": {
+      "version": "2.8.0",
+      "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz",
+      "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "dom-serializer": "^1.0.1",
+        "domelementtype": "^2.2.0",
+        "domhandler": "^4.2.0"
+      }
+    },
+    "download": {
+      "version": "6.2.5",
+      "resolved": "https://registry.npmjs.org/download/-/download-6.2.5.tgz",
+      "integrity": "sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA==",
+      "dev": true,
+      "requires": {
+        "caw": "^2.0.0",
+        "content-disposition": "^0.5.2",
+        "decompress": "^4.0.0",
+        "ext-name": "^5.0.0",
+        "file-type": "5.2.0",
+        "filenamify": "^2.0.0",
+        "get-stream": "^3.0.0",
+        "got": "^7.0.0",
+        "make-dir": "^1.0.0",
+        "p-event": "^1.0.0",
+        "pify": "^3.0.0"
+      },
+      "dependencies": {
+        "file-type": {
+          "version": "5.2.0",
+          "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz",
+          "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=",
+          "dev": true
+        },
+        "get-stream": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
+          "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=",
+          "dev": true
+        },
+        "pify": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+          "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
+          "dev": true
+        }
+      }
+    },
+    "duplexer2": {
+      "version": "0.0.2",
+      "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz",
+      "integrity": "sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds=",
+      "dev": true,
+      "requires": {
+        "readable-stream": "~1.1.9"
+      },
+      "dependencies": {
+        "isarray": {
+          "version": "0.0.1",
+          "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
+          "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=",
+          "dev": true
+        },
+        "readable-stream": {
+          "version": "1.1.14",
+          "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz",
+          "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=",
+          "dev": true,
+          "requires": {
+            "core-util-is": "~1.0.0",
+            "inherits": "~2.0.1",
+            "isarray": "0.0.1",
+            "string_decoder": "~0.10.x"
+          }
+        },
+        "string_decoder": {
+          "version": "0.10.31",
+          "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
+          "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=",
+          "dev": true
+        }
+      }
+    },
+    "duplexer3": {
+      "version": "0.1.4",
+      "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz",
+      "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=",
+      "dev": true
+    },
+    "duplexify": {
+      "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",
+        "readable-stream": "^2.0.0",
+        "stream-shift": "^1.0.0"
+      }
+    },
+    "each-props": {
+      "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"
+      },
+      "dependencies": {
+        "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"
+          }
+        }
+      }
+    },
+    "easy-extender": {
+      "version": "2.3.4",
+      "resolved": "https://registry.npmjs.org/easy-extender/-/easy-extender-2.3.4.tgz",
+      "integrity": "sha512-8cAwm6md1YTiPpOvDULYJL4ZS6WfM5/cTeVVh4JsvyYZAoqlRVUpHL9Gr5Fy7HA6xcSZicUia3DeAgO3Us8E+Q==",
+      "dev": true,
+      "requires": {
+        "lodash": "^4.17.10"
+      }
+    },
+    "eazy-logger": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/eazy-logger/-/eazy-logger-3.1.0.tgz",
+      "integrity": "sha512-/snsn2JqBtUSSstEl4R0RKjkisGHAhvYj89i7r3ytNUKW12y178KDZwXLXIgwDqLW6E/VRMT9qfld7wvFae8bQ==",
+      "dev": true,
+      "requires": {
+        "tfunk": "^4.0.0"
+      }
+    },
+    "ee-first": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
+      "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=",
+      "dev": true
+    },
+    "emoji-regex": {
+      "version": "8.0.0",
+      "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+      "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+      "dev": true
+    },
+    "encodeurl": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
+      "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=",
+      "dev": true
+    },
+    "end-of-stream": {
+      "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"
+      }
+    },
+    "engine.io": {
+      "version": "3.5.0",
+      "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-3.5.0.tgz",
+      "integrity": "sha512-21HlvPUKaitDGE4GXNtQ7PLP0Sz4aWLddMPw2VTyFz1FVZqu/kZsJUO8WNpKuE/OCL7nkfRaOui2ZCJloGznGA==",
+      "dev": true,
+      "requires": {
+        "accepts": "~1.3.4",
+        "base64id": "2.0.0",
+        "cookie": "~0.4.1",
+        "debug": "~4.1.0",
+        "engine.io-parser": "~2.2.0",
+        "ws": "~7.4.2"
+      },
+      "dependencies": {
+        "debug": {
+          "version": "4.1.1",
+          "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
+          "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
+          "dev": true,
+          "requires": {
+            "ms": "^2.1.1"
+          }
+        },
+        "ms": {
+          "version": "2.1.3",
+          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+          "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+          "dev": true
+        }
+      }
+    },
+    "engine.io-client": {
+      "version": "3.5.2",
+      "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.5.2.tgz",
+      "integrity": "sha512-QEqIp+gJ/kMHeUun7f5Vv3bteRHppHH/FMBQX/esFj/fuYfjyUKWGMo3VCvIP/V8bE9KcjHmRZrhIz2Z9oNsDA==",
+      "dev": true,
+      "requires": {
+        "component-emitter": "~1.3.0",
+        "component-inherit": "0.0.3",
+        "debug": "~3.1.0",
+        "engine.io-parser": "~2.2.0",
+        "has-cors": "1.1.0",
+        "indexof": "0.0.1",
+        "parseqs": "0.0.6",
+        "parseuri": "0.0.6",
+        "ws": "~7.4.2",
+        "xmlhttprequest-ssl": "~1.6.2",
+        "yeast": "0.1.2"
+      },
+      "dependencies": {
+        "debug": {
+          "version": "3.1.0",
+          "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
+          "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
+          "dev": true,
+          "requires": {
+            "ms": "2.0.0"
+          }
+        }
+      }
+    },
+    "engine.io-parser": {
+      "version": "2.2.1",
+      "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.2.1.tgz",
+      "integrity": "sha512-x+dN/fBH8Ro8TFwJ+rkB2AmuVw9Yu2mockR/p3W8f8YtExwFgDvBDi0GWyb4ZLkpahtDGZgtr3zLovanJghPqg==",
+      "dev": true,
+      "requires": {
+        "after": "0.8.2",
+        "arraybuffer.slice": "~0.0.7",
+        "base64-arraybuffer": "0.1.4",
+        "blob": "0.0.5",
+        "has-binary2": "~1.0.2"
+      }
+    },
+    "entities": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
+      "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
+      "dev": true,
+      "optional": true
+    },
+    "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"
+      }
+    },
+    "es5-ext": {
+      "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",
+        "next-tick": "~1.0.0"
+      }
+    },
+    "es6-iterator": {
+      "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",
+        "es6-symbol": "^3.1.1"
+      }
+    },
+    "es6-symbol": {
+      "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"
+      }
+    },
+    "es6-weak-map": {
+      "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",
+        "es6-iterator": "^2.0.3",
+        "es6-symbol": "^3.1.1"
+      }
+    },
+    "escalade": {
+      "version": "3.1.1",
+      "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
+      "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
+      "dev": true
+    },
+    "escape-html": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
+      "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=",
+      "dev": true
+    },
+    "escape-string-regexp": {
+      "version": "1.0.5",
+      "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+      "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
+      "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
+    },
+    "exec-buffer": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/exec-buffer/-/exec-buffer-3.2.0.tgz",
+      "integrity": "sha512-wsiD+2Tp6BWHoVv3B+5Dcx6E7u5zky+hUwOHjuH2hKSLR3dvRmX8fk8UD8uqQixHs4Wk6eDmiegVrMPjKj7wpA==",
+      "dev": true,
+      "requires": {
+        "execa": "^0.7.0",
+        "p-finally": "^1.0.0",
+        "pify": "^3.0.0",
+        "rimraf": "^2.5.4",
+        "tempfile": "^2.0.0"
+      },
+      "dependencies": {
+        "cross-spawn": {
+          "version": "5.1.0",
+          "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz",
+          "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=",
+          "dev": true,
+          "requires": {
+            "lru-cache": "^4.0.1",
+            "shebang-command": "^1.2.0",
+            "which": "^1.2.9"
+          }
+        },
+        "execa": {
+          "version": "0.7.0",
+          "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz",
+          "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=",
+          "dev": true,
+          "requires": {
+            "cross-spawn": "^5.0.1",
+            "get-stream": "^3.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"
+          }
+        },
+        "get-stream": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
+          "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=",
+          "dev": true
+        },
+        "pify": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+          "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
+          "dev": true
+        }
+      }
+    },
+    "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"
+      }
+    },
+    "executable": {
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz",
+      "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==",
+      "dev": true,
+      "requires": {
+        "pify": "^2.2.0"
+      },
+      "dependencies": {
+        "pify": {
+          "version": "2.3.0",
+          "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+          "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+          "dev": true
+        }
+      }
+    },
+    "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",
+        "extend-shallow": "^2.0.1",
+        "posix-character-classes": "^0.1.0",
+        "regex-not": "^1.0.0",
+        "snapdragon": "^0.8.1",
+        "to-regex": "^3.0.1"
+      },
+      "dependencies": {
+        "define-property": {
+          "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"
+          }
+        },
+        "extend-shallow": {
+          "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"
+          }
+        },
+        "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"
+          },
+          "dependencies": {
+            "kind-of": {
+              "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-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"
+          },
+          "dependencies": {
+            "kind-of": {
+              "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-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",
+            "kind-of": "^5.0.0"
+          }
+        },
+        "is-extendable": {
+          "version": "0.1.1",
+          "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+          "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+          "dev": true
+        }
+      }
+    },
+    "expand-tilde": {
+      "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"
+      }
+    },
+    "ext": {
+      "version": "1.6.0",
+      "resolved": "https://registry.npmjs.org/ext/-/ext-1.6.0.tgz",
+      "integrity": "sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg==",
+      "dev": true,
+      "requires": {
+        "type": "^2.5.0"
+      },
+      "dependencies": {
+        "type": {
+          "version": "2.5.0",
+          "resolved": "https://registry.npmjs.org/type/-/type-2.5.0.tgz",
+          "integrity": "sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw==",
+          "dev": true
+        }
+      }
+    },
+    "ext-list": {
+      "version": "2.2.2",
+      "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz",
+      "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==",
+      "dev": true,
+      "requires": {
+        "mime-db": "^1.28.0"
+      }
+    },
+    "ext-name": {
+      "version": "5.0.0",
+      "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz",
+      "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==",
+      "dev": true,
+      "requires": {
+        "ext-list": "^2.0.0",
+        "sort-keys-length": "^1.0.0"
+      }
+    },
+    "extend": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
+      "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
+      "dev": true
+    },
+    "extend-shallow": {
+      "version": "1.1.4",
+      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-1.1.4.tgz",
+      "integrity": "sha1-Gda/lN/AnXa6cR85uHLSH/TdkHE=",
+      "dev": true,
+      "requires": {
+        "kind-of": "^1.1.0"
+      },
+      "dependencies": {
+        "kind-of": {
+          "version": "1.1.0",
+          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz",
+          "integrity": "sha1-FAo9LUGjbS78+pN3tiwk+ElaXEQ=",
+          "dev": true
+        }
+      }
+    },
+    "extglob": {
+      "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",
+        "expand-brackets": "^2.1.4",
+        "extend-shallow": "^2.0.1",
+        "fragment-cache": "^0.2.1",
+        "regex-not": "^1.0.0",
+        "snapdragon": "^0.8.1",
+        "to-regex": "^3.0.1"
+      },
+      "dependencies": {
+        "define-property": {
+          "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"
+          }
+        },
+        "extend-shallow": {
+          "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"
+          }
+        },
+        "is-extendable": {
+          "version": "0.1.1",
+          "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+          "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+          "dev": true
+        }
+      }
+    },
+    "fancy-log": {
+      "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",
+        "parse-node-version": "^1.0.0",
+        "time-stamp": "^1.0.0"
+      }
+    },
+    "fast-glob": {
+      "version": "3.2.7",
+      "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz",
+      "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==",
+      "dev": true,
+      "requires": {
+        "@nodelib/fs.stat": "^2.0.2",
+        "@nodelib/fs.walk": "^1.2.3",
+        "glob-parent": "^5.1.2",
+        "merge2": "^1.3.0",
+        "micromatch": "^4.0.4"
+      }
+    },
+    "fast-levenshtein": {
+      "version": "1.1.4",
+      "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz",
+      "integrity": "sha1-5qdUzI8V5YmHqpy9J69m/W9OWvk=",
+      "dev": true
+    },
+    "fast-xml-parser": {
+      "version": "3.21.1",
+      "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.21.1.tgz",
+      "integrity": "sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "strnum": "^1.0.4"
+      }
+    },
+    "fastq": {
+      "version": "1.13.0",
+      "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz",
+      "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==",
+      "dev": true,
+      "requires": {
+        "reusify": "^1.0.4"
+      }
+    },
+    "fd-slicer": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
+      "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=",
+      "dev": true,
+      "requires": {
+        "pend": "~1.2.0"
+      }
+    },
+    "file-type": {
+      "version": "16.5.3",
+      "resolved": "https://registry.npmjs.org/file-type/-/file-type-16.5.3.tgz",
+      "integrity": "sha512-uVsl7iFhHSOY4bEONLlTK47iAHtNsFHWP5YE4xJfZ4rnX7S1Q3wce09XgqSC7E/xh8Ncv/be1lNoyprlUH/x6A==",
+      "dev": true,
+      "requires": {
+        "readable-web-to-node-stream": "^3.0.0",
+        "strtok3": "^6.2.4",
+        "token-types": "^4.1.1"
+      }
+    },
+    "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-reserved-regex": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz",
+      "integrity": "sha1-q/c9+rc10EVECr/qLZHzieu/oik=",
+      "dev": true
+    },
+    "filenamify": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz",
+      "integrity": "sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==",
+      "dev": true,
+      "requires": {
+        "filename-reserved-regex": "^2.0.0",
+        "strip-outer": "^1.0.0",
+        "trim-repeated": "^1.0.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,
+      "requires": {
+        "to-regex-range": "^5.0.1"
+      }
+    },
+    "finalhandler": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz",
+      "integrity": "sha1-zgtoVbRYU+eRsvzGgARtiCU91/U=",
+      "dev": true,
+      "requires": {
+        "debug": "2.6.9",
+        "encodeurl": "~1.0.1",
+        "escape-html": "~1.0.3",
+        "on-finished": "~2.3.0",
+        "parseurl": "~1.3.2",
+        "statuses": "~1.3.1",
+        "unpipe": "~1.0.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"
+      }
+    },
+    "find-versions": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz",
+      "integrity": "sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==",
+      "dev": true,
+      "requires": {
+        "semver-regex": "^2.0.0"
+      }
+    },
+    "findup-sync": {
+      "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",
+        "micromatch": "^3.0.4",
+        "resolve-dir": "^1.0.1"
+      },
+      "dependencies": {
+        "arr-diff": {
+          "version": "4.0.0",
+          "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
+          "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
+          "dev": true
+        },
+        "braces": {
+          "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",
+            "extend-shallow": "^2.0.1",
+            "fill-range": "^4.0.0",
+            "isobject": "^3.0.1",
+            "repeat-element": "^1.1.2",
+            "snapdragon": "^0.8.1",
+            "snapdragon-node": "^2.0.1",
+            "split-string": "^3.0.2",
+            "to-regex": "^3.0.1"
+          },
+          "dependencies": {
+            "extend-shallow": {
+              "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"
+              }
+            },
+            "is-extendable": {
+              "version": "0.1.1",
+              "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+              "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+              "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"
+          }
+        },
+        "fill-range": {
+          "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",
+            "repeat-string": "^1.6.1",
+            "to-regex-range": "^2.1.0"
+          },
+          "dependencies": {
+            "extend-shallow": {
+              "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"
+              }
+            },
+            "is-extendable": {
+              "version": "0.1.1",
+              "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+              "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+              "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"
+          },
+          "dependencies": {
+            "kind-of": {
+              "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"
+              }
+            }
+          }
+        },
+        "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==",
+          "dev": true
+        },
+        "micromatch": {
+          "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",
+            "braces": "^2.3.1",
+            "define-property": "^2.0.2",
+            "extend-shallow": "^3.0.2",
+            "extglob": "^2.0.4",
+            "fragment-cache": "^0.2.1",
+            "kind-of": "^6.0.2",
+            "nanomatch": "^1.2.9",
+            "object.pick": "^1.3.0",
+            "regex-not": "^1.0.0",
+            "snapdragon": "^0.8.1",
+            "to-regex": "^3.0.2"
+          }
+        },
+        "to-regex-range": {
+          "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"
+          }
+        }
+      }
+    },
+    "fined": {
+      "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",
+        "object.defaults": "^1.1.0",
+        "object.pick": "^1.2.0",
+        "parse-filepath": "^1.0.1"
+      },
+      "dependencies": {
+        "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"
+          }
+        }
+      }
+    },
+    "flagged-respawn": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz",
+      "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"
+      }
+    },
+    "follow-redirects": {
+      "version": "1.14.5",
+      "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.5.tgz",
+      "integrity": "sha512-wtphSXy7d4/OR+MvIFbCVBDzZ5520qV8XfPklSN5QtxuMUJZ+b0Wnst1e1lCDocfzuCkHqj8k0FpZqO+UIaKNA==",
+      "dev": true
+    },
+    "for-in": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",
+      "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"
+      }
+    },
+    "fragment-cache": {
+      "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"
+      }
+    },
+    "fresh": {
+      "version": "0.5.2",
+      "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
+      "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-constants": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
+      "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==",
+      "dev": true
+    },
+    "fs-extra": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz",
+      "integrity": "sha1-N5TzeMWLNC6n27sjCVEJxLO2IpE=",
+      "dev": true,
+      "requires": {
+        "graceful-fs": "^4.1.2",
+        "jsonfile": "^3.0.0",
+        "universalify": "^0.1.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.realpath": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+      "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
+      "dev": true
+    },
+    "fsevents": {
+      "version": "2.3.2",
+      "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
+      "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
+      "dev": true,
+      "optional": true
+    },
+    "ftp": {
+      "version": "0.3.10",
+      "resolved": "https://registry.npmjs.org/ftp/-/ftp-0.3.10.tgz",
+      "integrity": "sha1-kZfYYa2BQvPmPVqDv+TFn3MwiF0=",
+      "dev": true,
+      "requires": {
+        "readable-stream": "1.1.x",
+        "xregexp": "2.0.0"
+      },
+      "dependencies": {
+        "isarray": {
+          "version": "0.0.1",
+          "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
+          "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=",
+          "dev": true
+        },
+        "readable-stream": {
+          "version": "1.1.14",
+          "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz",
+          "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=",
+          "dev": true,
+          "requires": {
+            "core-util-is": "~1.0.0",
+            "inherits": "~2.0.1",
+            "isarray": "0.0.1",
+            "string_decoder": "~0.10.x"
+          }
+        },
+        "string_decoder": {
+          "version": "0.10.31",
+          "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
+          "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=",
+          "dev": true
+        }
+      }
+    },
+    "function-bind": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
+      "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
+      "dev": true
+    },
+    "get-caller-file": {
+      "version": "2.0.5",
+      "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
+      "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
+      "dev": true
+    },
+    "get-intrinsic": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz",
+      "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==",
+      "dev": true,
+      "requires": {
+        "function-bind": "^1.1.1",
+        "has": "^1.0.3",
+        "has-symbols": "^1.0.1"
+      }
+    },
+    "get-proxy": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz",
+      "integrity": "sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==",
+      "dev": true,
+      "requires": {
+        "npm-conf": "^1.1.0"
+      }
+    },
+    "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"
+      }
+    },
+    "get-value": {
+      "version": "2.0.6",
+      "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz",
+      "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=",
+      "dev": true
+    },
+    "gifsicle": {
+      "version": "5.2.1",
+      "resolved": "https://registry.npmjs.org/gifsicle/-/gifsicle-5.2.1.tgz",
+      "integrity": "sha512-9ewIQQCAnSmkU2DhuWafd1DdsgzAkKqIWnY+023xBLSiK9Az2TDUozWQW+SyRQgFMclbe6RQldUk/49TRO3Aqw==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "bin-build": "^3.0.0",
+        "bin-wrapper": "^4.0.0",
+        "execa": "^5.0.0"
+      },
+      "dependencies": {
+        "cross-spawn": {
+          "version": "7.0.3",
+          "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
+          "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "path-key": "^3.1.0",
+            "shebang-command": "^2.0.0",
+            "which": "^2.0.1"
+          }
+        },
+        "execa": {
+          "version": "5.1.1",
+          "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
+          "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "cross-spawn": "^7.0.3",
+            "get-stream": "^6.0.0",
+            "human-signals": "^2.1.0",
+            "is-stream": "^2.0.0",
+            "merge-stream": "^2.0.0",
+            "npm-run-path": "^4.0.1",
+            "onetime": "^5.1.2",
+            "signal-exit": "^3.0.3",
+            "strip-final-newline": "^2.0.0"
+          }
+        },
+        "get-stream": {
+          "version": "6.0.1",
+          "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
+          "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
+          "dev": true,
+          "optional": true
+        },
+        "is-stream": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
+          "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
+          "dev": true,
+          "optional": true
+        },
+        "npm-run-path": {
+          "version": "4.0.1",
+          "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
+          "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "path-key": "^3.0.0"
+          }
+        },
+        "path-key": {
+          "version": "3.1.1",
+          "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+          "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+          "dev": true,
+          "optional": true
+        },
+        "shebang-command": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+          "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "shebang-regex": "^3.0.0"
+          }
+        },
+        "shebang-regex": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+          "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+          "dev": true,
+          "optional": true
+        },
+        "which": {
+          "version": "2.0.2",
+          "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+          "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "isexe": "^2.0.0"
+          }
+        }
+      }
+    },
+    "glob": {
+      "version": "7.2.0",
+      "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz",
+      "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==",
+      "dev": true,
+      "requires": {
+        "fs.realpath": "^1.0.0",
+        "inflight": "^1.0.4",
+        "inherits": "2",
+        "minimatch": "^3.0.4",
+        "once": "^1.3.0",
+        "path-is-absolute": "^1.0.0"
+      }
+    },
+    "glob-parent": {
+      "version": "5.1.2",
+      "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+      "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+      "dev": true,
+      "requires": {
+        "is-glob": "^4.0.1"
+      }
+    },
+    "glob-stream": {
+      "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",
+        "glob-parent": "^3.1.0",
+        "is-negated-glob": "^1.0.0",
+        "ordered-read-streams": "^1.0.0",
+        "pumpify": "^1.3.5",
+        "readable-stream": "^2.1.5",
+        "remove-trailing-separator": "^1.0.1",
+        "to-absolute-glob": "^2.0.0",
+        "unique-stream": "^2.0.2"
+      },
+      "dependencies": {
+        "glob-parent": {
+          "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"
+          }
+        },
+        "is-glob": {
+          "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"
+          }
+        }
+      }
+    },
+    "glob-watcher": {
+      "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",
+        "chokidar": "^2.0.0",
+        "is-negated-glob": "^1.0.0",
+        "just-debounce": "^1.0.0",
+        "normalize-path": "^3.0.0",
+        "object.defaults": "^1.1.0"
+      },
+      "dependencies": {
+        "anymatch": {
+          "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"
+          },
+          "dependencies": {
+            "normalize-path": {
+              "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"
+              }
+            }
+          }
+        },
+        "arr-diff": {
+          "version": "4.0.0",
+          "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
+          "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
+          "dev": true
+        },
+        "binary-extensions": {
+          "version": "1.13.1",
+          "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz",
+          "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==",
+          "dev": true
+        },
+        "braces": {
+          "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",
+            "extend-shallow": "^2.0.1",
+            "fill-range": "^4.0.0",
+            "isobject": "^3.0.1",
+            "repeat-element": "^1.1.2",
+            "snapdragon": "^0.8.1",
+            "snapdragon-node": "^2.0.1",
+            "split-string": "^3.0.2",
+            "to-regex": "^3.0.1"
+          }
+        },
+        "chokidar": {
+          "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",
+            "braces": "^2.3.2",
+            "fsevents": "^1.2.7",
+            "glob-parent": "^3.1.0",
+            "inherits": "^2.0.3",
+            "is-binary-path": "^1.0.0",
+            "is-glob": "^4.0.0",
+            "normalize-path": "^3.0.0",
+            "path-is-absolute": "^1.0.0",
+            "readdirp": "^2.2.1",
+            "upath": "^1.1.1"
+          }
+        },
+        "extend-shallow": {
+          "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"
+          }
+        },
+        "fill-range": {
+          "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",
+            "repeat-string": "^1.6.1",
+            "to-regex-range": "^2.1.0"
+          }
+        },
+        "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",
+            "nan": "^2.12.1"
+          }
+        },
+        "glob-parent": {
+          "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"
+          },
+          "dependencies": {
+            "is-glob": {
+              "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"
+              }
+            }
+          }
+        },
+        "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"
+          }
+        },
+        "is-extendable": {
+          "version": "0.1.1",
+          "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+          "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+          "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"
+          }
+        },
+        "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"
+          }
+        },
+        "kind-of": {
+          "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"
+          }
+        },
+        "micromatch": {
+          "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",
+            "braces": "^2.3.1",
+            "define-property": "^2.0.2",
+            "extend-shallow": "^3.0.2",
+            "extglob": "^2.0.4",
+            "fragment-cache": "^0.2.1",
+            "kind-of": "^6.0.2",
+            "nanomatch": "^1.2.9",
+            "object.pick": "^1.3.0",
+            "regex-not": "^1.0.0",
+            "snapdragon": "^0.8.1",
+            "to-regex": "^3.0.2"
+          },
+          "dependencies": {
+            "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"
+              }
+            },
+            "is-extendable": {
+              "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"
+              }
+            },
+            "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==",
+              "dev": true
+            }
+          }
+        },
+        "readdirp": {
+          "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",
+            "readable-stream": "^2.0.2"
+          }
+        },
+        "to-regex-range": {
+          "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"
+          }
+        }
+      }
+    },
+    "global-modules": {
+      "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",
+        "resolve-dir": "^1.0.0"
+      }
+    },
+    "global-prefix": {
+      "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",
+        "ini": "^1.3.4",
+        "is-windows": "^1.0.1",
+        "which": "^1.2.14"
+      }
+    },
+    "globby": {
+      "version": "12.0.2",
+      "resolved": "https://registry.npmjs.org/globby/-/globby-12.0.2.tgz",
+      "integrity": "sha512-lAsmb/5Lww4r7MM9nCCliDZVIKbZTavrsunAsHLr9oHthrZP1qi7/gAnHOsUs9bLvEt2vKVJhHmxuL7QbDuPdQ==",
+      "dev": true,
+      "requires": {
+        "array-union": "^3.0.1",
+        "dir-glob": "^3.0.1",
+        "fast-glob": "^3.2.7",
+        "ignore": "^5.1.8",
+        "merge2": "^1.4.1",
+        "slash": "^4.0.0"
+      },
+      "dependencies": {
+        "slash": {
+          "version": "4.0.0",
+          "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz",
+          "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==",
+          "dev": true
+        }
+      }
+    },
+    "glogg": {
+      "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"
+      }
+    },
+    "got": {
+      "version": "7.1.0",
+      "resolved": "https://registry.npmjs.org/got/-/got-7.1.0.tgz",
+      "integrity": "sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==",
+      "dev": true,
+      "requires": {
+        "decompress-response": "^3.2.0",
+        "duplexer3": "^0.1.4",
+        "get-stream": "^3.0.0",
+        "is-plain-obj": "^1.1.0",
+        "is-retry-allowed": "^1.0.0",
+        "is-stream": "^1.0.0",
+        "isurl": "^1.0.0-alpha5",
+        "lowercase-keys": "^1.0.0",
+        "p-cancelable": "^0.3.0",
+        "p-timeout": "^1.1.1",
+        "safe-buffer": "^5.0.1",
+        "timed-out": "^4.0.0",
+        "url-parse-lax": "^1.0.0",
+        "url-to-options": "^1.0.1"
+      },
+      "dependencies": {
+        "get-stream": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
+          "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=",
+          "dev": true
+        }
+      }
+    },
+    "graceful-fs": {
+      "version": "4.2.8",
+      "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz",
+      "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==",
+      "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",
+        "undertaker": "^1.2.1",
+        "vinyl-fs": "^3.0.0"
+      }
+    },
+    "gulp-clean": {
+      "version": "0.4.0",
+      "resolved": "https://registry.npmjs.org/gulp-clean/-/gulp-clean-0.4.0.tgz",
+      "integrity": "sha512-DARK8rNMo4lHOFLGTiHEJdf19GuoBDHqGUaypz+fOhrvOs3iFO7ntdYtdpNxv+AzSJBx/JfypF0yEj9ks1IStQ==",
+      "dev": true,
+      "requires": {
+        "fancy-log": "^1.3.2",
+        "plugin-error": "^0.1.2",
+        "rimraf": "^2.6.2",
+        "through2": "^2.0.3",
+        "vinyl": "^2.1.0"
+      }
+    },
+    "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",
+        "array-sort": "^1.0.0",
+        "color-support": "^1.1.3",
+        "concat-stream": "^1.6.0",
+        "copy-props": "^2.0.1",
+        "fancy-log": "^1.3.2",
+        "gulplog": "^1.0.0",
+        "interpret": "^1.4.0",
+        "isobject": "^3.0.1",
+        "liftoff": "^3.1.0",
+        "matchdep": "^2.0.0",
+        "mute-stdout": "^1.0.0",
+        "pretty-hrtime": "^1.0.0",
+        "replace-homedir": "^1.0.0",
+        "semver-greatest-satisfied-range": "^1.1.0",
+        "v8flags": "^3.2.0",
+        "yargs": "^7.1.0"
+      },
+      "dependencies": {
+        "ansi-regex": {
+          "version": "2.1.1",
+          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+          "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
+          "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",
+            "wrap-ansi": "^2.0.0"
+          }
+        },
+        "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==",
+          "dev": true
+        },
+        "is-fullwidth-code-point": {
+          "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"
+          }
+        },
+        "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=",
+          "dev": true
+        },
+        "string-width": {
+          "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"
+          }
+        },
+        "strip-ansi": {
+          "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"
+          }
+        },
+        "which-module": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz",
+          "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"
+          }
+        },
+        "y18n": {
+          "version": "3.2.2",
+          "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz",
+          "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==",
+          "dev": true
+        },
+        "yargs": {
+          "version": "7.1.2",
+          "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.2.tgz",
+          "integrity": "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==",
+          "dev": true,
+          "requires": {
+            "camelcase": "^3.0.0",
+            "cliui": "^3.2.0",
+            "decamelize": "^1.1.1",
+            "get-caller-file": "^1.0.1",
+            "os-locale": "^1.4.0",
+            "read-pkg-up": "^1.0.1",
+            "require-directory": "^2.1.1",
+            "require-main-filename": "^1.0.1",
+            "set-blocking": "^2.0.0",
+            "string-width": "^1.0.2",
+            "which-module": "^1.0.0",
+            "y18n": "^3.2.1",
+            "yargs-parser": "^5.0.1"
+          }
+        },
+        "yargs-parser": {
+          "version": "5.0.1",
+          "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz",
+          "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==",
+          "dev": true,
+          "requires": {
+            "camelcase": "^3.0.0",
+            "object.assign": "^4.1.0"
+          }
+        }
+      }
+    },
+    "gulp-file-sync": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/gulp-file-sync/-/gulp-file-sync-2.0.0.tgz",
+      "integrity": "sha512-SW+CzVvPKIZiAUCj89mRYZ/Nhr7C1LRcCc68ytBE8m/u7+NrZs224U7iL/ARqXWOfArRtBAg7VIF9pix2xcASg==",
+      "dev": true,
+      "requires": {
+        "crc": "^3.5.0",
+        "fancy-log": "^1.3.2",
+        "fs-extra": "^5.0.0",
+        "plugin-error": "^0.1.2"
+      },
+      "dependencies": {
+        "fs-extra": {
+          "version": "5.0.0",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-5.0.0.tgz",
+          "integrity": "sha512-66Pm4RYbjzdyeuqudYqhFiNBbCIuI9kgRqLPSHIlXHidW8NIQtVdkM1yeZ4lXwuhbTETv3EUGMNHAAw6hiundQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.1.2",
+            "jsonfile": "^4.0.0",
+            "universalify": "^0.1.0"
+          }
+        },
+        "jsonfile": {
+          "version": "4.0.0",
+          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
+          "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.1.6"
+          }
+        }
+      }
+    },
+    "gulp-imagemin": {
+      "version": "8.0.0",
+      "resolved": "https://registry.npmjs.org/gulp-imagemin/-/gulp-imagemin-8.0.0.tgz",
+      "integrity": "sha512-8Sl77dv+e/TTjtrOjzvv1XThqCKQ8O3cqH5gRwMbMeATkPY1TN06jtJtPohT8q19ptIx4og5fxhR8dLRfzUw9w==",
+      "dev": true,
+      "requires": {
+        "chalk": "^4.1.2",
+        "fancy-log": "^1.3.3",
+        "imagemin": "^8.0.1",
+        "imagemin-gifsicle": "^7.0.0",
+        "imagemin-mozjpeg": "^9.0.0",
+        "imagemin-optipng": "^8.0.0",
+        "imagemin-svgo": "^9.0.0",
+        "plugin-error": "^1.0.1",
+        "plur": "^4.0.0",
+        "pretty-bytes": "^5.6.0",
+        "through2-concurrent": "^2.0.0"
+      },
+      "dependencies": {
+        "arr-diff": {
+          "version": "4.0.0",
+          "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
+          "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
+          "dev": true
+        },
+        "arr-union": {
+          "version": "3.1.0",
+          "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
+          "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
+          "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"
+          }
+        },
+        "plugin-error": {
+          "version": "1.0.1",
+          "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz",
+          "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==",
+          "dev": true,
+          "requires": {
+            "ansi-colors": "^1.0.1",
+            "arr-diff": "^4.0.0",
+            "arr-union": "^3.1.0",
+            "extend-shallow": "^3.0.2"
+          }
+        }
+      }
+    },
+    "gulp-plumber": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/gulp-plumber/-/gulp-plumber-1.2.1.tgz",
+      "integrity": "sha512-mctAi9msEAG7XzW5ytDVZ9PxWMzzi1pS2rBH7lA095DhMa6KEXjm+St0GOCc567pJKJ/oCvosVAZEpAey0q2eQ==",
+      "dev": true,
+      "requires": {
+        "chalk": "^1.1.3",
+        "fancy-log": "^1.3.2",
+        "plugin-error": "^0.1.2",
+        "through2": "^2.0.3"
+      },
+      "dependencies": {
+        "ansi-regex": {
+          "version": "2.1.1",
+          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+          "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
+          "dev": true
+        },
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
+          "dev": true
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "dev": true,
+          "requires": {
+            "ansi-styles": "^2.2.1",
+            "escape-string-regexp": "^1.0.2",
+            "has-ansi": "^2.0.0",
+            "strip-ansi": "^3.0.0",
+            "supports-color": "^2.0.0"
+          }
+        },
+        "strip-ansi": {
+          "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"
+          }
+        },
+        "supports-color": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+          "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
+          "dev": true
+        }
+      }
+    },
+    "gulp-prettier": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/gulp-prettier/-/gulp-prettier-4.0.0.tgz",
+      "integrity": "sha512-REx99tBRRKJD7qLPaKpplReM9cq2vFvqhMbcUZtJEVjxGjb5Ji+gN9vi8bsM8UhnDV+l0Zrf5x6L4uZiDmvGFQ==",
+      "dev": true,
+      "requires": {
+        "plugin-error": "^1.0.1",
+        "prettier": "^2.0.0",
+        "through2": "^4.0.2"
+      },
+      "dependencies": {
+        "arr-diff": {
+          "version": "4.0.0",
+          "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
+          "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
+          "dev": true
+        },
+        "arr-union": {
+          "version": "3.1.0",
+          "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
+          "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
+          "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"
+          }
+        },
+        "plugin-error": {
+          "version": "1.0.1",
+          "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz",
+          "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==",
+          "dev": true,
+          "requires": {
+            "ansi-colors": "^1.0.1",
+            "arr-diff": "^4.0.0",
+            "arr-union": "^3.1.0",
+            "extend-shallow": "^3.0.2"
+          }
+        },
+        "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"
+          }
+        },
+        "through2": {
+          "version": "4.0.2",
+          "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz",
+          "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==",
+          "dev": true,
+          "requires": {
+            "readable-stream": "3"
+          }
+        }
+      }
+    },
+    "gulp-pug": {
+      "version": "5.0.0",
+      "resolved": "https://registry.npmjs.org/gulp-pug/-/gulp-pug-5.0.0.tgz",
+      "integrity": "sha512-NPnuj9hw35s78X/6Ho0vieKT/ipa0rh8cEAq3R4RWybZ7XEFPNez0O6kcxJipOLp3U6gjglsU1yiAR28bkuFkA==",
+      "dev": true,
+      "requires": {
+        "fancy-log": "^1.3.3",
+        "plugin-error": "^1.0.1",
+        "pug": "^3.0.2",
+        "replace-ext": "^2.0.0",
+        "through2": "^4.0.2",
+        "vinyl-contents": "^1.0.0"
+      },
+      "dependencies": {
+        "arr-diff": {
+          "version": "4.0.0",
+          "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
+          "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
+          "dev": true
+        },
+        "arr-union": {
+          "version": "3.1.0",
+          "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
+          "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
+          "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"
+          }
+        },
+        "plugin-error": {
+          "version": "1.0.1",
+          "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz",
+          "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==",
+          "dev": true,
+          "requires": {
+            "ansi-colors": "^1.0.1",
+            "arr-diff": "^4.0.0",
+            "arr-union": "^3.1.0",
+            "extend-shallow": "^3.0.2"
+          }
+        },
+        "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"
+          }
+        },
+        "through2": {
+          "version": "4.0.2",
+          "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz",
+          "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==",
+          "dev": true,
+          "requires": {
+            "readable-stream": "3"
+          }
+        }
+      }
+    },
+    "gulp-replace": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/gulp-replace/-/gulp-replace-1.1.3.tgz",
+      "integrity": "sha512-HcPHpWY4XdF8zxYkDODHnG2+7a3nD/Y8Mfu3aBgMiCFDW3X2GiOKXllsAmILcxe3KZT2BXoN18WrpEFm48KfLQ==",
+      "dev": true,
+      "requires": {
+        "@types/node": "^14.14.41",
+        "@types/vinyl": "^2.0.4",
+        "istextorbinary": "^3.0.0",
+        "replacestream": "^4.0.3",
+        "yargs-parser": ">=5.0.0-security.0"
+      }
+    },
+    "gulp-util": {
+      "version": "3.0.8",
+      "resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz",
+      "integrity": "sha1-AFTh50RQLifATBh8PsxQXdVLu08=",
+      "dev": true,
+      "requires": {
+        "array-differ": "^1.0.0",
+        "array-uniq": "^1.0.2",
+        "beeper": "^1.0.0",
+        "chalk": "^1.0.0",
+        "dateformat": "^2.0.0",
+        "fancy-log": "^1.1.0",
+        "gulplog": "^1.0.0",
+        "has-gulplog": "^0.1.0",
+        "lodash._reescape": "^3.0.0",
+        "lodash._reevaluate": "^3.0.0",
+        "lodash._reinterpolate": "^3.0.0",
+        "lodash.template": "^3.0.0",
+        "minimist": "^1.1.0",
+        "multipipe": "^0.1.2",
+        "object-assign": "^3.0.0",
+        "replace-ext": "0.0.1",
+        "through2": "^2.0.0",
+        "vinyl": "^0.5.0"
+      },
+      "dependencies": {
+        "ansi-regex": {
+          "version": "2.1.1",
+          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+          "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
+          "dev": true
+        },
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
+          "dev": true
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "dev": true,
+          "requires": {
+            "ansi-styles": "^2.2.1",
+            "escape-string-regexp": "^1.0.2",
+            "has-ansi": "^2.0.0",
+            "strip-ansi": "^3.0.0",
+            "supports-color": "^2.0.0"
+          }
+        },
+        "clone": {
+          "version": "1.0.4",
+          "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
+          "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=",
+          "dev": true
+        },
+        "clone-stats": {
+          "version": "0.0.1",
+          "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz",
+          "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=",
+          "dev": true
+        },
+        "replace-ext": {
+          "version": "0.0.1",
+          "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz",
+          "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=",
+          "dev": true
+        },
+        "strip-ansi": {
+          "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"
+          }
+        },
+        "supports-color": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+          "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
+          "dev": true
+        },
+        "vinyl": {
+          "version": "0.5.3",
+          "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz",
+          "integrity": "sha1-sEVbOPxeDPMNQyUTLkYZcMIJHN4=",
+          "dev": true,
+          "requires": {
+            "clone": "^1.0.0",
+            "clone-stats": "^0.0.1",
+            "replace-ext": "0.0.1"
+          }
+        }
+      }
+    },
+    "gulplog": {
+      "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"
+      }
+    },
+    "has": {
+      "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"
+      }
+    },
+    "has-ansi": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
+      "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
+      "dev": true,
+      "requires": {
+        "ansi-regex": "^2.0.0"
+      },
+      "dependencies": {
+        "ansi-regex": {
+          "version": "2.1.1",
+          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+          "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
+          "dev": true
+        }
+      }
+    },
+    "has-binary2": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/has-binary2/-/has-binary2-1.0.3.tgz",
+      "integrity": "sha512-G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw==",
+      "dev": true,
+      "requires": {
+        "isarray": "2.0.1"
+      },
+      "dependencies": {
+        "isarray": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz",
+          "integrity": "sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4=",
+          "dev": true
+        }
+      }
+    },
+    "has-cors": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz",
+      "integrity": "sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk=",
+      "dev": true
+    },
+    "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
+    },
+    "has-gulplog": {
+      "version": "0.1.0",
+      "resolved": "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz",
+      "integrity": "sha1-ZBTIKRNpfaUVkDl9r7EvIpZ4Ec4=",
+      "dev": true,
+      "requires": {
+        "sparkles": "^1.0.0"
+      }
+    },
+    "has-symbol-support-x": {
+      "version": "1.4.2",
+      "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz",
+      "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==",
+      "dev": true
+    },
+    "has-symbols": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz",
+      "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==",
+      "dev": true
+    },
+    "has-to-string-tag-x": {
+      "version": "1.4.1",
+      "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz",
+      "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==",
+      "dev": true,
+      "requires": {
+        "has-symbol-support-x": "^1.4.1"
+      }
+    },
+    "has-tostringtag": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
+      "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==",
+      "dev": true,
+      "requires": {
+        "has-symbols": "^1.0.2"
+      }
+    },
+    "has-value": {
+      "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",
+        "isobject": "^3.0.0"
+      }
+    },
+    "has-values": {
+      "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"
+      },
+      "dependencies": {
+        "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"
+          },
+          "dependencies": {
+            "kind-of": {
+              "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"
+              }
+            }
+          }
+        },
+        "kind-of": {
+          "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"
+          }
+        }
+      }
+    },
+    "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"
+      }
+    },
+    "hosted-git-info": {
+      "version": "2.8.9",
+      "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz",
+      "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==",
+      "dev": true
+    },
+    "http-cache-semantics": {
+      "version": "3.8.1",
+      "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz",
+      "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==",
+      "dev": true
+    },
+    "http-errors": {
+      "version": "1.7.3",
+      "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz",
+      "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==",
+      "dev": true,
+      "requires": {
+        "depd": "~1.1.2",
+        "inherits": "2.0.4",
+        "setprototypeof": "1.1.1",
+        "statuses": ">= 1.5.0 < 2",
+        "toidentifier": "1.0.0"
+      },
+      "dependencies": {
+        "statuses": {
+          "version": "1.5.0",
+          "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
+          "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=",
+          "dev": true
+        }
+      }
+    },
+    "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"
+      }
+    },
+    "human-signals": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
+      "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
+      "dev": true,
+      "optional": true
+    },
+    "iconv-lite": {
+      "version": "0.4.24",
+      "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+      "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+      "dev": true,
+      "requires": {
+        "safer-buffer": ">= 2.1.2 < 3"
+      }
+    },
+    "ieee754": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
+      "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
+      "dev": true
+    },
+    "ignore": {
+      "version": "5.1.8",
+      "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz",
+      "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==",
+      "dev": true
+    },
+    "imagemin": {
+      "version": "8.0.1",
+      "resolved": "https://registry.npmjs.org/imagemin/-/imagemin-8.0.1.tgz",
+      "integrity": "sha512-Q/QaPi+5HuwbZNtQRqUVk6hKacI6z9iWiCSQBisAv7uBynZwO7t1svkryKl7+iSQbkU/6t9DWnHz04cFs2WY7w==",
+      "dev": true,
+      "requires": {
+        "file-type": "^16.5.3",
+        "globby": "^12.0.0",
+        "graceful-fs": "^4.2.8",
+        "junk": "^3.1.0",
+        "p-pipe": "^4.0.0",
+        "replace-ext": "^2.0.0",
+        "slash": "^3.0.0"
+      }
+    },
+    "imagemin-gifsicle": {
+      "version": "7.0.0",
+      "resolved": "https://registry.npmjs.org/imagemin-gifsicle/-/imagemin-gifsicle-7.0.0.tgz",
+      "integrity": "sha512-LaP38xhxAwS3W8PFh4y5iQ6feoTSF+dTAXFRUEYQWYst6Xd+9L/iPk34QGgK/VO/objmIlmq9TStGfVY2IcHIA==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "execa": "^1.0.0",
+        "gifsicle": "^5.0.0",
+        "is-gif": "^3.0.0"
+      }
+    },
+    "imagemin-jpeg-recompress": {
+      "version": "7.0.0",
+      "resolved": "https://registry.npmjs.org/imagemin-jpeg-recompress/-/imagemin-jpeg-recompress-7.0.0.tgz",
+      "integrity": "sha512-8bO1I6Xncw82i1drrLL/IemZfdD8+oZImUFzMffHUP4YrvyJZpbS8QTC95yIQuuA0NLWDaGuB93sGN8z4T3DnA==",
+      "dev": true,
+      "requires": {
+        "exec-buffer": "^3.0.0",
+        "is-jpg": "^2.0.0",
+        "jpeg-recompress-bin": "^5.0.0"
+      }
+    },
+    "imagemin-mozjpeg": {
+      "version": "9.0.0",
+      "resolved": "https://registry.npmjs.org/imagemin-mozjpeg/-/imagemin-mozjpeg-9.0.0.tgz",
+      "integrity": "sha512-TwOjTzYqCFRgROTWpVSt5UTT0JeCuzF1jswPLKALDd89+PmrJ2PdMMYeDLYZ1fs9cTovI9GJd68mRSnuVt691w==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "execa": "^4.0.0",
+        "is-jpg": "^2.0.0",
+        "mozjpeg": "^7.0.0"
+      },
+      "dependencies": {
+        "cross-spawn": {
+          "version": "7.0.3",
+          "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
+          "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "path-key": "^3.1.0",
+            "shebang-command": "^2.0.0",
+            "which": "^2.0.1"
+          }
+        },
+        "execa": {
+          "version": "4.1.0",
+          "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz",
+          "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "cross-spawn": "^7.0.0",
+            "get-stream": "^5.0.0",
+            "human-signals": "^1.1.1",
+            "is-stream": "^2.0.0",
+            "merge-stream": "^2.0.0",
+            "npm-run-path": "^4.0.0",
+            "onetime": "^5.1.0",
+            "signal-exit": "^3.0.2",
+            "strip-final-newline": "^2.0.0"
+          }
+        },
+        "get-stream": {
+          "version": "5.2.0",
+          "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
+          "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "pump": "^3.0.0"
+          }
+        },
+        "human-signals": {
+          "version": "1.1.1",
+          "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz",
+          "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==",
+          "dev": true,
+          "optional": true
+        },
+        "is-stream": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
+          "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
+          "dev": true,
+          "optional": true
+        },
+        "npm-run-path": {
+          "version": "4.0.1",
+          "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
+          "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "path-key": "^3.0.0"
+          }
+        },
+        "path-key": {
+          "version": "3.1.1",
+          "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+          "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+          "dev": true,
+          "optional": true
+        },
+        "shebang-command": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+          "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "shebang-regex": "^3.0.0"
+          }
+        },
+        "shebang-regex": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+          "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+          "dev": true,
+          "optional": true
+        },
+        "which": {
+          "version": "2.0.2",
+          "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+          "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "isexe": "^2.0.0"
+          }
+        }
+      }
+    },
+    "imagemin-optipng": {
+      "version": "8.0.0",
+      "resolved": "https://registry.npmjs.org/imagemin-optipng/-/imagemin-optipng-8.0.0.tgz",
+      "integrity": "sha512-CUGfhfwqlPjAC0rm8Fy+R2DJDBGjzy2SkfyT09L8rasnF9jSoHFqJ1xxSZWK6HVPZBMhGPMxCTL70OgTHlLF5A==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "exec-buffer": "^3.0.0",
+        "is-png": "^2.0.0",
+        "optipng-bin": "^7.0.0"
+      }
+    },
+    "imagemin-pngquant": {
+      "version": "9.0.2",
+      "resolved": "https://registry.npmjs.org/imagemin-pngquant/-/imagemin-pngquant-9.0.2.tgz",
+      "integrity": "sha512-cj//bKo8+Frd/DM8l6Pg9pws1pnDUjgb7ae++sUX1kUVdv2nrngPykhiUOgFeE0LGY/LmUbCf4egCHC4YUcZSg==",
+      "dev": true,
+      "requires": {
+        "execa": "^4.0.0",
+        "is-png": "^2.0.0",
+        "is-stream": "^2.0.0",
+        "ow": "^0.17.0",
+        "pngquant-bin": "^6.0.0"
+      },
+      "dependencies": {
+        "cross-spawn": {
+          "version": "7.0.3",
+          "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
+          "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
+          "dev": true,
+          "requires": {
+            "path-key": "^3.1.0",
+            "shebang-command": "^2.0.0",
+            "which": "^2.0.1"
+          }
+        },
+        "execa": {
+          "version": "4.1.0",
+          "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz",
+          "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==",
+          "dev": true,
+          "requires": {
+            "cross-spawn": "^7.0.0",
+            "get-stream": "^5.0.0",
+            "human-signals": "^1.1.1",
+            "is-stream": "^2.0.0",
+            "merge-stream": "^2.0.0",
+            "npm-run-path": "^4.0.0",
+            "onetime": "^5.1.0",
+            "signal-exit": "^3.0.2",
+            "strip-final-newline": "^2.0.0"
+          }
+        },
+        "get-stream": {
+          "version": "5.2.0",
+          "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
+          "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
+          "dev": true,
+          "requires": {
+            "pump": "^3.0.0"
+          }
+        },
+        "human-signals": {
+          "version": "1.1.1",
+          "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz",
+          "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==",
+          "dev": true
+        },
+        "is-stream": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
+          "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
+          "dev": true
+        },
+        "npm-run-path": {
+          "version": "4.0.1",
+          "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
+          "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
+          "dev": true,
+          "requires": {
+            "path-key": "^3.0.0"
+          }
+        },
+        "path-key": {
+          "version": "3.1.1",
+          "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+          "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+          "dev": true
+        },
+        "shebang-command": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+          "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+          "dev": true,
+          "requires": {
+            "shebang-regex": "^3.0.0"
+          }
+        },
+        "shebang-regex": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+          "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+          "dev": true
+        },
+        "which": {
+          "version": "2.0.2",
+          "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+          "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+          "dev": true,
+          "requires": {
+            "isexe": "^2.0.0"
+          }
+        }
+      }
+    },
+    "imagemin-svgo": {
+      "version": "9.0.0",
+      "resolved": "https://registry.npmjs.org/imagemin-svgo/-/imagemin-svgo-9.0.0.tgz",
+      "integrity": "sha512-uNgXpKHd99C0WODkrJ8OO/3zW3qjgS4pW7hcuII0RcHN3tnKxDjJWcitdVC/TZyfIqSricU8WfrHn26bdSW62g==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "is-svg": "^4.2.1",
+        "svgo": "^2.1.0"
+      }
+    },
+    "immutable": {
+      "version": "3.8.2",
+      "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.8.2.tgz",
+      "integrity": "sha1-wkOZUUVbs5kT2vKBN28VMOEErfM=",
+      "dev": true
+    },
+    "import-lazy": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz",
+      "integrity": "sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==",
+      "dev": true
+    },
+    "indexof": {
+      "version": "0.0.1",
+      "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz",
+      "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=",
+      "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"
+      }
+    },
+    "inherits": {
+      "version": "2.0.4",
+      "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+      "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
+      "dev": true
+    },
+    "ini": {
+      "version": "1.3.8",
+      "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
+      "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
+      "dev": true
+    },
+    "interpret": {
+      "version": "1.4.0",
+      "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz",
+      "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==",
+      "dev": true
+    },
+    "into-stream": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz",
+      "integrity": "sha1-lvsKk2wSur1v8XUqF9BWFqvQlMY=",
+      "dev": true,
+      "requires": {
+        "from2": "^2.1.1",
+        "p-is-promise": "^1.1.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=",
+      "dev": true
+    },
+    "irregular-plurals": {
+      "version": "3.3.0",
+      "resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-3.3.0.tgz",
+      "integrity": "sha512-MVBLKUTangM3EfRPFROhmWQQKRDsrgI83J8GS3jXy+OwYqiR2/aoWndYQ5416jLE3uaGgLH7ncme3X9y09gZ3g==",
+      "dev": true
+    },
+    "is-absolute": {
+      "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-accessor-descriptor": {
+      "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"
+      },
+      "dependencies": {
+        "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==",
+          "dev": true
+        }
+      }
+    },
+    "is-arrayish": {
+      "version": "0.2.1",
+      "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
+      "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=",
+      "dev": true
+    },
+    "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,
+      "requires": {
+        "binary-extensions": "^2.0.0"
+      }
+    },
+    "is-buffer": {
+      "version": "1.1.6",
+      "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
+      "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
+      "dev": true
+    },
+    "is-core-module": {
+      "version": "2.8.0",
+      "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz",
+      "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==",
+      "dev": true,
+      "requires": {
+        "has": "^1.0.3"
+      }
+    },
+    "is-data-descriptor": {
+      "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"
+      },
+      "dependencies": {
+        "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==",
+          "dev": true
+        }
+      }
+    },
+    "is-descriptor": {
+      "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",
+        "kind-of": "^6.0.2"
+      },
+      "dependencies": {
+        "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==",
+          "dev": true
+        }
+      }
+    },
+    "is-expression": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/is-expression/-/is-expression-4.0.0.tgz",
+      "integrity": "sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==",
+      "dev": true,
+      "requires": {
+        "acorn": "^7.1.1",
+        "object-assign": "^4.1.1"
+      },
+      "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
+        }
+      }
+    },
+    "is-extendable": {
+      "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"
+      },
+      "dependencies": {
+        "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"
+          }
+        }
+      }
+    },
+    "is-extglob": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+      "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=",
+      "dev": true
+    },
+    "is-fullwidth-code-point": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+      "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+      "dev": true
+    },
+    "is-gif": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/is-gif/-/is-gif-3.0.0.tgz",
+      "integrity": "sha512-IqJ/jlbw5WJSNfwQ/lHEDXF8rxhRgF6ythk2oiEvhpG29F704eX9NO6TvPfMiq9DrbwgcEDnETYNcZDPewQoVw==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "file-type": "^10.4.0"
+      },
+      "dependencies": {
+        "file-type": {
+          "version": "10.11.0",
+          "resolved": "https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz",
+          "integrity": "sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==",
+          "dev": true,
+          "optional": true
+        }
+      }
+    },
+    "is-glob": {
+      "version": "4.0.3",
+      "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
+      "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+      "dev": true,
+      "requires": {
+        "is-extglob": "^2.1.1"
+      }
+    },
+    "is-jpg": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/is-jpg/-/is-jpg-2.0.0.tgz",
+      "integrity": "sha1-LhmX+m6RZuqsAkLarkQ0A+TvHZc=",
+      "dev": true
+    },
+    "is-natural-number": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz",
+      "integrity": "sha1-q5124dtM7VHjXeDHLr7PCfc0zeg=",
+      "dev": true
+    },
+    "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=",
+      "dev": true
+    },
+    "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
+    },
+    "is-number-like": {
+      "version": "1.0.8",
+      "resolved": "https://registry.npmjs.org/is-number-like/-/is-number-like-1.0.8.tgz",
+      "integrity": "sha512-6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA==",
+      "dev": true,
+      "requires": {
+        "lodash.isfinite": "^3.3.2"
+      }
+    },
+    "is-object": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz",
+      "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==",
+      "dev": true
+    },
+    "is-plain-obj": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
+      "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=",
+      "dev": true
+    },
+    "is-plain-object": {
+      "version": "5.0.0",
+      "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz",
+      "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==",
+      "dev": true
+    },
+    "is-png": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/is-png/-/is-png-2.0.0.tgz",
+      "integrity": "sha512-4KPGizaVGj2LK7xwJIz8o5B2ubu1D/vcQsgOGFEDlpcvgZHto4gBnyd0ig7Ws+67ixmwKoNmu0hYnpo6AaKb5g==",
+      "dev": true
+    },
+    "is-promise": {
+      "version": "2.2.2",
+      "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz",
+      "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==",
+      "dev": true
+    },
+    "is-regex": {
+      "version": "1.1.4",
+      "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
+      "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==",
+      "dev": true,
+      "requires": {
+        "call-bind": "^1.0.2",
+        "has-tostringtag": "^1.0.0"
+      }
+    },
+    "is-relative": {
+      "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-retry-allowed": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz",
+      "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==",
+      "dev": true
+    },
+    "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-svg": {
+      "version": "4.3.1",
+      "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-4.3.1.tgz",
+      "integrity": "sha512-h2CGs+yPUyvkgTJQS9cJzo9lYK06WgRiXUqBBHtglSzVKAuH4/oWsqk7LGfbSa1hGk9QcZ0SyQtVggvBA8LZXA==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "fast-xml-parser": "^3.19.0"
+      }
+    },
+    "is-unc-path": {
+      "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"
+      }
+    },
+    "is-utf8": {
+      "version": "0.2.1",
+      "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz",
+      "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=",
+      "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==",
+      "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=",
+      "dev": true
+    },
+    "isexe": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+      "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=",
+      "dev": true
+    },
+    "istextorbinary": {
+      "version": "3.3.0",
+      "resolved": "https://registry.npmjs.org/istextorbinary/-/istextorbinary-3.3.0.tgz",
+      "integrity": "sha512-Tvq1W6NAcZeJ8op+Hq7tdZ434rqnMx4CCZ7H0ff83uEloDvVbqAwaMTZcafKGJT0VHkYzuXUiCY4hlXQg6WfoQ==",
+      "dev": true,
+      "requires": {
+        "binaryextensions": "^2.2.0",
+        "textextensions": "^3.2.0"
+      }
+    },
+    "isurl": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz",
+      "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==",
+      "dev": true,
+      "requires": {
+        "has-to-string-tag-x": "^1.2.0",
+        "is-object": "^1.0.1"
+      }
+    },
+    "jpeg-recompress-bin": {
+      "version": "5.1.2",
+      "resolved": "https://registry.npmjs.org/jpeg-recompress-bin/-/jpeg-recompress-bin-5.1.2.tgz",
+      "integrity": "sha512-JjR7+gqmw1D1jYgicMpRi+t/Si13+xOMDuvYRSQFMkrKmnOwTqti+9U9ZHrbUnXjrulqK9Sjjq/Hn8E9UnOFpA==",
+      "dev": true,
+      "requires": {
+        "bin-build": "^3.0.0",
+        "bin-wrapper": "^4.1.0"
+      }
+    },
+    "js-stringify": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/js-stringify/-/js-stringify-1.0.2.tgz",
+      "integrity": "sha1-Fzb939lyTyijaCrcYjCufk6Weds=",
+      "dev": true
+    },
+    "json-buffer": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz",
+      "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=",
+      "dev": true
+    },
+    "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=",
+      "dev": true
+    },
+    "jsonfile": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz",
+      "integrity": "sha1-pezG9l9T9mLEQVx2daAzHQmS7GY=",
+      "dev": true,
+      "requires": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "jstransformer": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/jstransformer/-/jstransformer-1.0.0.tgz",
+      "integrity": "sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM=",
+      "dev": true,
+      "requires": {
+        "is-promise": "^2.0.0",
+        "promise": "^7.0.1"
+      }
+    },
+    "junk": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz",
+      "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==",
+      "dev": true
+    },
+    "just-debounce": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.1.0.tgz",
+      "integrity": "sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==",
+      "dev": true
+    },
+    "keyv": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz",
+      "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==",
+      "dev": true,
+      "requires": {
+        "json-buffer": "3.0.0"
+      }
+    },
+    "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==",
+      "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"
+      }
+    },
+    "lazystream": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz",
+      "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==",
+      "dev": true,
+      "requires": {
+        "readable-stream": "^2.0.5"
+      }
+    },
+    "lcid": {
+      "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"
+      }
+    },
+    "lead": {
+      "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"
+      }
+    },
+    "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",
+        "fined": "^1.0.1",
+        "flagged-respawn": "^1.0.0",
+        "is-plain-object": "^2.0.4",
+        "object.map": "^1.0.0",
+        "rechoir": "^0.6.2",
+        "resolve": "^1.1.7"
+      },
+      "dependencies": {
+        "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"
+          }
+        }
+      }
+    },
+    "limiter": {
+      "version": "1.1.5",
+      "resolved": "https://registry.npmjs.org/limiter/-/limiter-1.1.5.tgz",
+      "integrity": "sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==",
+      "dev": true
+    },
+    "load-json-file": {
+      "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",
+        "pify": "^2.0.0",
+        "pinkie-promise": "^2.0.0",
+        "strip-bom": "^2.0.0"
+      },
+      "dependencies": {
+        "pify": {
+          "version": "2.3.0",
+          "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+          "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+          "dev": true
+        }
+      }
+    },
+    "localtunnel": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/localtunnel/-/localtunnel-2.0.2.tgz",
+      "integrity": "sha512-n418Cn5ynvJd7m/N1d9WVJISLJF/ellZnfsLnx8WBWGzxv/ntNcFkJ1o6se5quUhCplfLGBNL5tYHiq5WF3Nug==",
+      "dev": true,
+      "requires": {
+        "axios": "0.21.4",
+        "debug": "4.3.2",
+        "openurl": "1.1.1",
+        "yargs": "17.1.1"
+      },
+      "dependencies": {
+        "cliui": {
+          "version": "7.0.4",
+          "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
+          "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
+          "dev": true,
+          "requires": {
+            "string-width": "^4.2.0",
+            "strip-ansi": "^6.0.0",
+            "wrap-ansi": "^7.0.0"
+          }
+        },
+        "debug": {
+          "version": "4.3.2",
+          "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz",
+          "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==",
+          "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
+        },
+        "wrap-ansi": {
+          "version": "7.0.0",
+          "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+          "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+          "dev": true,
+          "requires": {
+            "ansi-styles": "^4.0.0",
+            "string-width": "^4.1.0",
+            "strip-ansi": "^6.0.0"
+          }
+        },
+        "y18n": {
+          "version": "5.0.8",
+          "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
+          "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
+          "dev": true
+        },
+        "yargs": {
+          "version": "17.1.1",
+          "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.1.1.tgz",
+          "integrity": "sha512-c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ==",
+          "dev": true,
+          "requires": {
+            "cliui": "^7.0.2",
+            "escalade": "^3.1.1",
+            "get-caller-file": "^2.0.5",
+            "require-directory": "^2.1.1",
+            "string-width": "^4.2.0",
+            "y18n": "^5.0.5",
+            "yargs-parser": "^20.2.2"
+          }
+        }
+      }
+    },
+    "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"
+      }
+    },
+    "lodash": {
+      "version": "4.17.21",
+      "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
+      "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
+      "dev": true
+    },
+    "lodash._basecopy": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz",
+      "integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=",
+      "dev": true
+    },
+    "lodash._basetostring": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz",
+      "integrity": "sha1-0YYdh3+CSlL2aYMtyvPuFVZqB9U=",
+      "dev": true
+    },
+    "lodash._basevalues": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz",
+      "integrity": "sha1-W3dXYoAr3j0yl1A+JjAIIP32Ybc=",
+      "dev": true
+    },
+    "lodash._getnative": {
+      "version": "3.9.1",
+      "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz",
+      "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=",
+      "dev": true
+    },
+    "lodash._isiterateecall": {
+      "version": "3.0.9",
+      "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz",
+      "integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=",
+      "dev": true
+    },
+    "lodash._reescape": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz",
+      "integrity": "sha1-Kx1vXf4HyKNVdT5fJ/rH8c3hYWo=",
+      "dev": true
+    },
+    "lodash._reevaluate": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz",
+      "integrity": "sha1-WLx0xAZklTrgsSTYBpltrKQx4u0=",
+      "dev": true
+    },
+    "lodash._reinterpolate": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz",
+      "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=",
+      "dev": true
+    },
+    "lodash._root": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz",
+      "integrity": "sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI=",
+      "dev": true
+    },
+    "lodash.escape": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz",
+      "integrity": "sha1-mV7g3BjBtIzJLv+ucaEKq1tIdpg=",
+      "dev": true,
+      "requires": {
+        "lodash._root": "^3.0.0"
+      }
+    },
+    "lodash.isarguments": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz",
+      "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=",
+      "dev": true
+    },
+    "lodash.isarray": {
+      "version": "3.0.4",
+      "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz",
+      "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=",
+      "dev": true
+    },
+    "lodash.isfinite": {
+      "version": "3.3.2",
+      "resolved": "https://registry.npmjs.org/lodash.isfinite/-/lodash.isfinite-3.3.2.tgz",
+      "integrity": "sha1-+4m2WpqAKBgz8LdHizpRBPiY67M=",
+      "dev": true
+    },
+    "lodash.keys": {
+      "version": "3.1.2",
+      "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz",
+      "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=",
+      "dev": true,
+      "requires": {
+        "lodash._getnative": "^3.0.0",
+        "lodash.isarguments": "^3.0.0",
+        "lodash.isarray": "^3.0.0"
+      }
+    },
+    "lodash.restparam": {
+      "version": "3.6.1",
+      "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz",
+      "integrity": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=",
+      "dev": true
+    },
+    "lodash.template": {
+      "version": "3.6.2",
+      "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz",
+      "integrity": "sha1-+M3sxhaaJVvpCYrosMU9N4kx0U8=",
+      "dev": true,
+      "requires": {
+        "lodash._basecopy": "^3.0.0",
+        "lodash._basetostring": "^3.0.0",
+        "lodash._basevalues": "^3.0.0",
+        "lodash._isiterateecall": "^3.0.0",
+        "lodash._reinterpolate": "^3.0.0",
+        "lodash.escape": "^3.0.0",
+        "lodash.keys": "^3.0.0",
+        "lodash.restparam": "^3.0.0",
+        "lodash.templatesettings": "^3.0.0"
+      }
+    },
+    "lodash.templatesettings": {
+      "version": "3.1.1",
+      "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz",
+      "integrity": "sha1-+zB4RHU7Zrnxr6VOJix0UwfbqOU=",
+      "dev": true,
+      "requires": {
+        "lodash._reinterpolate": "^3.0.0",
+        "lodash.escape": "^3.0.0"
+      }
+    },
+    "lowercase-keys": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz",
+      "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==",
+      "dev": true
+    },
+    "lru-cache": {
+      "version": "4.1.5",
+      "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz",
+      "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==",
+      "dev": true,
+      "requires": {
+        "pseudomap": "^1.0.2",
+        "yallist": "^2.1.2"
+      }
+    },
+    "make-dir": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz",
+      "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==",
+      "dev": true,
+      "requires": {
+        "pify": "^3.0.0"
+      },
+      "dependencies": {
+        "pify": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+          "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
+          "dev": true
+        }
+      }
+    },
+    "make-iterator": {
+      "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"
+      },
+      "dependencies": {
+        "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==",
+          "dev": true
+        }
+      }
+    },
+    "map-cache": {
+      "version": "0.2.2",
+      "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
+      "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=",
+      "dev": true
+    },
+    "map-visit": {
+      "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"
+      }
+    },
+    "matchdep": {
+      "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",
+        "resolve": "^1.4.0",
+        "stack-trace": "0.0.10"
+      },
+      "dependencies": {
+        "arr-diff": {
+          "version": "4.0.0",
+          "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
+          "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
+          "dev": true
+        },
+        "braces": {
+          "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",
+            "extend-shallow": "^2.0.1",
+            "fill-range": "^4.0.0",
+            "isobject": "^3.0.1",
+            "repeat-element": "^1.1.2",
+            "snapdragon": "^0.8.1",
+            "snapdragon-node": "^2.0.1",
+            "split-string": "^3.0.2",
+            "to-regex": "^3.0.1"
+          },
+          "dependencies": {
+            "extend-shallow": {
+              "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"
+              }
+            },
+            "is-extendable": {
+              "version": "0.1.1",
+              "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+              "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+              "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"
+          }
+        },
+        "fill-range": {
+          "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",
+            "repeat-string": "^1.6.1",
+            "to-regex-range": "^2.1.0"
+          },
+          "dependencies": {
+            "extend-shallow": {
+              "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"
+              }
+            },
+            "is-extendable": {
+              "version": "0.1.1",
+              "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+              "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+              "dev": true
+            }
+          }
+        },
+        "findup-sync": {
+          "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",
+            "micromatch": "^3.0.4",
+            "resolve-dir": "^1.0.1"
+          }
+        },
+        "is-glob": {
+          "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"
+          }
+        },
+        "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"
+          },
+          "dependencies": {
+            "kind-of": {
+              "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"
+              }
+            }
+          }
+        },
+        "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==",
+          "dev": true
+        },
+        "micromatch": {
+          "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",
+            "braces": "^2.3.1",
+            "define-property": "^2.0.2",
+            "extend-shallow": "^3.0.2",
+            "extglob": "^2.0.4",
+            "fragment-cache": "^0.2.1",
+            "kind-of": "^6.0.2",
+            "nanomatch": "^1.2.9",
+            "object.pick": "^1.3.0",
+            "regex-not": "^1.0.0",
+            "snapdragon": "^0.8.1",
+            "to-regex": "^3.0.2"
+          }
+        },
+        "to-regex-range": {
+          "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"
+          }
+        }
+      }
+    },
+    "mdn-data": {
+      "version": "2.0.14",
+      "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz",
+      "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==",
+      "dev": true,
+      "optional": 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
+    },
+    "merge2": {
+      "version": "1.4.1",
+      "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
+      "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
+      "dev": true
+    },
+    "micromatch": {
+      "version": "4.0.4",
+      "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz",
+      "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==",
+      "dev": true,
+      "requires": {
+        "braces": "^3.0.1",
+        "picomatch": "^2.2.3"
+      }
+    },
+    "mime": {
+      "version": "1.4.1",
+      "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz",
+      "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==",
+      "dev": true
+    },
+    "mime-db": {
+      "version": "1.50.0",
+      "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.50.0.tgz",
+      "integrity": "sha512-9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A==",
+      "dev": true
+    },
+    "mime-types": {
+      "version": "2.1.33",
+      "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.33.tgz",
+      "integrity": "sha512-plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g==",
+      "dev": true,
+      "requires": {
+        "mime-db": "1.50.0"
+      }
+    },
+    "mimic-fn": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
+      "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
+      "dev": true
+    },
+    "mimic-response": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz",
+      "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==",
+      "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"
+      }
+    },
+    "minimist": {
+      "version": "1.2.5",
+      "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
+      "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
+      "dev": true
+    },
+    "mitt": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz",
+      "integrity": "sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==",
+      "dev": true
+    },
+    "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"
+      }
+    },
+    "mozjpeg": {
+      "version": "7.1.1",
+      "resolved": "https://registry.npmjs.org/mozjpeg/-/mozjpeg-7.1.1.tgz",
+      "integrity": "sha512-iIDxWvzhWvLC9mcRJ1uSkiKaj4drF58oCqK2bITm5c2Jt6cJ8qQjSSru2PCaysG+hLIinryj8mgz5ZJzOYTv1A==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "bin-build": "^3.0.0",
+        "bin-wrapper": "^4.0.0"
+      }
+    },
+    "ms": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+      "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+      "dev": true
+    },
+    "multipipe": {
+      "version": "0.1.2",
+      "resolved": "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz",
+      "integrity": "sha1-Ko8t33Du1WTf8tV/HhoTfZ8FB4s=",
+      "dev": true,
+      "requires": {
+        "duplexer2": "0.0.2"
+      }
+    },
+    "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==",
+      "dev": true
+    },
+    "nan": {
+      "version": "2.15.0",
+      "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz",
+      "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==",
+      "dev": true,
+      "optional": 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",
+        "define-property": "^2.0.2",
+        "extend-shallow": "^3.0.2",
+        "fragment-cache": "^0.2.1",
+        "is-windows": "^1.0.2",
+        "kind-of": "^6.0.2",
+        "object.pick": "^1.3.0",
+        "regex-not": "^1.0.0",
+        "snapdragon": "^0.8.1",
+        "to-regex": "^3.0.1"
+      },
+      "dependencies": {
+        "arr-diff": {
+          "version": "4.0.0",
+          "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
+          "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
+          "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"
+          }
+        },
+        "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==",
+          "dev": true
+        }
+      }
+    },
+    "negotiator": {
+      "version": "0.6.2",
+      "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz",
+      "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==",
+      "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=",
+      "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
+    },
+    "normalize-package-data": {
+      "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",
+        "semver": "2 || 3 || 4 || 5",
+        "validate-npm-package-license": "^3.0.1"
+      }
+    },
+    "normalize-path": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
+      "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
+      "dev": true
+    },
+    "normalize-url": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz",
+      "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==",
+      "dev": true,
+      "requires": {
+        "prepend-http": "^2.0.0",
+        "query-string": "^5.0.1",
+        "sort-keys": "^2.0.0"
+      },
+      "dependencies": {
+        "prepend-http": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz",
+          "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=",
+          "dev": true
+        },
+        "sort-keys": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz",
+          "integrity": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=",
+          "dev": true,
+          "requires": {
+            "is-plain-obj": "^1.0.0"
+          }
+        }
+      }
+    },
+    "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"
+      }
+    },
+    "npm-conf": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz",
+      "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==",
+      "dev": true,
+      "requires": {
+        "config-chain": "^1.1.11",
+        "pify": "^3.0.0"
+      },
+      "dependencies": {
+        "pify": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+          "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
+          "dev": true
+        }
+      }
+    },
+    "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"
+      }
+    },
+    "nth-check": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz",
+      "integrity": "sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==",
+      "dev": true,
+      "optional": 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=",
+      "dev": true
+    },
+    "object-assign": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz",
+      "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=",
+      "dev": true
+    },
+    "object-copy": {
+      "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",
+        "kind-of": "^3.0.3"
+      },
+      "dependencies": {
+        "define-property": {
+          "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"
+          }
+        },
+        "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"
+          }
+        },
+        "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"
+          }
+        },
+        "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",
+            "kind-of": "^5.0.0"
+          },
+          "dependencies": {
+            "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==",
+              "dev": true
+            }
+          }
+        },
+        "kind-of": {
+          "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"
+          }
+        }
+      }
+    },
+    "object-keys": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
+      "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"
+      }
+    },
+    "object.assign": {
+      "version": "4.1.2",
+      "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz",
+      "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==",
+      "dev": true,
+      "requires": {
+        "call-bind": "^1.0.0",
+        "define-properties": "^1.1.3",
+        "has-symbols": "^1.0.1",
+        "object-keys": "^1.1.1"
+      }
+    },
+    "object.defaults": {
+      "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",
+        "for-own": "^1.0.0",
+        "isobject": "^3.0.0"
+      }
+    },
+    "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"
+      }
+    },
+    "object.pick": {
+      "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"
+      }
+    },
+    "object.reduce": {
+      "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"
+      }
+    },
+    "on-finished": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
+      "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=",
+      "dev": true,
+      "requires": {
+        "ee-first": "1.1.1"
+      }
+    },
+    "once": {
+      "version": "1.4.0",
+      "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
+      "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
+      "dev": true,
+      "requires": {
+        "wrappy": "1"
+      }
+    },
+    "onetime": {
+      "version": "5.1.2",
+      "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
+      "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
+      "dev": true,
+      "requires": {
+        "mimic-fn": "^2.1.0"
+      }
+    },
+    "openurl": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/openurl/-/openurl-1.1.1.tgz",
+      "integrity": "sha1-OHW0sO96UsFW8NtB1GCduw+Us4c=",
+      "dev": true
+    },
+    "opn": {
+      "version": "5.3.0",
+      "resolved": "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz",
+      "integrity": "sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==",
+      "dev": true,
+      "requires": {
+        "is-wsl": "^1.1.0"
+      }
+    },
+    "optipng-bin": {
+      "version": "7.0.1",
+      "resolved": "https://registry.npmjs.org/optipng-bin/-/optipng-bin-7.0.1.tgz",
+      "integrity": "sha512-W99mpdW7Nt2PpFiaO+74pkht7KEqkXkeRomdWXfEz3SALZ6hns81y/pm1dsGZ6ItUIfchiNIP6ORDr1zETU1jA==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "bin-build": "^3.0.0",
+        "bin-wrapper": "^4.0.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"
+      }
+    },
+    "os-filter-obj": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz",
+      "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==",
+      "dev": true,
+      "requires": {
+        "arch": "^2.1.0"
+      }
+    },
+    "os-locale": {
+      "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"
+      }
+    },
+    "ow": {
+      "version": "0.17.0",
+      "resolved": "https://registry.npmjs.org/ow/-/ow-0.17.0.tgz",
+      "integrity": "sha512-i3keDzDQP5lWIe4oODyDFey1qVrq2hXKTuTH2VpqwpYtzPiKZt2ziRI4NBQmgW40AnV5Euz17OyWweCb+bNEQA==",
+      "dev": true,
+      "requires": {
+        "type-fest": "^0.11.0"
+      }
+    },
+    "p-cancelable": {
+      "version": "0.3.0",
+      "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz",
+      "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==",
+      "dev": true
+    },
+    "p-event": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/p-event/-/p-event-1.3.0.tgz",
+      "integrity": "sha1-jmtPT2XHK8W2/ii3XtqHT5akoIU=",
+      "dev": true,
+      "requires": {
+        "p-timeout": "^1.1.1"
+      }
+    },
+    "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-is-promise": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz",
+      "integrity": "sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4=",
+      "dev": true
+    },
+    "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"
+      }
+    },
+    "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"
+      }
+    },
+    "p-map-series": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/p-map-series/-/p-map-series-1.0.0.tgz",
+      "integrity": "sha1-v5j+V1cFZYqeE1G++4WuTB8Hvco=",
+      "dev": true,
+      "requires": {
+        "p-reduce": "^1.0.0"
+      }
+    },
+    "p-pipe": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/p-pipe/-/p-pipe-4.0.0.tgz",
+      "integrity": "sha512-HkPfFklpZQPUKBFXzKFB6ihLriIHxnmuQdK9WmLDwe4hf2PdhhfWT/FJa+pc3bA1ywvKXtedxIRmd4Y7BTXE4w==",
+      "dev": true
+    },
+    "p-reduce": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz",
+      "integrity": "sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=",
+      "dev": true
+    },
+    "p-timeout": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz",
+      "integrity": "sha1-XrOzU7f86Z8QGhA4iAuwVOu+o4Y=",
+      "dev": true,
+      "requires": {
+        "p-finally": "^1.0.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
+    },
+    "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"
+      }
+    },
+    "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",
+        "path-root": "^0.1.1"
+      }
+    },
+    "parse-json": {
+      "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"
+      }
+    },
+    "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==",
+      "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=",
+      "dev": true
+    },
+    "parseqs": {
+      "version": "0.0.6",
+      "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.6.tgz",
+      "integrity": "sha512-jeAGzMDbfSHHA091hr0r31eYfTig+29g3GKKE/PPbEQ65X0lmMwlEoqmhzu0iztID5uJpZsFlUPDP8ThPL7M8w==",
+      "dev": true
+    },
+    "parseuri": {
+      "version": "0.0.6",
+      "resolved": "https://registry.npmjs.org/parseuri/-/parseuri-0.0.6.tgz",
+      "integrity": "sha512-AUjen8sAkGgao7UyCX6Ahv0gIK2fABKmYjvP4xmy5JaKvcbTRueIqIPHLAfq30xJddqSE033IOMUSOMCcK3Sow==",
+      "dev": true
+    },
+    "parseurl": {
+      "version": "1.3.3",
+      "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
+      "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
+      "dev": true
+    },
+    "pascalcase": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz",
+      "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=",
+      "dev": true
+    },
+    "path-dirname": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz",
+      "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=",
+      "dev": true
+    },
+    "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
+    },
+    "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=",
+      "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.7",
+      "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
+      "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
+      "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"
+      }
+    },
+    "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=",
+      "dev": true
+    },
+    "path-type": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
+      "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
+      "dev": true
+    },
+    "peek-readable": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/peek-readable/-/peek-readable-4.0.1.tgz",
+      "integrity": "sha512-7qmhptnR0WMSpxT5rMHG9bW/mYSR1uqaPFj2MHvT+y/aOUu6msJijpKt5SkTDKySwg65OWG2JwTMBlgcbwMHrQ==",
+      "dev": true
+    },
+    "pend": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
+      "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=",
+      "dev": true
+    },
+    "picocolors": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
+      "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==",
+      "dev": true,
+      "optional": true
+    },
+    "picomatch": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz",
+      "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==",
+      "dev": true
+    },
+    "pify": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
+      "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
+      "dev": true
+    },
+    "pinkie": {
+      "version": "2.0.4",
+      "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz",
+      "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"
+      }
+    },
+    "plugin-error": {
+      "version": "0.1.2",
+      "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-0.1.2.tgz",
+      "integrity": "sha1-O5uzM1zPAPQl4HQ34ZJ2ln2kes4=",
+      "dev": true,
+      "requires": {
+        "ansi-cyan": "^0.1.1",
+        "ansi-red": "^0.1.1",
+        "arr-diff": "^1.0.1",
+        "arr-union": "^2.0.1",
+        "extend-shallow": "^1.1.2"
+      }
+    },
+    "plur": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/plur/-/plur-4.0.0.tgz",
+      "integrity": "sha512-4UGewrYgqDFw9vV6zNV+ADmPAUAfJPKtGvb/VdpQAx25X5f3xXdGdyOEVFwkl8Hl/tl7+xbeHqSEM+D5/TirUg==",
+      "dev": true,
+      "requires": {
+        "irregular-plurals": "^3.2.0"
+      }
+    },
+    "pngquant-bin": {
+      "version": "6.0.1",
+      "resolved": "https://registry.npmjs.org/pngquant-bin/-/pngquant-bin-6.0.1.tgz",
+      "integrity": "sha512-Q3PUyolfktf+hYio6wsg3SanQzEU/v8aICg/WpzxXcuCMRb7H2Q81okfpcEztbMvw25ILjd3a87doj2N9kvbpQ==",
+      "dev": true,
+      "requires": {
+        "bin-build": "^3.0.0",
+        "bin-wrapper": "^4.0.1",
+        "execa": "^4.0.0"
+      },
+      "dependencies": {
+        "cross-spawn": {
+          "version": "7.0.3",
+          "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
+          "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
+          "dev": true,
+          "requires": {
+            "path-key": "^3.1.0",
+            "shebang-command": "^2.0.0",
+            "which": "^2.0.1"
+          }
+        },
+        "execa": {
+          "version": "4.1.0",
+          "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz",
+          "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==",
+          "dev": true,
+          "requires": {
+            "cross-spawn": "^7.0.0",
+            "get-stream": "^5.0.0",
+            "human-signals": "^1.1.1",
+            "is-stream": "^2.0.0",
+            "merge-stream": "^2.0.0",
+            "npm-run-path": "^4.0.0",
+            "onetime": "^5.1.0",
+            "signal-exit": "^3.0.2",
+            "strip-final-newline": "^2.0.0"
+          }
+        },
+        "get-stream": {
+          "version": "5.2.0",
+          "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
+          "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
+          "dev": true,
+          "requires": {
+            "pump": "^3.0.0"
+          }
+        },
+        "human-signals": {
+          "version": "1.1.1",
+          "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz",
+          "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==",
+          "dev": true
+        },
+        "is-stream": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
+          "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
+          "dev": true
+        },
+        "npm-run-path": {
+          "version": "4.0.1",
+          "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
+          "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
+          "dev": true,
+          "requires": {
+            "path-key": "^3.0.0"
+          }
+        },
+        "path-key": {
+          "version": "3.1.1",
+          "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+          "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+          "dev": true
+        },
+        "shebang-command": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+          "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+          "dev": true,
+          "requires": {
+            "shebang-regex": "^3.0.0"
+          }
+        },
+        "shebang-regex": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+          "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+          "dev": true
+        },
+        "which": {
+          "version": "2.0.2",
+          "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+          "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+          "dev": true,
+          "requires": {
+            "isexe": "^2.0.0"
+          }
+        }
+      }
+    },
+    "portscanner": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/portscanner/-/portscanner-2.1.1.tgz",
+      "integrity": "sha1-6rtAnk3iSVD1oqUW01rnaTQ/u5Y=",
+      "dev": true,
+      "requires": {
+        "async": "1.5.2",
+        "is-number-like": "^1.0.3"
+      }
+    },
+    "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=",
+      "dev": true
+    },
+    "prepend-http": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz",
+      "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=",
+      "dev": true
+    },
+    "prettier": {
+      "version": "2.4.1",
+      "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.4.1.tgz",
+      "integrity": "sha512-9fbDAXSBcc6Bs1mZrDYb3XKzDLm4EXXL9sC1LqKP5rZkT6KRr/rf9amVUcODVXgguK/isJz0d0hP72WeaKWsvA==",
+      "dev": true
+    },
+    "pretty-bytes": {
+      "version": "5.6.0",
+      "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz",
+      "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==",
+      "dev": true
+    },
+    "pretty-hrtime": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz",
+      "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=",
+      "dev": true
+    },
+    "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==",
+      "dev": true
+    },
+    "promise": {
+      "version": "7.3.1",
+      "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz",
+      "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==",
+      "dev": true,
+      "requires": {
+        "asap": "~2.0.3"
+      }
+    },
+    "proto-list": {
+      "version": "1.2.4",
+      "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz",
+      "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=",
+      "dev": true
+    },
+    "pseudomap": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz",
+      "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=",
+      "dev": true
+    },
+    "pug": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/pug/-/pug-3.0.2.tgz",
+      "integrity": "sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw==",
+      "dev": true,
+      "requires": {
+        "pug-code-gen": "^3.0.2",
+        "pug-filters": "^4.0.0",
+        "pug-lexer": "^5.0.1",
+        "pug-linker": "^4.0.0",
+        "pug-load": "^3.0.0",
+        "pug-parser": "^6.0.0",
+        "pug-runtime": "^3.0.1",
+        "pug-strip-comments": "^2.0.0"
+      }
+    },
+    "pug-attrs": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/pug-attrs/-/pug-attrs-3.0.0.tgz",
+      "integrity": "sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==",
+      "dev": true,
+      "requires": {
+        "constantinople": "^4.0.1",
+        "js-stringify": "^1.0.2",
+        "pug-runtime": "^3.0.0"
+      }
+    },
+    "pug-code-gen": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/pug-code-gen/-/pug-code-gen-3.0.2.tgz",
+      "integrity": "sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg==",
+      "dev": true,
+      "requires": {
+        "constantinople": "^4.0.1",
+        "doctypes": "^1.1.0",
+        "js-stringify": "^1.0.2",
+        "pug-attrs": "^3.0.0",
+        "pug-error": "^2.0.0",
+        "pug-runtime": "^3.0.0",
+        "void-elements": "^3.1.0",
+        "with": "^7.0.0"
+      }
+    },
+    "pug-error": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/pug-error/-/pug-error-2.0.0.tgz",
+      "integrity": "sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ==",
+      "dev": true
+    },
+    "pug-filters": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/pug-filters/-/pug-filters-4.0.0.tgz",
+      "integrity": "sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==",
+      "dev": true,
+      "requires": {
+        "constantinople": "^4.0.1",
+        "jstransformer": "1.0.0",
+        "pug-error": "^2.0.0",
+        "pug-walk": "^2.0.0",
+        "resolve": "^1.15.1"
+      }
+    },
+    "pug-lexer": {
+      "version": "5.0.1",
+      "resolved": "https://registry.npmjs.org/pug-lexer/-/pug-lexer-5.0.1.tgz",
+      "integrity": "sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==",
+      "dev": true,
+      "requires": {
+        "character-parser": "^2.2.0",
+        "is-expression": "^4.0.0",
+        "pug-error": "^2.0.0"
+      }
+    },
+    "pug-linker": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/pug-linker/-/pug-linker-4.0.0.tgz",
+      "integrity": "sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==",
+      "dev": true,
+      "requires": {
+        "pug-error": "^2.0.0",
+        "pug-walk": "^2.0.0"
+      }
+    },
+    "pug-load": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/pug-load/-/pug-load-3.0.0.tgz",
+      "integrity": "sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==",
+      "dev": true,
+      "requires": {
+        "object-assign": "^4.1.1",
+        "pug-walk": "^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
+        }
+      }
+    },
+    "pug-parser": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/pug-parser/-/pug-parser-6.0.0.tgz",
+      "integrity": "sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==",
+      "dev": true,
+      "requires": {
+        "pug-error": "^2.0.0",
+        "token-stream": "1.0.0"
+      }
+    },
+    "pug-runtime": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/pug-runtime/-/pug-runtime-3.0.1.tgz",
+      "integrity": "sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg==",
+      "dev": true
+    },
+    "pug-strip-comments": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/pug-strip-comments/-/pug-strip-comments-2.0.0.tgz",
+      "integrity": "sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==",
+      "dev": true,
+      "requires": {
+        "pug-error": "^2.0.0"
+      }
+    },
+    "pug-walk": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/pug-walk/-/pug-walk-2.0.0.tgz",
+      "integrity": "sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==",
+      "dev": true
+    },
+    "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"
+      }
+    },
+    "pumpify": {
+      "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",
+        "pump": "^2.0.0"
+      },
+      "dependencies": {
+        "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"
+          }
+        }
+      }
+    },
+    "qs": {
+      "version": "6.2.3",
+      "resolved": "https://registry.npmjs.org/qs/-/qs-6.2.3.tgz",
+      "integrity": "sha1-HPyyXBCpsrSDBT/zn138kjOQjP4=",
+      "dev": true
+    },
+    "query-string": {
+      "version": "5.1.1",
+      "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz",
+      "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==",
+      "dev": true,
+      "requires": {
+        "decode-uri-component": "^0.2.0",
+        "object-assign": "^4.1.0",
+        "strict-uri-encode": "^1.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
+        }
+      }
+    },
+    "queue-microtask": {
+      "version": "1.2.3",
+      "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
+      "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
+      "dev": true
+    },
+    "range-parser": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
+      "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
+      "dev": true
+    },
+    "raw-body": {
+      "version": "2.4.1",
+      "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.1.tgz",
+      "integrity": "sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA==",
+      "dev": true,
+      "requires": {
+        "bytes": "3.1.0",
+        "http-errors": "1.7.3",
+        "iconv-lite": "0.4.24",
+        "unpipe": "1.0.0"
+      }
+    },
+    "read-pkg": {
+      "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",
+        "path-type": "^1.0.0"
+      },
+      "dependencies": {
+        "path-type": {
+          "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"
+          }
+        },
+        "pify": {
+          "version": "2.3.0",
+          "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+          "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+          "dev": true
+        }
+      }
+    },
+    "read-pkg-up": {
+      "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"
+      },
+      "dependencies": {
+        "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"
+          }
+        },
+        "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"
+          }
+        }
+      }
+    },
+    "readable-stream": {
+      "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",
+        "isarray": "~1.0.0",
+        "process-nextick-args": "~2.0.0",
+        "safe-buffer": "~5.1.1",
+        "string_decoder": "~1.1.1",
+        "util-deprecate": "~1.0.1"
+      }
+    },
+    "readable-web-to-node-stream": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz",
+      "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==",
+      "dev": true,
+      "requires": {
+        "readable-stream": "^3.6.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"
+          }
+        }
+      }
+    },
+    "readdirp": {
+      "version": "3.6.0",
+      "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
+      "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
+      "dev": true,
+      "requires": {
+        "picomatch": "^2.2.1"
+      }
+    },
+    "rechoir": {
+      "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"
+      }
+    },
+    "regex-not": {
+      "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"
+      },
+      "dependencies": {
+        "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"
+          }
+        }
+      }
+    },
+    "remove-bom-buffer": {
+      "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"
+      }
+    },
+    "remove-bom-stream": {
+      "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",
+        "through2": "^2.0.3"
+      }
+    },
+    "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=",
+      "dev": true
+    },
+    "repeat-element": {
+      "version": "1.1.4",
+      "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz",
+      "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==",
+      "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=",
+      "dev": true
+    },
+    "replace-ext": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-2.0.0.tgz",
+      "integrity": "sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==",
+      "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",
+        "remove-trailing-separator": "^1.1.0"
+      }
+    },
+    "replacestream": {
+      "version": "4.0.3",
+      "resolved": "https://registry.npmjs.org/replacestream/-/replacestream-4.0.3.tgz",
+      "integrity": "sha512-AC0FiLS352pBBiZhd4VXB1Ab/lh0lEgpP+GGvZqbQh8a5cmXVoTe5EX/YeTFArnp4SRGTHh1qCHu9lGs1qG8sA==",
+      "dev": true,
+      "requires": {
+        "escape-string-regexp": "^1.0.3",
+        "object-assign": "^4.0.1",
+        "readable-stream": "^2.0.2"
+      },
+      "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
+        }
+      }
+    },
+    "require-directory": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
+      "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=",
+      "dev": true
+    },
+    "require-main-filename": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
+      "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.20.0",
+      "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz",
+      "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==",
+      "dev": true,
+      "requires": {
+        "is-core-module": "^2.2.0",
+        "path-parse": "^1.0.6"
+      }
+    },
+    "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-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"
+      }
+    },
+    "resolve-url": {
+      "version": "0.2.1",
+      "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz",
+      "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=",
+      "dev": true
+    },
+    "resp-modifier": {
+      "version": "6.0.2",
+      "resolved": "https://registry.npmjs.org/resp-modifier/-/resp-modifier-6.0.2.tgz",
+      "integrity": "sha1-sSTeXE+6/LpUH0j/pzlw9KpFa08=",
+      "dev": true,
+      "requires": {
+        "debug": "^2.2.0",
+        "minimatch": "^3.0.2"
+      }
+    },
+    "responselike": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz",
+      "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=",
+      "dev": true,
+      "requires": {
+        "lowercase-keys": "^1.0.0"
+      }
+    },
+    "ret": {
+      "version": "0.1.15",
+      "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz",
+      "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==",
+      "dev": true
+    },
+    "reusify": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
+      "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
+      "dev": true
+    },
+    "rimraf": {
+      "version": "2.7.1",
+      "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
+      "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+      "dev": true,
+      "requires": {
+        "glob": "^7.1.3"
+      }
+    },
+    "run-parallel": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
+      "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
+      "dev": true,
+      "requires": {
+        "queue-microtask": "^1.2.2"
+      }
+    },
+    "rx": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/rx/-/rx-4.1.0.tgz",
+      "integrity": "sha1-pfE/957zt0D+MKqAP7CfmIBdR4I=",
+      "dev": true
+    },
+    "rxjs": {
+      "version": "5.5.12",
+      "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-5.5.12.tgz",
+      "integrity": "sha512-xx2itnL5sBbqeeiVgNPVuQQ1nC8Jp2WfNJhXWHmElW9YmrpS9UVnNzhP3EH3HFqexO5Tlp8GhYY+WEcqcVMvGw==",
+      "dev": true,
+      "requires": {
+        "symbol-observable": "1.0.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==",
+      "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"
+      }
+    },
+    "safer-buffer": {
+      "version": "2.1.2",
+      "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
+      "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
+      "dev": true
+    },
+    "seek-bzip": {
+      "version": "1.0.6",
+      "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz",
+      "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==",
+      "dev": true,
+      "requires": {
+        "commander": "^2.8.1"
+      }
+    },
+    "semver": {
+      "version": "5.7.1",
+      "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+      "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"
+      }
+    },
+    "semver-regex": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz",
+      "integrity": "sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==",
+      "dev": true
+    },
+    "semver-truncate": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz",
+      "integrity": "sha1-V/Qd5pcHpicJp+AQS6IRcQnqR+g=",
+      "dev": true,
+      "requires": {
+        "semver": "^5.3.0"
+      }
+    },
+    "send": {
+      "version": "0.16.2",
+      "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz",
+      "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==",
+      "dev": true,
+      "requires": {
+        "debug": "2.6.9",
+        "depd": "~1.1.2",
+        "destroy": "~1.0.4",
+        "encodeurl": "~1.0.2",
+        "escape-html": "~1.0.3",
+        "etag": "~1.8.1",
+        "fresh": "0.5.2",
+        "http-errors": "~1.6.2",
+        "mime": "1.4.1",
+        "ms": "2.0.0",
+        "on-finished": "~2.3.0",
+        "range-parser": "~1.2.0",
+        "statuses": "~1.4.0"
+      },
+      "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
+        },
+        "statuses": {
+          "version": "1.4.0",
+          "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz",
+          "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==",
+          "dev": true
+        }
+      }
+    },
+    "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
+        },
+        "statuses": {
+          "version": "1.5.0",
+          "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
+          "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=",
+          "dev": true
+        }
+      }
+    },
+    "serve-static": {
+      "version": "1.13.2",
+      "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz",
+      "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==",
+      "dev": true,
+      "requires": {
+        "encodeurl": "~1.0.2",
+        "escape-html": "~1.0.3",
+        "parseurl": "~1.3.2",
+        "send": "0.16.2"
+      }
+    },
+    "server-destroy": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz",
+      "integrity": "sha1-8Tv5KOQrnD55OD5hzDmYtdFObN0=",
+      "dev": true
+    },
+    "set-blocking": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
+      "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",
+        "is-plain-object": "^2.0.3",
+        "split-string": "^3.0.1"
+      },
+      "dependencies": {
+        "extend-shallow": {
+          "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"
+          }
+        },
+        "is-extendable": {
+          "version": "0.1.1",
+          "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+          "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+          "dev": true
+        },
+        "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"
+          }
+        }
+      }
+    },
+    "setprototypeof": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz",
+      "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==",
+      "dev": true
+    },
+    "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
+    },
+    "signal-exit": {
+      "version": "3.0.5",
+      "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.5.tgz",
+      "integrity": "sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ==",
+      "dev": true
+    },
+    "slash": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
+      "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
+      "dev": true
+    },
+    "snapdragon": {
+      "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",
+        "define-property": "^0.2.5",
+        "extend-shallow": "^2.0.1",
+        "map-cache": "^0.2.2",
+        "source-map": "^0.5.6",
+        "source-map-resolve": "^0.5.0",
+        "use": "^3.1.0"
+      },
+      "dependencies": {
+        "define-property": {
+          "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"
+          }
+        },
+        "extend-shallow": {
+          "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"
+          }
+        },
+        "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"
+          },
+          "dependencies": {
+            "kind-of": {
+              "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-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"
+          },
+          "dependencies": {
+            "kind-of": {
+              "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-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",
+            "kind-of": "^5.0.0"
+          }
+        },
+        "is-extendable": {
+          "version": "0.1.1",
+          "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+          "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+          "dev": true
+        },
+        "source-map": {
+          "version": "0.5.7",
+          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+          "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
+          "dev": true
+        }
+      }
+    },
+    "snapdragon-node": {
+      "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",
+        "snapdragon-util": "^3.0.1"
+      },
+      "dependencies": {
+        "define-property": {
+          "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"
+          }
+        }
+      }
+    },
+    "snapdragon-util": {
+      "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"
+      },
+      "dependencies": {
+        "kind-of": {
+          "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"
+          }
+        }
+      }
+    },
+    "socket.io": {
+      "version": "2.4.0",
+      "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-2.4.0.tgz",
+      "integrity": "sha512-9UPJ1UTvKayuQfVv2IQ3k7tCQC/fboDyIK62i99dAQIyHKaBsNdTpwHLgKJ6guRWxRtC9H+138UwpaGuQO9uWQ==",
+      "dev": true,
+      "requires": {
+        "debug": "~4.1.0",
+        "engine.io": "~3.5.0",
+        "has-binary2": "~1.0.2",
+        "socket.io-adapter": "~1.1.0",
+        "socket.io-client": "2.4.0",
+        "socket.io-parser": "~3.4.0"
+      },
+      "dependencies": {
+        "debug": {
+          "version": "4.1.1",
+          "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
+          "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
+          "dev": true,
+          "requires": {
+            "ms": "^2.1.1"
+          }
+        },
+        "ms": {
+          "version": "2.1.3",
+          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+          "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+          "dev": true
+        }
+      }
+    },
+    "socket.io-adapter": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-1.1.2.tgz",
+      "integrity": "sha512-WzZRUj1kUjrTIrUKpZLEzFZ1OLj5FwLlAFQs9kuZJzJi5DKdU7FsWc36SNmA8iDOtwBQyT8FkrriRM8vXLYz8g==",
+      "dev": true
+    },
+    "socket.io-client": {
+      "version": "2.4.0",
+      "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.4.0.tgz",
+      "integrity": "sha512-M6xhnKQHuuZd4Ba9vltCLT9oa+YvTsP8j9NcEiLElfIg8KeYPyhWOes6x4t+LTAC8enQbE/995AdTem2uNyKKQ==",
+      "dev": true,
+      "requires": {
+        "backo2": "1.0.2",
+        "component-bind": "1.0.0",
+        "component-emitter": "~1.3.0",
+        "debug": "~3.1.0",
+        "engine.io-client": "~3.5.0",
+        "has-binary2": "~1.0.2",
+        "indexof": "0.0.1",
+        "parseqs": "0.0.6",
+        "parseuri": "0.0.6",
+        "socket.io-parser": "~3.3.0",
+        "to-array": "0.1.4"
+      },
+      "dependencies": {
+        "debug": {
+          "version": "3.1.0",
+          "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
+          "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
+          "dev": true,
+          "requires": {
+            "ms": "2.0.0"
+          }
+        },
+        "isarray": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz",
+          "integrity": "sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4=",
+          "dev": true
+        },
+        "socket.io-parser": {
+          "version": "3.3.2",
+          "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.3.2.tgz",
+          "integrity": "sha512-FJvDBuOALxdCI9qwRrO/Rfp9yfndRtc1jSgVgV8FDraihmSP/MLGD5PEuJrNfjALvcQ+vMDM/33AWOYP/JSjDg==",
+          "dev": true,
+          "requires": {
+            "component-emitter": "~1.3.0",
+            "debug": "~3.1.0",
+            "isarray": "2.0.1"
+          }
+        }
+      }
+    },
+    "socket.io-parser": {
+      "version": "3.4.1",
+      "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.4.1.tgz",
+      "integrity": "sha512-11hMgzL+WCLWf1uFtHSNvliI++tcRUWdoeYuwIl+Axvwy9z2gQM+7nJyN3STj1tLj5JyIUH8/gpDGxzAlDdi0A==",
+      "dev": true,
+      "requires": {
+        "component-emitter": "1.2.1",
+        "debug": "~4.1.0",
+        "isarray": "2.0.1"
+      },
+      "dependencies": {
+        "component-emitter": {
+          "version": "1.2.1",
+          "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz",
+          "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=",
+          "dev": true
+        },
+        "debug": {
+          "version": "4.1.1",
+          "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
+          "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
+          "dev": true,
+          "requires": {
+            "ms": "^2.1.1"
+          }
+        },
+        "isarray": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz",
+          "integrity": "sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4=",
+          "dev": true
+        },
+        "ms": {
+          "version": "2.1.3",
+          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+          "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+          "dev": true
+        }
+      }
+    },
+    "sort-keys": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz",
+      "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=",
+      "dev": true,
+      "requires": {
+        "is-plain-obj": "^1.0.0"
+      }
+    },
+    "sort-keys-length": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz",
+      "integrity": "sha1-nLb09OnkgVWmqgZx7dM2/xR5oYg=",
+      "dev": true,
+      "requires": {
+        "sort-keys": "^1.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,
+      "optional": 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",
+        "resolve-url": "^0.2.1",
+        "source-map-url": "^0.4.0",
+        "urix": "^0.1.0"
+      }
+    },
+    "source-map-url": {
+      "version": "0.4.1",
+      "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz",
+      "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==",
+      "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==",
+      "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"
+      }
+    },
+    "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==",
+      "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"
+      }
+    },
+    "spdx-license-ids": {
+      "version": "3.0.10",
+      "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz",
+      "integrity": "sha512-oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA==",
+      "dev": true
+    },
+    "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"
+      },
+      "dependencies": {
+        "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"
+          }
+        }
+      }
+    },
+    "stable": {
+      "version": "0.1.8",
+      "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz",
+      "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==",
+      "dev": true,
+      "optional": true
+    },
+    "stack-trace": {
+      "version": "0.0.10",
+      "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz",
+      "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"
+      },
+      "dependencies": {
+        "define-property": {
+          "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"
+          }
+        },
+        "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"
+          },
+          "dependencies": {
+            "kind-of": {
+              "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-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"
+          },
+          "dependencies": {
+            "kind-of": {
+              "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-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",
+            "kind-of": "^5.0.0"
+          }
+        }
+      }
+    },
+    "statuses": {
+      "version": "1.3.1",
+      "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz",
+      "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=",
+      "dev": true
+    },
+    "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==",
+      "dev": true
+    },
+    "stream-shift": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz",
+      "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==",
+      "dev": true
+    },
+    "stream-throttle": {
+      "version": "0.1.3",
+      "resolved": "https://registry.npmjs.org/stream-throttle/-/stream-throttle-0.1.3.tgz",
+      "integrity": "sha1-rdV8jXzHOoFjDTHNVdOWHPr7qcM=",
+      "dev": true,
+      "requires": {
+        "commander": "^2.2.0",
+        "limiter": "^1.0.5"
+      }
+    },
+    "strict-uri-encode": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz",
+      "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=",
+      "dev": true
+    },
+    "string_decoder": {
+      "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"
+      }
+    },
+    "string-width": {
+      "version": "4.2.3",
+      "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+      "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+      "dev": true,
+      "requires": {
+        "emoji-regex": "^8.0.0",
+        "is-fullwidth-code-point": "^3.0.0",
+        "strip-ansi": "^6.0.1"
+      }
+    },
+    "strip-ansi": {
+      "version": "6.0.1",
+      "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+      "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+      "dev": true,
+      "requires": {
+        "ansi-regex": "^5.0.1"
+      }
+    },
+    "strip-bom": {
+      "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"
+      }
+    },
+    "strip-dirs": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz",
+      "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==",
+      "dev": true,
+      "requires": {
+        "is-natural-number": "^4.0.1"
+      }
+    },
+    "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-final-newline": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
+      "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
+      "dev": true
+    },
+    "strip-outer": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz",
+      "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==",
+      "dev": true,
+      "requires": {
+        "escape-string-regexp": "^1.0.2"
+      }
+    },
+    "strnum": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.4.tgz",
+      "integrity": "sha512-lMzNMfDpaQOLt4B2mEbfzYS0+T7dvCXeojnlGf6f1AygvWDMcWyXYaLbyICfjVu29sErR8fnRagQfBW/N/hGgw==",
+      "dev": true,
+      "optional": true
+    },
+    "strtok3": {
+      "version": "6.2.4",
+      "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-6.2.4.tgz",
+      "integrity": "sha512-GO8IcFF9GmFDvqduIspUBwCzCbqzegyVKIsSymcMgiZKeCfrN9SowtUoi8+b59WZMAjIzVZic/Ft97+pynR3Iw==",
+      "dev": true,
+      "requires": {
+        "@tokenizer/token": "^0.3.0",
+        "peek-readable": "^4.0.1"
+      }
+    },
+    "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"
+      }
+    },
+    "sver-compat": {
+      "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"
+      }
+    },
+    "svgo": {
+      "version": "2.8.0",
+      "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz",
+      "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "@trysound/sax": "0.2.0",
+        "commander": "^7.2.0",
+        "css-select": "^4.1.3",
+        "css-tree": "^1.1.3",
+        "csso": "^4.2.0",
+        "picocolors": "^1.0.0",
+        "stable": "^0.1.8"
+      },
+      "dependencies": {
+        "commander": {
+          "version": "7.2.0",
+          "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
+          "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
+          "dev": true,
+          "optional": true
+        }
+      }
+    },
+    "symbol-observable": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz",
+      "integrity": "sha1-g0D8RwLDEi310iKI+IKD9RPT/dQ=",
+      "dev": true
+    },
+    "tar-stream": {
+      "version": "1.6.2",
+      "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz",
+      "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==",
+      "dev": true,
+      "requires": {
+        "bl": "^1.0.0",
+        "buffer-alloc": "^1.2.0",
+        "end-of-stream": "^1.0.0",
+        "fs-constants": "^1.0.0",
+        "readable-stream": "^2.3.0",
+        "to-buffer": "^1.1.1",
+        "xtend": "^4.0.0"
+      }
+    },
+    "temp-dir": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz",
+      "integrity": "sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=",
+      "dev": true
+    },
+    "tempfile": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz",
+      "integrity": "sha1-awRGhWqbERTRhW/8vlCczLCXcmU=",
+      "dev": true,
+      "requires": {
+        "temp-dir": "^1.0.0",
+        "uuid": "^3.0.1"
+      }
+    },
+    "textextensions": {
+      "version": "3.3.0",
+      "resolved": "https://registry.npmjs.org/textextensions/-/textextensions-3.3.0.tgz",
+      "integrity": "sha512-mk82dS8eRABNbeVJrEiN5/UMSCliINAuz8mkUwH4SwslkNP//gbEzlWNS5au0z5Dpx40SQxzqZevZkn+WYJ9Dw==",
+      "dev": true
+    },
+    "tfunk": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/tfunk/-/tfunk-4.0.0.tgz",
+      "integrity": "sha512-eJQ0dGfDIzWNiFNYFVjJ+Ezl/GmwHaFTBTjrtqNPW0S7cuVDBrZrmzUz6VkMeCR4DZFqhd4YtLwsw3i2wYHswQ==",
+      "dev": true,
+      "requires": {
+        "chalk": "^1.1.3",
+        "dlv": "^1.1.3"
+      },
+      "dependencies": {
+        "ansi-regex": {
+          "version": "2.1.1",
+          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+          "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
+          "dev": true
+        },
+        "ansi-styles": {
+          "version": "2.2.1",
+          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
+          "dev": true
+        },
+        "chalk": {
+          "version": "1.1.3",
+          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+          "dev": true,
+          "requires": {
+            "ansi-styles": "^2.2.1",
+            "escape-string-regexp": "^1.0.2",
+            "has-ansi": "^2.0.0",
+            "strip-ansi": "^3.0.0",
+            "supports-color": "^2.0.0"
+          }
+        },
+        "strip-ansi": {
+          "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"
+          }
+        },
+        "supports-color": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+          "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
+          "dev": true
+        }
+      }
+    },
+    "through": {
+      "version": "2.3.8",
+      "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
+      "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=",
+      "dev": true
+    },
+    "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"
+      }
+    },
+    "through2-concurrent": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/through2-concurrent/-/through2-concurrent-2.0.0.tgz",
+      "integrity": "sha512-R5/jLkfMvdmDD+seLwN7vB+mhbqzWop5fAjx5IX8/yQq7VhBhzDmhXgaHAOnhnWkCpRMM7gToYHycB0CS/pd+A==",
+      "dev": true,
+      "requires": {
+        "through2": "^2.0.0"
+      }
+    },
+    "through2-filter": {
+      "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"
+      }
+    },
+    "time-stamp": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz",
+      "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=",
+      "dev": true
+    },
+    "timed-out": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz",
+      "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=",
+      "dev": true
+    },
+    "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-array": {
+      "version": "0.1.4",
+      "resolved": "https://registry.npmjs.org/to-array/-/to-array-0.1.4.tgz",
+      "integrity": "sha1-F+bBH3PdTz10zaek/zI46a2b+JA=",
+      "dev": true
+    },
+    "to-buffer": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz",
+      "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==",
+      "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"
+      },
+      "dependencies": {
+        "kind-of": {
+          "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"
+          }
+        }
+      }
+    },
+    "to-regex": {
+      "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",
+        "regex-not": "^1.0.2",
+        "safe-regex": "^1.1.0"
+      },
+      "dependencies": {
+        "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"
+          }
+        }
+      }
+    },
+    "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,
+      "requires": {
+        "is-number": "^7.0.0"
+      }
+    },
+    "to-through": {
+      "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"
+      }
+    },
+    "toidentifier": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz",
+      "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==",
+      "dev": true
+    },
+    "token-stream": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/token-stream/-/token-stream-1.0.0.tgz",
+      "integrity": "sha1-zCAOqyYT9BZtJ/+a/HylbUnfbrQ=",
+      "dev": true
+    },
+    "token-types": {
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/token-types/-/token-types-4.1.1.tgz",
+      "integrity": "sha512-hD+QyuUAyI2spzsI0B7gf/jJ2ggR4RjkAo37j3StuePhApJUwcWDjnHDOFdIWYSwNR28H14hpwm4EI+V1Ted1w==",
+      "dev": true,
+      "requires": {
+        "@tokenizer/token": "^0.3.0",
+        "ieee754": "^1.2.1"
+      }
+    },
+    "trim-repeated": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz",
+      "integrity": "sha1-42RqLqTokTEr9+rObPsFOAvAHCE=",
+      "dev": true,
+      "requires": {
+        "escape-string-regexp": "^1.0.2"
+      }
+    },
+    "tunnel-agent": {
+      "version": "0.6.0",
+      "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
+      "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
+      "dev": true,
+      "requires": {
+        "safe-buffer": "^5.0.1"
+      }
+    },
+    "type": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz",
+      "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==",
+      "dev": true
+    },
+    "type-fest": {
+      "version": "0.11.0",
+      "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz",
+      "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==",
+      "dev": true
+    },
+    "typedarray": {
+      "version": "0.0.6",
+      "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
+      "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=",
+      "dev": true
+    },
+    "ua-parser-js": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.2.tgz",
+      "integrity": "sha512-00y/AXhx0/SsnI51fTc0rLRmafiGOM4/O+ny10Ps7f+j/b8p/ZY11ytMgznXkOVo4GQ+KwQG5UQLkLGirsACRg==",
+      "dev": true
+    },
+    "unbzip2-stream": {
+      "version": "1.4.3",
+      "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz",
+      "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==",
+      "dev": true,
+      "requires": {
+        "buffer": "^5.2.1",
+        "through": "^2.3.8"
+      }
+    },
+    "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=",
+      "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",
+        "bach": "^1.0.0",
+        "collection-map": "^1.0.0",
+        "es6-weak-map": "^2.0.1",
+        "fast-levenshtein": "^1.0.0",
+        "last-run": "^1.1.0",
+        "object.defaults": "^1.0.0",
+        "object.reduce": "^1.0.0",
+        "undertaker-registry": "^1.0.0"
+      }
+    },
+    "undertaker-registry": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz",
+      "integrity": "sha1-XkvaMI5KiirlhPm5pDWaSZglzFA=",
+      "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",
+        "is-extendable": "^0.1.1",
+        "set-value": "^2.0.1"
+      },
+      "dependencies": {
+        "arr-union": {
+          "version": "3.1.0",
+          "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
+          "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
+          "dev": true
+        },
+        "is-extendable": {
+          "version": "0.1.1",
+          "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+          "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
+          "dev": true
+        }
+      }
+    },
+    "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"
+      }
+    },
+    "universalify": {
+      "version": "0.1.2",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
+      "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==",
+      "dev": true
+    },
+    "unpipe": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
+      "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=",
+      "dev": true
+    },
+    "unset-value": {
+      "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"
+      },
+      "dependencies": {
+        "has-value": {
+          "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",
+            "isobject": "^2.0.0"
+          },
+          "dependencies": {
+            "isobject": {
+              "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"
+              }
+            }
+          }
+        },
+        "has-values": {
+          "version": "0.1.4",
+          "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz",
+          "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==",
+      "dev": true
+    },
+    "urix": {
+      "version": "0.1.0",
+      "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz",
+      "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=",
+      "dev": true
+    },
+    "url-parse-lax": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz",
+      "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=",
+      "dev": true,
+      "requires": {
+        "prepend-http": "^1.0.1"
+      }
+    },
+    "url-to-options": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz",
+      "integrity": "sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=",
+      "dev": true
+    },
+    "use": {
+      "version": "3.1.1",
+      "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz",
+      "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==",
+      "dev": true
+    },
+    "util-deprecate": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+      "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=",
+      "dev": true
+    },
+    "utils-merge": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
+      "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=",
+      "dev": true
+    },
+    "uuid": {
+      "version": "3.4.0",
+      "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
+      "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
+      "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"
+      }
+    },
+    "validate-npm-package-license": {
+      "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"
+      }
+    },
+    "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=",
+      "dev": true
+    },
+    "vinyl": {
+      "version": "2.2.1",
+      "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz",
+      "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==",
+      "dev": true,
+      "requires": {
+        "clone": "^2.1.1",
+        "clone-buffer": "^1.0.0",
+        "clone-stats": "^1.0.0",
+        "cloneable-readable": "^1.0.0",
+        "remove-trailing-separator": "^1.0.1",
+        "replace-ext": "^1.0.0"
+      },
+      "dependencies": {
+        "replace-ext": {
+          "version": "1.0.1",
+          "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz",
+          "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==",
+          "dev": true
+        }
+      }
+    },
+    "vinyl-contents": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/vinyl-contents/-/vinyl-contents-1.0.0.tgz",
+      "integrity": "sha512-xBH8ZUy8IK7K06eCBmd2GGjdf1EqNEGPNfRP2VsrCvSvsOggywGCGZg435WZiG/kcyCdXc1CZXCf4pUJ2EuEsg==",
+      "dev": true,
+      "requires": {
+        "bl": "^3.0.0",
+        "readable-stream": "^3.3.0",
+        "vinyl": "^2.2.0"
+      },
+      "dependencies": {
+        "bl": {
+          "version": "3.0.1",
+          "resolved": "https://registry.npmjs.org/bl/-/bl-3.0.1.tgz",
+          "integrity": "sha512-jrCW5ZhfQ/Vt07WX1Ngs+yn9BDqPL/gw28S7s9H6QK/gupnizNzJAss5akW20ISgOrbLTlXOOCTJeNUQqruAWQ==",
+          "dev": true,
+          "requires": {
+            "readable-stream": "^3.0.1"
+          }
+        },
+        "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"
+          }
+        }
+      }
+    },
+    "vinyl-fs": {
+      "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",
+        "graceful-fs": "^4.0.0",
+        "is-valid-glob": "^1.0.0",
+        "lazystream": "^1.0.0",
+        "lead": "^1.0.0",
+        "object.assign": "^4.0.4",
+        "pumpify": "^1.3.5",
+        "readable-stream": "^2.3.3",
+        "remove-bom-buffer": "^3.0.0",
+        "remove-bom-stream": "^1.2.0",
+        "resolve-options": "^1.1.0",
+        "through2": "^2.0.0",
+        "to-through": "^2.0.0",
+        "value-or-function": "^3.0.0",
+        "vinyl": "^2.0.0",
+        "vinyl-sourcemap": "^1.1.0"
+      }
+    },
+    "vinyl-ftp": {
+      "version": "0.6.1",
+      "resolved": "https://registry.npmjs.org/vinyl-ftp/-/vinyl-ftp-0.6.1.tgz",
+      "integrity": "sha512-HVp7xuWx9xQC+tzsCCYCnpd3ZVXK8wa4sMEhdkiGY6rY7P1sIm71YkfLjzdYXGS4hseOiSBSS75jPxZBozol6A==",
+      "dev": true,
+      "requires": {
+        "ftp": "^0.3.8",
+        "minimatch": "^3.0.2",
+        "object-assign": "^4.1.1",
+        "parallel-transform": "^1.1.0",
+        "through2": "^2.0.3",
+        "vinyl": "^2.0.1"
+      },
+      "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
+        }
+      }
+    },
+    "vinyl-sourcemap": {
+      "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",
+        "graceful-fs": "^4.1.6",
+        "normalize-path": "^2.1.1",
+        "now-and-later": "^2.0.0",
+        "remove-bom-buffer": "^3.0.0",
+        "vinyl": "^2.0.0"
+      },
+      "dependencies": {
+        "normalize-path": {
+          "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"
+          }
+        }
+      }
+    },
+    "void-elements": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz",
+      "integrity": "sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=",
+      "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"
+      }
+    },
+    "which-module": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
+      "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=",
+      "dev": true
+    },
+    "with": {
+      "version": "7.0.2",
+      "resolved": "https://registry.npmjs.org/with/-/with-7.0.2.tgz",
+      "integrity": "sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==",
+      "dev": true,
+      "requires": {
+        "@babel/parser": "^7.9.6",
+        "@babel/types": "^7.9.6",
+        "assert-never": "^1.2.1",
+        "babel-walk": "3.0.0-canary-5"
+      }
+    },
+    "wrap-ansi": {
+      "version": "6.2.0",
+      "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
+      "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
+      "dev": true,
+      "requires": {
+        "ansi-styles": "^4.0.0",
+        "string-width": "^4.1.0",
+        "strip-ansi": "^6.0.0"
+      }
+    },
+    "wrappy": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
+      "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
+      "dev": true
+    },
+    "ws": {
+      "version": "7.4.6",
+      "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz",
+      "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==",
+      "dev": true,
+      "requires": {}
+    },
+    "xmlhttprequest-ssl": {
+      "version": "1.6.3",
+      "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.6.3.tgz",
+      "integrity": "sha512-3XfeQE/wNkvrIktn2Kf0869fC0BN6UpydVasGIeSm2B1Llihf7/0UfZM+eCkOw3P7bP4+qPgqhm7ZoxuJtFU0Q==",
+      "dev": true
+    },
+    "xregexp": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz",
+      "integrity": "sha1-UqY+VsoLhKfzpfPWGHLxJq16WUM=",
+      "dev": true
+    },
+    "xtend": {
+      "version": "4.0.2",
+      "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
+      "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
+      "dev": true
+    },
+    "y18n": {
+      "version": "4.0.3",
+      "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
+      "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==",
+      "dev": true
+    },
+    "yallist": {
+      "version": "2.1.2",
+      "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz",
+      "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=",
+      "dev": true
+    },
+    "yargs": {
+      "version": "15.4.1",
+      "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
+      "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
+      "dev": true,
+      "requires": {
+        "cliui": "^6.0.0",
+        "decamelize": "^1.2.0",
+        "find-up": "^4.1.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": "^4.2.0",
+        "which-module": "^2.0.0",
+        "y18n": "^4.0.0",
+        "yargs-parser": "^18.1.2"
+      },
+      "dependencies": {
+        "camelcase": {
+          "version": "5.3.1",
+          "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
+          "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
+          "dev": true
+        },
+        "yargs-parser": {
+          "version": "18.1.3",
+          "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz",
+          "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==",
+          "dev": true,
+          "requires": {
+            "camelcase": "^5.0.0",
+            "decamelize": "^1.2.0"
+          }
+        }
+      }
+    },
+    "yargs-parser": {
+      "version": "20.2.9",
+      "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
+      "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==",
+      "dev": true
+    },
+    "yauzl": {
+      "version": "2.10.0",
+      "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz",
+      "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=",
+      "dev": true,
+      "requires": {
+        "buffer-crc32": "~0.2.3",
+        "fd-slicer": "~1.1.0"
+      }
+    },
+    "yeast": {
+      "version": "0.1.2",
+      "resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz",
+      "integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk=",
+      "dev": true
+    }
+  }
+}
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..a0d2191
--- /dev/null
+++ b/package.json
@@ -0,0 +1,30 @@
+{
+  "name": "extrasites",
+  "version": "1.0.0",
+  "description": "",
+  "main": "index.js",
+  "type": "module",
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "devDependencies": {
+    "browser-sync": "^*",
+    "gulp": "^4.0.2",
+    "gulp-clean": "^*",
+    "gulp-file-sync": "^*",
+    "gulp-imagemin": "^8.0.0",
+    "gulp-plumber": "^*",
+    "gulp-prettier": "^*",
+    "gulp-pug": "^*",
+    "gulp-replace": "^1.1.3",
+    "gulp-util": "^*",
+    "imagemin": "^*",
+    "imagemin-jpeg-recompress": "^*",
+    "imagemin-pngquant": "^*",
+    "vinyl-ftp": "^*"
+  },
+  "author": "",
+  "license": "ISC",
+  "dependencies": {
+  }
+}
diff --git a/public/arch/clustering.html b/public/arch/clustering.html
new file mode 100644
index 0000000..23e34c9
--- /dev/null
+++ b/public/arch/clustering.html
@@ -0,0 +1,142 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>Deployment Options | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/native-persistence.css" />
+    <link rel="stylesheet" href="../css/deployment-opts.css" />
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__blue">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo-white.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="innerhero">
+      <div class="container innerhero__cont">
+        <div class="innerhero__main">
+          <div class="innerhero__pre pb-3">Apache Ignite</div>
+          <h1 class="h1 innerhero__h1 innerhero__mega">Deployment <br />Options</h1>
+        </div>
+        <img class="innerhero__pic innerhero__pic--deploy" src="/img/features/deployment/hero.svg" alt="Deployment Options" />
+      </div>
+    </section>
+    <!-- /.innerhero-->
+    <section class="deploymenytext container flexi">
+      <div class="deploymenytext__main">
+        <p>
+          Apache Ignite&reg; implements the shared-nothing architecture where all cluster nodes are equal and there is&nbsp;no&nbsp;single point of&nbsp;failure or&nbsp;bottleneck. Ignite does NOT have a&nbsp;component such
+          as&nbsp;a&nbsp;master node or&nbsp;name node that is&nbsp;present in&nbsp;most distributed systems.
+        </p>
+        <p>Ignite nodes discover each other automatically in&nbsp;your environment, and the cluster can be&nbsp;scaled out or&nbsp;in&nbsp;easily.</p>
+        <p class="pb-4">
+          Apache Ignite can run on&nbsp;bare metal, virtual machines, Docker, Kubernetes, and cloud environments. Technically there are no&nbsp;limitations in&nbsp;regards to&nbsp;deployment environments&nbsp;&mdash; since Ignite nodes can
+          auto-discover each other via the TCP/IP interface, you can launch a&nbsp;cluster anywhere.
+        </p>
+        <h3 class="h5 pt-2 pb-2 deploymenytext__title">Servers, clients and protocols</h3>
+        <p>
+          Ignite defines two types of&nbsp;nodes&nbsp;&mdash; servers and clients. A&nbsp;server node is&nbsp;the base computational and data storage unit. Typically, you start a&nbsp;single server node per machine or&nbsp;container and
+          it&nbsp;will scale vertically by&nbsp;utilizing all of&nbsp;the CPU, RAM, and other resources available unless specified differently. These resources are pooled and become available to&nbsp;Ignite applications once the server node
+          joins the cluster of&nbsp;other server nodes.
+        </p>
+        <p>A&nbsp;cluster is&nbsp;a&nbsp;group of&nbsp;server nodes interconnected together in&nbsp;order to&nbsp;provide shared resources like RAM and CPU to&nbsp;your applications.</p>
+        <p>
+          Client nodes (aka. thick clients) are your connection endpoints and gateways from the application layer to&nbsp;the cluster of&nbsp;server nodes. You always embed a&nbsp;client into your application code and execute the required
+          APIs. The clients shield all the complexity of&nbsp;Ignite&rsquo;s distributed nature from application developers who will see the cluster as&nbsp;a&nbsp;single unit. It&rsquo;s as&nbsp;simple as&nbsp;connecting
+          to&nbsp;an&nbsp;RDBMS via a&nbsp;JDBC driver or&nbsp;Spring Data framework.
+        </p>
+        <p>In&nbsp;addition to&nbsp;the thick clients, you can access the cluster with Ignite thin clients, JDBC and ODBC drivers, or&nbsp;the REST API.</p>
+      </div>
+      <aside class="deploymenytext__picwrap picwrap"><img class="deploymenytext__pic" src="/img/features/deployment/deploy-pic.svg" alt="" /></aside>
+    </section>
+    <section class="native-bottom container">
+      <div class="native-bottom__grid">
+        <article class="nativebotblock">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-rocket.svg" alt="" /><span>Ready to Start?</span></h3>
+          <p class="nativebotblock__text">Discover more details about multi-tier storage <br />and configure it for your use-case</p>
+          <a class="nativebotblock__link arrowlink" href="https://cwiki.apache.org/confluence/display/IGNITE/Ignite+Persistent+Store+-+under+the+hood" target="_blank">Working with SQL Guide </a>
+        </article>
+        <article class="nativebotblock nativebotblock--learn">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-docs.svg" alt="" /><span>Want to View More Use-Cases?</span></h3>
+          <p class="nativebotblock__text">Check out success stories from different industries across the world</p>
+          <a class="nativebotblock__link arrowlink" href="https://ignite.apache.org/docs/latest/persistence/native-persistence" target="_blank">Multi-Tier Storage Implementation Details</a>
+        </article>
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/arch/multi-tier-storage.html b/public/arch/multi-tier-storage.html
new file mode 100644
index 0000000..7a0e32a
--- /dev/null
+++ b/public/arch/multi-tier-storage.html
@@ -0,0 +1,203 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>Multi-Tier Storage | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/native-persistence.css" />
+    <link rel="stylesheet" href="../css/multi-tier.css" />
+    <link rel="stylesheet" href="../js/vendor/glightbox/glightbox.min.css" />
+    <script src="../js/vendor/glightbox/glightbox.min.js"></script>
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__blue">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo-white.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="innerhero">
+      <div class="container innerhero__cont">
+        <div class="innerhero__main">
+          <div class="innerhero__pre pb-3">Apache Ignite</div>
+          <h1 class="h1 innerhero__h1">Multi-Tier Storage</h1>
+          <div class="innerhero__descr pt-2 h5">Store and access your data across memory <br />and disk with no compromises</div>
+          <div class="innerhero__action"><a class="button innerhero__button" href="https://ignite.apache.org/docs/latest/index">Start Coding</a></div>
+        </div>
+        <img class="innerhero__pic innerhero__pic--multitier" src="/img/usecases/in-memory-hero.svg" alt="Distributed In-Memory Cache" />
+      </div>
+    </section>
+    <!-- /.innerhero-->
+    <section class="multitier2"></section>
+    <div class="container">
+      <h2 class="h3 multitier2__title">
+        Apache Ignite multi-tier storage implements a cutting-edge storage architecture that combines performance benefits of&nbsp;memory with the scalability and durability advantages of disk-based databases.
+      </h2>
+    </div>
+    <section class="multitiers container">
+      <header class="blockheader blockheader--spl flexi"><h2 class="h4 blockheader__left blockheader__left--full">Primary Multi-Tier Storage Usage Modes</h2></header>
+      <div class="multitier3 flexi">
+        <div class="multitiers__left">
+          <article class="multitierblock">
+            <h3 class="multitierblock__title">In-Memory Mode</h3>
+            <p class="fz20 pt-2">Get all the benefits of in-memory computing solutions. Store and process data at the lowest latency and highest throughput.</p>
+            <img class="multitierblock__pic" src="/img/features/multitier/01-bd.svg" alt="" />
+          </article>
+        </div>
+        <div class="multitiers__right multitiers__text">
+          <h4 class="multitier3__h4 fz20 pb-1x">How It Works</h4>
+          <p>The whole data set is available in memory tier only.</p>
+          <p>In order to survive node failures, we recommend keeping at least one backup copy of the data in the cluster. DRAM or Intel® Optane™ operating in the Memory Mode can be used as a storage device.</p>
+          <h4 class="multitier3__h4 fz20 pt-3">Use-Cases</h4>
+          <ul class="dashlist pt-2">
+            <li>In-memory caching</li>
+            <li>High-performance computing</li>
+            <li>Web-session caching</li>
+            <li>Real-time processing of continuous data streams</li>
+          </ul>
+          <div class="multitiervid pt-3">
+            <span class="multitiervid__link"> <span>In-Memory Mode Case-Study</span></span
+            ><a class="multitiervid__screen glightbox" href="https://www.youtube.com/watch?v=Mhtt2QL_qCQ&amp;t=639s" target="_blank" data-gallery="1"><img src="/img/features/multitier/video-1.png" alt="" /></a>
+            <div class="multitiervid__descr">Raiffeisen Bank uses in-memory mode to store their data</div>
+          </div>
+        </div>
+      </div>
+      <!-- /.multitier3-->
+      <div class="multitier4 flexi">
+        <div class="multitiers__left multitiers__text">
+          <h4 class="multitier3__h4 fz20 pb-1x">How It Works</h4>
+          <p>
+            Ignite slides in between your existing application and data layer. Ignite <a href="https://ignite.apache.org/docs/latest/persistence/external-storage#read-through-and-write-through" target="_blank">writes-through</a> or
+            <a href="https://ignite.apache.org/docs/latest/persistence/external-storage#write-behind-caching" target="_blank">writes-behind</a> all data modifications to the underlying external databases.
+          </p>
+          <h4 class="multitier3__h4 fz20 pt-3 pb-2">Use-Cases</h4>
+          <p>Offloading and acceleration of existing databases, backend-systems, applications and APIs.</p>
+          <div class="multitiervid pt-4">
+            <span class="multitiervid__link"> <span>In-Memory + External Database Mode Case-Study</span></span
+            ><a class="multitiervid__screen" href="#"> <img src="/img/features/multitier/video-2.png" alt="" /></a>
+            <div class="multitiervid__descr">Short description</div>
+          </div>
+        </div>
+        <div class="multitiers__right">
+          <article class="multitierblock">
+            <h3 class="multitierblock__title">In-Memory + External Database Mode</h3>
+            <p class="fz20 pt-1x">Accelerate and offload your existing databases by deploying Ignite as a caching layer on top of existing disk-based databases and back-end systems.</p>
+            <img class="multitierblock__pic" src="/img/features/multitier/03-bd.svg" alt="" />
+          </article>
+        </div>
+      </div>
+      <!-- /.multitier4-->
+      <div class="multitier5 flexi">
+        <div class="multitiers__left">
+          <article class="multitierblock">
+            <h3 class="multitierblock__title">Multi-Tier Database Mode</h3>
+            <p class="fz20 pt-1x">Scale beyond the available memory capacity and skip memory warm-ups on restarts</p>
+            <img class="multitierblock__pic" src="/img/features/multitier/04-bd.svg" alt="" />
+          </article>
+        </div>
+        <div class="multitiers__right multitiers__text">
+          <h4 class="multitier3__h4 fz20 pb-1x">How It Works</h4>
+          <p>100% of data is persisted to Ignite native persistence, and the same or smaller amount is cached in memory. The more data cached, the faster the performance.</p>
+          <p>Applications can query both in-memory and disk-only records transparently scaling beyond available memory capacity.</p>
+          <p>There is no need for memory warm-ups on restarts since Ignite can serve data from disk. SSD, Flash, HDD or Intel® Optane™ operating in the AppDirect Mode can be used as a storage device.</p>
+          <h4 class="multitier3__h4 fz20 pt-3 pb-2">Use-Cases</h4>
+          <p>Ignite as a distributed database for HTAP workloads or digital integration hub with the active persistence layer.</p>
+          <div class="multitiervid pt-4">
+            <span class="multitiervid__link"> <span>Native Persistence Case-Study</span></span
+            ><a class="multitiervid__screen glightbox" href="https://www.youtube.com/watch?v=jF9T2cJB6t0&amp;t=137s" target="_blank" data-gallery="2"> <img src="/img/features/multitier/video-3.png" alt="" /></a>
+            <div class="multitiervid__descr">JP Morgan team use Ignite to achieve persistence, caching and integrated compute</div>
+          </div>
+        </div>
+      </div>
+      <!-- /.multitier3-->
+    </section>
+    <!-- /.multitiers-->
+    <section class="native-bottom container">
+      <div class="native-bottom__grid">
+        <article class="nativebotblock">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-rocket.svg" alt="" /><span>Ready to Start?</span></h3>
+          <p class="nativebotblock__text">Discover more details about multi-tier storage <br />and configure it for your use-case</p>
+          <a class="nativebotblock__link arrowlink" href="https://cwiki.apache.org/confluence/display/IGNITE/Ignite+Persistent+Store+-+under+the+hood" target="_blank">Working with SQL Guide </a>
+        </article>
+        <article class="nativebotblock nativebotblock--learn">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-docs.svg" alt="" /><span>Want to Learn More?</span></h3>
+          <p class="nativebotblock__text">Check multi-tier storage implementation <br />details article</p>
+          <a class="nativebotblock__link arrowlink" href="https://ignite.apache.org/docs/latest/persistence/native-persistence" target="_blank">Multi-Tier Storage Implementation Details</a>
+        </article>
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/arch/native-persistence.html b/public/arch/native-persistence.html
new file mode 100644
index 0000000..c048d62
--- /dev/null
+++ b/public/arch/native-persistence.html
@@ -0,0 +1,269 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>Native Persistence | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/native-persistence.css" />
+    <link rel="stylesheet" href="../js/vendor/highlight/default.min.css" />
+    <link rel="stylesheet" href="../js/vendor/highlight/night-owl.css" />
+    <script src="../js/vendor/highlight/highlight.min.js"></script>
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__blue">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo-white.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="innerhero">
+      <div class="container innerhero__cont">
+        <div class="innerhero__main">
+          <div class="innerhero__pre pb-3">Apache Ignite</div>
+          <h1 class="h1 innerhero__h1">Native Persistence</h1>
+          <div class="innerhero__descr pt-2 h5">
+            Scale beyond available memory capacity <br />
+            and skip memory warm-ups on restarts
+          </div>
+          <div class="innerhero__action"><a class="button innerhero__button" href="https://ignite.apache.org/docs/latest/index">Start Coding</a></div>
+        </div>
+        <img class="innerhero__pic innerhero__pic--native" src="/img/features/native-header.svg" alt="Native Persistence" />
+      </div>
+    </section>
+    <!-- /.innerhero-->
+    <section class="native1 container flexi">
+      <div class="native1__block native1__block--bad">
+        <img class="native1__icon" src="/img/features/icon-check-err.svg" alt="" />
+        <div class="native1__title fz20 pt-1x">Usually, in-memory caches and databases provide limited persistence capabilities.</div>
+        <p class="pt-2">For instance, some solutions just do a backup copy of <br />the in-memory data purely for restart purposes.</p>
+      </div>
+      <div class="native1__block">
+        <img class="native1__icon" src="/img/features/icon-check-ok.svg" alt="" />
+        <div class="native1__title fz20 pt-1x">
+          Ignite persistence doesn’t have any limitations. <br />
+          Our native persistence behaves like a classic <br />disk-based database.
+        </div>
+      </div>
+    </section>
+    <section class="native2 container">
+      <div class="native2__grid">
+        <article class="native2item">
+          <h3 class="fz20 native2item__title">Scale beyond memory <br />capacity</h3>
+          <p class="pt-1x">100% of&nbsp;data is&nbsp;always stored on&nbsp;disk. You decide how much memory allocate to&nbsp;your data.</p>
+        </article>
+        <article class="native2item">
+          <h3 class="fz20 native2item__title">Seconds needed <br />for recovery</h3>
+          <p class="pt-1x">Ignite becomes operational from disk instantaneously. There is&nbsp;no&nbsp;need to&nbsp;wait for the data to&nbsp;get preloaded on&nbsp;restarts.</p>
+        </article>
+        <article class="native2item">
+          <h3 class="fz20 native2item__title">Query in-memory <br />and on-disk data</h3>
+          <p class="pt-1x">If&nbsp;any record is&nbsp;missing in&nbsp;memory, then Ignite reads it&nbsp;from disk. This is&nbsp;supported for all the APIs including SQL.</p>
+        </article>
+      </div>
+    </section>
+    <section class="native-howwork container">
+      <div class="native-howwork__wrap flexi">
+        <div class="native-howwork__left">
+          <h3 class="h5">How it works?</h3>
+          <div class="native-howwork__text pt-1">
+            <p>
+              The native persistence functions as&nbsp;a&nbsp;distributed, ACID, and SQL-compliant disk-based store. It&nbsp;integrates into the Ignite <a href="/features/multi-tier-storage.html">multi-tier storage</a> as&nbsp;a&nbsp;disk
+              tier.
+            </p>
+            <p class="pt-1">When the native persistence enabled, Ignite stores a&nbsp;superset of&nbsp;data on&nbsp;disk and caches as&nbsp;much as&nbsp;it&nbsp;can in&nbsp;memory.</p>
+          </div>
+        </div>
+        <div class="native-howwork__right">
+          <p>For example</p>
+          <p class="pt-1x">
+            If&nbsp;your application needs to&nbsp;store 200 records in&nbsp;an&nbsp;Ignite cluster and the memory capacity allows caching only 150&nbsp;records, then all 200 will be&nbsp;stored on&nbsp;disk, out of&nbsp;which 150 will
+            be&nbsp;served from memory while the rest 50&nbsp;from disk whenever the application requests them.
+          </p>
+        </div>
+      </div>
+    </section>
+    <section class="native-points container">
+      <h2 class="h4">Checkpointing And Write-Ahead Logging <br />Ensure Durability And Consistency Of&nbsp;Data</h2>
+      <div class="native-points__grid pt-5">
+        <div class="native-points__item fz20"><p>Committed transactions always survive failures</p></div>
+        <div class="native-points__item fz20"><p>The cluster can always be&nbsp;recovered to&nbsp;the latest successfully committed transaction</p></div>
+      </div>
+    </section>
+    <section class="native-steps">
+      <div class="container">
+        <h2 class="h4">Three-Step Process To&nbsp;Update Your Data <br />At&nbsp;In-Memory Speed But Not Losing A&nbsp;Bit</h2>
+        <img class="native-steps__pic" src="/img/features/native-stepspic.svg" alt="" />
+        <div class="native-steps__grid">
+          <article class="nativestepitem">
+            <i class="fz20 pb-1x">01</i>
+            <div class="nativestepitem__text">
+              <p>
+                As&nbsp;soon as&nbsp;the update comes from the application side, a&nbsp;record is&nbsp;updated in&nbsp;memory. Then, the change is&nbsp;added
+                <a href="https://ignite.apache.org/docs/latest/persistence/native-persistence.html#write-ahead-log">to&nbsp;the write-ahead log (WAL).</a>
+              </p>
+              <p>The purpose is&nbsp;to&nbsp;propagate updates to&nbsp;disk in&nbsp;the fastest way possible and provide a&nbsp;consistent recovery mechanism that remediates full cluster failures.</p>
+            </div>
+          </article>
+          <article class="nativestepitem">
+            <i class="fz20 pb-1x">02</i>
+            <div class="nativestepitem__text">
+              <p>As&nbsp;the WAL grows, it&nbsp;periodically gets checkpointed to&nbsp;the main storage.</p>
+              <p>
+                <a href="https://ignite.apache.org/docs/latest/persistence/native-persistence.html#checkpointing">Checkpointing</a> is&nbsp;the process of&nbsp;copying dirty pages from the memory tier to&nbsp;the partition files
+                on&nbsp;disk.
+              </p>
+              <p class="nativestepitem__small">A&nbsp;dirty page is&nbsp;a&nbsp;page that was updated in&nbsp;memory, was appended to&nbsp;the WAL, but was not written to&nbsp;the respective partition file on&nbsp;disk yet.</p>
+            </div>
+          </article>
+          <article class="nativestepitem">
+            <i class="fz20 pb-1x">03</i>
+            <div class="nativestepitem__text">
+              <p>After a&nbsp;while, the information about updates in&nbsp;WAL can be&nbsp;removed, compressed or&nbsp;moved to&nbsp;archive.</p>
+              <p>So&nbsp;you can reuse your disk space.</p>
+            </div>
+          </article>
+        </div>
+      </div>
+    </section>
+    <section class="nativecode container jsTabWrap">
+      <header class="blockheader blockheader--spl flexi">
+        <h2 class="h4 blockheader__left">You Decide Which Data To Persist</h2>
+        <div class="blockheader__right fz20">
+          <p>Toggle a&nbsp;single configuration setting to&nbsp;turn a&nbsp;cluster into a&nbsp;database <br />that scales across memory and disk</p>
+        </div>
+      </header>
+      <div class="nativecode__tabctrls flexi">
+        <a class="nativecode__link active" href="#" data-tablink="nativeTabXML">XML</a><a class="nativecode__link" href="#" data-tablink="nativeTabJava">Java</a><a class="nativecode__link" href="#" data-tablink="nativeTabNET">C#/.NET</a>
+      </div>
+      <div class="nativecode__tabs">
+        <div class="nativecode__tab active" data-tab="nativeTabXML">
+          <pre class="nativecode__codebox"> <code class="xml">&lt;bean class="org.apache.ignite.configuration.IgniteConfiguration"&gt;
+    &lt;property name="dataStorageConfiguration"&gt;
+        &lt;bean class="org.apache.ignite.configuration.DataStorageConfiguration"&gt;
+            &lt;property name="defaultDataRegionConfiguration"&gt;
+                &lt;bean class="org.apache.ignite.configuration.DataRegionConfiguration"&gt;
+                    &lt;property name="persistenceEnabled" value="true"/&gt;
+                &lt;/bean&gt;
+            &lt;/property&gt;
+        &lt;/bean&gt;
+    &lt;/property&gt;
+&lt;/bean&gt;</code></pre>
+        </div>
+        <div class="nativecode__tab" data-tab="nativeTabJava">
+          <pre class="nativecode__codebox"> <code class="java">IgniteConfiguration cfg = new IgniteConfiguration();
+
+DataStorageConfiguration storageCfg = new DataStorageConfiguration();
+
+// Enable Ignite Persistence
+storageCfg.getDefaultDataRegionConfiguration().setPersistenceEnabled(true);
+
+// Using the new storage configuration
+cfg.setDataStorageConfiguration(storageCfg);</code></pre>
+        </div>
+        <div class="nativecode__tab" data-tab="nativeTabNET">
+          <pre class="nativecode__codebox"> <code class="csharp">var cfg = new IgniteConfiguration
+{
+    DataStorageConfiguration = new DataStorageConfiguration
+    {
+        DefaultDataRegionConfiguration = new DataRegionConfiguration
+        {
+            Name = "Default_Region",
+            PersistenceEnabled = true
+        }
+    }
+};</code></pre>
+        </div>
+      </div>
+    </section>
+    <!-- /.nativecode-->
+    <section class="native-bottom container">
+      <div class="native-bottom__grid">
+        <article class="nativebotblock">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-rocket.svg" alt="" /><span>Ready to Start?</span></h3>
+          <p class="nativebotblock__text">Discover more details about native persistence <br />and configure it&nbsp;for your use-case</p>
+          <a class="nativebotblock__link arrowlink" href="https://ignite.apache.org/docs/latest/persistence/native-persistence" target="_blank">Native Persistence Usage and Configuration</a>
+        </article>
+        <article class="nativebotblock nativebotblock--learn">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-docs.svg" alt="" /><span>Want to&nbsp;Learn More?</span></h3>
+          <p class="nativebotblock__text">
+            Check out the details of&nbsp;native persistence <br />implementation, <a href="https://www.youtube.com/watch?v=6Yg5QW-XFVc&list=PLMc7NR20hA-I2EfyXeaSRHY5dRFtK_NF0&index=6" target="_blank">or&nbsp;watch a&nbsp;video</a>
+          </p>
+          <a class="nativebotblock__link arrowlink" href="https://cwiki.apache.org/confluence/display/IGNITE/Ignite+Persistent+Store+-+under+the+hood" target="_blank">Native Persistence Implementation Details</a>
+        </article>
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/community.html b/public/community.html
new file mode 100644
index 0000000..509a651
--- /dev/null
+++ b/public/community.html
@@ -0,0 +1,1030 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>Community | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a class="hdrmenu__current" href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a class="hdrmenu__current" href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="cmtyhero">
+      <div class="container">
+        <div class="cmtyhero__main">
+          <h1 class="cmtyhero__h1">Welcome To The Apache <br />Ignite Community</h1>
+          <div class="cmtyhero__text">The community of software engineers, tech writers, and technologists who drive the evolution of a top-5 project of the Apache Software Foundation</div>
+          <div class="cmtyhero__sub"><a href="https://blogs.apache.org/ignite/entry/apache-ignite-momentum-highlights-from" target="_blank">Learn more </a>about Ignite ranking in various categories.</div>
+        </div>
+        <img class="cmtyhero__img" src="/img/community/b1-photo.svg" alt="Welcome to the Apache Ignite Community" />
+      </div>
+    </section>
+    <!-- /.cmtyhero-->
+    <section class="cmtynavblock jsNavBlock">
+      <div class="container">
+        <ul class="cmtynavblock__list flexi">
+          <li><a class="cmtynavblock__active" href="#story"> Learn Our Story</a></li>
+          <li><a href="#community">Meet the Community</a></li>
+          <li><a href="#contributing">Start Contributing</a></li>
+          <li><a href="#faq">Ask a Question</a></li>
+        </ul>
+      </div>
+    </section>
+    <!-- /.cmtynavblock-->
+    <section class="cmtyhistory">
+      <div class="container" id="story">
+        <div class="cmtyhistory1">
+          <h2 class="cmtyhistory1__title">Apache Ignite Story</h2>
+          <div class="cmtyhistory1__wrap flexi">
+            <div class="cmtyhistory1__left">
+              <div class="cmtyhistory__year">2014</div>
+              <img src="/img/community/b3-rocket1.svg" alt="" />
+            </div>
+            <div class="cmtyhistory1__right">
+              <h3 class="cmtyhistory1__h3 fz30 pb-3">Ignite is contributed to ASF</h3>
+              <p>A <a href="https://incubator.apache.org/projects/ignite.html" target="_blank">new project enters the Apache Software Foundation incubator</a> under the name of "Apache Ignite"🚀. The first members form its community.</p>
+              <div class="cmtyhistory__hr" data-hideopen="cmtyhistory1"><i></i><span></span></div>
+              <div class="cmtyhistory__more" data-hidebox="cmtyhistory1">
+                <p>
+                  At&nbsp;that time, Ignite is&nbsp;used as&nbsp;a&nbsp;distributed in-memory data fabric for computing and transacting on&nbsp;large-scale data sets in&nbsp;real-time, orders of&nbsp;magnitude faster than possible with
+                  traditional disk-based solutions.
+                </p>
+                <blockquote class="cmtyhistory__quote">
+                  It&nbsp;was time of&nbsp;intensive learning experience. While being in&nbsp;the Incubator, guys were learning how to&nbsp;build a&nbsp;vibrant community, create releases and do&nbsp;tings other open source
+                  projects&nbsp;do.
+                </blockquote>
+                <div class="cmtyhistory__avaavtor pt-2 flexi">
+                  <div class="cmtyhistory__ava"><img src="/img/community/b2-cos.jpg" alt="" /></div>
+                  <div class="cmtyhistory__avaright">
+                    <div class="cmtyhistory__avaname">Cos Boudnik</div>
+                    <div class="cmtyhistory__avaproff">ASF member, Apache Ignite Mentor</div>
+                  </div>
+                </div>
+              </div>
+            </div>
+          </div>
+        </div>
+        <!-- /.cmtyhistory1-->
+        <div class="cmtyhistory2">
+          <div class="cmtyhistory2__wrap flexi">
+            <div class="cmtyhistory2__right">
+              <div class="cmtyhistory__year cmtyhistory__year--right">2015</div>
+              <img src="/img/community/b3-rocket2.svg" alt="" />
+            </div>
+            <div class="cmtyhistory2__left">
+              <h3 class="cmtyhistory1__h3 fz30 pb-3">Ignite graduates from the incubator</h3>
+              <p>
+                In&nbsp;less than a&nbsp;year <a href="https://blogs.apache.org/foundation/entry/the_apache_software_foundation_announces79" target="_blank">Ignite successfully graduates</a> from the ASF incubator and became
+                a&nbsp;top-level project of&nbsp;the Apache Software Foundation.
+              </p>
+              <div class="cmtyhistory__hr" data-hideopen="cmtyhistory2"><i></i><span></span></div>
+              <div class="cmtyhistory__more" data-hidebox="cmtyhistory2">
+                <p>
+                  The community keeps expanding rapidly. Hundreds of&nbsp;developers and architects start using Ignite as&nbsp;a&nbsp;distributed in-memory data grid (aka. write-through/read-through cache) for its native support
+                  of&nbsp;SQL, ACID transactions and high-performance computing APIs.
+                </p>
+              </div>
+            </div>
+          </div>
+        </div>
+        <!-- /.cmtyhistory2-->
+        <div class="cmtyhistory3">
+          <div class="cmtyhistory3__wrap flexi">
+            <div class="cmtyhistory3__left">
+              <div class="cmtyhistory__year">2017</div>
+              <img src="/img/community/b3-rocket3.svg" alt="" />
+            </div>
+            <div class="cmtyhistory3__right">
+              <h3 class="cmtyhistory1__h3 fz30 pb-3">Ignite introduces Native Persistence and becomes a Top-5 Project</h3>
+              <p>In 2017, two notable events happened.</p>
+              <div class="cmtyhistory__hr" data-hideopen="cmtyhistory3"><i></i><span></span></div>
+              <div class="cmtyhistory__more" data-hidebox="cmtyhistory3">
+                <p class="pb-3">
+                  First, with the donation of&nbsp;the Ignite native persistence to&nbsp;the project&rsquo;s codebase, a&nbsp;new chapter in&nbsp;the Ignite story begins. Since then, many will be&nbsp;using Ignite as&nbsp;a&nbsp;distributed
+                  database that scales across memory and disk with no&nbsp;compromises💥.
+                </p>
+                <p>Second, that&rsquo;s the year when Ignite is&nbsp;ranked as&nbsp;a&nbsp;top-5 project of&nbsp;the ASF in&nbsp;various categories 🏆 for the first time. This trend continues in&nbsp;the years to&nbsp;come.</p>
+              </div>
+            </div>
+          </div>
+        </div>
+        <!-- /.cmtyhistory3-->
+        <div class="cmtyhistory2 cmtyhistory4">
+          <div class="cmtyhistory2__wrap flexi">
+            <div class="cmtyhistory2__right">
+              <div class="cmtyhistory__year cmtyhistory__year--right">2020</div>
+              <img src="/img/community/b3-rocket4.svg" alt="" />
+            </div>
+            <div class="cmtyhistory2__left">
+              <h3 class="cmtyhistory1__h3 fz30 pb-3">Ignite becomes (officially) <br />a distributed database</h3>
+              <p>In 3 years, after the initial release of the Ignite Native Persistence, the community and application developers carried on improving and adopting this capability for mission-critical production workloads.</p>
+              <div class="cmtyhistory__hr" data-hideopen="cmtyhistory4"><i></i><span></span></div>
+              <div class="cmtyhistory__more" data-hidebox="cmtyhistory4">
+                <p>Finally, after seeing the rapid adoption of Ignite as a database by application developers, the community repositions Ignite as "distributed database for high-performance computing with in-memory speed".</p>
+              </div>
+            </div>
+          </div>
+        </div>
+        <!-- /.cmtyhistory4-->
+        <div class="cmtyhistory3 cmtyhistory5">
+          <div class="cmtyhistory3__wrap flexi">
+            <div class="cmtyhistory3__left">
+              <div class="cmtyhistory__year">Until now</div>
+              <img src="/img/community/b3-rocket5.svg" alt="" />
+            </div>
+            <div class="cmtyhistory3__right">
+              <h3 class="cmtyhistory1__h3 fz30 pb-3">Ignite 3.0 version is under way</h3>
+              <p>
+                Even when your project can boast of&nbsp;hundreds of&nbsp;thousands of&nbsp;downloads a&nbsp;month and is&nbsp;being selected by&nbsp;elite developers and architects for applications that are used by&nbsp;millions
+                of&nbsp;people daily, there is&nbsp;still room for innovation.
+              </p>
+              <div class="cmtyhistory__hr" data-hideopen="cmtyhistory5"><i></i><span></span></div>
+              <div class="cmtyhistory__more" data-hidebox="cmtyhistory5">
+                <p>Ignite 3&nbsp;is a&nbsp;significant leap forward for both the project and its community. Join or&nbsp;support&nbsp;us in&nbsp;an&nbsp;effort to&nbsp;create a&nbsp;cutting-edge distributed database...</p>
+              </div>
+            </div>
+          </div>
+        </div>
+        <!-- /.cmtyhistory5-->
+      </div>
+    </section>
+    <!-- /.cmtyhistory-->
+    <section class="cmty-meet" id="community">
+      <div class="container">
+        <div class="cmty-meet__wrap flexi">
+          <div class="cmty-meet__main">
+            <h2 class="cmty-meet__h2">Meet The Community</h2>
+            <div class="cmty-meet__text pt-3">A global community of professionals with different skills and experiences who drive the evolution of Ignite together 3.0 version is under way.</div>
+            <div class="cmty-meet__sub"><a href="http://www.apache.org/theapacheway/" target="_blank">The Apache Way</a> &ndash; get to know our collaboration and contribution values with principles.</div>
+          </div>
+          <div class="cmty-meet__pic"><img src="/img/community/b4-img.svg" alt="" /></div>
+        </div>
+      </div>
+    </section>
+    <!-- /.cmty-meet-->
+    <section class="cmty-contrib">
+      <div class="container">
+        <div class="cmty-contrib__wrap flexi">
+          <div class="cmty-contrib__main">
+            <h2 class="h4">Contributers</h2>
+            <div class="cmty-contrib__text pt-2">
+              More than 100 members help the project to grow and progress daily. Code contributions, documentation creation, project awareness, developer support — <strong>is a sample of contributions that we recognize.</strong>
+            </div>
+          </div>
+          <div class="cmty-contrib__pic"><img src="/img/community/b5-img.png" alt="" /></div>
+        </div>
+      </div>
+    </section>
+    <!-- /.cmty-contrib-->
+    <section class="cmty-committers">
+      <div class="container">
+        <h2 class="h4">Committers</h2>
+        <div class="cmty-committers__text pt-2">Most active contributors who make a&nbsp;significant contribution <br />to&nbsp;the project become Apache Ignite committers.</div>
+        <p class="cmty-committers__small pt-2"><a href="https://ignite.apache.org/community/resources.html#people" target="_blank">Here is</a> the list of committers for the project.</p>
+        <div class="committers__wrap flexi">
+          <div class="committers__left">
+            <div class="committer flexi">
+              <div class="committer__name">Alexander Shapkin</div>
+              <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+            </div>
+            <div class="committer flexi">
+              <div class="committer__name">Alexey Goncharuk</div>
+              <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+            </div>
+            <div class="committer flexi">
+              <div class="committer__name">Alexey Kuznetsov</div>
+              <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+            </div>
+            <div class="committer flexi">
+              <div class="committer__name">Alexey Plehanov</div>
+              <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+            </div>
+            <div class="committer flexi">
+              <div class="committer__name">Alexey Scherbakov</div>
+              <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+            </div>
+            <div class="committer flexi">
+              <div class="committer__name">Alexey Zinoviev</div>
+              <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+            </div>
+            <a class="committers__morelink" href="#" data-hideopen="committersLeft" data-invis="1">Load more</a>
+            <div class="committers__more jsOpener" data-hidebox="committersLeft">
+              <div class="jsOpenerWrap">
+                <div class="committer flexi">
+                  <div class="committer__name">Andrey Alexandrov</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Andrey Gura</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Andrey Novikov</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Andrew Mashenkov</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Anton Vinogradov</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Artem Budnikov</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Branko Čibej</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Denis Magda</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Dmitriy Govorukhin</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Dmitriy Pavlov*</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Dmitriy Setrakyan</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Evans Ye</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Evgeny Stanilovsky</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Gianfranco Murador</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Henry Saputra</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Igor Rudyak</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Igor Sapego</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Igor Seliverstov</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Ilya Kasnacheev</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Ilya Lantukh</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Ilya Sterin</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Irina Vasilinets</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Ivan Bessonov</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Ivan Daschinsky</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Ivan Pavlukhin</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Ivan Rakov</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+              </div>
+            </div>
+          </div>
+          <div class="committers__right">
+            <div class="committer flexi">
+              <div class="committer__name">Konstantin Boudnik</div>
+              <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+            </div>
+            <div class="committer flexi">
+              <div class="committer__name">Kseniya Romanova</div>
+              <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+            </div>
+            <div class="committer flexi">
+              <div class="committer__name">Maxim Muzafarov</div>
+              <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+            </div>
+            <div class="committer flexi">
+              <div class="committer__name">Mauricio Stekl</div>
+              <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+            </div>
+            <div class="committer flexi">
+              <div class="committer__name">Michael Stack</div>
+              <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+            </div>
+            <div class="committer flexi">
+              <div class="committer__name">Nikita Amelchev</div>
+              <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+            </div>
+            <a class="committers__morelink" href="#" data-hideopen="committersRight" data-invis="1">Load more</a>
+            <div class="committers__more jsOpener" data-hidebox="committersRight">
+              <div class="jsOpenerWrap">
+                <div class="committer flexi">
+                  <div class="committer__name">Nikita Ivanov</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Nikolai Izhikov</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Nikolai Tikhonov</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Ognen Duzlevski</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Pavel Tupitsyn</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Pavel Kovalenko</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Peter Ivanov</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Raúl Kripalani</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Roman Shaposhnik</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Roman Shtykh</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Saikat Maitra</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Semyon Boikov</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Sergey Chugunov</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Sergey Evdokimov</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Sergey Khisamov</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Sergey Vladykin</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Sergey Stronchinsky</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Taras Ledkov</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Valentin Kulichenko</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Vladimir Ozerov</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Vladisav Jelisavcic</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Vyacheslav Daradur</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Vyacheslav Koptilin</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Yakov Zhdanov</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Yury Babak</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+                <div class="committer flexi">
+                  <div class="committer__name">Zhenya Stanilovsky</div>
+                  <a class="committer__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="committer__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+                </div>
+              </div>
+            </div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.cmty-committers -->
+    <section class="cmty-pm">
+      <div class="container">
+        <h2 class="fz30">Project Management Committee</h2>
+        <div class="cmty-committers__text pt-2">A group of Ignite committers who oversee project management and operational matters. <br />They vote on new committers, releases and do other vital decisions.</div>
+        <p class="cmty-committers__small pt-2"><a href="#">Here is</a> the list of PMC members for the project.</p>
+        <div class="cmty-pm__wrap pt-5">
+          <article class="cmty-pmitem">
+            <div class="cmty-pmitem__proff"><img src="/img/community/b7-chair-star.svg" alt="" /><span>CHAIR</span></div>
+            <h3 class="cmty-pmitem__name h5">Dmitriy <br />Pavlov</h3>
+            <small class="cmty-pmitem__work pt-2"></small>
+            <div class="cmty-pmitem__links flexi">
+              <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+            </div>
+          </article>
+          <article class="cmty-pmitem">
+            <h3 class="cmty-pmitem__name h5">Alexey Goncharuk</h3>
+            <small class="cmty-pmitem__work pt-2"></small>
+            <div class="cmty-pmitem__links flexi">
+              <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+            </div>
+          </article>
+          <article class="cmty-pmitem">
+            <h3 class="cmty-pmitem__name h5">Alexey Kuznetsov</h3>
+            <small class="cmty-pmitem__work pt-2"></small>
+            <div class="cmty-pmitem__links flexi">
+              <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+            </div>
+          </article>
+          <article class="cmty-pmitem">
+            <h3 class="cmty-pmitem__name h5">Alexey Plehanov</h3>
+            <small class="cmty-pmitem__work pt-2"></small>
+            <div class="cmty-pmitem__links flexi">
+              <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+            </div>
+          </article>
+        </div>
+        <div class="cmty-pm__more jsOpener" data-hidebox="pmMore">
+          <div class="jsOpenerWrap cmty-pm__wrap">
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Alexey Zinoviev</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Andrey Gura</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Andrey Novikov</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Anton Vinogradov</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Denis Magda</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Dmitriy Setrakyan</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Evans Ye</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Gianfranco Murador</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Igor Sapego</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Ilya Kasnacheev</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Ilya Sterin</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Irina Vasilinets</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Ivan Pavlukhin</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Konstantin Boudnik</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Kseniya Romanova</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Maxim Muzafarov</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Nikita Ivanov</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Nikolai Izhikov</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Nikolai Tikhonov</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Ognen Duzlevski</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Pavel Tupitsyn</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Raúl Kripalani</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Roman Shaposhnik</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Roman Shtykh</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Saikat Maitra</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Semyon Boikov</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Sergey Evdokimov</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Sergey Khisamov</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Sergey Vladykin</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Valentin Kulichenko</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Vladimir Ozerov</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+            <article class="cmty-pmitem">
+              <h3 class="cmty-pmitem__name h5">Yakov Zhdanov</h3>
+              <small class="cmty-pmitem__work pt-2"></small>
+              <div class="cmty-pmitem__links flexi">
+                <a class="cmty-pmitem__github" href="https://github.com/"><img src="/img/icon-github.svg" alt="" /></a><a class="cmty-pmitem__apache" href="/"><img src="/img/icon-pero.svg" alt="" /></a>
+              </div>
+            </article>
+          </div>
+        </div>
+        <a class="cmty-pm__morelink" href="#" data-hideopen="pmMore"> <i>Load more</i><span>Hide</span></a>
+      </div>
+    </section>
+    <!-- /.cmty-pm-->
+    <section class="cmty-startcont" id="contributing">
+      <div class="container">
+        <div class="cmty-startcont__wrap flexi">
+          <div class="cmty-startcont__main">
+            <h2 class="h3 cmty-startcont__title">Start Contributing</h2>
+            <div class="cmty-startcont__text h5 pt-3">
+              There are multiple ways of how you can contribute to Ignite &mdash; contribute to the codebase, help developers on the mailing lists, write technical docs or popularize our technology!
+            </div>
+          </div>
+          <div class="cmty-startcont__pic"><img src="/img/community/b8-img.svg" alt="" /></div>
+        </div>
+      </div>
+    </section>
+    <!-- /.cmty-startcont-->
+    <section class="cmty-docs">
+      <div class="container">
+        <h2 class="h4">Code and technical documentation contributions</h2>
+        <div class="cmty-docs__wrap flexi pt-5">
+          <div class="cmty-docblock">
+            <div class="cmty-docblock__icon"><img src="/img/community/b9-icon-code.svg" alt="" /></div>
+            <h3 class="cmty-docblock__title h4">Develop Ignite</h3>
+            <div class="cmty-docblock__text pt-2 fz20"><p>Contribute to the Apache Ignite:</p></div>
+            <ul class="cmty-docblock__list">
+              <li>code base</li>
+              <li>integrations and extensions</li>
+              <li>programming languages, such as .NET, Python, Node.JS, or other programming languages different from Java</li>
+            </ul>
+          </div>
+          <div class="cmty-docblock cmty-docblock--bg">
+            <div class="cmty-docblock__icon"><img src="/img/community/b9-icon-paper.svg" alt="" /></div>
+            <h3 class="cmty-docblock__title h4">Improve technical documentation</h3>
+            <div class="cmty-docblock__text pt-2 fz20"><p>Documentation educates users about Ignite capabilities, configuration techniques, optimization aspects and many other things.</p></div>
+            <ul class="cmty-docblock__list">
+              <li>Produce and maintain the documentation pages <br />or API references</li>
+              <li>Edit and correct existing content</li>
+            </ul>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.cmty-docs-->
+    <section class="cmty-ready">
+      <div class="container">
+        <h2 class="h4 pb-1">Ready to start?</h2>
+        <div class="cmty-ready__text fz20">4 Steps to Start Contributing to the Code and Technical Documentation</div>
+        <div class="cmty-ready__wrap pt-4">
+          <div class="cmty-ready__item">
+            <i>01</i>
+            <p class="fz20">
+              Create <a href="https://issues.apache.org/jira/" target="_blank">ASF JIRA <br />account</a>, if&nbsp;you haven&rsquo;t got it&nbsp;yet
+            </p>
+          </div>
+          <div class="cmty-ready__item">
+            <i>02</i>
+            <p class="fz20">Join <a href="mailto:dev-subscribe@ignite.apache.org" target="_blank">dev mailing list</a> and introduce yourself</p>
+          </div>
+          <div class="cmty-ready__item">
+            <i>03</i>
+            <p class="fz20 pb-2">Pick a ticket to start with</p>
+            <p><span class="cmty-ready__openlink" data-hideopen="cmtyready3">Chose the tickets to develop Apache Ignite:</span></p>
+            <div class="cmty-ready__hider" data-hidebox="cmtyready3">
+              <p><a href="https://issues.apache.org/jira/projects/IGNITE/issues/IGNITE-15437?filter=allopenissues" target="_blank">Click here</a> to view the tickets for code contribution</p>
+              <p><a href="https://issues.apache.org/jira/browse/IGNITE-15644?jql=project%20%3D%20IGNITE%20AND%20component%20%3D%20documentation" target="_blank">Click here</a> to view the tickets for technical documentation</p>
+            </div>
+          </div>
+          <div class="cmty-ready__item">
+            <i>04</i>
+            <p class="fz20">To get more details, check out the <a href="https://cwiki.apache.org/confluence/display/IGNITE/How+to+Contribute" target="_blank">Contribution and Development</a> process</p>
+          </div>
+        </div>
+        <div class="cmty-ready__bottom flexi">
+          <h3 class="cmty-ready__botttl">
+            <div class="h5">Top contributors 💪<br /></div>
+            <div class="cmty-ready__botlinks pt-1">
+              <a href="https://github.com/apache/ignite/graphs/contributors" target="_blank">@Ignite Core and <br />Documentation</a><br />
+              <a href="https://github.com/apache/ignite-extensions/graphs/contributors" target="_blank">@Ignite Extensions</a><br />
+              <a href="https://github.com/apache/ignite-teamcity-bot/graphs/contributors" target="_blank">@Ignite Team City </a><br />
+              <a href="https://github.com/apache/ignite-website" target="_blank">@Ignite Website</a><br />
+            </div>
+          </h3>
+          <div class="cmty-ready__screens">
+            <a href="https://github.com/sboikov" target="_blank"> <img src="/img/community/b11-stat1.jpg" alt="" /></a><a href="https://github.com/agoncharuk" target="_blank"> <img src="/img/community/b11-stat2.jpg" alt="" /></a>
+          </div>
+          <div class="cmty-ready__more"><a href="https://github.com/apache/ignite/graphs/contributors" target="_blank">Load more</a></div>
+        </div>
+      </div>
+    </section>
+    <!-- /.cmty-ready-->
+    <section class="cmty-red">
+      <div class="container">
+        <h2 class="h4">Contribute By Building The Awareness <br />Of Ignite And Helping Fellow Developers</h2>
+        <div class="cmty-red__wrap">
+          <article class="cmty-redblock cmty-red__wrap--bg tplbox">
+            <img class="tplbox__icon" src="/img/community/b12-code.svg" alt="" />
+            <h3 class="h4 pb-2">Build the Project Awareness</h3>
+            <p class="fz20">You can contribute by doing any project awareness activities.</p>
+            <ul class="dashlist pt-5">
+              <li><a href="https://recognition.gridgain.com/main?product=ignite" target="_blank">Create demos</a></li>
+              <li><a href="https://recognition.gridgain.com/main?product=ignite" target="_blank">Write a blog post</a></li>
+              <li><a href="https://recognition.gridgain.com/main?product=ignite" target="_blank">Talk about Ignite at conferences and other events</a></li>
+            </ul>
+          </article>
+          <article class="cmty-redblock tplbox">
+            <img class="cmty-redblock__questimg tplbox__icon" src="/img/community/b12-icon-quest.svg" alt="" />
+            <h3 class="h4 pb-2">Help application developers</h3>
+            <p class="fz20">If you already have some experience with Apache Ignite, for instance, you created your applications, or your services use AI, come and help others.</p>
+            <ul class="dashlist pt-5">
+              <li><a href="mailto:user@ignite.apache.org">Answer on the user list</a></li>
+              <li><a href="https://stackoverflow.com/questions/tagged/ignite" target="_blank">Answer on StackOverflow</a></li>
+            </ul>
+          </article>
+        </div>
+      </div>
+    </section>
+    <!-- /.cmty-red-->
+    <section class="cmty-redstart">
+      <div class="container">
+        <h2 class="fz30 pb-1">Ready to start?</h2>
+        <p class="fz20">2 steps to start contributing by building the awareness and helping developers</p>
+        <div class="cmty-redstart__wrap pt-4">
+          <article class="cmty-redstep cmty-redstep--1">
+            <i>01</i>
+            <p><a href="mailto:dev-subscribe@ignite.apache.org">Join dev mailing list</a> and introduce yourself</p>
+          </article>
+          <article class="cmty-redstep cmty-redstep--2">
+            <i>02</i>
+            <h3 class="cmty-redstep__h3">If you want to build project awareness</h3>
+            <p><a href="https://recognition.gridgain.com/about" target="_blank">Get instructions</a> and start spreading the word about Apache Ignite.</p>
+          </article>
+          <article class="cmty-redstep cmty-redstep--3">
+            <i>02</i>
+            <h3 class="cmty-redstep__h3">If you want to help application developpers</h3>
+            <p>
+              Look for new questions on the <a href="mailto:user-subscribe@ignite.apache.org">user mailing list</a> or <a href="https://stackoverflow.com/questions/tagged/ignite" target="_blank">StackOverflow</a> (#ignite) and help others
+              to use Ignite successfully.
+            </p>
+          </article>
+        </div>
+        <div class="cmty-redstart__bottom flexi">
+          <h3 class="cmty-redstart__bottitle h5">We do recognise and welcome non-code contributions. There are dozens of Apache Ignite community members who contribute this way</h3>
+          <a class="cmty-redstart__botright" href="https://recognition.gridgain.com/main?date=prev-quarter" target="_blank">
+            <iframe class="cmty-redstart__iframe themescroll" src="https://recognition-dev.gridgain.com/leaderboard-frame?limit=10&amp;interval=prev-quarter" frameborder="0"></iframe
+          ></a>
+        </div>
+      </div>
+    </section>
+    <!-- /.cmty-redstart-->
+    <section class="cmty-ask boxpiccenter" id="faq">
+      <div class="container">
+        <div class="cmty-ask__wrap flexi">
+          <div class="cmty-ask__main">
+            <h2 class="cmty-ask__title fz50 pb-3">Ask a Question</h2>
+            <div class="cmty-ask__text h5">Feel free to&nbsp;reach to&nbsp;our community if&nbsp;you have any <br />questions, doubts or&nbsp;proposals. There are a&nbsp;few <br />ways to&nbsp;do&nbsp;that</div>
+          </div>
+          <img class="cmty-ask__bg" src="/img/community/b15-askimg.svg" alt="" />
+        </div>
+      </div>
+    </section>
+    <!-- /.cmty-ask-->
+    <section class="faq">
+      <div class="container">
+        <article class="faqblock flexi">
+          <h3 class="faqblock__title h5"><img src="/img/community/b16-icon-quest.svg" alt="" /><span>For General Questions</span></h3>
+          <div class="faqblock__right">
+            <h4>By e-mail</h4>
+            <p>For general questions about Ignite <a href="mailto:user@ignite.apache.org">user@ignite.apache.org</a></p>
+            <div class="faqblock__buttons flexi pb-5 pt-2">
+              <a class="faqblock__button flexi" href="mailto:user-subscribe@ignite.apache.org"> <img class="faqblock__eicon" src="/img/icon-email+.svg" alt="" /><span>Subscribe</span></a
+              ><a class="faqblock__button flexi" href="mailto:user-unsubscribe@ignite.apache.org"> <img class="faqblock__eicon" src="/img/icon-email-.svg" alt="" /><span>Unsubscribe</span></a
+              ><a class="faqblock__button flexi" href="https://lists.apache.org/list.html?user@ignite.apache.org" target="_blank"> <img src="/img/icon-folder.svg" alt="" /><span>Archives</span></a>
+            </div>
+            <h4>On StackOverflow</h4>
+            <p>Many Ignite community members watch <a href="http://stackoverflow.com/questions/tagged/ignite" target="_blank">Stack Overflow</a> for the tag "ignite" or "apacheignite", so you can post your questions there as well.</p>
+            <div class="faqblock__buttons flexi pt-2">
+              <a class="faqblock__button flexi" href="http://stackoverflow.com/questions/tagged/ignite" target="_blank">
+                <img class="faqblock__stackicon" src="/img/icon-stackoverflow.svg" alt="" /><span>Ask question on StackOverflow</span></a
+              >
+            </div>
+          </div>
+        </article>
+        <!-- /.faqblock-->
+        <article class="faqblock flexi">
+          <h3 class="faqblock__title h5">
+            <img src="/img/community/b16-icon-comments.svg" alt="" /><span>For Contribution Related <br />Questions and Discussions</span>
+          </h3>
+          <div class="faqblock__right">
+            <h4>By e-mail</h4>
+            <p>For contribution-related discussions <a href="mailto:dev@ignite.apache.org">dev@ignite.apache.org</a></p>
+            <div class="faqblock__buttons flexi pb-4 pt-2">
+              <a class="faqblock__button flexi" href="mailto:dev-subscribe@ignite.apache.org"> <img class="faqblock__eicon" src="/img/icon-email+.svg" alt="" /><span>Subscribe</span></a
+              ><a class="faqblock__button flexi" href="mailto:dev-unsubscribe@ignite.apache.org"> <img class="faqblock__eicon" src="/img/icon-email-.svg" alt="" /><span>Unsubscribe</span></a
+              ><a class="faqblock__button flexi" href="https://lists.apache.org/list.html?user@ignite.apache.org" target="_blank"> <img src="/img/icon-folder.svg" alt="" /><span>Archives</span></a>
+            </div>
+            <h4>On StackOverflow</h4>
+            <p>
+              Many Ignite community contributors monitor <a href="http://stackoverflow.com/questions/tagged/ignite" target="_blank">Stack Overflow</a> for the tag "ignite" or "apacheignite" to support Ignite developers, so you can post your
+              questions there as well.
+            </p>
+            <div class="faqblock__buttons flexi pt-2">
+              <a class="faqblock__button flexi" href="http://stackoverflow.com/questions/tagged/ignite"> <img class="faqblock__stackicon" src="/img/icon-stackoverflow.svg" alt="" /><span>Ask question on StackOverflow</span></a>
+            </div>
+          </div>
+        </article>
+        <!-- /.faqblock-->
+        <article class="faqblock flexi">
+          <h3 class="faqblock__title h5"><img src="/img/community/b16-icon-reports.svg" alt="" /><span>Report an Issue </span></h3>
+          <div class="faqblock__right">
+            <h4>By e-mail</h4>
+            <p>For contribution-related discussions <a href="https://lists.apache.org/list.html?issues@ignite.apache.org">issues@ignite.apache.org</a></p>
+            <div class="faqblock__buttons flexi pb-5 pt-2">
+              <a class="faqblock__button flexi" href="mailto:notifications-subscribe@ignite.apache.org"> <img class="faqblock__eicon" src="/img/icon-email+.svg" alt="" /><span>Subscribe</span></a
+              ><a class="faqblock__button flexi" href="mailto:issues-unsubscribe@ignite.apache.org"> <img class="faqblock__eicon" src="/img/icon-email-.svg" alt="" /><span>Unsubscribe</span></a
+              ><a class="faqblock__button flexi" href="https://lists.apache.org/list.html?issues@ignite.apache.org" target="_blank"> <img src="/img/icon-folder.svg" alt="" /><span>Archives</span></a>
+            </div>
+            <h4>On Jira</h4>
+            <p>Visit <a href="https://issues.apache.org/jira/browse/IGNITE" target="_blank">Ignite Jira</a> if you would like to file a new issue or view existing issues.</p>
+            <div class="faqblock__buttons flexi pt-2">
+              <a class="faqblock__button flexi" href="http://stackoverflow.com/questions/tagged/ignite" target="_blank">
+                <img class="faqblock__stackicon" src="/img/icon-stackoverflow.svg" alt="" /><span>Ask question on StackOverflow</span></a
+              >
+            </div>
+          </div>
+        </article>
+        <!-- /.faqblock-->
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/css/acid-transactions.css b/public/css/acid-transactions.css
new file mode 100644
index 0000000..c54d4be
--- /dev/null
+++ b/public/css/acid-transactions.css
@@ -0,0 +1,223 @@
+.innerhero__pic--acid{
+    right: -182px;
+    top: -10px;
+}
+.acid1 {
+    padding-top: 13rem;
+    padding-bottom: 13rem;
+}
+.acid1__h2 {
+    max-width: 700px;
+    padding-bottom: 7rem;
+}
+.acid1__wrap {
+    justify-content: space-between;
+}
+.acid1__item {
+    width: calc(100% / 3 - 60px);
+}
+.acid1__title {
+    font-weight: 700;
+    line-height: 24px;
+    padding-left: 38px;
+    background: url(../img/features/icon-check-ok.svg) left center no-repeat;
+    background-size: 24px;
+}
+
+.acid2 {
+}
+.acid2__h2 {
+    font-size: 3.2rem;
+    line-height: 1.3;
+    font-weight: 400;
+    max-width: 840px;
+}
+.acid2__main {
+    flex-grow: 1;
+    max-width: 630px;
+    padding-right: 5rem;
+}
+.acid2__main p:not(:last-child){
+    margin-bottom: 1rem;
+}
+.acid2__subtitle {
+    padding-top: 8rem;
+    font-weight: 700;
+}
+.acid2__right {
+    margin-left: auto;
+    width: 546px;
+    flex-shrink: 0;
+}
+.acid2__funcimg {
+    display: block;
+    width: 100%;
+    height: auto;
+}
+
+
+.acid3 {
+    padding-bottom: 1rem;
+}
+.acid3__wrap {
+    justify-content: space-between;
+}
+.acid3__col {
+    width: calc(50% - 4rem);
+}
+.acid3__collead{
+    max-width: 400px;
+}
+.acid3__col .h5 {
+    font-weight: 700;
+}
+.acid3__small{
+    max-width: 575px;
+}
+.acid3__small p:not(:last-child){
+    margin-bottom: 1rem;
+}
+.acid3__detwrap{
+    margin-top: 2rem;
+    height: 0;
+    transition: height 0.3s ease;
+    overflow: hidden;
+}
+.acid3__detlink {
+    margin-top: 2rem;
+    text-decoration: none;
+    border-bottom: 1px dotted var(--blue);
+    display: inline-block;
+}
+.acid3__detlink::after{
+    content: "";
+    display: inline-block;
+    position: relative;
+    margin-left: 6px;
+    width: 10px;
+    height: 10px;
+    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%230070CC' d='M441.9 167.3l-19.8-19.8c-4.7-4.7-12.3-4.7-17 0L224 328.2 42.9 147.5c-4.7-4.7-12.3-4.7-17 0L6.1 167.3c-4.7 4.7-4.7 12.3 0 17l209.4 209.4c4.7 4.7 12.3 4.7 17 0l209.4-209.4c4.7-4.7 4.7-12.3 0-17z'%3E%3C/path%3E%3C/svg%3E");
+    background-repeat: no-repeat;
+    background-size: contain;
+    transition: transform 0.4s ease;
+}
+.acid3__detmore {
+    background: var(--grey);
+    border-radius: 1rem;
+    padding: 2rem 7rem 2rem 3rem;
+    position: relative;
+}
+.acid3__close {
+    position: absolute;
+    top: 2rem;
+    right: 2rem;
+    width: 30px;
+    height: 30px;
+    background: no-repeat;
+    border:none;
+}
+.acid3__close img{
+    display: block;
+    width: 24px;
+    height: 24px;
+    margin: 0 auto;
+    transform-origin: center center;
+    transform: rotate(45deg);
+    cursor: pointer;
+}
+
+
+
+
+
+
+@media (max-width:1199px){
+    .innerhero__pic--acid{
+        width: 500px;
+    }
+    .acid1__item{
+        width: calc(100% / 3 - 30px);
+    }
+    .acid2__right{
+        width: 50%;
+    }
+
+} /* END MEDIA 1199px */
+
+
+
+
+
+@media (max-width:992px){
+    .innerhero__pic--acid{
+        width: 400px;
+    }
+
+} /* END MEDIA 992px */
+
+
+
+
+
+
+@media (max-width:767px){
+    .acid1{
+        padding-top: 8rem;
+        padding-bottom: 6rem;
+    }
+    .acid1__h2{
+        padding-bottom: 5rem;
+    }
+    .acid1__wrap{
+        flex-flow: column nowrap;
+        align-items: stretch;
+    }
+    .acid1__item{
+        width: auto;
+        padding-bottom: 4rem;
+    }
+    .acid1__title{
+        font-size: 16px;
+        padding-left: 35px;
+    }
+    .acid1__text {
+        padding-top: 1.5rem;
+    }
+    .acid2__h2{
+        font-size: 2.8rem;
+    }
+    .acid2__h2 br{
+        display: none;
+    }
+    .acid2__wrap {
+        flex-flow: column nowrap;
+        align-items: stretch;
+    }
+    .acid2__main{
+        padding-right: 0;
+    }
+    .acid2__subtitle{
+        padding-top: 2rem;
+    }
+    .acid2__right{
+        width: 100%;
+        padding-top: 3rem;
+    }
+    .acid3{
+        padding-top: 8rem;
+    }
+    .acid3__wrap{
+        flex-flow: column nowrap;
+        align-items: stretch;
+    }
+    .acid3__col{
+        width: 100%;
+        padding-bottom: 4rem;
+    }
+    .acid3__col:last-child{
+        padding-bottom: 0;
+    }
+    .acid3__small{
+        padding-top: 3rem;
+    }
+} /* END MEDIA 767px */
\ No newline at end of file
diff --git a/public/css/compute-apis.css b/public/css/compute-apis.css
new file mode 100644
index 0000000..7fc0ffa
--- /dev/null
+++ b/public/css/compute-apis.css
@@ -0,0 +1,179 @@
+.innerhero__pic--computeapis {
+  width: 107rem;
+  height: auto;
+  top: auto;
+  bottom: -11rem;
+  transform: none;
+  left: 41%;
+}
+.compute1 {
+  padding-top: 9rem;
+  padding-bottom: 13rem;
+}
+
+.compute1__h2 {
+  max-width: 700px;
+  padding-bottom: 2rem;
+}
+.compute1__deskr {
+  font-size: 2rem;
+  line-height: 1.6;
+}
+.compute1__block {
+  padding-top: 7rem;
+}
+.compute1__item {
+  padding: 3.5rem 8rem 4rem 3.3rem;
+  background: #f6f6f6;
+  max-width: 402px;
+  border-radius: 10px;
+  max-height: 187px;
+}
+.compute1__item:first-child {
+  margin-right: 3rem;
+}
+.compute1__text {
+  line-height: 1.4;
+  margin-top: 2.4rem;
+  min-width: 289px;
+}
+
+.compute2 {
+  padding-top: 8rem;
+  padding-bottom: 10rem;
+  background: #e8f2fa;
+}
+.compute2__h2 {
+  letter-spacing: 2px;
+  text-transform: uppercase;
+  font-weight: normal;
+  font-size: 1.6rem;
+  line-height: 1.4;
+}
+.compute2-points__item::before {
+  content: "";
+  display: block;
+  width: 24px;
+  height: 24px;
+  left: 3rem;
+  top: 3.5rem;
+  background: url(../img/features/icon-check-ok.svg) no-repeat;
+  background-size: contain;
+}
+.compute2item__block {
+  margin-left: 1rem;
+}
+.compute2__grid {
+  display: grid;
+  grid-template-columns: repeat(3, 1fr);
+  grid-gap: 3rem;
+  grid-auto-rows: auto;
+  margin-top: 5rem;
+}
+.compute2item {
+  position: relative;
+  max-width: 300px;
+  display: flex;
+}
+
+.compute2__text {
+  font-size: 1.6rem;
+  line-height: 1.4;
+  margin-top: 2.4rem;
+}
+
+pre code.hljs {
+  display: block;
+  overflow-x: auto;
+  padding: 1em;
+}
+
+.compute3 {
+  padding-top: 13rem;
+  padding-bottom: 3rem;
+}
+.compute3__h2 {
+  max-width: 700px;
+  margin-top: 5rem;
+  margin-bottom: 2rem;
+}
+.compute3__text {
+  max-width: 800px;
+  font-size: 2rem;
+  line-height: 1.6;
+}
+
+.compute4 {
+  padding-top: 5rem;
+  justify-content: space-between;
+  align-items: stretch;
+  margin-bottom: 4rem;
+}
+.compute4__block {
+  width: calc(50% - 17px);
+  background: var(--blue4);
+  border-radius: 10px;
+  padding: 4rem;
+}
+.compute4__icon {
+  width: 32px;
+  height: 32px;
+  display: block;
+}
+.compute4__block--bad {
+  background: var(--red5);
+}
+.compute4__title {
+  max-width: 500px;
+}
+
+@media (max-width: 992px) {
+  .compute1__text {
+    min-width: 30rem;
+  }
+}
+@media (max-width: 767px) {
+  .compute1 {
+    padding-top: 6rem;
+    padding-bottom: 8rem;
+  }
+  .compute1__block {
+    flex-direction: column;
+    padding-top: 5rem;
+  }
+  .compute1__item:first-child {
+    margin-right: 0;
+    margin-bottom: 2rem;
+  }
+  .compute1__item {
+    width: 100%;
+  }
+  .compute1__text {
+    min-width: auto;
+  }
+  .compute2 {
+    padding-top: 6rem;
+    padding-bottom: 8rem;
+  }
+  .compute2__grid {
+    grid-template-columns: 1fr;
+  }
+
+  .compute4 {
+    padding-top: 4rem;
+    flex-flow: column nowrap;
+    align-items: stretch;
+  }
+  .compute4__block {
+    width: 100%;
+    margin-bottom: 2rem;
+    padding: 3rem 2rem;
+  }
+  .compute4__block br {
+    display: none;
+  }
+  .compute4__icon {
+    width: 24px;
+    height: 24px;
+  }
+}
diff --git a/public/css/database.css b/public/css/database.css
new file mode 100644
index 0000000..59f58c1
--- /dev/null
+++ b/public/css/database.css
@@ -0,0 +1,212 @@
+.innerhero__pic--database {
+  width: auto;
+  height: auto;
+  top: auto;
+  bottom: -11rem;
+  transform: none;
+  left: 72%;
+}
+.base2__text {
+  max-width: 510px;
+}
+.base1 {
+  padding-bottom: 13rem;
+}
+.base1__h2 {
+  max-width: 810px;
+}
+.base1__item {
+  margin-bottom: 2rem;
+  align-items: center;
+}
+.base1__item:last-child {
+  margin-bottom: 0;
+}
+.base1__block {
+  max-width: 510px;
+  margin-right: 14rem;
+}
+.base1__block:last-child {
+  margin-right: 0;
+}
+.base1__blocks {
+  margin-top: 5rem;
+  align-items: center;
+}
+.base1__black {
+  font-size: 2rem;
+  margin-bottom: 2rem;
+  margin-left: 1rem;
+}
+.base1__black:last-child {
+  margin-bottom: 0;
+}
+
+.base3 {
+  padding-top: 13rem;
+  padding-bottom: 13rem;
+}
+.base3__h2 {
+  max-width: 560px;
+}
+.base3__blocks {
+  margin-top: 5rem;
+}
+.base3__block {
+  border: 1px solid #e6e6e6;
+  border-radius: 10px;
+  padding: 4rem 6rem 3.5rem 4rem;
+  margin-right: 3rem;
+  max-height: 380px;
+}
+.base3__block:last-child {
+  margin-right: 0;
+}
+.base3__h3 {
+  font-size: 2rem;
+  height: 5.2rem;
+}
+.base3__image {
+  padding: 1.6rem;
+  background: #f6f6f6;
+  border-radius: 10px;
+  margin-bottom: 1rem;
+}
+
+.base3__images {
+  margin-top: 2.5rem;
+  margin-bottom: 2rem;
+  justify-content: space-between;
+}
+.base3__item {
+  flex-direction: column;
+  align-items: center;
+  margin-right: 3rem;
+  text-align: center;
+}
+.base3__subtext {
+  font-size: 1.4rem;
+  line-height: 1.8rem;
+}
+.base3__item:last-child {
+  margin-right: 0;
+}
+
+.base3__text {
+  color: #9c9c9c;
+  max-width: 280px;
+  height: 7.2rem;
+}
+.base5__text {
+  max-width: 540px;
+}
+
+.base3__textend {
+  max-width: 260px;
+}
+.base5__textend {
+  max-width: 480px;
+}
+
+@media (max-width: 1350px) {
+  .base3__blocks {
+    margin-top: 1rem;
+    flex-wrap: wrap;
+  }
+  .base3__h3 {
+    height: auto;
+  }
+  .base3__block {
+    margin-top: 2rem;
+    padding: 4rem;
+  }
+  .base3__images {
+    margin-top: 4rem;
+  }
+}
+
+@media (max-width: 1199px) {
+  .innerhero__pic--database {
+    width: 60rem;
+  }
+  .base1 {
+    padding-bottom: 8rem;
+  }
+  .base3 {
+    padding-top: 8rem;
+    padding-bottom: 8rem;
+  }
+}
+
+@media (max-width: 992px) {
+  .innerhero__pic--database {
+    width: 50rem;
+  }
+  .base1__block {
+    margin-right: 0rem;
+  }
+  .base1__block:last-child {
+    margin-right: 0;
+  }
+  .base3__blocks {
+    flex-direction: column;
+  }
+  .base3__text {
+    height: auto;
+  }
+  .base3__block {
+    margin-right: 0rem;
+    padding: 3rem;
+  }
+}
+
+@media (max-width: 767px) {
+  .base5__text {
+    max-width: 100%;
+  }
+  .base1__block {
+    max-width: 100%;
+  }
+  .base1 {
+    padding-bottom: 6rem;
+  }
+  .base1__blocks {
+    flex-direction: column;
+    align-items: flex-start;
+    margin-top: 3rem;
+  }
+  .base1__block:last-child {
+    margin-top: 3rem;
+  }
+  .base3 {
+    padding-top: 6rem;
+    padding-bottom: 6rem;
+  }
+  .base3__text {
+    max-width: 100%;
+  }
+  .base3__block {
+    width: 100%;
+    max-height: inherit;
+  }
+  .base3__images {
+    flex-wrap: wrap;
+    margin-top: 1rem;
+    width: 100%;
+  }
+  .base3__item {
+    margin-top: 1rem;
+  }
+  .base3__item {
+    margin-right: 2rem;
+  }
+}
+
+@media (max-width: 500px) {
+  .base3__block {
+    padding: 2rem;
+  }
+  .base3__item {
+    margin-right: 1rem;
+  }
+}
diff --git a/public/css/datagrid.css b/public/css/datagrid.css
new file mode 100644
index 0000000..c1f6fb4
--- /dev/null
+++ b/public/css/datagrid.css
@@ -0,0 +1,113 @@
+.innerhero__pic--datagrid {
+  width: 65rem;
+  height: auto;
+  top: auto;
+  bottom: -11rem;
+  transform: none;
+  left: 74%;
+}
+
+.grid1 {
+  padding-top: 13rem;
+  padding-bottom: 8rem;
+}
+.grid1__h2 {
+  font-weight: normal;
+  max-width: 860px;
+}
+.grid2 {
+  padding-top: 0;
+  padding-bottom: 0;
+}
+
+.grid4 {
+  padding-bottom: 14rem;
+}
+.grid4__h2 {
+  font-weight: bold;
+}
+.grid4__block {
+  max-width: 540px;
+  margin-left: 14rem;
+}
+
+.grid5 {
+  background: #f6f6f6;
+  padding-top: 8rem;
+  padding-bottom: 11rem;
+  margin-bottom: 13rem;
+}
+.grid5__h2 {
+  max-width: 890px;
+  font-weight: normal;
+}
+.grid5__blocks {
+  margin-top: 5rem;
+}
+.grid5__text {
+  max-width: 260px;
+}
+.grid5__item {
+  margin-right: 17rem;
+}
+.grid5__item:last-child {
+  margin-right: 0;
+}
+
+@media (max-width: 1199px) {
+  .grid1 {
+    padding-top: 8rem;
+    padding-bottom: 7rem;
+  }
+  .grid4__block {
+    margin-left: 10rem;
+  }
+  .grid4 {
+    padding-bottom: 8rem;
+  }
+  .grid5__item {
+    margin-right: 10rem;
+  }
+  .grid5 {
+    padding-top: 7rem;
+    padding-bottom: 8rem;
+    margin-bottom: 8rem;
+  }
+  .grid5__blocks {
+    margin-top: 4rem;
+  }
+}
+
+@media (max-width: 992px) {
+}
+
+@media (max-width: 767px) {
+  .grid1 {
+    padding-top: 6rem;
+    padding-bottom: 6rem;
+  }
+  .grid4__block {
+    max-width: 100%;
+    margin-left: 0;
+    margin-top: 2rem;
+  }
+  .grid4__blocks {
+    flex-direction: column;
+  }
+  .grid4 {
+    padding-bottom: 6rem;
+  }
+  .grid5__item {
+    margin-right: 0;
+    margin-top: 3rem;
+  }
+  .grid5 {
+    padding-top: 6rem;
+    padding-bottom: 6rem;
+    margin-bottom: 5rem;
+  }
+  .grid5__blocks {
+    margin-top: 0;
+    flex-direction: column;
+  }
+}
diff --git a/public/css/deployment-opts.css b/public/css/deployment-opts.css
new file mode 100644
index 0000000..874060b
--- /dev/null
+++ b/public/css/deployment-opts.css
@@ -0,0 +1,71 @@
+.innerhero__pic--deploy{
+    right: -25px;
+    top: -20px;
+}
+
+
+.deploymenytext{
+    padding-top: 13rem;
+}
+.deploymenytext__main{
+    width: 50%;
+}
+.deploymenytext__main p:not(:last-child){
+    margin-bottom: 2rem;
+}
+.deploymenytext__title{
+    font-weight: 700;
+}
+.deploymenytext__picwrap{
+    margin-left: auto;
+    padding: 6rem 9rem;
+    max-width: 542px;
+}
+.deploymenytext__pic{
+    display: block;
+    width: 100%;
+}
+
+
+
+
+
+
+
+@media (max-width:1199px){
+    .innerhero__pic--deploy{
+        right: -160px;
+    }
+    .deploymenytext__picwrap{
+        max-width: calc(50% - 5rem);
+    }
+}
+
+
+@media (max-width:992px){
+    .deploymenytext {
+        flex-flow: column nowrap;
+        align-items: stretch;
+        padding-top: 8rem;
+    }
+    .deploymenytext__main{
+        width: auto;
+    }
+    .deploymenytext__picwrap{
+        max-width: none;
+        margin: 5rem auto;
+    }
+}
+
+
+@media (max-width:767px){
+    .deploymenytext{
+        padding-top: 6rem;
+    }
+    .deploymenytext__picwrap{
+        margin-top: 3rem;
+    }
+    .deploymenytext__title{
+        padding-top: 0;
+    }
+}
\ No newline at end of file
diff --git a/public/css/digital-hub.css b/public/css/digital-hub.css
new file mode 100644
index 0000000..ea5d68e
--- /dev/null
+++ b/public/css/digital-hub.css
@@ -0,0 +1,267 @@
+.innerhero__pic--hub {
+  width: auto;
+  height: auto;
+  top: auto;
+  bottom: -11rem;
+  transform: none;
+  left: 78%;
+}
+.innerhero__mainhub {
+  max-width: 930px;
+  width: auto;
+}
+.hub2__grid {
+  display: flex;
+  justify-content: flex-start;
+  grid-gap: 0;
+  grid-template-columns: 0;
+}
+.hub2item {
+  max-width: 540px;
+}
+.hub2item:last-child {
+  margin-left: 7.7rem;
+}
+.hub2__text {
+  max-width: 360px;
+}
+.hub5__video {
+  font-size: 2.2rem;
+}
+.hub1 {
+  padding-top: 13rem;
+  padding-bottom: 13rem;
+}
+
+.hub1__image {
+  margin-left: 10.8rem;
+}
+.hub1__block {
+  margin-top: 5rem;
+  justify-content: space-between;
+}
+.hub1__title {
+  font-weight: bold;
+}
+.hub1__info {
+  max-width: 540px;
+}
+.hub1__text {
+  margin-top: 2rem;
+}
+.hub1__titleend {
+  margin-top: 5rem;
+}
+
+.hub3 {
+  padding-top: 13rem;
+  padding-bottom: 8rem;
+}
+.hub3__subtext {
+  max-width: 600px;
+  margin-top: 2.4rem;
+  margin-bottom: 4rem;
+}
+.hub3__part {
+  margin-right: 4rem;
+  font-size: 2rem;
+  font-weight: bold;
+  align-items: center;
+}
+.hub3__item {
+  margin-left: 1rem;
+}
+.hub3__blocks {
+  margin-top: 6.7rem;
+}
+.hub3__block {
+  max-width: 530px;
+}
+.hub3__block:last-child {
+  margin-left: 11rem;
+}
+.hub4 {
+  padding-bottom: 13rem;
+}
+
+.hub4__h2 {
+  max-width: 850px;
+  margin-bottom: 2rem;
+}
+.hub4__subtext {
+  max-width: 600px;
+  margin-right: 4rem;
+}
+.hub4__grey {
+  color: #9c9c9c;
+  max-width: 530px;
+}
+.hub4__numbers {
+  margin-top: 5rem;
+}
+.hub4__text {
+  margin-top: 1rem;
+  max-width: 220px;
+}
+.hub4__num {
+  color: #0070cc;
+  font-weight: bold;
+}
+.hub4__number {
+  margin-right: 21rem;
+}
+.hub4__number:last-child {
+  margin-right: 0;
+}
+.hub4__textall {
+  max-width: 180px;
+}
+.hub5__title {
+  padding-bottom: 1rem;
+}
+.hub5__text {
+  max-width: 430px;
+}
+.hub5__item {
+  width: 540px;
+}
+.hub5__twowrap {
+  justify-content: space-between;
+  max-width: calc(52% + 640px);
+}
+.comvideo__txthub {
+  max-width: 82%;
+}
+@media (max-width: 1199px) {
+  .innerhero__pic--hub {
+    width: 50rem;
+  }
+
+  .hub1 {
+    padding-top: 8rem;
+    padding-bottom: 8rem;
+  }
+  .hub1__image {
+    width: 50%;
+  }
+  .hub3 {
+    padding-top: 8rem;
+    padding-bottom: 6rem;
+  }
+  .hub3__blocks {
+    margin-top: 6rem;
+  }
+  .hub4__number {
+    margin-right: 15rem;
+  }
+  .hub4__number:last-child {
+    margin-right: 0;
+  }
+  .hub4 {
+    padding-bottom: 8rem;
+  }
+  .hub5__twowrap {
+    justify-content: space-between;
+    max-width: calc(60% + 540px);
+  }
+  .hub5__item {
+    width: 450px;
+  }
+}
+
+@media (max-width: 992px) {
+  .hub3__parts {
+    flex-wrap: wrap;
+  }
+  .hub3__part {
+    margin-bottom: 1rem;
+  }
+  .hub3__part:last-child {
+    margin-bottom: 0;
+  }
+  .hub5__twowrap {
+    flex-direction: column;
+    padding-top: 0;
+  }
+  .hub5__item {
+    width: 100%;
+    margin-top: 3rem;
+  }
+}
+
+@media (max-width: 767px) {
+  .hub2__grid {
+    flex-direction: column;
+  }
+  .hub2item:last-child {
+    margin-left: 0;
+    margin-top: 3rem;
+  }
+  .hub1 {
+    padding-top: 6rem;
+    padding-bottom: 6rem;
+  }
+  .hub1__block {
+    flex-direction: column;
+    margin-top: 3rem;
+  }
+  .hub1__image {
+    margin-left: 0;
+    width: 100%;
+    margin-top: 3rem;
+  }
+  .hub1__info {
+    max-width: 100%;
+  }
+  .hub1__titleend {
+    margin-top: 3rem;
+  }
+  .hub3 {
+    padding-top: 6rem;
+    padding-bottom: 5rem;
+  }
+  .hub3__subtext {
+    max-width: 100%;
+    margin-top: 2rem;
+    margin-bottom: 3rem;
+  }
+  .hub3__blocks {
+    margin-top: 3rem;
+    flex-direction: column;
+  }
+  .hub3__block:last-child {
+    margin-left: 0;
+    margin-top: 2rem;
+  }
+  .hub4__subtext {
+    max-width: 100%;
+    margin-right: 0rem;
+  }
+  .hub4__grey {
+    max-width: 100%;
+    margin-top: 1rem;
+  }
+  .hub4__blocks {
+    flex-direction: column;
+  }
+  .hub4__number {
+    margin-right: 0;
+    margin-top: 1rem;
+  }
+  .hub4__numbers {
+    flex-direction: column;
+    margin-top: 1rem;
+  }
+  .hub4 {
+    padding-bottom: 6rem;
+  }
+  .hub4__textall {
+    max-width: 100%;
+  }
+  .hub4__text {
+    max-width: 100%;
+  }
+  .hub3__parts {
+    flex-direction: column;
+  }
+}
diff --git a/public/css/download.css b/public/css/download.css
new file mode 100644
index 0000000..ebdeca5
--- /dev/null
+++ b/public/css/download.css
@@ -0,0 +1,400 @@
+.innerhero--download{
+    padding: 4rem 0 7rem;
+}
+.innerhero__pic--download{
+    top: -68px;
+    right: -110px;
+}
+.downloadtitle {
+    padding-top: 11rem;
+}
+.downloadtitle h2{
+    font-size: 3.2rem;
+    line-height: 1.35;
+    font-weight: 400;
+}
+
+.download-src {
+    padding-top: 7rem;
+    padding-bottom: 8rem;
+}
+.downtable__wrap {
+    overflow-x: auto;
+    padding-bottom: 5px;
+}
+.downtable {
+    background: var(--grey);
+    border-radius: 1rem;
+    width: 100%;
+    border-collapse: collapse;
+}
+.downtable th,
+.downtable td{
+    height: 9rem;
+    vertical-align: middle;
+    font-weight: 700;
+    border-bottom: 1px solid var(--grey2);
+    position: relative;
+    text-align: left;
+}
+.downtable td{
+    height: 6rem;
+    white-space: nowrap;
+    font-weight: 400;
+    white-space: nowrap;
+    text-overflow: ellipsis;
+    overflow: hidden;
+}
+.downtable tr:last-child td{
+    border-bottom: none;
+}
+.downtable th:first-child,
+.downtable td:first-child{
+    padding-left: 3rem;
+}
+.downtable th:last-child,
+.downtable td:last-child{
+    padding-right: 2rem;
+}
+.downtable1 {
+    width: 15%;
+}
+.downtable2 {
+    width: 20%;
+}
+.downtable3 {
+    width: 15%;
+}
+.downtable4 {
+    width: 15%;
+}
+.downtable5 {
+    width: 35%;
+}
+.downtable td a:not(:last-child)::after{
+    content:", ";
+    display: inline-block;
+    margin-right: 5px;
+}
+.sourcelink::after{
+    display: none !important;
+}
+.downtable__meny {
+    z-index: 10;
+    display: block;
+    position: absolute;
+    right: 2rem;
+    height: 100%;
+    top:50%;
+    transform: translateY(-50%);
+    width: 48px;
+    height: 48px;
+}
+.downtable__button {
+    display: block;
+    width: 100%;
+    height: 100%;
+    position: relative;
+    width: 100%;
+    height: 100%;
+    border-radius: 1rem;
+    background: url(../img/downloads/icon-download.svg) center center no-repeat;
+    background-color:var(--blue);
+    background-size: 18px;
+    border:none;
+    cursor: pointer;
+    transition: background 0.2s ease;
+}
+.downtable__button:hover,
+.downtable__button.active{
+    background-color: var(--blue2);
+}
+.downtable__popup {
+    position: absolute;
+    display: block;
+    right: 0;
+    top: calc(100% + 9px);
+    border-radius: 1rem;
+    background: white;
+    box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.2);
+    z-index: 5;
+    width: 107px;
+    padding: 2rem;
+    opacity: 0;
+    pointer-events: none;
+    transform: translateY(-6px);
+    transition: transform 0.2s ease, opacity 0.2s ease;
+}
+.downtable__button.active + .downtable__popup{
+    pointer-events: auto;
+    height: auto;
+    opacity: 1;
+    transform: translateY(0px);
+}
+.downtable__popup a{
+    display: block;
+    font-weight: 700;
+    color:#000;
+    text-transform: uppercase;
+    text-align: center;
+    margin-bottom: 9px;
+}
+.downtable__popup a:last-child{
+    margin-bottom: 0;
+}
+.downtable__popup a:hover{
+    text-decoration: none;
+    color:var(--blue);
+}
+
+
+.download-src__bottom {
+    justify-content: space-between;
+}
+.download-src__left {
+    width: calc(50% - 5rem);
+}
+.download-src__right {
+    width: calc(50% - 5rem);
+}
+.download-choser {
+    align-items: center;
+}
+.download-choser__label {
+    font-weight: 700;
+    padding-right: 4rem;
+}
+.download-choser__select {
+    border-radius: 1rem;
+    background: var(--grey);
+    flex-grow: 1;
+    align-items: center;
+    height: 6rem;
+    padding: 0 1rem;
+}
+.jsDownloadDomenSelect {
+    display: block;
+    flex-grow: 1;
+    height: calc(100% - 1.5rem);
+    font-size: 16px;
+    padding-left: 1rem;
+    border:1px solid var(--grey2);
+    background: url(../img/downloads/icon-shevron.svg) var(--grey) calc(100% - 10px) center no-repeat;
+    border-radius: 1rem;
+}
+.download-choser__button {
+    height: calc(100% - 1.5rem);
+    width: 10rem;
+    background: var(--grey2);
+    border-radius: 1rem;
+    display: block;
+    flex-shrink: 0;
+    display: flex;
+    flex-flow: row nowrap;
+    align-items: center;
+    justify-content: center;
+    color:#000;
+    margin-left: 1rem;
+}
+.download-choser__button:hover{
+    color:#fff;
+    text-decoration: none;
+    background: var(--grey4);
+}
+
+
+.download-bin {
+    padding-top: 8rem;
+}
+.download-bin__header {
+    max-width: 768px;
+}
+
+
+.downloadslim {
+    padding-top: 8rem;
+    padding-bottom: 4px;
+}
+
+
+.download-docker {
+    padding-top: 8rem;
+}
+.downverify {
+    padding-bottom: 5rem;
+}
+.downverify__wrap {
+    justify-content: space-between;
+}
+.downverify__left {
+    width: calc(50% - 3rem);
+}
+.downverify__right {
+    width: calc(50% - 3rem);
+    margin-left: auto;
+    max-width: 648px;
+}
+.downverify__code {
+    margin-top: 2rem;
+    border-radius: 1rem;
+    padding: 2rem 3rem;
+    display: block;
+    background: var(--grey);
+    font-family: monospace;
+    font-size: 13px;
+    line-height: 1.8;
+    white-space: nowrap;
+}
+.downfooter {
+    padding-top: 8rem;
+    padding-bottom: 5rem;
+}
+.nomargin {
+    margin: 0;
+}
+.party3rd {
+    padding-top: 8rem;
+    padding-bottom: 13rem;
+}
+.party3rd__wrap {
+    justify-content: space-between;
+}
+.party3rd__wrap p:not(:last-child){
+    margin-bottom: 1rem;
+}
+.party3rd__left {
+    width: calc(50% - 3rem);
+    max-width: 542px;
+}
+.party3rd__right {
+    width: calc(50% - 3rem);
+    max-width: 542px;
+}
+
+
+
+
+
+
+
+
+
+@media (max-width:1440px){
+    .cmtynavblock--down{
+        justify-content: space-between;
+    }
+    .cmtynavblock--down li{
+        padding-left: 2rem;
+        padding-right: 2rem;
+    }
+} /* END MEDIA 1199px */
+
+
+
+@media (max-width:1199px){
+    .download-src__bottom,
+    .downverify__wrap{
+        flex-flow: column nowrap;
+        align-items: stretch;
+    }
+    .download-src__left,
+    .downverify__left{
+        width: auto;
+    }
+    .download-src__right,
+    .downverify__right{
+        padding-top: 3rem;
+        width: auto;
+        margin-left: 0;
+        max-width: none;
+    }
+    .downverify__code{
+        overflow-x: auto;
+    }
+    .downverify__code p::after{
+        content:"";
+        display: inline-block;
+        width: 3rem;
+        height: 1px;
+    }
+} /* END MEDIA 1199px */
+
+
+
+
+@media (max-width:992px){
+    .cmtynavblock--downwrap{
+        width: 100%;
+        overflow: hidden;
+        overflow-x: auto;
+        height: 7rem;
+    }
+} /* END MEDIA 1199px */
+
+
+
+
+
+@media (max-width:767px){
+    .downloadtitle{
+        padding-top: 7rem;
+    }
+    .downloadtitle h2{
+        font-size: 2.4rem;
+    }
+    .downloadtitle h2 br{
+        display: none;
+    }
+    .capstext.pb-5{
+        padding-bottom: 3rem;
+    }
+    .capstext.pb-3{
+        padding-bottom: 2rem;
+    }
+    .downtable td,
+    .downtable th{
+        padding-right: 2rem;
+        padding-left: 2rem;
+    }
+    .download-src{
+        padding-bottom: 0;
+    }
+    .download-bin__header{
+        padding-bottom: 3rem;
+    }
+    .download-choser{
+        flex-flow: column nowrap;
+        align-items: stretch;
+    }
+    .download-choser__label{
+        margin-bottom: 1rem;
+    }
+    .downverify{
+        padding-bottom: 0;
+    }
+    .download-src__bottom, .downverify__wrap{
+        padding-top: 3rem;
+    }
+    .downfooter{
+        padding-bottom: 0;
+    }
+    .downfooter__spacer {
+        padding-bottom: 3rem;
+    }
+    .party3rd{
+        padding-bottom: 8rem;
+    }
+    .party3rd__wrap{
+        flex-flow: column nowrap;
+    }
+    .party3rd__left{
+        width: 100%;
+    }
+    .party3rd__right{
+        width: 100%;
+        padding-top: 3rem;
+    }
+    .party3rd__left .pb-2{
+        padding-bottom: 0;
+    }
+} /* END MEDIA 767px */
\ No newline at end of file
diff --git a/public/css/events.css b/public/css/events.css
new file mode 100644
index 0000000..1abfa01
--- /dev/null
+++ b/public/css/events.css
@@ -0,0 +1,887 @@
+.eventhero {
+    overflow: hidden;
+    height: calc(100vh - 96px);
+    display: flex;
+    flex-flow: column nowrap;
+    align-items: center;
+    justify-content: center;
+    min-height: 670px;
+    max-height: 800px;
+}
+.eventhero__img {
+    position: absolute;
+    right: 15px;
+    top: 50%;
+    transform: translateY(-50%);
+    width: 448px;
+    height: auto;
+    pointer-events: none;
+}
+.eventhero__main {
+    position: relative;
+    z-index: 10;
+    color:var(--dark);
+    display: flex;
+    flex-flow: column nowrap;
+    align-items: flex-start;
+    justify-content: flex-start;
+}
+
+
+
+
+
+
+
+.event-featured {
+    padding-top: 10rem;
+}
+.event-featured__banner {
+    display: block;
+}
+.event-featured__placeholder,
+.event-featured__banner img{
+    height: 340px;
+}
+
+.evsummit {
+    padding-top: 13rem;
+    padding-bottom: 18rem;
+}
+.evsummit__date {
+    align-items: center;
+}
+.evsummit__day {
+    font-weight: bold;
+    font-size: 80px;
+    line-height: 1;
+}
+.evsummit__month {
+    padding-left: 3rem;
+    text-transform: uppercase;
+}
+.evsummit__info {
+    align-items: center;
+}
+.evsummit__logo {
+    width: 220px;
+    height: auto;
+}
+.evsummit__logo img{
+    display: block;
+    width: 100%;
+    height: auto;
+}
+.evsummit__descr {
+    padding-left: 8rem;
+}
+.evsummit__blocks {
+    justify-content: space-between;
+    align-items: stretch;
+}
+.evsummblock {
+    display: block;
+    width: calc(50% - 15px);
+    background: #FFFFFF;
+    border: 1px solid var(--grey2);
+    box-sizing: border-box;
+    border-radius: 10px;
+    transition: box-shadow 0.2s ease;
+    color:#000;
+    text-decoration: none;
+    padding: 5rem;
+    min-height: 360px;
+    background-position: right bottom;
+    background-repeat: no-repeat;
+}
+.evsummblock:hover{
+    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
+    color:#000;
+    text-decoration: none;
+}
+.evsummblock--speaker {
+    background-image: url(../img/events/b3-speaker-bg.svg);
+}
+.evsummblock--join {
+    background-image: url(../img/events/b3-online-bg.svg);
+}
+.evsummblock__title {
+    font-weight: 700;
+    position: relative;
+    padding-right: 40px;
+    display: inline-block;
+}
+.evsummblock__title::after{
+    content:"";
+    display: block;
+    transition: transform 0.3s ease;
+    position: absolute;
+    right: 0;
+    top: 0;
+    width: 40px;
+    height: 40px;
+    background: url(../img/events/icon-arrow.svg) center 60% no-repeat;
+}
+.evsummblock:hover .evsummblock__title::after{
+    transform: translateX(3px);
+}
+.evsummblock__descr{
+    max-width: 375px;
+}
+.evsummblock__list {
+    max-width: 30rem;
+}
+
+
+.event-planet {
+    overflow: hidden;
+    background: var(--blue2);
+    color:#fff;
+    padding-top: 11rem;
+    padding-bottom: 13rem;
+}
+.event-planet__wrap {
+}
+.event-planet__main {
+    max-width: 62rem;
+    width: 50%;
+}
+.event-planet__pic {
+    position: absolute;
+    right: -15px;
+    top: -25px;
+}
+
+
+.event-virtual {
+    padding-top: 13rem;
+}
+.eventvirt {
+    background: url(../img/events/b5-bg.svg) var(--blue4) right center no-repeat;
+    background-size: 505px;
+    border-radius: 1rem;
+    min-height: 20rem;
+    align-items: center;
+    padding: 3rem 0;
+}
+.eventvirt__left {
+    padding-left: 5rem;
+    max-width: 755px;
+    display: flex;
+    flex-flow: column nowrap;
+    align-items: flex-start;
+    justify-content: center;
+}
+.eventvirt__right {
+    margin-left: auto;
+    margin-right: 10rem;
+    flex-shrink: 0;
+    width: 20rem;
+    height: 6rem;
+}
+.eventvirt__right .button {
+    width: 100%;
+    height: 100%;
+}
+
+
+.event-virtbot {
+    padding-top: 8rem;
+    justify-content: space-between;
+}
+.event-virtbot__col {
+    width: calc(50% - 15px);
+}
+.event-recording {
+    display: grid;
+    padding-top: 55px;
+    grid-template-columns: repeat(3, 1fr);
+    max-width: calc(168 * 3px + 4rem);
+    grid-auto-rows: auto;
+    grid-gap: 2rem;
+}
+.event-recorditem {
+    border-radius: 1rem;
+    display: block;
+    height: 168px;
+}
+.event-recpic {
+    display: block;
+    height: 100%;
+    border-radius: 1rem;
+}
+.event-recbutton,
+.event-recmorebutton {
+    display: inline-flex;
+    align-items: center;
+    font-size: 14px;
+    line-height: 1;
+    white-space: nowrap;
+    padding: 0 10px;
+    height: 40px;
+}
+.event-recbutton i{
+    display: flex;
+    width: 24px;
+    height: 24px;
+    border-radius: 100px;
+    background: var(--blue);
+    transition: all 0.2s ease;
+}
+.event-recbutton i svg{
+    display: block;
+    margin: auto;
+    fill:#fff;
+    transform: translateX(20%);
+    transition: all 0.2s ease;
+}
+.event-recbutton:hover i{
+    background-color: #fff;
+}
+.event-recbutton:hover i svg{
+    fill:var(--blue);
+}
+.event-recbutton span{
+    display: block;
+    padding-left: 10px;
+}
+.event-virtbot__gray {
+    color:var(--grey5);
+    min-height: 68px;
+}
+.event-dynamicsect {
+    margin-top: 55px;
+    height: 170px;
+    margin-bottom: 2rem;
+    background: var(--grey2);
+    border-radius: 1rem;
+}
+.event-recmorebutton {
+    padding-left: 35px;
+    padding-right: 35px;
+}
+
+
+.eventyoucity {
+    padding-top: 11rem;
+}
+.eventyoucity__wrap {
+    display: grid;
+    grid-template-columns: repeat(4, 1fr);
+    grid-gap: 3rem;
+    grid-auto-rows: auto;
+}
+.eventyoucity__item {
+    border: 1px solid var(--grey3);
+    box-sizing: border-box;
+    border-radius: 1rem;
+    padding: 3rem 2.7rem 10rem;
+    position: relative;
+    min-height: 280px;
+}
+.eventyoucity__icon {
+    width: 32px;
+    height: 32px;
+}
+.eventyoucity__icon img{
+    display: block;
+    width: 100%;
+    height: 100%;
+    border-radius: 100px;
+}
+.eventyoucity__town {
+    padding-top: 2rem;
+}
+.eventyoucity__town span{
+    display: block;
+}
+.eventyoucity__action {
+    position: absolute;
+    bottom: 3rem;
+    left: 2.7rem;
+}
+.eventyoucity__action .button{
+    width: 95px;
+    height: 40px;
+}
+.eventyoucity__action .button img{
+    margin-right: 1rem;
+}
+.eventyoucity__action .button:hover img{
+    filter: brightness(0) invert(1);
+}
+.eventyoucity__last {
+    background: var(--grey);
+    padding: 4rem 3rem;
+    border-radius: 1rem;
+}
+.eventyoucity__last small{
+    display: block;
+    font-size: initial;
+    padding-bottom: 1rem;
+}
+.eventyoucity__last small:last-child{
+    padding-bottom: 0;
+}
+
+
+.eventupcoming {
+    padding-top: 130px;
+}
+.eventupcoming__wrap {
+    position: relative;
+}
+.eventcomingitem {
+    border-radius: 1rem;
+    border: 1px solid var(--grey3);
+    background: #fff;
+    margin-bottom: 2rem;
+    padding: 4rem;
+    padding-right: 2rem;
+}
+.eventcomingitem:last-child{
+    margin-bottom: 0;
+}
+.eventcomingitem__left {
+    flex-basis: 15%;
+    flex-shrink: 1;
+    flex-grow: 0;
+}
+.eventcomingitem__num {
+    font-size: 48px;
+    font-weight: 700;
+    line-height: 1;
+}
+.eventcomingitem__month {
+    text-transform: uppercase;
+    margin-top: 6px;
+}
+.eventcomingitem__year {
+    display: block;
+    color:var(--grey4);
+}
+.eventcomingitem__main {
+    flex-basis: 50%;
+    flex-shrink: 1;
+    flex-grow: 0;
+    padding-right: 3rem;
+}
+.eventcomingitem__title {
+    max-width: 55rem;
+}
+.eventcomingitem__more {
+    display: inline-block;
+    text-decoration: none;
+    line-height: 2.8rem;
+    margin-top: 2rem;
+}
+.eventcomingitem__right {
+    margin-left: auto;
+    display: grid;
+    grid-template-columns: 1fr 1fr;
+    grid-auto-rows: auto;
+    grid-gap: 7px 20px;
+    width: 410px;
+}
+.eventcomingitem__mic {
+    flex-basis: 50%;
+    flex-shrink: 0;
+    flex-grow: 0;
+}
+.eventcomingitem__speaker{
+    min-height: 32px;
+    padding-top: 4px;
+    padding-left: 36px;
+    background: url(../img/events/icon-mic.svg) left top no-repeat;
+    background-size: 32px;
+}
+.eventcomingitem__loc {
+    flex-basis: 50%;
+    flex-shrink: 0;
+    flex-grow: 0;
+}
+.eventcomingitem__locblock{
+    padding-left: 38px;
+    min-height: 32px;
+    background: url(../img/events/icon-loc.svg) left top no-repeat;
+    padding-top: 4px;
+}
+.eventcomingitem__locblock img{
+    display: block;
+    height: 32px;
+    width: auto;
+    max-width: 100%;
+    object-fit: contain;
+    margin-top: -4px;
+}
+.eventcomingitem__camera {
+    margin-top: 0px;
+    color:var(--grey4);
+    padding-left: 36px;
+    line-height: 36px;
+    background: url(../img/events/icon-camera.svg) left center no-repeat;
+    margin-left: 8px;
+}
+.eventcomingitem__complextitle {
+    align-items: center;
+    max-width: 55rem;
+}
+.eventcomingitem__logo {
+    width: 69px;
+    height: 69px;
+    border-radius: 200px;
+    margin-right: 1.5rem;
+}
+
+
+.eventspast {
+    padding-top: 13rem;
+    padding-bottom: 10rem;
+}
+.eventspast__tablinks {
+    align-items: stretch;
+    height: 4rem;
+    margin-top: 1rem;
+}
+.eventpast__link {
+    display: block;
+    margin-right: 1rem;
+    width: 10rem;
+    background: #fff;
+    border-radius: 1rem;
+    border:none;
+    cursor: pointer;
+    font-size: 1.6rem;
+    line-height: 1;
+    text-align: center;
+}
+.eventpast__link:not(.active):hover{
+    background: var(--grey);
+}
+.eventpast__link.active{
+    background: #000;
+    color:#fff;
+}
+.eventspast__tabs {
+    margin-top: 5rem;
+    overflow: hidden;
+    position: relative;
+}
+.eventspast__tabs.isloading{
+    min-height: 414px;
+}
+.eventspast__tabs.isloading::after{
+    position: absolute;
+    top: 0;
+    left: 0;
+    bottom: 0;
+    right: 0;
+    background: url(../img/loader.svg) var(--grey) center center no-repeat;
+    background-size: 6rem;
+    z-index: 10;
+    display: block;
+    content:"";
+}
+.eventspast__tab {
+    display: grid;
+    grid-template-columns: repeat(3, 1fr);
+    grid-gap: 3rem;
+}
+.eventcard {
+    display: flex;
+    flex-flow: column nowrap;
+    align-items: stretch;
+    justify-content: flex-start;
+    background: #FFFFFF;
+    border: 1px solid var(--grey3);
+    box-sizing: border-box;
+    border-radius: 10px;
+    padding: 3rem;
+    transition: box-shadow 0.2s ease;
+    min-height: 36rem;
+}
+.eventcard:hover{
+    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.05);
+}
+.eventcard h3{
+    font-weight: 700;
+}
+.eventcard__date {
+    line-height: 1;
+    white-space: nowrap;
+    color:var(--grey5);
+}
+.eventcard__info {
+    margin-top: auto;
+}
+.eventcard__speaker {
+    display: flex;
+    flex-flow: column nowrap;
+    align-items: flex-start;
+    justify-content: flex-start;
+    padding-top: 0px;
+    font-size: 14px;
+    line-height: 20px;
+    padding-left: 38px;
+    background: url(../img/events/icon-mic.svg) left top no-repeat;
+    background-size: 24px;
+    min-height: 40px;
+}
+.eventcard__speaker--one{
+    padding-top: 3px;
+}
+.eventcard__speaker small{
+    display: block;
+    font-size: 14px;
+    line-height: 18px;
+    color:var(--grey4);
+}
+.eventcard__loc {
+    display: flex;
+    flex-flow: column nowrap;
+    align-items: flex-start;
+    justify-content: center;
+    margin-top: 6px;
+    font-size: 14px;
+    line-height: 18px;
+    padding-left: 38px;
+    min-height: 24px;
+    background: url(../img/events/icon-loc.svg) left top no-repeat;
+    background-size: 24px;
+}
+.eventcard__button {
+    margin-top: 3rem;
+    width: 16rem;
+    font-size: 14px;
+    height: 4rem;
+}
+.eventspast__bottom{
+    text-align: center;
+}
+.eventspast__more {
+    display: inline-block;
+    margin: 0 auto;
+}
+
+
+
+
+
+
+
+
+
+
+
+
+@media (max-width:1299px){
+    .eventhero__img{
+        right: 0px;
+    }
+    .eventhero__main .h2{
+        font-size: 5.4rem;
+        line-height: 1.25;
+    }
+    .evsummblock__descr{
+        max-width: 350px;
+    }
+} /* END MEDIA 1299px */
+
+
+
+@media (max-width:1199px){
+    .eventhero__main{
+        max-width: calc(100% - 350px);
+    }
+    .eventhero__img{
+        width: 350px;
+    }
+    .eventhero__main .h2{
+        font-size: 4.6rem;
+    }
+    .eventhero{
+        height: calc(100vh - 80px);
+        min-height: 400px;
+    }
+    .evsummit{
+        padding-top: 10rem;
+        padding-bottom: 10rem;
+    }
+    .evsummit__descr br{
+        display: none;
+    }
+    .evsummit__descr{
+        padding-left: 4rem;
+    }
+    .evsummblock{
+        padding: 4rem 2rem;
+        background-size: 50%;
+        min-height:auto;
+    }
+    .evsummblock__descr{
+        max-width: 60%;
+    }
+    .event-planet__pic img{
+        width: 400px;
+    }
+    .eventyoucity__wrap{
+        grid-gap: 15px;
+        grid-template-columns: 1fr 1fr;
+    }
+    .eventyoucity__item{
+        min-height: auto;
+    }
+    .eventcomingitem__right{
+        grid-template-columns: 1fr;
+        width: 25%;
+        flex-shrink: 0;
+        grid-gap: 2rem;
+    }
+    .eventcomingitem__main{
+        flex-grow: 1;
+    }
+    .eventcomingitem__logo{
+        width: 6rem;
+        height: 6rem;
+    }
+    .eventspast__tab{
+        grid-gap: 2rem;
+    }
+    .eventcard{
+        min-height: auto;
+        padding: 3rem 2rem;
+    }
+    .eventcard .h5{
+        font-size: 2rem;
+        line-height: 1.3;
+    }
+} /* END MEDIA 1199px */
+
+
+@media (max-width:992px){
+    .eventhero{
+        height:auto;
+        max-height: none;
+        padding: 8rem 0;
+    }
+    .eventhero__main{
+        max-width: none;
+        text-align: center;
+        align-items: center;
+    }
+    .eventhero__img{
+        position: relative;
+        right: auto;
+        transform:none;
+        margin: 5rem auto 0;
+        display: block;
+        width: 300px;
+    }
+    .event-featured__placeholder, .event-featured__banner img{
+        height: 200px !important;
+    }
+    .event-planet__pic{
+        right: 0;
+    }
+    .event-planet__pic img{
+        width: 270px;
+    }
+    .event-virtbot{
+        flex-flow: column nowrap;
+        align-items: stretch;
+    }
+    .event-virtbot__col{
+        width: auto;
+        padding-bottom: 7rem;
+    }
+    .event-virtbot__col:last-child{
+        padding-bottom: 0;
+    }
+    .event-recording{
+        padding-top: 3rem;
+        width: auto;
+        max-width: none;
+    }
+    .event-virtbot__gray{
+        min-height: auto;
+    }
+    .event-dynamicsect{
+        margin-top: 3rem;
+    }
+    .eventcomingitem{
+        padding-left: 2rem;
+        padding-right: 2rem;
+    }
+    .eventcomingitem__num{
+        font-size: 4rem;
+    }
+    .eventcomingitem__month{
+        font-size: 1.4rem;
+        margin-top: 0;
+    }
+    .eventspast__tabs{
+        margin-top: 3rem;
+    }
+    .eventcard__button{
+        width: 20rem;
+    }
+} /* END MEDIA 992px */
+
+
+@media (max-width:767px){
+    .eventhero{
+        padding-top: 6rem;
+    }
+    .eventhero__main .h2{
+        font-size: 4rem;
+    }
+    .eventhero__main br{
+        display: none;
+    }
+    .eventhero__img{
+        width: 90%;
+    }
+    .event-featured__banner{
+        padding-top: 3rem;
+    }
+    .evsummit{
+        padding-top: 8rem;
+        padding-bottom: 8rem;
+    }
+    .evsummit__day{
+        font-size: 7rem;
+    }
+    .evsummit__month{
+        padding-left: 2rem;
+    }
+    .evsummit__info{
+        padding-top: 2rem;
+        flex-flow: column nowrap;
+        align-items: stretch;
+    }
+    .evsummit__logo{
+        width: 150px;
+        height: 150px;
+    }
+    .evsummit__descr{
+        padding-left: 0;
+        padding-top: 2rem;
+    }
+    .evsummit__blocks{
+        flex-flow: column nowrap;
+        align-items: stretch;
+    }
+    .evsummblock{
+        width: auto;
+        margin-bottom: 2rem;
+        background-size: 40%;
+    }
+    .evsummblock__listtitle{
+        padding-top: 1.5rem;
+    }
+    .evsummblock__title::after{
+        height: 95%;
+    }
+    .event-planet{
+        padding: 6rem 0 7rem;
+    }
+    .event-planet__main{
+        width: auto;
+    }
+    .event-planet__wrap{
+        flex-flow: column-reverse nowrap;
+        align-items: stretch;
+    }
+    .event-planet__main .h5{
+        padding-top: 2rem;
+    }
+    .event-planet__pic{
+        position: relative;
+        top: 0;
+        width: 200px;
+        margin: 0 0 3rem;
+    }
+    .event-planet__pic img{
+        width: 100%;
+        height: 100%;
+        object-fit: contain;
+    }
+    .event-virtual{
+        padding-top: 8rem;
+        padding-bottom: 8rem;
+    }
+    .eventvirt{
+        padding: 4rem 2rem;
+        flex-flow: column nowrap;
+        align-items: stretch;
+        background-image: none;
+    }
+    .eventvirt__left{
+        align-items: stretch;
+        padding-left: 0;
+    }
+    .eventvirt__right{
+        margin-left: 0;
+        margin-top: 3rem;
+    }
+    .event-recording{
+        grid-template-columns: 1fr;
+    }
+    .event-recorditem{
+        height: 240px;
+    }
+    .event-dynamicsect{
+        height: 300px;
+    }
+    .eventyoucity{
+        padding-top: 0;
+    }
+    .eventyoucity__wrap{
+        grid-template-columns: 1fr;
+    }
+    .eventupcoming{
+        padding-top: 10rem;
+    }
+    .eventupcoming__wrap{
+        padding-top: 3rem;
+    }
+    .eventupcoming .h4{
+        padding-bottom: 3rem;
+    }
+    .eventcomingitem{
+        flex-flow: column nowrap;
+    }
+    .eventcomingitem__year{
+        padding-top: 0;
+    }
+    .eventcomingitem__main{
+        padding-right: 0;
+        padding-top: 3rem;
+    }
+    .eventcomingitem__right{
+        width: auto;
+        margin: 4rem 0 0;
+    }
+    .eventspast .capstext{
+        padding-bottom: 3rem;
+    }
+    .eventspast__tablinks{
+        margin-right: -15px;
+        margin-left: -15px;
+        padding-left: 15px;
+        padding-right: 15px;
+        overflow-x: auto;
+        padding-bottom: 15px;
+        height: 6rem;
+    }
+    .eventpast__link{
+        width: 70px;
+        flex-shrink: 0;
+    }
+    .eventspast__tab{
+        grid-template-columns: 1fr;
+    }
+    .eventspast__bottom{
+        padding-top: 4rem;
+    }
+} /* END MEDIA 767px */
\ No newline at end of file
diff --git a/public/css/faq.css b/public/css/faq.css
new file mode 100644
index 0000000..9313529
--- /dev/null
+++ b/public/css/faq.css
@@ -0,0 +1,198 @@
+.innerhero--faq{
+    padding-bottom: 15rem;
+    padding-top: 12rem;
+}
+.innerhero__pic--faq{
+    right: -290px;
+    top: 54px;
+}
+
+
+
+.faqabout {
+    padding-top: 13rem;
+    padding-bottom: 13rem;
+}
+.faqabout__left {
+    width: calc(50% + 30px);
+}
+.faqabout__left p:not(:last-child){
+    margin-bottom: 2.4rem;
+}
+.faqabout__right {
+    margin-top: 2rem;
+    margin-left: auto;
+    width: 295px;
+    max-width: 100%;
+    flex-shrink: 0;
+    border-top:1px solid #000;
+}
+.faqabout__num {
+    padding-top: 2rem;
+    color:var(--blue);
+    font-weight: 700;
+}
+.faqabout__rightbot {
+    margin-top: 18rem;
+    border-top:1px solid #000;
+    padding-top: 2rem;
+}
+
+
+.faqfeats {
+    padding-bottom: 11rem;
+}
+.faqfeats__title {
+    font-weight: 700;
+}
+.faqfeats__wrap {
+    width: calc(100% - 10rem);
+    justify-content: space-between;
+}
+.faqfeat {
+    width: calc(100% / 3 - 90px);
+}
+.faqfeat__iconwrap {
+    background: var(--grey);
+    border-radius: 1rem;
+    width: 8rem;
+    height: 8rem;
+}
+.faqfeat__iconwrap img{
+    display: block;
+    width: 4.8rem;
+    height: 4.8rem;
+    margin: auto;
+}
+
+
+.faqboxs {
+    display: grid;
+    grid-template-columns: 1fr 1fr;
+    grid-auto-rows: auto;
+    grid-gap: 3rem;
+    padding-bottom: 13rem;
+}
+.faqbox {
+    padding: 6rem 7rem 13rem;
+}
+.faqbox__itemtitle {
+    font-weight: 700;
+}
+.faqbox__anwser {
+}
+.faqbox__text {
+}
+.faqbox__text p:not(:last-child){
+    margin-bottom: 1rem;
+}
+.faqbox .cardsimple__bottom {
+    left: 7rem;
+    bottom: 5rem;
+}
+.faqbox .cardsimple__button {
+    width: auto;
+    padding-left: 20px;
+    padding-right: 20px;
+    height: 45px;
+}
+
+
+
+
+
+
+
+
+
+
+
+
+
+@media (max-width:1199px){
+    .faqfeats__wrap{
+        width: auto;
+    }
+    .faqfeat{
+        width: calc(100% / 3 - 30px);
+    }
+    .faqbox{
+        padding: 5rem 5rem 13rem;
+    }
+    .faqbox .cardsimple__bottom{
+        left: 5rem;
+    }
+}
+
+
+
+@media (max-width:992px){
+    .innerhero__pic--faq{
+        display: none;
+    }
+    .faqabout__right{
+        width: auto;
+    }
+}
+
+
+@media (max-width:767px){
+    .innerhero--faq{
+        padding: 8rem 0 10rem;
+    }
+    .faqabout{
+        padding-top: 8rem;
+        padding-bottom: 10rem;
+    }
+    .faqabout__wrap,
+    .faqfeats__wrap{
+        flex-flow: column nowrap;
+        align-items: stretch;
+    }
+    .faqabout__left{
+        width: auto;
+    }
+    .faqabout__right{
+        margin-left: 0;
+        margin-top: 5rem;
+    }
+    .faqabout__rightbot{
+        margin-top: 0rem;
+        padding-top: 1rem;
+        border-top: none;
+    }
+    .faqfeats__title br{
+        display: none;
+    }
+    .faqfeats{
+        padding-bottom: 5rem;
+    }
+    .faqfeats__wrap{
+        padding-top: 3rem;
+    }
+    .faqfeat{
+        width: auto;
+        padding-bottom: 4rem;
+    }
+    .faqfeat__text{
+        max-width: 80%;
+    }
+    .faqboxs{
+        grid-template-columns: 1fr;
+        padding-bottom: 8rem;
+    }
+    .faqbox{
+        padding: 3rem 2rem 3rem;
+    }
+    .faqbox__itemtitle{
+        font-size: 2.4rem;
+    }
+    .faqbox .cardsimple__bottom{
+        left: auto;
+        bottom: auto;
+    }
+    .faqbox .button{
+        display: inline-flex;
+    }
+    
+}
\ No newline at end of file
diff --git a/public/css/features.css b/public/css/features.css
new file mode 100644
index 0000000..4d6d1a6
--- /dev/null
+++ b/public/css/features.css
@@ -0,0 +1,113 @@
+.innerhero__pic--features{
+    width: 60rem;
+    height: auto;
+    top: auto;
+    bottom: -30rem;
+    transform: none;
+    left: 70%;
+}
+.features2,
+.features3,
+.features4,
+.features5{
+    padding: 9rem 0 0rem;
+}
+.features2__title{
+    padding-bottom: 9rem;
+    font-weight: 400;
+}
+.cardswrap{
+    padding-top: 5rem;
+    display: grid;
+    grid-template-columns: repeat(3, 1fr);
+    grid-auto-rows:auto;
+    grid-gap: 4rem 3rem;
+}
+
+
+.featureslast__main{
+    background: #E8F2FA;
+    border-radius: 10px;
+    padding: 5rem 7rem 6rem;
+}
+.featureslast__title{
+    font-size: 3.2rem;
+    line-height: 4.2rem;
+    font-weight: bold;
+}
+.featureslast{
+    padding-top: 8rem;
+    padding-bottom: 10rem;
+}
+.featureslast__links{
+    display: grid;
+    grid-template-columns: repeat(4, max-content);
+    grid-gap: 2rem 10rem;
+}
+
+
+
+
+@media (max-width:992px){
+    .cardswrap{
+        grid-template-columns: 1fr 1fr;
+    }
+    .featureslast__links{
+        grid-template-columns: max-content max-content;
+    }
+}/* END MEDIA 992px */
+
+
+
+@media (max-width:767px){
+    .features1__main{
+        max-width: none;
+        width: auto;
+        text-align: left;
+        min-height: auto;
+    }
+    .features2__title{
+        text-align: left;
+        padding-bottom: 5rem;
+        font-size: 3rem;
+        line-height: 1.4;
+    }
+    .features1__descr br,
+    .features2__title br,
+    .blockheader__right br{
+        display: none;
+    }
+    .features1__main .h2{
+        font-size: 4.2rem;
+        line-height: 1.15;
+    }
+    .cardswrap{
+        grid-template-columns: 1fr;
+        grid-gap: 2rem;
+        padding-top: 3rem;
+        padding-bottom: 0;
+    }
+    .features2,
+    .features3,
+    .features4,
+    .features5{
+        padding-top: 6rem;
+        padding-bottom: 3rem;
+    }
+    .featureslast{
+        padding-top: 4rem;
+        padding-bottom: 4rem;
+    }
+    .featureslast__main{
+        padding: 4rem 2rem;
+    }
+    .featureslast__title{
+        font-size: 2.6rem;
+        line-height: 3.6rem;
+    }
+    .featureslast__links{
+        grid-template-columns: 1fr;
+        padding-top: 2rem;
+        grid-gap: 1.5rem;
+    }
+}/* END MEDIA 767px */
\ No newline at end of file
diff --git a/public/css/high-performance-computing.css b/public/css/high-performance-computing.css
new file mode 100644
index 0000000..4736e94
--- /dev/null
+++ b/public/css/high-performance-computing.css
@@ -0,0 +1,275 @@
+.innerhero__pic--highperf{
+    right: -290px;
+    top: 54px;
+}
+.highperf__herosmall{
+    display: block;
+    font-weight: 400;
+}
+.high1 {
+    padding-top: 13rem;
+    padding-bottom: 13rem;
+}
+.high1__main {
+    width: 52%;
+    padding-right: 4rem;
+}
+.high1__main p:not(:last-child){
+    margin-bottom: 1rem;
+}
+.high1__title {
+    font-weight: 700;
+}
+.high1__sub {
+    font-weight: 700;
+}
+.high1__picwrap {
+    width: 42%;
+    flex-shrink: 0;
+    margin-left: auto;
+    background: var(--grey);
+    border-radius: 1rem;
+    padding: 6.5rem 3rem 4.4rem;
+}
+.high1__pic {
+    display: block;
+    margin: 0 auto 5rem;
+}
+.high1__picdescr {
+    justify-content: space-between;
+}
+.high1__arrowline {
+    position: relative;
+    font-size: 14px;
+    line-height: 1.3;
+    align-items: center;
+}
+.high1__arrowline i{
+    display: flex;
+    align-items: center;
+    justify-content: center;
+    flex-flow: column nowrap;
+    font-style: normal;
+    width: 24px;
+    height: 26px;
+    background: url(../img/usecases/high-peformance/arrow-circle.svg) no-repeat;
+    background-size:contain;
+    padding-top: 2px;
+    margin-top: -2px;
+    margin-right: 1rem;
+}
+
+
+.high2 {
+    background: var(--blue4);
+    padding: 10rem 0 10rem;
+}
+.high2__wrap {
+    padding-top: 6rem;
+    display: grid;
+    grid-template-columns: repeat(3, 1fr);
+    grid-gap: 40px;
+    grid-auto-rows: auto;
+}
+.high2__title {
+    font-size: 20px;
+    line-height: 26px;
+    padding-left: 34px;
+    position: relative;
+    background: url(../img/features/icon-check-ok.svg) left 1px no-repeat;
+    background-size: 24px;
+    font-weight: 700;
+}
+.high2__text {
+    padding-top: 2rem;
+    padding-left: 34px;
+}
+
+
+
+
+.highicons {
+    padding-top: 13rem;
+    padding-bottom: 13rem;
+}
+.highicons__wrap {
+    display: grid;
+    grid-template-columns: repeat(5, 1fr);
+    grid-auto-rows: auto;
+    grid-gap: 8rem;
+}
+.highicons__iconwrap {
+    width: 80px;
+    height: 80px;
+    background: var(--grey);
+    border-radius: 1rem;
+    display: flex;
+}
+.highicons__icon {
+    display: block;
+    margin: auto;
+}
+.highicons__title {
+    padding-top: 3rem;
+    font-size: 20px;
+    line-height: 1.3;
+    font-weight: 700;
+}
+.highicons__descr {
+    padding-top: 1.5rem;
+}
+
+
+
+.highcases__topleft {
+    width: 52%;
+    padding-right: 60px;
+}
+.highcases__subtitle {
+    font-size: 20px;
+    line-height: 1.3;
+    font-weight: 700;
+}
+.highcases__topright,
+.highcases__twoitem{
+    width: 433px;
+    max-width: 100%;
+    flex-shrink: 0;
+}
+.highcases__twowrap {
+    justify-content: space-between;
+    max-width: calc(52% + 433px);
+}
+
+
+
+
+@media (max-width:1199px){
+    .high1__picwrap{
+        width: 48%;
+    }
+    .high1__picdescr{
+        flex-flow: column nowrap;
+    }
+    .high1__pic{
+        margin-bottom: 1rem;
+    }
+    .high1__arrowline{
+        padding-top: 2rem;
+    }
+    .highicons__wrap{
+        grid-gap: 3rem;
+    }
+}/* END MEDIA 1199px */
+
+
+
+
+@media (max-width:992px){
+    .high1__wrap {
+        flex-flow: column nowrap;
+    }
+    .high1__main{
+        width: 100%;
+        padding-right: 0;
+    }
+    .highcases__twowrap{
+        flex-flow: column nowrap;
+    }
+    .high1__picwrap{
+        width: 100%;
+        max-width: 400px;
+        padding: 4rem;
+        margin: 5rem 0 0;
+    }
+    .high1__pic{
+        width: 100%;
+    }
+    .high2__wrap{
+        grid-template-columns: 1fr;
+    }
+    .highicons__wrap{
+        grid-gap: 3rem 10rem;
+        grid-template-columns: 1fr 1fr;
+    }
+    .highcases__one {
+        flex-flow: column nowrap;
+        padding-bottom: 0;
+    }
+    .highcases__topleft{
+        width: auto;
+        padding-right: 0;
+        padding-bottom: 3rem;
+    }
+    .highcases__twowrap{
+        padding-top: 3rem;
+    }
+    .highcases__twoitem{
+        max-width: 100%;
+        margin-bottom: 4rem;
+    }
+
+}/* END MEDIA 992px */
+
+
+
+
+
+
+
+
+
+
+@media (max-width:767px){
+    .high1{
+        padding-top: 7rem;
+        padding-bottom: 8rem;
+    }
+    .high1 .capstext{
+        line-height: 1.5;
+        padding-bottom: 3rem;
+    }
+    .high2{
+        padding-top: 7rem;
+        padding-bottom: 7rem;
+    }
+    .high2__wrap{
+        padding-top: 3rem;
+    }
+    .high2__title{
+        font-size: 2.2rem;
+    }
+    .high2__block{
+        padding-right: 15px;
+    }
+    .highicons{
+        padding-top: 8rem;
+        padding-bottom: 8rem;
+    }
+    .highicons br,
+    .highcases  br{
+        display: none;
+    }
+    .highicons__wrap{
+        grid-template-columns: 1fr;
+        grid-gap: 4rem;
+    }
+    .highicons__iconwrap{
+        width: 7rem;
+        height: 7rem;
+    }
+    .highicons__icon{
+        width: 5rem;
+        height: 5rem;
+    }
+    .highicons__title{
+        padding-top: 2rem;
+        font-size: 2.2rem;
+    }
+    .highcases__two{
+        padding-bottom: 0;
+    }
+    .highcases__twoitem:last-child{
+        margin-bottom: 0;
+    }
+}/* END MEDIA 767px */
\ No newline at end of file
diff --git a/public/css/in-memory-cache.css b/public/css/in-memory-cache.css
new file mode 100644
index 0000000..9e6abd7
--- /dev/null
+++ b/public/css/in-memory-cache.css
@@ -0,0 +1,265 @@
+.innerhero__pic--inmemory{
+    width: 61rem;
+    height: auto;
+    top: auto;
+    bottom: -20rem;
+    transform: none;
+    left: 60%;
+}
+
+.inmememor1 {
+    padding-top: 13rem;
+    padding-bottom: 13rem;
+}
+.inmememor1 .h3{
+    font-weight: normal;
+}
+.inmememor1__text{
+    font-size: 3rem;
+    line-height: 1.3;
+    max-width: 1000px;
+}
+.inmememor-adv{
+    padding-top: 0rem;
+    padding-bottom: 0rem;
+}
+.inmememor-adv__wrap {
+    padding-top: 5rem;
+    display: grid;
+    grid-template-columns: max-content max-content;
+    grid-gap: 15rem;
+}
+.inmememor-adv__item {
+    width: 40rem;
+    position: relative;
+    background: var(--grey);
+    border-radius: 1rem;
+    padding: 3rem 3rem 4rem;
+}
+.inmememor-adv__item .h4{
+    font-weight: 400;
+}
+.inmememor-adv__text {
+    padding-top: 2rem;
+    max-width: 32rem;
+}
+.inmememor-adv__item:first-child::after{
+    content:"";
+    display: block;
+    position: absolute;
+    top:calc(50% - 2rem);
+    left: calc(100% + 6rem);
+    width: 4rem;
+    height: 4rem;
+    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%230070CC' d='M376 232H216V72c0-4.42-3.58-8-8-8h-32c-4.42 0-8 3.58-8 8v160H8c-4.42 0-8 3.58-8 8v32c0 4.42 3.58 8 8 8h160v160c0 4.42 3.58 8 8 8h32c4.42 0 8-3.58 8-8V280h160c4.42 0 8-3.58 8-8v-32c0-4.42-3.58-8-8-8z'%3E%3C/path%3E%3C/svg%3E");
+    background-size: contain;
+    background-repeat: no-repeat;
+}
+
+
+.inmememor-api {
+    padding-top: 13rem;
+}
+.inmememor-api__wrap {
+    padding-top: 5rem;
+}
+.inmememor-api__item {
+    width: 25%;
+    flex-shrink: 0;
+    flex-grow: 0;
+}
+.inmememor-api__icon {
+    display: block;
+    width: 8rem;
+    height: auto;
+}
+
+
+.inmememor2 {
+    padding-top: 13rem;
+}
+.inmememor2__work{
+    justify-content: space-between;
+}
+.inmememor2__left {
+    width: 50%;
+    flex-shrink: 0;
+    max-width: 510px;
+}
+.inmememor2__right {
+    width: 50%;
+    max-width: 625px;
+    flex-shrink: 0;
+}
+.inmememor2__picwrap {
+    margin-top: 5rem;
+    background: var(--grey);
+    border:1px solid var(--grey2);
+    border-radius: 1rem;
+    padding: 5.5rem 0;
+    margin-bottom: 8rem;
+}
+.inmememor2__picwrap img{
+    display: block;
+    margin: 0 auto;
+    max-width: 90%;
+}
+.inmememor2__left--icon {
+    padding-left: 7rem;
+    position: relative;
+    background: url(../img/features/in-memory/icon-attention.svg) left top no-repeat;
+    background-size: 48px;
+    padding-top: 0.5rem;
+}
+.inmememor2__left--icon .dashlist{
+    max-width: 375px;
+}
+.inmememor2__right p:not(:last-child){
+    margin-bottom: 2rem;
+}
+
+
+.inmememor3 .inmememor2__picwrap{
+    margin-top: 5rem;
+    margin-bottom: 5rem;
+}
+.inmememor3__bottom{
+    padding-top: 6rem;
+}
+.inmememor3__botwrap p:not(:last-child){
+    margin-bottom: 2rem;
+}
+.inmememor3__botwrap {
+    justify-content: space-between;
+}
+.inmememor3__checklist li{
+    position: relative;
+    font-size: 2rem;
+    margin-bottom: 2rem;
+    padding-left: 3.8rem;
+    background: url(../img/features/in-memory/icon-check.svg) left top no-repeat;
+    background-size: 2.4rem;
+}
+
+
+
+@media (max-width:1199px){
+    .inmememor1{
+        padding-top: 10rem;
+        padding-bottom: 10rem;
+    }
+    .inmememor-api__item{
+        width: 33%;
+    }
+    .inmememor2__left{
+        padding-right: 5rem;
+    }
+
+}/* END MEDIA 1199px */
+
+@media (max-width:992px){
+    .inmememor-adv__wrap{
+        grid-gap: 7rem;
+        grid-template-columns:1fr 1fr
+    }
+    .inmememor-adv__item:first-child::after{
+        left: calc(100% + 15px);
+    }
+
+}/* END MEDIA 1199px */
+
+@media (max-width:767px){
+    .inmememor1{
+        padding-top: 8rem;
+        padding-bottom: 8rem;
+    }
+    .inmememor1 .h3{
+        font-size: 3.2rem;
+    }
+    .inmememor1 br{
+        display: none;
+    }
+    .inmememor-adv{
+        padding-bottom: 6rem;
+    }
+    .inmememor-adv h2{
+        font-size: 3.2rem;
+        padding-bottom: 2rem;
+    }
+    .inmememor-adv__wrap{
+        grid-template-columns: 1fr;
+        grid-gap: 7rem;
+    }
+    .inmememor-adv__item{
+        width: auto;
+    }
+    .inmememor-adv__item:first-child::after{
+        left: calc(50% - 22px);
+        bottom: -45px;
+        top:auto;
+    }
+    .inmememor-adv__text br{
+        display: none;
+    }
+
+    .inmememor-api{
+        padding-top: 3rem;
+    }
+    .inmememor-api__wrap{
+        padding-top: 3rem;
+        flex-flow: column nowrap;
+        align-items: stretch;
+    }
+    .inmememor-api__item{
+        width: auto;
+        padding-bottom: 3rem;
+    }
+    .inmememor-api__item p{
+        padding-top: 1rem;
+    }
+    .inmememor-api__item br,
+    .inmememor2__left br,
+    .inmememor2__right br{
+        display: none;
+    }
+
+    .inmememor2{
+        padding-top: 8rem;
+    }
+    .inmememor2__work{
+        flex-flow: column nowrap;
+    }
+    .inmememor2__left{
+        width: 100%;
+    }
+    .inmememor2__right{
+        padding-top: 3rem;
+        width: 100%;
+    }
+    .inmememor2__picwrap{
+        margin-top: 3rem;
+        margin-bottom: 4rem;
+    }
+    .inmememor3 .inmememor2__picwrap{
+        margin-bottom: 2rem;
+        margin-top: 4rem;
+    }
+    .inmememor3__botwrap{
+        padding-top: 4rem;
+        flex-flow: column nowrap;
+        align-items: stretch;
+    }
+    .inmememor2__right{
+        padding-top: 1rem;
+    }
+    .inmememor3__checklist li{
+        font-size: 1.8rem;
+        padding-top: 2px;
+        margin-bottom: 1rem;
+    }
+    .inmememor2 .fz20,
+    .inmememor3 .fz20{
+        font-size: 2.2rem;
+    }
+
+}/* END MEDIA 1199px */
diff --git a/public/css/key-value-api.css b/public/css/key-value-api.css
new file mode 100644
index 0000000..f5e0f5b
--- /dev/null
+++ b/public/css/key-value-api.css
@@ -0,0 +1,255 @@
+.innerhero__pic--keyvalue{
+    left: 66%;
+    top:10px;
+}
+.keyvalue1 {
+    padding-top: 13rem;
+    padding-bottom: 8rem;
+}
+.keyvalue1__left {
+    width: 52%;
+    padding-right: 2%;
+}
+.keyvaluetext p:not(:last-child){
+    margin-bottom: 1rem;
+}
+.keyvalue1__libs {
+    padding-top: 6rem;
+}
+.leyvalue__lang {
+    position: relative;
+    padding-left: 3.2rem;
+    line-height: 3.6rem;
+    margin-bottom: 9px;
+}
+.leyvalue__lang::before{
+    content:"";
+    display: block;
+    width: 2.4rem;
+    height: 2.4rem;
+    left: 0;
+    top: 50%;
+    margin-top: -1.2rem;
+    position: absolute;
+    z-index: 2;
+    background: url(../img/features/key-value/icon-library.svg) no-repeat;
+    background-size: contain;
+}
+.leyvalue__lang small{
+    color:var(--grey4);
+    font-size: 1.6rem;
+}
+.keyvalue1__right {
+    width: 512px;
+    max-width: 50%;
+    margin-left: auto;
+}
+.keyvalue1__picwrap {
+    padding: 7rem 0 6rem;
+}
+.keyvalue1__pic {
+    width: 355px;
+    max-width: 90%;
+}
+
+
+.keyvalueplank {
+    border-radius: 1rem;
+    background: var(--blue4);
+    padding: 7rem 7.8rem;
+}
+.keyvalueplank__inner {
+    font-size: 3.2rem;
+    line-height: 4.2rem;
+}
+
+.keyvalue2 {
+    padding-top: 8rem;
+}
+.keyvalue2__left {
+    width: 52%;
+    padding-right: 2%;
+}
+.keyvalue__title {
+    font-size: 2.4rem;
+    line-height: 1.5;
+    font-weight: 700;
+}
+.keyvalue2__box dt{
+    font-weight: 700;
+}
+.keyvalue2__right {
+    width: 551px;
+    max-width: 50%;
+    margin-left: auto;
+}
+.keyvalue2__picwrap {
+    height: 380px;
+}
+.keyvalue2 .keyvalue2__pic{
+    max-width: 443px;
+}
+
+
+.keyvalue3 {
+    padding-top: 12rem;
+}
+.keyvalue3__left {
+    order:-1;
+}
+.keyvalue3__left {
+    width: 540px;
+    flex-shrink: 0;
+    max-width: 50%;
+}
+.keyvalue3__picwrap {
+    height: 380px;
+}
+.keyvalue3__pic {
+    max-width: 443px;
+}
+.keyvalue3__right{
+    padding-left: 109px;
+    flex-grow: 1;
+}
+
+
+.keyvalue4 {
+    padding-top: 12rem;
+}
+.keyvalue4__left {
+    width: 50%;
+    padding-right: 2%;
+}
+.keyvalue4__right{
+    width: 546px;
+    max-width: 100%;
+    margin-left: auto;
+}
+.keyvalue4__picwrap {
+    min-height: 603px;
+}
+.keyvalue4__pic {
+    width: 327px;
+}
+
+
+
+
+
+
+
+
+
+
+@media (max-width:1199px){
+    .keyvalue1__picwrap,
+    .keyvalue2__picwrap,
+    .keyvalue3__picwrap,
+    .keyvalue4__picwrap {
+        height: auto;
+        min-height: auto;
+    }
+    .keyvalue2 .keyvalue2__pic,
+    .keyvalue3__pic,
+    .keyvalue4__pic{
+        max-width: 80%;
+    }
+    .keyvalue3__right{
+        padding-left: 30px;
+    }
+    .keyvalue4__right{
+        max-width: 50%;
+    }
+
+} /* END MEDIA 1199px */
+
+
+
+@media (max-width:992px){
+    .innerhero__pic--keyvalue{
+        display: none;
+    }
+} /* END MEDIA 992px */
+
+
+@media (max-width:767px){
+    .innerhero--keyvalue .h1 br{
+        display: block;
+    }
+    .keyvalue1{
+        padding-top: 8rem;
+        padding-bottom: 8rem;
+        flex-flow: column nowrap;
+    }
+    .keyvalue1__left,
+    .keyvalue1__right,
+    .keyvalue2__left,
+    .keyvalue2__right,
+    .keyvalue3__left,
+    .keyvalue4__left,
+    .keyvalue4__right{
+        width: 100%;
+        max-width: none;
+    }
+    .keyvalue1__left .keyvaluetext{
+        padding-top: 4rem;
+    }
+    .leyvalue__lang small{
+        display: block;
+        line-height: 1.3;
+        margin-top: -3px;
+    }
+    .keyvalue1__libs{
+        padding-top: 2rem;
+    }
+    .leyvalue__lang::before{
+        margin-top: 0;
+        top: 5px;
+    }
+    .keyvalue1__right,
+    .keyvalue2__right{
+        padding-top: 3rem;
+    }
+    .keyvalue1__picwrap{
+        padding-top: 6rem;
+    }
+    .keyvalue1__pic{
+        max-width: 80%;
+    }
+    .keyvalueplank{
+        padding: 4rem 3rem;
+        border-radius: 0;
+    }
+    .keyvalueplank__inner{
+        font-size: 2rem;
+        line-height: 1.5;
+    }
+    .keyvalue2,
+    .keyvalue3,
+    .keyvalue4{
+        flex-flow:column nowrap;
+        align-items: stretch;
+        padding-top: 6rem;
+    }
+    .keyvalue2 br,
+    .keyvalue3 br{
+        display: none;
+    }
+    .keyvalue3__right{
+        order: -1;
+        padding-left: 0;
+    }
+    .keyvalue3__right .keyvaluetext,
+    .keyvalue4 .keyvaluetext,
+    .keyvalue2__left .keyvaluetext{
+        padding-bottom: 3rem;
+    }
+    .keyvalue4__right{
+        margin-left: 0;
+    }
+    .keyvalue4__picwrap{
+        width: 100%;
+        max-width: none;
+    }
+}
\ No newline at end of file
diff --git a/public/css/machinelearning.css b/public/css/machinelearning.css
new file mode 100644
index 0000000..7601ea9
--- /dev/null
+++ b/public/css/machinelearning.css
@@ -0,0 +1,127 @@
+.innerhero__pic--machine {
+  width: auto;
+  height: auto;
+  top: auto;
+  bottom: -11rem;
+  transform: none;
+  left: 80%;
+}
+
+.machineitem1 {
+  margin-top: 5rem;
+}
+.machine__text {
+  max-width: 530px;
+}
+.machine__subtext {
+  max-width: 290px;
+  margin-left: 1rem;
+}
+.machine__info {
+  margin-left: 8rem;
+}
+.machine__part {
+  margin-top: 2rem;
+}
+.machine__title {
+  max-width: 520px;
+  line-height: 1.6;
+  font-size: 2.4rem;
+}
+
+.machine1 {
+  padding-top: 13rem;
+  padding-bottom: 7rem;
+}
+.machine1__image {
+  background: #f6f6f6;
+  border-radius: 10px;
+  padding: 5.5rem 7rem 6rem 4rem;
+  margin-left: 5.8rem;
+  margin-top: 1rem;
+}
+
+.machine1__text {
+  max-width: 650px;
+  margin-top: 2rem;
+}
+.machine1__block {
+  justify-content: space-between;
+}
+.machine1__title {
+  line-height: 1.6;
+  font-size: 2.4rem;
+  margin-top: 5rem;
+}
+
+.machine1__options {
+  margin-top: 2.5rem;
+}
+.machine1__option:last-child {
+  margin-left: 11rem;
+}
+.machine1__number {
+  color: #0070cc;
+  font-size: 2rem;
+  line-height: 26px;
+  font-weight: bold;
+}
+.machine1__subtext {
+  max-width: 295px;
+  margin-top: 2rem;
+  flex-direction: column;
+}
+.machine1__subtext span {
+  margin-top: 0.8rem;
+}
+
+@media (max-width: 1700px) {
+  .innerhero__pic--machine {
+    left: 70%;
+  }
+}
+
+@media (max-width: 1199px) {
+  .innerhero__pic--machine {
+    left: 75%;
+  }
+  .machine1__block {
+    flex-direction: column;
+  }
+  .machine1__image {
+    margin-left: 0rem;
+    margin-top: 3rem;
+  }
+}
+
+@media (max-width: 767px) {
+  .machine1 {
+    padding-top: 9rem;
+  }
+  .machine1__image {
+    width: 100%;
+  }
+  .machineitem1 {
+    margin-top: 4rem;
+    flex-direction: column;
+  }
+  .machine__info {
+    margin-left: 0rem;
+    margin-top: 2rem;
+  }
+}
+@media (max-width: 500px) {
+  .machine1__subtext {
+    margin-top: 0.5rem;
+  }
+  .machine1__image {
+    padding: 3rem;
+  }
+  .machine1__options {
+    flex-direction: column;
+  }
+  .machine1__option:last-child {
+    margin-left: 0rem;
+    margin-top: 2rem;
+  }
+}
diff --git a/public/css/media.css b/public/css/media.css
new file mode 100644
index 0000000..077c904
--- /dev/null
+++ b/public/css/media.css
@@ -0,0 +1,707 @@
+html{
+    font-size: 9px;
+}
+
+/* === === === === === === === === COMMUNITY PAGE === === === === === === === === */
+.cmtyhero__wrap{
+    padding: 0 15px;
+    height: 80px;
+}
+.hdrmenu{
+    position: relative;
+    top: auto;
+    left: auto;
+    transform: none;
+}
+.hdrmenu li{
+    padding-left: 2rem;
+    padding-right: 2rem;
+}
+.hdr__button{
+    order:3;
+}
+.cmtyhero{
+    height: calc(100vh - 80px);
+    min-height: 500px;
+    max-height: 800px;
+}
+.cmtyhero__img{
+    width: 40%;
+    height: auto;
+}
+.cmtyhero__h1{
+    font-size: 5rem;
+    line-height: 1.15;
+}
+.cmtyhero__text{
+    max-width: 50%;
+    font-size: 2rem;
+}
+.cmtyhero__sub{
+    padding-top: 6rem;
+}
+.cmtynavblock {
+    height: 6rem;
+}
+
+.cmtyhistory2__right img{
+    max-width: 88%;
+}
+.cmtyhistory3__left img{
+    max-width: 90%;
+}
+
+.cmty-meet__pic img{
+    width: 45vw;
+    top: 0;
+}
+.cmty-meet{
+    padding: 100px 0;
+}
+.cmty-meet__h2{
+    font-size: 4rem;
+}
+.cmty-meet__text{
+    font-size: 2rem;
+}
+.cmty-meet__sub{
+    padding-top: 6rem;
+}
+
+.cmty-contrib__main{
+    max-width: 50%;
+    padding-right: 40px;
+}
+.cmty-contrib__pic{
+    width: 48%;
+}
+
+.committer{
+    height: 5rem;
+}
+.committer__github,
+.committer__apache{
+    width: 24px;
+    height: 24px;
+    margin: 0 10px;
+}
+.committer__apache{
+    height: 3.8rem;
+}
+.committer__github img, .committer__apache img{
+    width: 100%;
+    height: 100%;
+    object-fit: contain;
+}
+.cmty-pm__wrap{
+    grid-gap: 1.5rem;
+    grid-auto-rows: 223px;
+}
+.cmty-pmitem{
+    padding: 40px 20px 10px;
+}
+.cmty-pmitem__links{
+    bottom: 25px;
+    left: 20px;
+}
+.cmty-pmitem__proff{
+    height: 20px;
+    top: 20px;
+}
+
+.cmty-startcont__main{
+    padding-right: 4rem;
+}
+.cmty-startcont__pic{
+    width: 48%;
+}
+.cmty-startcont__pic img{
+    width: 100%;
+}
+
+.cmty-ready__wrap{
+    grid-gap: 1rem;
+}
+.cmty-ready__item{
+    padding: 20px 15px 20px 25px;
+    min-height: auto;
+}
+.cmty-ready__wrap{
+    grid-auto-rows: auto;
+}
+.cmty-ready__item i{
+    margin-bottom: 2rem;
+}
+
+.cmty-ready__bottom{
+    flex-flow: column nowrap;
+    align-items: stretch;
+}
+.cmty-ready__botttl{
+    width: 100%;
+    padding-bottom: 2rem;
+}
+.cmty-ready__botttl br{
+    display: none;
+}
+.cmty-ready__screens{
+    flex-basis: auto;
+    padding-bottom: 2rem;
+}
+.cmty-ready__more{
+    background: none;
+    padding-top: 2rem;
+}
+
+.cmty-red{
+    padding-top: 5rem;
+}
+
+.cmty-redstep--1::after{
+    display: none;
+}
+.cmty-redstart__wrap{
+    grid-template-columns: 2fr 4fr;
+}
+.cmty-redstep--2, .cmty-redstep--3{
+    width: auto;
+}
+
+.cmty-ask{
+    margin-top: 6rem;
+    padding: 8rem 0;
+}
+.cmty-ask__title{
+    font-size: 5rem;
+}
+.cmty-ask__text{
+    font-size: 2rem;
+}
+.cmty-ask__bg{
+    margin-left: auto;
+    flex-basis: auto;
+    width: 45%;
+}
+
+
+
+
+@media (max-width:992px){
+    html{
+        font-size: 8px;
+    }
+    .hdr__button{
+        padding: 0 10px;
+        font-size: 1.4rem;
+    }
+    .hdrmenu li{
+        padding-left: 1.1rem;
+        padding-right: 1.1rem;
+    }
+    .cmtynavblock__list li{
+        padding: 0 15px;
+    }
+    .cmtyhero{
+        display: block;
+        text-align: center;
+        height: auto;
+        min-height: auto;
+        max-height: none; 
+    }
+    .cmtyhero__main{
+        padding: 6rem 0 4rem;
+        height: auto;
+        min-height: auto;
+        max-height: none;
+    }
+    .cmtyhero__h1{
+        font-size: 4rem;
+        max-width: none;
+        width: 100%;
+    }
+    .cmtyhero__text{
+        padding-top: 2rem;
+        max-width: none;
+        line-height: 1.5;
+    }
+    .cmtyhero__sub{
+        width: 100%;
+        padding-top: 2rem;
+    }
+    .cmtyhero__img{
+        position: relative;
+        right: auto;
+        height: auto;
+        width: 90%;
+        max-height: 400px;
+        object-fit: contain;
+        order:2;
+        top: auto;
+        margin-bottom: 4rem;
+        transform: none;
+    }
+    .capstext{
+        line-height: 1.5;
+    }
+
+
+
+    .cmtyhistory1__left{
+        width: 40%;
+    }
+    .cmtyhistory1__left img{
+        width: 80%;
+        margin-top: 8rem;
+    }
+    .cmtyhistory2{
+        padding-top: 1rem;
+    }
+    .cmtyhistory2__right img{
+        margin-top: 4rem;
+    }
+    .cmtyhistory3{
+        padding-top: 60px;
+    }
+    .cmtyhistory3__left img{
+        margin-top: 3rem;
+    }
+
+    .cmty-meet{
+        margin-top: 0;
+    }
+    .cmty-meet__main{
+        padding-right: 20px;
+    }
+    .cmty-meet__text{
+        font-size: 1.7rem;
+        line-height: 1.5;
+    }
+    .cmty-meet__sub{
+        padding-top: 3rem;
+    }
+    .committers__morelink{
+        margin-top: 2rem;
+    }
+
+    .cmty-pm{
+        padding-top: 4rem;
+        padding-bottom: 6rem;
+    }
+    .cmty-pm__wrap{
+        grid-template-columns: 1fr 1fr;
+    }
+    .cmty-pm__more .jsOpenerWrap{
+        padding-top:15px;
+    }
+
+
+    .cmty-startcont{
+        padding: 6rem 0;
+    }
+    .cmty-startcont__wrap{
+        flex-flow: column nowrap;
+        align-items: stretch;
+    }
+    .cmty-startcont__main{
+        max-width: none;
+        text-align: center;
+        padding: 0;
+    }
+    .cmty-startcont__pic{
+        width: 80%;
+        max-width: 400px;
+        margin: 4rem auto 0;
+    }
+
+    .cmty-docs{
+        padding: 6rem 0;
+    }
+    .cmty-docblock, .tplbox{
+        width: calc(50% - 5px);
+        padding: 40px 30px;
+        min-height: auto;
+    }
+    .cmty-docblock__icon, .tplbox__icon,
+    .cmty-redblock .tplbox__icon{
+        left: 30px;
+    }
+    .cmty-docblock__title,
+    .cmty-redblock .h4{
+        padding-top: 7rem;
+    }
+
+    .cmty-ready__wrap{
+        grid-template-columns: 1fr 1fr;
+    }
+
+    .cmty-redblock{
+        width: 100%;
+    }
+    .cmty-red__wrap{
+        grid-auto-rows: auto;
+        grid-gap: 10px;
+    }
+    .cmty-redblock ul{
+        padding-top: 3rem;
+    }
+
+    .cmty-redstep i{
+        left: 25px;
+        top: 25px;
+        font-size: 34px;
+    }
+    .cmty-redstep::before{
+        top: 25px;
+        width: 7px;
+    }
+    .cmty-redstart__wrap{
+        grid-auto-rows: auto;
+    }
+    .cmty-redstep--2, .cmty-redstep--3{
+        padding: 30px 70px 20px 85px;
+    }
+    .cmty-redstep--2, .cmty-redstep--3{
+        background-size: 70px;
+    }
+    .cmty-redstart__botright{
+        width: calc(50% - 20px);
+    }
+
+    .cmty-ask__main{
+        padding-right: 2rem;
+    }
+    .cmty-ask__title{
+        font-size: 4rem;
+    }
+    .cmty-ask__text{
+        font-size: 1.8rem;
+    }
+
+    .faqblock{
+        padding-bottom: 8rem;
+    }
+    .faqblock__title img{
+        width: 35px;
+    }
+    .faqblock__title{
+        padding-left: 50px;
+        padding-right: 30px;
+    }
+    .faqblock__title br{
+        display: none;
+    }
+    .faqblock__right{
+        padding-top: 0;
+    }
+    .faqblock__button{
+        height: 4rem;
+        margin-right: 2rem;
+    }
+} /* END MEDIA 992px */
+
+
+
+@media (max-width:767px) {
+    body{
+        font-size: 1.7rem;
+    }
+    .hdrmenu{
+        display: none;
+    }
+    .hdr__burger{
+        display: block;
+    }
+    .hdr__blue .hdr__burger img{
+        filter: invert(1);
+    }
+    .cmtyhero__wrap{
+        height: 65px;
+    }
+    .hdr__logo{
+        width: 100px;
+    }
+    .hdr__button{
+        font-size: 1.7rem;
+        height: 35px;
+    }
+    .cmtyhero__h1 br{
+        display: none;
+    }
+
+    .cmtynavblock{
+        width: 100%;
+        overflow: hidden;
+        overflow-x: auto;
+    }
+    .hdr-active .cmtynavblock{
+        top: 64px;
+    }
+    .cmtynavblock__list{
+        justify-content: flex-start;
+    }
+    .cmtynavblock__list li{
+        padding: 0 10px;
+    }
+
+    .cmtyhistory{
+        padding-top: 6rem;
+        padding-bottom: 6rem;
+    }
+    .cmtyhistory1__title{
+        font-size: 3rem;
+        text-align: center;
+    }
+    .cmtyhistory1__wrap{
+        padding-top: 5rem;
+        flex-flow: column nowrap;
+        align-items: stretch;
+    }
+    .cmtyhistory1__left{
+        width: 100%;
+        align-self: center;
+    }
+    .cmtyhistory__year{
+        top: auto;
+        bottom: 0;
+        left: 0;
+        font-size: 4rem;
+    }
+    .cmtyhistory1__left img{
+        width: 200px;
+        margin-top: 0rem;
+        margin-bottom: 8rem;
+        margin-left: auto;
+        margin-right: auto;
+    }
+    .cmtyhistory1__right{
+        padding-top: 2rem;
+    }
+    .cmtyhistory2{
+        padding-top: 0rem;
+    }
+    .cmtyhistory2__wrap,
+    .cmtyhistory3__wrap{
+        flex-flow: column nowrap;
+        align-self: stretch;
+    }
+    .cmtyhistory2__right{
+        width: 100%;
+    }
+    .cmtyhistory2__right img{
+        margin: 0 auto 7rem;
+        max-width: 100%;
+    }
+    .cmtyhistory2__left{
+        padding-top: 2rem;
+    }
+    .cmtyhistory3{
+        padding-top: 5rem;
+    }
+    .cmtyhistory3__left{
+        width: 100%;
+        padding-top: 0;
+    }
+    .cmtyhistory3__left img{
+        margin-top: 0;
+        margin-bottom: 7rem;
+        max-width: 100%;
+    }
+    .cmtyhistory3__right{
+        width: auto;
+        padding-top: 2rem;
+    }
+    .cmtyhistory5{
+        padding-top: 0;
+    }
+    .cmtyhistory5 .cmtyhistory3__right{
+        padding-top: 2rem;
+    }
+
+    .cmty-meet{
+        padding: 6rem 0;
+    }
+    .cmty-meet__wrap{
+        flex-flow: column nowrap;
+        align-self: stretch;
+    }
+    .cmty-meet__main{
+        max-width: none;
+        padding-right: 0;
+    }
+    .cmty-meet__h2{
+        font-size: 3rem;
+    }
+    .cmty-meet__sub{
+        padding-top: 2rem;
+    }
+    .cmty-meet__pic{
+        width: auto;
+        margin: 5rem 0 0;
+    }
+    .cmty-meet__pic img{
+        position: relative;
+        width: 100%;
+    }
+
+    .cmty-contrib{
+        padding: 6rem 0;
+    }
+    .cmty-contrib__wrap{
+        flex-flow: column nowrap;
+        align-items: stretch;
+    }
+    .cmty-contrib__main{
+        max-width: none;
+        padding-right: 0;
+    }
+    .cmty-contrib__pic{
+        width: auto;
+        padding-top: 4rem;
+    }
+    .cmty-contrib__pic img{
+        margin-top: 0;
+    }
+
+
+    .cmty-committers{
+        padding-bottom: 6rem;
+    }
+    
+    .committers__wrap{
+        flex-flow: column nowrap;
+        align-items: stretch;
+    }
+    .committers__left, .committers__right{
+        width: 100%;
+    }
+    .committers__right{
+        padding-top: 4rem;
+    }
+    .committer{
+        padding-right: 0;
+    }
+
+    .cmty-pm__wrap{
+        grid-template-columns: 1fr;
+        grid-auto-rows: auto;
+    }
+    .cmty-pmitem{
+        padding: 20px 20px;
+    }
+    .cmty-pmitem__name{
+        min-height: auto;
+    }
+    .cmty-pmitem__links{
+        position: relative;
+        bottom: 0;
+        left: 0;
+        padding-top: 2rem;
+    }
+    .cmty-pmitem__github{
+        margin-right: 10px;
+    }
+
+    .cmty-docs__wrap{
+        flex-flow: column nowrap;
+        align-items: stretch;
+    }
+    .cmty-docblock, .tplbox{
+        width: 100%;
+        margin-bottom: 2rem;
+    }
+    .cmty-docblock__list{
+        padding-top: 2rem;
+    }
+    .cmty-ready__wrap{
+        grid-template-columns: 1fr;
+    }
+    .cmty-ready__bottom{
+        padding: 6rem 0;
+    }
+    .cmty-ready__screens{
+        grid-template-columns: 1fr;
+        grid-gap: 2rem;
+    }
+
+    .cmty-red br{
+        display: none;
+    }
+    .cmty-red__wrap{
+        grid-template-columns: 1fr;
+        padding-top: 3rem;
+    }
+
+    .cmty-redstart{
+        padding-top: 6rem;
+        padding-bottom: 6rem;
+    }
+    .cmty-redstart__wrap{
+        grid-template-columns: 1fr;
+    }
+    .cmty-redstep--1{
+        padding: 30px 70px 20px 85px;
+    }
+    .cmty-redstart__bottom{
+        padding-top: 6rem;
+        flex-flow: column nowrap;
+    }
+    .cmty-redstart__bottitle{
+        width: 100%;
+        padding-bottom: 3rem;
+    }
+    .cmty-redstart__botright{
+        width: 100%;
+        padding: 15px;
+    }
+
+    .cmty-ask{
+        margin-top: 0;
+        padding: 6rem 0;
+        text-align: center;
+    }
+    .cmty-ask__title{
+        font-size: 3rem;
+    }
+    .cmty-ask__wrap{
+        flex-flow: column nowrap;
+        align-items: stretch;
+    }
+    .cmty-ask__main{
+        padding-right: 0;
+    }
+    .cmty-ask__bg{
+        padding-top: 3rem;
+        width: 70%;
+        margin-right: auto;
+    }
+
+
+    .faq{
+        padding: 6rem 0;
+    }
+    .faqblock{
+        flex-flow: column nowrap;
+        padding-bottom: 4rem;
+    }
+    .faqblock__title{
+        width: 100%;
+        font-size: 2.5rem;
+    }
+    .faqblock__right{
+        padding-top: 3rem;
+        max-width: none;
+        overflow: hidden;
+    }
+    .faqblock__buttons{
+        flex-flow: column nowrap;
+        align-items: flex-start;
+        padding: 3rem 0;
+    }
+    .faqblock__button{
+        margin-bottom: 1rem;
+    }
+} /* END MEDIA 767px */
+
+
+
+/* === === === === === === === === END COMMUNITY PAGE === === === === === === === === */
\ No newline at end of file
diff --git a/public/css/multi-tier.css b/public/css/multi-tier.css
new file mode 100644
index 0000000..49befb7
--- /dev/null
+++ b/public/css/multi-tier.css
@@ -0,0 +1,184 @@
+.innerhero__pic--multitier{
+    width: 61rem;
+    height: auto;
+    top: auto;
+    bottom: -27rem;
+    transform: none;
+    left: 75%;
+}
+.multitier2 {
+    padding: 9rem 0 0rem;
+}
+.multitier2__title {
+    font-weight: 400;
+}
+.multitiers {
+    padding-top: 15rem;
+}
+.multitier3 {
+    padding-top: 6rem;
+}
+.multitiers__left {
+    width: 50%;
+    flex-shrink: 0;
+}
+.multitierblock {
+    padding: 5rem;
+    text-align: center;
+    background: var(--grey);
+    border-radius: 1rem;
+}
+.multitierblock__title {
+    font-size: 3rem;
+    line-height: 1.3;
+}
+.multitierblock__pic {
+    margin-top: 8rem;
+    max-width: 100%;
+    margin: 8rem auto 0;
+}
+.multitiers__text {
+    padding-top: 2rem;
+    padding-left: 9rem;
+}
+.multitiers__text:first-child{
+    padding-left: 0;
+    padding-right: 9rem;
+}
+.multitiers__text p{
+    margin-bottom: 1rem;
+}
+.multitier3__h4 {
+    font-weight: 700;
+}
+.multitiervid{
+    position: relative;
+}
+.multitiervid__link {
+    display: block;
+    position: relative;
+    font-size: 2rem;
+    line-height:2.4rem;
+    font-weight: 700;
+    color:#000;
+    background-size: 2.4rem;
+    padding-bottom: 0px;
+}
+.multitiervid__link:hover{
+    color:var(--dark);
+}
+.multitiervid__screen {
+    position: relative;
+    margin-top: 2rem;
+    display: inline-block;
+    overflow: hidden;
+    transform: translate3d(0,0,0);
+    transition: box-shadow 0.3s ease;
+}
+.multitiervid__screen img,
+.multitiervid__screen a,
+.multitiervid__screen iframe{
+    display: block;
+    border:none;
+    width: 100%;
+    max-width: 350px;
+    height: auto;
+    transform: translate3d(0,0,0);
+    transition: transform 0.3s ease;
+}
+.multitiervid__screen:hover img{
+    transform: scale(1.01);
+}
+.multitiervid__screen:hover{
+    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
+}
+.multitiervid__screen::after{
+    content:"";
+    display: block;
+    position: absolute;
+    left: 0;
+    top: 0;
+    bottom: 0;
+    right: 0;
+    opacity: 1;
+    background-image: url(../img/icon-video.svg);
+    background-repeat: no-repeat;
+    background-size: 4rem;
+    background-position: 50% 50%;
+    transition: background 0.3s ease;
+}
+.multitiervid__descr {
+    padding-top: 1.5rem;
+    color:var(--grey4);
+    max-width: 350px;
+}
+
+
+
+.multitier4 {
+    padding-top: 17rem;
+}
+.multitier5 {
+    padding-top: 17rem;
+}
+
+
+
+
+@media (max-width:767px) {
+    .multitier2{
+        padding-top: 6rem;
+    }
+    .multitier2__title{
+        text-align: left;
+        padding-top: 0rem;
+        padding-bottom: 0rem;
+        font-size: 3rem;
+        line-height: 1.4;
+    }
+
+    .multitiers{
+        padding-top: 8rem;
+    }
+    .blockheader__left{
+        padding-right: 0;
+    }
+    .multitier3,
+    .multitier4,
+    .multitier5{
+        padding-top: 4rem;
+        padding-bottom: 4rem;
+        flex-flow: column nowrap;
+        align-items: stretch;
+    }
+    .multitier3{
+        padding-top: 3rem;
+    }
+    .multitier4{
+        flex-flow: column-reverse nowrap;
+    }
+    .multitiers__left{
+        width: 100%;
+    }
+    .multitiers__text{
+        padding-top: 4rem;
+        padding-left: 0;
+    }
+    .multitiers__text:first-child{
+        padding-right: 0;
+    }
+    .multitierblock__pic{
+        margin-top: 4rem;
+    }
+    .multitier3__h4{
+        font-size: 2.2rem;
+    }
+    .multitiervid__link{
+        font-size: 2rem;
+        padding-bottom: 0;
+    }
+    .native-bottom{
+        padding-top: 2rem;
+        padding-bottom: 8rem;
+    }
+} /* END 767px */
\ No newline at end of file
diff --git a/public/css/multilanguage.css b/public/css/multilanguage.css
new file mode 100644
index 0000000..9a897fe
--- /dev/null
+++ b/public/css/multilanguage.css
@@ -0,0 +1,83 @@
+.innerhero__pic--lang {
+  width: 67rem;
+  height: auto;
+  top: auto;
+  bottom: -11rem;
+  transform: none;
+  left: 50%;
+}
+.lang {
+  padding-top: 13rem;
+}
+.lang-block {
+  justify-content: space-between;
+}
+.lang__text {
+  max-width: 620px;
+}
+.lang__image {
+  background: #f6f6f6;
+  border-radius: 10px;
+  padding: 4rem;
+  margin-left: 11rem;
+  width: 542px;
+}
+.lang__img1 {
+  margin-right: 17rem;
+}
+.lang__two {
+  align-items: center;
+  margin-top: 1.5rem;
+}
+.lang__img4 {
+  margin-top: 3rem;
+  margin-left: 6rem;
+}
+@media (max-width: 1199px) {
+  .innerhero__pic--lang {
+    width: 50rem;
+  }
+}
+@media (max-width: 992px) {
+  .lang-block {
+    flex-direction: column;
+  }
+  .lang {
+    padding-top: 8rem;
+  }
+  .lang__image {
+    margin-left: 0rem;
+    margin-top: 3rem;
+  }
+}
+
+@media (max-width: 767px) {
+  .lang__image {
+    margin-left: 0rem;
+    margin-top: 3rem;
+    width: 100%;
+    height: auto;
+  }
+}
+@media (max-width: 600px) {
+  .lang__img {
+    width: 30%;
+  }
+  .lang__image {
+    padding: 3rem;
+  }
+  .lang__one {
+    align-items: center;
+  }
+  .lang__img1 {
+    margin-right: 8rem;
+  }
+  .lang__img4 {
+    margin-top: 0rem;
+    margin-left: 0rem;
+    width: 60%;
+  }
+  .lang__two {
+    justify-content: space-between;
+  }
+}
diff --git a/public/css/native-persistence.css b/public/css/native-persistence.css
new file mode 100644
index 0000000..07f8cc6
--- /dev/null
+++ b/public/css/native-persistence.css
@@ -0,0 +1,436 @@
+.innerhero__pic--native{
+    width: 49rem;
+    height: auto;
+    top: auto;
+    bottom: -13rem;
+    transform: none;
+    left: 75%;
+}
+.native1 {
+    padding-top: 12rem;
+    justify-content: space-between;
+    align-items: stretch;
+}
+.native1__block {
+    width: calc(50% - 17px);
+    background: var(--blue4);
+    border-radius: 10px;
+    padding: 4rem;
+}
+.native1__icon {
+    width: 32px;
+    height: 32px;
+    display: block;
+}
+.native1__block--bad {
+    background: var(--red5);
+}
+.native1__title{
+    max-width: 500px;
+}
+
+
+.native2 {
+    padding-top: 7rem;
+}
+.native2__grid {
+    display: grid;
+    grid-template-columns: repeat(3, 1fr);
+    grid-gap: 3rem;
+    grid-auto-rows: auto;
+}
+.native2item {
+    position: relative;
+    max-width: 300px;
+    padding-top: 1.5rem;
+}
+.native2item::before{
+    content:"";
+    display: block;
+    position: absolute;
+    top: 0;
+    left: 0;
+    border-radius: 6px;
+    width: 4rem;
+    height: 3px;
+    background: var(--blue);
+}
+
+
+.native-howwork {
+    padding-top: 10rem;
+    padding-bottom: 7rem;
+}
+.native-howwork__wrap {
+    position: relative;
+}
+.native-howwork__left {
+    max-width: 540px;
+    flex-basis: 50%;
+    flex-shrink: 0;
+}
+.native-howwork__left .h5 {
+    font-weight: 700;
+}
+.native-howwork__right {
+    padding-left: 11rem;
+    max-width: 54rem;
+    font-style: italic;
+    color:var(--grey5);
+}
+.native-howwork__right p{
+    font-style: italic;
+}
+
+
+.native-points {
+    padding-top: 6rem
+}
+.native-points__grid {
+    display: grid;
+    grid-template-columns: 1fr 1fr;
+    grid-gap: 40px;
+    grid-auto-rows: auto;
+}
+.native-points__item {
+    position: relative;
+    min-height: 12rem;
+    background: #FFFFFF;
+    border: 1px solid var(--grey2);
+    box-sizing: border-box;
+    border-radius: 10px;
+    padding: 3.5rem 5rem 3rem 7.7rem;
+}
+.native-points__item::before{
+    content: "";
+    position: absolute;
+    display: block;
+    width: 24px;
+    height: 24px;
+    left: 3rem;
+    top: 3.5rem;
+    background: url(../img/features/icon-check-ok.svg) no-repeat;
+    background-size: contain;
+}
+
+
+.native-steps {
+    padding-top: 12rem;
+}
+.native-steps__pic {
+    margin-top: 5rem;
+    width: 100%;
+    height: auto;
+    display: block;
+}
+.native-steps__grid {
+    padding-top: 5.5rem;
+    display: grid;
+    grid-template-columns: repeat(3, 1fr);
+    grid-gap: 3rem;
+    grid-auto-rows: auto;
+}
+.nativestepitem {
+    max-width: 340px;
+}
+.nativestepitem i{
+    font-style: normal;
+    font-weight: 700;
+    color:var(--blue);
+    display: block;
+}
+.nativestepitem__title {
+    font-weight: 700;
+}
+.nativestepitem__text {
+}
+.nativestepitem__text p:not(:last-child){
+    padding-bottom: 1rem;
+}
+.nativestepitem__small {
+    font-size: 1.3rem;
+    line-height: 1.6;
+    color: var(--grey5);
+}
+
+
+.nativecode {
+    padding-top: 12rem;
+}
+.nativecode__tabctrls {
+    padding-top: 5rem;
+}
+.nativecode__link {
+    display: block;
+    background: #fff;
+    color:#000;
+    border-radius: 20px;
+    line-height: 4rem;
+    text-decoration: none;
+    padding: 0 4rem;
+    margin-right: 1rem;
+}
+.nativecode__link:hover{
+    color:#000;
+    background: var(--grey);
+}
+.nativecode__link.active{
+    background: #2D2D2D;
+    color:#fff;
+}
+.nativecode__tabs {
+    padding-top: 1rem;
+    max-width: 900px;
+}
+.nativecode__tab{
+    display: none;
+}
+.nativecode__tab.active{
+    display: block;
+}
+.nativecode__codebox{
+    display: block;
+    margin-top: -24px;
+}
+.nativecode__codebox code {
+    display: block;
+    overflow: hidden;
+    border-radius: 1rem;
+}
+
+
+
+.native-bottom {
+    padding-top: 12rem;
+    padding-bottom: 10rem;
+}
+.native-bottom__grid {
+    display: grid;
+    grid-template-columns: repeat(2, 1fr);
+    grid-gap: 3rem;
+    grid-auto-rows: auto;
+}
+.nativebotblock {
+    min-height: 390px;
+    background: url(../img/features/more-learn-planet.png) var(--blue) right bottom no-repeat;
+    background-size: 50%;
+    border-radius: 10px;
+    padding: 7rem 6rem 5rem;
+    color:#fff;
+    position: relative;
+    transition: box-shadow 0.2s ease, background 0.2s ease;
+}
+.nativebotblock--learn{
+    background: url(../img/features/more-learn-book.png) #CE2034 right bottom no-repeat;
+    background-size: 45%;
+}
+.nativebotblock__title {
+    font-weight: 700;
+    position: relative;
+    padding-left: 4rem;
+}
+.nativebotblock__icon {
+    position: absolute;
+    display: block;
+    width: 26px;
+    height: 26px;
+    object-fit: contain;
+    object-position: left center;
+    height: auto;
+    left: -1px;
+    top: 5px;
+}
+.nativebotblock__text {
+    padding-top: 2rem;
+    color:var(--grey5);
+    max-width: 440px;
+    color:#fff;
+}
+.nativebotblock__text a{
+    color:#fff;
+}
+.nativebotblock__text a:hover{
+    color:#f0f0f0;
+}
+.nativebotblock__link {
+    margin-top: 2rem;
+    position: absolute;
+    bottom: 8rem;
+    left: 7rem;
+    display: inline-block;
+    color:#fff;
+}
+.nativebotblock__link:hover{
+    color:#fff;
+}
+.nativebotblock__link::after{
+    background-image: url(../img/icon-arrow-white.svg);
+}
+.nativebotblock:hover{
+    box-shadow: 2px 2px 10px 4px rgba(0, 112, 204, 0.3);
+    background-position-x: 101%;
+}
+.nativebotblock--learn:hover{
+    box-shadow: 2px 2px 10px 4px rgba(207, 127, 136, 0.3);
+}
+
+
+@media (max-width:1199px){
+    .native-bottom{
+        padding-top: 8rem;
+        padding-bottom: 8rem;
+    }
+    .nativebotblock__icon{
+        top: 5px;
+        transform: none;
+    }
+    .nativebotblock{
+        min-height: 35rem;
+        padding: 5rem;
+    }
+    .nativebotblock__link{
+        left: 5rem;
+    }
+}
+
+@media (max-width:992px){
+    .native-bottom{
+        padding-bottom: 8rem;
+        padding-top: 8rem;
+    }
+    .nativebotblock{
+        padding-left: 3rem;
+        padding-right: 3rem;
+        min-height: auto;
+    }
+    .nativebotblock__link{
+        position: relative;
+        bottom: auto;
+        left: auto;
+    }
+    .nativebotblock__icon{
+        width: 22px;
+        height: 22px;
+        object-fit: contain;
+        top: 0;
+    }
+    .nativebotblock__title{
+        padding-left: 4rem;
+        font-size: 2.3rem;
+        line-height: 1.2;
+    }
+}
+
+@media (max-width:767px){
+    .native1{
+        padding-top: 4rem;
+        flex-flow: column nowrap;
+        align-items: stretch;
+    }
+    .native1__block{
+        width: 100%;
+        margin-bottom: 2rem;
+        padding: 3rem 2rem;
+    }
+    .native1__block br{
+        display: none;
+    }
+    .native1__icon{
+        width: 24px;
+        height: 24px;
+    }
+    .native2{
+        padding-top: 5rem;
+    }
+    .native2__grid{
+        grid-template-columns: 1fr;
+    }
+    .native-howwork{
+        padding-top: 8rem;
+    }
+    .native-howwork__wrap{
+        flex-flow: column nowrap;
+        align-items: stretch;
+    }
+    .native-howwork__right{
+        padding-left: 0;
+        padding-top: 4rem;
+    }
+    .native-points{
+        padding-top: 2rem;
+    }
+    .native-points br,
+    .native-steps br{
+        display: none;
+    }
+    .native-points__grid{
+        grid-template-columns: 1fr;
+        grid-gap: 2rem;
+        padding-top: 2rem;
+    }
+    .native-steps{
+        padding-top: 8rem;
+    }
+    .native-steps__pic{
+        margin-top: 3rem;
+        margin-left: -15px;
+        margin-right: -15px;
+        width: calc(100% + 30px);
+    }
+    .native-steps__grid{
+        grid-template-columns: 1fr;
+        grid-gap: 4rem;
+        padding-top: 4rem;
+    }
+    .nativestepitem i{
+        font-size: 2rem;
+        line-height: 1;
+    }
+    .nativestepitem__title{
+        font-size: 2rem;
+    }
+    .nativecode{
+        padding-top: 8rem;
+    }
+    .nativecode__tabs{
+        padding-top: 2rem;
+    }
+    .nativecode__tabctrls{
+        padding-top: 3rem;
+    }
+    .nativecode__link{
+        margin-right: 0;
+        width: calc(100% / 3);
+        text-align: center;
+    }
+    .native-bottom{
+        padding-top: 5rem;
+        padding-bottom: 6rem;
+    }
+    .native-bottom__grid{
+        grid-template-columns: 1fr;
+        grid-gap: 2rem;
+        padding-top: 0;
+    }
+    .nativebotblock{
+        padding: 4rem 2rem;
+        min-height: auto;
+    }
+    .nativebotblock__link{
+        margin-top: 3rem;
+    }
+    .nativebotblock__title{
+        padding-left: 3.6rem;
+    }
+    .nativebotblock__icon{
+        width: 20px;
+        height: 20px;
+    }
+    .nativebotblock__text{
+        padding-top: 2rem;
+        max-width: 75%;
+    }
+    .nativebotblock__text br{
+        display: none;
+    }
+}/* END MEDIA 767px */
diff --git a/public/css/resources.css b/public/css/resources.css
new file mode 100644
index 0000000..25a3b73
--- /dev/null
+++ b/public/css/resources.css
@@ -0,0 +1,396 @@
+.reshero {
+    overflow: hidden;
+    height: calc(100vh - 96px);
+    display: flex;
+    flex-flow: column nowrap;
+    align-items: center;
+    justify-content: center;
+    min-height: 500px;
+    max-height: 800px;
+    background: #F1F1F1;
+}
+.reshero__img {
+    position: absolute;
+    right: 15px;
+    top: 50%;
+    transform: translateY(-50%);
+    width: 441px;
+    height: auto;
+    pointer-events: none;
+}
+.reshero__h1 {
+    position: relative;
+    z-index: 10;
+    color:var(--dark);
+    display: flex;
+    flex-flow: column nowrap;
+    align-items: flex-start;
+    justify-content: flex-start;
+}
+.reshero__descr {
+    max-width: 730px;
+}
+
+
+
+
+.restechnical {
+    padding-top: 12rem;
+    padding-bottom: 12rem;
+}
+.restechnical__grid {
+    padding-top: 8rem;
+    display: grid;
+    grid-template-columns: 1fr 1fr;
+    grid-auto-rows: auto;
+    grid-gap: 8rem 4rem;
+}
+.restechnical__item {
+    display: flex;
+    flex-flow: column nowrap;
+    align-items: stretch;
+    justify-content: flex-start;
+}
+.restechnical__title {
+    align-items: center;
+    font-weight: 700;
+}
+.restechnical__title img{
+    display: block;
+    height: 48px;
+    width: auto;
+    flex-shrink: 0;
+    margin-right: 2rem;
+}
+.restechnical__title--empty{
+    min-height: 98px;
+}
+.restechnical__box {
+    flex-grow: 1;
+    background: #FFFFFF;
+    border: 1px solid var(--grey3);
+    box-sizing: border-box;
+    border-radius: 1rem;
+    padding: 5rem 8rem calc(8rem + 45px);
+    position: relative;
+}
+.restechnical__subtitle {
+    font-weight: 700;
+}
+.restechnical__text{
+    max-width: 330px;
+}
+.restechnical__action {
+    position: absolute;
+    bottom: 0;
+    left: 0;
+    padding: 0 8rem 5rem;
+}
+.restechnical__action .button {
+    display: inline-flex;
+    padding-left: 2rem;
+    padding-right: 2rem;
+    height: 45px;
+    margin-right: 2rem;
+}
+
+
+
+.resvideos {
+    background: var(--grey);
+    padding: 10rem 0;
+}
+.resvideos .resicontitle {
+    padding-top: 8rem;
+}
+.resicontitle {
+    align-items: center;
+}
+.resicontitle img{
+    height: 4.8rem;
+    height: 4.8rem;
+    margin-right: 20px;
+    flex-shrink: 0;
+    display: block;
+}
+.resvideos .resicontitle img{
+    transform:translateY(-5px);
+}
+.resvideos__grid {
+    display: grid;
+    grid-template-columns: repeat(3, 1fr);
+    grid-auto-rows: auto;
+    grid-gap: 8rem 3rem;
+}
+.resvideos__youtube {
+    margin-top: 8rem;
+    padding-left: 43px;
+    background: url(../img/resourses/icon-youtube.svg) left center no-repeat;
+    background-size: 32px;
+}
+
+
+.rescourses {
+    padding-top: 13rem;
+    padding-bottom: 6rem;
+}
+.rescourses__wrap {
+    display: grid;
+    grid-template-columns: repeat(3, 1fr);
+    grid-auto-rows: auto;
+    grid-gap: 3rem;
+}
+.rescourse {
+    display: flex;
+    flex-flow: column nowrap;
+    align-items: stretch;
+    justify-content: flex-start;
+    border: 1px solid var(--grey3);
+    padding: 4rem 5rem 6rem;
+}
+.rescourse__title {
+    font-weight: 400;
+    min-height: 7.7rem;
+    box-sizing: content-box;
+}
+.rescourse__pic {
+    display: block;
+    width: 100%;
+    height: 200px;
+    object-fit: cover;
+}
+.rescourse__button {
+    margin-top: auto;
+    height: 45px;
+}
+
+
+
+
+.resbook {
+    padding-top: 7rem;
+}
+.resbook__wrap {
+    padding-top: 13rem;
+}
+.resbook__picwrap {
+    max-width: 33%;
+    flex-shrink: 0;
+}
+.resbook__picwrap img{
+    display: block;
+    width: 100%;
+    height: auto;
+}
+.resbook__content {
+    padding-left: 11rem;
+}
+.resbook__caps {
+    line-height: 1.5;
+}
+.resbook__quote {
+    padding-top: 60px;
+    background: url(../img/community/b3-quote.svg) left top no-repeat;
+    background-size: 53px 40px;
+}
+.resbook__button {
+    display: inline-flex;
+    margin-top: 5rem;
+    height: 45px;
+    padding-left: 20px;
+    padding-right: 20px;
+}
+
+
+.rescontacts {
+    padding-top: 13rem;
+    padding-bottom: 10rem;
+}
+.rescontacts__wrap{
+    padding-top: 7rem;
+}
+
+
+
+
+
+
+@media (max-width:1199px) {
+    .reshero{
+        height: calc(100vh - 80px);
+    }
+    .reshero__img{
+        width: 35%;
+    }
+    .reshero__h1{
+        font-size: 6rem;
+        line-height: 1.25;
+    }
+    .reshero__descr{
+        max-width: 50%;
+    }
+    .restechnical__box{
+        padding-left: 5rem;
+        padding-right: 5rem;
+    }
+    .restechnical__title{
+        padding-bottom: 3rem;
+    }
+    .restechnical__title .h4{
+        font-size: 2.6rem;
+        white-space: nowrap;
+    }
+    .rescourse{
+        padding-left: 2rem;
+        padding-right: 2rem;
+    }
+    .rescourse__pic{
+        height: auto;
+    }
+    .resbook__content{
+        padding-left: 5rem;
+    }
+    .resbook__quote br{
+        display: none;
+    }
+}
+
+
+
+
+
+
+
+@media (max-width:992px) {
+    .reshero{
+        height: auto;
+        padding: 13rem 0;
+        min-height: auto;
+    }
+    .reshero__img{
+        width: auto;
+        height: 100%;
+    }
+    .reshero__h1{
+        font-size: 4rem;
+    }
+    .restechnical__grid{
+        grid-template-columns: 1fr;
+    }
+    .restechnical__title--empty{
+        display: none;
+    }
+    .resvideos__grid{
+        grid-template-columns: 1fr 1fr;
+    }
+}
+
+
+@media (max-width:767px) {
+    .reshero{
+        padding: 7rem 0 7rem;
+    }
+    .reshero__img{
+        display: none;
+    }
+    .reshero__descr{
+        max-width: none;
+    }
+    .resicontitle{
+        font-size: 2.8rem;
+        align-items: flex-start;
+    }
+    .restechnical{
+        padding-top: 7rem;
+        padding-bottom: 7rem;
+    }
+    .restechnical__title img{
+        height: 3rem;
+    }
+    .restechnical__title{
+        padding-bottom: 2rem;
+    }
+    .restechnical__title .h4{
+        font-size: 2.3rem;
+    }
+    .restechnical__grid{
+        grid-gap: 4rem;
+        padding-top: 4rem;
+    }
+    .restechnical__box{
+        padding-left: 2rem;
+        padding-right: 2rem;
+    }
+    .restechnical__action{
+        padding-left: 2rem;
+        padding-right: 2rem;
+        padding-bottom: 3rem;
+    }
+
+    .resvideos{
+        padding-top: 7rem;
+        padding-bottom: 7rem;
+    }
+    .resvideos .resicontitle{
+        padding-top: 3rem;
+        font-size: 2.3rem;
+    }
+    .resvideos__grid{
+        grid-template-columns: 1fr;
+        grid-gap: 4rem;
+    }
+    .resvideos__youtube{
+        margin-top: 5rem;
+        background-position-y: 0;
+    }
+
+    .rescourses{
+        padding-top: 7rem;
+    }
+
+    .rescourses br,
+    .resbook br{
+        display: none;
+    }
+    .resicontitle img{
+        height: 4rem;
+        margin-right: 15px;
+    }
+    .rescourses__wrap{
+        grid-template-columns: 1fr;
+    }
+    .rescourse__title{
+        min-height: auto;
+    }
+    .rescourse{
+        padding: 3rem 2rem;
+    }
+    .resbook{
+        padding-top: 2rem;
+    }
+    .resbook__wrap{
+        flex-flow: column nowrap;
+        align-items: stretch;
+    }
+    .resbook__picwrap{
+        max-width: 60%;
+        padding-bottom: 4rem;
+    }
+    .resbook__content{
+        padding-left: 0;
+    }
+    .resbook__caps{
+        padding-bottom: 3rem;
+    }
+    .rescontacts__wrap{
+        padding-top: 3rem;
+    }
+    .faqblock__title{
+        padding-left: 0;
+        padding-right: 0;
+    }
+    .rescontacts{
+        padding-top: 7rem;
+        padding-bottom: 2rem;
+    }
+}
\ No newline at end of file
diff --git a/public/css/service.css b/public/css/service.css
new file mode 100644
index 0000000..3a9e8e8
--- /dev/null
+++ b/public/css/service.css
@@ -0,0 +1,149 @@
+.innerhero__pic--servicegrid {
+  width: auto;
+  height: auto;
+  top: auto;
+  bottom: -11rem;
+  transform: none;
+  left: 71%;
+}
+.servicenativelink.arrowlink::after {
+  margin-top: 0.5rem;
+}
+.service1 {
+  padding-top: 13rem;
+}
+.service-subtextvideo {
+  font-size: 2.4rem;
+  line-height: 1.6;
+}
+.service1__h2 {
+  font-size: 1.6rem;
+  line-height: 1.4;
+  font-weight: normal;
+  text-transform: uppercase;
+}
+.service1__text {
+  max-width: 900px;
+  margin-top: 5rem;
+  font-size: 2.4rem;
+  line-height: 1.6;
+}
+
+.service2 {
+  padding-top: 13rem;
+  padding-bottom: 13rem;
+}
+
+.service2__text {
+  font-size: 2.4rem;
+  line-height: 1.6;
+  margin-top: 2rem;
+}
+
+.service2__block {
+  margin-top: 7.7rem;
+}
+.service2item__title {
+  font-size: 2rem;
+  line-height: 1.6;
+}
+.service2item__text {
+  max-width: 615px;
+  margin-top: 2rem;
+  line-height: 1.4;
+}
+.service2item__image1 {
+  background: #f6f6f6;
+  border-radius: 10px;
+  padding: 5rem 11rem;
+  margin-left: 10rem;
+  width: 540px;
+}
+
+.service2item__one {
+  justify-content: space-between;
+}
+.service2item__two {
+  margin-top: 8rem;
+}
+
+.service2item__image2 {
+  background: #f6f6f6;
+  border-radius: 10px;
+  padding: 7rem 11rem 5rem 11rem;
+  width: 540px;
+}
+.service2item__info2 {
+  max-width: 530px;
+  margin-top: 3rem;
+  margin-left: 8rem;
+}
+@media (max-width: 1199px) {
+  .innerhero__pic--servicegrid {
+    width: 60rem;
+  }
+}
+
+@media (max-width: 992px) {
+  .innerhero__pic--servicegrid {
+    width: 50rem;
+  }
+  .service2item__image1 {
+    margin-left: 0rem;
+    margin-top: 3rem;
+  }
+  .service2item__image2 {
+    margin-right: 0rem;
+    margin-top: 3rem;
+  }
+  .service2item__one {
+    flex-direction: column;
+  }
+  .service2item__two {
+    flex-direction: column-reverse;
+    margin-top: 5rem;
+  }
+  .service2item__info2 {
+    margin-top: 0rem;
+    margin-left: 0rem;
+  }
+  .service1 {
+    padding-top: 8rem;
+  }
+  .service2 {
+    padding-top: 8rem;
+    padding-bottom: 8rem;
+  }
+  .service2__block {
+    margin-top: 5rem;
+  }
+}
+
+@media (max-width: 767px) {
+  .service-subtextvideo {
+    font-size: 2rem;
+    line-height: 1.6;
+  }
+
+  .service1__text {
+    max-width: 900px;
+    margin-top: 3rem;
+    font-size: 2rem;
+    line-height: 1.6;
+  }
+
+  .service2item__image1 {
+    width: 100%;
+  }
+  .service2item__image2 {
+    width: 100%;
+  }
+}
+@media (max-width: 500px) {
+  .service2item__image1 {
+    padding: 3rem 5rem;
+  }
+  .service2item__image2 {
+    padding: 3rem 5rem;
+  }
+}
diff --git a/public/css/site.css b/public/css/site.css
new file mode 100644
index 0000000..6cb66a8
--- /dev/null
+++ b/public/css/site.css
@@ -0,0 +1,1447 @@
+:root {
+  --grey: #f6f6f6;
+  --grey2: #e6e6e6;
+  --grey3: #f0f0f0;
+  --grey4: #9c9c9c;
+  --grey5: #6e6e6e;
+  --blue: #0070cc;
+  --blue2: #0061b0;
+  --blue3: #91c2ea;
+  --blue4: #e8f2fa;
+  --red: #ed1c24;
+  --red2: #ce2034;
+  --red3: #f4898d;
+  --red4: #ffcfd1;
+  --red5: #feeff0;
+  --dark: #2d2d2d;
+  --dark2: #6e6e6e;
+  --dark3: #9c9c9c;
+}
+
+.hdr {
+  border-bottom: 1px solid var(--grey3);
+}
+.cmtyhero__wrap {
+  padding: 0 45px;
+  height: 96px;
+  align-items: center;
+  position: relative;
+}
+.hdr__logo {
+  display: block;
+  margin-right: auto;
+  width: 115px;
+}
+.hdr__burger {
+  display: none;
+  width: 24px;
+  height: 24px;
+  border: none;
+  flex-shrink: 0;
+  flex-grow: 0;
+  margin-right: 2rem;
+  background: none;
+  cursor: pointer;
+}
+.hdr__burger img {
+  display: block;
+  margin: 0 auto;
+}
+.hdr__logoimg {
+  display: block;
+  width: 100%;
+  height: auto;
+}
+.hdr__button {
+  margin-left: auto;
+  white-space: nowrap;
+  padding: 0 25px;
+}
+.hdrmenu {
+  position: absolute;
+  z-index: 10;
+  top: 50%;
+  transform: translate(-50%, -50%);
+  left: 50%;
+}
+.hdrmenu li {
+  padding: 0 4rem;
+}
+.hdrmenu a {
+  color: #000;
+  font-size: 1.6rem;
+  line-height: 1.5;
+  text-decoration: none;
+  white-space: nowrap;
+}
+.hdrmenu__current {
+  font-weight: 700;
+}
+.hdrmenu a:hover {
+  color: var(--blue2);
+}
+.hdr__blue {
+  background: var(--blue);
+  border-bottom: none;
+}
+.hdr__blue .hdrmenu a {
+  color: #fff;
+}
+.hdr__blue .hdrmenu a:hover {
+  color: #f2f2f2;
+}
+.hdr__blue .hdr__button {
+  background: #fff;
+  color: var(--blue);
+}
+.hdr__blue .hdr__button:hover {
+  background: var(--blue4);
+}
+.hdr__grey {
+  background: #f1f1f1;
+}
+
+.hdrfloat {
+  position: fixed;
+  top: 0;
+  left: 0;
+  right: 0;
+  z-index: 200;
+  background-color: #fff;
+  transition: transform 0.2s ease;
+  transform: translateY(-100%);
+  pointer-events: none;
+}
+.hdr-active .hdrfloat {
+  transform: translateY(0);
+  pointer-events: auto;
+  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
+}
+@media (min-width: 992px) {
+  .hdrfloat .cmtyhero__wrap {
+    height: 75px;
+  }
+  .hdrfloat .hdr__button {
+    height: 45px;
+  }
+}
+
+.cmtyhero {
+  overflow: hidden;
+  height: calc(100vh - 96px);
+  display: flex;
+  flex-flow: column nowrap;
+  align-items: center;
+  justify-content: center;
+  min-height: 670px;
+  max-height: 800px;
+}
+.cmtyhero__img {
+  position: absolute;
+  right: 0px;
+  top: 50%;
+  transform: translateY(-50%);
+  width: 500px;
+  height: auto;
+  pointer-events: none;
+}
+.cmtyhero__main {
+  position: relative;
+  z-index: 10;
+  color: var(--dark);
+  display: flex;
+  flex-flow: column nowrap;
+  align-items: flex-start;
+  justify-content: flex-start;
+}
+.cmtyhero__h1 {
+  max-width: 725px;
+  font-size: 6rem;
+  line-height: 7rem;
+}
+.cmtyhero__text {
+  padding-top: 5rem;
+  max-width: 575px;
+  font-size: 2.4rem;
+  line-height: 3.6rem;
+}
+.cmtyhero__sub {
+  padding-top: 16rem;
+  font-size: 1.6rem;
+  line-height: 2.4rem;
+}
+
+.cmtynavblock {
+  background: #fff;
+  position: sticky;
+  transition: top 0.2s ease, transform 0.2s ease;
+  left: 0;
+  z-index: 100;
+  border-top: 1px solid var(--grey3);
+  border-bottom: 1px solid var(--grey3);
+  height: 8rem;
+  top: 0;
+}
+.hdr-active .cmtynavblock {
+  top: 75px;
+}
+.cmtynavblock .container {
+  height: 100%;
+}
+.cmtynavblock__list {
+  height: 100%;
+  align-items: stretch;
+  justify-content: center;
+}
+.cmtynavblock__list li {
+  padding: 0 55px;
+  height: 100%;
+}
+.cmtynavblock__list a {
+  height: 100%;
+  display: flex;
+  white-space: nowrap;
+  flex-flow: row nowrap;
+  align-items: center;
+  justify-content: center;
+  text-align: center;
+  padding: 0 10px;
+  text-decoration: none;
+  color: var(--dark);
+  position: relative;
+}
+.cmtynavblock__list a:not(.cmtynavblock__active):hover {
+  color: var(--blue2);
+}
+.cmtynavblock__active::after {
+  position: absolute;
+  content: "";
+  display: block;
+  bottom: 0;
+  left: 0;
+  right: 0;
+  height: 3px;
+  background: var(--dark);
+  border-radius: 3px;
+}
+
+.cmtyhistory {
+  padding-top: 11rem;
+  padding-bottom: 8rem;
+}
+.cmtyhistory1__title {
+  font-weight: 700;
+  font-size: 32px;
+  line-height: 1;
+}
+.cmtyhistory1__wrap {
+  padding-top: 10rem;
+}
+.cmtyhistory1__left {
+  width: 49%;
+  flex-shrink: 0;
+  flex-grow: 0;
+  position: relative;
+}
+.cmtyhistory1__left img {
+  margin-top: 50px;
+  margin-right: 112px;
+  display: block;
+  width: 335px;
+  max-width: 90%;
+  margin-left: auto;
+}
+.cmtyhistory__year {
+  position: absolute;
+  z-index: 10;
+  top: 8px;
+  left: 8px;
+  font-size: 4.8rem;
+  line-height: 1;
+  white-space: nowrap;
+}
+.cmtyhistory1__right {
+  flex-grow: 1;
+}
+.cmtyhistory1__h3 {
+  font-weight: 400;
+}
+.cmtyhistory__hr {
+  cursor: pointer;
+  margin-top: 35px;
+  margin-bottom: 35px;
+  height: 1px;
+  position: relative;
+  background: #e6e6e6;
+}
+.cmtyhistory__hr i,
+.cmtyhistory__hr span {
+  display: flex;
+  flex-flow: column nowrap;
+  align-items: center;
+  justify-content: center;
+  position: absolute;
+  left: 50%;
+  top: 0;
+  width: 30px;
+  height: 30px;
+  border-radius: 30px;
+  background-color: var(--grey2);
+  margin-top: -15px;
+  margin-left: -15px;
+  font-size: 20px;
+  z-index: 5;
+  user-select: none;
+  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%23000' d='M368 224H224V80c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v144H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h144v144c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V288h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z'%3E%3C/path%3E%3C/svg%3E");
+  background-repeat: no-repeat;
+  background-position: 50% 50%;
+  background-size: 12px;
+}
+.cmtyhistory__hr span {
+  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='currentColor' d='M368 224H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h352c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z'%3E%3C/path%3E%3C/svg%3E");
+}
+.cmtyhistory__hr span {
+  display: none;
+}
+.cmtyhistory__hr.isopen span {
+  display: flex;
+}
+.cmtyhistory__hr.isopen i {
+  display: none;
+}
+.cmtyhistory__more {
+  height: auto;
+  transition: height 0.4s ease;
+  overflow: hidden;
+  height: 0;
+}
+.cmtyhistory__quote {
+  font-style: italic;
+  margin-top: 30px;
+  padding-top: 60px;
+  background: url(../img/community/b3-quote.svg) left top no-repeat;
+}
+.cmtyhistory__avaavtor {
+  align-items: center;
+}
+.cmtyhistory__ava {
+  display: block;
+}
+.cmtyhistory__ava img {
+  display: block;
+  border-radius: 200px;
+  width: 70px;
+  height: 70px;
+}
+.cmtyhistory__avaright {
+  padding-left: 20px;
+}
+.cmtyhistory__avaname {
+  font-weight: 700;
+  line-height: 28px;
+}
+.cmtyhistory__avaproff {
+  padding-top: 0px;
+  color: #898989;
+}
+.cmtyhistory2 {
+  padding-top: 70px;
+}
+.cmtyhistory2__wrap {
+  flex-flow: row-reverse nowrap;
+}
+.cmtyhistory__year--right {
+  left: auto;
+  right: 0;
+  top: 30px;
+}
+.cmtyhistory2__right {
+  width: 50%;
+  flex-shrink: 0;
+  flex-grow: 0;
+  position: relative;
+}
+.cmtyhistory2__right img {
+  display: block;
+  margin-left: auto;
+}
+.cmtyhistory2__left {
+  padding-top: 81px;
+}
+.cmtyhistory3 {
+  padding-top: 115px;
+}
+.cmtyhistory3__left {
+  width: 49%;
+  flex-shrink: 0;
+  flex-grow: 0;
+  position: relative;
+  padding-top: 50px;
+}
+.cmtyhistory3__right {
+  width: 49%;
+  flex-shrink: 0;
+  flex-grow: 0;
+  position: relative;
+  padding-top: 70px;
+}
+.cmtyhistory4 {
+  padding-top: 100px;
+}
+.cmtyhistory5 .cmtyhistory3__left {
+  padding-top: 0;
+}
+.cmtyhistory5 .cmtyhistory3__right {
+  padding-top: 60px;
+}
+
+.cmty-meet {
+  margin-top: 8rem;
+  background: var(--red5);
+  padding: 145px 0 140px;
+  overflow: hidden;
+}
+.cmty-meet__main {
+  max-width: 49%;
+}
+.cmty-meet__h2 {
+  font-size: 48px;
+  line-height: 1;
+}
+.cmty-meet__text {
+  font-size: 2.4rem;
+  line-height: 3.6rem;
+}
+.cmty-meet__sub {
+  padding-top: 175px;
+  max-width: 500px;
+}
+.cmty-meet__pic {
+  position: relative;
+  width: 400px;
+  margin-left: auto;
+}
+.cmty-meet__pic img {
+  display: block;
+  position: absolute;
+  top: 35px;
+  right: 0;
+}
+
+.cmty-contrib {
+  padding: 130px 0 70px;
+}
+.cmty-contrib__main {
+  max-width: 510px;
+}
+.cmty-contrib__pic {
+  position: relative;
+  width: 650px;
+  flex-grow: 0;
+  margin-left: auto;
+}
+.cmty-contrib__pic img {
+  display: block;
+  width: 100%;
+  margin-top: -30px;
+}
+
+.cmty-committers {
+  padding-bottom: 70px;
+}
+.cmty-committers__small {
+  display: block;
+  color: #9c9c9c;
+}
+.committers__wrap {
+  padding-top: 40px;
+  justify-content: space-between;
+}
+.committers__left,
+.committers__right {
+  width: calc(50% - 15px);
+  flex-grow: 0;
+  flex-shrink: 0;
+}
+.committer {
+  height: 6rem;
+  border-bottom: 1px solid #e5e5e5;
+  align-items: center;
+  padding: 0 2rem 0 2rem;
+}
+.committer__name {
+  max-width: 60%;
+  flex-grow: 0;
+  overflow: hidden;
+  margin-right: auto;
+}
+.committer__github {
+  display: block;
+  width: 30px;
+  margin: 0 10px;
+}
+.committer__apache {
+  display: block;
+  width: 30px;
+  margin: 0 5px 0 15px;
+}
+.committer__github img,
+.committer__apache img {
+  display: block;
+}
+.committers__morelink {
+  margin-top: 30px;
+  display: block;
+  margin-left: 20px;
+}
+
+.cmty-pm {
+  padding-top: 80px;
+  padding-bottom: 105px;
+}
+.cmty-pm__wrap {
+  display: grid;
+  grid-template-columns: repeat(4, 1fr);
+  grid-auto-rows: 266px;
+  grid-gap: 30px;
+}
+.cmty-pmitem {
+  border: 1px solid var(--grey2);
+  box-sizing: border-box;
+  border-radius: 10px;
+  display: block;
+  position: relative;
+  padding: 40px 30px;
+}
+.cmty-pmitem__proff {
+  top: 15px;
+  right: 25px;
+  text-transform: uppercase;
+  height: 42px;
+  display: flex;
+  flex-flow: row nowrap;
+  align-items: center;
+  justify-content: center;
+  position: absolute;
+  font-size: 15px;
+}
+.cmty-pmitem__proff img {
+  margin-right: 6px;
+  width: 17px;
+  height: 17px;
+  display: block;
+}
+.cmty-pmitem__name {
+  font-weight: 400;
+  max-width: 80%;
+  min-height: 72px;
+}
+.cmty-pmitem__work {
+  color: #9c9c9c;
+  white-space: nowrap;
+  overflow: hidden;
+  display: block;
+}
+.cmty-pmitem__links {
+  position: absolute;
+  bottom: 45px;
+  left: 35px;
+}
+.cmty-pmitem__links img {
+  display: block;
+  width: 30px;
+  height: auto;
+  height: 30px;
+  object-fit: contain;
+}
+.cmty-pmitem__github {
+  margin-right: 20px;
+}
+.cmty-pmitem__apache {
+  margin-right: 20px;
+}
+.cmty-pm__more .jsOpenerWrap {
+  padding-top: 30px;
+}
+.cmty-pm__morelink {
+  display: block;
+  width: 80px;
+  text-align: center;
+  text-align: center;
+  margin: 30px auto 0;
+}
+
+.cmty-startcont {
+  background: #e8f2fa;
+  padding: 90px 0 90px;
+}
+.cmty-startcont__wrap {
+  align-items: stretch;
+}
+.cmty-startcont__main {
+  display: flex;
+  flex-flow: column nowrap;
+  align-items: stretch;
+  justify-content: flex-start;
+  max-width: 540px;
+  padding-top: 65px;
+}
+.cmty-startcont__pic {
+  margin-left: auto;
+  flex-grow: 0;
+}
+.cmty-startcont__pic img {
+  width: 614px;
+  display: block;
+}
+
+.cmty-docs {
+  padding: 130px 0 90px;
+}
+.cmty-docs__wrap {
+  justify-content: space-between;
+  align-items: stretch;
+}
+.cmty-docblock,
+.tplbox {
+  background-color: #fafdff;
+  border: 1px solid var(--grey2);
+  box-sizing: border-box;
+  border-radius: 10px;
+  padding: 40px 50px;
+  position: relative;
+}
+.cmty-docblock {
+  width: calc(50% - 15px);
+  min-height: 450px;
+}
+.cmty-docblock::before,
+.tplbox::before {
+  position: absolute;
+  border-radius: 0px 30px 30px 0px;
+  width: 12px;
+  height: 60px;
+  background: var(--blue);
+  content: "";
+  display: block;
+  left: 0;
+  top: 35px;
+}
+.cmty-docblock__icon,
+.tplbox__icon {
+  position: absolute;
+  width: 34px;
+  height: 41px;
+  display: block;
+  left: 50px;
+  top: 44px;
+}
+.cmty-docblock__icon img {
+  display: block;
+  width: 100%;
+  height: 100%;
+  object-fit: contain;
+}
+.cmty-docblock__title {
+  font-weight: 400;
+  padding-top: 75px;
+}
+.cmty-docblock__list {
+  padding-top: 30px;
+}
+.cmty-docblock__list li {
+  margin-bottom: 5px;
+  margin-bottom: 10px;
+  position: relative;
+  padding-left: 21px;
+}
+.cmty-docblock__list li::before {
+  content: "";
+  display: block;
+  position: absolute;
+  left: 0;
+  top: 1.2rem;
+  height: 1px;
+  width: 15px;
+  background: #000;
+}
+.cmty-docblock--bg {
+  background: url(../img/community/b9-wave.svg) right bottom no-repeat;
+  background-color: #fafdff;
+}
+
+.cmty-ready {
+  overflow: hidden;
+}
+.cmty-ready__wrap {
+  display: grid;
+  grid-template-columns: repeat(4, 1fr);
+  grid-gap: 30px;
+  grid-auto-rows: auto;
+}
+.cmty-ready__item {
+  border: 1px solid var(--grey2);
+  box-sizing: border-box;
+  border-radius: 10px;
+  position: relative;
+  min-height: 240px;
+  padding: 20px 25px;
+}
+.cmty-ready__item::before {
+  position: absolute;
+  border-radius: 0px 30px 30px 0px;
+  width: 12px;
+  height: 45px;
+  background: var(--blue);
+  content: "";
+  display: block;
+  left: -1px;
+  top: 20px;
+}
+.cmty-ready__item i {
+  display: block;
+  font-style: normal;
+  font-weight: 400;
+  font-size: 40px;
+  line-height: 45px;
+  margin-bottom: 30px;
+}
+.cmty-ready__openlink {
+  color: var(--blue);
+  border-bottom: 1px dotted var(--blue);
+  position: relative;
+  display: inline;
+  cursor: pointer;
+}
+.cmty-ready__openlink::after {
+  content: "";
+  display: inline-block;
+  position: relative;
+  margin-left: 4px;
+  width: 10px;
+  height: 10px;
+  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%230070CC' d='M441.9 167.3l-19.8-19.8c-4.7-4.7-12.3-4.7-17 0L224 328.2 42.9 147.5c-4.7-4.7-12.3-4.7-17 0L6.1 167.3c-4.7 4.7-4.7 12.3 0 17l209.4 209.4c4.7 4.7 12.3 4.7 17 0l209.4-209.4c4.7-4.7 4.7-12.3 0-17z'%3E%3C/path%3E%3C/svg%3E");
+  background-repeat: no-repeat;
+  background-size: contain;
+  transition: transform 0.4s ease;
+}
+.cmty-ready__openlink.isopen::after {
+  transform: rotate(180deg);
+}
+.cmty-ready__hider {
+  margin-top: 1rem;
+  transition: height 0.4s ease;
+  overflow: hidden;
+  height: 0;
+  font-size: 1.5rem;
+}
+
+.cmty-ready__bottom {
+  padding-top: 80px;
+  padding-bottom: 80px;
+}
+.cmty-ready__botttl {
+  width: 25%;
+  flex-shrink: 0;
+  flex-grow: 0;
+  padding-right: 22px;
+}
+.cmty-ready__botlinks {
+  font-weight: 400;
+}
+.cmty-ready__botlinks a {
+  display: inline-block;
+  margin-bottom: 1rem;
+}
+.cmty-ready__screens {
+  flex-basis: 740px;
+  display: grid;
+  grid-template-columns: 1fr 1fr;
+  grid-auto-rows: auto;
+  grid-gap: 10px;
+  flex-grow: 0;
+  flex-shrink: 0;
+}
+.cmty-ready__screens img,
+.cmty-ready__screens a {
+  display: block;
+  width: 100%;
+  height: auto;
+}
+.cmty-ready__more {
+  display: flex;
+  flex-flow: column nowrap;
+  align-items: stretch;
+  justify-content: center;
+  align-self: stretch;
+  background: url(../img/community/b11-stat-2.png) no-repeat;
+  background-size: contain;
+  flex-grow: 1;
+  flex-shrink: 1;
+}
+.cmty-ready__more a {
+  display: block;
+  margin: auto;
+}
+
+.cmty-red {
+  padding-top: 90px;
+}
+.cmty-red__wrap {
+  padding-top: 54px;
+  display: grid;
+  grid-template-columns: 1fr 1fr;
+  grid-auto-rows: 450px;
+  grid-gap: 3rem;
+}
+.cmty-redblock {
+  width: 100%;
+  background: #fff7f7;
+  padding-top: 105px;
+  padding-left: 60px;
+}
+.cmty-redblock .tplbox__icon {
+  left: 60px;
+}
+.cmty-redblock .h4 {
+  font-weight: 400;
+}
+.cmty-redblock::before {
+  background: var(--red);
+}
+.cmty-red__wrap--bg {
+  background-image: url(../img/community/b12-lines.svg);
+  background-repeat: no-repeat;
+  background-position: right bottom;
+}
+.cmty-redblock__questimg {
+  width: 48px;
+  height: 48px;
+}
+
+.cmty-redstart {
+  padding-top: 9rem;
+  padding-bottom: 4rem;
+}
+.cmty-redstart__title {
+}
+.cmty-redstart__wrap {
+  display: grid;
+  grid-template-columns: 2fr 3fr;
+  grid-auto-rows: auto;
+  grid-gap: 18px;
+}
+.cmty-redstep {
+  border: 1px solid var(--grey2);
+  box-sizing: border-box;
+  border-radius: 10px;
+  position: relative;
+  padding: 35px 35px;
+  background: #fff;
+  z-index: 10;
+}
+.cmty-redstep--1 {
+  grid-row: span 2;
+  max-width: 433px;
+  padding-top: 101px;
+  position: relative;
+}
+.cmty-redstep--1::after {
+  content: "";
+  display: block;
+  position: absolute;
+  top: 50%;
+  transform: translateY(-60%);
+  left: 100%;
+  width: 115px;
+  height: 165px;
+  background: url(../img/community/b13-lines.svg) no-repeat;
+  background-size: contain;
+}
+.cmty-redstep--2,
+.cmty-redstep--3 {
+  min-height: 150px;
+  width: 728px;
+  max-width: 100%;
+  margin-left: auto;
+  background: url(../img/community/b13-bg-squares.svg) #fff right bottom
+    no-repeat;
+  background-size: 140px;
+  padding: 33px 210px 20px 115px;
+}
+.cmty-redstep--3 {
+  background-image: url(../img/community/b13-bg-roundes.svg);
+  background-size: 105px;
+  padding-right: 140px;
+}
+.cmty-redstep::before {
+  position: absolute;
+  border-radius: 0px 30px 30px 0px;
+  width: 13px;
+  height: 43px;
+  background: var(--red);
+  content: "";
+  display: block;
+  left: -1px;
+  top: 35px;
+}
+.cmty-redstep i {
+  font-size: 40px;
+  position: absolute;
+  left: 37px;
+  top: 36px;
+  line-height: 43px;
+}
+.cmty-redstep__h3 {
+  font-size: 16px;
+  line-height: 1;
+  padding-bottom: 8px;
+}
+
+.cmty-redstart__bottom {
+  padding-top: 8rem;
+  padding-bottom: 8px;
+}
+.cmty-redstart__bottitle {
+  width: 50%;
+  flex-shrink: 0;
+  flex-grow: 0;
+}
+.cmty-redstart__botright {
+  width: 40%;
+  border: 1px solid #ededed;
+  box-sizing: border-box;
+  border-radius: 10px;
+  margin-left: auto;
+  display: flex;
+  flex-flow: column nowrap;
+  align-items: center;
+  justify-content: center;
+  padding: 30px;
+  background: #fff;
+}
+.cmty-redstart__botright:hover {
+  box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
+}
+.cmty-redstart__botpic {
+  display: block;
+  width: 100%;
+  margin: auto;
+  height: auto;
+  border-radius: 1rem;
+}
+.cmty-redstart__iframe {
+  width: 100%;
+  height: 415px;
+  display: block;
+  border: none;
+}
+
+.cmty-ask {
+  margin-top: 12rem;
+  background: #f4f4f4;
+  padding: 140px 0 110px;
+  overflow: hidden;
+}
+.cmty-ask__title {
+  font-weight: 400;
+}
+.cmty-ask__wrap {
+  align-items: flex-start;
+}
+.cmty-ask__bg {
+  margin-left: auto;
+  flex-shrink: 0;
+  flex-basis: 529px;
+  height: auto;
+  flex-shrink: 1;
+  flex-grow: 0;
+}
+
+.faq {
+  padding-top: 13rem;
+  padding-bottom: 8rem;
+}
+.faqblock {
+  padding-bottom: 115px;
+}
+.faqblock:last-child {
+  padding-bottom: 0;
+}
+.faqblock__title {
+  width: calc(42% - 15px);
+  flex-shrink: 0;
+  position: relative;
+  padding-left: 70px;
+}
+.faqblock__title--simple {
+  padding-left: 0;
+}
+.faqblock__title img {
+  display: block;
+  position: absolute;
+  left: 0;
+  top: 50%;
+  transform: translateY(-50%);
+  width: 48px;
+  height: auto;
+}
+.faqblock__right {
+  flex-grow: 1;
+  padding-top: 10px;
+  max-width: 540px;
+}
+.faqblock__right h4 {
+  font-size: initial;
+  line-height: 1;
+  font-weight: 700;
+  padding-bottom: 10px;
+}
+.faqblock__buttons {
+  align-items: stretch;
+}
+.faqblock__button {
+  height: 40px;
+  display: inline-flex;
+  flex-flow: row nowrap;
+  align-items: center;
+  justify-content: center;
+  border: 1px solid #2d2d2d;
+  box-sizing: border-box;
+  border-radius: 10px;
+  margin-right: 24px;
+  padding: 0 16px;
+  color: #000;
+  text-decoration: none !important;
+}
+.faqblock__button:hover {
+  color: #fff;
+  background: #2d2d2d;
+  text-decoration: none;
+}
+.faqblock__button img {
+  display: block;
+  margin-right: 8px;
+  flex-shrink: 0;
+  width: 22px;
+}
+.faqblock__button:hover img {
+  filter: grayscale(1) invert(1);
+}
+img.faqblock__eicon {
+  margin-right: 6px;
+  transform: translateY(1px);
+}
+img.faqblock__stackicon {
+  margin-right: 14px;
+  width: 20px;
+}
+
+/* === === === === === === === === INNERPAGE BLOCKS === === === === === === === === */
+.innerhero {
+  background: var(--blue);
+  color: #fff;
+  position: relative;
+  padding: 8rem 0 11rem;
+  overflow: hidden;
+}
+.innerhero__main {
+  min-height: 400px;
+  max-width: 830px;
+  width: 65%;
+  display: flex;
+  flex-flow: column nowrap;
+  align-items: flex-start;
+  justify-content: center;
+}
+.innerhero__main {
+  min-height: 300px;
+}
+@media (min-width:1300px){
+  .innerhero__mega{
+      font-size: 10rem;
+      line-height: 1.18;
+      padding-top: 2rem;
+  }
+}
+.innerhero__main--long {
+  max-width: none;
+  width: 100%;
+}
+.innerhero__pre {
+  text-transform: uppercase;
+  letter-spacing: 2px;
+  text-transform: uppercase;
+}
+.innerhero__descr {
+  font-weight: 400;
+  opacity: 0.8;
+}
+.innerhero__button {
+  color: #fff;
+  border: 2px solid #fff;
+  background: #fff;
+  color: var(--blue);
+  font-size: 2rem;
+  line-height: 1;
+  padding: 0 4rem;
+  margin-top: 5rem;
+  height: 6rem;
+}
+.innerhero__button:hover {
+  background: var(--grey);
+  color: var(--blue);
+}
+.innerhero__pic {
+  position: absolute;
+  display: block;
+}
+
+.cardsimple {
+  border: 1px solid var(--grey2);
+  background: #fff;
+  box-sizing: border-box;
+  border-radius: 10px;
+  transition: box-shadow 0.4s ease;
+  position: relative;
+}
+.cardsimple:hover {
+  box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.1);
+}
+
+.usecasecard {
+  min-height: 29rem;
+  padding: 3rem 3rem 10rem;
+}
+.cardsimple__icon {
+  width: 48px;
+  height: 48px;
+  margin-bottom: 2rem;
+}
+.cardsimple__icon img {
+  width: 100%;
+  height: 100%;
+  display: block;
+}
+.cardsimple__title {
+  font-size: 2rem;
+  line-height: 2.6rem;
+  font-weight: bold;
+  padding-bottom: 1.2rem;
+}
+.cardsimple__text:not(.cardsimple__text--long) {
+  max-width: 280px;
+}
+.cardsimple__bottom {
+  position: absolute;
+  bottom: 3rem;
+  left: 3rem;
+  z-index: 10;
+}
+.cardsimple__button,
+.blockheader__button {
+  width: 125px;
+  height: 45px;
+}
+
+.blockcapslead {
+  letter-spacing: 2px;
+  text-transform: uppercase;
+  white-space: nowrap;
+  padding-bottom: 6rem;
+}
+.blockheader {
+  flex-flow: column nowrap;
+  align-items: stretch;
+  position: relative;
+  padding-top: 3rem;
+}
+.blockheader:not(.blockheader--spl)::before {
+  content: "";
+  display: block;
+  width: 4rem;
+  height: 3px;
+  background: #000;
+  position: absolute;
+  top: 0;
+  left: 0;
+}
+.blockheader--spl {
+  padding-top: 0;
+}
+.blockheader__left {
+  width: 45%;
+  padding-right: 4rem;
+  flex-shrink: 0;
+}
+.blockheader__left--full {
+  width: 100%;
+}
+.blockheader__right {
+  display: block;
+  padding-top: 2rem;
+  max-width: 850px;
+}
+.blockheader__right p:not(:last-child) {
+  margin-bottom: 1rem;
+}
+.blockheader__button {
+  margin-top: 3rem;
+}
+.blockheader--hor {
+  flex-flow: column nowrap;
+}
+.blockheader--hor .blockheader__right {
+  margin-left: 0;
+  padding-top: 2rem;
+}
+
+.dashlist li {
+  margin-bottom: 10px;
+  position: relative;
+  padding-left: 21px;
+}
+.dashlist li::before {
+  content: "";
+  display: block;
+  position: absolute;
+  left: 0;
+  top: 1.2rem;
+  height: 1px;
+  width: 15px;
+  background: #000;
+}
+.videoscr {
+  position: relative;
+  display: block;
+  overflow: hidden;
+  transform: translate3d(0, 0, 0);
+  transition: box-shadow 0.3s ease;
+}
+.videoscr img,
+.videoscr a,
+.videoscr iframe {
+  display: block;
+  border: none;
+  width: 100%;
+  max-width: 350px;
+  height: auto;
+  transform: translate3d(0, 0, 0);
+  transition: transform 0.3s ease;
+}
+.videoscr:hover img {
+  transform: scale(1.01);
+}
+.videoscr:hover {
+  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
+}
+.videoscr::after {
+  content: "";
+  display: block;
+  position: absolute;
+  left: 0;
+  top: 0;
+  bottom: 0;
+  right: 0;
+  opacity: 1;
+  background-image: url(../img/icon-video.svg);
+  background-repeat: no-repeat;
+  background-size: 4rem;
+  background-position: 50% 50%;
+  transition: background 0.3s ease;
+}
+.videoscr__descr {
+  padding-top: 1.5rem;
+  color: var(--grey4);
+  max-width: 350px;
+}
+
+/* === VIDEO with TITLE === */
+.comvideo {
+  max-width: 524px;
+  width: 100%;
+  overflow: hidden;
+  display: block;
+  position: relative;
+}
+.comvideo__box {
+  display: block;
+  position: relative;
+  width: 100%;
+  height: 0;
+  box-sizing: border-box;
+  padding-bottom: 62%;
+  overflow: hidden;
+  background: var(--dark3);
+}
+.comvideo__screen,
+.comvideo__box iframe {
+  border: none;
+  display: block;
+  width: 100%;
+  height: 100%;
+  position: absolute;
+}
+.comvideo__screen[data-youtube]::after {
+  pointer-events: none;
+  content: "";
+  display: block;
+  position: absolute;
+  z-index: 20;
+  left: 0;
+  top: 0;
+  bottom: 0;
+  right: 0;
+  background: url(../img/icon-video.svg) center center no-repeat;
+  background-size: 60px;
+  transition: background 0.2s ease;
+}
+.comvideo__screen:hover[data-youtube]::after {
+  background-color: rgba(0, 0, 0, 0.1);
+}
+.comvideo__screen img {
+  display: block;
+  width: 100%;
+  height: 100%;
+  object-fit: cover;
+  position: relative;
+}
+.comvideo__txt {
+  position: absolute;
+  z-index: 5;
+  font-size: 2.4rem;
+  line-height: 1.6;
+  top: 3.5rem;
+  left: 3.5rem;
+  max-width: 75%;
+  color: #fff;
+}
+.comvideo__txt--black {
+  color: #000;
+}
+.comvideo__txt--small{
+  font-size: 1.9rem;
+  line-height: 1.5;
+  max-width: 80%;
+  top: 2rem;
+  left: 2rem;
+}
+.comvideo__smalltxt {
+  left: 3rem;
+  top: 3rem;
+}
+.comvideo__sub {
+  position: absolute;
+  left: 3rem;
+  bottom: 3rem;
+  text-transform: uppercase;
+  font-size: 12px;
+  line-height: 20px;
+  letter-spacing: 2px;
+  color: #fff;
+  z-index: 10;
+}
+.comvideo__txt--black + .comvideo__sub {
+  color: #000;
+}
+.comvideo__descr p {
+  margin-bottom: 0.5rem;
+}
+.comvideo__gray {
+  font-style: italic;
+  color: var(--grey5);
+}
+/* === END VIDEO with TITLE === */
+.picwrap {
+  background: var(--grey);
+  border-radius: 1rem;
+  padding: 6rem 0 6rem;
+  max-width: 100%;
+  display: flex;
+  flex-flow: column nowrap;
+  align-items: center;
+  justify-content: center;
+}
+.picwrap img {
+  display: block;
+  margin: auto;
+}
+
+@media (max-width: 1199px) {
+  .innerhero__main {
+    width: auto;
+    min-height: auto;
+  }
+}
+
+@media (max-width: 992px) {
+  .innerhero__main {
+    width: auto;
+    min-height: auto;
+  }
+}
+
+@media (max-width: 767px) {
+  .innerhero__main {
+    max-width: none;
+    width: auto;
+    min-height: auto;
+  }
+  .innerhero__main br {
+    display: none;
+  }
+  .innerhero__pre {
+    padding-bottom: 2rem;
+  }
+  .innerhero__main .h1 {
+    font-size: 4.4rem;
+    line-height: 1.15;
+  }
+  .innerhero__button {
+    margin-top: 3rem;
+    height: 5rem;
+  }
+  .innerhero__pic {
+    display: none;
+  }
+  .blockcapslead {
+    padding-bottom: 3rem;
+  }
+  .blockheader {
+    flex-flow: column nowrap;
+    align-items: stretch;
+  }
+  .blockheader__left {
+    width: auto;
+    font-size: 2.6rem;
+    line-height: 3.6rem;
+    padding-right: 0;
+  }
+  .blockheader__left br {
+    display: none;
+  }
+  .blockheader--hor .blockheader__right {
+    padding-top: 0;
+  }
+  .blockheader__right {
+    padding-top: 1.5rem;
+  }
+  .cardsimple {
+    padding: 3rem 2rem;
+    min-height: auto;
+  }
+  .cardsimple__bottom {
+    position: relative;
+    bottom: auto;
+    left: auto;
+    padding-top: 3rem;
+  }
+  .cardsimple__icon {
+    width: 32px;
+    height: 32px;
+  }
+  .dashlist li {
+    margin-bottom: 5px;
+  }
+}
+/* === === === === === === === === END INNERPAGE BLOCKS === === === === === === === === */
diff --git a/public/css/sql.css b/public/css/sql.css
new file mode 100644
index 0000000..528a818
--- /dev/null
+++ b/public/css/sql.css
@@ -0,0 +1,333 @@
+.innerhero__pic--sql {
+  width: auto;
+  height: auto;
+  top: auto;
+  bottom: -11rem;
+  transform: none;
+  left: 77%;
+}
+.dist__link {
+  display: inline-block;
+  margin-top: 1rem;
+  color: lightgrey;
+}
+.dist__link:hover {
+  color: lightgrey;
+}
+
+.dist {
+  padding-top: 13rem;
+  padding-bottom: 13rem;
+}
+.dist__block {
+  justify-content: space-between;
+}
+.dist__image {
+  background: #f6f6f6;
+  border-radius: 10px;
+  padding: 9rem 12rem 8rem 12.5rem;
+  margin-left: 7rem;
+}
+.dist__text {
+  font-size: 2rem;
+  line-height: 1.6;
+  max-width: 647px;
+  margin-top: 2rem;
+}
+.dist__items {
+  margin-top: 5rem;
+}
+.dist__item-title {
+  font-size: 2rem;
+}
+.dist__item:last-child {
+  margin-left: 10.6rem;
+}
+.dist__item-grey {
+  background: #f6f6f6;
+  border-radius: 10px;
+  padding: 2.8rem;
+  padding-bottom: 2.5rem;
+  margin-top: 2rem;
+  height: 145px;
+  flex-direction: column;
+}
+.dist__item-grey1 {
+  padding-right: 11.4rem;
+  padding-left: 2.9rem;
+}
+.dist__item-grey2 {
+  flex-direction: row;
+}
+.dist__item-span {
+  margin-top: 0.6rem;
+}
+.dist__itemitem {
+  flex-direction: column;
+  width: 74px;
+}
+.dist__itemitem__end {
+  margin-left: 2rem;
+}
+.dist__h3 {
+  font-size: 2rem;
+  margin-top: 8rem;
+}
+.dist__parts {
+  margin-top: 2.5rem;
+}
+.dist__part {
+  margin-left: 8.2rem;
+  align-items: center;
+}
+.dist__part:first-child {
+  margin-left: 0rem;
+  margin-top: 0rem;
+}
+.dist__part:last-child {
+  align-items: flex-start;
+}
+.dist__part-grey {
+  max-width: 210px;
+  color: #9c9c9c;
+  margin-top: 1rem;
+}
+.dist__part-text {
+  margin-left: 1rem;
+  flex-direction: column;
+}
+
+.dist1 {
+  background: #f6f6f6;
+  padding-top: 8rem;
+  padding-bottom: 11rem;
+}
+.dist1__subtext {
+  font-size: 2rem;
+  margin-top: 2rem;
+}
+.dist1__parts {
+  margin-top: 5rem;
+  margin-bottom: 8rem;
+}
+
+.dist1__part {
+  padding: 1.3rem;
+  width: 180px;
+  background: #ffffff;
+  border-radius: 30px;
+  margin-left: 3.3rem;
+  text-align: center;
+  font-size: 2rem;
+}
+.dist1__partend {
+  width: 202px;
+}
+.dist1__part:first-child {
+  margin-left: 0;
+  margin-top: 0;
+}
+.dist1__title {
+  text-transform: uppercase;
+}
+.dist1__text {
+  font-weight: normal;
+  max-width: 1000px;
+  margin-top: 2rem;
+  margin-bottom: 7rem;
+}
+.dist1__blocks {
+  margin-top: 5rem;
+}
+.dist1__block {
+  margin-left: 6rem;
+  max-width: 370px;
+}
+.dist1__block:first-child {
+  margin-left: 0rem;
+}
+.dist1__link::after {
+  content: ",";
+  color: black;
+}
+.dist1__h4 {
+  font-size: 2rem;
+  margin-bottom: 2rem;
+}
+
+.dist2 {
+  padding-top: 13rem;
+}
+.dist2__p {
+  margin-top: 2rem;
+  font-size: 2rem;
+  max-width: 650px;
+}
+.dist2__blocks {
+  margin-top: 5rem;
+}
+.dist2__block {
+  padding: 3.3rem;
+  padding-bottom: 4.2rem;
+  background: #f6f6f6;
+  border-radius: 10px;
+  width: 405px;
+  margin-left: 2.7rem;
+  position: relative;
+}
+.dist2__block:first-child {
+  margin-left: 0;
+}
+.dist2__h3 {
+  font-size: 2.4rem;
+  line-height: 1.6;
+}
+
+.dist2__text {
+  margin-top: 2rem;
+  font-size: 2rem;
+  height: 4.8rem;
+}
+
+.dist2__text1 {
+  height: 8.6rem;
+}
+.dist2__active {
+  width: 24px;
+  height: 24px;
+  cursor: pointer;
+  border-radius: 50%;
+  padding: 10px;
+  position: absolute;
+  right: 34px;
+  top: 15rem;
+}
+.dist2__active:hover {
+  background: #e6e6e6;
+}
+details[open] summary.dist2__active img {
+  transform: rotate(45deg);
+  transition: 0.5s all;
+}
+details[open] .dist2__block {
+  height: auto;
+}
+.dist2__subtext {
+  margin-top: 8rem;
+}
+
+@media (max-width: 1210px) {
+  .dist2__blocks {
+    flex-wrap: wrap;
+  }
+  .dist2__block:last-child {
+    margin-left: 0;
+    margin-top: 2rem;
+  }
+}
+
+@media (max-width: 1199px) {
+  .innerhero__pic--sql {
+    width: 50rem;
+  }
+
+  .dist__image {
+    margin-left: 4rem;
+    width: 50%;
+    padding: 8rem;
+  }
+  .dist__item-grey {
+    height: auto;
+  }
+  .dist__items {
+    flex-direction: column;
+  }
+  .dist__item:last-child {
+    margin-left: 0;
+    margin-top: 3rem;
+  }
+  .dist__parts {
+    flex-direction: column;
+  }
+  .dist__part {
+    margin-left: 0;
+    margin-top: 3rem;
+  }
+  .dist__h3 {
+    margin-top: 5rem;
+  }
+}
+
+@media (max-width: 992px) {
+  .dist {
+    padding-top: 8rem;
+    padding-bottom: 8rem;
+  }
+  .dist2 {
+    padding-top: 8rem;
+  }
+  .dist2__blocks {
+    flex-direction: column;
+  }
+  .dist2__block {
+    margin-left: 0;
+    margin-top: 2rem;
+  }
+}
+
+@media (max-width: 767px) {
+  .dist2__blocks {
+    margin-top: 3rem;
+  }
+  .dist2__block {
+    width: 100%;
+  }
+  .dist__item-grey2 {
+    padding: 2rem;
+  }
+  .dist__item-grey1 {
+    padding: 2rem;
+  }
+  .dist__block {
+    flex-direction: column;
+  }
+
+  .dist__link {
+    margin-right: 2rem;
+  }
+  .dist__image {
+    width: 100%;
+    padding: 5rem 8rem;
+    margin-top: 4rem;
+    margin-left: 0;
+  }
+
+  .dist1 {
+    padding-top: 6rem;
+    padding-bottom: 8rem;
+  }
+  .dist1__block {
+    margin-left: 0;
+    margin-top: 3rem;
+  }
+  .dist1__blocks {
+    flex-direction: column;
+    margin-top: 0rem;
+  }
+  .dist1__text {
+    margin-bottom: 4rem;
+  }
+  .dist1__parts {
+    flex-direction: column;
+    margin-top: 0;
+    margin-bottom: 4rem;
+    margin-top: 2rem;
+  }
+  .dist1__part {
+    margin-left: 0;
+    margin-top: 1.5rem;
+  }
+  .dist__part-textend {
+    margin-top: 0.3rem;
+  }
+}
diff --git a/public/css/streaming.css b/public/css/streaming.css
new file mode 100644
index 0000000..adfe220
--- /dev/null
+++ b/public/css/streaming.css
@@ -0,0 +1,221 @@
+.innerhero__pic--stream {
+  width: auto;
+  height: auto;
+  top: auto;
+  bottom: 0rem;
+  transform: none;
+  left: 77%;
+}
+
+.stream1 {
+  padding-top: 13rem;
+  padding-bottom: 7rem;
+}
+.stream1__p {
+  max-width: 620px;
+  margin-right: 10.8rem;
+}
+.stream1__text {
+  margin-top: 1.6rem;
+  max-width: 477px;
+}
+.stream1__block {
+  justify-content: space-between;
+}
+.stream1__part {
+  display: flex;
+  flex-direction: column;
+}
+
+.stream2 {
+  padding-bottom: 13rem;
+}
+.stream2__h3 {
+  font-size: 2.4rem;
+  margin-top: 5rem;
+  margin-bottom: 2.5rem;
+}
+.stream2__block {
+  justify-content: space-between;
+  align-items: center;
+}
+.stream2__img {
+  margin-left: 12rem;
+}
+.stream3 {
+  background: #f6f6f6;
+  padding-top: 8rem;
+  padding-bottom: 8rem;
+}
+.stream3__blocks {
+  margin-top: 8rem;
+}
+.stream3__block:last-child {
+  margin-left: 15rem;
+}
+.ml-04 {
+  margin-left: 0.4rem;
+}
+.stream3__text {
+  margin-left: 1rem;
+  font-size: 2rem;
+  line-height: 26px;
+  max-width: 400px;
+}
+.stream3__end {
+  margin-top: 5.5rem;
+}
+.stream3__itemstart {
+  margin-top: 4rem;
+}
+.stream3__item:last-child {
+  margin-top: 2rem;
+}
+.stream3__img {
+  margin-right: 2rem;
+}
+.stream3__item {
+  margin-left: 2rem;
+}
+.stream4__greys {
+  color: #9c9c9c;
+}
+.stream4 {
+  padding-top: 13rem;
+}
+.stream4__p {
+  margin-top: 2rem;
+  margin-bottom: 5rem;
+  font-size: 2.4rem;
+  max-width: 600px;
+  line-height: 1.5;
+}
+.stream4__number {
+  color: #0070cc;
+  font-size: 2.4rem;
+  line-height: 1.5;
+  font-weight: bold;
+}
+.stream4__text {
+  margin-top: 2rem;
+  max-width: 290px;
+}
+.stream4__part {
+  margin-left: 14rem;
+}
+.stream4__part:first-child {
+  margin-left: 0;
+}
+.stream4__grey {
+  margin-top: 1rem;
+  color: #9c9c9c;
+  max-width: 290px;
+}
+.stream4__parttwo {
+  margin-left: 18rem;
+}
+@media (max-width: 1199px) {
+  .stream4__part {
+    margin-left: 10rem;
+  }
+  .stream1 {
+    padding-top: 8rem;
+    padding-bottom: 6rem;
+  }
+  .stream2 {
+    padding-bottom: 8rem;
+  }
+  .stream3 {
+    padding-top: 6rem;
+    padding-bottom: 6rem;
+  }
+  .stream4 {
+    padding-top: 8rem;
+  }
+}
+
+@media (max-width: 992px) {
+  .innerhero__pic--stream {
+    width: 430px;
+  }
+  .stream1__block {
+    flex-direction: column;
+  }
+  .stream1__p {
+    margin-right: 0rem;
+  }
+  .stream1__part {
+    margin-top: 2rem;
+  }
+
+  .stream2__block {
+    flex-direction: column;
+    align-items: flex-start;
+  }
+  .stream2__img {
+    margin-left: 0;
+    margin-top: 2rem;
+  }
+
+  .stream3__block:last-child {
+    margin-left: 5rem;
+  }
+  .stream3__blocks {
+    margin-top: 5rem;
+  }
+}
+
+@media (max-width: 767px) {
+  .stream1__img {
+    width: 100%;
+  }
+  .stream2__img {
+    width: 100%;
+  }
+  .stream2__h3 {
+    margin-top: 3rem;
+    margin-bottom: 2rem;
+  }
+  .stream3__block:last-child {
+    margin-left: 0rem;
+  }
+  .stream3__blocks {
+    flex-direction: column;
+  }
+  .stream3__end {
+    margin-left: 0;
+    margin-top: 2rem;
+  }
+  .stream3__first {
+    margin-top: 2rem;
+  }
+  .stream3__item {
+    margin-left: 0;
+    flex-wrap: wrap;
+  }
+  .stream3__itemstart {
+    margin-top: 2rem;
+  }
+  .stream3__img {
+    margin-top: 1rem;
+  }
+  .stream3__item:last-child {
+    margin-top: 1rem;
+  }
+  .stream4__block {
+    flex-direction: column;
+  }
+  .stream4__part {
+    margin-left: 0;
+    margin-top: 2rem;
+  }
+  .stream4__part:first-child {
+    margin-top: 0;
+  }
+  .stream4__p {
+    margin-bottom: 3rem;
+  }
+  .stream4__text {
+    margin-top: 1rem;
+  }
+}
diff --git a/public/css/tooling.css b/public/css/tooling.css
new file mode 100644
index 0000000..350589b
--- /dev/null
+++ b/public/css/tooling.css
@@ -0,0 +1,460 @@
+.innerhero--tooling{
+    padding-bottom: 22rem;
+    padding-top: 13rem;
+}
+.innerhero--tooling .innerhero__main{
+    max-width: none;
+    width: auto;
+}
+.innerhero__pic--tooling{
+    right: -295px;
+    bottom: -400px;
+}
+
+
+
+
+.tooling-leading {
+    text-align: center;
+    padding-top: 11rem;
+    padding-bottom: 19rem;
+}
+
+
+
+.toolingbox {
+    padding-bottom: 13rem;
+}
+.toolingbox__title {
+    justify-content: center;
+    display: flex;
+    align-items: center;
+    flex-flow: row nowrap;
+    justify-content: center;
+    position: relative;
+}
+.toolingbox__title img{
+    display: block;
+    width: 4.8rem;
+    height: 4.8rem;
+    flex-shrink: 0;
+    margin-right: 2rem;
+}
+.toolingbox__picwrap {
+    padding-top: 4rem;
+    display: block;
+    position: relative;
+    z-index: 10;
+}
+.toolingbox__picwrap img{
+    display: block;
+    margin: 0 auto;
+    width: 100%;
+    object-fit: contain;
+    max-width: 837px;
+}
+.toolingbox__bg {
+    padding-top: 160px;
+    border-radius: 1rem;
+    background: var(--grey);
+    margin-top: -11rem;
+    position: relative;
+    z-index: 1;
+    padding: 16rem 8rem 8rem;
+}
+.toolingbox__picdescr {
+    text-align: center;
+}
+.toolvarlist1 {
+    text-align: left;
+    padding: 8rem 0 0;
+    display: flex;
+    flex-flow: row nowrap;
+    align-items: flex-start;
+    justify-content: space-between;
+}
+.toolvarlist1__left {
+    max-width: 350px;
+    position: relative;
+    padding-bottom: 100px;
+}
+.toolvarlist1__title {
+    font-size: 2.4rem;
+    line-height: 1.5;
+}
+.toolvarlist1__list {
+    padding-top: 2rem;
+}
+.toolvarlist1__dl {
+    position: relative;
+    padding-left: 44px;
+    background: url(../img/features/icon-check-ok.svg) left top no-repeat;
+    background-size: 24px;
+    padding-bottom: 2rem;
+}
+.toolvarlist1__dl:last-child{
+    padding-bottom: 0;
+}
+.toolvarlist1__dl dt:not(:last-child){
+    padding-bottom: 1rem;
+}
+.toolvarlist1__dl dd p:not(:last-child){
+    padding-bottom: 1rem;
+}
+.toolvarlist1__more {
+    position: absolute;
+    bottom: 0;
+    left: 0;
+}
+.toolvarlist1__more .button{
+    padding-left: 6rem;
+    padding-right: 6rem;
+}
+.toolvarlist1__right {
+    position: relative;
+    padding-bottom: 100px;
+}
+.toolvarlist1__descr {
+    padding-top: 2rem;
+}
+.toolvarlist1--simple .toolvarlist1__dl{
+    padding-bottom: 3rem;
+}
+.toolvarlist1--simple .toolvarlist1__left,
+.toolvarlist1--simple .toolvarlist1__right{
+    padding-bottom: 3rem;
+}
+.toolvarlist1-bottom .button{
+    width: 200px;
+    margin-left: auto;
+    margin-right: auto;
+}
+
+.toolvarlist2 {
+    display: grid;
+    padding: 5rem 0;
+    grid-template-columns: repeat(3, 1fr);
+    grid-gap: 8rem;
+    grid-auto-rows: auto;
+}
+.toolvarlist2__item {
+    text-align: left;
+    position: relative;
+    padding-top: 44px;
+    background: url(../img/features/icon-check-ok.svg) left top no-repeat;
+    background-size: 24px;
+    max-width: 300px;
+}
+
+
+.toolingbox4__wrap {
+    display: grid;
+    grid-template-columns: 60% 40%;
+    grid-auto-rows: auto;
+    grid-gap: 3rem;
+    justify-content: space-between;
+    padding-top: 5rem;
+}
+.toolingbox4__title {
+    font-size: 2.4rem;
+    line-height: 1.5;
+    padding-bottom: 3rem;
+}
+.toolingbox4__numblock {
+    padding-top: 6rem;
+}
+.toolingbox4__numtitle {
+    font-size: 2.4rem;
+    line-height: 1.5;
+    font-weight: 700;
+}
+.toolingbox4__numwrap {
+    display: flex;
+    flex-flow: row nowrap;
+    align-items: flex-start;
+    justify-content: space-between;
+    padding-bottom: 4rem;
+}
+.toolingbox4__numitem {
+    max-width: 300px;
+}
+.toolingbox4__numitem i{
+    font-style: normal;
+    font-weight: 700;
+    color:var(--blue);
+    font-weight: 700;
+    font-size: 20px;
+    line-height: 1;
+    padding-bottom: 1.5rem;
+    display: block;
+}
+.toolingbox4__numitem p{
+    padding-bottom: 1rem;
+}
+.toolingbox4__small {
+    color:var(--grey4);
+}
+
+.toolingend{
+    padding-bottom: 9rem;
+}
+.toolingend .container{
+    background: url(../img/features/more-learn-planet.png) var(--blue) right -10px no-repeat;
+    background-size: 370px;
+    align-items: center;
+    justify-content: space-between;
+    border-radius: 1rem;
+}
+.toolingend__main {
+    padding-left: 8rem;
+    flex-basis: 50%;
+    flex-grow: 1;
+    min-height: 263px;
+    display: flex;
+    flex-flow: column nowrap;
+    align-items: flex-start;
+    justify-content: center;
+    color:#fff;
+}
+.toolingend__title {
+    position: relative;
+}
+.toolingend__action {
+    margin-right: 10rem;
+    width: auto;
+    flex-shrink: 0;
+}
+.toolingend__action .button{
+    color:var(--blue);
+    background: #fff;
+    padding-left: 20px;
+    padding-right: 20px;
+    height: 50px;
+}
+.toolingend__action .button:hover{
+    background: var(--grey);
+}
+
+
+
+
+
+
+@media (max-width:1199px){
+    .innerhero--tooling{
+        padding-top: 8rem;
+        padding-bottom: 8rem;
+        height: calc(100vh - 80px);
+        min-height: 450px;
+    }
+    .innerhero__h1{
+        font-size: 6rem;
+        line-height: 1.2;
+    }
+    .innerhero__pic--tooling{
+        width: 500px;
+        bottom: -230px;
+        right: -200px;
+    }
+    .toolvarlist1--simple .toolvarlist1__left, .toolvarlist1--simple .toolvarlist1__right{
+        max-width: calc(50% - 30px);
+    }
+    .toolingbox4__numitem{
+        max-width: calc(100% / 3 - 30px);
+    }
+    .toolingend__main{
+        padding-left: 30px;
+    }
+    .toolingend__title{
+        padding-left: 0;
+    }
+    .toolingend br{
+        display: none;
+    }
+    .toolingend__action{
+        margin-left: 40px;
+        margin-right: 30px;
+    }
+    .toolingend__title::after{
+        top: 2px;
+        left: -45px;
+    }
+} /* END MEDIA 1199px */
+
+
+
+
+@media (max-width:992px){
+    .innerhero__pic--tooling{
+        display: none;
+    }
+    .innerhero--tooling{
+        min-height: auto;
+        height: auto;
+    }
+    .innerhero__h1 br{
+        display: none;
+    }
+    .toolvarlist1{
+        flex-flow: column nowrap;
+        align-items: stretch;
+    }
+    .toolvarlist1__more{
+        position: relative;
+        bottom: auto;
+        width: 200px;
+        margin-top: 30px;
+    }
+    .toolvarlist1__right{
+        padding-bottom: 0;
+    }
+    .toolvarlist1__dl{
+        background-size: 20px;
+        background-position-y: 0;
+        padding-top: 2px;
+        padding-left: 30px;
+        min-height: 20px;
+    }
+    .toolvarlist2{
+        grid-gap: 3rem;
+    }
+    .toolingbox4__numitem{
+        max-width: calc(100% / 3 - 15px);
+    }
+
+    .toolingend{
+        background-size: 200px;
+        padding-bottom: 0;
+    }
+    .toolingend .container{
+        border-radius: 0;
+        flex-flow: column nowrap;
+        align-items: stretch;
+        padding-top: 100px;
+        padding-bottom: 70px;
+    }
+    .toolingend__title::after{
+        position: relative;
+        left: 0;
+        top: -40px;
+        position: absolute;
+    }
+    .toolingend__main{
+        flex-basis: auto;
+        flex-grow: 0;
+        justify-content: flex-start;
+        min-height: auto;
+    }
+    .toolingend__action{
+        width: auto;
+        margin-left: 0;
+        padding-top: 30px;
+    }
+    .toolingend__action .button{
+        width: 340px;
+    }
+} /* END MEDIA 992px */
+
+
+
+@media (max-width:767px){
+    .innerhero__descr{
+        font-size: 2rem;
+        line-height: 1.6;
+    }
+    .tooling-leading{
+        padding-top: 7rem;
+        padding-bottom: 10rem;
+    }
+    .toolingbox{
+        padding-bottom: 8rem;
+    }
+    .toolingbox__title{
+        font-size: 2.2rem;
+        line-height: 1.3;
+    }
+    .toolingbox__title img{
+        margin-right: 10px;
+    }
+    .toolingbox__picwrap{
+        padding-top: 3rem;
+    }
+    .toolingbox__bg{
+        margin-top: 0;
+        padding: 3rem 2rem 4rem;
+        border-radius: 0 0 1rem 1rem;
+    }
+    .toolingbox__bg br{
+        display: none;
+    }
+    .toolingbox__picdescr{
+        text-align: left;
+    }
+    .toolvarlist1{
+        padding-top: 3rem;
+    }
+    .toolvarlist1__left{
+        padding-bottom: 8rem;
+    }
+    .toolvarlist1--simple .toolvarlist1__left, .toolvarlist1--simple .toolvarlist1__right{
+        max-width: none;
+        padding-bottom: 0;
+        padding-top: 0;
+    }
+    .toolvarlist1--simple .toolvarlist1__dl:last-child{
+        padding-bottom: 1rem;
+    }
+    .toolvarlist1-bottom{
+        padding-top: 3rem;
+    }
+    .toolvarlist1-bottom .button{
+        margin: 0;
+    }
+    .toolvarlist2{
+        grid-template-columns: 1fr;
+        grid-gap: 4rem;
+        padding-bottom: 0;
+    }
+    .toolvarlist2__item{
+        padding-top: 35px;
+    }
+    .toolingbox4__wrap{
+        grid-template-columns: 1fr;
+        padding-top: 0;
+    }
+    .toolingbox4__numwrap{
+        flex-flow: column nowrap;
+        align-items: stretch;
+        padding-bottom: 0;
+    }
+    .toolingbox4__numitem{
+        max-width: none;
+        padding-bottom: 3rem;
+    }
+    .toolingbox4__numitem:last-child{
+        padding-bottom: 0;
+    }
+
+    .toolingend .container{
+        padding: 7rem 15px 7rem;
+        background-size: 50%;
+        background-position: right bottom;
+    }
+    .toolingend__main{
+        max-width: 340px;
+        padding-left: 0;
+    }
+    .toolingend__action .button{
+        width: auto;
+        display: inline-flex;
+        padding:0 20px;
+        height: 45px;
+        font-size: 1.8rem;
+    }
+    .toolingend__title::after{
+        top: -35px;
+    }
+    .toolingend__action{
+        padding-top: 20px;
+    }
+} /* END MEDIA 992px */
\ No newline at end of file
diff --git a/public/css/usecases.css b/public/css/usecases.css
new file mode 100644
index 0000000..e7b6b7c
--- /dev/null
+++ b/public/css/usecases.css
@@ -0,0 +1,263 @@
+.innerhero__pic--usecase{
+    width: 57rem;
+    height: auto;
+    top: auto;
+    bottom: -23rem;
+    transform: none;
+    left: 80%;
+}
+.usecase2 {
+    padding: 8rem 0;
+}
+.usecase2__wrap {
+    padding-top: 6rem;
+    display: grid;
+    grid-template-columns: repeat(3, 1fr);
+    grid-auto-rows:auto;
+    grid-gap: 4rem 3rem;
+}
+
+.usecase3 {
+    padding-top: 12rem;
+    padding-bottom: 6rem;
+}
+.usecase3__block:not(:last-child){
+    padding-bottom: 10rem;
+}
+.usecase4 {
+    padding-top: 10rem;
+    padding-bottom: 12rem;
+}
+.usecase4__wrap{
+    display: grid;
+    grid-template-columns: repeat(3, 1fr);
+    grid-auto-rows:auto;
+    grid-gap: 4rem 3rem;
+}
+
+
+@media (max-width:992px){
+    .usecase2__wrap,
+    .usecase4__wrap{
+        grid-template-columns: 1fr 1fr;
+    }
+}/* END MEDIA 992px */
+
+
+@media (max-width:767px){
+    .usecase2__wrap, .usecase4__wrap{
+        grid-template-columns: 1fr;
+        grid-gap: 2rem;
+    }
+    .usecase2__wrap{
+        padding-top: 3rem;
+    }
+    .usecase3{
+        padding-top: 0;
+    }
+    .usecase3__block:not(:last-child){
+        padding-bottom: 8rem;
+    }
+    .usecase4{
+        padding-top: 2rem;
+        padding-bottom: 6rem;
+    }
+}/* END MEDIA 767px */
+
+
+
+
+
+
+
+
+
+
+
+
+
+/* === === === === === === === === POWERED BY === === === === === === === === */
+.grayhero {
+    background: #f1f1f1;
+    height: calc(100vh - 96px);
+    min-height: 500px;
+    max-height: 750px;
+    display: flex;
+    flex-flow: column nowrap;
+    align-items: stretch;
+    justify-content: flex-start;
+    padding: 8rem 0;
+}
+.grayhero__h1 {
+    max-width: 950px;
+}
+.grayhero__logos {
+    padding-top: 5rem;
+    flex-flow: row wrap;
+    align-items: flex-start;
+    justify-content: flex-start;
+    margin: 0 -7px;
+}
+.grayhero__logo {
+    display: flex;
+    background: #fff;
+    height: 80px;
+    padding: 0 30px;
+    border-radius: 100px;
+    margin:0 7px 30px;
+}
+.grayhero__logo img{
+    display: block;
+    max-height: 40%;
+    max-width: 200px;
+    margin: auto;
+    width: auto;
+}
+.powered2 {
+    padding-top: 13rem;
+    padding-bottom: 13rem;
+}
+.powered2__grid {
+    display: grid;
+    grid-template-columns: repeat(4, 1fr);
+    grid-auto-rows: auto;
+    grid-gap: 4rem;
+}
+.powered2item{
+    position: relative;
+    padding-left: 21px;
+}
+.powered2item::before{
+    content: "";
+    display: block;
+    position: absolute;
+    left: 0;
+    top: 1.2rem;
+    height: 1px;
+    width: 15px;
+    background: #000;
+}
+.poweredbanner__bg {
+    border-radius: 1rem;
+    background: url(../img/poweredby/banner-bg.png) var(--blue4) right center no-repeat;
+    min-height: 200px;
+    background-size: 354px;
+    align-items: center;
+    padding: 4rem 7rem;
+    justify-content: space-between;
+    align-items: center;
+}
+.poweredbanner__left {
+    padding-right: 100px;
+    flex-flow: column nowrap;
+    align-items: flex-start;
+    justify-content: center;
+    align-self: stretch;
+}
+.poweredbanner__right {
+    width: 160px;
+    flex-shrink: 0;
+}
+.poweredbanner__button {
+    width: 100%;
+}
+.poweredvideos {
+    padding-top: 13rem;
+}
+.poweredvideos__grid,
+.poweredvideos__more{
+    display: grid;
+    grid-template-columns: 1fr 1fr;
+    grid-auto-rows: auto;
+    grid-gap: 10rem 3rem;
+    justify-content: space-between;
+}
+.poweredvideos__more{
+    padding-bottom: 13px;
+}
+.poweredvideos__morewrap{
+    height: 0;
+    overflow: hidden;
+    transition: height 0.3s ease;
+}
+.poweredvideos__linkwrap{
+    text-align: center;
+    padding-bottom: 6rem;
+}
+.poweredvideos__loadmore{
+    display: inline-block;
+}
+
+
+@media (max-width:1199px){
+    .grayhero__h1{
+        font-size: 5rem;
+        line-height: 1.15;
+    }
+    .grayhero__logo{
+        height: 60px;
+        margin-bottom: 20px;
+    }
+    .poweredvideos__grid,
+    .poweredvideos__more{
+        grid-gap: 3rem 5rem;
+    }
+    .grayhero{
+        height: auto;
+        min-height: auto;
+    }
+}/* END MEDIA 1199px */
+
+@media (max-width:992px){
+    .powered2__grid{
+        grid-template-columns: repeat(3, 1fr);
+    }
+}/* END MEDIA 992px */
+
+
+@media (max-width:767px){
+    .grayhero{
+        padding: 6rem 0;
+    }
+    .grayhero__h1{
+        font-size: 4rem;
+        text-align: center;
+    }
+    .grayhero__logos{
+        justify-content: center;
+    }
+    .grayhero__logo{
+        height: 50px;
+        margin: 0 5px 10px;
+    }
+    .powered2{
+        padding-top: 8rem;
+        padding-bottom: 8rem;
+    }
+    .powered2__grid{
+        grid-template-columns: 1fr 1fr;
+        grid-gap: 2rem 3rem;
+    }
+    .poweredbanner__bg{
+        flex-flow: column nowrap;
+        align-items: stretch;
+        padding-left: 2rem;
+        padding-right: 2rem;
+        background-size: 50%;
+        background-position: right bottom;
+    }
+    .poweredbanner__left{
+        padding-right: 0;
+    }
+    .poweredbanner__right{
+        margin: 3rem 0 0;
+    }
+    .poweredvideos{
+        padding-top: 8rem;
+    }
+    .poweredvideos__grid, .poweredvideos__more{
+        grid-template-columns: 1fr;
+        grid-gap: 5rem 0;
+    }
+}/* END MEDIA 767px */
+/* === === === === === === === === END POWERED BY === === === === === === === === */
\ No newline at end of file
diff --git a/public/css/utils.css b/public/css/utils.css
new file mode 100644
index 0000000..6ae5c23
--- /dev/null
+++ b/public/css/utils.css
@@ -0,0 +1,570 @@
+/* === === === === === === === === RESET === === === === === === === === */
+*{
+    margin: 0;
+    padding: 0;
+    list-style: none;
+    font-style: normal;
+}
+em{
+    font-style: italic;
+}
+*:focus{
+    outline: none;
+}
+html{
+    font-size: 10px;
+    box-sizing:border-box;
+    -ms-overflow-style:scrollbar
+}
+body{
+    font-family: Arial, Helvetica, sans-serif;
+    font-size: 1.6rem;
+    line-height: 2.4rem;
+    color: #000;
+    background: #fff;
+    position: relative;
+}
+input, button, textarea, select{
+    font-family: inherit;
+    -webkit-appearance: none;
+    -moz-appearance: none;
+    appearance: none;
+}
+input::-webkit-search-decoration,
+input::-webkit-search-cancel-button,
+input::-webkit-search-results-button,
+input::-webkit-search-results-decoration {
+    display: none; 
+}
+input::-webkit-outer-spin-button,
+input::-webkit-inner-spin-button {
+    -webkit-appearance: none;
+    margin: 0;
+}
+input[type=number] {
+    -moz-appearance:textfield;
+}
+.flexi{
+    display: flex;
+    flex-flow: row nowrap;
+    align-items: flex-start;
+    justify-content: flex-start;
+}
+a{
+    text-decoration: none;
+    color:var(--blue);
+}
+a:hover{
+    text-decoration: underline;
+    color: var(--blue2);
+}
+.hystmodal__shadow{
+    z-index: 3500;
+}
+.hystmodal{
+    z-index: 4000;
+}
+.button{
+    font-family: inherit;
+    display: flex;
+    flex-flow: row nowrap;
+    align-items: center;
+    justify-content: center;
+    text-align: center;
+    padding: 0 1rem 0px;
+    color: #fff;
+    outline: none;
+    box-sizing: border-box;
+    cursor: pointer;
+    border:none;
+    position: relative;
+    text-decoration: none;
+
+    height: 5rem;
+    font-size: 1.6rem;
+    background-color: var(--blue);
+    border-radius: 1rem;
+    transition: background 0.1s ease-in-out, color 0.1s ease-in-out;
+}
+.button:hover{
+    background:var(--blue2);
+    color:#fff;
+    text-decoration: none;
+}
+.button:active{
+    transform: translateY(1px);
+}
+.button--shadow{
+    background: #fff;
+    color:var(--blue);
+    border: 1px solid var(--blue);
+}
+.button:disabled,
+.button:disabled:hover{
+    background: var(--blue3);
+    border:none;
+    box-shadow: none;
+    color:#fff;
+    cursor: auto;
+}
+/* === === === === === === === === END RESET === === === === === === === === */
+
+
+
+
+
+/* === === === === === === === === SCROLLTOP BUTTON === === === === === === === === */
+.scrollTop {
+    display: flex;
+    pointer-events: none;
+    width: 50px;
+    height: 50px;
+    background-color: var(--blue);;
+    border-radius: 10px;
+    position: fixed;
+    opacity: 0.8;
+    right: 15px;
+    bottom: 15px;
+    transition: transform 0.3s ease, opacity 0.3s ease;
+    transform: translateY(10px);
+    opacity: 0;
+    z-index: 200;
+}
+.scrollTop.active {
+    pointer-events: auto;
+    transform: translateY(0);
+    opacity: 1;
+}
+.scrollTop svg {
+    stroke: #fff;
+    display: block;
+    margin: auto;
+    width: 50%;
+    transform: translateY(-1px);
+}
+/* === === === === === === === === /END SCROLLTOP BUTTON === === === === === === === === */
+
+
+
+
+
+/* === === === === === === === === CONTAINERS === === === === === === === === */
+*,::after,::before{box-sizing:inherit}
+.container {
+    width: 100%;
+    padding-right: 15px;
+    padding-left: 15px;
+    margin-right: auto;
+    margin-left: auto;
+    position: relative;
+}
+@media (min-width:576px) {
+    .container {
+        max-width: 540px;
+    }
+}
+@media (min-width:768px) {
+    .container {
+        max-width: 720px;
+    }
+}
+@media (min-width:992px) {
+    .container {
+        max-width: 960px;
+    }
+}
+@media (min-width:1200px) {
+    .container {
+        max-width: 1200px;
+    }
+}
+@media (min-width:1300px) {
+    .container {
+        max-width: 1300px;
+    }
+}
+/* === === === === === === === === /END CONTAINERS === === === === === === === === */
+
+
+
+
+
+/* === === === === === === === === TEXTCONTENT === === === === === === === === */
+.maxline2{
+    display: -webkit-box !important;
+    -webkit-line-clamp: 2;
+    line-clamp: 2;
+    overflow: hidden;
+    -webkit-box-orient: vertical;
+}
+.maxline3{
+    display: -webkit-box !important;
+    -webkit-line-clamp: 3;
+    line-clamp: 3;
+    overflow: hidden;
+    -webkit-box-orient: vertical;
+}
+.capstext{
+    font-size: 1.6rem;
+    line-height: 1;
+    letter-spacing: 2px;
+    text-transform: uppercase;
+    font-weight: 400;
+}
+.h1{
+    font-size: 8rem;
+    line-height: 9.4rem;
+}
+.h2{
+    font-size: 6rem;
+    line-height: 7rem;
+}
+.h3{
+    font-size: 4.8rem;
+    line-height: 6.4rem;
+}
+.h4{
+    font-size: 3rem;
+    line-height: 4rem;
+}
+.h5{
+    font-size: 2.4rem;
+    line-height: 3.4rem;
+    font-weight: 400;
+}
+.fz20{
+    font-size: 2rem;
+    line-height:2.6rem;
+}
+.fz30{
+    font-size: 3rem;
+    line-height: 4.2rem;
+}
+.fz40{
+    font-size: 4rem;
+    line-height: 5rem;
+}
+.fz50{
+    font-size: 5rem;
+    line-height: 5.5rem;
+}
+.fz60{
+    font-size: 6rem;
+    line-height: 7rem;
+}
+.pt-1, .py-1{
+    padding-top: 1rem;
+}
+.pt-1x, .py-1x{
+    padding-top: 1.5rem;
+}
+.pt-2, .py-2{
+    padding-top: 2rem;
+}
+.pt-3, .py-3{
+    padding-top: 3rem;
+}
+.pt-4, .py-4{
+    padding-top: 4rem;
+}
+.pt-5, .py-5{
+    padding-top: 5rem;
+}
+.pb-1, .py-1{
+    padding-bottom: 1rem;
+}
+.pb-1x, .py-1x{
+    padding-bottom: 1.5rem;
+}
+.pb-2, .py-2{
+    padding-bottom: 2rem;
+}
+.pb-3, .py-3{
+    padding-bottom: 3rem;
+}
+.pb-4, .py-4{
+    padding-bottom: 4rem;
+}
+.pb-5, .py-5{
+    padding-bottom: 5rem;
+}
+@media (max-width:1199px){
+    .fz20{
+        line-height: 1.6;
+    }
+}
+@media (max-width:992px){
+    .h1{
+        font-size: 7rem;
+        line-height: 1.2;
+    }
+    .h2{
+        font-size: 6rem;
+        line-height: 7rem;
+    }
+    .h3{
+        font-size: 4rem;
+        line-height: 5rem;
+    }
+    .h4{
+        font-size: 3.2rem;
+        line-height: 4.2rem;
+    }
+    .h5{
+        font-size: 2.1rem;
+        line-height: 2.6rem;
+        font-weight: 400;
+    }
+    .fz20{
+        font-size: 1.7rem;
+        line-height:1.5;
+    }
+    .fz30{
+        font-size: 2.6rem;
+        line-height: 3.6rem;
+    }
+    .fz40{
+        font-size: 3.5rem;
+        line-height: 4.1rem;
+    }
+    .fz50{
+        font-size: 4rem;
+        line-height: 4.5rem;
+    }
+    .fz60{
+        font-size: 5rem;
+        line-height: 6rem;
+    }
+    .pt-1, .py-1{
+        padding-top: 1rem;
+    }
+    .pt-2, .py-2{
+        padding-top: 2rem;
+    }
+    .pt-3, .py-3{
+        padding-top: 3rem;
+    }
+    .pt-4, .py-4{
+        padding-top: 4rem;
+    }
+    .pt-5, .py-5{
+        padding-top: 5rem;
+    }
+    .pb-1, .py-1{
+        padding-bottom: 1rem;
+    }
+    .pb-2, .py-2{
+        padding-bottom: 2rem;
+    }
+    .pb-3, .py-3{
+        padding-bottom: 3rem;
+    }
+    .pb-4, .py-4{
+        padding-bottom: 4rem;
+    }
+    .pb-5, .py-5{
+        padding-bottom: 5rem;
+    }
+}
+
+@media (max-width:767px){
+    .h2{
+        font-size: 6rem;
+        line-height: 7rem;
+    }
+    .h3{
+        font-size: 3.6rem;
+        line-height: 4.6rem;
+    }
+    .h4{
+        font-size: 3rem;
+        line-height: 4rem;
+    }
+    .h5{
+        line-height: 1.4;
+    }
+}
+/* === === === === === === === === /END TEXTCONTENT === === === === === === === */
+
+
+
+
+/* === === === === === === === === UTILS JS STYLING === === === === === === === */
+.jsOpener{
+    height: 0;
+    transition: height 0.4s ease;
+    overflow: hidden;
+}
+*[data-hideopen] span{
+    display: none;
+}
+*[data-hideopen].isopen span{
+    display: block;
+}
+*[data-hideopen].isopen i{
+    display: none;
+}
+/* === === === === === === === === /END UTILS JS STYLING === === === === === === === */
+
+
+
+
+
+
+
+/* === === === === === === === === CHOICES.JS === === === === === === === === */
+.choices{
+    margin-bottom: 0;
+    width: auto;
+    flex-shrink: 0;
+    flex-grow: 0;
+    font-size: 16px;
+    line-height: 1;
+}
+.choices__inner{
+    height: 100%;
+    background-color: transparent;
+    border:none;
+    padding: 7px 10px 7px 0 !important;
+    border-radius: 0;
+    min-height: auto;
+    font-size: 16px;
+}
+.choices__list--single{
+    padding: 0;
+    height: 100%;
+}
+.choices__list--dropdown,
+.is-open .choices__list--dropdown{
+    background-color: #111;
+    border: 1px solid #000;
+    width: auto;
+}
+.choices__list--dropdown .choices__list{
+    overflow: hidden;
+}
+.choices__item--selectable{
+    white-space: nowrap;
+    padding: 0 10px 0 10px;
+    font-size: 16px;
+}
+.choices__inner .choices__item--selectable:hover{
+    text-decoration: underline;
+}
+.choices__list--dropdown .choices__item--selectable{
+    padding-right: 10px;
+}
+.choices__list--dropdown .choices__item--selectable.is-highlighted{
+    background-color: #464d55;
+}
+.choices[data-type*=select-one]:after{
+    left: auto;
+    right: 0px;
+    width: 10px;
+    height: 10px;
+    /* background: url(../img/icon-shevron.svg) center center no-repeat; */
+    background-size: contain;
+    border: none;
+    margin-top: -4px !important;
+}
+/* === === === === === === === === /END CHOICES.JS === === === === === === === === */
+
+
+
+/* ========== START MOBILE MENU ==========  */
+.mobmenu{
+    min-height: 100vh;
+    margin: 0;
+    width: 240px;
+    transform: translateX(-100%);
+    opacity: 1;
+    align-self: flex-start;
+    transition-duration: 0.3s;
+    box-shadow: 0 0 20px rgba(0,0,0,0.2);
+}
+.mobmenu .hystmodal__close{
+    top: 10px;
+    right: 10px;
+    opacity: 0.9;
+    width: 24px;
+    height: 24px;
+}
+.mobmenu__logo {
+    margin: 20px auto 40px;
+    width: 100px;
+    display: block;
+}
+.mobmenu__logo img{
+    display: block;
+    width: 100%;
+}
+.mobmenu__menu {
+    font-size: 14px;
+    line-height: 1.3;
+    padding-bottom: 40px;
+}
+.mobmenu__h1 {
+    font-weight: bold;
+    padding-left: 30px;
+    font-size: 15px;
+    text-transform: uppercase;
+    line-height: 1.4;
+    padding-bottom: 10px;
+}
+.mobmenu__menu a{
+    display: block;
+    padding: 7px 30px;
+    border-bottom: 1px solid #f0f0f0;
+    color:#000;
+    text-decoration: none;
+}
+.mobmenu__menu li:last-child a{
+    border:none;
+}
+.mobmenu__menu li.current-menu-item a{
+    background: #f0f0f0;
+}
+/* ========== END MOBILE MENU ==========  */
+
+
+
+
+
+
+
+
+
+/* === === === === === === === === /ARROW LINK === === === === === === === === */
+.arrowlink{
+    position: relative;
+    display: inline-block;
+    padding-right: 2.2rem;
+}
+.arrowlink::after{
+    content:"";
+    display: block;
+    position: absolute;
+    right: 0;
+    top: 50%;
+    width: 1.4rem;
+    height: 1.4rem;
+    margin-top: -0.7rem;
+    background: url(../img/usecases/arrow.svg) no-repeat;
+    background-size: contain;
+    color:var(--blue);
+    transition: transform 0.2s ease;
+}
+.arrowlink:hover::after{
+    transform: translateX(2px);
+}
+@media (max-width:767px){
+    .arrowlink::after{
+        width: 10px;
+        height: 10px;
+    }
+}
+/* === === === === === === === === /END ARROW LINK === === === === === === === === */
+
+
+
+
diff --git a/public/download.html b/public/download.html
new file mode 100644
index 0000000..12f5cc4
--- /dev/null
+++ b/public/download.html
@@ -0,0 +1,711 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>Resources | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/native-persistence.css" />
+    <link rel="stylesheet" href="../css/download.css" />
+    <link rel="stylesheet" href="../js/vendor/highlight/default.min.css" />
+    <link rel="stylesheet" href="../js/vendor/highlight/night-owl.css" />
+    <script src="../js/vendor/highlight/highlight.min.js"></script>
+    <script src="../js/vendor/highlight/xml.min.js"></script>
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__blue">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo-white.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="innerhero innerhero--download">
+      <div class="container innerhero__cont">
+        <div class="innerhero__main">
+          <div class="innerhero__pre pb-3">Apache Ignite</div>
+          <h1 class="h1 innerhero__h1 innerhero__mega">Downloads</h1>
+        </div>
+        <img class="innerhero__pic innerhero__pic--download" src="/img/downloads/hero.svg" alt="Downloads" />
+      </div>
+    </section>
+    <!-- /.innerhero-->
+    <section class="downloadtitle container pb-5">
+      <h2>Download Apache Ignite® and install in your environment. <br />Select from one of the available options.</h2>
+    </section>
+    <section class="cmtynavblock jsNavBlock cmtynavblock--downwrap">
+      <div class="container">
+        <ul class="cmtynavblock__list flexi cmtynavblock--down">
+          <li><a class="cmtynavblock__active" href="#source">Source Releases</a></li>
+          <li><a href="#binary">Binary Releases</a></li>
+          <li>
+            <a href="#docker">Docker and <br />Cloud Images</a>
+          </li>
+          <li><a href="#git">Git Repository</a></li>
+          <li><a href="#extensions">Extensions</a></li>
+          <li><a href="#party3rd">3rd Party Binaries </a></li>
+        </ul>
+      </div>
+    </section>
+    <!-- /.cmtynavblock-->
+    <section class="download-src container" id="source">
+      <div class="capstext pb-5">SOURCE RELEASES</div>
+      <div class="downtable__wrap">
+        <table class="downtable">
+          <tr>
+            <th class="downtable1">Version</th>
+            <th class="downtable2">Docs</th>
+            <th class="downtable3">Release Notes</th>
+            <th class="downtable4">Date</th>
+            <th class="downtable5">
+              <span>Source</span>
+              <div class="downtable__meny jsDownTablePopUp">
+                <button class="downtable__button"></button>
+                <div class="downtable__popup"><a href="#">JSON</a><a href="#">HTML</a><a href="#">CSV</a><a href="#">XLS</a><a href="#">PDF</a></div>
+              </div>
+            </th>
+          </tr>
+          <tbody>
+            <tr>
+              <td>3.0.0 (Alpha 3)</td>
+              <td><a href="https://ignite.apache.org/docs/3.0.0-alpha" target="_blank">guide</a></td>
+              <td></td>
+              <td>2021-10-18</td>
+              <td>
+                <a class="sourcelink" href="https://downloads.apache.org/ignite/3.0.0-alpha3/apache-ignite-3.0.0-alpha3-src.zip" target="_blank">apache-ignite-3.0.0-alpha3-src.zip</a> (<a
+                  href="https://downloads.apache.org/ignite/3.0.0-alpha3/apache-ignite-3.0.0-alpha3-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://downloads.apache.org/ignite/3.0.0-alpha3/apache-ignite-3.0.0-alpha3-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.11.0 (latest)</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.11.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.11.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://dlcdn.apache.org//ignite/2.11.0/apache-ignite-2.11.0-src.zip" target="_blank">apache-ignite-2.11.0-src.zip</a> (<a
+                  href="https://dlcdn.apache.org//ignite/2.11.0/apache-ignite-2.11.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://dlcdn.apache.org//ignite/2.11.0/apache-ignite-2.11.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.10.0</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.9.1</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.9.0</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.8.1</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.8.0</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.7.6</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+          </tbody>
+        </table>
+      </div>
+      <div class="download-src__bottom flexi pt-5">
+        <div class="download-src__left">
+          <p>
+            If you are looking for an earlier version of Apache Ignite, please find it in the archive. If you encounter a problem with the selected mirror, please choose another one. If primary mirrors are not reachable, switch to backup
+            servers added to the end of the list.
+          </p>
+        </div>
+        <div class="download-src__right">
+          <div class="download-choser flexi">
+            <div class="download-choser__label">Selected mirror:</div>
+            <div class="download-choser__select flexi">
+              <select class="jsDownloadDomenSelect" name="download_domain">
+                <option value="https://dlcdn.apache.org">https://dlcdn.apache.org</option>
+                <option value="https://dlcdn.apache.org">https://dlcdn.apache.org</option></select
+              ><a class="download-choser__button" href="#"> Change</a>
+            </div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.download-src-->
+    <section class="download-bin container" id="binary">
+      <div class="capstext">BINARY RELEASES</div>
+      <div class="download-bin__header pt-4 pb-5">
+        <p>
+          Binary release packages are provided for your convenience and not considered as primary release artifacts of the ASF. It's recommended to verify a release downloadable, following <a href="#verification">this guidelines.</a> For
+          more information about Apache release policy see <a href="http://www.apache.org/dev/release.html#what" target="_blank">What is a Release?</a>
+        </p>
+      </div>
+      <div class="downtable__wrap">
+        <table class="downtable">
+          <tr>
+            <th class="downtable1">Version</th>
+            <th class="downtable2">Docs</th>
+            <th class="downtable3">Release Notes</th>
+            <th class="downtable4">Date</th>
+            <th class="downtable5">
+              <span>Source</span>
+              <div class="downtable__meny jsDownTablePopUp">
+                <button class="downtable__button"></button>
+                <div class="downtable__popup"><a href="#">JSON</a><a href="#">HTML</a><a href="#">CSV</a><a href="#">XLS</a><a href="#">PDF</a></div>
+              </div>
+            </th>
+          </tr>
+          <tbody>
+            <tr>
+              <td>3.0.0 (Alpha 3)</td>
+              <td><a href="https://ignite.apache.org/docs/3.0.0-alpha" target="_blank">guide</a></td>
+              <td></td>
+              <td>2021-10-18</td>
+              <td>
+                <a class="sourcelink" href="https://downloads.apache.org/ignite/3.0.0-alpha3/apache-ignite-3.0.0-alpha3-src.zip" target="_blank">apache-ignite-3.0.0-alpha3-src.zip</a> (<a
+                  href="https://downloads.apache.org/ignite/3.0.0-alpha3/apache-ignite-3.0.0-alpha3-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://downloads.apache.org/ignite/3.0.0-alpha3/apache-ignite-3.0.0-alpha3-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.11.0 (latest)</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.11.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.11.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://dlcdn.apache.org//ignite/2.11.0/apache-ignite-2.11.0-src.zip" target="_blank">apache-ignite-2.11.0-src.zip</a> (<a
+                  href="https://dlcdn.apache.org//ignite/2.11.0/apache-ignite-2.11.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://dlcdn.apache.org//ignite/2.11.0/apache-ignite-2.11.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.10.0</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.9.1</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.9.0</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.8.1</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.8.0</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.7.6</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+          </tbody>
+        </table>
+      </div>
+      <!-- /.downtable__wrap-->
+      <p class="pt-5">f you are looking for previous release versions of Apache Ignite, please have a look in the <a href="https://archive.apache.org/dist/ignite" target="_blank">archive</a>.</p>
+    </section>
+    <!-- /.download-bin-->
+    <section class="downloadslim container">
+      <h3 class="h5 pb-2">Slim binary releases</h3>
+      <div class="downtable__wrap">
+        <table class="downtable">
+          <tr>
+            <th class="downtable1">Version</th>
+            <th class="downtable2">Docs</th>
+            <th class="downtable3">Release Notes</th>
+            <th class="downtable4">Date</th>
+            <th class="downtable5">
+              <span>Source</span>
+              <div class="downtable__meny jsDownTablePopUp">
+                <button class="downtable__button"></button>
+                <div class="downtable__popup"><a href="#">JSON</a><a href="#">HTML</a><a href="#">CSV</a><a href="#">XLS</a><a href="#">PDF</a></div>
+              </div>
+            </th>
+          </tr>
+          <tbody>
+            <tr>
+              <td>3.0.0 (Alpha 3)</td>
+              <td><a href="https://ignite.apache.org/docs/3.0.0-alpha" target="_blank">guide</a></td>
+              <td></td>
+              <td>2021-10-18</td>
+              <td>
+                <a class="sourcelink" href="https://downloads.apache.org/ignite/3.0.0-alpha3/apache-ignite-3.0.0-alpha3-src.zip" target="_blank">apache-ignite-3.0.0-alpha3-src.zip</a> (<a
+                  href="https://downloads.apache.org/ignite/3.0.0-alpha3/apache-ignite-3.0.0-alpha3-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://downloads.apache.org/ignite/3.0.0-alpha3/apache-ignite-3.0.0-alpha3-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.11.0 (latest)</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.11.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.11.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://dlcdn.apache.org//ignite/2.11.0/apache-ignite-2.11.0-src.zip" target="_blank">apache-ignite-2.11.0-src.zip</a> (<a
+                  href="https://dlcdn.apache.org//ignite/2.11.0/apache-ignite-2.11.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://dlcdn.apache.org//ignite/2.11.0/apache-ignite-2.11.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.10.0</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.9.1</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.9.0</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.8.1</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.8.0</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.7.6</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+          </tbody>
+        </table>
+      </div>
+    </section>
+    <!-- /.downloadslim-->
+    <section class="download-docker container" id="docker">
+      <h3 class="capstext pb-5">DOCKER AND CLOUD IMAGES</h3>
+      <div class="downtable__wrap">
+        <table class="downtable">
+          <tr>
+            <th class="downtable1">Version</th>
+            <th class="downtable2">Docs</th>
+            <th class="downtable3">Release Notes</th>
+            <th class="downtable4">Date</th>
+            <th class="downtable5">
+              <span>Source</span>
+              <div class="downtable__meny jsDownTablePopUp">
+                <button class="downtable__button"></button>
+                <div class="downtable__popup"><a href="#">JSON</a><a href="#">HTML</a><a href="#">CSV</a><a href="#">XLS</a><a href="#">PDF</a></div>
+              </div>
+            </th>
+          </tr>
+          <tbody>
+            <tr>
+              <td>3.0.0 (Alpha 3)</td>
+              <td><a href="https://ignite.apache.org/docs/3.0.0-alpha" target="_blank">guide</a></td>
+              <td></td>
+              <td>2021-10-18</td>
+              <td>
+                <a class="sourcelink" href="https://downloads.apache.org/ignite/3.0.0-alpha3/apache-ignite-3.0.0-alpha3-src.zip" target="_blank">apache-ignite-3.0.0-alpha3-src.zip</a> (<a
+                  href="https://downloads.apache.org/ignite/3.0.0-alpha3/apache-ignite-3.0.0-alpha3-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://downloads.apache.org/ignite/3.0.0-alpha3/apache-ignite-3.0.0-alpha3-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.11.0 (latest)</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.11.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.11.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://dlcdn.apache.org//ignite/2.11.0/apache-ignite-2.11.0-src.zip" target="_blank">apache-ignite-2.11.0-src.zip</a> (<a
+                  href="https://dlcdn.apache.org//ignite/2.11.0/apache-ignite-2.11.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://dlcdn.apache.org//ignite/2.11.0/apache-ignite-2.11.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.10.0</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.9.1</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.9.0</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.8.1</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.8.0</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+            <tr>
+              <td>2.7.6</td>
+              <td><a href="https://ignite.apache.org/docs/latest" target="_blank">guide</a><a href="https://ignite.apache.org/releases/2.10.0/javadoc/" target="_blank">javadoc</a></td>
+              <td><a href="https://ignite.apache.org/releases/2.10.0/release_notes.html" target="_blank">release notes</a></td>
+              <td>2021-09-17</td>
+              <td>
+                <a class="sourcelink" href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip" target="_blank">apache-ignite-2.10.0-src.zip</a> (<a
+                  href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.asc"
+                  target="_blank"
+                  >pgp</a
+                ><a href="https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip.sha512" target="_blank">sha512</a>)
+              </td>
+            </tr>
+          </tbody>
+        </table>
+      </div>
+    </section>
+    <!-- /.download-docker-->
+    <section class="downverify container pt-5" id="verify">
+      <h3 class="h5">How to verify</h3>
+      <div class="downverify__wrap flexi pt-4">
+        <div class="downverify__left">
+          <p>
+            The PGP signatures can be verified using PGP or GPG. First download the <a href="https://downloads.apache.org/ignite/KEYS" target="_blank">Apache Ignite KEYS</a> file as well as the .asc signature files for the desired release
+            version. Make sure you get these files from the main distribution directory, rather than from a mirror. Then verify the signatures.
+          </p>
+        </div>
+        <aside class="downverify__right">
+          <p>Please check <a href="https://www.apache.org/info/verification.html" target="_blank">How to Verify Downloaded Files</a> for more information on how and why you should verify Apache Ignite releases.</p>
+          <downverify class="downverify__code"
+            ><p class="pb-1">% gpg --import KEYS</p>
+            <p>% gpg --verify apache-ignite-2.9.1-src.zip.asc apache-ignite-2.9.1-src.zip</p></downverify
+          >
+        </aside>
+      </div>
+    </section>
+    <!-- /.downverify-->
+    <section class="downfooter container" id="git">
+      <p class="capstext pb-3">GIT REPOSITORY</p>
+      <pre class="nativecode__codebox nomargin"><code class="bash">$ git clone https://gitbox.apache.org/repos/asf/ignite
+</code></pre>
+      <div class="downfooter__spacer pt-5 pb-5"></div>
+      <p class="capstext pb-3" id="extensions">EXTENSIONS</p>
+      <pre class="nativecode__codebox nomargin"><code class="xml">&lt;dependency&gt;
+    &lt;groupId&gt;org.apache.ignite&lt;/groupId&gt;
+    &lt;artifactId&gt;ignite-spring-boot-autoconfigure-ext&lt;/artifactId&gt;
+    &lt;version&gt;1.0.0&lt;/version&gt;
+&lt;/dependency&gt;
+&lt;dependency&gt;
+    &lt;groupId&gt;org.apache.ignite&lt;/groupId&gt;
+    &lt;artifactId&gt;ignite-spring-boot-thin-client-autoconfigure-ext&lt;/artifactId&gt;
+    &lt;version&gt;1.0.0&lt;/version&gt;
+&lt;/dependency&gt;</code></pre>
+    </section>
+    <section class="party3rd container" id="party3rd">
+      <p class="capstext">3RD PARTY BINARIES</p>
+      <div class="party3rd__wrap pt-5 flexi">
+        <div class="party3rd__left">
+          <p class="pb-2">This is a list of 3rd party binary packages based on Apache Ignite. The Apache Ignite project does not endorse or maintain any 3rd party binary packages.</p>
+          <p>
+            <a href="https://www.gridgain.com/resources/download#communityEdition" target="_blank">GridGain Community Edition</a> is a binary build of Apache Ignite created by GridGain, which includes optional LGPL dependencies, such as
+            Hibernate L2 cache integration and Geospatial Indexing, as well as bug fixes and features which may be included into the future official Apache Ignite releases.
+          </p>
+        </div>
+        <div class="party3rd__right">
+          <p>GridGain also provides his own <a href="http://www.gridgainsystems.com/nexus/content/repositories/external" target="_blank">GridGain Maven Repository</a> containing Apache Ignite LGPL artifacts such as ignite-hibernate.</p>
+          <p>Please note that artifacts located at GridGain Maven Repository provided for convenience and are NOT official Apache Ignite artifacts.</p>
+          <p>If you would like to provide your own edition of Apache Ignite here, please send email to <a href="mailto:dev@ignite.apache.org">Ignite dev list.</a></p>
+        </div>
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/events.html b/public/events.html
new file mode 100644
index 0000000..9a99faa
--- /dev/null
+++ b/public/events.html
@@ -0,0 +1,376 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>Events | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/events.css" />
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="eventhero">
+      <div class="container">
+        <div class="eventhero__main">
+          <h2 class="h2">
+            Join The Apache Ignite <br />
+            Community At&nbsp;Conferences, <br />
+            Summits And Other Events
+          </h2>
+          <div class="h5 pt-3">
+            The community meets online and offline regularly. <br />
+            Join our meetup groups and events to learn from <br />Ignite experts or to share your Ignite experience.
+          </div>
+        </div>
+        <img class="eventhero__img" src="/img/events/b1-mainpic.svg" alt="Join the Apache Ignite Community at Conferences, Summits and Other Events" />
+      </div>
+    </section>
+    <!-- /.eventhero-->
+    <section class="cmtynavblock">
+      <div class="container">
+        <ul class="cmtynavblock__list flexi">
+          <li><a class="cmtynavblock__active" href="#summit"> Ignite Summit</a></li>
+          <li><a href="#meetups">Meetups Worldwide</a></li>
+          <li><a href="#upcoming">Upcoming Events</a></li>
+          <li><a href="#past">Past Events</a></li>
+        </ul>
+      </div>
+    </section>
+    <!-- /.cmtynavblock-->
+    <section class="event-featured container">
+      <p class="capstext">Featured Event</p>
+      <a class="event-featured__banner pt-5" href="#"><div class="event-featured__placeholder" style="background: #e8f2fa; height: 340px"></div></a>
+    </section>
+    <!-- /.event-featured-->
+    <section class="evsummit container" id="summit">
+      <div class="evsummit__date flexi">
+        <div class="evsummit__day">16</div>
+        <div class="evsummit__month h5">NOVEMBER <br />2021</div>
+      </div>
+      <div class="evsummit__info flexi pt-5">
+        <div class="evsummit__logo"><img src="/img/events/b2-summit.svg" alt="" /></div>
+        <div class="evsummit__descr">
+          <h3 class="h3">Apache Ignite Summit</h3>
+          <p class="h5 pt-2">
+            This virtual conference will feature speakers from industry-leading companies <br />
+            and hundreds of participants from all over the world.
+          </p>
+        </div>
+      </div>
+      <div class="evsummit__blocks pt-5 flexi">
+        <a class="evsummblock evsummblock--speaker" href="#"
+          ><p class="h4 evsummblock__title">Become a speaker</p>
+          <p class="fz20 pt-1x evsummblock__descr">Submit a talk by October 15</p>
+          <p class="evsummblock__listtitle pt-4"><strong>We are looking for:</strong></p>
+          <ul class="evsummblock__list dashlist pt-1">
+            <li>Ignite cloud-related deployment stories</li>
+            <li>technical deep dives</li>
+            <li>integration experiences</li>
+          </ul></a
+        ><a class="evsummblock evsummblock--join" href="#"
+          ><p class="h4 evsummblock__title">Join Summit online</p>
+          <p class="fz20 pt-1x evsummblock__descr">
+            Become a&nbsp;part of&nbsp;a&nbsp;true community event and learn more about up-to-date<br />
+            in-memory computing solutions.
+          </p></a
+        >
+      </div>
+    </section>
+    <!-- /.evsummit-->
+    <section class="event-planet" id="meetups">
+      <div class="container">
+        <div class="event-planet__wrap flexi">
+          <div class="event-planet__main">
+            <h3 class="h3 pb-1">Apache Ignite Meetups Worldwide</h3>
+            <p class="h5 pt-5">Meet the community&nbsp;&mdash; developers, experts, and practitioners&nbsp;&mdash; face-to-face, virtually, or&nbsp;onsite in&nbsp;your city.</p>
+          </div>
+          <div class="event-planet__pic"><img src="/img/events/b4-world.svg" alt="" /></div>
+        </div>
+      </div>
+    </section>
+    <!-- /.event-planet-->
+    <section class="event-virtual container">
+      <div class="eventvirt flexi">
+        <div class="eventvirt__left">
+          <h3 class="h4">Virtual Apache Ignite Meetup</h3>
+          <p class="pt-2">Join Ignite users, developers, committers, contributors, and architects from all over the world and&nbsp;get access to&nbsp;the online-talks and presentations by&nbsp;Apache Ignite experts and practitioners.</p>
+        </div>
+        <div class="eventvirt__right"><a class="button" href="#">Join Virtual Meetup</a></div>
+      </div>
+      <div class="event-virtbot flexi">
+        <div class="event-virtbot__col">
+          <h4 class="h4">Recordings Of Past Meetups</h4>
+          <p class="pt-2">Find a collection of past Virtual Apache Ignite Meetup <br />presentations, talks, and webinars.</p>
+          <div class="event-recording pb-2">
+            <a class="event-recorditem videoscr glightbox" href="#"><div class="event-recpic" style="border-radius: 10px; background: #f6f6f6"></div></a
+            ><a class="event-recorditem videoscr glightbox" href="#"><div class="event-recpic" style="border-radius: 10px; background: #f6f6f6"></div></a
+            ><a class="event-recorditem videoscr glightbox" href="#"><div class="event-recpic" style="border-radius: 10px; background: #f6f6f6"></div></a>
+          </div>
+          <a class="event-recbutton button button--shadow" href="https://www.youtube.com/playlist?list=PLMc7NR20hA-LQ0GR1QW5SDQflMOuPUqDQ" target="_blank"
+            ><i
+              ><svg width="9" height="10" viewBox="0 0 9 10" fill="none" xmlns="http://www.w3.org/2000/svg">
+                <path d="M8.71423 4.99993L0.142805 9.94865L0.142805 0.0512134L8.71423 4.99993Z" /></svg></i
+            ><span>Watch Virtual Meetup videos </span></a
+          >
+        </div>
+        <div class="event-virtbot__col">
+          <h4 class="h4">Upcoming Virtual Meetup</h4>
+          <p class="pt-2 event-virtbot__gray">November 16, 2021</p>
+          <div class="event-dynamicsect"></div>
+          <a class="button button--shadow event-recmorebutton" href="https://www.meetup.com/ru-RU/Apache-Ignite-Virtual-Meetup/events/280383112/" target="_blank">Learn more</a>
+        </div>
+      </div>
+    </section>
+    <!-- /.event-virtual-->
+    <section class="eventyoucity container">
+      <h2 class="h4">Apache Ignite Meetups In Your City</h2>
+      <div class="eventyoucity__wrap pt-5">
+        <article class="eventyoucity__item">
+          <div class="eventyoucity__icon"><img src="/img/events/flag-uk.svg" alt="" /></div>
+          <div class="eventyoucity__town h5"><strong>London</strong><span>Apache Ignite Meetup</span></div>
+          <div class="eventyoucity__action">
+            <a class="button button--shadow" href="#"><img src="/img/events/icon-plus.svg" alt="" /><span>Join </span></a>
+          </div>
+        </article>
+        <article class="eventyoucity__item">
+          <div class="eventyoucity__icon"><img src="/img/events/flag-ru.svg" alt="" /></div>
+          <div class="eventyoucity__town h5"><strong>St.Petersburg</strong><span>Apache Ignite Meetup</span></div>
+          <div class="eventyoucity__action">
+            <a class="button button--shadow" href="#"><img src="/img/events/icon-plus.svg" alt="" /><span>Join </span></a>
+          </div>
+        </article>
+        <article class="eventyoucity__item">
+          <div class="eventyoucity__icon"><img src="/img/events/flag-ru.svg" alt="" /></div>
+          <div class="eventyoucity__town h5"><strong>Moscow</strong><span>Apache Ignite Meetup</span></div>
+          <div class="eventyoucity__action">
+            <a class="button button--shadow" href="#"><img src="/img/events/icon-plus.svg" alt="" /><span>Join</span></a>
+          </div>
+        </article>
+        <article class="eventyoucity__last">
+          <p class="fz20 pb-3">Start an onsite Apache Ignite Meetup in your city.</p>
+          <small>Take the first step.</small><small>Send us a note to <br /><a href="mailto:dev@ignite.apache.org">dev@ignite.apache.org</a> <br />and we'll see what can be done.</small>
+        </article>
+      </div>
+    </section>
+    <!-- /.eventyoucity-->
+    <section class="eventupcoming container" id="upcoming">
+      <div class="capstext pb-1">Upcoming Events Schedule</div>
+      <div class="eventupcoming__wrap pt-4">
+        <h2 class="h4 eventupcoming__head pb-5">Online events (2)</h2>
+        <article class="eventcomingitem flexi">
+          <div class="eventcomingitem__left">
+            <p class="eventcomingitem__num">21</p>
+            <p class="eventcomingitem__month">SEPTEMBER</p>
+            <p class="eventcomingitem__year pt-3">2021</p>
+          </div>
+          <div class="eventcomingitem__main">
+            <p class="eventcomingitem__title h5">Distributed Java Databases Under the Hood: Main Components and Interactions Between Them</p>
+            <p class="eventcomingitem__descr pt-1">We will describe the minimal architecture of distributed data storage—the main components and how these components work together.</p>
+            <a class="eventcomingitem__more" href="#"> Learn more details</a>
+          </div>
+          <div class="eventcomingitem__right">
+            <div class="eventcomingitem__mic"><div class="eventcomingitem__speaker">Valentin Kulichenko</div></div>
+            <div class="eventcomingitem__loc">
+              <div class="eventcomingitem__locblock"><img src="/img/events/icon-pero.png" alt="" /></div>
+              <div class="eventcomingitem__camera">Online event</div>
+            </div>
+          </div>
+        </article>
+        <!-- /.eventcomingitem-->
+        <article class="eventcomingitem flexi">
+          <div class="eventcomingitem__left">
+            <p class="eventcomingitem__num">23</p>
+            <p class="eventcomingitem__month">SEPTEMBER</p>
+            <p class="eventcomingitem__year pt-3">2021</p>
+          </div>
+          <div class="eventcomingitem__main">
+            <p class="eventcomingitem__title h5">Apache Ignite Extensions – Modularization</p>
+            <p class="eventcomingitem__descr pt-1">Apache Ignite Extensions to allow Apache Ignite codebase host core modules capabilities and migrate 3rd party integrations in a separate repository.</p>
+            <a class="eventcomingitem__more" href="#">Learn more details</a>
+          </div>
+          <div class="eventcomingitem__right">
+            <div class="eventcomingitem__mic"><div class="eventcomingitem__speaker">Saikat Maitra</div></div>
+            <div class="eventcomingitem__loc">
+              <div class="eventcomingitem__locblock"><img src="/img/events/icon-pero.png" alt="" /></div>
+              <div class="eventcomingitem__camera">Online event</div>
+            </div>
+          </div>
+        </article>
+        <!-- /.eventcomingitem-->
+      </div>
+      <div class="eventupcoming__wrap pt-4">
+        <h2 class="h4 py-4">Offline events (4)</h2>
+        <article class="eventcomingitem flexi">
+          <div class="eventcomingitem__left">
+            <p class="eventcomingitem__num">20</p>
+            <p class="eventcomingitem__month">SEPTEMBER</p>
+            <p class="eventcomingitem__year pt-3">2021</p>
+          </div>
+          <div class="eventcomingitem__main">
+            <div class="eventcomingitem__complextitle flexi">
+              <img class="eventcomingitem__logo" src="/img/events/content/event1.png" alt="" />
+              <p class="eventcomingitem__title h5">Apache Ignite. Now with CDC!</p>
+            </div>
+            <p class="eventcomingitem__descr pt-2">Nikolay Izhikov, Apache Ignite PMC, will introduce the audience to Change Data Capture and share how it's organized in Apache Ignite</p>
+            <a class="eventcomingitem__more" href="#">Learn more details</a>
+          </div>
+          <div class="eventcomingitem__right">
+            <div class="eventcomingitem__mic"><div class="eventcomingitem__speaker">Nikolay Izhikov</div></div>
+            <div class="eventcomingitem__loc">
+              <div class="eventcomingitem__locblock">Saint-Petersburg, Russia</div>
+              <div class="eventcomingitem__camera">Online event</div>
+            </div>
+          </div>
+        </article>
+        <!-- /.eventcomingitem-->
+        <article class="eventcomingitem flexi">
+          <div class="eventcomingitem__left">
+            <p class="eventcomingitem__num">23</p>
+            <p class="eventcomingitem__month">SEPTEMBER</p>
+            <p class="eventcomingitem__year pt-3">2021</p>
+          </div>
+          <div class="eventcomingitem__main">
+            <div class="eventcomingitem__complextitle flexi">
+              <img class="eventcomingitem__logo" src="/img/events/content/event2.png" alt="" />
+              <p class="eventcomingitem__title h5">Organization of testing distributed systems on the example of a real Java project</p>
+            </div>
+            <p class="eventcomingitem__descr pt-2">
+              First offline meeting in 2021! Ignite Committers will talk about recently updated features. Dmitry Gorchakov will introduce the case – building a distributed system of "super services" on Apache Ignite.
+            </p>
+            <a class="eventcomingitem__more" href="#">Learn more details</a>
+          </div>
+          <div class="eventcomingitem__right">
+            <div class="eventcomingitem__mic">
+              <div class="eventcomingitem__speaker">
+                Ivan Bessonov<br />
+                Maxim Muzafarov<br />
+                Dmitry Gorchakov
+              </div>
+            </div>
+            <div class="eventcomingitem__loc"><div class="eventcomingitem__locblock">Moscow, Russia</div></div>
+          </div>
+        </article>
+        <!-- /.eventcomingitem-->
+      </div>
+    </section>
+    <!-- /.eventupcoming-->
+    <section class="eventspast container" id="past">
+      <h3 class="capstext pb-5">Past Events</h3>
+      <div class="eventspast__tablinks flexi">
+        <button class="eventpast__link active" data-tablink="e2021">2021</button><button class="eventpast__link" data-tablink="e2021">2020</button><button class="eventpast__link" data-tablink="e2021">2019</button
+        ><button class="eventpast__link" data-tablink="e2021">2018</button><button class="eventpast__link" data-tablink="e2021">2017</button><button class="eventpast__link" data-tablink="e2021">2016</button
+        ><button class="eventpast__link" data-tablink="e2021">2015</button><button class="eventpast__link" data-tablink="e2021">2014</button>
+      </div>
+      <div class="eventspast__tabs">
+        <div class="eventspast__tab">
+          <article class="eventcard">
+            <div class="eventcard__date">September 2, 2021</div>
+            <h3 class="h5 pt-3">Building a low-code BaaS platform on Apache Ignite</h3>
+            <div class="eventcard__info pt-2">
+              <div class="eventcard__speaker">Courtney Robinson<small>(Hypi, co-founder and CEO)</small></div>
+              <div class="eventcard__loc">Virtual Apache Ignite Meetup</div>
+            </div>
+            <a class="eventcard__button button button--shadow">Learn more details</a>
+          </article>
+          <article class="eventcard">
+            <div class="eventcard__date">September 2, 2021</div>
+            <h3 class="h5 pt-3">Apache Ignite 3.0.0 Alpha 2 Build Community Gathering</h3>
+            <div class="eventcard__info pt-2">
+              <div class="eventcard__speaker eventcard__speaker--one">Valentin Kulichenko</div>
+              <div class="eventcard__loc">Virtual Apache Ignite Meetup</div>
+            </div>
+            <a class="eventcard__button button button--shadow">Learn more details</a>
+          </article>
+          <article class="eventcard">
+            <div class="eventcard__date">June 19, 2021</div>
+            <h3 class="h5 pt-3">Apache Ignite on Kubernetes</h3>
+            <div class="eventcard__info pt-2">
+              <div class="eventcard__speaker eventcard__speaker--one">Colin Capriati</div>
+              <div class="eventcard__loc">Virtual Apache Ignite Meetup</div>
+            </div>
+            <a class="eventcard__button button button--shadow">Learn more details</a>
+          </article>
+        </div>
+        <!-- /.eventspast__tab-->
+        <div class="eventspast__bottom pt-5"><a class="eventspast__more jsLoadMoreEvents" href="#"> Show more</a></div>
+      </div>
+    </section>
+    <!-- /.eventspast--><a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/faq.html b/public/faq.html
new file mode 100644
index 0000000..e174664
--- /dev/null
+++ b/public/faq.html
@@ -0,0 +1,251 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>FAQ | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/faq.css" />
+    <link rel="stylesheet" href="../css/tooling.css" />
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__blue">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo-white.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="innerhero innerhero--faq">
+      <div class="container innerhero__cont">
+        <div class="innerhero__main innerhero__main--long">
+          <h1 class="h1 innerhero__h1">Frequently Asked Questions <br />About Apache Ignite</h1>
+          <div class="innerhero__descr pt-5 h4">
+            Ignite’s rich feature set enables it for a myriad of use cases. <br />
+            Is Ignite a cache, transactional database, key-value store? <br />Find the answers below.
+          </div>
+        </div>
+        <img class="innerhero__pic innerhero__pic--faq" src="/img/faq/hero.svg" alt="Frequently asked questions" />
+      </div>
+    </section>
+    <!-- /.innerhero-->
+    <section class="faqabout container">
+      <div class="capstext">Apache Ignite FAQs</div>
+      <div class="faqabout__wrap flexi pt-5">
+        <div class="faqabout__left">
+          <h2 class="h4 pb-2">What Is In-memory Computing?</h2>
+          <p>In-memory computing is a software and data-processing technique that stores data sets in memory across a cluster of interconnected nodes. An average speed performance is 10-1000x faster than in disk-based systems.</p>
+          <p>
+            In-memory computing software includes a distributed in-memory store with APIs and libraries optimized for high-performance data processing. Each cluster node (physical or virtual machine) contributes its available memory space
+            with CPU cores to the total capacity of the cluster.
+          </p>
+          <p>
+            An application interacts with the cluster as a single unit, letting the in-memory computing software shield and manage all the internals related to inter-node communications, data distribution, and queries processing. The
+            cluster scales linearly and horizontally to meet the data volume and throughput goals of the applications.
+          </p>
+        </div>
+        <aside class="faqabout__right">
+          <div class="faqabout__num h3">10-1000x</div>
+          <p class="h5">performance increase</p>
+          <div class="faqabout__rightbot h5">Unlimited horizontal scalability</div>
+        </aside>
+      </div>
+    </section>
+    <!-- /.faqabout-->
+    <section class="faqfeats container">
+      <div class="h4 faqfeats__title">Apache Ignite Belongs to&nbsp;The In-memory <br />Computing Category:</div>
+      <div class="faqfeats__wrap flexi pt-5">
+        <article class="faqfeat pt-1">
+          <div class="faqfeat__iconwrap flexi"><img src="/img/faq/icon-faq1.svg" alt="" /></div>
+          <div class="faqfeat__text pt-2">Build real-time and event-driven solutions that process data with in-memory speed</div>
+        </article>
+        <article class="faqfeat pt-1">
+          <div class="faqfeat__iconwrap flexi"><img src="/img/faq/icon-faq2.svg" alt="" /></div>
+          <div class="faqfeat__text pt-2">Scale up&nbsp;and out across available memory and disk capacity</div>
+        </article>
+        <article class="faqfeat pt-1">
+          <div class="faqfeat__iconwrap flexi"><img src="/img/faq/icon-faq3.svg" alt="" /></div>
+          <div class="faqfeat__text pt-2">Take advantage of&nbsp;built-in SQL, high-performance computing and real-time processing APIs</div>
+        </article>
+      </div>
+    </section>
+    <!-- /.faqfeats-->
+    <section class="faqboxs container">
+      <article class="faqbox cardsimple">
+        <div class="faqbox__itemtitle h5">Is Ignite a Distributed Cache?</div>
+        <div class="faqbox__anwser h5 pt-3">Yes</div>
+        <div class="faqbox__text pt-3">
+          <p>When Ignite native persistence is&nbsp;disabled, Ignite can function as&nbsp;a&nbsp;distributed in-memory cache with support distributed ACID&nbsp;transactions, SQL queries, high-performance computing APIs, and more.</p>
+        </div>
+        <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="/use-cases/in-memory-cache.html">Learn more: In-Memory Cache</a></div>
+      </article>
+      <article class="faqbox cardsimple">
+        <div class="faqbox__itemtitle h5">Is Ignite a Distributed Database?</div>
+        <div class="faqbox__anwser h5 pt-3">Yes</div>
+        <div class="faqbox__text pt-3">
+          <p>Ignite is&nbsp;a&nbsp;distributed database for high-performance computing with in-memory speed.</p>
+          <p>Data in&nbsp;Ignite is&nbsp;stored in-memory and/or on-disk, and is&nbsp;either partitioned or&nbsp;replicated across a&nbsp;cluster of&nbsp;multiple nodes. This provides scalability, performance, and resiliency.</p>
+        </div>
+        <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="/use-cases/in-memory-data-grid.html">Learn more: In-Memory Database</a></div>
+      </article>
+      <article class="faqbox cardsimple">
+        <div class="faqbox__itemtitle h5">Is Ignite an In-memory Database?</div>
+        <div class="faqbox__anwser h5 pt-3">Yes</div>
+        <div class="faqbox__text pt-3">
+          <p>
+            Ignite multi-tier storage supports both in-memory and disk tiers. You can always disable the native persistence and use Ignite as&nbsp;a&nbsp;distributed in-memory database, with support for SQL, transactions and other APIs.
+          </p>
+        </div>
+        <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="/use-cases/in-memory-database.html">Learn more: In-Memory Database</a></div>
+      </article>
+      <article class="faqbox cardsimple">
+        <div class="faqbox__itemtitle h5">Is Ignite an In-memory Data Grid?</div>
+        <div class="faqbox__anwser h5 pt-3">Yes</div>
+        <div class="faqbox__text pt-3">
+          <p>Ignite is&nbsp;a&nbsp;full-featured distributed data grid. As&nbsp;a&nbsp;grid, Ignite can automatically integrate with and accelerate any 3rd party databases, including any RDBMS or&nbsp;NoSQL stores.</p>
+        </div>
+        <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="/use-cases/in-memory-data-grid.html">Learn more: In-Memory Data Grid</a></div>
+      </article>
+      <article class="faqbox cardsimple">
+        <div class="faqbox__itemtitle h5">Is Ignite an SQL Database?</div>
+        <div class="faqbox__anwser h5 pt-3">Not fully</div>
+        <div class="faqbox__text pt-3">
+          <p>Although Ignite supports SQL natively, there are differences in&nbsp;how Ignite handles constraints and indexes.</p>
+          <p>Ignite supports primary and secondary indexes, however the uniqueness can only be&nbsp;enforced for the primary indexes. Ignite also does not support foreign key constraints at&nbsp;the moment.</p>
+        </div>
+        <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="/use-cases/in-memory-database.html">Learn more: In-Memory Database</a></div>
+      </article>
+      <article class="faqbox cardsimple">
+        <div class="faqbox__itemtitle h5">Is Ignite a Disk- or Memory-Only Storage?</div>
+        <div class="faqbox__anwser h5 pt-3">Both</div>
+        <div class="faqbox__text pt-3">
+          <p>Native persistence in&nbsp;Ignite can be&nbsp;turned on&nbsp;and off. This allows Ignite to&nbsp;store data sets bigger than can fit in&nbsp;the available memory.</p>
+          <p>
+            Essentially, smaller operational data sets can be&nbsp;stored in-memory only, and larger data sets that do&nbsp;not fit in&nbsp;memory can be&nbsp;stored on&nbsp;disk, using memory as&nbsp;a&nbsp;caching layer for better
+            performance.
+          </p>
+        </div>
+        <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="/arch/native-persistence.html">Learn more: Native Persistence</a></div>
+      </article>
+      <article class="faqbox cardsimple">
+        <div class="faqbox__itemtitle h5">Is Ignite a NoSQL Database?</div>
+        <div class="faqbox__anwser h5 pt-3">Not exactly</div>
+        <div class="faqbox__text pt-3">
+          <p>Just like other NoSQL databases, Ignite is&nbsp;highly available and horizontally scalable.</p>
+          <p>However, unlike other NoSQL databases, Ignite supports SQL and ACID transactions across multiple cluster nodes.</p>
+        </div>
+      </article>
+      <article class="faqbox cardsimple">
+        <div class="faqbox__itemtitle h5">Is Ignite a Transactional Database?</div>
+        <div class="faqbox__anwser h5 pt-3">Not fully</div>
+        <div class="faqbox__text pt-3">
+          <p>
+            ACID Transactions are supported, but only at&nbsp;key-value API level. Ignite also supports cross-partition transactions, which means that transactions can span keys residing in&nbsp;different partitions on&nbsp;different
+            servers.
+          </p>
+          <p>
+            At&nbsp;SQL level, Ignite supports atomic, but not yet transactional consistency. SQL transactions implementation is&nbsp;already
+            <a href="https://cwiki.apache.org/confluence/display/IGNITE/IEP-3%3A+Transactional+SQL" target="_blank">in&nbsp;the works</a> and will be&nbsp;released in&nbsp;Ignite&nbsp;3.
+          </p>
+        </div>
+        <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="/features/acid-transactions.html">Learn more: ACID Transactions</a></div>
+      </article>
+      <article class="faqbox cardsimple">
+        <div class="faqbox__itemtitle h5">Is Ignite a Multi-Model Database?</div>
+        <div class="faqbox__anwser h5 pt-3">Yes</div>
+        <div class="faqbox__text pt-3">
+          <p>Ignite supports both key-value and SQL for modelling and accessing data.</p>
+          <p>In&nbsp;addition, Ignite provides strong processing APIs for computing on&nbsp;distributed data.</p>
+        </div>
+        <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="/use-cases/in-memory-database.html">Learn more: In-Memory Database</a></div>
+      </article>
+      <article class="faqbox cardsimple">
+        <div class="faqbox__itemtitle h5">Is Ignite a Key-Value Store?</div>
+        <div class="faqbox__anwser h5 pt-3">Yes</div>
+        <div class="faqbox__text pt-3"><p>Ignite provides a&nbsp;feature-rich key-value API, that is&nbsp;JCache (JSR-107) compliant and supports Java, C++, .NET, and other programming languages.</p></div>
+        <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="/use-cases/key-value-store.html">Learn more: Distributed Key-Value Store</a></div>
+      </article>
+    </section>
+    <!-- /.faqboxs-->
+    <section class="toolingend">
+      <div class="container flexi">
+        <div class="toolingend__main">
+          <h2 class="toolingend__title h4">Ready to Start with Apache Ignite?</h2>
+          <p class="fz20 pt-1x">Start with our Quick Start Guides and build your first application <br />in 5-10 minutes</p>
+        </div>
+        <div class="toolingend__action"><a class="button">Build your first application</a></div>
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/features/acid-transactions.html b/public/features/acid-transactions.html
new file mode 100644
index 0000000..60ce64c
--- /dev/null
+++ b/public/features/acid-transactions.html
@@ -0,0 +1,194 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>ACID transactions | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/native-persistence.css" />
+    <link rel="stylesheet" href="../css/acid-transactions.css" />
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__blue">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo-white.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="innerhero">
+      <div class="container innerhero__cont">
+        <div class="innerhero__main">
+          <h1 class="h1 innerhero__h1">Distributed ACID <br />transactions</h1>
+          <div class="pt-2 h3">with Apache Ignite</div>
+          <div class="innerhero__descr pt-4 h5">Classical ACID transactions that let you update distributed data <br />consistently, durably and with in-memory speed</div>
+          <div class="innerhero__action"><a class="button innerhero__button" href="https://ignite.apache.org/docs/latest/index">Start Coding</a></div>
+        </div>
+        <img class="innerhero__pic innerhero__pic--acid" src="/img/features/acid/hero.svg" alt="Distributed ACID transactions" />
+      </div>
+    </section>
+    <!-- /.innerhero-->
+    <section class="acid1 container">
+      <h2 class="acid1__h2 h4">Update multiple records from different tables that span across many cluster nodes</h2>
+      <div class="acid1__wrap flexi">
+        <div class="acid1__item">
+          <div class="acid1__title fz20">Consistency</div>
+          <div class="acid1__text pt-3"><p>Ignite transactional APIs are used by&nbsp;banks to&nbsp;implement payments services that transfer money between accounts in&nbsp;real-time.</p></div>
+        </div>
+        <div class="acid1__item">
+          <div class="acid1__title fz20">Durability</div>
+          <div class="acid1__text pt-3"><p>Multi-tier storage persists changes durably to&nbsp;disk. Committed transactions always survive failures, incomplete transactions are rolled back.</p></div>
+        </div>
+        <div class="acid1__item">
+          <div class="acid1__title fz20">Fault-Tolerance</div>
+          <div class="acid1__text pt-3"><p>The transactional engine avoids inconsistencies even if&nbsp;your transaction is&nbsp;failed in&nbsp;the middle of&nbsp;a&nbsp;commit.</p></div>
+        </div>
+      </div>
+    </section>
+    <!-- /.acid1-->
+    <section class="acid2 container">
+      <h2 class="acid2__h2">To guarantee data consistency, durability and fault-<br />tolerance Ignite implements the two-phase commit protocol</h2>
+      <div class="acid2__wrap flexi pt-5">
+        <div class="acid2__main">
+          <p>In distributed systems, a transaction usually spans across multiple cluster nodes.</p>
+          <p>To handle possible distributed failures properly and avoid data inconsistencies cluster-wide, a two-phase commit protocol (2PC) is used.</p>
+          <h3 class="acid2__subtitle h5 pb-2">How ACID transactions work</h3>
+          <p>Whenever the records get updated within a&nbsp;transaction, Ignite keeps the transactional state in&nbsp;a&nbsp;local transaction map until the changes are committed.</p>
+          <p>At&nbsp;which point, the data is&nbsp;transferred to&nbsp;the participating remote nodes. Only the nodes that hold primary or&nbsp;backup copies of&nbsp;the data participate in&nbsp;the transaction.</p>
+          <p>If&nbsp;a&nbsp;transaction is&nbsp;mapped to&nbsp;a&nbsp;single node, then, Ignite optimizes the transaction execution by&nbsp;switching to&nbsp;the one-phase-commit (1PC) protocol.</p>
+        </div>
+        <aside class="acid2__right"><img class="acid2__funcimg" src="/img/features/acid/acid-func.svg" alt="" /></aside>
+      </div>
+    </section>
+    <!-- /.acid2-->
+    <section class="acid3 container pt-5">
+      <h2 class="h4 acid3__title">Records are updated consistently across <br />memory and disk tiers</h2>
+      <div class="acid3__wrap pt-5 flexi">
+        <div class="acid3__col">
+          <h3 class="h5 pb-2">Transactions with Ignite native persistence</h3>
+          <p class="fz20 acid3__collead">In case of any failure you can always recover to a consistent state</p>
+          <div class="acid3__small pt-4">
+            <p>
+              When native persistence mode is&nbsp;enabled and Apache Ignite is&nbsp;used as&nbsp;a&nbsp;database that scales beyond available memory capacity, the distributed transactions update data across memory and disk
+              in&nbsp;a&nbsp;consistent way.
+            </p>
+            <p>
+              All the changes stay durable, because they are written to&nbsp;the write-ahead log (WAL) files. It&nbsp;guarantees data consistency even if&nbsp;the cluster or&nbsp;individual nodes go&nbsp;down in&nbsp;the middle
+              of&nbsp;a&nbsp;transaction.
+            </p>
+          </div>
+          <a class="acid3__detlink" href="#" data-hideopen="acidbox"> WAL in details</a>
+          <div class="acid3__detwrap" data-hidebox="acidbox">
+            <div class="acid3__detmore">
+              <button class="acid3__close" data-hideopen="acidbox"><img src="/img/features/acid/icon-cross.svg" alt="" /></button>
+              <p>The purpose of&nbsp;the WAL is&nbsp;to&nbsp;propagate updates to&nbsp;the disk in&nbsp;the append-only mode, which is&nbsp;the fastest way to&nbsp;persist data to&nbsp;disk.</p>
+              <p class="pt-1">
+                The WAL provides a&nbsp;recovery mechanism for failure scenarios when a&nbsp;single node or&nbsp;the whole cluster goes down. A&nbsp;cluster can always be&nbsp;recovered to&nbsp;the latest successfully committed transaction.
+              </p>
+            </div>
+          </div>
+        </div>
+        <div class="acid3__col">
+          <h3 class="h5 pb-2">Transactions with external databases</h3>
+          <p class="fz20 acid3__collead">Your transactions will be updated both i&nbsp;external database and Apache Ignite</p>
+          <div class="acid3__small pt-4">
+            <p>
+              When Apache Ignite is&nbsp;used as&nbsp;a&nbsp;caching layer for an&nbsp;external database, such as&nbsp;RDBMS, transactions span the cached data in&nbsp;Ignite as&nbsp;well as&nbsp;the data persisted in&nbsp;a&nbsp;database
+              supporting transactional APIs.
+            </p>
+            <p>
+              For instance, if&nbsp;a&nbsp;relational database is&nbsp;configured as&nbsp;a&nbsp;disk tier, Ignite writes the transactional changes to&nbsp;the database before sending a&nbsp;commit message to&nbsp;participating cluster
+              nodes.
+            </p>
+            <p>This way, if&nbsp;a&nbsp;transaction fails at&nbsp;the database level, Ignite can still send the rollback message to&nbsp;the cluster nodes, keeping the data consistent across memory and disk tiers.</p>
+          </div>
+        </div>
+      </div>
+    </section>
+    <section class="native-bottom container">
+      <div class="native-bottom__grid">
+        <article class="nativebotblock">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-rocket.svg" alt="" /><span>Ready to Start?</span></h3>
+          <p class="nativebotblock__text">Create your transactional application <br />with Apache Ignite</p>
+          <a class="nativebotblock__link arrowlink" href="https://ignite.apache.org/docs/latest/key-value-api/transactions" target="_blank">Performing ACID Transactions</a>
+        </article>
+        <article class="nativebotblock nativebotblock--learn">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-docs.svg" alt="" /><span>Want to&nbsp;Learn More?</span></h3>
+          <p class="nativebotblock__text">Ignite&nbsp;3.0 advances its replication and transactional components with the support of&nbsp;the <strong>Raft consensus algorithm</strong></p>
+          <a class="nativebotblock__link arrowlink" href="https://cwiki.apache.org/confluence/display/IGNITE/IEP-61%3A+Common+Replication+Infrastructure" target="_blank">Ignite 3.0 and Raft Details</a>
+        </article>
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/features/compute-apis.html b/public/features/compute-apis.html
new file mode 100644
index 0000000..4d87787
--- /dev/null
+++ b/public/features/compute-apis.html
@@ -0,0 +1,297 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>Compute APIs | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/native-persistence.css" />
+    <link rel="stylesheet" href="../css/compute-apis.css" />
+    <link rel="stylesheet" href="../js/vendor/highlight/night-owl.css" />
+    <script src="../js/vendor/highlight/highlight.min.js"></script>
+    <script src="../js/vendor/highlight/java.min.js"></script>
+    <script src="../js/vendor/highlight/xml.min.js"></script>
+    <script src="../js/vendor/highlight/csharp.min.js"></script>
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__blue">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo-white.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="innerhero">
+      <div class="container innerhero__cont">
+        <div class="innerhero__main">
+          <div class="innerhero__pre pb-3">Apache Ignite</div>
+          <h1 class="h1 innerhero__h1">Compute APIs</h1>
+          <div class="innerhero__descr pt-2 h5">
+            Develop custom tasks in contemporary languages<br />
+            and get the logic executed over a distributed cluster
+          </div>
+          <div class="innerhero__action"><a class="button innerhero__button" href="https://ignite.apache.org/docs/latest/index">Start Coding</a></div>
+        </div>
+        <img class="innerhero__pic innerhero__pic--computeapis" src="/img/features/compute-apis/compute-hero.svg" alt="Distributed In-Memory Cache" />
+      </div>
+    </section>
+    <!-- /.innerhero-->
+    <section class="compute1 container">
+      <h2 class="compute1__h2 h4">Execute Data-Intensive And Compute-Intensive Tasks At High Speeds</h2>
+      <div class="compute1__deskr">Get an order-of-magnitude performance increase for custom complex logic:</div>
+      <div class="compute1__block flexi">
+        <div class="compute1__item">
+          <img class="compute1__icon" src="/img/features/compute-apis/icon-one.svg" alt="" />
+          <p class="compute1__text">
+            By minimizing or avoiding network<br />
+            utilization
+          </p>
+        </div>
+        <div class="compute1__item">
+          <img class="compute1__icon" src="/img/features/compute-apis/icon-two.svg" alt="" />
+          <p class="compute1__text">By executing the logic straight on the <br />cluster nodes</p>
+        </div>
+      </div>
+    </section>
+    <!-- /.compute1-->
+    <section class="compute2">
+      <div class="container">
+        <h2 class="compute2__h2">Benefits Of Apache Ignite Compute APIs</h2>
+        <div class="compute2__grid">
+          <div class="compute2item">
+            <div class="compute2-points__item fz20"></div>
+            <div class="compute2item__block">
+              <h3 class="fz20 compute2item__title">
+                Broadcast or execute<br />
+                on specific nodes
+              </h3>
+              <p class="compute2__text">
+                – Broadcast your tasks to use all<br />
+                the CPUs of your distributed cluster.
+              </p>
+              <p class="compute2__text">
+                – Or schedule the tasks for execution on a subset of the nodes based<br />
+                on custom criteria
+              </p>
+            </div>
+          </div>
+          <div class="compute2item">
+            <div class="compute2-points__item fz20"></div>
+            <div class="compute2item__block">
+              <h3 class="fz20 compute2item__title">Load balance your querie</h3>
+              <p class="compute2__text">If some of the nodes are overutilized, Ignite can automatically load-balance your computations to other nodes.</p>
+              <p class="compute2__text">
+                There are three ways to enable that:<br />
+                – Round-robin load balancing <br />– Random and weighted load balancing<br />
+                – Job stealing.
+              </p>
+            </div>
+          </div>
+          <div class="compute2item">
+            <div class="compute2-points__item fz20"></div>
+            <div class="compute2item__block">
+              <h3 class="fz20 compute2item__title">
+                Execute computations<br />
+                in a fault-tolerant fashion
+              </h3>
+              <p class="compute2__text">Some computations might take minutes or hours to complete, e.g. <em> drugs discovery or logistics simulations.</em></p>
+              <p class="compute2__text">
+                You don't need to begin from scratch if the execution fails in the middle. Restart a calculation from the point<br />
+                of failure.
+              </p>
+            </div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.compute2-->
+    <section class="nativecode container jsTabWrap">
+      <header class="blockheader blockheader--spl flexi">
+        <h2 class="h4 blockheader__left">
+          Forget about PLSQL, use<br />
+          the language you code with daily
+        </h2>
+        <div class="blockheader__right fz20">
+          <p>
+            Create tasks in the language of your choice. You don’t need<br />
+            to learn PLSQL any more.
+          </p>
+        </div>
+      </header>
+      <div class="nativecode__tabctrls flexi">
+        <a class="nativecode__link active" href="#" data-tablink="nativeTabJava">Java</a><a class="nativecode__link" href="#" data-tablink="nativeTabNET">C#/.NET</a><a class="nativecode__link" href="#" data-tablink="nativeTabCpp">C++</a>
+      </div>
+      <div class="nativecode__tabs">
+        <div class="nativecode__tab active" data-tab="nativeTabJava">
+          <pre class="nativecode__codebox"> <code class="java">// Broadcast the task to server nodes only.
+IgniteCompute compute = ignite.compute(ignite.cluster().forServers());
+
+// Each remote server node will execute the logic of the task/lambda below.
+compute.broadcast(() -> System.out.println(
+"Hello Node: " + ignite.cluster().localNode().id()));
+</code></pre>
+        </div>
+        <div class="nativecode__tab" data-tab="nativeTabNET">
+          <pre class="nativecode__codebox"> <code class="csharp">// Broadcast the task to server nodes only.
+var compute = ignite.GetCluster().ForServers().GetCompute();
+
+// Each remote server node will execute the custom PrintNodeIdAction task.
+compute.Broadcast(new PrintNodeIdAction());</code></pre>
+        </div>
+        <div class="nativecode__tab" data-tab="nativeTabCpp">
+          <pre class="nativecode__codebox"> <code class="java"> // Broadcast the task to server nodes only.
+IgniteCompute compute = ignite.compute(ignite.cluster().forServers());
+
+// Each remote server node will execute the logic of the task/lambda below.
+compute.broadcast(() -> System.out.println(
+"Hello Node: " + ignite.cluster().localNode().id()));</code></pre>
+        </div>
+      </div>
+    </section>
+    <!-- /.nativecode-->
+    <section class="compute3 container">
+      <h3 class="compute2__h2">Example Of Logic Building</h3>
+      <h2 class="compute3__h2 h4">Execute the logic in place and eliminate network impact on the performance of the calculation</h2>
+      <p class="compute3__text">Imagine that a winter storm is about to hit a highly-populated city. As a telecommunication company, you have to send a text message to 20 million residents notifying about the blizzard.</p>
+      <div class="compute4 flexi">
+        <div class="compute4__block compute4__block--bad">
+          <img class="compute4__icon" src="/img/features/icon-check-err.svg" alt="" />
+          <p class="pt-3">With the client-server approach, the company would read all 20 million records from a database to an application that needs to execute some logic and send a message to the residents eventually.</p>
+        </div>
+        <div class="compute4__block">
+          <img class="compute4__icon" src="/img/features/icon-check-ok.svg" alt="" />
+          <p class="pt-3">A much more efficient approach would be to broadcast this logic to the cluster nodes that keep data about the city's residents. The logic gets executed on those nodes only and text messages are sent from there.</p>
+          <p class="pt-3">With this technique, instead of pulling 20 million records via the network, you execute the logic in place and eliminate the network impact on the performance of the calculation.</p>
+        </div>
+      </div>
+      <div class="jsTabWrap">
+        <header class="blockheader blockheader--spl flexi"></header>
+        <div class="nativecode__tabs">
+          <div class="nativecode__tab active" data-tab="nativeTabJava">
+            <pre class="nativecode__codebox"> <code class="java">Ignite ignite = ...
+
+// NewYork ID.
+long newYorkId = 2;
+
+// Send the logic to the cluster node that stores NewYork and all its inhabitants.
+ignite.compute().affinityRun("City", newYorkId, new IgniteRunnable() {
+
+  @IgniteInstanceResource
+  Ignite ignite;
+
+  @Override
+  public void run() {
+    // Get access to the Person cache.
+    IgniteCache&#60;BinaryObject, BinaryObject&#62; people = ignite.cache("Person").withKeepBinary();
+
+
+    ScanQuery&#60;BinaryObject, BinaryObject&#62; query = new ScanQuery &#60;BinaryObject, BinaryObject&#62;();
+
+    try (QueryCursor&#60;Cache.Entry&#60;BinaryObject, BinaryObject&#62;&#62; cursor = people.query(query)) {
+      // Iteration over the local cluster node data using the scan query.
+      for (Cache.Entry&#60;BinaryObject, BinaryObject&#62; entry : cursor) {
+        BinaryObject personKey = entry.getKey();
+
+        // Pick NewYorkers only.
+        if (personKey.&#60;Long&#62;field("CITY_ID") == newYorkId) {
+          person = entry.getValue();
+
+          // Send the warning message to the person.
+
+        }
+      }
+    }
+  }
+}</code></pre>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.compute4 -->
+    <section class="native-bottom container">
+      <div class="native-bottom__grid">
+        <article class="nativebotblock">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-rocket.svg" alt="" /><span>Ready to Start?</span></h3>
+          <p class="nativebotblock__text">Start coding distributed computing APIs</p>
+          <a class="nativebotblock__link arrowlink" href="https://ignite.apache.org/docs/latest/key-value-api/transactions" target="_blank">Performing Distributed Computing </a>
+        </article>
+        <article class="nativebotblock nativebotblock--learn">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-docs.svg" alt="" /><span>Want to Learn More?</span></h3>
+          <p class="nativebotblock__text">Learn more about high-performance computing use cases and see how it works in practice</p>
+          <a class="nativebotblock__link arrowlink" href="https://ignite.apache.org/use-cases/high-performance-computing.html" target="_blank">High-Performance Computing Use-Cases</a>
+        </article>
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/features/distributed-key-value-store.html b/public/features/distributed-key-value-store.html
new file mode 100644
index 0000000..9600e06
--- /dev/null
+++ b/public/features/distributed-key-value-store.html
@@ -0,0 +1,200 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>Distributed Key-Value APIs | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/native-persistence.css" />
+    <link rel="stylesheet" href="../css/key-value-api.css" />
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__blue">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo-white.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="innerhero innerhero--keyvalue">
+      <div class="container innerhero__cont">
+        <div class="innerhero__main">
+          <div class="innerhero__pre pb-5">Apache Ignite</div>
+          <h1 class="h1 innerhero__h1">Distributed <br />Key-Value APIs</h1>
+          <div class="innerhero__descr pt-2 h5">Query your distributed data in the fastest way possible <br />with key-value APIs</div>
+          <div class="innerhero__action"><a class="button innerhero__button" href="https://ignite.apache.org/docs/latest/index">Start Coding</a></div>
+        </div>
+        <img class="innerhero__pic innerhero__pic--keyvalue" src="/img/features/key-value/hero.svg" alt="Distributed Key-Value APIs" />
+      </div>
+    </section>
+    <!-- /.innerhero-->
+    <section class="keyvalue1 container flexi">
+      <div class="keyvalue1__left">
+        <div class="capstext">Key-Value APIs Overview</div>
+        <div class="keyvaluetext pt-5">
+          <p>
+            Every record in Ignite is stored as a key-value pair. All the records are distributed evenly across the cluster nodes. Your key-value queries are directed automatically to the nodes that store requested data. This is how Ignite
+            utilizes all the given memory, disk, and CPU resources.
+          </p>
+          <p>Key-value APIs are supported by all existing Ignite client libraries:</p>
+        </div>
+        <div class="keyvalue1__libs pt-5">
+          <p class="h5 leyvalue__lang">Java <small>(implements JSR-107 specification known as JCache)</small></p>
+          <p class="h5 leyvalue__lang">.NET</p>
+          <p class="h5 leyvalue__lang">Python</p>
+          <p class="h5 leyvalue__lang">Node.JS</p>
+          <p class="h5 leyvalue__lang">Your language</p>
+        </div>
+      </div>
+      <div class="keyvalue1__right">
+        <div class="keyvalue1__picwrap picwrap"><img class="keyvalue1__pic" src="/img/features/key-value/key-value-api-pic.svg" alt="" /></div>
+      </div>
+    </section>
+    <!-- /.keyvalue1-->
+    <section class="keyvalueplank container">
+      <div class="keyvalueplank__inner">
+        Apache Ignite key-value APIs provide additional capabilities such as&nbsp;<strong>automatic synchronization</strong> with external databases, <strong>near caching</strong> and <strong>ACID transactions.</strong>
+      </div>
+    </section>
+    <section class="keyvalue2 container flexi">
+      <div class="keyvalue2__left">
+        <div class="keyvalue__title">Automatic Synchronization With External <br />Databases To Keep A Consistent Copy Of Data</div>
+        <div class="keyvaluetext pt-2 pb-5">
+          <p>Two synchronization strategies are available in Apache Ignite: <br />write-through/behind and read-through.</p>
+        </div>
+        <dl class="keyvalue2__box pb-2">
+          <dt>Write-through and write-behind capabilities</dt>
+          <dd class="pt-2">Ignite can automatically write-through or&nbsp;write-behind all the changes to&nbsp;an&nbsp;external database for every key-value request issued by&nbsp;your applications.</dd>
+        </dl>
+        <dl class="keyvalue2__box">
+          <dt>Read-through capabilities</dt>
+          <dd>Read-through means that Ignite can automatically load data from an&nbsp;external database if&nbsp;a&nbsp;record is&nbsp;missing in&nbsp;memory.</dd>
+        </dl>
+      </div>
+      <div class="keyvalue2__right">
+        <div class="keyvalue2__picwrap picwrap"><img class="keyvalue2__pic" src="/img/features/key-value/key-value-api-2.svg" alt="" /></div>
+      </div>
+    </section>
+    <!-- /.keyvalue2-->
+    <section class="keyvalue3 container flexi">
+      <div class="keyvalue3__right">
+        <div class="keyvalue__title">Automatic Synchronization With External <br />Databases To Keep A Consistent Copy Of Data</div>
+        <div class="keyvaluetext pt-2 pb-5"><p>Two synchronization strategies are available in Apache Ignite: write-through/behind and read-through</p></div>
+        <div class="keyvalue__title">How it works</div>
+        <div class="keyvaluetext pt-2 pb-5">
+          <p>It&nbsp;is&nbsp;applied for applications that require a&nbsp;consistent response time ranging in&nbsp;microseconds. Ignite automatically invalidates and updates the near cache.</p>
+          <p>
+            Whenever the primary copy of&nbsp;a&nbsp;record gets updated on&nbsp;a&nbsp;server node, Ignite propagates the change to&nbsp;all the nodes that store the record&rsquo;s backup copy, as&nbsp;well as&nbsp;to&nbsp;the applications
+            that keep the record&rsquo;s copy in&nbsp;their near caches.
+          </p>
+        </div>
+      </div>
+      <div class="keyvalue3__left">
+        <div class="keyvalue3__picwrap picwrap"><img class="keyvalue3__pic" src="/img/features/key-value/key-value-api-3.svg" alt="" /></div>
+      </div>
+    </section>
+    <!-- /.keyvalue3-->
+    <section class="keyvalue4 container flexi pb-1">
+      <div class="keyvalue4__left">
+        <div class="keyvalue__title">ACID Transactions To Update Your Distributed Records Consistently</div>
+        <div class="keyvaluetext pt-2 pb-5"><p>Apache Ignite key-value APIs are fully transactional which means that data can be&nbsp;updated consistently and reliably.</p></div>
+        <div class="keyvalue__title">How it works</div>
+        <div class="keyvaluetext pt-2 pb-5">
+          <p>
+            An&nbsp;Ignite transaction can update multiple records from different tables stored on&nbsp;different cluster nodes. Ignite can even span a&nbsp;transaction to&nbsp;an&nbsp;underlying relational database. Ignite implements
+            <a href="/features/acid-transactions.html">two-phase-commit protocol to&nbsp;ensure data consistency at&nbsp;scale.</a>
+          </p>
+        </div>
+      </div>
+      <div class="keyvalue4__right">
+        <div class="keyvalue4__picwrap picwrap"><img class="keyvalue4__pic" src="/img/features/key-value/key-value-api-4.svg" alt="" /></div>
+      </div>
+    </section>
+    <!-- /.keyvalue3-->
+    <section class="native-bottom container">
+      <div class="native-bottom__grid">
+        <article class="nativebotblock">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-rocket.svg" alt="" /><span>Ready to Start?</span></h3>
+          <p class="nativebotblock__text">Create your first application using <br />Ignite key-value APIs</p>
+          <a class="nativebotblock__link arrowlink" href="https://ignite.apache.org/docs/latest/key-value-api/basic-cache-operations" target="_blank">Using Key-Value APIs</a>
+        </article>
+        <article class="nativebotblock nativebotblock--learn">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-docs.svg" alt="" /><span>Want to Learn More?</span></h3>
+          <p class="nativebotblock__text">Check out how Apache Ignite can be configured <br />and used as a standard key-value store</p>
+          <a class="nativebotblock__link arrowlink" href="/use-cases/key-value-store.html" target="_blank">Key-Value Store</a>
+        </article>
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/features/index.html b/public/features/index.html
new file mode 100644
index 0000000..023e42d
--- /dev/null
+++ b/public/features/index.html
@@ -0,0 +1,232 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>Features | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/features.css" />
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__blue">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo-white.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="innerhero">
+      <div class="container innerhero__cont">
+        <div class="innerhero__main">
+          <div class="innerhero__pre pb-3">Apache Ignite</div>
+          <h1 class="h1 innerhero__h1">Features</h1>
+          <div class="innerhero__descr pt-2 h5">Scale across memory and disk with no compromises. <br />Adapt easily with essential and high-performance computing APIs.</div>
+        </div>
+        <img class="innerhero__pic innerhero__pic--features" src="/img/features/hero-bg.svg" alt="Apache Ignite Features" />
+      </div>
+    </section>
+    <!-- /.innerhero-->
+    <section class="features2" id="features2">
+      <div class="container">
+        <h2 class="h3 features2__title">Apache Ignite in-memory computing platform <br />comprises the following set of components</h2>
+        <header class="blockheader blockheader--spl flexi">
+          <h2 class="h4 blockheader__left">Distributed Multi-Tiered Storage</h2>
+          <div class="blockheader__right fz20">
+            <p>State-of-the-art storage engine that performs at in-memory <br />speed and stores data durably at unlimited scale</p>
+          </div>
+        </header>
+        <div class="cardswrap">
+          <div class="usecasecard cardsimple">
+            <div class="cardsimple__icon"><img src="/img/features/01-multi-tier-storage.svg" alt="" /></div>
+            <h3 class="cardsimple__title">Multi-Tier Storage</h3>
+            <div class="cardsimple__text cardsimple__text--long">Chose a storage mode for your performance and capacity needs: in-memory, in-memory +&nbsp;external database, or in-memory + native persistence.</div>
+            <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="/arch/multi-tier-storage.html">Learn More</a></div>
+          </div>
+          <div class="usecasecard cardsimple">
+            <div class="cardsimple__icon"><img src="/img/features/02-native-persistence.svg" alt="" /></div>
+            <h3 class="cardsimple__title">Native Persistence</h3>
+            <div class="cardsimple__text">Turn Ignite into a database with capacity and durability characteristics of traditional disk-based databases.</div>
+            <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="/arch/native-persistence.html">Learn More</a></div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.features2-->
+    <section class="features3">
+      <div class="container">
+        <header class="blockheader blockheader--spl flexi">
+          <h2 class="h4 blockheader__left">Essential Developer APIs</h2>
+          <div class="blockheader__right fz20">
+            <p>Start with Ignite seamlessly using the APIs you are already <br />experienced with</p>
+          </div>
+        </header>
+        <div class="cardswrap">
+          <div class="usecasecard cardsimple">
+            <div class="cardsimple__icon"><img src="/img/features/03-distributed-SQL.svg" alt="" /></div>
+            <h3 class="cardsimple__title">Distributed SQL</h3>
+            <div class="cardsimple__text">Interact with Ignite as with a regular SQL database using JDBC, ODBC drivers, or native SQL APIs.</div>
+            <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="/features/sql.html">Learn More</a></div>
+          </div>
+          <div class="usecasecard cardsimple">
+            <div class="cardsimple__icon"><img src="/img/features/04-ACID-transactions.svg" alt="" /></div>
+            <h3 class="cardsimple__title">ACID Transactions</h3>
+            <div class="cardsimple__text cardsimple__text--long">Be sure Apache Ignite operates in a strongly consistent mode with full support for distributed ACID transactions.</div>
+            <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="/features/acid-transactions.html">Learn More</a></div>
+          </div>
+          <div class="usecasecard cardsimple">
+            <div class="cardsimple__icon"><img src="/img/features/05-key-value-APIs.svg" alt="" /></div>
+            <h3 class="cardsimple__title">Key Value APIs</h3>
+            <div class="cardsimple__text">Use simple key-value requests for fast data look-ups and updates.</div>
+            <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="/features/distributed-key-value-store.html">Learn More</a></div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.features3-->
+    <section class="features4">
+      <div class="container">
+        <header class="blockheader blockheader--spl flexi">
+          <h2 class="h4 blockheader__left">High-Performance Computing APIs</h2>
+          <div class="blockheader__right fz20"><p>Execute kilobyte-size custom code over petabytes of data</p></div>
+        </header>
+        <div class="cardswrap">
+          <div class="usecasecard cardsimple">
+            <div class="cardsimple__icon"><img src="/img/features/06-compute-APIs.svg" alt="" /></div>
+            <h3 class="cardsimple__title">Compute APIs</h3>
+            <div class="cardsimple__text">Execute data-intensive and compute-intensive logic over your distributed cluster.</div>
+            <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="/features/compute-apis.html">Learn More</a></div>
+          </div>
+          <div class="usecasecard cardsimple">
+            <div class="cardsimple__icon"><img src="/img/features/07-machine-learning.svg" alt="" /></div>
+            <h3 class="cardsimple__title">Machine Learning</h3>
+            <div class="cardsimple__text">Use built-in algorithms to train and execute machine and deep learning models at scale.</div>
+            <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="/features/machinelearning.html">Learn More</a></div>
+          </div>
+          <div class="usecasecard cardsimple">
+            <div class="cardsimple__icon"><img src="/img/features/08-services.svg" alt="" /></div>
+            <h3 class="cardsimple__title">Services</h3>
+            <div class="cardsimple__text">Create and deploy custom micro-service on your cluster nodes.</div>
+            <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="/features/servicegrid.html">Learn More</a></div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.features4-->
+    <section class="features5">
+      <div class="container">
+        <header class="blockheader blockheader--spl flexi">
+          <h2 class="h4 blockheader__left">Real-Time Streaming APIs</h2>
+          <div class="blockheader__right fz20">
+            <p>Implement event-driven architectures seamlessly <br />with the following Ignite product features:</p>
+          </div>
+        </header>
+        <div class="cardswrap">
+          <div class="usecasecard cardsimple">
+            <div class="cardsimple__icon"><img src="/img/features/09-streaming.svg" alt="" /></div>
+            <h3 class="cardsimple__title">Streaming</h3>
+            <div class="cardsimple__text">Stream and process your data in a scalable and fault-tolerant fashion.</div>
+            <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="/features/streaming.html">Learn More</a></div>
+          </div>
+          <div class="usecasecard cardsimple">
+            <div class="cardsimple__icon"><img src="/img/features/10-continuous-queries.svg" alt="" /></div>
+            <h3 class="cardsimple__title">Continuous Queries</h3>
+            <div class="cardsimple__text">Execute your custom logic in response to data changes happening across the cluster.</div>
+            <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="https://ignite.apache.org/docs/latest/key-value-api/continuous-queries">Learn More</a></div>
+          </div>
+          <div class="usecasecard cardsimple">
+            <div class="cardsimple__icon"><img src="/img/features/11-messaging.svg" alt="" /></div>
+            <h3 class="cardsimple__title">Messaging</h3>
+            <div class="cardsimple__text">Exchange messages across the publisher-subscriber pattern.</div>
+            <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="https://ignite.apache.org/docs/latest/messaging">Learn More</a></div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.features5-->
+    <section class="featureslast">
+      <div class="container">
+        <div class="featureslast__main">
+          <h2 class="h4 featureslast__title pb-1">Looking For Something Else?</h2>
+          <div class="featureslast__descr fz20">Explore our technical documentation to discover Ignite's other features</div>
+          <ul class="featureslast__links pt-4">
+            <li><a class="arrowlink" href="https://ignite.apache.org/docs/latest/data-structures/queue-and-set">Data Structures</a></li>
+            <li><a class="arrowlink" href="https://ignite.apache.org/docs/latest/clustering/clustering">Clustering</a></li>
+            <li><a class="arrowlink" href="https://ignite.apache.org/docs/latest/extensions-and-integrations/spring/spring-boot">Other Integrations</a></li>
+            <li><a class="arrowlink" href="/features/multilanguage.html">Multi-Language Support</a></li>
+          </ul>
+        </div>
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/features/machinelearning.html b/public/features/machinelearning.html
new file mode 100644
index 0000000..cfedc43
--- /dev/null
+++ b/public/features/machinelearning.html
@@ -0,0 +1,190 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>Machine Learning APIs | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/native-persistence.css" />
+    <link rel="stylesheet" href="../css/compute-apis.css" />
+    <link rel="stylesheet" href="../css/machinelearning.css" />
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__blue">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo-white.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="innerhero">
+      <div class="container innerhero__cont">
+        <div class="innerhero__main">
+          <div class="innerhero__pre pb-3">Apache Ignite</div>
+          <h1 class="h1 innerhero__h1">
+            Machine Learning<br />
+            APIs
+          </h1>
+          <div class="innerhero__descr pt-2 h5">
+            Continuously train, execute and update your machine learning<br />
+            models at scale and in real-time
+          </div>
+          <div class="innerhero__action"><a class="button innerhero__button" href="https://ignite.apache.org/docs/latest/index">Start Coding</a></div>
+        </div>
+        <img class="innerhero__pic innerhero__pic--machine" src="/img/features/machinelearning/machine.svg" alt="Machine-hero" />
+      </div>
+    </section>
+    <!-- /.innerhero-->
+    <section class="machine1">
+      <div class="container">
+        <div class="machine1__block flexi">
+          <div class="machine1__info">
+            <h2 class="compute2__h2">Ignite Machine Learning APIs Overview</h2>
+            <h3 class="machine1__title machine-top">What is it?</h3>
+            <p class="machine1__text">Ignite Machine Learning (ML) is a set of simple, scalable, and efficient tools that allow building predictive machine learning models without costly data transfers.</p>
+            <h3 class="machine1__title machine-top">How does Apache Ignite support ML APIs?</h3>
+            <p class="machine1__text">You have two options:</p>
+            <div class="machine1__options flexi">
+              <div class="machine1__option">
+                <div class="machine1__number">01</div>
+                <div class="machine1__subtext">Use built-in ML APIs for some of the typical ML and deep learning (DL) tasks, such as:</div>
+                <div class="machine1__subtext flexi"><span>— Classification</span><span>— Regression</span><span> — Clustering</span><span>— Recommendation</span><span>— Preprocessing</span></div>
+              </div>
+              <div class="machine1__option">
+                <div class="machine1__number">02</div>
+                <div class="machine1__subtext">Use external ML and DL libraries that use Apache Ignite as scalable and high-performance distributed data storage:</div>
+                <div class="machine1__subtext flexi"><span>— TensorFlow</span><span>— Scikit</span><span>— Spark</span><span>— And more</span></div>
+              </div>
+            </div>
+          </div>
+          <img class="machine1__image" src="/img/features/machinelearning/image.svg" alt="image" />
+        </div>
+      </div>
+    </section>
+    <section class="compute2">
+      <div class="container">
+        <h2 class="compute2__h2">Benefits of Apache Ignite Machine Learning API</h2>
+        <div class="machineitem machineitem1 flexi">
+          <h3 class="machine__title">Expedite the training process with horizontal cluster scalability</h3>
+          <div class="machine__info">
+            <p class="machine__text">
+              You can distribute your training data set over an unlimited number of cluster nodes and train your models with the speed of memory.<br />
+              With built-in Ignite ML APIs, you:
+            </p>
+            <div class="machine__part flexi">
+              <div class="compute2-points__item fz20"></div>
+              <div class="machine__subtext">Avoid, or minimise ETL</div>
+            </div>
+            <div class="machine__part flexi">
+              <div class="compute2-points__item fz20"></div>
+              <div class="machine__subtext">Load all your training data sets in the same cluster</div>
+            </div>
+            <div class="machine__part flexi">
+              <div class="compute2-points__item fz20"></div>
+              <div class="machine__subtext">Minimise network utilization during the training process</div>
+            </div>
+          </div>
+        </div>
+        <div class="machineitem machineitem1 flexi">
+          <h3 class="machine__title">Execute your ML models with in-memory speed from your application code</h3>
+          <div class="machine__info"><p class="machine__text">Once the model is trained, deploy it on the cluster and execute it with in-memory speed. Use built-in Ignite APIs or 3rd party libraries.</p></div>
+        </div>
+        <div class="machineitem machineitem1 flexi">
+          <h3 class="machine__title">Continue updating your models with new data in real-time</h3>
+          <div class="machine__info">
+            <p class="machine__text">Data and user behaviours change rapidly, so you always need to advance your models. With Apache Ignite, you can update your already deployed ML models with new data sets.</p>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.compute2-->
+    <section class="native-bottom container">
+      <div class="native-bottom__grid">
+        <article class="nativebotblock">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-rocket.svg" alt="" /><span>Ready to Start?</span></h3>
+          <p class="nativebotblock__text">Start coding machine learning APIs</p>
+          <a class="nativebotblock__link arrowlink" href="https://ignite.apache.org/docs/latest/machine-learning/machine-learning" target="_blank">Performing Machine Learning</a>
+        </article>
+        <article class="nativebotblock nativebotblock--learn">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-docs.svg" alt="" /><span>Want to Learn More?</span></h3>
+          <p class="nativebotblock__text">
+            Check out how Apache Ignite updates<br />
+            trained models in real time
+          </p>
+          <a class="nativebotblock__link arrowlink" href="https://ignite.apache.org/docs/latest/machine-learning/updating-trained-models" target="_blank">Updating Trained Models</a>
+        </article>
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/features/multilanguage.html b/public/features/multilanguage.html
new file mode 100644
index 0000000..b26590c
--- /dev/null
+++ b/public/features/multilanguage.html
@@ -0,0 +1,143 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>Multi-language Support | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/native-persistence.css" />
+    <link rel="stylesheet" href="../css/compute-apis.css" />
+    <link rel="stylesheet" href="../css/multilanguage.css" />
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__blue">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo-white.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="innerhero">
+      <div class="container innerhero__cont">
+        <div class="innerhero__main innherhero__lang">
+          <div class="innerhero__pre pb-3">Apache Ignite</div>
+          <h1 class="h1 innerhero__h1">
+            Multi-language<br />
+            Support
+          </h1>
+          <div class="innerhero__action"><a class="button innerhero__button" href="https://ignite.apache.org/docs/latest/index">Start Coding</a></div>
+        </div>
+        <img class="innerhero__pic innerhero__pic--lang" src="/img/features/multilanguage/multi.svg" alt="Distributed In-Memory Cache" />
+      </div>
+    </section>
+    <!-- /.innerhero-->
+    <section class="lang">
+      <div class="container">
+        <div class="lang-block flexi">
+          <p class="lang__text">
+            <span
+              >Apache Ignite® is a Java-powered database and computing platform that works with operating systems and architectures supported by Java Virtual Machines. You can find Ignite deployments running on Linux, Windows, Mac OS,
+              Oracle Solaris, IBM zOS and x86, x64, SPARC, and PowerPC instruction set architectures.<br /><br /></span
+            ><span>All the features and capabilities available in Ignite are supported in its Java libraries. This includes SQL, key-value, co-located computations, machine learning algorithms, and much more.<br /><br /></span
+            ><span
+              >In addition to Java, Ignite supports C#, C++, Python, Node.JS, and PHP languages out-of-the-box. The thin client protocol allows expanding Ignite support to other programming languages. For instance, you can find a Go client
+              for Ignite that is not being developed or maintained by the Ignite community.<br /><br /></span
+            ><span>Furthermore, you can interact with Ignite as you would with any other SQL database with the usage of JDBC or ODBC drivers.</span>
+          </p>
+          <div class="lang__image">
+            <div class="lang__one flexi"><img class="lang__img lang__img1" src="/img/features/multilanguage/one.svg" alt="one" /><img class="lang__img" src="/img/features/multilanguage/two.svg" alt="two" /></div>
+            <div class="lang__two flexi"><img class="lang__img" src="/img/features/multilanguage/three.png" alt="three" /><img class="lang__img lang__img4" src="/img/features/multilanguage/four.png" alt="four" /></div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <section class="native-bottom container">
+      <div class="native-bottom__grid">
+        <article class="nativebotblock">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-rocket.svg" alt="" /><span>Ready to Start?</span></h3>
+          <p class="nativebotblock__text">
+            Discover our quick start guide and build your first<br />
+            application in 5-10 minutes
+          </p>
+          <a class="nativebotblock__link arrowlink" href="https://ignite.apache.org/docs/latest/index" target="_blank">Quick Start Guide </a>
+        </article>
+        <article class="nativebotblock nativebotblock--learn">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-docs.svg" alt="" /><span>Want to Learn More?</span></h3>
+          <p class="nativebotblock__text">Check out how to run Ignite with Java, .NET/C#, C++, Python, Node.JS, SQL, PHP, or REST API</p>
+          <a class="nativebotblock__link arrowlink" href="#" target="_blank">Multi-language guide</a>
+        </article>
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/features/servicegrid.html b/public/features/servicegrid.html
new file mode 100644
index 0000000..0e42d04
--- /dev/null
+++ b/public/features/servicegrid.html
@@ -0,0 +1,231 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>Service APIs | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/native-persistence.css" />
+    <link rel="stylesheet" href="../css/service.css" />
+    <link rel="stylesheet" href="../css/compute-apis.css" />
+    <link rel="stylesheet" href="../js/vendor/highlight/night-owl.css" />
+    <script src="../js/vendor/highlight/highlight.min.js"></script>
+    <script src="../js/vendor/highlight/java.min.js"></script>
+    <script src="../js/vendor/highlight/xml.min.js"></script>
+    <script src="../js/vendor/highlight/csharp.min.js"></script>
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__blue">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo-white.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="innerhero">
+      <div class="container innerhero__cont">
+        <div class="innerhero__main">
+          <div class="innerhero__pre pb-3">Apache Ignite</div>
+          <h1 class="h1 innerhero__h1">Service APIs</h1>
+          <div class="innerhero__descr pt-2 h5">
+            Deploy your microservices straight on the cluster nodes and<br />
+            trigger execution from the application code
+          </div>
+          <div class="innerhero__action"><a class="button innerhero__button" href="https://ignite.apache.org/docs/latest/index">Start Coding</a></div>
+        </div>
+        <img class="innerhero__pic innerhero__pic--servicegrid" src="/img/features/service/service-hero.svg" alt="Distributed In-Memory Cache" />
+      </div>
+    </section>
+    <!-- /.innerhero-->
+    <section class="service1">
+      <div class="container">
+        <h2 class="service1__h2">Apache Ignite Service APIs Overview</h2>
+        <div class="fz20 service1__text">
+          With the services API, you can create and deploy arbitrary services on the cluster. Apache Ignite Service APIs Overview For instance, you may want to implement custom counters, hierarchical maps, or anything that you treat as a
+          microservice.
+        </div>
+      </div>
+    </section>
+    <!-- /.service1    -->
+    <section class="nativecode container jsTabWrap">
+      <header class="blockheader blockheader--spl flexi">
+        <h2 class="h4 blockheader__left">Use Contemporary Powerful Languages</h2>
+        <div class="blockheader__right service-subtextvideo fz20"><p>Microservices APIs supported by Java and С#/.NET</p></div>
+      </header>
+      <div class="nativecode__tabctrls flexi"><a class="nativecode__link active" href="#" data-tablink="nativeTabJava">Java</a><a class="nativecode__link" href="#" data-tablink="nativeTabNET">C#/.NET</a></div>
+      <div class="nativecode__tabs">
+        <div class="nativecode__tab active" data-tab="nativeTabJava">
+          <pre class="nativecode__codebox"> <code class="java">Ignite ignite = Ignition.start();
+
+//get the services interface associated with all server nodes
+IgniteServices services = ignite.services();
+
+//start a node singleton
+services.deployClusterSingleton("myCounterService", new MyCounterServiceImpl());
+</code></pre>
+        </div>
+        <div class="nativecode__tab" data-tab="nativeTabNET">
+          <pre class="nativecode__codebox"> <code class="csharp">// Broadcast the task to server nodes only.
+var compute = ignite.GetCluster().ForServers().GetCompute();
+
+// Each remote server node will execute the custom PrintNodeIdAction task.
+compute.Broadcast(new PrintNodeIdAction());
+</code></pre>
+        </div>
+      </div>
+    </section>
+    <!-- /.nativecode-->
+    <section class="service2">
+      <div class="container">
+        <h2 class="service2__h2 h4">Services Deployment Modes</h2>
+        <div class="service2__text">Deploy single or many instances of a service on the cluster</div>
+        <div class="service2__block">
+          <div class="service2item service2item__one flexi">
+            <div class="service2item__info">
+              <h3 class="service2item__title">Cluster Singleton</h3>
+              <p class="service2item__text">The most commonly used feature is to deploy singleton services on the cluster.</p>
+              <p class="service2item__text">
+                There is only one instance of the service in the cluster, and Ignite guarantees<br />
+                that the instance is always available.
+              </p>
+              <p class="service2item__text">In case the cluster node on which the service is deployed disconnects, Ignite automatically redeploys the instance to another node.</p>
+            </div>
+            <img class="service2item__image1" src="/img/features/service/one-image.svg" alt="one-image" />
+          </div>
+          <div class="service2item service2item__two flexi">
+            <img class="service2item__image2" src="/img/features/service/two-image.svg" alt="two-image" />
+            <div class="service2item__info service2item__info2">
+              <h3 class="service2item__title">Node Singleton</h3>
+              <p class="service2item__text">
+                You can specify your service as part of the node configuration and start<br />
+                the service together with the node.
+              </p>
+              <p class="service2item__text">
+                The service is started on each node of the cluster. If the service is a cluster singleton, it is started in the first cluster node, and is redeployed to one <br />of the other nodes if the first node terminates.
+              </p>
+            </div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <section class="compute2">
+      <div class="container">
+        <h2 class="compute2__h2">Benefits Of Apache Ignite Service APIs</h2>
+        <div class="compute2__grid">
+          <div class="compute2item">
+            <div class="compute2-points__item fz20"></div>
+            <div class="compute2item__block">
+              <h3 class="fz20 compute2item__title">Load balancing</h3>
+              <p class="compute2__text">In all cases, other than singleton service deployment, Ignite makes sure that an equal number of services are deployed on each node within the cluster.</p>
+              <p class="compute2__text">Whenever cluster topology changes, Ignite will re-evaluate service deployments and may re-deploy an already deployed service on another node for better load balancing.</p>
+            </div>
+          </div>
+          <div class="compute2item">
+            <div class="compute2-points__item fz20"></div>
+            <div class="compute2item__block">
+              <h3 class="fz20 compute2item__title">Fault Tolerance</h3>
+              <p class="compute2__text">Ignite always guarantees that services are continuously available, and are deployed according to the specified configuration, regardless of any topology changes or node crashes.</p>
+            </div>
+          </div>
+          <div class="compute2item">
+            <div class="compute2-points__item fz20"></div>
+            <div class="compute2item__block">
+              <h3 class="fz20 compute2item__title">Hot Redeployment</h3>
+              <p class="compute2__text">You can update the implementation of a service without stopping the cluster.</p>
+              <p class="compute2__text">Use Ignite’s DeploymentSpi configuration to re-deploy services without restarting the cluster.</p>
+            </div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.compute2-->
+    <section class="native-bottom container">
+      <div class="native-bottom__grid">
+        <article class="nativebotblock">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-rocket.svg" alt="" /><span>Ready to Start?</span></h3>
+          <p class="nativebotblock__text">Start coding with Ignite Service APIs</p>
+          <a class="nativebotblock__link arrowlink" href="https://ignite.apache.org/docs/latest/services/services#re-deploying-services" target="_blank">Performing Service APIs </a>
+        </article>
+        <article class="nativebotblock nativebotblock--learn">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-docs.svg" alt="" /><span>Want to Learn More?</span></h3>
+          <p class="nativebotblock__text">Check out a special tutorial that shows how to build and deploy microservices with Ignite Service APIs</p>
+          <a class="nativebotblock__link servicenativelink arrowlink" href="https://www.gridgain.com/resources/blog/implementing-microservices-apache-ignite-service-apis-part-iii" target="_blank"
+            >Implementing Microservices<br />
+            With Apache Ignite Service APIs</a
+          >
+        </article>
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/features/sql.html b/public/features/sql.html
new file mode 100644
index 0000000..fcacfff
--- /dev/null
+++ b/public/features/sql.html
@@ -0,0 +1,253 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>Distributed ANSI SQL | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/native-persistence.css" />
+    <link rel="stylesheet" href="../css/compute-apis.css" />
+    <link rel="stylesheet" href="../css/sql.css" />
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__blue">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo-white.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="innerhero">
+      <div class="container innerhero__cont">
+        <div class="innerhero__main">
+          <div class="innerhero__pre pb-3">Apache Ignite</div>
+          <h1 class="h1 innerhero__h1">Distributed ANSI SQL</h1>
+          <div class="innerhero__descr pt-2 h5">
+            The same SQL you've been using for years but now with<br />
+            in-memory speed and at unlimited scale
+          </div>
+          <div class="innerhero__action"><a class="button innerhero__button" href="https://ignite.apache.org/docs/latest/index">Start Coding</a></div>
+        </div>
+        <img class="innerhero__pic innerhero__pic--sql" src="/img/features/sql/hero-image.svg" alt="sql-hero" />
+      </div>
+    </section>
+    <!-- /.innerhero-->
+    <section class="dist">
+      <div class="container">
+        <div class="dist__block flexi">
+          <div class="dist__info">
+            <h2 class="dist__h2 h4">Apache Ignite as a SQL Database</h2>
+            <p class="dist__text">The native support for SQL let’s you work with Ignite as with a standard SQL database. Literally, you can use just SQL if your applications need nothing else:</p>
+            <div class="dist__items flexi">
+              <div class="dist__item">
+                <h3 class="dist__item-title">DDL commands</h3>
+                <div class="dist__item-grey dist__item-grey1 flexi">
+                  <div class="dist__itemitem flexi"><span class="dist__item-span">CREATE</span><span class="dist__item-span">ALTER</span><span class="dist__item-span">DROP</span></div>
+                </div>
+              </div>
+              <div class="dist__item">
+                <h3 class="dist__item-title">DML commands</h3>
+                <div class="dist__item-grey dist__item-grey2 flexi">
+                  <div class="dist__itemitem flexi"><span class="dist__item-span">SELECT</span><span class="dist__item-span">INSERT</span><span class="dist__item-span">UPDATE</span></div>
+                  <div class="dist__itemitem dist__itemitem__end flexi"><span class="dist__item-span">MERGE</span><span class="dist__item-span">DELETE</span></div>
+                </div>
+              </div>
+            </div>
+            <h3 class="dist__h3">Apache Ignite is shipped with:</h3>
+            <div class="dist__parts flexi">
+              <div class="dist__part flexi">
+                <div class="compute2-points__item fz20"></div>
+                <div class="dist__part-text">JDBC driver</div>
+              </div>
+              <div class="dist__part flexi">
+                <div class="compute2-points__item fz20"></div>
+                <div class="dist__part-text">ODBC driver</div>
+              </div>
+              <div class="dist__part flexi">
+                <div class="compute2-points__item fz20"></div>
+                <div class="dist__part-text dist__part-textend flexi">
+                  Built-in SQL APIs
+                  <div class="dist__part-grey">Available for Java, C#, C++, Python, and other programming languages</div>
+                </div>
+              </div>
+            </div>
+          </div>
+          <img class="dist__image" src="/img/features/sql/image.svg" alt="sql-hero" />
+        </div>
+      </div>
+    </section>
+    <!-- /.dist-->
+    <section class="dist1">
+      <div class="container">
+        <h2 class="dist1__h2 h4">Join, Group and Aggregate Distributed Data Sets</h2>
+        <div class="dist1__subtext">Whether you use a two or thousand-node cluster, you always can do the following:</div>
+        <div class="dist1__parts flexi">
+          <div class="dist1__part">group data</div>
+          <div class="dist1__part">join data</div>
+          <div class="dist1__part">order data</div>
+          <div class="dist1__part dist1__partend">aggregate data</div>
+        </div>
+        <div class="dist1__title">What is a distributed join?</div>
+        <p class="dist1__text h4">A distributed join is a SQL statement with a join clause that combines two or more tables that have their data distributed across many cluster nodes.</p>
+        <h3 class="dist1__h3 h4">Types of joins in Ignite</h3>
+        <div class="dist1__blocks flexi">
+          <div class="dist1__block">
+            <h4 class="dist1__h4">Co-located joins</h4>
+            <p class="dist1__texts">this is the most performant type of joins that avoid data shuffling between nodes and minimize network usage.</p>
+            <p class="dist1__texts pt-1">
+              This type of join is used if you join <a class="dist1__link" href="https://ignite.apache.org/docs/latest/data-modeling/affinity-collocation" target="_blank">partitioned and replicated tables</a> or partitioned tables that are
+              co-located with each other.
+            </p>
+          </div>
+          <div class="dist1__block">
+            <h4 class="dist1__h4">Non-colocated joins:</h4>
+            <p class="dist1__texts">less performant type of joins that join data of non-colocated tables. Ignite needs to shuffle data over the network to produce a correct result set.</p>
+          </div>
+          <div class="dist1__block">
+            <h4 class="dist1__h4">Hash joins:</h4>
+            <p class="dist1__texts">Ignite supports classic hash join algorithm that is more efficient than nested loop joins for many scenarios.</p>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.dist1-->
+    <section class="dist2">
+      <div class="container">
+        <h2 class="dist2__h2 h4">Ignite SQL Engine and Multi-Tier Storage</h2>
+        <p class="dist2__p">Depending on your storage configuration, Ignite SQL engine can query both in-memory and disk-only records</p>
+        <div class="dist2__blocks flexi">
+          <div class="dist2__block">
+            <h3 class="dist2__h3">In-Memory Mode</h3>
+            <p class="dist2__text dist2__text1">Ignite caches data only in memory</p>
+            <details class="dist2__details">
+              <summary class="dist2__active"><img src="/img/features/sql/plus.svg" alt="sql-hero" /></summary>
+              <div class="dist2__subtext"><p>In this mode, Ignite SQL performs the fastest way possible as long as all the data is served from memory with no usage of the disk tier at all.</p></div>
+            </details>
+          </div>
+          <div class="dist2__block">
+            <h3 class="dist2__h3">In-Memory <br />+ Native Persistence Mode</h3>
+            <p class="dist2__text">
+              Ignite scales beyond available<br />
+              memory capacity
+            </p>
+            <details class="dist2__details">
+              <summary class="dist2__active"><img src="/img/features/sql/plus.svg" alt="sql-hero" /></summary>
+              <div class="dist2__subtext">
+                <p>Ignite persists 100% of data and indexes in the <a href="/arch/native-persistence.html">native persistence</a> while caching as much as possible in memory.</p>
+                <p class="pt-1">Ignite SQL engine does not require to cache an entire data set in memory to operate correctly.</p>
+                <p class="pt-1">If the engine finds that a record is not cached, then it will read the record from disk. Your application only executes SQL queries, and Ignite gets the records from both memory and disk automatically.</p>
+                <p class="pt-1">On cluster restarts, Ignite reads data and indexes from disk, eliminating the need for memory warm-up, which significantly decreases downtime.</p>
+              </div>
+            </details>
+          </div>
+          <div class="dist2__block">
+            <h3 class="dist2__h3">In-Memory<br />+ External Database Mode</h3>
+            <p class="dist2__text">
+              Ignite accelerates your<br />
+              existing databases
+            </p>
+            <details class="dist2__details">
+              <summary class="dist2__active"><img src="/img/features/sql/plus.svg" alt="sql-hero" /></summary>
+              <div class="dist2__subtext">
+                <p>In this mode, the Ignite SQL engine requires caching all the data needed for distributed queries in memory since the engine currently does not support federated queries.</p>
+                <p class="pt-1">
+                  If federated queries between Ignite and an external database are required, then you can consider Ignite integration for Spark, where the DataFrames API can join the data stored in Ignite and other systems.
+                </p>
+              </div>
+            </details>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.dist2-->
+    <section class="native-bottom container">
+      <div class="native-bottom__grid">
+        <article class="nativebotblock">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-rocket.svg" alt="" /><span>Ready to Start?</span></h3>
+          <p class="nativebotblock__text">
+            Discover more details about Apache Ignite SQL engine<br />
+            and apply it for your use-case
+          </p>
+          <a class="nativebotblock__link arrowlink" href="https://ignite.apache.org/docs/latest/persistence/native-persistence" target="_blank">Memory Architecture</a>
+        </article>
+        <article class="nativebotblock nativebotblock--learn">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-docs.svg" alt="" /><span>Want to Learn More?</span></h3>
+          <p class="nativebotblock__text">Ignite SQL will become even more powerful and advanced with the release of the Apache Calcite based engine</p>
+          <div class="dist__link">Coming in Ignite 3.0</div>
+          <a class="nativebotblock__link arrowlink" href="https://cwiki.apache.org/confluence/display/IGNITE/Apache+Calcite-powered+SQL+Engine+Roadmap" target="_blank">New Calcite powered SQL engine</a>
+        </article>
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/features/streaming.html b/public/features/streaming.html
new file mode 100644
index 0000000..e3fbace
--- /dev/null
+++ b/public/features/streaming.html
@@ -0,0 +1,215 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>Real-Time Streaming APIs| Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/native-persistence.css" />
+    <link rel="stylesheet" href="../css/compute-apis.css" />
+    <link rel="stylesheet" href="../css/streaming.css" />
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__blue">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo-white.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="innerhero">
+      <div class="container innerhero__cont">
+        <div class="innerhero__main">
+          <div class="innerhero__pre pb-3">Apache Ignite</div>
+          <h1 class="h1 innerhero__h1">
+            Real-Time Streaming<br />
+            APIs
+          </h1>
+          <div class="innerhero__descr pt-2 h5">Ingest streams of data and build event-driven architectures</div>
+          <div class="innerhero__action"><a class="button innerhero__button" href="https://ignite.apache.org/docs/latest/index">Start Coding</a></div>
+        </div>
+        <img class="innerhero__pic innerhero__pic--stream" src="/img/features/streaming/hero-image.svg" alt="stream-hero" />
+      </div>
+    </section>
+    <!-- /.innerhero-->
+    <section class="stream1">
+      <div class="container">
+        <div class="stream1__block flexi">
+          <p class="stream1__p h4">With Apache Ignite you can<strong> load and stream</strong> large finite — or never-ending — volumes of data<strong> in a scalable and fault-tolerant way</strong> into the cluster.</p>
+          <div class="stream1__part">
+            <img class="stream1__img" src="/img/features/streaming/speed.png" alt="speed" />
+            <p class="stream1__text">The rate at which data can be injected into Ignite <strong>exceeds millions of events per second </strong>on a moderately sized cluster.</p>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.stream1-->
+    <section class="stream2">
+      <div class="container">
+        <div class="stream2__block flexi">
+          <div class="stream2__content">
+            <h2 class="stream2__h2 h4">Ignite Core Streaming APIs</h2>
+            <h3 class="stream2__h3">What are those APIs?</h3>
+            <p class="stream2__text">
+              With Ignite core streaming APIs such as IgniteDataStreamer you get basic streaming capabilities out of the box. You can stream and transform your data originating from multiple custom sources.<br /><br />Ignite data streamers
+              automatically buffer the data and group it into batches for better performance and send it in parallel to multiple nodes.
+            </p>
+          </div>
+          <img class="stream2__img" src="/img/features/streaming/sql.svg" alt="sql" />
+        </div>
+      </div>
+    </section>
+    <!-- /.stream2-->
+    <section class="stream3">
+      <div class="container">
+        <h2 class="stream3__h2 h4">IgniteDataStreamer is used for:</h2>
+        <div class="stream3__blocks flexi">
+          <div class="stream3__block">
+            <div class="stream3__part flexi">
+              <div class="compute2-points__item fz20"></div>
+              <p class="stream3__text">Data loading</p>
+            </div>
+            <div class="stream3__part stream3__end flexi ml-04">
+              <div class="compute2-points__item fz20"></div>
+              <p class="stream3__text">Real-time data streaming</p>
+            </div>
+          </div>
+          <div class="stream3__block">
+            <div class="stream3__part stream3__first flexi">
+              <div class="compute2-points__item fz20"></div>
+              <p class="stream3__text">Achieving advanced streaming capabilities by integrating with streaming frameworks:</p>
+            </div>
+            <div class="stream3__item stream3__itemstart flexi">
+              <img class="stream3__img" src="/img/features/streaming/one.png" alt="one" /><img class="stream3__img" src="/img/features/streaming/two.svg" alt="two" /><img
+                class="stream3__img"
+                src="/img/features/streaming/three.png"
+                alt="three"
+              />
+            </div>
+            <div class="stream3__item flexi">
+              <img class="stream3__img" src="/img/features/streaming/four.svg" alt="four" /><img class="stream3__img" src="/img/features/streaming/five.svg" alt="five" /><img
+                class="stream3__img"
+                src="/img/features/streaming/six.svg"
+                alt="six"
+              />
+            </div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.stream3-->
+    <section class="stream4">
+      <div class="container">
+        <h2 class="stream4__h2 h4">Event-Driven Architecture Basic Principles</h2>
+        <p class="stream4__p">In many cases, streams of data we receive comprise events that we have to react to.<br /><span class="stream4__greys">With Apache Ignite, you can:</span></p>
+        <div class="stream4__block flexi">
+          <div class="stream4__part">
+            <div class="stream4__number">01</div>
+            <div class="stream4__text">
+              Enrich and transform your data<br />
+              on on-the-fly.
+            </div>
+          </div>
+          <div class="stream4__part stream4__parttwo">
+            <div class="stream4__number">02</div>
+            <div class="stream4__text">
+              Execute any calculations in response<br />
+              to an event on the cluster-node side.
+            </div>
+          </div>
+          <div class="stream4__part">
+            <div class="stream4__number">03</div>
+            <div class="stream4__text">React to your streams of data on the application side with continuous queries.</div>
+            <div class="stream4__grey">If streamed data represents an event, your application-side logic can react to it after receiving a notification from continuous queries.</div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.stream4              -->
+    <section class="native-bottom container">
+      <div class="native-bottom__grid">
+        <article class="nativebotblock">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-rocket.svg" alt="" /><span>Ready to Start?</span></h3>
+          <p class="nativebotblock__text">Start coding with Ignite Streaming APIs</p>
+          <a class="nativebotblock__link arrowlink" href="https://ignite.apache.org/docs/latest/data-streaming" target="_blank">Ignite Streaming APIs</a>
+        </article>
+        <article class="nativebotblock nativebotblock--learn">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-docs.svg" alt="" /><span>Want to Learn More?</span></h3>
+          <p class="nativebotblock__text">Explore our out-of-the-box integrations with Kafka, Flink, MQTT and other advanced streaming technologies</p>
+          <a class="nativebotblock__link arrowlink" href="https://ignite.apache.org/docs/latest/extensions-and-integrations/spring/spring-boot" target="_blank">Extensions and integrations guide</a>
+        </article>
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/features/tooling.html b/public/features/tooling.html
new file mode 100644
index 0000000..8c34f71
--- /dev/null
+++ b/public/features/tooling.html
@@ -0,0 +1,246 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>Tooling | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/tooling.css" />
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__blue">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo-white.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a class="hdrmenu__current" href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="innerhero innerhero--tooling">
+      <div class="container innerhero__cont">
+        <div class="innerhero__main">
+          <h1 class="h1 innerhero__h1">
+            Tools And Solutions <br />
+            For Apache Ignite Management <br />
+            And Monitoring
+          </h1>
+          <div class="innerhero__descr pt-4 h4">Apache Ignite exposes metrics in&nbsp;JMX and <br />OpenCensus formats. Use a&nbsp;broad range of&nbsp;tools</div>
+          <img class="innerhero__pic innerhero__pic--tooling" src="/img/features/tooling/herobg.svg" alt="" />
+        </div>
+      </div>
+    </section>
+    <!-- /.innerhero-->
+    <section class="tooling-leading container">
+      <h2 class="h4">Out-Of-The-Box Solutions</h2>
+      <p class="h5 pt-2">Tools developed specifically for Ignite cluster management and monitoring</p>
+    </section>
+    <section class="toolingbox container">
+      <h2 class="toolingbox__title h4 flexi"><img src="/img/features/tooling/icon-apache.svg" alt="" /><span>VISOR COMMAND LINE AND CONTROL SCRIPT</span></h2>
+      <div class="toolingbox__picwrap"><img src="/img/features/tooling/visor-command-line.png" alt="" /></div>
+      <div class="toolingbox__bg">
+        <div class="toolingbox__picdescr h5">
+          Apache Ignite officially supports two command-line tools <br />
+          to manage and monitor the cluster:
+        </div>
+        <div class="toolvarlist1">
+          <div class="toolvarlist1__left">
+            <h3 class="toolvarlist1__title">Visor Command Line tool</h3>
+            <div class="toolvarlist1__list">
+              <dl class="toolvarlist1__dl">
+                <dt>Get statistics about</dt>
+                <dd>
+                  <p>– cluster nodes</p>
+                  <p>– compute tasks</p>
+                  <p>– caches</p>
+                </dd>
+              </dl>
+              <dl class="toolvarlist1__dl"><dt>Manage the size of your cluster by starting or&nbsp;stopping nodes.</dt></dl>
+            </div>
+            <div class="toolvarlist1__more"><a class="button" href="/use-cases/in-memory-cache.html">Learn more </a></div>
+          </div>
+          <div class="toolvarlist1__right">
+            <h3 class="toolvarlist1__title">Control Script</h3>
+            <p class="toolvarlist1__descr">An advanced command-line utility. It can <br />do the following:</p>
+            <div class="toolvarlist1__list">
+              <dl class="toolvarlist1__dl"><dt>Change the baseline topology</dt></dl>
+              <dl class="toolvarlist1__dl"><dt>Activate and deactivate the cluster</dt></dl>
+              <dl class="toolvarlist1__dl"><dt>Perform consistency checks of your data and indexes</dt></dl>
+              <dl class="toolvarlist1__dl"><dt>Detect long-running or hanging transactions</dt></dl>
+            </div>
+            <div class="toolvarlist1__more"><a class="button" href="/use-cases/in-memory-cache.html">Learn more</a></div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.toolingbox1-->
+    <section class="toolingbox container">
+      <h2 class="toolingbox__title h4 flexi"><img src="/img/features/tooling/icon-gridgain.svg" alt="" /><span>GRIDGAIN CONTROL CENTER</span></h2>
+      <div class="toolingbox__picwrap"><img src="/img/features/tooling/grid-gain.png" alt="" /></div>
+      <div class="toolingbox__bg">
+        <div class="toolingbox__picdescr h5">
+          GridGain Control Center is a troubleshooting, management <br />
+          and monitoring tool created just for Apache Ignite:
+        </div>
+        <div class="toolvarlist1 toolvarlist1--simple">
+          <div class="toolvarlist1__left">
+            <div class="toolvarlist1__list">
+              <dl class="toolvarlist1__dl"><dt>Debug SQL query performance bottleneck</dt></dl>
+              <dl class="toolvarlist1__dl"><dt>Define custom alerts to track and react on&nbsp;over 200 cluster, node, and storage</dt></dl>
+              <dl class="toolvarlist1__dl"><dt>Upgrade clusters while in production, with&nbsp;zero downtime</dt></dl>
+            </div>
+          </div>
+          <div class="toolvarlist1__right">
+            <div class="toolvarlist1__list">
+              <dl class="toolvarlist1__dl"><dt>Trace the performance of your operations under load</dt></dl>
+              <dl class="toolvarlist1__dl"><dt>Proactively manage data skews to optimize cluster utilization</dt></dl>
+              <dl class="toolvarlist1__dl"><dt>Monitor the state of the cluster with customizable dashboards</dt></dl>
+            </div>
+          </div>
+        </div>
+        <div class="toolvarlist1-bottom"><a class="button" href="https://www.gridgain.com/products/control-center" target="_blank">Learn more </a></div>
+      </div>
+    </section>
+    <!-- /.toolingbox2-->
+    <section class="toolingbox container">
+      <h2 class="toolingbox__title h4 flexi"><img src="/img/features/tooling/icon-datadog.svg" alt="" /><span>DATADOG INTEGRATION FOR APACHE IGNITE</span></h2>
+      <div class="toolingbox__picwrap"><img src="/img/features/tooling/data-dog.jpg" alt="" /></div>
+      <div class="toolingbox__bg">
+        <div class="toolingbox__picdescr h5">
+          Datadog is a general-purpose monitoring service that integrates <br />
+          natively with Apache Ignite and supports the following:
+        </div>
+        <div class="toolvarlist2">
+          <div class="toolvarlist2__item"><p>Collect and visualize metrics for your Ignite nodes through an out-of-the-box dashboard</p></div>
+          <div class="toolvarlist2__item"><p>Track cluster-wide memory usage, including detailed garbage collection activity</p></div>
+          <div class="toolvarlist2__item"><p>Use the built-in health check for Ignite to&nbsp;create an&nbsp;alert and notify you about the &laquo;node goes offline&raquo; events</p></div>
+        </div>
+        <div class="toolvarlist1-bottom"><a class="button" href="https://www.datadoghq.com/blog/monitor-apache-ignite-with-datadog/" target="_blank">Learn more </a></div>
+      </div>
+    </section>
+    <!-- /.toolingbox3-->
+    <section class="toolingbox container">
+      <h2 class="toolingbox__title h4 flexi"><img src="/img/features/tooling/icon-zabbix.svg" alt="" /><span>ZABBIX</span></h2>
+      <div class="toolingbox__picwrap"><img src="/img/features/tooling/zabbix.png" alt="" /></div>
+      <div class="toolingbox__bg">
+        <div class="toolingbox4__wrap">
+          <div class="toolingbox4__left">
+            <h3 class="toolingbox4__title">Zabbix is an open-source monitoring <br />software tool for diverse IT components:</h3>
+            <ul class="dashlist">
+              <li>networks</li>
+              <li>servers</li>
+              <li>virtual machines</li>
+              <li>cloud services</li>
+            </ul>
+          </div>
+          <div class="toolingbox4__right">
+            <h3 class="toolingbox4__title">Zabbix provides monitoring <br />metrics:</h3>
+            <ul class="dashlist">
+              <li>network utilization</li>
+              <li>CPU load</li>
+              <li>disk space consumption.</li>
+            </ul>
+          </div>
+        </div>
+        <div class="toolingbox4__numblock">
+          <h3 class="h5 toolingbox4__numtitle">Essential characteristics:</h3>
+          <div class="toolingbox4__numwrap pt-3">
+            <div class="toolingbox4__numitem">
+              <i>01</i>
+              <p>Official JMX Template for Apache Ignite computing platform.</p>
+              <p class="toolingbox4__small">This template is contributed and maintained by an Ignite community member.</p>
+            </div>
+            <div class="toolingbox4__numitem">
+              <i>02</i>
+              <p>For Zabbix version: 5.4 and higher of data loss or corruption execute on nodes across the cluster.</p>
+            </div>
+            <div class="toolingbox4__numitem">
+              <i>03</i>
+              <p>This template works with standalone and cluster instances. Metrics are collected by&nbsp;JMX. All metrics are discoverable.</p>
+            </div>
+          </div>
+        </div>
+        <div class="toolvarlist1-bottom"><a class="button" href="https://www.zabbix.com/integrations/ignite#tab:official1" target="_blank">Learn more </a></div>
+      </div>
+    </section>
+    <!-- /.toolingbox4-->
+    <section class="toolingend">
+      <div class="container flexi">
+        <div class="toolingend__main">
+          <h2 class="toolingend__title h4">Ready to Start with Apache Ignite?</h2>
+          <p class="fz20 pt-1x">Start with our Quick Start Guides and build your first application <br />in 5-10 minutes</p>
+        </div>
+        <div class="toolingend__action"><a class="button">Build your first application</a></div>
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/img/avatar.png b/public/img/avatar.png
new file mode 100644
index 0000000..5b5020b
--- /dev/null
+++ b/public/img/avatar.png
Binary files differ
diff --git a/public/img/community/b1-photo.svg b/public/img/community/b1-photo.svg
new file mode 100644
index 0000000..0f89558
--- /dev/null
+++ b/public/img/community/b1-photo.svg
@@ -0,0 +1,62 @@
+<svg width="489" height="503" viewBox="0 0 489 503" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="3.05176e-05" y="310.621" width="192.779" height="192.379" rx="10" fill="#FAE1E2"/>
+<path d="M77.6951 448.864V438.159H73.8718V435.979H84.1111V438.159H80.2966V448.864H77.6951ZM83.8738 444.065C83.8738 443.245 84.0759 442.451 84.4802 441.683C84.8845 440.916 85.4558 440.33 86.1941 439.925C86.9382 439.521 87.7673 439.319 88.6814 439.319C90.0935 439.319 91.2507 439.779 92.1531 440.699C93.0554 441.613 93.5066 442.77 93.5066 444.17C93.5066 445.583 93.0496 446.754 92.1355 447.686C91.2273 448.612 90.0818 449.075 88.699 449.075C87.8435 449.075 87.0261 448.881 86.2468 448.495C85.4734 448.108 84.8845 447.543 84.4802 446.798C84.0759 446.048 83.8738 445.137 83.8738 444.065ZM86.405 444.197C86.405 445.123 86.6247 445.832 87.0642 446.324C87.5037 446.816 88.0456 447.062 88.6902 447.062C89.3347 447.062 89.8738 446.816 90.3074 446.324C90.7468 445.832 90.9665 445.117 90.9665 444.179C90.9665 443.265 90.7468 442.562 90.3074 442.07C89.8738 441.578 89.3347 441.332 88.6902 441.332C88.0456 441.332 87.5037 441.578 87.0642 442.07C86.6247 442.562 86.405 443.271 86.405 444.197ZM95.3787 439.53H97.6814V440.901C97.9802 440.432 98.3845 440.051 98.8943 439.758C99.404 439.465 99.9695 439.319 100.591 439.319C101.675 439.319 102.594 439.744 103.35 440.593C104.106 441.443 104.484 442.627 104.484 444.144C104.484 445.703 104.103 446.916 103.342 447.783C102.58 448.644 101.657 449.075 100.573 449.075C100.057 449.075 99.5886 448.972 99.1667 448.767C98.7507 448.562 98.3113 448.211 97.8484 447.712V452.415H95.3787V439.53ZM97.822 444.039C97.822 445.087 98.03 445.864 98.446 446.368C98.8621 446.866 99.3689 447.115 99.9665 447.115C100.541 447.115 101.018 446.886 101.399 446.429C101.78 445.966 101.97 445.211 101.97 444.162C101.97 443.183 101.774 442.457 101.382 441.982C100.989 441.507 100.503 441.27 99.9226 441.27C99.3191 441.27 98.8181 441.504 98.4197 441.973C98.0212 442.436 97.822 443.125 97.822 444.039ZM106.172 445.427V442.958H111.023V445.427H106.172ZM111.955 445.55L114.416 445.295C114.486 445.852 114.694 446.294 115.04 446.623C115.385 446.945 115.784 447.106 116.235 447.106C116.751 447.106 117.187 446.898 117.545 446.482C117.902 446.06 118.081 445.427 118.081 444.584C118.081 443.793 117.902 443.201 117.545 442.808C117.193 442.41 116.733 442.211 116.165 442.211C115.456 442.211 114.82 442.524 114.258 443.151L112.254 442.861L113.519 436.155H120.05V438.466H115.391L115.005 440.655C115.555 440.379 116.118 440.242 116.692 440.242C117.788 440.242 118.717 440.64 119.478 441.437C120.24 442.234 120.621 443.268 120.621 444.54C120.621 445.6 120.313 446.546 119.698 447.378C118.86 448.515 117.697 449.084 116.209 449.084C115.019 449.084 114.05 448.764 113.3 448.126C112.55 447.487 112.101 446.628 111.955 445.55ZM16.0486 463.979H21.199C22.2185 463.979 22.9773 464.023 23.4753 464.111C23.9792 464.193 24.4275 464.369 24.8201 464.638C25.2185 464.908 25.5496 465.268 25.8132 465.719C26.0769 466.165 26.2087 466.666 26.2087 467.222C26.2087 467.826 26.0447 468.379 25.7165 468.883C25.3943 469.387 24.9548 469.765 24.3982 470.017C25.1833 470.246 25.7869 470.635 26.2087 471.186C26.6306 471.737 26.8415 472.384 26.8415 473.128C26.8415 473.714 26.7038 474.286 26.4285 474.842C26.1589 475.393 25.7869 475.836 25.3122 476.169C24.8435 476.498 24.2634 476.7 23.572 476.776C23.1384 476.823 22.0925 476.852 20.4343 476.864H16.0486V463.979ZM18.6501 466.124V469.103H20.3552C21.3689 469.103 21.9988 469.088 22.2449 469.059C22.6902 469.006 23.0388 468.854 23.2908 468.602C23.5486 468.344 23.6775 468.007 23.6775 467.591C23.6775 467.193 23.5662 466.871 23.3435 466.625C23.1267 466.373 22.8015 466.22 22.3679 466.168C22.1101 466.138 21.3689 466.124 20.1443 466.124H18.6501ZM18.6501 471.248V474.693H21.0583C21.9958 474.693 22.5906 474.667 22.8425 474.614C23.2292 474.544 23.5427 474.374 23.783 474.104C24.029 473.829 24.1521 473.462 24.1521 473.005C24.1521 472.619 24.0583 472.291 23.8708 472.021C23.6833 471.752 23.4109 471.555 23.0535 471.432C22.7019 471.309 21.9343 471.248 20.7507 471.248H18.6501ZM29.03 466.264V463.979H31.4997V466.264H29.03ZM29.03 476.864V467.53H31.4997V476.864H29.03ZM33.8113 477.479L36.6326 477.822C36.6794 478.15 36.7878 478.376 36.9578 478.499C37.1921 478.674 37.5613 478.762 38.0652 478.762C38.7097 478.762 39.1931 478.666 39.5154 478.472C39.7322 478.343 39.8962 478.135 40.0076 477.848C40.0837 477.643 40.1218 477.265 40.1218 476.714V475.352C39.3835 476.36 38.4519 476.864 37.3269 476.864C36.073 476.864 35.0798 476.334 34.3474 475.273C33.7732 474.435 33.4861 473.392 33.4861 472.144C33.4861 470.58 33.8611 469.384 34.6111 468.558C35.3669 467.732 36.3044 467.319 37.4236 467.319C38.5779 467.319 39.53 467.826 40.28 468.839V467.53H42.5915V475.906C42.5915 477.007 42.5007 477.831 42.3191 478.376C42.1374 478.92 41.8826 479.348 41.5544 479.659C41.2263 479.969 40.7869 480.212 40.2361 480.388C39.6912 480.564 38.9997 480.652 38.1619 480.652C36.5798 480.652 35.4578 480.379 34.7956 479.835C34.1335 479.295 33.8025 478.61 33.8025 477.778C33.8025 477.696 33.8054 477.596 33.8113 477.479ZM36.0173 472.003C36.0173 472.994 36.2078 473.72 36.5886 474.183C36.9753 474.64 37.4499 474.869 38.0124 474.869C38.616 474.869 39.1257 474.634 39.5417 474.166C39.9578 473.691 40.1658 472.991 40.1658 472.065C40.1658 471.098 39.9665 470.38 39.5681 469.912C39.1697 469.443 38.6658 469.209 38.0564 469.209C37.4646 469.209 36.9753 469.44 36.5886 469.903C36.2078 470.36 36.0173 471.06 36.0173 472.003ZM50.0622 463.979H54.8171C55.8894 463.979 56.7068 464.061 57.2693 464.225C58.0251 464.448 58.6726 464.843 59.2117 465.412C59.7507 465.98 60.1609 466.677 60.4421 467.503C60.7234 468.324 60.864 469.337 60.864 470.544C60.864 471.605 60.7322 472.519 60.4685 473.287C60.1462 474.224 59.6863 474.983 59.0886 475.563C58.6374 476.003 58.0281 476.345 57.2605 476.591C56.6863 476.773 55.9187 476.864 54.9578 476.864H50.0622V463.979ZM52.6638 466.159V474.693H54.6062C55.3328 474.693 55.8572 474.652 56.1794 474.57C56.6013 474.464 56.9499 474.286 57.2253 474.034C57.5066 473.782 57.7351 473.369 57.9109 472.794C58.0867 472.214 58.1746 471.426 58.1746 470.43C58.1746 469.434 58.0867 468.669 57.9109 468.136C57.7351 467.603 57.489 467.187 57.1726 466.888C56.8562 466.589 56.4548 466.387 55.9685 466.282C55.6052 466.2 54.8933 466.159 53.8328 466.159H52.6638ZM64.907 470.378L62.6658 469.973C62.9177 469.071 63.3513 468.403 63.9665 467.969C64.5818 467.536 65.4958 467.319 66.7087 467.319C67.8103 467.319 68.6306 467.451 69.1697 467.714C69.7087 467.972 70.0867 468.303 70.3035 468.708C70.5261 469.106 70.6374 469.841 70.6374 470.914L70.6111 473.796C70.6111 474.617 70.6492 475.223 70.7253 475.616C70.8074 476.003 70.9568 476.419 71.1736 476.864H68.7302C68.6658 476.7 68.5867 476.457 68.4929 476.134C68.4519 475.988 68.4226 475.891 68.405 475.844C67.9831 476.254 67.532 476.562 67.0515 476.767C66.571 476.972 66.0583 477.075 65.5134 477.075C64.5525 477.075 63.7937 476.814 63.2371 476.293C62.6863 475.771 62.4109 475.112 62.4109 474.315C62.4109 473.788 62.5369 473.319 62.7888 472.909C63.0408 472.493 63.3923 472.176 63.8435 471.96C64.3005 471.737 64.9568 471.544 65.8122 471.379C66.9665 471.163 67.7663 470.961 68.2117 470.773V470.527C68.2117 470.052 68.0945 469.715 67.8601 469.516C67.6257 469.311 67.1833 469.209 66.533 469.209C66.0935 469.209 65.7507 469.296 65.5046 469.472C65.2585 469.642 65.0593 469.944 64.907 470.378ZM68.2117 472.381C67.8953 472.487 67.3943 472.613 66.7087 472.759C66.0232 472.906 65.5749 473.049 65.364 473.19C65.0417 473.419 64.8806 473.709 64.8806 474.06C64.8806 474.406 65.0095 474.705 65.2673 474.957C65.5251 475.209 65.8533 475.335 66.2517 475.335C66.697 475.335 67.1218 475.188 67.5261 474.895C67.8249 474.672 68.0212 474.4 68.115 474.078C68.1794 473.867 68.2117 473.465 68.2117 472.874V472.381ZM77.3611 467.53V469.499H75.6736V473.26C75.6736 474.022 75.6882 474.467 75.7175 474.596C75.7527 474.719 75.8259 474.822 75.9372 474.904C76.0544 474.986 76.1951 475.027 76.3591 475.027C76.5876 475.027 76.9187 474.948 77.3523 474.79L77.5632 476.706C76.989 476.952 76.3386 477.075 75.6121 477.075C75.1667 477.075 74.7654 477.002 74.408 476.855C74.0505 476.703 73.7869 476.509 73.6169 476.275C73.4529 476.035 73.3386 475.712 73.2742 475.308C73.2214 475.021 73.1951 474.441 73.1951 473.568V469.499H72.0613V467.53H73.1951V465.675L75.6736 464.234V467.53H77.3611ZM80.9206 470.378L78.6794 469.973C78.9314 469.071 79.365 468.403 79.9802 467.969C80.5955 467.536 81.5095 467.319 82.7224 467.319C83.824 467.319 84.6443 467.451 85.1833 467.714C85.7224 467.972 86.1003 468.303 86.3171 468.708C86.5398 469.106 86.6511 469.841 86.6511 470.914L86.6247 473.796C86.6247 474.617 86.6628 475.223 86.739 475.616C86.821 476.003 86.9705 476.419 87.1872 476.864H84.7439C84.6794 476.7 84.6003 476.457 84.5066 476.134C84.4656 475.988 84.4363 475.891 84.4187 475.844C83.9968 476.254 83.5456 476.562 83.0652 476.767C82.5847 476.972 82.072 477.075 81.5271 477.075C80.5662 477.075 79.8074 476.814 79.2507 476.293C78.6999 475.771 78.4246 475.112 78.4246 474.315C78.4246 473.788 78.5505 473.319 78.8025 472.909C79.0544 472.493 79.406 472.176 79.8572 471.96C80.3142 471.737 80.9705 471.544 81.8259 471.379C82.9802 471.163 83.78 470.961 84.2253 470.773V470.527C84.2253 470.052 84.1081 469.715 83.8738 469.516C83.6394 469.311 83.197 469.209 82.5466 469.209C82.1072 469.209 81.7644 469.296 81.5183 469.472C81.2722 469.642 81.073 469.944 80.9206 470.378ZM84.2253 472.381C83.9089 472.487 83.408 472.613 82.7224 472.759C82.0369 472.906 81.5886 473.049 81.3777 473.19C81.0554 473.419 80.8943 473.709 80.8943 474.06C80.8943 474.406 81.0232 474.705 81.281 474.957C81.5388 475.209 81.8669 475.335 82.2654 475.335C82.7107 475.335 83.1355 475.188 83.5398 474.895C83.8386 474.672 84.0349 474.4 84.1287 474.078C84.1931 473.867 84.2253 473.465 84.2253 472.874V472.381ZM94.1042 463.979H96.7058V470.958C96.7058 472.065 96.738 472.783 96.8025 473.111C96.9138 473.638 97.1775 474.063 97.5935 474.385C98.0154 474.702 98.5896 474.86 99.3162 474.86C100.054 474.86 100.611 474.711 100.986 474.412C101.361 474.107 101.587 473.735 101.663 473.295C101.739 472.856 101.777 472.127 101.777 471.107V463.979H104.379V470.747C104.379 472.294 104.308 473.386 104.168 474.025C104.027 474.664 103.766 475.203 103.385 475.642C103.01 476.082 102.507 476.433 101.874 476.697C101.241 476.955 100.415 477.084 99.3953 477.084C98.1648 477.084 97.2302 476.943 96.5915 476.662C95.9587 476.375 95.4578 476.005 95.0886 475.554C94.7195 475.097 94.4763 474.62 94.3591 474.122C94.1892 473.383 94.1042 472.294 94.1042 470.852V463.979ZM106.242 474.201L108.72 473.823C108.826 474.303 109.04 474.669 109.362 474.921C109.684 475.168 110.135 475.291 110.716 475.291C111.354 475.291 111.835 475.173 112.157 474.939C112.374 474.775 112.482 474.555 112.482 474.28C112.482 474.092 112.424 473.937 112.306 473.814C112.183 473.697 111.908 473.588 111.48 473.489C109.488 473.049 108.225 472.648 107.692 472.285C106.954 471.781 106.585 471.081 106.585 470.184C106.585 469.376 106.904 468.696 107.543 468.145C108.181 467.594 109.172 467.319 110.513 467.319C111.791 467.319 112.74 467.527 113.361 467.943C113.982 468.359 114.41 468.974 114.644 469.789L112.315 470.219C112.216 469.856 112.025 469.578 111.744 469.384C111.468 469.191 111.073 469.094 110.557 469.094C109.907 469.094 109.441 469.185 109.16 469.367C108.972 469.496 108.879 469.663 108.879 469.868C108.879 470.044 108.961 470.193 109.125 470.316C109.347 470.48 110.115 470.711 111.427 471.01C112.746 471.309 113.666 471.675 114.187 472.109C114.703 472.548 114.961 473.161 114.961 473.946C114.961 474.801 114.603 475.537 113.888 476.152C113.174 476.767 112.116 477.075 110.716 477.075C109.444 477.075 108.436 476.817 107.692 476.301C106.954 475.786 106.47 475.086 106.242 474.201ZM122.537 473.893L124.998 474.306C124.681 475.209 124.18 475.897 123.495 476.372C122.815 476.84 121.963 477.075 120.937 477.075C119.314 477.075 118.113 476.544 117.334 475.484C116.718 474.634 116.411 473.562 116.411 472.267C116.411 470.72 116.815 469.51 117.624 468.637C118.432 467.758 119.455 467.319 120.691 467.319C122.08 467.319 123.176 467.779 123.978 468.699C124.781 469.613 125.165 471.016 125.13 472.909H118.942C118.96 473.641 119.159 474.212 119.54 474.623C119.921 475.027 120.395 475.229 120.964 475.229C121.35 475.229 121.676 475.124 121.939 474.913C122.203 474.702 122.402 474.362 122.537 473.893ZM122.677 471.397C122.66 470.682 122.475 470.14 122.124 469.771C121.772 469.396 121.344 469.209 120.841 469.209C120.302 469.209 119.856 469.405 119.505 469.797C119.153 470.19 118.98 470.723 118.986 471.397H122.677ZM129.515 476.864H127.046V467.53H129.34V468.857C129.732 468.23 130.084 467.817 130.394 467.618C130.711 467.419 131.068 467.319 131.467 467.319C132.029 467.319 132.571 467.474 133.093 467.785L132.328 469.938C131.912 469.669 131.525 469.534 131.168 469.534C130.822 469.534 130.529 469.63 130.289 469.824C130.049 470.011 129.858 470.354 129.718 470.852C129.583 471.35 129.515 472.393 129.515 473.981V476.864ZM139.262 476.864V464.085H141.864V474.693H148.333V476.864H139.262ZM150.178 466.264V463.979H152.648V466.264H150.178ZM150.178 476.864V467.53H152.648V476.864H150.178ZM154.318 474.201L156.797 473.823C156.902 474.303 157.116 474.669 157.438 474.921C157.76 475.168 158.212 475.291 158.792 475.291C159.43 475.291 159.911 475.173 160.233 474.939C160.45 474.775 160.558 474.555 160.558 474.28C160.558 474.092 160.5 473.937 160.383 473.814C160.26 473.697 159.984 473.588 159.556 473.489C157.564 473.049 156.302 472.648 155.768 472.285C155.03 471.781 154.661 471.081 154.661 470.184C154.661 469.376 154.98 468.696 155.619 468.145C156.258 467.594 157.248 467.319 158.59 467.319C159.867 467.319 160.816 467.527 161.437 467.943C162.058 468.359 162.486 468.974 162.72 469.789L160.391 470.219C160.292 469.856 160.101 469.578 159.82 469.384C159.545 469.191 159.149 469.094 158.634 469.094C157.983 469.094 157.517 469.185 157.236 469.367C157.049 469.496 156.955 469.663 156.955 469.868C156.955 470.044 157.037 470.193 157.201 470.316C157.424 470.48 158.191 470.711 159.504 471.01C160.822 471.309 161.742 471.675 162.263 472.109C162.779 472.548 163.037 473.161 163.037 473.946C163.037 474.801 162.679 475.537 161.965 476.152C161.25 476.767 160.192 477.075 158.792 477.075C157.52 477.075 156.512 476.817 155.768 476.301C155.03 475.786 154.547 475.086 154.318 474.201ZM169.488 467.53V469.499H167.801V473.26C167.801 474.022 167.815 474.467 167.844 474.596C167.88 474.719 167.953 474.822 168.064 474.904C168.181 474.986 168.322 475.027 168.486 475.027C168.715 475.027 169.046 474.948 169.479 474.79L169.69 476.706C169.116 476.952 168.466 477.075 167.739 477.075C167.294 477.075 166.892 477.002 166.535 476.855C166.177 476.703 165.914 476.509 165.744 476.275C165.58 476.035 165.466 475.712 165.401 475.308C165.348 475.021 165.322 474.441 165.322 473.568V469.499H164.188V467.53H165.322V465.675L167.801 464.234V467.53H169.488ZM170.332 474.201L172.81 473.823C172.916 474.303 173.13 474.669 173.452 474.921C173.774 475.168 174.225 475.291 174.805 475.291C175.444 475.291 175.925 475.173 176.247 474.939C176.464 474.775 176.572 474.555 176.572 474.28C176.572 474.092 176.513 473.937 176.396 473.814C176.273 473.697 175.998 473.588 175.57 473.489C173.578 473.049 172.315 472.648 171.782 472.285C171.044 471.781 170.675 471.081 170.675 470.184C170.675 469.376 170.994 468.696 171.633 468.145C172.271 467.594 173.261 467.319 174.603 467.319C175.881 467.319 176.83 467.527 177.451 467.943C178.072 468.359 178.5 468.974 178.734 469.789L176.405 470.219C176.305 469.856 176.115 469.578 175.834 469.384C175.558 469.191 175.163 469.094 174.647 469.094C173.997 469.094 173.531 469.185 173.25 469.367C173.062 469.496 172.969 469.663 172.969 469.868C172.969 470.044 173.051 470.193 173.215 470.316C173.437 470.48 174.205 470.711 175.517 471.01C176.836 471.309 177.756 471.675 178.277 472.109C178.793 472.548 179.051 473.161 179.051 473.946C179.051 474.801 178.693 475.537 177.978 476.152C177.263 476.767 176.206 477.075 174.805 477.075C173.534 477.075 172.526 476.817 171.782 476.301C171.044 475.786 170.56 475.086 170.332 474.201Z" fill="#2D2D2D"/>
+<path d="M46.1363 307.55H64.0426V301.401H39.306C36.6601 315.567 37.903 343.899 64.0426 343.899V337.57C45.4348 337.57 44.3518 317.557 46.1363 307.55Z" fill="white" stroke="black" stroke-linejoin="round"/>
+<path d="M150.285 307.55H132.378V301.401H157.115C159.761 315.567 158.518 343.899 132.378 343.899V337.57C150.986 337.57 152.069 317.557 150.285 307.55Z" fill="white" stroke="black" stroke-linejoin="round"/>
+<path d="M54.6639 365.425L73.6354 354.456L87.2949 365.425L65.2879 380.555V370.342L54.6639 365.425Z" fill="#F94239"/>
+<path d="M140.794 365.425L121.822 354.456L108.163 365.425L130.17 380.555V370.342L140.794 365.425Z" fill="#F94239"/>
+<path d="M89.7377 384.068L93.0226 367.186H103.972L107.257 384.068H89.7377Z" fill="white" stroke="black"/>
+<rect x="76.6712" y="384.319" width="44.1385" height="8.38433" rx="4.19216" fill="white" stroke="black"/>
+<rect x="71.0288" y="391.827" width="55.4231" height="10.2612" rx="5.1306" fill="white" stroke="black"/>
+<path d="M62.5654 290.476H134.915V331.191C134.915 351.17 118.719 367.366 98.7404 367.366C78.7615 367.366 62.5654 351.17 62.5654 331.191V290.476Z" fill="white" stroke="black"/>
+<path d="M86.2338 320.613H99.0821" stroke="black" stroke-linejoin="round"/>
+<path d="M86.2338 325.852H106.673" stroke="black" stroke-linejoin="round"/>
+<path d="M86.2338 330.509H106.673" stroke="black" stroke-linejoin="round"/>
+<path d="M86.2338 335.167H106.673" stroke="black" stroke-linejoin="round"/>
+<rect x="80.4327" y="310.183" width="34.7346" height="33.722" rx="9.5" stroke="black"/>
+<rect x="55.9827" y="282.03" width="84.575" height="12.1381" rx="6.06903" fill="white" stroke="black"/>
+<ellipse cx="143.409" cy="274.492" rx="16.4567" ry="16.4226" fill="#F94239"/>
+<path d="M148.72 280.42V283.414H137.04C137.167 282.282 137.546 281.211 138.178 280.202C138.811 279.185 140.06 277.839 141.926 276.165C143.428 274.812 144.349 273.894 144.689 273.412C145.147 272.747 145.376 272.09 145.376 271.44C145.376 270.721 145.175 270.17 144.772 269.788C144.376 269.398 143.827 269.203 143.123 269.203C142.428 269.203 141.874 269.406 141.463 269.811C141.052 270.216 140.815 270.889 140.752 271.83L137.431 271.508C137.629 269.735 138.25 268.461 139.293 267.689C140.337 266.917 141.641 266.531 143.206 266.531C144.922 266.531 146.27 266.978 147.25 267.873C148.23 268.767 148.72 269.88 148.72 271.21C148.72 271.967 148.578 272.69 148.293 273.378C148.017 274.058 147.574 274.773 146.965 275.523C146.562 276.02 145.835 276.735 144.783 277.667C143.732 278.6 143.064 279.22 142.779 279.525C142.503 279.831 142.277 280.13 142.104 280.42H148.72Z" fill="white"/>
+<rect x="154.223" y="48.7985" width="192.779" height="192.379" rx="10" fill="#ECF6FF"/>
+<path d="M227.686 191.733V181.028H223.863V178.848H234.102V181.028H230.288V191.733H227.686ZM233.865 186.934C233.865 186.114 234.067 185.32 234.472 184.553C234.876 183.785 235.447 183.199 236.185 182.795C236.93 182.39 237.759 182.188 238.673 182.188C240.085 182.188 241.242 182.648 242.144 183.568C243.047 184.482 243.498 185.639 243.498 187.04C243.498 188.452 243.041 189.624 242.127 190.555C241.219 191.481 240.073 191.944 238.69 191.944C237.835 191.944 237.017 191.751 236.238 191.364C235.465 190.977 234.876 190.412 234.472 189.668C234.067 188.918 233.865 188.007 233.865 186.934ZM236.396 187.066C236.396 187.992 236.616 188.701 237.056 189.193C237.495 189.685 238.037 189.931 238.682 189.931C239.326 189.931 239.865 189.685 240.299 189.193C240.738 188.701 240.958 187.986 240.958 187.049C240.958 186.135 240.738 185.431 240.299 184.939C239.865 184.447 239.326 184.201 238.682 184.201C238.037 184.201 237.495 184.447 237.056 184.939C236.616 185.431 236.396 186.14 236.396 187.066ZM245.37 182.399H247.673V183.77C247.972 183.302 248.376 182.921 248.886 182.628C249.395 182.335 249.961 182.188 250.582 182.188C251.666 182.188 252.586 182.613 253.342 183.463C254.098 184.312 254.475 185.496 254.475 187.014C254.475 188.572 254.095 189.785 253.333 190.652C252.571 191.514 251.648 191.944 250.564 191.944C250.049 191.944 249.58 191.842 249.158 191.637C248.742 191.431 248.303 191.08 247.84 190.582V195.284H245.37V182.399ZM247.813 186.908C247.813 187.957 248.021 188.733 248.437 189.237C248.853 189.735 249.36 189.984 249.958 189.984C250.532 189.984 251.01 189.756 251.391 189.299C251.771 188.836 251.962 188.08 251.962 187.031C251.962 186.053 251.766 185.326 251.373 184.851C250.98 184.377 250.494 184.139 249.914 184.139C249.31 184.139 248.809 184.374 248.411 184.843C248.013 185.305 247.813 185.994 247.813 186.908ZM256.163 188.297V185.827H261.015V188.297H256.163ZM261.946 188.42L264.407 188.165C264.477 188.722 264.685 189.164 265.031 189.492C265.377 189.814 265.775 189.975 266.226 189.975C266.742 189.975 267.179 189.767 267.536 189.351C267.893 188.93 268.072 188.297 268.072 187.453C268.072 186.662 267.893 186.07 267.536 185.678C267.184 185.279 266.725 185.08 266.156 185.08C265.447 185.08 264.811 185.393 264.249 186.02L262.245 185.73L263.511 179.024H270.041V181.336H265.383L264.996 183.524C265.547 183.249 266.109 183.111 266.683 183.111C267.779 183.111 268.708 183.51 269.47 184.306C270.231 185.103 270.612 186.138 270.612 187.409C270.612 188.47 270.305 189.416 269.689 190.248C268.851 191.385 267.688 191.953 266.2 191.953C265.011 191.953 264.041 191.634 263.291 190.995C262.541 190.356 262.093 189.498 261.946 188.42ZM205.055 206.848H207.656V213.827C207.656 214.934 207.688 215.652 207.753 215.98C207.864 216.508 208.128 216.932 208.544 217.255C208.966 217.571 209.54 217.729 210.266 217.729C211.005 217.729 211.561 217.58 211.936 217.281C212.311 216.976 212.537 216.604 212.613 216.165C212.689 215.725 212.727 214.996 212.727 213.976V206.848H215.329V213.616C215.329 215.163 215.259 216.256 215.118 216.894C214.977 217.533 214.717 218.072 214.336 218.512C213.961 218.951 213.457 219.303 212.824 219.566C212.191 219.824 211.365 219.953 210.346 219.953C209.115 219.953 208.181 219.812 207.542 219.531C206.909 219.244 206.408 218.875 206.039 218.424C205.67 217.967 205.427 217.489 205.309 216.991C205.14 216.253 205.055 215.163 205.055 213.722V206.848ZM217.192 217.07L219.671 216.692C219.776 217.173 219.99 217.539 220.312 217.791C220.635 218.037 221.086 218.16 221.666 218.16C222.305 218.16 222.785 218.043 223.107 217.808C223.324 217.644 223.433 217.425 223.433 217.149C223.433 216.962 223.374 216.806 223.257 216.683C223.134 216.566 222.858 216.458 222.431 216.358C220.438 215.919 219.176 215.517 218.642 215.154C217.904 214.65 217.535 213.95 217.535 213.054C217.535 212.245 217.854 211.565 218.493 211.014C219.132 210.464 220.122 210.188 221.464 210.188C222.741 210.188 223.69 210.396 224.311 210.812C224.933 211.228 225.36 211.844 225.595 212.658L223.266 213.089C223.166 212.725 222.975 212.447 222.694 212.254C222.419 212.06 222.023 211.964 221.508 211.964C220.857 211.964 220.391 212.055 220.11 212.236C219.923 212.365 219.829 212.532 219.829 212.737C219.829 212.913 219.911 213.062 220.075 213.185C220.298 213.349 221.065 213.581 222.378 213.88C223.696 214.179 224.616 214.545 225.138 214.978C225.653 215.418 225.911 216.03 225.911 216.815C225.911 217.671 225.554 218.406 224.839 219.021C224.124 219.637 223.066 219.944 221.666 219.944C220.394 219.944 219.387 219.686 218.642 219.171C217.904 218.655 217.421 217.955 217.192 217.07ZM233.487 216.763L235.948 217.176C235.632 218.078 235.131 218.766 234.445 219.241C233.766 219.71 232.913 219.944 231.888 219.944C230.265 219.944 229.063 219.414 228.284 218.353C227.669 217.504 227.361 216.431 227.361 215.137C227.361 213.59 227.766 212.38 228.574 211.507C229.383 210.628 230.405 210.188 231.641 210.188C233.03 210.188 234.126 210.648 234.929 211.568C235.731 212.482 236.115 213.886 236.08 215.778H229.892C229.91 216.511 230.109 217.082 230.49 217.492C230.871 217.896 231.346 218.098 231.914 218.098C232.301 218.098 232.626 217.993 232.89 217.782C233.153 217.571 233.352 217.231 233.487 216.763ZM233.628 214.266C233.61 213.552 233.426 213.01 233.074 212.64C232.723 212.265 232.295 212.078 231.791 212.078C231.252 212.078 230.807 212.274 230.455 212.667C230.103 213.059 229.931 213.593 229.936 214.266H233.628ZM240.466 219.733H237.996V210.399H240.29V211.726C240.683 211.099 241.034 210.686 241.345 210.487C241.661 210.288 242.018 210.188 242.417 210.188C242.979 210.188 243.521 210.344 244.043 210.654L243.278 212.807C242.862 212.538 242.475 212.403 242.118 212.403C241.772 212.403 241.479 212.5 241.239 212.693C240.999 212.881 240.808 213.223 240.668 213.722C240.533 214.22 240.466 215.263 240.466 216.85V219.733ZM250.213 219.733V206.954H252.814V217.562H259.283V219.733H250.213ZM261.129 209.134V206.848H263.599V209.134H261.129ZM261.129 219.733V210.399H263.599V219.733H261.129ZM265.268 217.07L267.747 216.692C267.852 217.173 268.066 217.539 268.389 217.791C268.711 218.037 269.162 218.16 269.742 218.16C270.381 218.16 270.861 218.043 271.183 217.808C271.4 217.644 271.509 217.425 271.509 217.149C271.509 216.962 271.45 216.806 271.333 216.683C271.21 216.566 270.934 216.458 270.507 216.358C268.515 215.919 267.252 215.517 266.719 215.154C265.98 214.65 265.611 213.95 265.611 213.054C265.611 212.245 265.931 211.565 266.569 211.014C267.208 210.464 268.198 210.188 269.54 210.188C270.817 210.188 271.766 210.396 272.388 210.812C273.009 211.228 273.436 211.844 273.671 212.658L271.342 213.089C271.242 212.725 271.052 212.447 270.77 212.254C270.495 212.06 270.1 211.964 269.584 211.964C268.933 211.964 268.468 212.055 268.186 212.236C267.999 212.365 267.905 212.532 267.905 212.737C267.905 212.913 267.987 213.062 268.151 213.185C268.374 213.349 269.141 213.581 270.454 213.88C271.772 214.179 272.692 214.545 273.214 214.978C273.729 215.418 273.987 216.03 273.987 216.815C273.987 217.671 273.63 218.406 272.915 219.021C272.2 219.637 271.142 219.944 269.742 219.944C268.471 219.944 267.463 219.686 266.719 219.171C265.98 218.655 265.497 217.955 265.268 217.07ZM280.438 210.399V212.368H278.751V216.13C278.751 216.891 278.766 217.337 278.795 217.466C278.83 217.589 278.903 217.691 279.015 217.773C279.132 217.855 279.272 217.896 279.436 217.896C279.665 217.896 279.996 217.817 280.43 217.659L280.641 219.575C280.066 219.821 279.416 219.944 278.689 219.944C278.244 219.944 277.843 219.871 277.485 219.724C277.128 219.572 276.864 219.379 276.694 219.144C276.53 218.904 276.416 218.582 276.351 218.178C276.299 217.89 276.272 217.31 276.272 216.437V212.368H275.139V210.399H276.272V208.545L278.751 207.103V210.399H280.438ZM281.282 217.07L283.761 216.692C283.866 217.173 284.08 217.539 284.402 217.791C284.725 218.037 285.176 218.16 285.756 218.16C286.394 218.16 286.875 218.043 287.197 217.808C287.414 217.644 287.522 217.425 287.522 217.149C287.522 216.962 287.464 216.806 287.347 216.683C287.224 216.566 286.948 216.458 286.52 216.358C284.528 215.919 283.266 215.517 282.732 215.154C281.994 214.65 281.625 213.95 281.625 213.054C281.625 212.245 281.944 211.565 282.583 211.014C283.222 210.464 284.212 210.188 285.554 210.188C286.831 210.188 287.78 210.396 288.401 210.812C289.022 211.228 289.45 211.844 289.684 212.658L287.355 213.089C287.256 212.725 287.065 212.447 286.784 212.254C286.509 212.06 286.113 211.964 285.598 211.964C284.947 211.964 284.481 212.055 284.2 212.236C284.013 212.365 283.919 212.532 283.919 212.737C283.919 212.913 284.001 213.062 284.165 213.185C284.388 213.349 285.155 213.581 286.468 213.88C287.786 214.179 288.706 214.545 289.227 214.978C289.743 215.418 290.001 216.03 290.001 216.815C290.001 217.671 289.643 218.406 288.929 219.021C288.214 219.637 287.156 219.944 285.756 219.944C284.484 219.944 283.476 219.686 282.732 219.171C281.994 218.655 281.511 217.955 281.282 217.07Z" fill="#2D2D2D"/>
+<path d="M196.711 49.4305H214.712V43.2493H189.844C187.184 57.4904 188.434 85.9727 214.712 85.9727V79.6097C196.006 79.6097 194.917 59.4902 196.711 49.4305Z" fill="white" stroke="black" stroke-linejoin="round"/>
+<path d="M301.412 49.4305H283.411V43.2493H308.279C310.939 57.4904 309.689 85.9727 283.411 85.9727V79.6097C302.118 79.6097 303.206 59.4902 301.412 49.4305Z" fill="white" stroke="black" stroke-linejoin="round"/>
+<path d="M205.283 107.613L224.355 96.5855L238.087 107.613L215.963 122.823V112.556L205.283 107.613Z" fill="#F94239"/>
+<path d="M291.871 107.613L272.799 96.5855L259.067 107.613L281.19 122.823V112.556L291.871 107.613Z" fill="#F94239"/>
+<path d="M240.544 126.355L243.846 109.383H254.854L258.156 126.355H240.544Z" fill="white" stroke="black"/>
+<rect x="227.133" y="126.25" width="45.0788" height="8.38433" rx="4.19216" fill="white" stroke="black"/>
+<rect x="221.49" y="133.757" width="56.3635" height="10.2612" rx="5.1306" fill="white" stroke="black"/>
+<path d="M213.027 32.4067H286.317V72.6515C286.317 92.89 269.911 109.297 249.672 109.297C229.434 109.297 213.027 92.8901 213.027 72.6515V32.4067Z" fill="white" stroke="black"/>
+<path d="M237.021 62.5626H249.938" stroke="black" stroke-linejoin="round"/>
+<path d="M237.021 67.8299H257.569" stroke="black" stroke-linejoin="round"/>
+<path d="M237.021 72.5119H257.569" stroke="black" stroke-linejoin="round"/>
+<path d="M237.021 77.1939H257.569" stroke="black" stroke-linejoin="round"/>
+<rect x="231.835" y="52.1138" width="34.7346" height="33.722" rx="9.5" stroke="black"/>
+<rect x="206.444" y="23.9608" width="85.5154" height="12.1381" rx="6.06903" fill="white" stroke="black"/>
+<ellipse cx="294.811" cy="16.4226" rx="16.4567" ry="16.4226" fill="#F94239"/>
+<path d="M299.84 22.1566V25.1659H288.097C288.225 24.0283 288.606 22.9521 289.242 21.9375C289.878 20.9151 291.133 19.5623 293.009 17.8789C294.519 16.5183 295.445 15.5959 295.786 15.1116C296.247 14.4429 296.478 13.7818 296.478 13.1285C296.478 12.4059 296.275 11.8525 295.87 11.4681C295.473 11.0761 294.92 10.8801 294.213 10.8801C293.514 10.8801 292.957 11.0838 292.544 11.4912C292.131 11.8986 291.892 12.575 291.829 13.5205L288.491 13.1976C288.689 11.4143 289.313 10.1345 290.362 9.35812C291.411 8.58175 292.723 8.19357 294.296 8.19357C296.021 8.19357 297.376 8.64325 298.361 9.5426C299.347 10.4419 299.84 11.5604 299.84 12.8979C299.84 13.6589 299.697 14.3852 299.41 15.0771C299.132 15.7612 298.687 16.4799 298.075 17.2332C297.67 17.7328 296.939 18.4515 295.882 19.3893C294.825 20.3271 294.153 20.9497 293.867 21.2572C293.589 21.5647 293.363 21.8645 293.188 22.1566H299.84Z" fill="white"/>
+<rect x="296.221" y="309.683" width="192.779" height="192.379" rx="10" fill="#EAEAEA"/>
+<path d="M372.506 449.802V439.097H368.682V436.917H378.922V439.097H375.107V449.802H372.506ZM378.684 445.003C378.684 444.183 378.887 443.389 379.291 442.622C379.695 441.854 380.266 441.268 381.005 440.864C381.749 440.459 382.578 440.257 383.492 440.257C384.904 440.257 386.061 440.717 386.964 441.637C387.866 442.551 388.317 443.709 388.317 445.109C388.317 446.521 387.86 447.693 386.946 448.625C386.038 449.55 384.892 450.013 383.51 450.013C382.654 450.013 381.837 449.82 381.057 449.433C380.284 449.046 379.695 448.481 379.291 447.737C378.887 446.987 378.684 446.076 378.684 445.003ZM381.216 445.135C381.216 446.061 381.435 446.77 381.875 447.262C382.314 447.754 382.856 448.001 383.501 448.001C384.145 448.001 384.684 447.754 385.118 447.262C385.557 446.77 385.777 446.055 385.777 445.118C385.777 444.204 385.557 443.501 385.118 443.008C384.684 442.516 384.145 442.27 383.501 442.27C382.856 442.27 382.314 442.516 381.875 443.008C381.435 443.501 381.216 444.209 381.216 445.135ZM390.189 440.468H392.492V441.839C392.791 441.371 393.195 440.99 393.705 440.697C394.215 440.404 394.78 440.257 395.401 440.257C396.485 440.257 397.405 440.682 398.161 441.532C398.917 442.381 399.295 443.565 399.295 445.083C399.295 446.641 398.914 447.854 398.152 448.721C397.39 449.583 396.468 450.013 395.384 450.013C394.868 450.013 394.399 449.911 393.977 449.706C393.561 449.501 393.122 449.149 392.659 448.651V453.353H390.189V440.468ZM392.633 444.977C392.633 446.026 392.841 446.802 393.257 447.306C393.673 447.804 394.18 448.053 394.777 448.053C395.351 448.053 395.829 447.825 396.21 447.368C396.591 446.905 396.781 446.149 396.781 445.1C396.781 444.122 396.585 443.395 396.192 442.92C395.8 442.446 395.313 442.209 394.733 442.209C394.13 442.209 393.629 442.443 393.23 442.912C392.832 443.375 392.633 444.063 392.633 444.977ZM400.982 446.366V443.896H405.834V446.366H400.982ZM406.765 446.489L409.226 446.234C409.297 446.791 409.505 447.233 409.85 447.561C410.196 447.883 410.595 448.044 411.046 448.044C411.561 448.044 411.998 447.836 412.355 447.42C412.713 446.999 412.891 446.366 412.891 445.522C412.891 444.731 412.713 444.139 412.355 443.747C412.004 443.348 411.544 443.149 410.975 443.149C410.266 443.149 409.631 443.462 409.068 444.089L407.064 443.799L408.33 437.093H414.86V439.405H410.202L409.815 441.593C410.366 441.318 410.929 441.18 411.503 441.18C412.598 441.18 413.527 441.579 414.289 442.376C415.051 443.172 415.431 444.207 415.431 445.478C415.431 446.539 415.124 447.485 414.509 448.317C413.671 449.454 412.508 450.022 411.019 450.022C409.83 450.022 408.86 449.703 408.11 449.064C407.36 448.425 406.912 447.567 406.765 446.489ZM314.366 464.917H319.516C320.536 464.917 321.295 464.961 321.793 465.049C322.297 465.131 322.745 465.307 323.138 465.577C323.536 465.846 323.867 466.207 324.131 466.658C324.394 467.103 324.526 467.604 324.526 468.161C324.526 468.764 324.362 469.318 324.034 469.822C323.712 470.326 323.272 470.704 322.716 470.956C323.501 471.184 324.104 471.574 324.526 472.125C324.948 472.675 325.159 473.323 325.159 474.067C325.159 474.653 325.021 475.224 324.746 475.781C324.476 476.332 324.104 476.774 323.63 477.108C323.161 477.436 322.581 477.638 321.889 477.714C321.456 477.761 320.41 477.791 318.752 477.802H314.366V464.917ZM316.968 467.062V470.042H318.673C319.686 470.042 320.316 470.027 320.562 469.998C321.008 469.945 321.356 469.792 321.608 469.541C321.866 469.283 321.995 468.946 321.995 468.53C321.995 468.131 321.884 467.809 321.661 467.563C321.444 467.311 321.119 467.159 320.685 467.106C320.428 467.077 319.686 467.062 318.462 467.062H316.968ZM316.968 472.186V475.631H319.376C320.313 475.631 320.908 475.605 321.16 475.552C321.547 475.482 321.86 475.312 322.1 475.042C322.347 474.767 322.47 474.401 322.47 473.944C322.47 473.557 322.376 473.229 322.188 472.959C322.001 472.69 321.728 472.494 321.371 472.371C321.019 472.248 320.252 472.186 319.068 472.186H316.968ZM327.347 467.203V464.917H329.817V467.203H327.347ZM327.347 477.802V468.468H329.817V477.802H327.347ZM332.129 478.417L334.95 478.76C334.997 479.088 335.105 479.314 335.275 479.437C335.51 479.613 335.879 479.701 336.383 479.701C337.027 479.701 337.511 479.604 337.833 479.411C338.05 479.282 338.214 479.074 338.325 478.787C338.401 478.582 338.439 478.204 338.439 477.653V476.291C337.701 477.298 336.769 477.802 335.644 477.802C334.39 477.802 333.397 477.272 332.665 476.211C332.091 475.374 331.804 474.331 331.804 473.083C331.804 471.518 332.179 470.323 332.929 469.497C333.684 468.67 334.622 468.257 335.741 468.257C336.895 468.257 337.847 468.764 338.597 469.778V468.468H340.909V476.844C340.909 477.946 340.818 478.769 340.637 479.314C340.455 479.859 340.2 480.287 339.872 480.597C339.544 480.908 339.104 481.151 338.554 481.327C338.009 481.502 337.317 481.59 336.479 481.59C334.897 481.59 333.775 481.318 333.113 480.773C332.451 480.234 332.12 479.548 332.12 478.716C332.12 478.634 332.123 478.535 332.129 478.417ZM334.335 472.942C334.335 473.932 334.525 474.659 334.906 475.122C335.293 475.579 335.767 475.807 336.33 475.807C336.933 475.807 337.443 475.573 337.859 475.104C338.275 474.629 338.483 473.929 338.483 473.003C338.483 472.037 338.284 471.319 337.886 470.85C337.487 470.381 336.983 470.147 336.374 470.147C335.782 470.147 335.293 470.378 334.906 470.841C334.525 471.298 334.335 471.999 334.335 472.942ZM348.38 464.917H353.135C354.207 464.917 355.024 465 355.587 465.164C356.343 465.386 356.99 465.782 357.529 466.35C358.068 466.918 358.478 467.616 358.76 468.442C359.041 469.262 359.181 470.276 359.181 471.483C359.181 472.543 359.05 473.458 358.786 474.225C358.464 475.163 358.004 475.921 357.406 476.501C356.955 476.941 356.346 477.284 355.578 477.53C355.004 477.711 354.236 477.802 353.275 477.802H348.38V464.917ZM350.981 467.097V475.631H352.924C353.65 475.631 354.175 475.59 354.497 475.508C354.919 475.403 355.267 475.224 355.543 474.972C355.824 474.72 356.053 474.307 356.228 473.733C356.404 473.153 356.492 472.365 356.492 471.369C356.492 470.373 356.404 469.608 356.228 469.075C356.053 468.542 355.806 468.126 355.49 467.827C355.174 467.528 354.772 467.326 354.286 467.22C353.923 467.138 353.211 467.097 352.15 467.097H350.981ZM363.224 471.316L360.983 470.912C361.235 470.009 361.669 469.341 362.284 468.908C362.899 468.474 363.813 468.257 365.026 468.257C366.128 468.257 366.948 468.389 367.487 468.653C368.026 468.911 368.404 469.242 368.621 469.646C368.844 470.044 368.955 470.78 368.955 471.852L368.929 474.735C368.929 475.555 368.967 476.162 369.043 476.554C369.125 476.941 369.274 477.357 369.491 477.802H367.048C366.983 477.638 366.904 477.395 366.81 477.073C366.769 476.926 366.74 476.83 366.722 476.783C366.301 477.193 365.849 477.501 365.369 477.706C364.889 477.911 364.376 478.013 363.831 478.013C362.87 478.013 362.111 477.752 361.555 477.231C361.004 476.709 360.728 476.05 360.728 475.253C360.728 474.726 360.854 474.257 361.106 473.847C361.358 473.431 361.71 473.115 362.161 472.898C362.618 472.675 363.274 472.482 364.13 472.318C365.284 472.101 366.084 471.899 366.529 471.711V471.465C366.529 470.991 366.412 470.654 366.178 470.455C365.943 470.25 365.501 470.147 364.85 470.147C364.411 470.147 364.068 470.235 363.822 470.411C363.576 470.581 363.377 470.882 363.224 471.316ZM366.529 473.32C366.213 473.425 365.712 473.551 365.026 473.698C364.341 473.844 363.892 473.988 363.681 474.128C363.359 474.357 363.198 474.647 363.198 474.999C363.198 475.344 363.327 475.643 363.585 475.895C363.843 476.147 364.171 476.273 364.569 476.273C365.014 476.273 365.439 476.126 365.844 475.834C366.142 475.611 366.339 475.338 366.432 475.016C366.497 474.805 366.529 474.404 366.529 473.812V473.32ZM375.679 468.468V470.437H373.991V474.199C373.991 474.96 374.006 475.406 374.035 475.535C374.07 475.658 374.143 475.76 374.255 475.842C374.372 475.924 374.513 475.965 374.677 475.965C374.905 475.965 375.236 475.886 375.67 475.728L375.881 477.644C375.306 477.89 374.656 478.013 373.93 478.013C373.484 478.013 373.083 477.94 372.725 477.793C372.368 477.641 372.104 477.448 371.934 477.213C371.77 476.973 371.656 476.651 371.592 476.247C371.539 475.959 371.513 475.379 371.513 474.506V470.437H370.379V468.468H371.513V466.614L373.991 465.172V468.468H375.679ZM379.238 471.316L376.997 470.912C377.249 470.009 377.682 469.341 378.298 468.908C378.913 468.474 379.827 468.257 381.04 468.257C382.141 468.257 382.962 468.389 383.501 468.653C384.04 468.911 384.418 469.242 384.635 469.646C384.857 470.044 384.969 470.78 384.969 471.852L384.942 474.735C384.942 475.555 384.98 476.162 385.056 476.554C385.139 476.941 385.288 477.357 385.505 477.802H383.061C382.997 477.638 382.918 477.395 382.824 477.073C382.783 476.926 382.754 476.83 382.736 476.783C382.314 477.193 381.863 477.501 381.383 477.706C380.902 477.911 380.389 478.013 379.845 478.013C378.884 478.013 378.125 477.752 377.568 477.231C377.017 476.709 376.742 476.05 376.742 475.253C376.742 474.726 376.868 474.257 377.12 473.847C377.372 473.431 377.723 473.115 378.175 472.898C378.632 472.675 379.288 472.482 380.143 472.318C381.298 472.101 382.097 471.899 382.543 471.711V471.465C382.543 470.991 382.426 470.654 382.191 470.455C381.957 470.25 381.514 470.147 380.864 470.147C380.425 470.147 380.082 470.235 379.836 470.411C379.59 470.581 379.39 470.882 379.238 471.316ZM382.543 473.32C382.226 473.425 381.725 473.551 381.04 473.698C380.354 473.844 379.906 473.988 379.695 474.128C379.373 474.357 379.212 474.647 379.212 474.999C379.212 475.344 379.341 475.643 379.598 475.895C379.856 476.147 380.184 476.273 380.583 476.273C381.028 476.273 381.453 476.126 381.857 475.834C382.156 475.611 382.352 475.338 382.446 475.016C382.511 474.805 382.543 474.404 382.543 473.812V473.32ZM392.431 464.917H397.185C398.258 464.917 399.075 465 399.638 465.164C400.393 465.386 401.041 465.782 401.58 466.35C402.119 466.918 402.529 467.616 402.81 468.442C403.092 469.262 403.232 470.276 403.232 471.483C403.232 472.543 403.1 473.458 402.837 474.225C402.514 475.163 402.055 475.921 401.457 476.501C401.006 476.941 400.396 477.284 399.629 477.53C399.055 477.711 398.287 477.802 397.326 477.802H392.431V464.917ZM395.032 467.097V475.631H396.974C397.701 475.631 398.225 475.59 398.548 475.508C398.97 475.403 399.318 475.224 399.594 474.972C399.875 474.72 400.103 474.307 400.279 473.733C400.455 473.153 400.543 472.365 400.543 471.369C400.543 470.373 400.455 469.608 400.279 469.075C400.103 468.542 399.857 468.126 399.541 467.827C399.224 467.528 398.823 467.326 398.337 467.22C397.973 467.138 397.262 467.097 396.201 467.097H395.032ZM410.835 474.832L413.296 475.245C412.979 476.147 412.478 476.835 411.793 477.31C411.113 477.779 410.261 478.013 409.235 478.013C407.612 478.013 406.411 477.483 405.632 476.422C405.016 475.573 404.709 474.501 404.709 473.206C404.709 471.659 405.113 470.449 405.922 469.576C406.73 468.697 407.753 468.257 408.989 468.257C410.378 468.257 411.473 468.717 412.276 469.637C413.079 470.551 413.463 471.955 413.428 473.847H407.24C407.258 474.58 407.457 475.151 407.838 475.561C408.219 475.965 408.693 476.167 409.262 476.167C409.648 476.167 409.973 476.062 410.237 475.851C410.501 475.64 410.7 475.3 410.835 474.832ZM410.975 472.335C410.958 471.621 410.773 471.079 410.422 470.709C410.07 470.334 409.642 470.147 409.139 470.147C408.599 470.147 408.154 470.343 407.803 470.736C407.451 471.128 407.278 471.662 407.284 472.335H410.975ZM418.015 477.802L414.254 468.468H416.847L418.604 473.232L419.114 474.823C419.249 474.418 419.334 474.152 419.369 474.023C419.451 473.759 419.539 473.496 419.633 473.232L421.408 468.468H423.948L420.239 477.802H418.015ZM430.566 477.802V465.023H433.168V475.631H439.637V477.802H430.566ZM441.482 467.203V464.917H443.952V467.203H441.482ZM441.482 477.802V468.468H443.952V477.802H441.482ZM445.622 475.139L448.1 474.761C448.206 475.242 448.42 475.608 448.742 475.86C449.064 476.106 449.515 476.229 450.096 476.229C450.734 476.229 451.215 476.112 451.537 475.877C451.754 475.713 451.862 475.494 451.862 475.218C451.862 475.031 451.804 474.876 451.686 474.752C451.563 474.635 451.288 474.527 450.86 474.427C448.868 473.988 447.605 473.586 447.072 473.223C446.334 472.719 445.965 472.019 445.965 471.123C445.965 470.314 446.284 469.634 446.923 469.084C447.561 468.533 448.552 468.257 449.893 468.257C451.171 468.257 452.12 468.465 452.741 468.881C453.362 469.297 453.79 469.913 454.024 470.727L451.695 471.158C451.596 470.794 451.405 470.516 451.124 470.323C450.848 470.129 450.453 470.033 449.937 470.033C449.287 470.033 448.821 470.124 448.54 470.305C448.352 470.434 448.259 470.601 448.259 470.806C448.259 470.982 448.341 471.131 448.505 471.254C448.727 471.418 449.495 471.65 450.807 471.949C452.126 472.248 453.046 472.614 453.567 473.047C454.083 473.487 454.341 474.099 454.341 474.884C454.341 475.74 453.983 476.475 453.268 477.09C452.554 477.706 451.496 478.013 450.096 478.013C448.824 478.013 447.816 477.755 447.072 477.24C446.334 476.724 445.85 476.024 445.622 475.139ZM460.792 468.468V470.437H459.104V474.199C459.104 474.96 459.119 475.406 459.148 475.535C459.183 475.658 459.257 475.76 459.368 475.842C459.485 475.924 459.626 475.965 459.79 475.965C460.018 475.965 460.349 475.886 460.783 475.728L460.994 477.644C460.42 477.89 459.769 478.013 459.043 478.013C458.598 478.013 458.196 477.94 457.839 477.793C457.481 477.641 457.218 477.448 457.048 477.213C456.884 476.973 456.769 476.651 456.705 476.247C456.652 475.959 456.626 475.379 456.626 474.506V470.437H455.492V468.468H456.626V466.614L459.104 465.172V468.468H460.792ZM461.636 475.139L464.114 474.761C464.22 475.242 464.433 475.608 464.756 475.86C465.078 476.106 465.529 476.229 466.109 476.229C466.748 476.229 467.228 476.112 467.551 475.877C467.767 475.713 467.876 475.494 467.876 475.218C467.876 475.031 467.817 474.876 467.7 474.752C467.577 474.635 467.302 474.527 466.874 474.427C464.882 473.988 463.619 473.586 463.086 473.223C462.348 472.719 461.978 472.019 461.978 471.123C461.978 470.314 462.298 469.634 462.936 469.084C463.575 468.533 464.565 468.257 465.907 468.257C467.184 468.257 468.134 468.465 468.755 468.881C469.376 469.297 469.804 469.913 470.038 470.727L467.709 471.158C467.609 470.794 467.419 470.516 467.138 470.323C466.862 470.129 466.467 470.033 465.951 470.033C465.301 470.033 464.835 470.124 464.554 470.305C464.366 470.434 464.272 470.601 464.272 470.806C464.272 470.982 464.354 471.131 464.518 471.254C464.741 471.418 465.509 471.65 466.821 471.949C468.139 472.248 469.059 472.614 469.581 473.047C470.097 473.487 470.354 474.099 470.354 474.884C470.354 475.74 469.997 476.475 469.282 477.09C468.567 477.706 467.51 478.013 466.109 478.013C464.838 478.013 463.83 477.755 463.086 477.24C462.348 476.724 461.864 476.024 461.636 475.139Z" fill="#2D2D2D"/>
+<path d="M337.06 307.746H355.038V301.573H330.203C327.546 315.796 328.794 344.241 355.038 344.241V337.886C336.356 337.886 335.268 317.793 337.06 307.746Z" fill="white" stroke="black" stroke-linejoin="round"/>
+<path d="M441.625 307.746H423.647V301.573H448.482C451.139 315.796 449.891 344.241 423.647 344.241V337.886C442.329 337.886 443.416 317.793 441.625 307.746Z" fill="white" stroke="black" stroke-linejoin="round"/>
+<path d="M345.622 365.853L364.669 354.84L378.383 365.853L356.288 381.043V370.79L345.622 365.853Z" fill="#F94239"/>
+<path d="M432.096 365.853L413.048 354.84L399.334 365.853L421.429 381.043V370.79L432.096 365.853Z" fill="#F94239"/>
+<path d="M380.836 384.57L384.134 367.62H395.127L398.425 384.57H380.836Z" fill="white" stroke="black"/>
+<rect x="367.25" y="384.319" width="45.0788" height="8.38433" rx="4.19216" fill="white" stroke="black"/>
+<rect x="361.608" y="391.827" width="55.4231" height="10.2612" rx="5.1306" fill="white" stroke="black"/>
+<path d="M353.144 291.414H426.435V331.659C426.435 351.898 410.028 368.304 389.789 368.304C369.551 368.304 353.144 351.898 353.144 331.659V291.414Z" fill="white" stroke="black"/>
+<path d="M377.318 320.861H390.218" stroke="black" stroke-linejoin="round"/>
+<path d="M377.318 326.122H397.839" stroke="black" stroke-linejoin="round"/>
+<path d="M377.318 330.798H397.839" stroke="black" stroke-linejoin="round"/>
+<path d="M377.318 335.474H397.839" stroke="black" stroke-linejoin="round"/>
+<rect x="371.952" y="311.121" width="34.7346" height="33.722" rx="9.5" stroke="black"/>
+<rect x="346.562" y="282.03" width="85.5154" height="12.1381" rx="6.06903" fill="white" stroke="black"/>
+<ellipse cx="434.928" cy="274.492" rx="16.4567" ry="16.4226" fill="#F94239"/>
+<path d="M429.254 279.145L432.38 278.748C432.48 279.582 432.748 280.221 433.185 280.662C433.621 281.104 434.15 281.324 434.77 281.324C435.437 281.324 435.996 281.059 436.448 280.53C436.908 280 437.138 279.286 437.138 278.386C437.138 277.536 436.919 276.861 436.483 276.364C436.046 275.866 435.514 275.617 434.885 275.617C434.472 275.617 433.977 275.701 433.403 275.87L433.759 273.113C434.633 273.137 435.299 272.94 435.759 272.523C436.218 272.097 436.448 271.536 436.448 270.837C436.448 270.243 436.28 269.77 435.943 269.416C435.606 269.063 435.157 268.887 434.598 268.887C434.046 268.887 433.575 269.087 433.185 269.489C432.794 269.89 432.556 270.476 432.472 271.247L429.495 270.717C429.702 269.649 430.013 268.798 430.426 268.164C430.848 267.522 431.43 267.02 432.173 266.659C432.924 266.29 433.763 266.105 434.69 266.105C436.276 266.105 437.548 266.635 438.505 267.695C439.295 268.562 439.689 269.541 439.689 270.632C439.689 272.182 438.881 273.418 437.264 274.341C438.23 274.558 439 275.043 439.574 275.798C440.156 276.552 440.448 277.463 440.448 278.531C440.448 280.08 439.907 281.401 438.827 282.492C437.747 283.584 436.402 284.13 434.793 284.13C433.269 284.13 432.005 283.672 431.001 282.757C429.997 281.834 429.415 280.63 429.254 279.145Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M406.263 151.607V151.611C402.308 151.718 399.125 154.909 399.047 158.859H399.044C398.965 154.871 395.722 151.657 391.715 151.609V151.605C395.671 151.499 398.855 148.308 398.933 144.357H398.936C399.015 148.344 402.256 151.558 406.263 151.607Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M261.876 377.463V377.469C254.522 377.668 248.604 383.601 248.459 390.945H248.454C248.307 383.532 242.279 377.556 234.829 377.465V377.459C242.184 377.261 248.103 371.327 248.248 363.982H248.254C248.4 371.395 254.427 377.37 261.876 377.463Z" fill="#2D2D2D"/>
+<mask id="path-57-inside-1" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M121.025 98.4677V98.4727C115.017 98.635 110.182 103.482 110.063 109.482H110.059C109.939 103.426 105.014 98.5442 98.9281 98.4694V98.4644C104.937 98.3028 109.772 93.4551 109.891 87.4545H109.895C110.015 93.5104 114.939 98.3922 121.025 98.4677Z"/>
+</mask>
+<path d="M121.025 98.4727H122.025V99.4461L121.052 99.4724L121.025 98.4727ZM121.025 98.4677L121.037 97.4677L122.025 97.48V98.4677H121.025ZM110.063 109.482L111.063 109.502L111.044 110.482H110.063V109.482ZM110.059 109.482V110.482H109.079L109.059 109.502L110.059 109.482ZM98.9281 98.4694L98.9158 99.4693L97.9281 99.4572V98.4694H98.9281ZM98.9281 98.4644H97.9281V97.4909L98.9013 97.4647L98.9281 98.4644ZM109.891 87.4545L108.891 87.4347L108.911 86.4545H109.891V87.4545ZM109.895 87.4545V86.4545H110.876L110.895 87.4347L109.895 87.4545ZM120.025 98.4727V98.4677H122.025V98.4727H120.025ZM121.052 99.4724C115.575 99.6203 111.171 104.039 111.063 109.502L109.064 109.463C109.193 102.925 114.459 97.6497 120.998 97.4731L121.052 99.4724ZM110.059 108.482H110.063V110.482H110.059V108.482ZM109.059 109.502C108.95 103.988 104.465 99.5375 98.9158 99.4693L98.9404 97.4695C105.564 97.5508 110.928 102.864 111.059 109.463L109.059 109.502ZM99.9281 98.4644V98.4694H97.9281V98.4644H99.9281ZM98.9013 97.4647C104.379 97.3175 108.783 92.8981 108.891 87.4347L110.891 87.4742C110.762 94.012 105.494 99.2882 98.955 99.464L98.9013 97.4647ZM109.895 88.4545H109.891V86.4545H109.895V88.4545ZM110.895 87.4347C111.004 92.9486 115.489 97.3989 121.037 97.4677L121.012 99.4676C114.39 99.3854 109.026 94.0723 108.896 87.4742L110.895 87.4347Z" fill="#2D2D2D" mask="url(#path-57-inside-1)"/>
+</svg>
diff --git a/public/img/community/b1-prize.svg b/public/img/community/b1-prize.svg
new file mode 100644
index 0000000..964dc3c
--- /dev/null
+++ b/public/img/community/b1-prize.svg
@@ -0,0 +1,16 @@
+<svg width="129" height="130" viewBox="0 0 129 130" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M9.29775 28.5542H28.3403V21.995H2.03411C-0.779761 37.1069 0.542071 67.3306 28.3403 67.3306V60.5785C8.55175 60.5785 7.40003 39.2289 9.29775 28.5542Z" fill="white" stroke="black" stroke-linejoin="round"/>
+<path d="M120.055 28.5542H101.013V21.995H127.319C130.133 37.1069 128.811 67.3306 101.013 67.3306V60.5785C120.801 60.5785 121.953 39.2289 120.055 28.5542Z" fill="white" stroke="black" stroke-linejoin="round"/>
+<path d="M18.3655 90.294L38.5409 78.5923L53.0672 90.294L29.6637 106.434V95.5396L18.3655 90.294Z" fill="#F94239"/>
+<path d="M109.962 90.294L89.7864 78.5923L75.2601 90.294L98.6636 106.434V95.5396L109.962 90.294Z" fill="#F94239"/>
+<path d="M55.6659 110.182L59.1593 92.1721H70.8037L74.297 110.182H55.6659Z" fill="white" stroke="black"/>
+<rect x="41.2611" y="110.061" width="47.4409" height="8.93659" rx="4.46829" fill="white" stroke="black"/>
+<rect x="35.6717" y="118.135" width="59.2406" height="10.7997" rx="5.39985" fill="white" stroke="black"/>
+<path d="M26.3562 10.6952H103.607V53.6678C103.607 75 86.3137 92.2931 64.9815 92.2931C43.6493 92.2931 26.3562 75 26.3562 53.6678V10.6952Z" fill="white" stroke="black"/>
+<path d="M51.9397 42.4892H65.6025" stroke="black" stroke-linejoin="round"/>
+<path d="M51.9397 48.0785H73.676" stroke="black" stroke-linejoin="round"/>
+<path d="M51.9397 53.0468H73.676" stroke="black" stroke-linejoin="round"/>
+<path d="M51.9397 58.0151H73.676" stroke="black" stroke-linejoin="round"/>
+<rect x="46.2293" y="31.8105" width="36.8832" height="36.2622" rx="9.5" stroke="black"/>
+<rect x="19.5247" y="1.31659" width="90.2924" height="12.6628" rx="6.3314" fill="white" stroke="black"/>
+</svg>
diff --git a/public/img/community/b11-stat-1.png b/public/img/community/b11-stat-1.png
new file mode 100644
index 0000000..abdf3e4
--- /dev/null
+++ b/public/img/community/b11-stat-1.png
Binary files differ
diff --git a/public/img/community/b11-stat-2.png b/public/img/community/b11-stat-2.png
new file mode 100644
index 0000000..5a5f5d7
--- /dev/null
+++ b/public/img/community/b11-stat-2.png
Binary files differ
diff --git a/public/img/community/b11-stat1.jpg b/public/img/community/b11-stat1.jpg
new file mode 100644
index 0000000..0fdb1c5
--- /dev/null
+++ b/public/img/community/b11-stat1.jpg
Binary files differ
diff --git a/public/img/community/b11-stat2.jpg b/public/img/community/b11-stat2.jpg
new file mode 100644
index 0000000..a5aa663
--- /dev/null
+++ b/public/img/community/b11-stat2.jpg
Binary files differ
diff --git a/public/img/community/b12-code.svg b/public/img/community/b12-code.svg
new file mode 100644
index 0000000..9ef2c25
--- /dev/null
+++ b/public/img/community/b12-code.svg
@@ -0,0 +1,6 @@
+<svg width="34" height="41" viewBox="0 0 34 41" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="1" y="1.22363" width="32" height="38" rx="4" stroke="black" stroke-width="2"/>
+<path d="M11.1187 16.499L7.1261 20.3013L11.1187 24.2941" stroke="#FF1019" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M23.6033 24.2939L27.5959 20.4917L23.6033 16.4989" stroke="#FF1019" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M15.0773 26.0684L19.2939 14.788" stroke="#FF1019" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+</svg>
diff --git a/public/img/community/b12-icon-quest.svg b/public/img/community/b12-icon-quest.svg
new file mode 100644
index 0000000..015f150
--- /dev/null
+++ b/public/img/community/b12-icon-quest.svg
@@ -0,0 +1,6 @@
+<svg width="48" height="49" viewBox="0 0 48 49" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M37.4512 4.90625H9.37803C6.1384 4.90625 3.51216 7.20475 3.51216 10.0401V32.8476C3.51216 35.683 6.13839 37.9815 9.37802 37.9815H32.09C33.2386 37.9815 34.3492 38.3934 35.22 39.1424L41.4242 44.4787C41.4676 44.516 41.5137 44.5502 41.5649 44.5758C42.3346 44.9617 43.317 44.4782 43.317 43.6826V10.0401C43.317 7.20475 40.6908 4.90625 37.4512 4.90625Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M2.55217 10.0401C2.55217 6.55839 5.73241 3.94629 9.37803 3.94629H37.4512C41.0968 3.94629 44.277 6.55839 44.277 10.0401V43.6827C44.277 44.5166 43.7558 45.1305 43.1613 45.4298C42.57 45.7275 41.8117 45.7734 41.1347 45.4341C40.9871 45.3601 40.8741 45.2719 40.7982 45.2066L34.594 39.8702C33.8973 39.271 33.0089 38.9415 32.09 38.9415H9.37803C5.7324 38.9415 2.55217 36.3294 2.55217 32.8477V10.0401ZM9.37803 5.86629C6.5444 5.86629 4.47217 7.85119 4.47217 10.0401V32.8477C4.47217 35.0366 6.5444 37.0215 9.37803 37.0215H32.09C33.4683 37.0215 34.801 37.5158 35.846 38.4146L42.0279 43.7317C42.1145 43.7629 42.2162 43.756 42.2979 43.7148C42.3317 43.6979 42.3495 43.681 42.357 43.6724V10.0401C42.357 7.85119 40.2848 5.86629 37.4512 5.86629H9.37803Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M26.2081 19.3392C27.0236 18.5841 27.4806 17.4414 27.4613 16.0398C27.4467 14.9725 27.1098 14.0335 26.4485 13.3598C25.7943 12.6933 24.7185 12.1806 23.0158 12.1596C21.3243 12.1386 20.3372 12.6383 19.7502 13.3476C19.1346 14.0915 18.813 15.2394 18.8343 16.7874L16.915 16.8082C16.8905 15.0308 17.2476 13.356 18.2703 12.1202C19.3215 10.8499 20.9324 10.2132 23.0339 10.2392C25.1242 10.2651 26.7292 10.9088 27.8161 12.0162C28.896 13.1164 29.3607 14.5689 29.3806 16.019C29.4059 17.8539 28.8015 19.5584 27.5142 20.7505C26.4288 21.7555 24.9423 22.3185 23.1502 22.354L23.2148 27.0457L21.2955 27.0664L21.2025 20.3101L22.2583 20.4034C24.1127 20.5672 25.3971 20.0902 26.2081 19.3392Z" fill="#ED1C24"/>
+<path d="M23.1921 30.1882C23.1921 31.0126 22.5352 31.681 21.725 31.681C20.9147 31.681 20.2578 31.0126 20.2578 30.1882C20.2578 29.3637 20.9147 28.6953 21.725 28.6953C22.5352 28.6953 23.1921 29.3637 23.1921 30.1882Z" fill="#F41820"/>
+</svg>
diff --git a/public/img/community/b12-lines.svg b/public/img/community/b12-lines.svg
new file mode 100644
index 0000000..b3ddb7a
--- /dev/null
+++ b/public/img/community/b12-lines.svg
@@ -0,0 +1,18 @@
+<svg width="242" height="283" viewBox="0 0 242 283" fill="none" xmlns="http://www.w3.org/2000/svg">
+<mask id="mask0" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="242" height="283">
+<rect x="0.0695801" y="0.1875" width="241.383" height="282" rx="10" fill="#F6F6F6"/>
+</mask>
+<g mask="url(#mask0)">
+<g opacity="0.3">
+<path d="M464.777 199.501L230.959 69.6313C199.514 52.1657 159.874 63.0959 141.824 94.2091L2.96221 333.566" stroke="#F4888D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M469.222 216.231L227.682 82.0716C200.525 66.9877 166.29 76.4275 150.701 103.298L7.40737 350.295" stroke="#F4888D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M473.945 234.006L232.405 99.847C205.248 84.7631 171.013 94.2029 155.424 121.073L12.1303 368.07" stroke="#F4888D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M478.668 251.781L237.128 117.622C209.971 102.539 175.736 111.978 160.147 138.849L16.8533 385.846" stroke="#F4888D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M483.391 269.556L241.851 135.397C214.694 120.313 180.459 129.753 164.87 156.623L21.5763 403.62" stroke="#F4888D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M488.114 287.331L246.574 153.172C219.417 138.088 185.182 147.528 169.593 174.399L26.2993 421.396" stroke="#F4888D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M492.837 305.107L251.297 170.948C224.14 155.864 189.905 165.303 174.316 192.174L31.0223 439.171" stroke="#F4888D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M497.56 322.882L256.02 188.723C228.863 173.639 194.628 183.079 179.039 209.949L35.7453 456.946" stroke="#F4888D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M502.283 340.656L260.743 206.497C233.586 191.414 199.351 200.853 183.762 227.724L40.4683 474.721" stroke="#F4888D" stroke-linecap="round" stroke-linejoin="round"/>
+</g>
+</g>
+</svg>
diff --git a/public/img/community/b13-bg-roundes.svg b/public/img/community/b13-bg-roundes.svg
new file mode 100644
index 0000000..207b578
--- /dev/null
+++ b/public/img/community/b13-bg-roundes.svg
@@ -0,0 +1,31 @@
+<svg width="150" height="208" viewBox="0 0 150 208" fill="none" xmlns="http://www.w3.org/2000/svg">
+<mask id="mask0" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="150" height="208">
+<rect x="0.851074" y="0.801758" width="148.343" height="206.635" rx="9.5" fill="white" stroke="#ED1C24"/>
+</mask>
+<g mask="url(#mask0)">
+<rect x="0.838253" width="59.9626" height="56.0297" rx="9.5" transform="matrix(0.838253 -0.545282 0.838253 0.545282 81.4689 92.753)" fill="white" stroke="#ED1C24"/>
+<rect x="0.838253" width="59.9626" height="56.0297" rx="9.5" transform="matrix(0.838253 -0.545282 0.838253 0.545282 81.4689 81.8077)" fill="white" stroke="#ED1C24"/>
+<rect x="0.838253" width="59.9626" height="56.0297" rx="9.5" transform="matrix(0.838253 -0.545282 0.838253 0.545282 81.5106 71.0811)" fill="white" stroke="#ED1C24"/>
+<rect x="0.838253" width="59.9626" height="56.0297" rx="9.5" transform="matrix(0.838253 -0.545282 0.838253 0.545282 80.7412 60.0323)" fill="white" stroke="#ED1C24"/>
+<path d="M109.087 52.1747C107.489 59.7139 110.944 65.0177 115.18 67.773C123.856 73.4172 137.713 73.2816 146.39 67.6374C149.203 65.8073 152.742 61.0636 152.357 52.0198" stroke="#ED1C24"/>
+<path d="M130.467 43.2783L131.019 71.4407" stroke="#ED1C24" stroke-linecap="round" stroke-linejoin="round"/>
+<circle r="10.3995" transform="matrix(0.838253 -0.545282 0.838253 0.545282 130.678 57.417)" fill="white" stroke="#ED1C24"/>
+<circle r="18.2422" transform="matrix(0.838253 -0.545282 0.838253 0.545282 130.679 51.9834)" fill="white" stroke="#ED1C24"/>
+<path d="M109.095 51.7471L152.388 52.1058" stroke="#ED1C24" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M130.467 37.8447L131.018 66.0071" stroke="#ED1C24" stroke-linecap="round" stroke-linejoin="round"/>
+<circle r="10.3995" transform="matrix(0.838253 -0.545282 0.838253 0.545282 130.678 51.9834)" fill="white" stroke="#ED1C24"/>
+<path d="M118.746 52.8604C118.746 52.8604 122.517 48.1285 130.632 47.9658C138.748 47.803 142.355 52.8604 142.355 52.8604" stroke="#ED1C24" stroke-linecap="round" stroke-linejoin="round"/>
+<rect x="0.838253" width="86.1434" height="80.5216" rx="9.5" transform="matrix(0.838253 -0.545282 0.838253 0.545282 8.38668 184.136)" fill="white" stroke="#ED1C24"/>
+<rect x="0.838253" width="86.1434" height="80.5216" rx="9.5" transform="matrix(0.838253 -0.545282 0.838253 0.545282 8.38668 167.071)" fill="white" stroke="#ED1C24"/>
+<rect x="0.838253" width="86.1434" height="80.5216" rx="9.5" transform="matrix(0.838253 -0.545282 0.838253 0.545282 8.44628 154.578)" fill="white" stroke="#ED1C24"/>
+<rect x="0.838253" width="86.1434" height="80.5216" rx="9.5" transform="matrix(0.838253 -0.545282 0.838253 0.545282 7.3464 131.69)" fill="white" stroke="#ED1C24"/>
+<path d="M47.9236 120.654C45.6402 131.431 50.5782 139.012 56.6328 142.951C69.0358 151.019 88.8435 150.825 101.247 142.757C105.268 140.141 110.878 133.512 109.882 120.46" stroke="#ED1C24"/>
+<path d="M78.4857 107.938L79.274 148.195" stroke="#ED1C24" stroke-linecap="round" stroke-linejoin="round"/>
+<circle r="15.0804" transform="matrix(0.838253 -0.545282 0.838253 0.545282 78.7879 128.149)" fill="white" stroke="#ED1C24"/>
+<circle r="26.2911" transform="matrix(0.838253 -0.545282 0.838253 0.545282 78.7886 120.38)" fill="white" stroke="#ED1C24"/>
+<path d="M47.9343 120.043L109.821 120.556" stroke="#ED1C24" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M78.4855 100.17L79.2737 140.427" stroke="#ED1C24" stroke-linecap="round" stroke-linejoin="round"/>
+<circle r="15.0804" transform="matrix(0.838253 -0.545282 0.838253 0.545282 78.7875 120.38)" fill="white" stroke="#ED1C24"/>
+<path d="M61.7313 121.634C61.7313 121.634 67.1214 114.87 78.7222 114.637C90.3229 114.405 95.4787 121.634 95.4787 121.634" stroke="#ED1C24" stroke-linecap="round" stroke-linejoin="round"/>
+</g>
+</svg>
diff --git a/public/img/community/b13-bg-squares.svg b/public/img/community/b13-bg-squares.svg
new file mode 100644
index 0000000..c006045
--- /dev/null
+++ b/public/img/community/b13-bg-squares.svg
@@ -0,0 +1,31 @@
+<svg width="201" height="201" viewBox="0 0 201 201" fill="none" xmlns="http://www.w3.org/2000/svg">
+<mask id="mask0" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="201" height="201">
+<rect x="1.28229" y="0.770508" width="198.492" height="199.081" rx="9.5" fill="white" stroke="#E5E5E5"/>
+</mask>
+<g mask="url(#mask0)">
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 165.758 20.5469)" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 166.481 29.3711)" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 166.481 38.9687)" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 166.481 48.5693)" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 166.481 58.1689)" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 166.471 67.7744)" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 166.471 77.373)" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 165.935 11.0566)" fill="white" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 59.4058 88.0303)" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 60.1292 96.8545)" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 60.1292 106.452)" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 60.1292 116.053)" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 60.1292 125.652)" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 60.1192 135.258)" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 60.1192 144.856)" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 59.5827 78.54)" fill="white" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 166.394 116.033)" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 167.117 124.857)" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 167.117 134.455)" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 167.117 144.056)" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 167.117 153.655)" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 167.107 163.261)" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 167.107 172.859)" stroke="#ED1C24"/>
+<rect x="1.19209e-07" y="0.593822" width="66.5051" height="66.5051" transform="matrix(-0.804597 0.593822 0.804597 0.593822 166.571 106.543)" fill="white" stroke="#ED1C24"/>
+</g>
+</svg>
diff --git a/public/img/community/b13-bottom.png b/public/img/community/b13-bottom.png
new file mode 100644
index 0000000..eee0f41
--- /dev/null
+++ b/public/img/community/b13-bottom.png
Binary files differ
diff --git a/public/img/community/b13-lines.svg b/public/img/community/b13-lines.svg
new file mode 100644
index 0000000..5fbc788
--- /dev/null
+++ b/public/img/community/b13-lines.svg
@@ -0,0 +1,4 @@
+<svg width="110" height="162" viewBox="0 0 110 162" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M0 60.3083H26.0754C37.1211 60.3083 46.0754 51.354 46.0754 40.3083V21.4736C46.0754 10.4279 55.0297 1.47363 66.0754 1.47363H108.585" stroke="#E6E6E6"/>
+<path d="M109.585 160.826H65.51C54.4643 160.826 45.5101 151.872 45.5101 140.826V121.991C45.5101 110.945 36.5558 101.991 25.5101 101.991H7.62939e-06" stroke="#E6E6E6"/>
+</svg>
diff --git a/public/img/community/b15-askimg.svg b/public/img/community/b15-askimg.svg
new file mode 100644
index 0000000..5d5fb66
--- /dev/null
+++ b/public/img/community/b15-askimg.svg
@@ -0,0 +1,25 @@
+<svg width="529" height="245" viewBox="0 0 529 245" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M121.355 152.96V237.528C121.355 240.841 124.042 243.528 127.355 243.528H228.892C232.206 243.528 234.892 240.841 234.892 237.528V173.33V107.099C234.892 103.785 237.578 101.099 240.892 101.099H310.241" stroke="#ED1C24" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M283.503 157.086C283.503 152.944 280.145 149.586 276.003 149.586H202.642C201.011 149.586 199.414 149.117 198.043 148.234L179.049 136.012V222.09C179.049 226.232 182.407 229.59 186.549 229.59H276.003C280.145 229.59 283.503 226.232 283.503 222.09V157.086Z" fill="white" stroke="#ED1C24" stroke-linejoin="round"/>
+<circle cx="211.798" cy="189.609" r="5.95923" fill="#ED1C24"/>
+<circle cx="231.276" cy="189.609" r="5.95923" fill="#ED1C24"/>
+<circle cx="250.755" cy="189.609" r="5.95923" fill="#ED1C24"/>
+<path d="M442.269 32.1308L463.76 37.8179L463.76 6.90944L442.269 1.22231L421.155 7.7941L421.155 38.5742L442.269 32.1308Z" fill="white" stroke="#2D2D2D"/>
+<path d="M442.646 13.7149L421.155 8.02779L421.155 45.7179L442.646 51.405L463.76 44.8332L463.76 7.27148L442.646 13.7149Z" fill="white" stroke="#2D2D2D"/>
+<path d="M442.331 13.6553L442.331 50.7759" stroke="#2D2D2D"/>
+<path d="M433.252 49.4746V71.4677C433.252 74.7814 435.938 77.4677 439.252 77.4677H479.364C482.677 77.4677 485.364 80.154 485.364 83.4677V101.106" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<rect x="0.5" y="36.2744" width="164.878" height="120.6" rx="6.5" fill="white" stroke="#ED1C24"/>
+<path d="M28.654 77.2197H135.822" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M28.654 97.2959H135.822" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M28.654 118.343H135.822" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M139.891 50.0732L151.006 61.1887" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M151.006 50.0732L139.891 61.1887" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<rect x="455.894" y="101.099" width="72.3379" height="72.3379" rx="10" fill="#2D2D2D"/>
+<path d="M481.298 127.605C481.191 119.944 484.48 114.6 493.371 114.708C502.263 114.816 505.94 120.036 506.021 125.835C506.125 133.291 501.431 138.954 491.769 138.115L491.769 151.168" stroke="white"/>
+<circle cx="491.325" cy="158.425" r="1.141" fill="white"/>
+<path d="M485.364 173.33V230.562C485.364 233.875 482.677 236.562 479.364 236.562H429.553C426.24 236.562 423.553 233.875 423.553 230.562V107.099C423.553 103.785 420.867 101.099 417.553 101.099H366.897" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M295.599 124.299C295.599 128.441 298.957 131.799 303.099 131.799H379.155C380.786 131.799 382.383 132.269 383.754 133.151L403.448 145.824V56.6877C403.448 52.5456 400.09 49.1877 395.948 49.1877L303.099 49.1877C298.957 49.1877 295.599 52.5456 295.599 56.6877V124.299Z" fill="white" stroke="black" stroke-linejoin="round"/>
+<circle cx="331.295" cy="91.7542" r="5.95923" fill="black"/>
+<circle cx="350.773" cy="91.7542" r="5.95923" fill="black"/>
+<circle cx="370.252" cy="91.7542" r="5.95923" fill="black"/>
+</svg>
diff --git a/public/img/community/b16-icon-comments.svg b/public/img/community/b16-icon-comments.svg
new file mode 100644
index 0000000..87750e7
--- /dev/null
+++ b/public/img/community/b16-icon-comments.svg
@@ -0,0 +1,12 @@
+<svg width="49" height="48" viewBox="0 0 49 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M12.4514 20.802C12.4514 25.0436 15.8898 28.482 20.1314 28.482L39.166 28.482C40.6576 28.482 42.1168 28.9164 43.3656 29.732L48.9839 33.4014V7.67951C48.9839 3.43796 45.5454 -0.000499725 41.3039 -0.000499725L20.1314 -0.000499725C15.8898 -0.000499725 12.4514 3.43796 12.4514 7.67951L12.4514 20.802Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M48.9839 33.4014L43.3656 29.732C42.1168 28.9164 40.6576 28.482 39.166 28.482L20.1314 28.482C15.8898 28.482 12.4514 25.0436 12.4514 20.802L12.4514 7.67951C12.4514 3.43796 15.8898 -0.000499725 20.1314 -0.000499725L41.3039 -0.000499725C45.5454 -0.000499725 48.9839 3.43796 48.9839 7.67951V33.4014ZM47.0639 29.8541L44.4155 28.1245C42.8545 27.1049 41.0305 26.562 39.166 26.562L20.1314 26.562C16.9502 26.562 14.3714 23.9832 14.3714 20.802L14.3714 7.67951C14.3714 4.49834 16.9502 1.9195 20.1314 1.9195L41.3039 1.9195C44.485 1.9195 47.0639 4.49835 47.0639 7.67951V29.8541Z" fill="black"/>
+<path d="M36.3767 28.0855C36.3767 23.844 32.9383 20.4055 28.6967 20.4055L10.5668 20.4055C9.07522 20.4055 7.61594 19.9712 6.36715 19.1556L0.983868 15.6396V40.3196C0.983868 44.5611 4.42232 47.9996 8.66387 47.9996H28.6967C32.9383 47.9996 36.3767 44.5611 36.3767 40.3196V28.0855Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M0.983868 15.6396L6.36715 19.1556C7.61594 19.9712 9.07522 20.4055 10.5668 20.4055L28.6967 20.4055C32.9383 20.4055 36.3767 23.844 36.3767 28.0855V40.3196C36.3767 44.5611 32.9383 47.9996 28.6967 47.9996H8.66387C4.42232 47.9996 0.983868 44.5611 0.983868 40.3196V15.6396ZM2.90387 19.1869L5.31725 20.7631C6.87824 21.7826 8.70233 22.3255 10.5668 22.3255L28.6967 22.3255C31.8779 22.3255 34.4567 24.9044 34.4567 28.0855V40.3196C34.4567 43.5007 31.8779 46.0796 28.6967 46.0796H8.66387C5.48271 46.0796 2.90387 43.5007 2.90387 40.3196V19.1869Z" fill="#F41921"/>
+<path d="M14.1432 34.2097C14.1432 35.3309 13.2477 36.2397 12.1431 36.2397C11.0385 36.2397 10.143 35.3309 10.143 34.2097C10.143 33.0886 11.0385 32.1797 12.1431 32.1797C13.2477 32.1797 14.1432 33.0886 14.1432 34.2097Z" fill="#F41921"/>
+<path d="M26.5997 14.6707C26.5997 15.7918 25.7042 16.7007 24.5996 16.7007C23.495 16.7007 22.5995 15.7918 22.5995 14.6707C22.5995 13.5495 23.495 12.6406 24.5996 12.6406C25.7042 12.6406 26.5997 13.5495 26.5997 14.6707Z" fill="black"/>
+<path d="M20.6805 34.2097C20.6805 35.3309 19.785 36.2397 18.6804 36.2397C17.5758 36.2397 16.6803 35.3309 16.6803 34.2097C16.6803 33.0886 17.5758 32.1797 18.6804 32.1797C19.785 32.1797 20.6805 33.0886 20.6805 34.2097Z" fill="#F41921"/>
+<path d="M33.1369 14.6707C33.1369 15.7918 32.2414 16.7007 31.1368 16.7007C30.0322 16.7007 29.1368 15.7918 29.1368 14.6707C29.1368 13.5495 30.0322 12.6406 31.1368 12.6406C32.2414 12.6406 33.1369 13.5495 33.1369 14.6707Z" fill="black"/>
+<path d="M27.2179 34.2097C27.2179 35.3309 26.3224 36.2397 25.2178 36.2397C24.1132 36.2397 23.2178 35.3309 23.2178 34.2097C23.2178 33.0886 24.1132 32.1797 25.2178 32.1797C26.3224 32.1797 27.2179 33.0886 27.2179 34.2097Z" fill="#F41921"/>
+<path d="M39.6744 14.6707C39.6744 15.7918 38.7789 16.7007 37.6743 16.7007C36.5697 16.7007 35.6743 15.7918 35.6743 14.6707C35.6743 13.5495 36.5697 12.6406 37.6743 12.6406C38.7789 12.6406 39.6744 13.5495 39.6744 14.6707Z" fill="black"/>
+</svg>
diff --git a/public/img/community/b16-icon-quest.svg b/public/img/community/b16-icon-quest.svg
new file mode 100644
index 0000000..cc5a0ce
--- /dev/null
+++ b/public/img/community/b16-icon-quest.svg
@@ -0,0 +1,6 @@
+<svg width="49" height="48" viewBox="0 0 49 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M38.4351 4.68262H10.3619C7.1223 4.68262 4.49606 6.98112 4.49606 9.81647V32.624C4.49606 35.4593 7.1223 37.7578 10.3619 37.7578H33.0739C34.2225 37.7578 35.3331 38.1697 36.2039 38.9188L42.4081 44.2551C42.4515 44.2924 42.4977 44.3266 42.5488 44.3522C43.3185 44.7381 44.3009 44.2546 44.3009 43.459V9.81647C44.3009 6.98112 41.6747 4.68262 38.4351 4.68262Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M3.53604 9.8165C3.53604 6.33476 6.71628 3.72266 10.3619 3.72266H38.435C42.0807 3.72266 45.2609 6.33476 45.2609 9.8165V43.459C45.2609 44.2929 44.7397 44.9068 44.1452 45.2062C43.5539 45.5038 42.7956 45.5498 42.1185 45.2104C41.971 45.1365 41.858 45.0483 41.7821 44.9829L35.5779 39.6466C34.8812 39.0474 33.9928 38.7179 33.0738 38.7179H10.3619C6.71627 38.7179 3.53604 36.1058 3.53604 32.624V9.8165ZM10.3619 5.64266C7.52828 5.64266 5.45604 7.62756 5.45604 9.8165V32.624C5.45604 34.813 7.52827 36.7979 10.3619 36.7979H33.0738C34.4522 36.7979 35.7849 37.2922 36.8299 38.191L43.0117 43.5081C43.0983 43.5393 43.2 43.5324 43.2818 43.4912C43.3155 43.4742 43.3334 43.4574 43.3409 43.4488V9.8165C43.3409 7.62756 41.2687 5.64266 38.435 5.64266H10.3619Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M27.192 19.1156C28.0075 18.3605 28.4645 17.2177 28.4452 15.8161C28.4305 14.7489 28.0936 13.8098 27.4324 13.1361C26.7782 12.4696 25.7024 11.957 23.9997 11.9359C22.3082 11.915 21.3211 12.4147 20.7341 13.124C20.1185 13.8678 19.7969 15.0157 19.8182 16.5638L17.8989 16.5846C17.8744 14.8072 18.2315 13.1323 19.2542 11.8966C20.3054 10.6263 21.9163 9.98954 24.0178 10.0156C26.1081 10.0415 27.7131 10.6852 28.8 11.7926C29.8799 12.8928 30.3446 14.3452 30.3645 15.7954C30.3897 17.6303 29.7854 19.3348 28.4981 20.5269C27.4127 21.5319 25.9262 22.0949 24.1341 22.1304L24.1987 26.822L22.2794 26.8428L22.1864 20.0865L23.2422 20.1798C25.0966 20.3435 26.381 19.8665 27.192 19.1156Z" fill="#ED1C24"/>
+<path d="M24.176 29.9645C24.176 30.789 23.5191 31.4574 22.7088 31.4574C21.8986 31.4574 21.2417 30.789 21.2417 29.9645C21.2417 29.1401 21.8986 28.4717 22.7088 28.4717C23.5191 28.4717 24.176 29.1401 24.176 29.9645Z" fill="#F41820"/>
+</svg>
diff --git a/public/img/community/b16-icon-reports.svg b/public/img/community/b16-icon-reports.svg
new file mode 100644
index 0000000..b4782b4
--- /dev/null
+++ b/public/img/community/b16-icon-reports.svg
@@ -0,0 +1,6 @@
+<svg width="49" height="48" viewBox="0 0 49 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M7.00679 28.4379C4.55578 25.9869 4.55578 22.0131 7.0068 19.5621L20.5459 6.02293C22.9969 3.57192 26.9708 3.57192 29.4218 6.02293L42.9609 19.5621C45.4119 22.0131 45.4119 25.9869 42.9609 28.4379L29.4218 41.9771C26.9708 44.4281 22.9969 44.4281 20.5459 41.9771L7.00679 28.4379Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M6.21432 29.2304C3.32563 26.3417 3.32563 21.6583 6.21433 18.7696L19.7534 5.23044C22.6421 2.34175 27.3256 2.34175 30.2143 5.23044L43.7535 18.7696C46.6421 21.6583 46.6421 26.3417 43.7534 29.2304L30.2143 42.7696C27.3256 45.6583 22.6421 45.6583 19.7534 42.7696L6.21432 29.2304ZM7.79931 20.3545C5.78598 22.3679 5.78598 25.6321 7.79931 27.6455L21.3384 41.1846C23.3518 43.1979 26.616 43.1979 28.6293 41.1846L42.1685 27.6455C44.1818 25.6321 44.1818 22.3679 42.1685 20.3545L28.6293 6.81542C26.616 4.80209 23.3518 4.80209 21.3384 6.81542L7.79931 20.3545Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M24.9839 10.7549C25.6029 10.7549 26.1046 11.2567 26.1046 11.8756V26.8354C26.1046 27.4544 25.6029 27.9562 24.9839 27.9562C24.3649 27.9562 23.8631 27.4544 23.8631 26.8354V11.8756C23.8631 11.2567 24.3649 10.7549 24.9839 10.7549Z" fill="#ED1C24"/>
+<path d="M26.2112 33.3928C26.2112 34.0412 25.6856 34.5669 25.0372 34.5669C24.3888 34.5669 23.8631 34.0412 23.8631 33.3928C23.8631 32.7444 24.3888 32.2188 25.0372 32.2188C25.6856 32.2188 26.2112 32.7444 26.2112 33.3928Z" fill="#ED1C24"/>
+</svg>
diff --git a/public/img/community/b2-cos.jpg b/public/img/community/b2-cos.jpg
new file mode 100644
index 0000000..091c0da
--- /dev/null
+++ b/public/img/community/b2-cos.jpg
Binary files differ
diff --git a/public/img/community/b3-quote.svg b/public/img/community/b3-quote.svg
new file mode 100644
index 0000000..7740e41
--- /dev/null
+++ b/public/img/community/b3-quote.svg
@@ -0,0 +1,4 @@
+<svg width="53" height="41" viewBox="0 0 53 41" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M23 0.379639H0V23.3796H12.6774L3 40.3796H13.3226L23 23.3796V0.379639Z" fill="#F94239"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M53 0.379639H30V23.3796H42.6774L33 40.3796H43.3226L53 23.3796V0.379639Z" fill="#F94239"/>
+</svg>
diff --git a/public/img/community/b3-rocket1.svg b/public/img/community/b3-rocket1.svg
new file mode 100644
index 0000000..886d390
--- /dev/null
+++ b/public/img/community/b3-rocket1.svg
@@ -0,0 +1,46 @@
+<svg width="333" height="312" viewBox="0 0 333 312" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M201 270.115C201 293.247 169.436 312 130.5 312C91.564 312 60 293.247 60 270.115C60 246.982 91.564 228.229 130.5 228.229C169.436 228.229 201 246.982 201 270.115Z" fill="#E5E5E5"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M179.839 298.876C192.439 291.39 200 281.19 200 270.115C200 259.04 192.439 248.839 179.839 241.354C167.261 233.881 149.819 229.226 130.5 229.226C111.181 229.226 93.7391 233.881 81.1608 241.354C68.5615 248.839 61 259.04 61 270.115C61 281.19 68.5615 291.39 81.1608 298.876C93.7391 306.349 111.181 311.003 130.5 311.003C149.819 311.003 167.261 306.349 179.839 298.876ZM130.5 312C169.436 312 201 293.247 201 270.115C201 246.982 169.436 228.229 130.5 228.229C91.564 228.229 60 246.982 60 270.115C60 293.247 91.564 312 130.5 312Z" fill="black"/>
+<path d="M114.057 245.5C114.057 245.5 92.8098 223.303 120.849 214.392C126.253 212.642 145.174 208.815 146.76 201.017C146.76 201.017 152.875 218.626 135.56 224.051C117.785 229.587 111.231 238.823 114.057 245.5Z" fill="#ED1C24"/>
+<path d="M113.128 213.693C113.128 213.693 107.741 197.604 126.32 199.569C128.132 199.819 141.389 201.92 145.883 198.601C145.883 198.601 143.637 205.793 131.964 207.271C120.327 208.759 115.733 208.662 113.128 213.693Z" fill="#ED1C24"/>
+<path d="M144.34 237.423C130.407 245.856 125.489 252.061 127.724 262.399C127.724 262.399 98.5882 241.288 136.591 227.794C150.181 222.971 150.449 214.393 150.528 214.102C151.819 216.435 158.273 228.99 144.34 237.423Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M52.7697 142.123L51.456 142.883V144.395L52.3471 143.93V143.366L52.8148 143.096L52.7697 142.123ZM51.456 201.852L52.3471 201.387V201.85L52.7245 201.632L52.7697 202.604L51.456 203.364V201.852ZM55.397 201.085L55.3518 200.113L57.9791 198.594L58.0243 199.566L55.397 201.085ZM60.6516 198.047L60.6065 197.074L63.2338 195.555L63.2789 196.528L60.6516 198.047ZM65.9062 195.008L65.8611 194.036L68.4884 192.517L68.5335 193.489L65.9062 195.008ZM71.1608 191.97L71.1157 190.998L73.743 189.478L73.7881 190.451L71.1608 191.97ZM76.4154 188.932L76.3703 187.959L78.9976 186.44L79.0428 187.412L76.4154 188.932ZM81.6701 185.893L81.6249 184.921L84.2522 183.402L84.2974 184.374L81.6701 185.893ZM86.9247 182.855L86.8795 181.882L89.5068 180.363L89.552 181.336L86.9247 182.855ZM92.1793 179.816L92.1341 178.844L94.7614 177.325L94.8066 178.297L92.1793 179.816ZM97.4339 176.778L97.3888 175.806L100.016 174.286L100.061 175.259L97.4339 176.778ZM104.002 114.011L103.111 114.476V114.013L102.734 114.231L102.689 113.259L104.002 112.499V114.011ZM100.061 114.778L100.106 115.75L97.4791 117.269L97.4339 116.297L100.061 114.778ZM94.8066 117.816L94.8518 118.789L92.2245 120.308L92.1793 119.335L94.8066 117.816ZM89.552 120.855L89.5971 121.827L86.9698 123.346L86.9247 122.374L89.552 120.855ZM84.2974 123.893L84.3425 124.865L81.7152 126.385L81.6701 125.412L84.2974 123.893ZM79.0428 126.931L79.0879 127.904L76.4606 129.423L76.4155 128.451L79.0428 126.931ZM73.7882 129.97L73.8333 130.942L71.206 132.461L71.1608 131.489L73.7882 129.97ZM68.5335 133.008L68.5787 133.981L65.9514 135.5L65.9062 134.527L68.5335 133.008ZM63.2789 136.047L63.3241 137.019L60.6968 138.538L60.6516 137.566L63.2789 136.047ZM58.0243 139.085L58.0695 140.057L55.4422 141.577L55.397 140.604L58.0243 139.085ZM104.002 117.035L103.111 117.5V120.524L104.002 120.059V117.035ZM104.002 123.083L103.111 123.548V126.572L104.002 126.107V123.083ZM104.002 129.131L103.111 129.596V132.62L104.002 132.155V129.131ZM104.002 135.179L103.111 135.644V138.668L104.002 138.203V135.179ZM104.002 141.227L103.111 141.692V144.716L104.002 144.252V141.227ZM104.002 147.276L103.111 147.74V150.764L104.002 150.3V147.276ZM104.002 153.324L103.111 153.788V156.812L104.002 156.348V153.324ZM104.002 159.372L103.111 159.836V162.86L104.002 162.396V159.372ZM104.002 165.42L103.111 165.885V168.909L104.002 168.444V165.42ZM104.002 171.468L103.111 171.933V172.497L102.643 172.767L102.689 173.74L104.002 172.98V171.468ZM51.456 198.828L52.3471 198.363V195.339L51.456 195.804V198.828ZM51.456 192.78L52.3471 192.315V189.291L51.456 189.756V192.78ZM51.456 186.732L52.3471 186.267V183.243L51.456 183.708V186.732ZM51.456 180.684L52.3471 180.219V177.195L51.456 177.66V180.684ZM51.456 174.635L52.3471 174.171V171.147L51.456 171.611V174.635ZM51.456 168.587L52.3471 168.123V165.099L51.456 165.563V168.587ZM51.456 162.539L52.3471 162.075V159.051L51.456 159.515V162.539ZM51.456 156.491L52.3471 156.026V153.002L51.456 153.467V156.491ZM51.456 150.443L52.3471 149.978V146.954L51.456 147.419V150.443Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M52.7697 82.4457L51.456 83.2053V84.7173L52.3471 84.2526V83.6886L52.8148 83.4181L52.7697 82.4457ZM51.456 142.174L52.3471 141.71V142.172L52.7245 141.954L52.7697 142.927L51.456 143.686V142.174ZM55.397 141.408L55.3518 140.435L57.9791 138.916L58.0243 139.888L55.397 141.408ZM60.6516 138.369L60.6065 137.397L63.2338 135.877L63.2789 136.85L60.6516 138.369ZM65.9062 135.331L65.8611 134.358L68.4884 132.839L68.5335 133.812L65.9062 135.331ZM71.1608 132.292L71.1157 131.32L73.743 129.801L73.7881 130.773L71.1608 132.292ZM76.4154 129.254L76.3703 128.281L78.9976 126.762L79.0428 127.735L76.4154 129.254ZM81.6701 126.216L81.6249 125.243L84.2522 123.724L84.2974 124.696L81.6701 126.216ZM86.9247 123.177L86.8795 122.205L89.5068 120.685L89.552 121.658L86.9247 123.177ZM92.1793 120.139L92.1341 119.166L94.7614 117.647L94.8066 118.62L92.1793 120.139ZM97.4339 117.1L97.3888 116.128L100.016 114.609L100.061 115.581L97.4339 117.1ZM104.002 54.3334L103.111 54.798V54.3351L102.734 54.5534L102.689 53.5809L104.002 52.8213V54.3334ZM100.061 55.1001L100.106 56.0726L97.4791 57.5918L97.4339 56.6193L100.061 55.1001ZM94.8066 58.1385L94.8518 59.111L92.2245 60.6302L92.1793 59.6577L94.8066 58.1385ZM89.552 61.1769L89.5971 62.1494L86.9698 63.6686L86.9247 62.6961L89.552 61.1769ZM84.2974 64.2153L84.3425 65.1878L81.7152 66.707L81.6701 65.7345L84.2974 64.2153ZM79.0428 67.2537L79.0879 68.2262L76.4606 69.7453L76.4155 68.7729L79.0428 67.2537ZM73.7882 70.2921L73.8333 71.2645L71.206 72.7837L71.1608 71.8113L73.7882 70.2921ZM68.5335 73.3305L68.5787 74.3029L65.9514 75.8221L65.9062 74.8497L68.5335 73.3305ZM63.2789 76.3689L63.3241 77.3413L60.6968 78.8605L60.6516 77.8881L63.2789 76.3689ZM58.0243 79.4073L58.0695 80.3797L55.4422 81.8989L55.397 80.9265L58.0243 79.4073ZM104.002 57.3574L103.111 57.8221V60.8461L104.002 60.3815V57.3574ZM104.002 63.4055L103.111 63.8702V66.8942L104.002 66.4296V63.4055ZM104.002 69.4536L103.111 69.9183V72.9423L104.002 72.4777V69.4536ZM104.002 75.5017L103.111 75.9664V78.9904L104.002 78.5258V75.5017ZM104.002 81.5498L103.111 82.0145V85.0385L104.002 84.5739V81.5498ZM104.002 87.5979L103.111 88.0626V91.0866L104.002 90.622V87.5979ZM104.002 93.646L103.111 94.1107V97.1347L104.002 96.6701V93.646ZM104.002 99.6941L103.111 100.159V103.183L104.002 102.718V99.6941ZM104.002 105.742L103.111 106.207V109.231L104.002 108.766V105.742ZM104.002 111.79L103.111 112.255V112.819L102.643 113.09L102.689 114.062L104.002 113.302V111.79ZM51.456 139.15L52.3471 138.686V135.662L51.456 136.126V139.15ZM51.456 133.102L52.3471 132.637V129.613L51.456 130.078V133.102ZM51.456 127.054L52.3471 126.589V123.565L51.456 124.03V127.054ZM51.456 121.006L52.3471 120.541V117.517L51.456 117.982V121.006ZM51.456 114.958L52.3471 114.493V111.469L51.456 111.934V114.958ZM51.456 108.91L52.3471 108.445V105.421L51.456 105.886V108.91ZM51.456 102.862L52.3471 102.397V99.3729L51.456 99.8376V102.862ZM51.456 96.8135L52.3471 96.3489V93.3248L51.456 93.7895V96.8135ZM51.456 90.7654L52.3471 90.3007V87.2767L51.456 87.7413V90.7654Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M1.31367 172.545L0 173.305V174.817L0.89108 174.352V173.788L1.35882 173.517L1.31367 172.545ZM0 232.274L0.89108 231.809V232.272L1.2685 232.054L1.31365 233.026L0 233.786V232.274ZM3.94096 231.507L3.89581 230.534L6.52312 229.015L6.56827 229.988L3.94096 231.507ZM9.19558 228.468L9.15042 227.496L11.7777 225.977L11.8229 226.949L9.19558 228.468ZM14.4502 225.43L14.405 224.458L17.0323 222.938L17.0775 223.911L14.4502 225.43ZM19.7048 222.392L19.6597 221.419L22.287 219.9L22.3321 220.872L19.7048 222.392ZM24.9594 219.353L24.9143 218.381L27.5416 216.862L27.5867 217.834L24.9594 219.353ZM30.214 216.315L30.1689 215.342L32.7962 213.823L32.8413 214.796L30.214 216.315ZM35.4687 213.276L35.4235 212.304L38.0508 210.785L38.096 211.757L35.4687 213.276ZM40.7233 210.238L40.6781 209.266L43.3054 207.746L43.3506 208.719L40.7233 210.238ZM45.9779 207.2L45.9327 206.227L48.56 204.708L48.6052 205.68L45.9779 207.2ZM52.5462 144.433L51.6551 144.897V144.434L51.2777 144.653L51.2325 143.68L52.5462 142.921V144.433ZM48.6052 145.199L48.6503 146.172L46.023 147.691L45.9779 146.719L48.6052 145.199ZM43.3506 148.238L43.3957 149.21L40.7684 150.729L40.7233 149.757L43.3506 148.238ZM38.096 151.276L38.1411 152.249L35.5138 153.768L35.4687 152.795L38.096 151.276ZM32.8413 154.315L32.8865 155.287L30.2592 156.806L30.214 155.834L32.8413 154.315ZM27.5867 157.353L27.6319 158.325L25.0046 159.845L24.9594 158.872L27.5867 157.353ZM22.3321 160.391L22.3773 161.364L19.75 162.883L19.7048 161.911L22.3321 160.391ZM17.0775 163.43L17.1227 164.402L14.4954 165.921L14.4502 164.949L17.0775 163.43ZM11.8229 166.468L11.868 167.441L9.24074 168.96L9.19559 167.987L11.8229 166.468ZM6.56828 169.507L6.61343 170.479L3.98613 171.998L3.94097 171.026L6.56828 169.507ZM52.5462 147.457L51.6551 147.921V150.945L52.5462 150.481V147.457ZM52.5462 153.505L51.6551 153.969V156.994L52.5462 156.529V153.505ZM52.5462 159.553L51.6551 160.018V163.042L52.5462 162.577V159.553ZM52.5462 165.601L51.6551 166.066V169.09L52.5462 168.625V165.601ZM52.5462 171.649L51.6551 172.114V175.138L52.5462 174.673V171.649ZM52.5462 177.697L51.6551 178.162V181.186L52.5462 180.721V177.697ZM52.5462 183.745L51.6551 184.21V187.234L52.5462 186.769V183.745ZM52.5462 189.793L51.6551 190.258V193.282L52.5462 192.817V189.793ZM52.5462 195.842L51.6551 196.306V199.33L52.5462 198.866V195.842ZM52.5462 201.89L51.6551 202.354V202.918L51.1873 203.189L51.2325 204.161L52.5462 203.402V201.89ZM0 229.25L0.89108 228.785V225.761L0 226.225V229.25ZM0 223.201L0.89108 222.737V219.713L0 220.177V223.201ZM0 217.153L0.89108 216.689V213.665L0 214.129V217.153ZM0 211.105L0.89108 210.641V207.617L0 208.081V211.105ZM0 205.057L0.89108 204.592V201.568L0 202.033V205.057ZM0 199.009L0.89108 198.544V195.52L0 195.985V199.009ZM0 192.961L0.89108 192.496V189.472L0 189.937V192.961ZM0 186.913L0.89108 186.448V183.424L0 183.889V186.913ZM0 180.865L0.89108 180.4V177.376L0 177.841V180.865Z" fill="black"/>
+<path d="M211.094 105.316C211.094 99.442 215.204 92.4643 220.417 89.488L302.886 42.404C308.429 39.2397 313.053 41.8101 313.053 48.0551V143.362C313.053 149.236 308.943 156.214 303.73 159.19L221.261 206.274C215.719 209.438 211.094 206.868 211.094 200.623V105.316Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M302.925 43.3803L220.456 90.4643C215.717 93.1701 211.98 99.5134 211.98 104.853V200.16C211.98 205.837 216.184 208.174 221.223 205.298L303.692 158.214C308.431 155.508 312.167 149.164 312.167 143.825V48.5177C312.167 42.8404 307.963 40.5037 302.925 43.3803ZM220.417 89.488C215.204 92.4643 211.094 99.442 211.094 105.316V200.623C211.094 206.868 215.719 209.438 221.261 206.274L303.73 159.19C308.943 156.214 313.053 149.236 313.053 143.362V48.0551C313.053 41.8101 308.429 39.2397 302.886 42.404L220.417 89.488Z" fill="black"/>
+<path d="M231.041 112.278C231.041 106.404 235.151 99.4267 240.364 96.4503L322.833 49.3664C328.376 46.202 333 48.7725 333 55.0174V150.324C333 156.198 328.89 163.176 323.677 166.152L241.208 213.236C235.666 216.401 231.041 213.83 231.041 207.585V112.278Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M322.871 50.3427L240.403 97.4267C235.664 100.132 231.927 106.476 231.927 111.816V207.123C231.927 212.8 236.131 215.137 241.17 212.26L323.638 165.176C328.378 162.47 332.114 156.127 332.114 150.787V55.48C332.114 49.8028 327.91 47.466 322.871 50.3427ZM240.364 96.4503C235.151 99.4267 231.041 106.404 231.041 112.278V207.585C231.041 213.83 235.666 216.401 241.208 213.236L323.677 166.152C328.89 163.176 333 156.198 333 150.324V55.0174C333 48.7725 328.376 46.202 322.833 49.3664L240.364 96.4503Z" fill="black"/>
+<path d="M156 194.321C156 201.482 145.255 207.286 132 207.286C118.745 207.286 108 201.482 108 194.321C108 187.161 118.745 181.357 132 181.357C145.255 181.357 156 187.161 156 194.321Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M148.494 202.612C152.704 200.338 155 197.362 155 194.321C155 191.281 152.704 188.305 148.494 186.031C144.324 183.778 138.494 182.354 132 182.354C125.506 182.354 119.676 183.778 115.506 186.031C111.296 188.305 109 191.281 109 194.321C109 197.362 111.296 200.338 115.506 202.612C119.676 204.865 125.506 206.289 132 206.289C138.494 206.289 144.324 204.865 148.494 202.612ZM132 207.286C145.255 207.286 156 201.482 156 194.321C156 187.161 145.255 181.357 132 181.357C118.745 181.357 108 187.161 108 194.321C108 201.482 118.745 207.286 132 207.286Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M158.851 182.858H159.274V59.8201H102.328V182.858H102.751C102.473 183.633 102.328 184.43 102.328 185.243C102.328 192.873 115.076 199.058 130.801 199.058C146.526 199.058 159.274 192.873 159.274 185.243C159.274 184.43 159.129 183.633 158.851 182.858Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M159.132 183.856C159.063 183.519 158.969 183.187 158.851 182.858H159.274V59.8201H102.328V182.858H102.751C102.633 183.187 102.539 183.519 102.47 183.856C102.376 184.312 102.328 184.775 102.328 185.243C102.328 192.873 115.076 199.058 130.801 199.058C146.526 199.058 159.274 192.873 159.274 185.243C159.274 184.775 159.226 184.312 159.132 183.856ZM103.328 181.861H104.17L103.692 183.194C103.451 183.867 103.328 184.55 103.328 185.243C103.328 188.462 106.048 191.662 111.105 194.115C116.094 196.536 123.056 198.061 130.801 198.061C138.546 198.061 145.508 196.536 150.497 194.115C155.554 191.662 158.274 188.462 158.274 185.243C158.274 184.55 158.151 183.867 157.91 183.194L157.432 181.861H158.274V60.8173H103.328V181.861Z" fill="black"/>
+<path d="M159 60.1873C159 68.1736 146.24 74.6479 130.5 74.6479C114.76 74.6479 102 68.1736 102 60.1873C102 52.201 114.76 45.7267 130.5 45.7267C146.24 45.7267 159 52.201 159 60.1873Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M150.199 69.5236C155.244 66.9639 158 63.6083 158 60.1873C158 56.7663 155.244 53.4107 150.199 50.851C145.209 48.3192 138.246 46.724 130.5 46.724C122.754 46.724 115.791 48.3192 110.801 50.851C105.756 53.4107 103 56.7663 103 60.1873C103 63.6083 105.756 66.9639 110.801 69.5236C115.791 72.0554 122.754 73.6506 130.5 73.6506C138.246 73.6506 145.209 72.0554 150.199 69.5236ZM130.5 74.6479C146.24 74.6479 159 68.1736 159 60.1873C159 52.201 146.24 45.7267 130.5 45.7267C114.76 45.7267 102 52.201 102 60.1873C102 68.1736 114.76 74.6479 130.5 74.6479Z" fill="black"/>
+<path d="M128.902 15.893L109.275 46.6733C105.9 51.966 104.333 58.8838 109.092 62.9853C113.214 66.5383 120.218 69.5936 131.475 69.5936C143.737 69.5936 150.627 65.9684 154.208 62.0236C157.729 58.1447 156.11 52.4852 153.399 48.0053L134.002 15.9525C132.851 14.0509 130.097 14.0187 128.902 15.893Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M133.574 16.2102C132.615 14.6255 130.32 14.5987 129.324 16.1606L109.697 46.9409C108.039 49.5414 106.843 52.5153 106.632 55.3134C106.422 58.0967 107.185 60.6827 109.419 62.608C113.431 66.066 120.31 69.095 131.475 69.095C143.638 69.095 150.376 65.5014 153.837 61.6889C155.477 59.8827 155.935 57.6552 155.644 55.3007C155.353 52.9347 154.306 50.4679 152.971 48.263L133.574 16.2102ZM128.48 15.6254C129.874 13.4388 133.087 13.4763 134.43 15.6948L153.827 47.7477C155.204 50.0226 156.322 52.6254 156.637 55.1789C156.953 57.7438 156.46 60.2856 154.578 62.3582C150.877 66.4354 143.835 70.0922 131.475 70.0922C120.126 70.0922 112.997 67.0105 108.765 63.3625C106.24 61.1864 105.407 58.2628 105.635 55.2386C105.862 52.2293 107.137 49.098 108.853 46.4057L128.48 15.6254Z" fill="black"/>
+<path d="M83.7503 171.41L101.671 152.353C102.238 151.75 103.03 151.408 103.859 151.408L109.616 151.408C111.891 151.408 113.338 153.835 112.252 155.828L92.5858 191.918C92.2436 192.545 92.1381 193.275 92.2884 193.974L94.684 205.11C95.0847 206.972 93.6609 208.729 91.7507 208.729H91.1722H88.1804C87.1048 208.729 86.1114 208.155 85.577 207.224L80.5672 198.498C75.5458 189.751 76.8373 178.761 83.7503 171.41Z" fill="#C4C4C4"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M109.616 150.91L103.859 150.91C102.892 150.91 101.968 151.309 101.306 152.012L83.3856 171.069C76.3224 178.58 75.0028 189.809 80.1333 198.746L85.1431 207.472C85.7666 208.558 86.9255 209.228 88.1805 209.228H91.7507C93.9793 209.228 95.6403 207.178 95.1729 205.005L92.7773 193.869C92.6521 193.287 92.74 192.679 93.0251 192.156L112.691 156.067C113.958 153.741 112.27 150.91 109.616 150.91ZM103.859 151.907L109.616 151.907C111.512 151.907 112.718 153.929 111.812 155.591L92.1465 191.68C91.7473 192.412 91.6242 193.263 91.7996 194.078L94.1951 205.214C94.529 206.767 93.3426 208.231 91.7507 208.231H88.1805C87.2841 208.231 86.4563 207.752 86.0109 206.976L81.0011 198.25C76.0889 189.694 77.3523 178.943 84.115 171.751L102.035 152.695C102.508 152.192 103.168 151.907 103.859 151.907Z" fill="black"/>
+<path d="M89.3025 172.21L108.238 152.266C110.102 150.302 113.416 151.618 113.416 154.323L113.416 171.482C113.416 172.254 113.117 172.996 112.581 173.553L98.6203 188.073C98.1157 188.597 97.8201 189.287 97.7885 190.014L97.0959 205.94C96.9716 208.797 93.2829 209.868 91.6398 207.524L87.1523 201.121C80.8974 192.197 81.7958 180.117 89.3025 172.21Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M113.916 154.323C113.916 151.168 110.05 149.632 107.875 151.924L88.9394 171.867C81.2696 179.946 80.3517 192.289 86.7425 201.407L91.23 207.81C93.147 210.545 97.4505 209.295 97.5954 205.961L98.288 190.035C98.3143 189.43 98.5607 188.855 98.9812 188.418L112.942 173.898C113.567 173.248 113.916 172.383 113.916 171.482L113.916 154.323ZM108.601 152.609C110.155 150.972 112.916 152.069 112.916 154.323L112.916 171.482C112.916 172.125 112.667 172.744 112.22 173.208L98.2594 187.728C97.6708 188.34 97.3258 189.145 97.2889 189.992L96.5964 205.918C96.4928 208.299 93.4189 209.192 92.0496 207.238L87.5622 200.836C81.4432 192.105 82.3221 180.288 89.6655 172.553L108.601 152.609Z" fill="black"/>
+<path d="M177.829 171.41L159.908 152.353C159.341 151.75 158.549 151.408 157.72 151.408L151.963 151.408C149.688 151.408 148.241 153.835 149.327 155.828L168.993 191.918C169.335 192.545 169.441 193.275 169.29 193.974L166.895 205.11C166.494 206.972 167.918 208.729 169.828 208.729H170.407H173.398C174.474 208.729 175.467 208.155 176.002 207.224L181.012 198.498C186.033 189.751 184.742 178.761 177.829 171.41Z" fill="#C4C4C4"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M151.963 150.91L157.72 150.91C158.687 150.91 159.611 151.309 160.273 152.012L178.193 171.069C185.257 178.58 186.576 189.809 181.446 198.746L176.436 207.472C175.812 208.558 174.653 209.228 173.398 209.228H169.828C167.6 209.228 165.939 207.178 166.406 205.005L168.802 193.869C168.927 193.287 168.839 192.679 168.554 192.156L148.888 156.067C147.621 153.741 149.309 150.91 151.963 150.91ZM157.72 151.907L151.963 151.907C150.067 151.907 148.861 153.929 149.767 155.591L169.432 191.68C169.832 192.412 169.955 193.263 169.779 194.078L167.384 205.214C167.05 206.767 168.236 208.231 169.828 208.231H173.398C174.295 208.231 175.123 207.752 175.568 206.976L180.578 198.25C185.49 189.694 184.227 178.943 177.464 171.751L159.544 152.695C159.071 152.192 158.411 151.907 157.72 151.907Z" fill="black"/>
+<path d="M172.276 172.21L153.341 152.266C151.476 150.302 148.163 151.618 148.163 154.323L148.163 171.482C148.163 172.254 148.462 172.996 148.998 173.553L162.959 188.073C163.463 188.597 163.759 189.287 163.79 190.014L164.483 205.94C164.607 208.797 168.296 209.868 169.939 207.524L174.427 201.121C180.681 192.197 179.783 180.117 172.276 172.21Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M147.663 154.323C147.663 151.168 151.529 149.632 153.704 151.924L172.639 171.867C180.309 179.946 181.227 192.289 174.836 201.407L170.349 207.81C168.432 210.545 164.128 209.295 163.983 205.961L163.291 190.035C163.265 189.43 163.018 188.855 162.598 188.418L148.637 173.898C148.012 173.248 147.663 172.383 147.663 171.482L147.663 154.323ZM152.978 152.609C151.424 150.972 148.663 152.069 148.663 154.323L148.663 171.482C148.663 172.125 148.912 172.744 149.358 173.208L163.319 187.728C163.908 188.34 164.253 189.145 164.29 189.992L164.983 205.918C165.086 208.299 168.16 209.192 169.529 207.238L174.017 200.836C180.136 192.105 179.257 180.288 171.913 172.553L152.978 152.609Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M313.883 83.7357C314.159 83.7319 314.386 83.9521 314.39 84.2274C314.394 84.5652 314.398 84.9019 314.4 85.2376C314.401 85.513 314.179 85.7376 313.903 85.7392C313.627 85.7409 313.401 85.519 313.4 85.2436C313.398 84.9105 313.394 84.5763 313.39 84.2412C313.386 83.9658 313.607 83.7395 313.883 83.7357ZM313.901 86.7368C314.177 86.7394 314.399 86.9648 314.396 87.2402C314.39 87.9037 314.379 88.5633 314.362 89.2189C314.355 89.4942 314.126 89.7118 313.85 89.7048C313.574 89.6979 313.355 89.4692 313.362 89.1939C313.379 88.5435 313.39 87.8891 313.396 87.2307C313.399 86.9554 313.625 86.7342 313.901 86.7368ZM313.817 90.6979C314.093 90.7093 314.307 90.9415 314.296 91.2167C314.268 91.8862 314.235 92.5515 314.197 93.2125C314.181 93.4875 313.945 93.6975 313.669 93.6817C313.393 93.6658 313.183 93.4301 313.199 93.1552C313.236 92.4996 313.269 91.8397 313.297 91.1756C313.308 90.9004 313.541 90.6866 313.817 90.6979ZM313.605 94.649C313.88 94.6694 314.087 94.9086 314.067 95.1832C314.017 95.8549 313.961 96.5222 313.901 97.1851C313.876 97.4593 313.632 97.6613 313.357 97.6363C313.082 97.6113 312.88 97.3686 312.905 97.0944C312.965 96.4372 313.02 95.7755 313.069 95.1094C313.09 94.8348 313.33 94.6287 313.605 94.649ZM313.259 98.6176C313.533 98.6473 313.732 98.8934 313.702 99.1672C313.63 99.828 313.553 100.484 313.47 101.136C313.435 101.409 313.185 101.603 312.911 101.568C312.637 101.534 312.443 101.284 312.478 101.011C312.56 100.365 312.636 99.7145 312.708 99.0594C312.738 98.7856 312.984 98.5878 313.259 98.6176ZM312.777 102.56C313.05 102.6 313.239 102.853 313.2 103.125C313.104 103.783 313.004 104.437 312.898 105.086C312.853 105.358 312.596 105.542 312.324 105.498C312.051 105.453 311.866 105.197 311.911 104.925C312.016 104.282 312.116 103.635 312.21 102.982C312.25 102.71 312.503 102.521 312.777 102.56ZM312.155 106.475C312.426 106.525 312.607 106.784 312.557 107.055C312.437 107.714 312.311 108.368 312.18 109.016C312.126 109.286 311.862 109.461 311.592 109.407C311.321 109.353 311.146 109.09 311.2 108.82C311.33 108.177 311.454 107.529 311.573 106.877C311.623 106.606 311.883 106.426 312.155 106.475ZM311.39 110.36C311.66 110.42 311.83 110.686 311.77 110.955C311.625 111.612 311.474 112.264 311.317 112.911C311.253 113.179 310.983 113.344 310.714 113.279C310.446 113.215 310.281 112.945 310.345 112.678C310.5 112.037 310.65 111.391 310.794 110.74C310.853 110.471 311.12 110.301 311.39 110.36ZM310.475 114.228C310.742 114.298 310.902 114.57 310.832 114.837C310.662 115.485 310.487 116.129 310.306 116.767C310.231 117.032 309.955 117.186 309.689 117.111C309.423 117.036 309.269 116.76 309.344 116.495C309.523 115.864 309.696 115.227 309.865 114.585C309.935 114.318 310.208 114.159 310.475 114.228ZM309.41 118.059C309.674 118.139 309.823 118.417 309.743 118.681C309.549 119.318 309.349 119.951 309.144 120.577C309.058 120.839 308.776 120.982 308.514 120.897C308.251 120.812 308.108 120.53 308.193 120.268C308.396 119.648 308.594 119.022 308.786 118.391C308.867 118.127 309.146 117.979 309.41 118.059ZM308.195 121.84C308.455 121.931 308.593 122.215 308.502 122.475C308.283 123.102 308.059 123.723 307.83 124.339C307.733 124.597 307.446 124.729 307.187 124.633C306.928 124.537 306.796 124.25 306.892 123.992C307.119 123.383 307.341 122.768 307.558 122.147C307.649 121.887 307.934 121.75 308.195 121.84ZM306.828 125.567C307.085 125.669 307.211 125.958 307.109 126.214C306.864 126.834 306.613 127.448 306.358 128.055C306.251 128.309 305.958 128.429 305.704 128.323C305.449 128.216 305.329 127.924 305.436 127.67C305.688 127.068 305.936 126.461 306.179 125.848C306.281 125.592 306.571 125.466 306.828 125.567ZM305.309 129.234C305.562 129.346 305.676 129.641 305.564 129.892C305.292 130.503 305.016 131.107 304.734 131.706C304.617 131.955 304.319 132.062 304.069 131.945C303.819 131.828 303.712 131.532 303.829 131.282C304.107 130.69 304.381 130.092 304.65 129.488C304.762 129.236 305.057 129.123 305.309 129.234ZM303.639 132.835C303.887 132.957 303.988 133.256 303.866 133.503C303.568 134.103 303.266 134.696 302.959 135.283C302.832 135.528 302.53 135.622 302.285 135.495C302.04 135.368 301.945 135.067 302.073 134.823C302.376 134.241 302.675 133.654 302.97 133.061C303.092 132.814 303.392 132.713 303.639 132.835ZM301.82 136.363C302.062 136.495 302.15 136.798 302.018 137.04C301.695 137.627 301.367 138.208 301.035 138.783C300.897 139.021 300.592 139.103 300.352 138.966C300.113 138.828 300.031 138.524 300.169 138.285C300.497 137.716 300.821 137.142 301.141 136.56C301.274 136.319 301.577 136.23 301.82 136.363ZM299.852 139.811C300.088 139.954 300.164 140.26 300.021 140.496C299.673 141.07 299.321 141.637 298.964 142.198C298.816 142.43 298.507 142.499 298.274 142.352C298.041 142.204 297.972 141.896 298.12 141.663C298.472 141.109 298.821 140.548 299.165 139.98C299.308 139.744 299.616 139.669 299.852 139.811ZM297.739 143.174C297.969 143.326 298.032 143.636 297.879 143.865C297.507 144.424 297.13 144.976 296.75 145.521C296.593 145.748 296.281 145.803 296.054 145.646C295.828 145.489 295.772 145.178 295.929 144.952C296.305 144.413 296.678 143.866 297.046 143.314C297.199 143.084 297.509 143.022 297.739 143.174ZM295.485 146.445C295.708 146.607 295.757 146.919 295.595 147.142C295.199 147.684 294.8 148.22 294.397 148.749C294.23 148.968 293.916 149.011 293.696 148.844C293.476 148.677 293.434 148.364 293.601 148.145C294 147.622 294.395 147.092 294.786 146.555C294.949 146.332 295.261 146.283 295.485 146.445ZM293.093 149.618C293.309 149.79 293.346 150.103 293.174 150.319C292.756 150.844 292.334 151.363 291.909 151.874C291.733 152.086 291.418 152.115 291.205 151.939C290.992 151.764 290.963 151.449 291.139 151.237C291.559 150.732 291.977 150.219 292.391 149.699C292.562 149.483 292.877 149.447 293.093 149.618ZM290.569 152.689C290.778 152.869 290.8 153.184 290.62 153.392C290.18 153.899 289.737 154.399 289.292 154.891C289.107 155.096 288.79 155.112 288.585 154.928C288.38 154.743 288.364 154.428 288.549 154.223C288.99 153.736 289.428 153.242 289.864 152.74C290.044 152.531 290.36 152.509 290.569 152.689ZM287.917 155.651C288.118 155.84 288.128 156.155 287.938 156.356C287.478 156.844 287.015 157.324 286.55 157.797C286.356 157.993 286.04 157.996 285.843 157.803C285.646 157.61 285.643 157.295 285.836 157.098C286.296 156.63 286.754 156.155 287.21 155.672C287.399 155.472 287.716 155.462 287.917 155.651ZM285.143 158.5C285.336 158.697 285.332 159.013 285.135 159.205C284.655 159.673 284.173 160.133 283.69 160.585C283.488 160.773 283.172 160.763 282.983 160.562C282.794 160.361 282.804 160.045 283.006 159.857C283.484 159.41 283.961 158.955 284.436 158.492C284.633 158.3 284.95 158.303 285.143 158.5ZM282.252 161.232C282.436 161.436 282.42 161.752 282.214 161.936C281.716 162.382 281.217 162.82 280.717 163.251C280.508 163.43 280.193 163.407 280.012 163.199C279.832 162.99 279.855 162.675 280.064 162.495C280.559 162.07 281.053 161.636 281.546 161.194C281.751 161.01 282.067 161.027 282.252 161.232ZM279.25 163.841C279.426 164.053 279.396 164.367 279.183 164.543C278.668 164.968 278.151 165.384 277.635 165.793C277.418 165.964 277.104 165.927 276.932 165.712C276.761 165.496 276.797 165.182 277.014 165.011C277.525 164.607 278.036 164.195 278.546 163.774C278.759 163.599 279.074 163.628 279.25 163.841ZM276.144 166.322C276.311 166.541 276.268 166.854 276.048 167.02C275.512 167.425 274.977 167.822 274.443 168.209C274.219 168.371 273.907 168.321 273.744 168.099C273.582 167.876 273.632 167.564 273.855 167.402C274.384 167.019 274.913 166.627 275.443 166.226C275.663 166.059 275.977 166.102 276.144 166.322ZM272.939 168.669C273.097 168.895 273.041 169.206 272.814 169.363C272.26 169.748 271.706 170.123 271.154 170.488C270.924 170.64 270.613 170.578 270.461 170.348C270.308 170.119 270.371 169.81 270.601 169.657C271.147 169.296 271.695 168.925 272.244 168.544C272.47 168.387 272.782 168.443 272.939 168.669ZM269.636 170.882C269.784 171.114 269.715 171.422 269.481 171.57C268.91 171.931 268.341 172.281 267.775 172.622C267.539 172.764 267.231 172.688 267.089 172.453C266.946 172.217 267.022 171.91 267.259 171.768C267.819 171.431 268.381 171.084 268.946 170.727C269.18 170.58 269.488 170.649 269.636 170.882ZM266.232 172.955C266.37 173.194 266.287 173.499 266.047 173.636C265.464 173.97 264.884 174.293 264.308 174.605C264.065 174.737 263.761 174.647 263.63 174.405C263.498 174.163 263.587 173.861 263.83 173.729C264.399 173.42 264.973 173.101 265.55 172.771C265.789 172.634 266.095 172.716 266.232 172.955ZM262.749 174.87C262.876 175.115 262.779 175.415 262.533 175.541C261.929 175.851 261.33 176.149 260.737 176.435C260.488 176.555 260.189 176.451 260.069 176.204C259.949 175.956 260.053 175.657 260.301 175.537C260.887 175.255 261.479 174.96 262.076 174.654C262.322 174.528 262.623 174.625 262.749 174.87ZM259.175 176.621C259.289 176.872 259.178 177.167 258.926 177.281C258.31 177.56 257.702 177.825 257.102 178.077C256.847 178.184 256.554 178.066 256.447 177.812C256.339 177.558 256.459 177.266 256.713 177.159C257.305 176.91 257.905 176.648 258.514 176.373C258.765 176.259 259.061 176.37 259.175 176.621ZM255.52 178.187C255.62 178.443 255.492 178.732 255.235 178.832C254.594 179.08 253.965 179.313 253.349 179.53C253.088 179.622 252.803 179.486 252.711 179.226C252.619 178.967 252.755 178.682 253.016 178.59C253.622 178.376 254.241 178.147 254.872 177.903C255.13 177.803 255.42 177.93 255.52 178.187ZM251.769 179.541C251.852 179.803 251.706 180.083 251.443 180.166C251.125 180.266 250.81 180.362 250.5 180.453C250.235 180.531 249.957 180.38 249.879 180.116C249.801 179.852 249.952 179.575 250.217 179.497C250.521 179.407 250.83 179.313 251.142 179.215C251.406 179.132 251.686 179.278 251.769 179.541Z" fill="#C4C4C4"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M314.129 81.02C314.331 81.0082 314.521 81.1198 314.609 81.3023L317.487 87.2923C317.606 87.5406 317.501 87.8384 317.252 87.9574C317.003 88.0764 316.704 87.9715 316.585 87.7232L314.235 82.8316L311.17 91.7461C311.08 92.0066 310.796 92.1454 310.535 92.056C310.273 91.9667 310.134 91.6832 310.224 91.4227L313.685 81.3561C313.751 81.1646 313.926 81.0318 314.129 81.02Z" fill="#C4C4C4"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M284.704 100.669C284.83 100.914 284.733 101.215 284.488 101.34L247.221 120.412C246.976 120.538 246.674 120.441 246.548 120.196C246.422 119.951 246.519 119.65 246.765 119.525L284.031 100.453C284.277 100.327 284.578 100.424 284.704 100.669Z" fill="#C4C4C4"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M284.704 108.232C284.83 108.477 284.733 108.777 284.488 108.903L247.221 127.974C246.976 128.1 246.674 128.004 246.548 127.758C246.422 127.513 246.519 127.213 246.765 127.087L284.031 108.016C284.277 107.89 284.578 107.987 284.704 108.232Z" fill="#C4C4C4"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M284.704 115.928C284.83 116.173 284.733 116.474 284.488 116.6L247.221 135.671C246.976 135.797 246.674 135.7 246.548 135.455C246.422 135.21 246.519 134.91 246.765 134.784L284.031 115.712C284.277 115.587 284.578 115.683 284.704 115.928Z" fill="#C4C4C4"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M269.066 131.491C269.196 131.734 269.103 132.036 268.859 132.165L247.228 143.631C246.984 143.76 246.681 143.667 246.552 143.424C246.422 143.181 246.515 142.879 246.758 142.75L268.39 131.284C268.634 131.155 268.936 131.247 269.066 131.491Z" fill="#C4C4C4"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M131.5 117.531C138.956 117.531 145 111.503 145 104.068C145 96.632 138.956 90.6043 131.5 90.6043C124.044 90.6043 118 96.632 118 104.068C118 111.503 124.044 117.531 131.5 117.531ZM131.5 118.528C139.508 118.528 146 112.054 146 104.068C146 96.0813 139.508 89.6071 131.5 89.6071C123.492 89.6071 117 96.0813 117 104.068C117 112.054 123.492 118.528 131.5 118.528Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M131 112.544C135.418 112.544 139 108.972 139 104.566C139 100.16 135.418 96.5876 131 96.5876C126.582 96.5876 123 100.16 123 104.566C123 108.972 126.582 112.544 131 112.544ZM131 113.541C135.971 113.541 140 109.523 140 104.566C140 99.6088 135.971 95.5903 131 95.5903C126.029 95.5903 122 99.6088 122 104.566C122 109.523 126.029 113.541 131 113.541Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M152.979 248.985V267.147C152.979 269.858 154.45 272.356 156.823 273.678L212.204 304.518L211.717 305.389L156.335 274.549C153.646 273.051 151.979 270.219 151.979 267.147V248.985H152.979Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M104.774 248.985V267.533C104.774 270.243 103.303 272.742 100.93 274.063L45.5488 304.904L46.0364 305.774L101.418 274.934C104.107 273.436 105.774 270.605 105.774 267.533V248.985H104.774Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M115.911 258.766V278.695H114.911V258.766H115.911Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M129.044 268.749V288.678H128.044V268.749H129.044Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M142.016 258.766V278.695H141.016V258.766H142.016Z" fill="#ED1C24"/>
+<path d="M120 143.959C120 142.582 121.119 141.466 122.5 141.466L138.5 141.467C139.881 141.468 141 142.584 141 143.961C141 145.338 139.88 146.454 138.5 146.454L122.5 146.452C121.119 146.452 120 145.336 120 143.959Z" fill="#C4C4C4"/>
+<path d="M124 151.936C124 150.56 125.119 149.443 126.5 149.444L133.5 149.444C134.881 149.444 136 150.561 136 151.938C136 153.314 134.88 154.431 133.5 154.43L126.5 154.43C125.119 154.43 124 153.313 124 151.936Z" fill="#C4C4C4"/>
+<path d="M128 158.917C128 157.54 129.119 156.424 130.5 156.424C131.881 156.424 133 157.541 133 158.917C133 160.294 131.88 161.41 130.5 161.41C129.119 161.41 128 160.294 128 158.917Z" fill="#C4C4C4"/>
+</svg>
diff --git a/public/img/community/b3-rocket2.svg b/public/img/community/b3-rocket2.svg
new file mode 100644
index 0000000..3d1adee
--- /dev/null
+++ b/public/img/community/b3-rocket2.svg
@@ -0,0 +1,67 @@
+<svg width="510" height="381" viewBox="0 0 510 381" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect y="90.4091" width="509" height="290.591" rx="10" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M129.671 333.228V333.232C125.273 333.351 121.735 336.909 121.648 341.314H121.645C121.557 336.868 117.953 333.285 113.499 333.23V333.226C117.896 333.107 121.435 329.549 121.522 325.144H121.525C121.612 329.59 125.217 333.173 129.671 333.228Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M62.674 241.628V241.631C59.4022 241.719 56.7692 244.367 56.7047 247.644H56.7022C56.6371 244.337 53.9554 241.67 50.6414 241.629V241.626C53.9131 241.538 56.5462 238.89 56.6108 235.613H56.6132C56.6784 238.921 59.36 241.587 62.674 241.628Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M106.537 247.644V247.647C103.265 247.735 100.632 250.383 100.567 253.66H100.565C100.5 250.352 97.8182 247.686 94.5041 247.645V247.642C97.7759 247.554 100.409 244.906 100.474 241.629H100.476C100.541 244.936 103.223 247.603 106.537 247.644Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M229.898 142.387V142.39C226.626 142.479 223.993 145.126 223.929 148.403H223.926C223.861 145.096 221.179 142.429 217.865 142.388V142.386C221.137 142.297 223.77 139.649 223.835 136.372H223.837C223.902 139.68 226.584 142.346 229.898 142.387Z" fill="white"/>
+<mask id="path-6-inside-1" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M408.289 172.209V172.216C399.979 172.44 393.291 179.165 393.127 187.489H393.121C392.956 179.088 386.144 172.315 377.727 172.211V172.204C386.037 171.98 392.725 165.255 392.889 156.931H392.895C393.061 165.332 399.872 172.105 408.289 172.209Z"/>
+</mask>
+<path d="M408.289 172.216H409.289V173.189L408.316 173.215L408.289 172.216ZM408.289 172.209L408.302 171.209L409.289 171.221V172.209H408.289ZM393.127 187.489L394.127 187.509L394.108 188.489H393.127V187.489ZM393.121 187.489V188.489H392.141L392.121 187.509L393.121 187.489ZM377.727 172.211L377.715 173.211L376.727 173.199V172.211H377.727ZM377.727 172.204H376.727V171.231L377.7 171.205L377.727 172.204ZM392.889 156.931L391.889 156.911L391.908 155.931H392.889V156.931ZM392.895 156.931V155.931H393.875L393.895 156.911L392.895 156.931ZM407.289 172.216V172.209H409.289V172.216H407.289ZM408.316 173.215C400.54 173.426 394.281 179.719 394.127 187.509L392.128 187.47C392.302 178.611 399.419 171.455 408.262 171.216L408.316 173.215ZM393.121 186.489H393.127V188.489H393.121V186.489ZM392.121 187.509C391.966 179.647 385.592 173.309 377.715 173.211L377.739 171.211C386.697 171.322 393.945 178.529 394.121 187.47L392.121 187.509ZM378.727 172.204V172.211H376.727V172.204H378.727ZM377.7 171.205C385.477 170.994 391.736 164.701 391.889 156.911L393.889 156.95C393.714 165.809 386.597 172.965 377.754 173.204L377.7 171.205ZM392.895 157.931H392.889V155.931H392.895V157.931ZM393.895 156.911C394.05 164.773 400.424 171.111 408.302 171.209L408.277 173.209C399.319 173.098 392.071 165.891 391.895 156.95L393.895 156.911Z" fill="white" mask="url(#path-6-inside-1)"/>
+<mask id="path-8-inside-2" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M467.258 213.465V213.468C462.692 213.592 459.018 217.287 458.927 221.86H458.924C458.833 217.244 455.091 213.523 450.467 213.466V213.462C455.032 213.339 458.706 209.644 458.796 205.071H458.8C458.891 209.687 462.633 213.407 467.258 213.465Z"/>
+</mask>
+<path d="M467.258 213.468H468.258V214.442L467.285 214.468L467.258 213.468ZM467.258 213.465L467.27 212.465L468.258 212.477V213.465H467.258ZM458.927 221.86L459.927 221.88L459.908 222.86H458.927V221.86ZM458.924 221.86V222.86H457.944L457.924 221.88L458.924 221.86ZM450.467 213.466L450.454 214.466L449.467 214.454V213.466H450.467ZM450.467 213.462H449.467V212.489L450.44 212.462L450.467 213.462ZM458.796 205.071L457.797 205.051L457.816 204.071H458.796V205.071ZM458.8 205.071V204.071H459.78L459.8 205.051L458.8 205.071ZM466.258 213.468V213.465H468.258V213.468H466.258ZM467.285 214.468C463.252 214.577 460.007 217.841 459.927 221.88L457.928 221.84C458.028 216.732 462.131 212.607 467.23 212.469L467.285 214.468ZM458.924 220.86H458.927V222.86H458.924V220.86ZM457.924 221.88C457.844 217.803 454.539 214.516 450.454 214.466L450.479 212.466C455.644 212.53 459.822 216.685 459.924 221.84L457.924 221.88ZM451.467 213.462V213.466H449.467V213.462H451.467ZM450.44 212.462C454.472 212.353 457.717 209.09 457.797 205.051L459.796 205.091C459.696 210.198 455.592 214.324 450.494 214.462L450.44 212.462ZM458.8 206.071H458.796V204.071H458.8V206.071ZM459.8 205.051C459.88 209.128 463.185 212.414 467.27 212.465L467.245 214.465C462.081 214.401 457.902 210.246 457.8 205.091L459.8 205.051Z" fill="white" mask="url(#path-8-inside-2)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M450.467 301.03V301.038C440.513 301.307 432.503 309.362 432.306 319.332H432.299C432.1 309.269 423.942 301.158 413.86 301.033V301.024C423.814 300.755 431.824 292.701 432.02 282.73H432.028C432.226 292.793 440.384 300.905 450.467 301.03Z" fill="white"/>
+<mask id="mask0" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="219" y="90" width="291" height="291">
+<rect x="219" y="90.4091" width="291" height="290.591" rx="10" fill="#2D2D2D"/>
+</mask>
+<g mask="url(#mask0)">
+<ellipse cx="399.5" cy="348.046" rx="134.5" ry="134.81" fill="#C4C4C4"/>
+<mask id="mask1" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="265" y="213" width="269" height="270">
+<path d="M533.5 348.046C533.5 422.225 473.505 482.357 399.5 482.357C325.495 482.357 265.5 422.225 265.5 348.046C265.5 273.868 325.495 213.736 399.5 213.736C473.505 213.736 533.5 273.868 533.5 348.046Z" fill="white" stroke="black"/>
+</mask>
+<g mask="url(#mask1)">
+<path d="M457.501 283.314C465.516 273.583 468.004 252.231 468.39 236.919C468.533 231.235 473.15 226.376 478.677 227.738C523.823 238.867 540.234 322.204 543.021 367.84C543.14 369.786 542.658 371.688 541.668 373.368L494.036 454.231C490.025 461.04 480.06 460.722 476.497 453.669C471.276 443.333 465.605 432.09 462.912 426.706C457.501 415.884 481.853 410.473 477.344 402.357C474.488 397.218 466.926 398.518 461.361 400.625C458.83 401.584 456.004 401.936 453.511 400.881C432.923 392.171 446.393 377.939 456.838 371.212C457.28 370.927 457.767 370.682 458.25 370.473C491.535 356.124 475.36 340.024 451.187 325.701C426.835 311.271 444.873 298.645 457.501 283.314Z" fill="#F8F8F8"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M471.858 230.05C470.096 231.709 468.958 234.216 468.89 236.931C468.697 244.605 467.976 253.801 466.297 262.306C464.621 270.793 461.976 278.666 457.887 283.631C455.972 285.956 453.92 288.234 451.918 290.455C450.62 291.896 449.344 293.312 448.141 294.702C445.058 298.263 442.424 301.682 440.934 305.047C439.452 308.394 439.117 311.653 440.581 314.943C442.057 318.259 445.394 321.687 451.442 325.271C457.497 328.858 463.067 332.567 467.494 336.341C471.913 340.109 475.236 343.978 476.733 347.899C478.244 351.86 477.88 355.845 474.989 359.736C472.125 363.591 466.8 367.331 458.448 370.932C457.983 371.132 457.522 371.366 457.109 371.632C454.521 373.298 451.75 375.427 449.37 377.813C446.986 380.204 445.019 382.828 444.004 385.481C442.994 388.121 442.932 390.768 444.314 393.276C445.708 395.803 448.612 398.266 453.706 400.421C456.035 401.407 458.717 401.093 461.184 400.159C463.994 399.094 467.344 398.219 470.378 398.275C473.417 398.33 476.233 399.329 477.781 402.114C478.403 403.234 478.536 404.333 478.283 405.404C478.034 406.458 477.419 407.449 476.609 408.389C475.209 410.016 473.123 411.605 471.024 413.203C470.714 413.439 470.403 413.676 470.094 413.913C467.663 415.779 465.333 417.678 463.933 419.756C463.239 420.787 462.788 421.843 462.66 422.943C462.533 424.038 462.723 425.209 463.36 426.483C466.051 431.866 471.722 443.108 476.944 453.444C480.328 460.144 489.795 460.447 493.605 453.977L541.237 373.115C542.179 371.516 542.635 369.712 542.522 367.87C541.13 345.083 536.337 312.89 526.263 285.018C521.227 271.083 514.878 258.249 506.992 248.215C499.106 238.182 489.704 230.971 478.557 228.223C475.978 227.587 473.612 228.397 471.858 230.05ZM471.171 229.323C473.143 227.466 475.849 226.527 478.797 227.254C490.224 230.07 499.802 237.45 507.778 247.598C515.753 257.745 522.146 270.685 527.204 284.679C537.319 312.667 542.125 344.96 543.521 367.809C543.646 369.859 543.137 371.859 542.099 373.622L494.467 454.484C490.256 461.633 479.792 461.3 476.051 453.893C470.83 443.558 465.158 432.314 462.465 426.929C461.749 425.498 461.516 424.133 461.667 422.828C461.818 421.529 462.346 420.324 463.104 419.199C464.607 416.965 467.069 414.975 469.485 413.121C469.8 412.88 470.113 412.641 470.424 412.404C472.536 410.795 474.525 409.279 475.851 407.738C476.606 406.861 477.112 406.012 477.31 405.175C477.504 404.354 477.412 403.509 476.906 402.599C475.599 400.245 473.206 399.325 470.359 399.273C467.507 399.221 464.293 400.049 461.539 401.092C458.942 402.075 455.973 402.465 453.316 401.341C448.116 399.141 444.983 396.559 443.438 393.758C441.883 390.937 441.98 387.973 443.07 385.125C444.154 382.291 446.226 379.551 448.662 377.109C451.102 374.662 453.931 372.49 456.567 370.792C457.038 370.489 457.551 370.231 458.052 370.015C466.342 366.441 471.477 362.787 474.186 359.141C476.869 355.529 477.191 351.904 475.798 348.255C474.39 344.567 471.217 340.829 466.845 337.101C462.48 333.379 456.964 329.704 450.932 326.13C444.804 322.499 441.264 318.938 439.667 315.349C438.059 311.734 438.457 308.173 440.019 304.644C441.574 301.132 444.295 297.618 447.384 294.049C448.617 292.625 449.904 291.198 451.204 289.754C453.189 287.552 455.207 285.313 457.115 282.997C461.04 278.231 463.647 270.563 465.316 262.113C466.981 253.681 467.698 244.545 467.89 236.906C467.965 233.937 469.207 231.173 471.171 229.323Z" fill="#2D2D2D"/>
+<path d="M388.94 253.315C407.896 250.812 411.062 232.828 409.752 219.594C409.378 215.819 406.448 212.884 402.727 212.123C338.989 199.098 296.787 231.558 283.371 249.999C243.968 295.002 253.641 348.429 265.226 374.194C266.729 377.537 270.168 379.651 273.803 379.141C286.617 377.344 286.331 369.517 283.954 364.62C283.598 363.887 283.244 363.131 283.012 362.35C276.235 339.52 281.204 337.818 294.669 335.013C308.364 332.16 316.353 369.247 328.336 370.959C335.925 372.042 341.533 375.343 344.541 377.804C345.815 378.846 346.534 380.364 347.028 381.933C350.162 391.882 357.311 398.689 361.891 401.794C363.054 402.582 364.462 402.982 365.865 403.054C398.161 404.705 377.302 380.213 372.275 359.547C367.139 338.436 388.252 323.602 393.959 317.326C399.665 311.049 393.959 292.221 399.665 283.662C405.371 275.104 401.377 268.828 393.959 265.975C389.705 264.339 385.588 268.859 382.826 273.442C381.003 276.468 378.118 278.848 374.616 279.342C363.076 280.968 345.188 283.277 336.325 283.662C323.2 284.233 323.2 270.539 328.336 260.269C333.472 249.999 339.178 259.128 357.438 265.975C366.885 269.517 373.023 265.933 376.592 261.209C379.591 257.24 384.004 253.966 388.94 253.315Z" fill="#F8F8F8"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M402.626 212.612C339.111 199.633 297.096 231.983 283.775 250.293L283.762 250.311L283.747 250.328C244.521 295.128 254.142 348.324 265.682 373.989C267.103 377.151 270.341 379.122 273.733 378.646C280.049 377.76 282.982 375.414 284.118 372.841C285.267 370.238 284.661 367.221 283.504 364.837C283.149 364.105 282.777 363.316 282.533 362.492C280.835 356.772 279.863 352.347 279.582 348.882C279.301 345.417 279.706 342.861 280.816 340.924C281.93 338.978 283.713 337.729 286.026 336.794C288.328 335.864 291.208 335.224 294.567 334.524C298.253 333.756 301.488 335.702 304.389 338.847C307.296 341.997 309.978 346.468 312.579 351.027C313.009 351.781 313.436 352.537 313.863 353.291C316.028 357.119 318.156 360.882 320.352 363.927C321.664 365.747 322.985 367.288 324.333 368.424C325.681 369.559 327.032 370.268 328.407 370.464C336.1 371.563 341.791 374.909 344.858 377.418C346.244 378.552 347 380.18 347.505 381.783C350.596 391.593 357.654 398.318 362.172 401.381C363.245 402.109 364.561 402.487 365.891 402.555C373.944 402.967 378.506 401.731 380.853 399.497C383.165 397.296 383.47 393.976 382.577 389.773C381.691 385.603 379.662 380.735 377.512 375.578L377.474 375.487C375.319 370.319 373.057 364.876 371.789 359.665C369.171 348.906 373.255 339.767 378.651 332.574C381.349 328.977 384.384 325.853 387.094 323.242C388.088 322.285 389.031 321.402 389.898 320.591C391.412 319.174 392.69 317.978 393.589 316.99C394.909 315.537 395.606 313.311 395.959 310.558C396.311 307.814 396.312 304.639 396.312 301.35V301.333C396.312 298.064 396.312 294.688 396.672 291.593C397.032 288.495 397.758 285.622 399.249 283.386C402.04 279.199 402.403 275.665 401.27 272.866C400.128 270.045 397.414 267.839 393.779 266.441C391.884 265.712 389.978 266.326 388.142 267.769C386.304 269.213 384.622 271.431 383.255 273.7C381.377 276.816 378.376 279.316 374.686 279.836C363.152 281.461 345.238 283.775 336.347 284.161C332.978 284.308 330.392 283.54 328.511 282.087C326.632 280.635 325.512 278.54 324.994 276.136C323.963 271.35 325.291 265.24 327.889 260.046C329.194 257.435 330.596 255.931 332.333 255.389C334.056 254.851 335.966 255.308 338.162 256.244C339.756 256.923 341.572 257.889 343.654 258.995C344.444 259.415 345.272 259.855 346.141 260.308C349.315 261.961 353.075 263.806 357.614 265.507C362.248 267.245 366.026 267.22 369.063 266.218C372.105 265.213 374.454 263.21 376.193 260.908C379.244 256.87 383.766 253.494 388.874 252.82C398.169 251.593 403.561 246.589 406.492 240.269C409.438 233.917 409.905 226.212 409.254 219.643C408.904 216.109 406.157 213.334 402.626 212.612ZM282.979 249.687C296.506 231.112 338.887 198.568 402.827 211.634C406.739 212.434 409.852 215.529 410.25 219.545C410.91 226.21 410.449 234.114 407.399 240.688C404.336 247.294 398.666 252.534 389.005 253.81C384.243 254.438 379.938 257.61 376.992 261.509C375.162 263.931 372.657 266.082 369.376 267.166C366.09 268.251 362.076 268.247 357.262 266.442C352.671 264.721 348.87 262.856 345.678 261.193C344.784 260.727 343.941 260.279 343.143 259.855C341.08 258.759 339.321 257.824 337.769 257.162C335.614 256.244 333.993 255.917 332.631 256.342C331.283 256.763 330.045 257.968 328.783 260.492C326.245 265.569 325.005 271.44 325.972 275.926C326.452 278.158 327.472 280.022 329.123 281.297C330.774 282.572 333.109 283.302 336.303 283.164C345.137 282.779 363.001 280.474 374.546 278.847C377.86 278.381 380.629 276.12 382.398 273.185C383.792 270.871 385.549 268.537 387.524 266.984C389.5 265.43 391.78 264.602 394.138 265.509C397.922 266.964 400.914 269.322 402.197 272.492C403.489 275.684 402.996 279.567 400.081 283.939C398.719 285.982 398.018 288.672 397.665 291.708C397.312 294.741 397.312 298.063 397.312 301.35V301.372C397.312 304.636 397.312 307.872 396.951 310.685C396.591 313.495 395.861 315.976 394.329 317.661C393.405 318.677 392.075 319.922 390.535 321.364C389.674 322.17 388.747 323.037 387.788 323.961C385.094 326.557 382.103 329.638 379.451 333.173C374.147 340.244 370.242 349.077 372.761 359.429C374.006 364.551 376.236 369.919 378.397 375.104L378.463 375.261C380.591 380.366 382.65 385.304 383.555 389.566C384.468 393.862 384.247 397.647 381.543 400.22C378.876 402.759 373.935 403.966 365.84 403.552C364.363 403.477 362.862 403.056 361.61 402.207C356.968 399.06 349.729 392.17 346.551 382.083C346.068 380.547 345.386 379.141 344.224 378.19C341.275 375.777 335.749 372.522 328.265 371.453C326.644 371.221 325.124 370.396 323.688 369.187C322.252 367.978 320.876 366.364 319.54 364.51C317.309 361.416 315.148 357.594 312.984 353.767C312.559 353.017 312.135 352.266 311.71 351.521C309.103 346.951 306.472 342.578 303.654 339.524C300.831 336.464 297.932 334.843 294.771 335.502C291.397 336.205 288.606 336.829 286.401 337.72C284.208 338.606 282.647 339.736 281.684 341.42C280.715 343.112 280.306 345.438 280.579 348.801C280.852 352.164 281.801 356.512 283.491 362.208C283.71 362.945 284.048 363.668 284.404 364.402C285.624 366.916 286.35 370.261 285.033 373.244C283.702 376.258 280.37 378.724 273.872 379.635C269.995 380.179 266.355 377.924 264.769 374.398C253.141 348.537 243.417 294.889 282.979 249.687Z" fill="black"/>
+</g>
+</g>
+<path d="M308.56 288.833C310.887 288.103 312.987 287.889 314.665 288.255L314.559 288.743C315.565 288.962 316.377 289.399 316.976 290.051C317.575 290.704 317.94 291.55 318.073 292.571L318.568 292.507C318.789 294.21 318.396 296.284 317.469 298.54L317.007 298.35C316.316 300.033 315.316 301.83 314.04 303.656L314.45 303.942C313.335 305.538 312.015 307.151 310.514 308.725L310.152 308.38C309.461 309.106 308.73 309.823 307.963 310.527C307.195 311.232 306.418 311.898 305.636 312.525L305.949 312.915C304.251 314.276 302.531 315.452 300.846 316.427L300.595 315.994C298.666 317.109 296.791 317.95 295.054 318.495L295.204 318.972C292.877 319.701 290.777 319.916 289.098 319.55L289.205 319.062C288.199 318.843 287.386 318.406 286.787 317.754C286.189 317.101 285.823 316.254 285.691 315.234L285.195 315.298C284.975 313.595 285.368 311.521 286.294 309.265L286.757 309.455C287.448 307.772 288.447 305.975 289.723 304.149L289.313 303.862C290.429 302.266 291.748 300.654 293.249 299.079L293.611 299.424C294.303 298.699 295.033 297.982 295.801 297.277C296.568 296.573 297.346 295.907 298.128 295.28L297.815 294.89C299.513 293.529 301.232 292.353 302.918 291.378L303.168 291.811C305.097 290.696 306.973 289.854 308.709 289.31L308.56 288.833Z" stroke="#C4C4C4" stroke-dasharray="7 7"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M335.366 238.632L334.495 239.121C333.999 238.239 333.411 237.423 332.728 236.679C332.046 235.935 331.283 235.28 330.446 234.711L331.008 233.884C331.908 234.496 332.729 235.202 333.465 236.004C334.201 236.806 334.834 237.684 335.366 238.632ZM325.045 231.394L324.828 232.37C322.943 231.952 320.862 231.774 318.613 231.835L318.587 230.836C320.903 230.773 323.067 230.956 325.045 231.394ZM312.129 231.563L312.315 232.544C310.33 232.921 308.262 233.442 306.127 234.106L305.83 233.152C307.998 232.478 310.103 231.947 312.129 231.563ZM299.713 235.364L300.092 236.288C298.175 237.074 296.221 237.961 294.241 238.945L293.797 238.05C295.797 237.056 297.773 236.16 299.713 235.364ZM288.064 241.127L288.563 241.993C286.742 243.042 284.907 244.168 283.066 245.368L282.521 244.531C284.376 243.322 286.227 242.186 288.064 241.127ZM277.168 248.219L277.755 249.027C276.042 250.271 274.329 251.577 272.624 252.943L271.999 252.163C273.717 250.788 275.442 249.472 277.168 248.219ZM267.017 256.342L267.676 257.093C266.872 257.799 266.071 258.518 265.273 259.251C264.475 259.983 263.689 260.72 262.917 261.46L262.225 260.739C263.003 259.993 263.794 259.252 264.597 258.514C265.4 257.777 266.207 257.053 267.017 256.342ZM257.634 265.345L258.358 266.034C256.851 267.616 255.403 269.21 254.017 270.81L253.262 270.156C254.658 268.544 256.117 266.938 257.634 265.345ZM249.129 275.173L249.916 275.789C248.563 277.52 247.284 279.251 246.082 280.976L245.262 280.405C246.475 278.664 247.765 276.918 249.129 275.173ZM241.706 285.851L242.559 286.371C241.409 288.26 240.359 290.13 239.411 291.973L238.522 291.516C239.481 289.651 240.544 287.759 241.706 285.851ZM235.795 297.42L236.72 297.797C235.876 299.867 235.179 301.883 234.634 303.829L233.672 303.559C234.228 301.573 234.938 299.522 235.795 297.42ZM232.395 309.93L233.388 310.042C233.135 312.277 233.134 314.365 233.389 316.279L232.399 316.411C232.131 314.404 232.134 312.233 232.395 309.93ZM234.369 322.566C234.902 323.514 235.535 324.392 236.271 325.194C237.007 325.996 237.828 326.702 238.727 327.313L239.289 326.487C238.452 325.918 237.69 325.262 237.007 324.518C236.324 323.774 235.736 322.959 235.241 322.076L234.369 322.566ZM244.691 329.803L244.907 328.828C246.793 329.246 248.873 329.424 251.122 329.363L251.149 330.362C248.832 330.424 246.669 330.242 244.691 329.803ZM257.606 329.635L257.42 328.653C259.406 328.277 261.474 327.755 263.609 327.092L263.905 328.046C261.738 328.72 259.633 329.251 257.606 329.635ZM270.022 325.834L269.643 324.91C271.56 324.123 273.514 323.237 275.494 322.253L275.939 323.148C273.938 324.142 271.963 325.038 270.022 325.834ZM281.671 320.071L281.172 319.205C282.993 318.155 284.828 317.029 286.669 315.829L287.215 316.666C285.359 317.876 283.509 319.012 281.671 320.071ZM292.568 312.979L291.98 312.171C293.694 310.926 295.406 309.621 297.112 308.255L297.736 309.035C296.019 310.41 294.294 311.726 292.568 312.979ZM302.718 304.855L302.059 304.105C302.863 303.399 303.665 302.679 304.463 301.947C305.261 301.215 306.046 300.478 306.818 299.737L307.51 300.458C306.732 301.204 305.942 301.946 305.138 302.683C304.335 303.42 303.528 304.145 302.718 304.855ZM312.101 295.853L311.377 295.164C312.884 293.582 314.332 291.988 315.719 290.387L316.474 291.041C315.077 292.654 313.619 294.26 312.101 295.853ZM320.606 286.024L319.819 285.409C321.172 283.678 322.451 281.947 323.653 280.222L324.473 280.793C323.261 282.533 321.971 284.279 320.606 286.024ZM328.03 275.346L327.176 274.827C328.326 272.938 329.377 271.068 330.325 269.225L331.213 269.682C330.254 271.547 329.191 273.438 328.03 275.346ZM333.941 263.777L333.015 263.4C333.859 261.33 334.556 259.315 335.101 257.369L336.063 257.638C335.507 259.624 334.798 261.676 333.941 263.777ZM337.341 251.268L336.348 251.156C336.6 248.92 336.601 246.833 336.346 244.918L337.337 244.786C337.604 246.794 337.601 248.965 337.341 251.268Z" fill="#C4C4C4"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M337.233 174.094L336.397 174.641C335.804 173.736 335.141 172.883 334.407 172.083C333.673 171.284 332.88 170.551 332.029 169.882L332.646 169.096C333.539 169.798 334.373 170.568 335.144 171.408C335.914 172.247 336.61 173.144 337.233 174.094ZM326.729 165.757L326.365 166.688C324.422 165.928 322.3 165.375 320.012 165.025L320.163 164.038C322.515 164.397 324.71 164.968 326.729 165.757ZM313.371 163.578L313.379 164.577C311.249 164.593 309.02 164.748 306.7 165.038L306.576 164.047C308.931 163.752 311.199 163.594 313.371 163.578ZM299.866 165.206L300.078 166.183C297.955 166.644 295.775 167.203 293.543 167.858L293.262 166.899C295.515 166.238 297.718 165.673 299.866 165.206ZM286.777 169.016L287.114 169.957C285.049 170.697 282.949 171.511 280.818 172.398L280.434 171.475C282.579 170.583 284.695 169.763 286.777 169.016ZM274.191 174.238L274.615 175.142C272.613 176.08 270.589 177.077 268.546 178.133L268.087 177.245C270.141 176.184 272.177 175.181 274.191 174.238ZM262.089 180.481C260.136 181.579 258.171 182.727 256.195 183.924L256.713 184.779C258.68 183.587 260.636 182.445 262.579 181.352L262.089 180.481ZM250.431 187.538L250.974 188.377C249.1 189.591 247.219 190.848 245.335 192.148L244.767 191.325C246.66 190.02 248.548 188.758 250.431 187.538ZM239.207 195.271L239.796 196.078C237.985 197.4 236.173 198.76 234.361 200.157L233.751 199.365C235.57 197.963 237.389 196.598 239.207 195.271ZM228.411 203.591L229.041 204.367C227.299 205.781 225.56 207.229 223.825 208.709L223.177 207.949C224.917 206.464 226.663 205.011 228.411 203.591ZM218.048 212.435L218.715 213.179C217.873 213.933 217.032 214.696 216.193 215.465C215.354 216.235 214.523 217.008 213.698 217.782L213.014 217.054C213.841 216.277 214.675 215.502 215.517 214.729C216.359 213.957 217.203 213.192 218.048 212.435ZM208.106 221.779L208.807 222.491C207.184 224.092 205.592 225.7 204.034 227.314L203.315 226.621C204.879 225.001 206.476 223.386 208.106 221.779ZM198.647 231.579L199.383 232.254C197.836 233.94 196.326 235.629 194.854 237.32L194.1 236.663C195.578 234.966 197.094 233.27 198.647 231.579ZM189.692 241.865L190.463 242.5C189.007 244.267 187.594 246.033 186.223 247.796L185.434 247.183C186.811 245.412 188.23 243.639 189.692 241.865ZM181.339 252.616L182.147 253.205C180.791 255.062 179.485 256.913 178.23 258.755L177.404 258.193C178.665 256.341 179.978 254.482 181.339 252.616ZM173.666 263.891L174.511 264.424C173.285 266.369 172.118 268.3 171.012 270.214L170.147 269.714C171.259 267.788 172.433 265.846 173.666 263.891ZM166.86 275.697L167.746 276.158C166.68 278.205 165.689 280.228 164.775 282.222L163.867 281.805C164.788 279.796 165.787 277.758 166.86 275.697ZM161.201 288.084L162.133 288.447C161.289 290.614 160.546 292.739 159.904 294.813L158.95 294.518C159.598 292.419 160.35 290.273 161.201 288.084ZM157.22 301.104L158.197 301.313C157.709 303.599 157.364 305.807 157.166 307.926L156.171 307.833C156.373 305.671 156.724 303.425 157.22 301.104ZM156.048 314.639L157.045 314.573C157.197 316.882 157.567 319.044 158.157 321.044L157.199 321.327C156.585 319.248 156.204 317.013 156.048 314.639ZM160.02 327.507C160.642 328.457 161.338 329.354 162.109 330.194C162.88 331.033 163.713 331.803 164.607 332.505L165.224 331.719C164.373 331.051 163.579 330.317 162.845 329.518C162.111 328.718 161.449 327.865 160.856 326.96L160.02 327.507ZM170.524 335.844L170.888 334.913C172.83 335.673 174.953 336.226 177.241 336.576L177.089 337.564C174.737 337.204 172.543 336.633 170.524 335.844ZM183.882 338.024C186.053 338.007 188.322 337.849 190.676 337.554L190.552 336.563C188.232 336.853 186.003 337.008 183.874 337.024L183.882 338.024ZM197.387 336.395L197.175 335.418C199.297 334.957 201.477 334.398 203.71 333.744L203.991 334.702C201.738 335.363 199.534 335.928 197.387 336.395ZM210.476 332.585L210.139 331.644C212.204 330.904 214.304 330.09 216.435 329.203L216.819 330.126C214.673 331.018 212.557 331.839 210.476 332.585ZM223.061 327.364L222.637 326.459C224.64 325.521 226.664 324.524 228.707 323.468L229.165 324.356C227.112 325.417 225.076 326.42 223.061 327.364ZM235.163 321.12L234.673 320.249C236.617 319.156 238.573 318.014 240.539 316.822L241.057 317.677C239.082 318.874 237.116 320.022 235.163 321.12ZM246.822 314.063L246.278 313.224C248.152 312.01 250.033 310.753 251.918 309.454L252.485 310.276C250.593 311.581 248.704 312.843 246.822 314.063ZM258.045 306.33L257.456 305.523C259.267 304.201 261.08 302.841 262.891 301.444L263.501 302.236C261.683 303.638 259.864 305.003 258.045 306.33ZM268.842 298.01L268.212 297.234C269.953 295.82 271.693 294.372 273.427 292.892L274.076 293.652C272.335 295.138 270.59 296.59 268.842 298.01ZM279.204 289.167L278.538 288.422C279.38 287.668 280.221 286.905 281.059 286.136C281.898 285.366 282.73 284.594 283.554 283.819L284.238 284.547C283.411 285.324 282.577 286.099 281.735 286.872C280.893 287.644 280.05 288.409 279.204 289.167ZM289.147 279.822L288.445 279.111C290.069 277.509 291.66 275.901 293.218 274.287L293.937 274.981C292.373 276.601 290.776 278.215 289.147 279.822ZM298.605 270.022L297.869 269.347C299.416 267.662 300.926 265.972 302.399 264.281L303.152 264.938C301.674 266.635 300.158 268.331 298.605 270.022ZM307.56 259.736L306.789 259.101C308.245 257.334 309.659 255.568 311.029 253.805L311.818 254.418C310.442 256.189 309.022 257.963 307.56 259.736ZM315.913 248.985L315.106 248.396C316.461 246.539 317.767 244.688 319.022 242.846L319.848 243.408C318.587 245.26 317.275 247.12 315.913 248.985ZM323.587 237.71L322.741 237.177C323.968 235.233 325.135 233.301 326.24 231.387L327.106 231.887C325.993 233.813 324.82 235.755 323.587 237.71ZM330.393 225.904L329.506 225.443C330.572 223.396 331.563 221.373 332.478 219.38L333.386 219.796C332.464 221.805 331.466 223.843 330.393 225.904ZM336.051 213.517L335.12 213.154C335.963 210.987 336.707 208.863 337.348 206.788L338.303 207.083C337.654 209.182 336.903 211.328 336.051 213.517ZM340.033 200.497L339.055 200.288C339.544 198.002 339.888 195.794 340.087 193.675L341.082 193.768C340.879 195.93 340.528 198.176 340.033 200.497ZM341.205 186.962L340.208 187.028C340.055 184.719 339.686 182.557 339.095 180.557L340.054 180.274C340.667 182.353 341.048 184.588 341.205 186.962Z" fill="#C4C4C4"/>
+<path d="M316.639 317.521L187.738 177.159C187.517 176.918 187.316 176.66 187.138 176.386C184.368 172.118 177.843 173.154 176.535 178.07L174.37 186.203C173.69 188.755 174.509 191.472 176.487 193.226L316.639 317.521Z" fill="url(#paint0_linear)"/>
+<path d="M173.347 196.226C173.347 196.226 147.242 194.306 159.836 172.674C162.243 168.484 171.992 155.269 168.532 149.432C168.532 149.432 182.463 157.082 174.643 170.391C166.595 184.034 167.744 193.615 173.347 196.226Z" fill="#ED1C24"/>
+<path d="M154.564 176.636C154.564 176.636 141.961 169.531 154.807 160.175C156.093 159.3 165.659 153.066 166.596 148.404C166.596 148.404 169.294 154.234 162.774 161.829C156.284 169.408 153.329 171.967 154.564 176.636Z" fill="#ED1C24"/>
+<path d="M187.833 173.842C183.866 187.125 184.314 193.855 191.637 199.12C191.637 199.12 161.178 202.387 177.434 172.171C183.25 161.367 178.512 155.788 178.395 155.559C180.544 156.298 191.799 160.559 187.833 173.842Z" fill="#ED1C24"/>
+<path d="M100.074 175.522L166.208 110.46C168.94 107.773 167.756 103.139 164.071 102.093L72.4975 76.0982C68.7424 75.0322 65.2683 78.4912 66.3185 82.2503L91.7579 173.307C92.7814 176.971 97.3617 178.191 100.074 175.522Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M164.208 101.612C168.261 102.763 169.564 107.86 166.559 110.816L100.425 175.878C97.4408 178.814 92.4025 177.472 91.2766 173.442L65.8373 82.3848C64.682 78.2498 68.5035 74.4449 72.6342 75.6175L164.208 101.612ZM165.858 110.104C168.316 107.685 167.251 103.515 163.934 102.574L72.3609 76.5787C68.9813 75.6194 65.8546 78.7324 66.7998 82.1157L92.2391 173.173C93.1603 176.47 97.2825 177.568 99.7239 175.166L165.858 110.104Z" fill="black"/>
+<path d="M166.227 139.026C170.564 143.274 167.503 153.429 159.392 161.707C151.28 169.984 141.189 173.251 136.852 169.002C132.516 164.754 135.576 154.599 143.687 146.321C151.799 138.043 161.89 134.777 166.227 139.026Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M166.521 148.567C167.718 144.595 167.297 141.473 165.528 139.739C163.758 138.006 160.628 137.649 156.681 138.927C152.784 140.188 148.367 142.973 144.401 147.021C140.435 151.068 137.74 155.54 136.559 159.461C135.362 163.433 135.782 166.555 137.552 168.288C139.321 170.022 142.451 170.379 146.398 169.101C150.295 167.84 154.712 165.055 158.678 161.007C162.644 156.96 165.339 152.488 166.521 148.567ZM159.392 161.707C167.503 153.429 170.564 143.274 166.227 139.026C161.89 134.777 151.799 138.043 143.687 146.321C135.576 154.599 132.516 164.754 136.852 169.002C141.189 173.251 151.28 169.984 159.392 161.707Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M161.995 131.821L162.12 131.694L161.029 130.625C161.016 130.613 161.003 130.6 160.989 130.587C160.976 130.574 160.963 130.561 160.95 130.548L91.1957 62.2107L56.6576 97.4562L127.581 166.94L127.706 166.812C133.368 170.298 144.24 166.382 153.071 157.37C161.902 148.358 165.595 137.41 161.995 131.821Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M161.029 130.625L162.12 131.694L161.995 131.821C165.595 137.41 161.902 148.358 153.071 157.37C144.24 166.382 133.368 170.298 127.706 166.812L127.581 166.94L56.6576 97.4562L91.1957 62.2107L160.95 130.548L160.989 130.587L161.029 130.625ZM91.2099 63.6237L58.0708 97.4415L127.639 165.597L128.231 165.961C130.679 167.469 134.446 167.465 138.855 165.84C143.224 164.23 148.028 161.089 152.357 156.671C156.687 152.253 159.729 147.386 161.25 142.986C162.785 138.545 162.712 134.78 161.155 132.363L160.78 131.781L160.324 131.334L160.29 131.301L160.256 131.268L160.25 131.262L91.2099 63.6237Z" fill="black"/>
+<path d="M91.1935 62.1811C96.1215 67.009 92.4446 78.7517 82.9811 88.4091C73.5175 98.0665 61.8508 101.982 56.9229 97.1537C51.9949 92.3258 55.6717 80.5831 65.1353 70.9257C74.5989 61.2683 86.2655 57.3532 91.1935 62.1811Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M91.5304 73.1855C92.9785 68.5608 92.5496 64.9086 90.4941 62.8949C88.4386 60.8811 84.778 60.5269 80.1833 62.0687C75.6462 63.5913 70.4939 66.8852 65.8491 71.6251C61.2044 76.365 58.0159 81.5827 56.586 86.1493C55.1379 90.774 55.5668 94.4262 57.6223 96.4399C59.6778 98.4537 63.3384 98.8079 67.9331 97.266C72.4702 95.7435 77.6225 92.4496 82.2672 87.7097C86.912 82.9698 90.1005 77.7521 91.5304 73.1855ZM82.9811 88.4091C92.4446 78.7517 96.1215 67.009 91.1935 62.1811C86.2655 57.3532 74.5989 61.2683 65.1353 70.9257C55.6717 80.5831 51.9949 92.3258 56.9229 97.1537C61.8508 101.982 73.5175 98.0665 82.9811 88.4091Z" fill="black"/>
+<path d="M44.2477 53.544L51.0094 82.5243C52.4368 88.6423 56.389 94.6353 62.5966 93.6601C67.1127 92.9506 72.7693 90.3307 78.9934 83.9791C85.8728 76.9588 88.0387 70.8973 88.1059 66.3748C88.1838 61.1341 82.9542 58.2426 77.8535 57.0366L47.8582 49.9447C45.692 49.4325 43.742 51.3765 44.2477 53.544Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M47.7431 50.431C45.9379 50.0042 44.3129 51.6241 44.7343 53.4304L51.496 82.4107C52.197 85.4155 53.5121 88.3568 55.3806 90.4164C57.2371 92.4628 59.618 93.6223 62.5192 93.1666C66.9073 92.4772 72.4706 89.9218 78.6366 83.6295C85.4526 76.6738 87.5415 70.7286 87.6063 66.3676C87.6423 63.9411 86.4589 62.0439 84.6118 60.5848C82.754 59.1173 80.2479 58.1162 77.7383 57.5229L47.7431 50.431ZM43.7611 53.6577C43.1711 51.1289 45.4461 48.861 47.9733 49.4586L77.9686 56.5505C80.5598 57.1631 83.2188 58.2108 85.2315 59.8007C87.255 61.3991 88.6474 63.5679 88.6055 66.3821C88.5359 71.0662 86.2929 77.2439 79.3503 84.3287C73.068 90.7397 67.3181 93.4241 62.674 94.1537C59.3676 94.6731 56.6686 93.3237 54.6403 91.0879C52.6239 88.8653 51.2491 85.7512 50.5227 82.638L43.7611 53.6577Z" fill="black"/>
+<path d="M115.163 173.943L114.306 153.686C114.271 152.858 114.58 152.052 115.16 151.46L118.062 148.499C119.653 146.875 122.402 147.543 123.069 149.716L133.303 183.054C133.513 183.738 133.961 184.325 134.566 184.707L142.391 189.655C144.004 190.675 144.259 192.929 142.923 194.292L141.271 195.979C140.518 196.747 139.412 197.053 138.372 196.782L132.318 195.202C122.549 192.654 115.59 184.03 115.163 173.943Z" fill="#C4C4C4"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M117.705 148.15L114.803 151.111C114.126 151.801 113.766 152.741 113.806 153.707L114.664 173.965C115.1 184.27 122.211 193.082 132.192 195.686L138.245 197.265C139.459 197.582 140.749 197.224 141.627 196.328L143.28 194.642C144.837 193.052 144.541 190.424 142.658 189.233L134.833 184.285C134.329 183.966 133.955 183.478 133.78 182.907L123.547 149.57C122.768 147.035 119.561 146.255 117.705 148.15ZM115.517 151.81L118.419 148.849C119.745 147.495 122.035 148.052 122.591 149.863L132.825 183.201C133.07 183.999 133.593 184.683 134.299 185.13L142.123 190.077C143.466 190.926 143.681 192.805 142.566 193.943L140.914 195.629C140.287 196.269 139.365 196.524 138.498 196.298L132.444 194.719C122.888 192.226 116.079 183.789 115.662 173.922L114.805 153.664C114.776 152.975 115.033 152.303 115.517 151.81Z" fill="black"/>
+<path d="M119.62 170.168L118.772 147.581C118.671 144.872 121.931 143.429 123.867 145.326L134.455 155.698C135.007 156.239 135.328 156.973 135.353 157.745L135.917 175.836C135.939 176.563 136.226 177.258 136.724 177.79L146.016 187.718C147.975 189.81 146.16 193.195 143.333 192.724L138.802 191.969C128.043 190.175 120.029 181.067 119.62 170.168Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M124.217 144.968C121.958 142.755 118.154 144.439 118.273 147.599L119.121 170.187C119.538 181.323 127.727 190.629 138.72 192.461L143.251 193.216C146.549 193.766 148.666 189.817 146.381 187.376L137.089 177.448C136.674 177.005 136.435 176.426 136.416 175.819L135.852 157.729C135.824 156.828 135.448 155.972 134.804 155.341L124.217 144.968ZM119.272 147.561C119.187 145.304 121.904 144.102 123.517 145.682L134.105 156.055C134.565 156.505 134.833 157.117 134.853 157.761L135.417 175.851C135.444 176.7 135.778 177.51 136.359 178.131L145.651 188.059C147.283 189.803 145.771 192.623 143.415 192.23L138.884 191.475C128.359 189.721 120.519 180.811 120.119 170.149L119.272 147.561Z" fill="black"/>
+<path d="M167.647 120.385L147.373 119.941C146.545 119.923 145.746 120.249 145.166 120.841L142.264 123.802C140.672 125.426 141.397 128.16 143.583 128.783L177.126 138.333C177.815 138.529 178.41 138.965 178.805 139.562L183.912 147.284C184.965 148.876 187.224 149.085 188.56 147.721L190.212 146.035C190.965 145.267 191.249 144.155 190.956 143.121L189.254 137.101C186.506 127.388 177.741 120.606 167.647 120.385Z" fill="#C4C4C4"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M141.907 123.452L144.809 120.491C145.485 119.801 146.418 119.421 147.384 119.442L167.658 119.886C177.971 120.111 186.927 127.04 189.734 136.965L191.437 142.985C191.778 144.191 191.447 145.489 190.569 146.385L188.917 148.071C187.359 149.66 184.725 149.418 183.495 147.559L178.389 139.838C178.059 139.34 177.563 138.977 176.989 138.814L143.446 129.263C140.895 128.537 140.05 125.347 141.907 123.452ZM145.522 121.19L142.621 124.152C141.294 125.505 141.898 127.784 143.72 128.302L177.263 137.853C178.067 138.081 178.761 138.59 179.222 139.287L184.329 147.008C185.205 148.333 187.088 148.509 188.203 147.372L189.855 145.685C190.483 145.045 190.719 144.119 190.475 143.257L188.773 137.237C186.085 127.735 177.51 121.101 167.635 120.885L147.362 120.441C146.672 120.426 146.006 120.697 145.522 121.19Z" fill="black"/>
+<path d="M163.826 123.611L141.582 123.23C138.871 123.184 137.495 126.472 139.431 128.369L149.895 138.621C150.447 139.162 151.187 139.468 151.96 139.477L169.91 139.67C170.638 139.678 171.339 139.951 171.881 140.437L181.869 149.408C184.001 151.323 187.348 149.441 186.819 146.624L186.015 142.342C184.003 131.623 174.732 123.797 163.826 123.611Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M139.08 128.726C136.822 126.513 138.428 122.677 141.59 122.731L163.834 123.111C174.978 123.302 184.45 131.298 186.506 142.25L187.31 146.531C187.927 149.818 184.022 152.014 181.534 149.78L171.546 140.809C171.095 140.403 170.511 140.176 169.904 140.17L151.954 139.976C151.052 139.966 150.189 139.609 149.544 138.977L139.08 128.726ZM141.572 123.73C139.314 123.691 138.167 126.432 139.78 128.012L150.244 138.264C150.704 138.714 151.321 138.97 151.965 138.977L169.915 139.17C170.765 139.18 171.582 139.498 172.214 140.065L182.202 149.036C183.979 150.632 186.768 149.063 186.328 146.716L185.524 142.434C183.555 131.948 174.486 124.293 163.817 124.11L141.572 123.73Z" fill="black"/>
+<path d="M109.5 104.889C109.5 110.954 104.576 115.873 98.5 115.873C92.4242 115.873 87.5 110.954 87.5 104.889C87.5 98.8232 92.4242 93.9049 98.5 93.9049C104.576 93.9049 109.5 98.8232 109.5 104.889Z" fill="white" stroke="black"/>
+<path d="M105.5 104.889C105.5 108.748 102.367 111.878 98.5 111.878C94.6333 111.878 91.5 108.748 91.5 104.889C91.5 101.029 94.6333 97.8993 98.5 97.8993C102.367 97.8993 105.5 101.029 105.5 104.889Z" fill="white" stroke="black"/>
+<rect width="20.9852" height="4.99648" rx="2.49824" transform="matrix(0.70722 -0.706994 0.707079 0.707134 115 134.347)" fill="#C4C4C4"/>
+<rect width="11.9916" height="4.99648" rx="2.49824" transform="matrix(0.70722 -0.706994 0.707079 0.707134 124 136.344)" fill="#C4C4C4"/>
+<rect width="4.99648" height="4.99648" rx="2.49824" transform="matrix(0.70722 -0.706994 0.707079 0.707134 131 139.34)" fill="#C4C4C4"/>
+<defs>
+<linearGradient id="paint0_linear" x1="352.931" y1="282.119" x2="113.575" y2="70.5287" gradientUnits="userSpaceOnUse">
+<stop stop-color="#ED1C24"/>
+<stop offset="1" stop-color="#C4C4C4" stop-opacity="0"/>
+</linearGradient>
+</defs>
+</svg>
diff --git a/public/img/community/b3-rocket3.svg b/public/img/community/b3-rocket3.svg
new file mode 100644
index 0000000..dd821b8
--- /dev/null
+++ b/public/img/community/b3-rocket3.svg
@@ -0,0 +1,107 @@
+<svg width="511" height="318" viewBox="0 0 511 318" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="0.452271" y="25.9658" width="510" height="291.367" rx="10" fill="#2D2D2D"/>
+<path d="M242.526 208.459C242.526 208.459 236.339 166.598 274.917 178.826C282.378 181.145 306.671 191.857 314.659 184.337C314.659 184.337 307.507 209.017 283.746 201.38C259.38 193.501 244.669 198.697 242.526 208.459Z" fill="#ED1C24"/>
+<path d="M266.804 171.909C266.804 171.909 273.563 149.517 292.861 166.479C294.696 168.199 307.909 181.089 315.597 180.92C315.597 180.92 307.35 187.235 293.066 179.632C278.815 172.069 273.734 168.312 266.804 171.909Z" fill="#ED1C24"/>
+<path d="M282.96 223.407C260.601 221.84 250.14 224.923 244.419 238.336C244.419 238.336 228.509 191.436 281.924 206.412C301.023 211.771 308.153 202.326 308.473 202.061C308.067 205.713 305.318 224.974 282.96 223.407Z" fill="#ED1C24"/>
+<path d="M371.305 51.3283L364.763 212.257C364.587 216.594 359.347 218.662 356.256 215.614L302.439 162.543C301.77 161.885 300.93 161.427 300.014 161.223L230.491 145.745C226.193 144.788 225.141 139.144 228.806 136.703L363.537 46.9638C366.937 44.6992 371.471 47.2466 371.305 51.3283Z" fill="white" stroke="black"/>
+<path d="M386.276 8.73538L345.275 33.1035L373.068 39.6609L393.913 61.0202L393.831 13.025C393.824 9.15171 389.606 6.75646 386.276 8.73538Z" fill="white" stroke="black" stroke-linejoin="round"/>
+<mask id="path-7-inside-1" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M391.233 66.0077C391.375 65.7958 391.511 65.5784 391.639 65.3555C396.563 56.8278 389.48 43.5211 375.819 35.634C362.399 27.8862 347.624 28.2506 342.439 36.3499L342.428 36.3435L274.809 153.463L324.257 182.012L391.233 66.0077Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M391.233 66.0077C391.375 65.7958 391.511 65.5784 391.639 65.3555C396.563 56.8278 389.48 43.5211 375.819 35.634C362.399 27.8862 347.624 28.2506 342.439 36.3499L342.428 36.3435L274.809 153.463L324.257 182.012L391.233 66.0077Z" fill="white"/>
+<path d="M391.233 66.0077L390.367 65.5077C390.378 65.4881 390.39 65.469 390.402 65.4502L391.233 66.0077ZM342.439 36.3499L343.282 36.889C342.993 37.3391 342.402 37.4831 341.939 37.2159L342.439 36.3499ZM342.428 36.3435L341.562 35.8435C341.695 35.6138 341.913 35.4462 342.169 35.3776C342.426 35.3089 342.699 35.3449 342.928 35.4775L342.428 36.3435ZM274.809 153.463L274.309 154.329C273.831 154.053 273.667 153.442 273.943 152.963L274.809 153.463ZM324.257 182.012L325.123 182.512C324.847 182.99 324.236 183.154 323.757 182.878L324.257 182.012ZM390.402 65.4502C390.532 65.257 390.656 65.0588 390.773 64.8555L392.505 65.8555C392.365 66.098 392.218 66.3346 392.063 66.5652L390.402 65.4502ZM390.773 64.8555C393 60.9985 392.585 55.9279 389.815 50.7244C387.054 45.5358 382.013 40.365 375.319 36.5L376.319 34.768C383.285 38.7901 388.617 44.2162 391.581 49.7847C394.537 55.3383 395.202 61.1848 392.505 65.8555L390.773 64.8555ZM375.319 36.5C368.743 32.7036 361.873 30.9187 356.063 31.049C350.235 31.1798 345.63 33.2211 343.282 36.889L341.597 35.8107C344.434 31.3793 349.808 29.1888 356.019 29.0495C362.247 28.9098 369.475 30.8166 376.319 34.768L375.319 36.5ZM341.939 37.2159L341.928 37.2095L342.928 35.4775L342.939 35.4838L341.939 37.2159ZM343.294 36.8435L275.675 153.963L273.943 152.963L341.562 35.8435L343.294 36.8435ZM275.309 152.597L324.757 181.146L323.757 182.878L274.309 154.329L275.309 152.597ZM323.391 181.512L390.367 65.5077L392.099 66.5077L325.123 182.512L323.391 181.512Z" fill="black" mask="url(#path-7-inside-1)"/>
+<path d="M271.41 156.199C271.358 156.289 271.319 156.483 271.471 156.876C271.619 157.261 271.92 157.749 272.387 158.333C273.319 159.498 274.836 160.949 276.839 162.593C280.838 165.875 286.699 169.864 293.473 173.775C300.248 177.686 306.633 180.768 311.475 182.59C313.899 183.502 315.915 184.09 317.389 184.315C318.129 184.428 318.702 184.444 319.109 184.38C319.526 184.315 319.674 184.184 319.726 184.094C319.789 183.985 319.881 183.836 319.998 183.647C321.112 181.842 324.412 176.499 324.719 169.729C324.888 166.005 324.149 161.849 321.625 157.612C319.098 153.372 314.766 149.024 307.705 144.947C302.045 141.679 297.045 140.629 292.715 140.898C288.383 141.168 284.684 142.761 281.633 144.838C275.589 148.954 272.135 154.942 271.434 156.158L271.41 156.199Z" fill="white" stroke="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M102.952 88.8016V88.8054C98.4658 88.9267 94.8552 92.5577 94.7666 97.0522H94.7633C94.6739 92.5159 90.9966 88.8592 86.4523 88.8029V88.7991C90.9387 88.6779 94.5494 85.0468 94.6379 80.5522H94.6412C94.7306 85.0886 98.4079 88.7453 102.952 88.8016Z" fill="white"/>
+<mask id="path-11-inside-2" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M391.56 224.672V224.676C387.174 224.794 383.644 228.344 383.558 232.738H383.555C383.467 228.303 379.872 224.728 375.429 224.673V224.67C379.815 224.551 383.345 221.001 383.432 216.607H383.435C383.523 221.042 387.118 224.617 391.56 224.672Z"/>
+</mask>
+<path d="M391.56 224.676H392.56V225.649L391.587 225.676L391.56 224.676ZM391.56 224.672L391.573 223.672L392.56 223.684V224.672H391.56ZM383.558 232.738L384.558 232.758L384.538 233.738H383.558V232.738ZM383.555 232.738V233.738H382.574L382.555 232.758L383.555 232.738ZM375.429 224.673L375.417 225.673L374.429 225.661V224.673H375.429ZM375.429 224.67H374.429V223.696L375.402 223.67L375.429 224.67ZM383.432 216.607L382.432 216.587L382.451 215.607H383.432V216.607ZM383.435 216.607V215.607H384.416L384.435 216.587L383.435 216.607ZM390.56 224.676V224.672H392.56V224.676H390.56ZM391.587 225.676C387.735 225.78 384.634 228.898 384.558 232.758L382.558 232.719C382.655 227.79 386.614 223.809 391.533 223.676L391.587 225.676ZM383.555 231.738H383.558V233.738H383.555V231.738ZM382.555 232.758C382.478 228.862 379.32 225.722 375.417 225.673L375.442 223.674C380.425 223.735 384.456 227.744 384.554 232.719L382.555 232.758ZM376.429 224.67V224.673H374.429V224.67H376.429ZM375.402 223.67C379.255 223.566 382.356 220.447 382.432 216.587L384.432 216.627C384.335 221.555 380.376 225.536 375.456 225.669L375.402 223.67ZM383.435 217.607H383.432V215.607H383.435V217.607ZM384.435 216.587C384.512 220.483 387.67 223.624 391.573 223.672L391.548 225.672C386.565 225.61 382.533 221.601 382.435 216.627L384.435 216.587Z" fill="white" mask="url(#path-11-inside-2)"/>
+<mask id="path-13-inside-3" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M456.278 268.885V268.892C447.952 269.117 441.252 275.856 441.087 284.197H441.081C440.915 275.778 434.091 268.992 425.658 268.888V268.881C433.984 268.656 440.684 261.917 440.849 253.576H440.855C441.021 261.995 447.845 268.781 456.278 268.885Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M456.278 268.885V268.892C447.952 269.117 441.252 275.856 441.087 284.197H441.081C440.915 275.778 434.091 268.992 425.658 268.888V268.881C433.984 268.656 440.684 261.917 440.849 253.576H440.855C441.021 261.995 447.845 268.781 456.278 268.885Z" fill="white"/>
+<path d="M456.278 268.892H457.278V269.866L456.305 269.892L456.278 268.892ZM456.278 268.885L456.291 267.885L457.278 267.898V268.885H456.278ZM441.087 284.197L442.087 284.217L442.068 285.197H441.087V284.197ZM441.081 284.197V285.197H440.101L440.082 284.217L441.081 284.197ZM425.658 268.888L425.645 269.888L424.658 269.876V268.888H425.658ZM425.658 268.881H424.658V267.907L425.631 267.881L425.658 268.881ZM440.849 253.576L439.849 253.556L439.868 252.576H440.849V253.576ZM440.855 253.576V252.576H441.835L441.855 253.556L440.855 253.576ZM455.278 268.892V268.885H457.278V268.892H455.278ZM456.305 269.892C448.513 270.103 442.241 276.41 442.087 284.217L440.088 284.177C440.263 275.302 447.392 268.132 456.251 267.893L456.305 269.892ZM441.081 283.197H441.087V285.197H441.081V283.197ZM440.082 284.217C439.926 276.337 433.539 269.985 425.645 269.888L425.67 267.888C434.644 267.999 441.905 275.219 442.081 284.177L440.082 284.217ZM426.658 268.881V268.888H424.658V268.881H426.658ZM425.631 267.881C433.423 267.671 439.695 261.363 439.849 253.556L441.848 253.596C441.673 262.471 434.544 269.641 425.685 269.88L425.631 267.881ZM440.855 254.576H440.849V252.576H440.855V254.576ZM441.855 253.556C442.01 261.436 448.397 267.788 456.291 267.885L456.266 269.885C447.292 269.774 440.031 262.554 439.855 253.596L441.855 253.556Z" fill="white" mask="url(#path-13-inside-3)"/>
+<mask id="path-15-inside-4" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M168.589 44.5816V44.5835C166.293 44.6456 164.445 46.5038 164.4 48.804H164.398C164.353 46.4824 162.471 44.6111 160.145 44.5823V44.5803C162.441 44.5183 164.289 42.66 164.334 40.3599H164.336C164.382 42.6814 166.264 44.5528 168.589 44.5816Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M168.589 44.5816V44.5835C166.293 44.6456 164.445 46.5038 164.4 48.804H164.398C164.353 46.4824 162.471 44.6111 160.145 44.5823V44.5803C162.441 44.5183 164.289 42.66 164.334 40.3599H164.336C164.382 42.6814 166.264 44.5528 168.589 44.5816Z" fill="white"/>
+<path d="M168.589 44.5835H169.589V45.5569L168.616 45.5832L168.589 44.5835ZM168.589 44.5816L168.602 43.5817L169.589 43.5939V44.5816H168.589ZM164.4 48.804L165.4 48.8237L165.381 49.804H164.4V48.804ZM164.398 48.804V49.804H163.418L163.399 48.8237L164.398 48.804ZM160.145 44.5823L160.133 45.5822L159.145 45.5699V44.5823H160.145ZM160.145 44.5803H159.145V43.607L160.118 43.5807L160.145 44.5803ZM164.334 40.3599L163.334 40.3402L163.354 39.3599H164.334V40.3599ZM164.336 40.3599V39.3599H165.316L165.336 40.3402L164.336 40.3599ZM167.589 44.5835V44.5816H169.589V44.5835H167.589ZM168.616 45.5832C166.854 45.6308 165.435 47.0579 165.4 48.8237L163.4 48.7843C163.456 45.9497 165.733 43.6604 168.562 43.5839L168.616 45.5832ZM164.398 47.804H164.4V49.804H164.398V47.804ZM163.399 48.8237C163.363 47.0414 161.918 45.6043 160.133 45.5822L160.157 43.5823C163.023 43.6178 165.342 45.9234 165.398 48.7843L163.399 48.8237ZM161.145 44.5803V44.5823H159.145V44.5803H161.145ZM160.118 43.5807C161.881 43.533 163.3 42.1059 163.334 40.3402L165.334 40.3796C165.278 43.2141 163.002 45.5035 160.172 45.58L160.118 43.5807ZM164.336 41.3599H164.334V39.3599H164.336V41.3599ZM165.336 40.3402C165.371 42.1224 166.816 43.5596 168.602 43.5817L168.577 45.5815C165.711 45.546 163.392 43.2404 163.336 40.3796L165.336 40.3402Z" fill="white" mask="url(#path-15-inside-4)"/>
+<mask id="path-17-inside-5" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M98.9935 279.448V279.45C96.6975 279.512 94.8497 281.37 94.8044 283.67H94.8027C94.757 281.349 92.8751 279.478 90.5494 279.449V279.447C92.8454 279.385 94.6932 277.526 94.7385 275.226H94.7402C94.786 277.548 96.6679 279.419 98.9935 279.448Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M98.9935 279.448V279.45C96.6975 279.512 94.8497 281.37 94.8044 283.67H94.8027C94.757 281.349 92.8751 279.478 90.5494 279.449V279.447C92.8454 279.385 94.6932 277.526 94.7385 275.226H94.7402C94.786 277.548 96.6679 279.419 98.9935 279.448Z" fill="white"/>
+<path d="M98.9935 279.45H99.9935V280.423L99.0206 280.45L98.9935 279.45ZM98.9935 279.448L99.0059 278.448L99.9935 278.46V279.448H98.9935ZM94.8044 283.67L95.8042 283.69L95.7849 284.67H94.8044V283.67ZM94.8027 283.67V284.67H93.8222L93.8029 283.69L94.8027 283.67ZM90.5494 279.449L90.5371 280.449L89.5494 280.436V279.449H90.5494ZM90.5494 279.447H89.5494V278.473L90.5224 278.447L90.5494 279.447ZM94.7385 275.226L93.7387 275.207L93.758 274.226H94.7385V275.226ZM94.7402 275.226V274.226H95.7207L95.74 275.207L94.7402 275.226ZM97.9935 279.45V279.448H99.9935V279.45H97.9935ZM99.0206 280.45C97.2581 280.497 95.839 281.924 95.8042 283.69L93.8046 283.651C93.8605 280.816 96.137 278.527 98.9665 278.45L99.0206 280.45ZM94.8027 282.67H94.8044V284.67H94.8027V282.67ZM93.8029 283.69C93.7678 281.908 92.3225 280.471 90.5371 280.449L90.5618 278.449C93.4276 278.484 95.7462 280.79 95.8025 283.651L93.8029 283.69ZM91.5494 279.447V279.449H89.5494V279.447H91.5494ZM90.5224 278.447C92.2849 278.399 93.7039 276.972 93.7387 275.207L95.7383 275.246C95.6825 278.081 93.406 280.37 90.5765 280.446L90.5224 278.447ZM94.7402 276.226H94.7385V274.226H94.7402V276.226ZM95.74 275.207C95.7752 276.989 97.2204 278.426 99.0059 278.448L98.9811 280.448C96.1153 280.412 93.7968 278.107 93.7404 275.246L95.74 275.207Z" fill="white" mask="url(#path-17-inside-5)"/>
+<mask id="path-19-inside-6" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M168.589 267.352V267.354C166.293 267.416 164.445 269.274 164.4 271.574H164.398C164.353 269.253 162.471 267.382 160.145 267.353V267.351C162.441 267.289 164.289 265.431 164.334 263.13H164.336C164.382 265.452 166.264 267.323 168.589 267.352Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M168.589 267.352V267.354C166.293 267.416 164.445 269.274 164.4 271.574H164.398C164.353 269.253 162.471 267.382 160.145 267.353V267.351C162.441 267.289 164.289 265.431 164.334 263.13H164.336C164.382 265.452 166.264 267.323 168.589 267.352Z" fill="white"/>
+<path d="M168.589 267.354H169.589V268.327L168.616 268.354L168.589 267.354ZM168.589 267.352L168.602 266.352L169.589 266.364V267.352H168.589ZM164.4 271.574L165.4 271.594L165.381 272.574H164.4V271.574ZM164.398 271.574V272.574H163.418L163.399 271.594L164.398 271.574ZM160.145 267.353L160.133 268.353L159.145 268.34V267.353H160.145ZM160.145 267.351H159.145V266.377L160.118 266.351L160.145 267.351ZM164.334 263.13L163.334 263.111L163.354 262.13H164.334V263.13ZM164.336 263.13V262.13H165.316L165.336 263.111L164.336 263.13ZM167.589 267.354V267.352H169.589V267.354H167.589ZM168.616 268.354C166.854 268.401 165.435 269.828 165.4 271.594L163.4 271.555C163.456 268.72 165.733 266.431 168.562 266.354L168.616 268.354ZM164.398 270.574H164.4V272.574H164.398V270.574ZM163.399 271.594C163.363 269.812 161.918 268.375 160.133 268.353L160.157 266.353C163.023 266.388 165.342 268.694 165.398 271.555L163.399 271.594ZM161.145 267.351V267.353H159.145V267.351H161.145ZM160.118 266.351C161.881 266.304 163.3 264.876 163.334 263.111L165.334 263.15C165.278 265.985 163.002 268.274 160.172 268.35L160.118 266.351ZM164.336 264.13H164.334V262.13H164.336V264.13ZM165.336 263.111C165.371 264.893 166.816 266.33 168.602 266.352L168.577 268.352C165.711 268.317 163.392 266.011 163.336 263.15L165.336 263.111Z" fill="white" mask="url(#path-19-inside-6)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M452.552 147.583V147.588C446.749 147.744 442.079 152.441 441.965 158.254H441.96C441.845 152.387 437.089 147.657 431.211 147.584V147.579C437.014 147.423 441.684 142.726 441.798 136.913H441.803C441.918 142.78 446.674 147.51 452.552 147.583Z" fill="white"/>
+<path d="M419.616 117.335L323.864 265.126" stroke="url(#paint0_radial)"/>
+<path d="M332.964 211.488L283.784 285.923" stroke="url(#paint1_radial)"/>
+<path d="M313.333 214.526L264.153 288.961" stroke="url(#paint2_radial)"/>
+<path d="M287.822 223.013L238.642 297.448" stroke="url(#paint3_radial)"/>
+<path d="M240.867 206.966L191.687 281.401" stroke="url(#paint4_radial)"/>
+<path d="M249.047 225.913L199.867 300.348" stroke="url(#paint5_radial)"/>
+<path d="M238.642 137.593L190.766 211.488" stroke="url(#paint6_radial)"/>
+<path d="M248.395 159.775L200.519 233.671" stroke="url(#paint7_radial)"/>
+<path d="M264.153 121.587L216.277 195.483" stroke="url(#paint8_radial)"/>
+<path d="M329.891 188.804C336.996 180.097 342.732 169.26 344.492 156.154C344.492 156.154 345.582 149.209 344.495 148.582C343.409 147.954 337.699 152.232 337.699 152.232C327.271 160.158 320.567 170.858 316.724 181.202C317.055 184.993 326.635 190.168 329.891 188.804Z" fill="white" stroke="black"/>
+<path d="M278.37 158.683C285.475 149.976 291.211 139.139 292.971 126.033C292.971 126.033 294.061 119.088 292.974 118.461C291.888 117.833 286.178 122.111 286.178 122.111C275.75 130.037 269.046 140.738 265.203 151.082C265.534 154.872 275.114 160.047 278.37 158.683Z" fill="white" stroke="black"/>
+<mask id="mask0" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="25" width="239" height="293">
+<rect x="0.452271" y="25.9658" width="238.19" height="291.367" rx="30" fill="#2D2D2D"/>
+</mask>
+<g mask="url(#mask0)">
+<circle cx="43.658" cy="149.891" r="105.088" transform="rotate(-24.3512 43.658 149.891)" fill="#C4C4C4"/>
+<path d="M191.114 94.3874C191.53 95.3836 191.423 96.8609 190.245 99.0104C189.082 101.135 187.009 103.654 184.024 106.517C178.066 112.232 168.748 119.063 156.727 126.565C132.705 141.557 98.1262 159.083 58.6899 175.572C19.2536 192.061 -17.5092 204.364 -45.0533 210.933C-58.8372 214.22 -70.2438 216.054 -78.4962 216.281C-82.6308 216.395 -85.8798 216.101 -88.2093 215.437C-90.5662 214.765 -91.6935 213.804 -92.11 212.808C-92.5266 211.812 -92.4188 210.335 -91.2415 208.185C-90.0779 206.061 -88.0048 203.542 -85.0198 200.679C-79.0621 194.964 -69.7446 188.133 -57.7232 180.631C-33.7011 165.639 0.877709 148.112 40.314 131.623C79.7503 115.134 116.513 102.831 144.057 96.2627C157.841 92.9755 169.248 91.1413 177.5 90.9145C181.635 90.8009 184.884 91.0945 187.213 91.7584C189.57 92.4302 190.697 93.3912 191.114 94.3874Z" stroke="white" stroke-width="3"/>
+<path d="M222.804 81.1069C223.591 82.9889 223.626 85.404 222.527 88.5296C221.419 91.6774 219.224 95.3411 215.875 99.4587C209.181 107.69 198.291 117.236 183.91 127.48C155.187 147.939 113.087 170.797 64.4243 191.144C15.7613 211.491 -30.0795 225.402 -64.8165 231.477C-82.2095 234.518 -96.6532 235.564 -107.214 234.548C-112.497 234.039 -116.647 233.029 -119.665 231.606C-122.662 230.193 -124.356 228.472 -125.143 226.59C-125.93 224.707 -125.966 222.292 -124.866 219.167C-123.759 216.019 -121.564 212.355 -118.215 208.238C-111.521 200.007 -100.631 190.461 -86.2492 180.217C-57.5268 159.757 -15.4268 136.899 33.2362 116.552C81.8992 96.2055 127.74 82.2941 162.477 76.2199C179.87 73.1785 194.314 72.1321 204.875 73.1485C210.158 73.657 214.307 74.6677 217.326 76.0904C220.323 77.5031 222.017 79.2248 222.804 81.1069Z" stroke="url(#paint9_linear)" stroke-width="6"/>
+<path d="M0.327213 54.1525C-52.5479 78.0834 -76.0118 140.347 -52.0808 193.222L139.397 106.561C115.466 53.6855 53.2023 30.2216 0.327213 54.1525Z" fill="#C4C4C4"/>
+</g>
+<path d="M364.465 57.804C372.281 62.6379 374.846 68.1622 375.317 71.2084C375.44 72.0021 375.188 72.7874 374.786 73.483L370.07 81.6521C369.546 82.5585 367.539 82.1995 367.131 81.2357C365.835 78.1758 362.927 74.1825 357.092 70.574C350.625 66.5742 344.929 66.172 341.254 66.7827C340.262 66.9475 339.175 65.6597 339.677 64.7889L345.301 55.0482C347.933 53.6436 355.45 52.2282 364.465 57.804Z" fill="white"/>
+<path d="M345.301 55.0482C347.933 53.6436 355.45 52.2282 364.465 57.804C372.281 62.6379 374.846 68.1622 375.317 71.2084C375.44 72.0021 375.188 72.7874 374.786 73.483L370.07 81.6521C369.546 82.5585 367.539 82.1995 367.131 81.2357C365.835 78.1758 362.927 74.1825 357.092 70.574C350.625 66.5742 344.929 66.172 341.254 66.7827C340.262 66.9475 339.175 65.6597 339.677 64.7889L345.335 54.9899" stroke="black"/>
+<rect x="313.334" y="120.95" width="21.3338" height="4.56241" rx="2.2812" transform="rotate(30.0057 313.334 120.95)" fill="#C4C4C4"/>
+<rect x="313.863" y="129.716" width="11.649" height="4.56241" rx="2.2812" transform="rotate(30.0057 313.863 129.716)" fill="#C4C4C4"/>
+<rect x="313.161" y="137.772" width="4.80694" height="4.56241" rx="2.2812" transform="rotate(30.0057 313.161 137.772)" fill="#C4C4C4"/>
+<defs>
+<radialGradient id="paint0_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(371.74 191.23) rotate(90) scale(73.8954 47.8759)">
+<stop stop-color="#CDCDCD"/>
+<stop offset="1" stop-color="#CDCDCD" stop-opacity="0"/>
+</radialGradient>
+<radialGradient id="paint1_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(308.374 248.706) rotate(90) scale(37.2174 24.59)">
+<stop stop-color="#CDCDCD"/>
+<stop offset="1" stop-color="#CDCDCD" stop-opacity="0"/>
+</radialGradient>
+<radialGradient id="paint2_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(288.743 251.744) rotate(90) scale(37.2174 24.59)">
+<stop stop-color="#ED1C24"/>
+<stop offset="1" stop-color="#ED1C24" stop-opacity="0"/>
+</radialGradient>
+<radialGradient id="paint3_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(263.232 260.231) rotate(90) scale(37.2174 24.59)">
+<stop stop-color="#ED1C24"/>
+<stop offset="1" stop-color="#ED1C24" stop-opacity="0"/>
+</radialGradient>
+<radialGradient id="paint4_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(216.277 244.183) rotate(90) scale(37.2174 24.59)">
+<stop stop-color="#ED1C24"/>
+<stop offset="1" stop-color="#ED1C24" stop-opacity="0"/>
+</radialGradient>
+<radialGradient id="paint5_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(224.457 263.13) rotate(90) scale(37.2174 24.59)">
+<stop stop-color="#ED1C24"/>
+<stop offset="1" stop-color="#ED1C24" stop-opacity="0"/>
+</radialGradient>
+<radialGradient id="paint6_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(214.704 174.54) rotate(90) scale(36.9477 23.9379)">
+<stop stop-color="#CDCDCD"/>
+<stop offset="1" stop-color="#CDCDCD" stop-opacity="0"/>
+</radialGradient>
+<radialGradient id="paint7_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(224.457 196.723) rotate(90) scale(36.9477 23.9379)">
+<stop stop-color="#CDCDCD"/>
+<stop offset="1" stop-color="#CDCDCD" stop-opacity="0"/>
+</radialGradient>
+<radialGradient id="paint8_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(240.215 158.535) rotate(90) scale(36.9477 23.9379)">
+<stop stop-color="#CDCDCD"/>
+<stop offset="1" stop-color="#CDCDCD" stop-opacity="0"/>
+</radialGradient>
+<linearGradient id="paint9_linear" x1="32.0789" y1="113.784" x2="279.821" y2="166.114" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+</defs>
+</svg>
diff --git a/public/img/community/b3-rocket4.svg b/public/img/community/b3-rocket4.svg
new file mode 100644
index 0000000..23571bd
--- /dev/null
+++ b/public/img/community/b3-rocket4.svg
@@ -0,0 +1,88 @@
+<svg width="518" height="377" viewBox="0 0 518 377" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M8.98811 95.8288C8.98811 90.3158 13.4592 85.8467 18.9745 85.8467H507.307C512.823 85.8467 517.294 90.3158 517.294 95.8288V366.344C517.294 371.857 512.823 376.326 507.307 376.326H18.9745C13.4591 376.326 8.98811 371.857 8.98811 366.344V95.8288Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M358.771 137.599V137.603C354.109 137.729 350.357 141.501 350.265 146.169H350.262C350.169 141.457 346.348 137.659 341.626 137.6V137.596C346.288 137.47 350.039 133.698 350.131 129.03H350.135C350.228 133.742 354.049 137.54 358.771 137.599Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M78.7875 234.79V234.794C74.1257 234.92 70.3739 238.692 70.2819 243.361H70.2785C70.1856 238.649 66.3645 234.85 61.6425 234.792V234.788C66.3043 234.662 70.0561 230.89 70.1481 226.221H70.1516C70.2445 230.933 74.0655 234.732 78.7875 234.79Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M145.214 296.221V296.224C141.803 296.316 139.057 299.076 138.99 302.493H138.987C138.919 299.045 136.123 296.265 132.667 296.222V296.219C136.079 296.127 138.825 293.367 138.892 289.95H138.895C138.963 293.398 141.759 296.178 145.214 296.221Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M429.571 152.665V152.668C426.159 152.76 423.414 155.52 423.346 158.937H423.344C423.276 155.489 420.479 152.709 417.024 152.666V152.663C420.435 152.571 423.181 149.811 423.248 146.394H423.251C423.319 149.842 426.115 152.622 429.571 152.665Z" fill="white"/>
+<mask id="mask0" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="121" y="150" width="397" height="227">
+<path d="M121.834 180.677C121.834 164.138 135.247 150.73 151.793 150.73H487.335C503.88 150.73 517.294 164.138 517.294 180.677V346.38C517.294 362.919 503.88 376.326 487.335 376.326H151.793C135.247 376.326 121.834 362.919 121.834 346.38V180.677Z" fill="#2D2D2D"/>
+</mask>
+<g mask="url(#mask0)">
+<path d="M422.774 272.837C425.388 304.705 401.662 332.658 369.78 335.271C337.899 337.885 309.934 314.169 307.32 282.301C304.706 250.432 328.432 222.48 360.314 219.866C392.196 217.253 420.16 240.968 422.774 272.837Z" fill="#F7F7F7"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M483.338 248.49C488.486 242.344 490.299 237.137 488.915 233.104C487.531 229.071 482.904 226.073 475.065 224.38C467.296 222.701 456.709 222.383 444.018 223.404C418.652 225.446 385.115 232.817 349.434 245.052C313.754 257.287 282.751 272.047 261.472 286C250.827 292.981 242.664 299.729 237.561 305.821C232.413 311.968 230.6 317.174 231.984 321.207C233.368 325.24 237.996 328.238 245.834 329.932C253.603 331.611 264.19 331.929 276.881 330.907C302.247 328.866 335.785 321.494 371.465 309.259C407.146 297.024 438.148 282.264 459.427 268.311C470.073 261.33 478.236 254.583 483.338 248.49ZM371.789 310.203C443.261 285.696 496.122 251.032 489.86 232.78C483.597 214.529 420.581 219.6 349.11 244.108C277.639 268.616 224.777 303.28 231.04 321.531C237.302 339.783 300.318 334.711 371.789 310.203Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M544.195 217.052L543.226 217.291C543.154 216.999 543.069 216.71 542.971 216.424C542.873 216.139 542.763 215.859 542.64 215.584L543.552 215.177C543.687 215.48 543.808 215.787 543.915 216.101C544.023 216.414 544.116 216.731 544.195 217.052ZM542.592 213.445L541.762 214.001C541.429 213.504 541.048 213.023 540.619 212.557L541.353 211.881C541.815 212.382 542.228 212.903 542.592 213.445ZM539.922 210.522L539.281 211.287C538.82 210.901 538.322 210.528 537.785 210.169L538.342 209.34C538.906 209.718 539.432 210.112 539.922 210.522ZM536.632 208.303L536.151 209.178C535.611 208.881 535.041 208.595 534.442 208.32L534.858 207.413C535.478 207.697 536.069 207.994 536.632 208.303ZM533.04 206.645L532.678 207.576C532.084 207.345 531.466 207.124 530.825 206.912L531.138 205.964C531.794 206.181 532.429 206.408 533.04 206.645ZM529.272 205.393L528.999 206.353C528.377 206.176 527.736 206.008 527.077 205.848L527.313 204.878C527.984 205.041 528.637 205.213 529.272 205.393ZM525.412 204.449L525.207 205.426C524.569 205.292 523.915 205.165 523.246 205.045L523.422 204.062C524.1 204.184 524.764 204.313 525.412 204.449ZM521.5 203.743L521.348 204.73C520.705 204.631 520.049 204.538 519.38 204.452L519.509 203.462C520.185 203.55 520.848 203.643 521.5 203.743ZM517.552 203.228L517.444 204.221C516.801 204.15 516.148 204.085 515.484 204.026L515.574 203.031C516.243 203.092 516.903 203.157 517.552 203.228ZM513.575 202.869L513.503 203.864C512.864 203.818 512.216 203.776 511.559 203.738L511.617 202.742C512.278 202.78 512.931 202.822 513.575 202.869ZM509.606 202.642L509.563 203.639C508.919 203.612 508.266 203.589 507.606 203.57L507.635 202.572C508.3 202.591 508.957 202.614 509.606 202.642ZM505.655 202.527L505.639 203.525C504.975 203.514 504.304 203.507 503.626 203.504L503.631 202.506C504.313 202.509 504.988 202.516 505.655 202.527ZM501.677 202.507C501.021 202.512 500.358 202.519 499.69 202.53L499.706 203.528C500.372 203.517 501.031 203.51 501.683 203.506L501.677 202.507ZM497.669 202.574L497.695 203.572C497.053 203.589 496.405 203.609 495.751 203.632L495.716 202.635C496.372 202.611 497.023 202.591 497.669 202.574ZM493.73 202.714L493.774 203.712C493.11 203.741 492.44 203.774 491.764 203.809L491.712 202.813C492.39 202.777 493.063 202.744 493.73 202.714ZM489.757 202.924L489.818 203.92C489.165 203.96 488.508 204.002 487.847 204.047L487.779 203.051C488.443 203.006 489.102 202.963 489.757 202.924ZM485.772 203.196L485.847 204.191C485.198 204.24 484.544 204.292 483.885 204.347L483.803 203.352C484.464 203.297 485.12 203.245 485.772 203.196ZM481.835 203.521L481.924 204.515C481.266 204.574 480.604 204.635 479.938 204.699L479.843 203.705C480.511 203.641 481.175 203.58 481.835 203.521ZM477.853 203.902L477.955 204.895C477.309 204.961 476.659 205.029 476.006 205.1L475.899 204.108C476.554 204.037 477.206 203.968 477.853 203.902ZM473.922 204.327L474.035 205.319C473.374 205.394 472.71 205.471 472.042 205.551L471.924 204.56C472.593 204.48 473.259 204.402 473.922 204.327ZM469.966 204.799C469.316 204.88 468.662 204.964 468.006 205.049L468.135 206.039C468.79 205.954 469.441 205.871 470.09 205.79L469.966 204.799ZM466.027 205.312L466.161 206.301C465.502 206.39 464.84 206.481 464.175 206.575L464.036 205.586C464.702 205.493 465.366 205.401 466.027 205.312ZM462.092 205.864L462.236 206.852C461.587 206.946 460.935 207.042 460.28 207.14L460.132 206.153C460.788 206.055 461.442 205.958 462.092 205.864ZM458.154 206.454L458.307 207.44C457.652 207.542 456.995 207.645 456.336 207.749L456.179 206.764C456.84 206.659 457.499 206.555 458.154 206.454ZM454.236 207.077L454.397 208.062C453.749 208.168 453.098 208.276 452.444 208.385L452.279 207.401C452.934 207.291 453.586 207.183 454.236 207.077ZM450.306 207.736L450.476 208.72C449.824 208.832 449.169 208.946 448.513 209.061L448.339 208.078C448.997 207.962 449.653 207.848 450.306 207.736ZM446.401 208.424L446.578 209.406C445.93 209.523 445.281 209.641 444.629 209.761L444.448 208.779C445.101 208.659 445.752 208.54 446.401 208.424ZM442.483 209.145L442.667 210.126C442.016 210.248 441.362 210.372 440.707 210.498L440.518 209.518C441.175 209.392 441.83 209.267 442.483 209.145ZM438.585 209.892L438.777 210.872C438.132 210.998 437.484 211.126 436.835 211.255L436.64 210.276C437.29 210.147 437.939 210.019 438.585 209.892ZM434.683 210.67L434.882 211.648C434.229 211.78 433.575 211.914 432.919 212.05L432.717 211.072C433.374 210.936 434.03 210.802 434.683 210.67ZM430.79 211.473C430.146 211.608 429.501 211.745 428.853 211.883L429.062 212.86C429.708 212.722 430.353 212.585 430.996 212.45L430.79 211.473ZM426.906 212.302L427.117 213.278C426.468 213.419 425.816 213.561 425.163 213.705L424.948 212.73C425.602 212.586 426.255 212.443 426.906 212.302ZM423.015 213.159L423.233 214.133C422.593 214.276 421.951 214.421 421.308 214.567L421.087 213.593C421.731 213.447 422.374 213.302 423.015 213.159ZM419.15 214.036L419.373 215.009C418.727 215.157 418.079 215.308 417.43 215.459L417.203 214.487C417.853 214.335 418.502 214.185 419.15 214.036ZM415.26 214.943L415.49 215.915C414.852 216.065 414.214 216.218 413.573 216.371L413.341 215.4C413.982 215.247 414.621 215.094 415.26 214.943ZM411.413 215.865C410.769 216.021 410.124 216.179 409.478 216.338L409.716 217.307C410.362 217.148 411.006 216.991 411.649 216.835L411.413 215.865ZM407.534 216.818L407.775 217.787C407.137 217.946 406.498 218.106 405.857 218.267L405.613 217.299C406.255 217.138 406.895 216.977 407.534 216.818ZM403.696 217.785L403.943 218.752C403.303 218.915 402.663 219.079 402.021 219.245L401.771 218.278C402.414 218.112 403.056 217.948 403.696 217.785ZM399.839 218.779L400.091 219.745C399.448 219.912 398.804 220.081 398.159 220.251L397.905 219.286C398.551 219.116 399.196 218.947 399.839 218.779ZM395.997 219.791L396.255 220.756C395.619 220.925 394.981 221.096 394.343 221.268L394.084 220.304C394.723 220.132 395.361 219.961 395.997 219.791ZM392.163 220.824L392.426 221.787C391.785 221.962 391.144 222.137 390.501 222.314L390.236 221.351C390.88 221.174 391.522 220.999 392.163 220.824ZM388.317 221.882L388.584 222.844C387.952 223.019 387.318 223.196 386.684 223.374L386.414 222.413C387.049 222.235 387.684 222.058 388.317 221.882ZM384.505 222.952L384.777 223.912C384.14 224.092 383.503 224.274 382.864 224.456L382.59 223.497C383.229 223.314 383.867 223.132 384.505 222.952ZM380.669 224.049L380.947 225.008C380.312 225.191 379.677 225.375 379.041 225.561L378.762 224.603C379.399 224.417 380.034 224.232 380.669 224.049ZM376.863 225.159L377.145 226.116C376.513 226.302 375.879 226.49 375.244 226.678L374.96 225.721C375.595 225.533 376.23 225.345 376.863 225.159ZM373.052 226.291L373.338 227.247C372.702 227.438 372.065 227.629 371.427 227.822L371.138 226.867C371.777 226.674 372.415 226.482 373.052 226.291ZM369.24 227.443L369.531 228.398C368.902 228.59 368.272 228.783 367.641 228.977L367.347 228.023C367.979 227.829 368.61 227.635 369.24 227.443ZM365.45 228.609L365.746 229.563C365.114 229.759 364.481 229.956 363.848 230.154L363.549 229.202C364.184 229.003 364.817 228.806 365.45 228.609ZM361.644 229.801L361.944 230.752C361.315 230.951 360.686 231.151 360.055 231.351L359.753 230.4C360.384 230.199 361.014 229.999 361.644 229.801ZM357.866 231.003L358.172 231.953C357.543 232.155 356.914 232.357 356.284 232.561L355.977 231.611C356.607 231.407 357.237 231.205 357.866 231.003ZM354.083 232.226L354.393 233.175C353.762 233.381 353.13 233.588 352.498 233.796L352.186 232.847C352.819 232.639 353.451 232.432 354.083 232.226ZM350.3 233.47L350.615 234.417C349.989 234.624 349.364 234.832 348.737 235.041L348.421 234.094C349.048 233.885 349.675 233.677 350.3 233.47ZM346.539 234.725L346.857 235.671C346.23 235.882 345.602 236.094 344.974 236.307L344.653 235.362C345.282 235.149 345.911 234.937 346.539 234.725ZM342.765 236.005L343.088 236.949C342.773 237.057 342.458 237.165 342.143 237.273C341.829 237.38 341.514 237.489 341.2 237.597L340.874 236.653C341.189 236.545 341.504 236.436 341.819 236.328C342.135 236.22 342.45 236.112 342.765 236.005ZM338.989 237.304L339.316 238.247C338.689 238.465 338.064 238.683 337.439 238.901L337.109 237.959C337.735 237.74 338.361 237.522 338.989 237.304ZM335.236 238.616L335.568 239.557C334.945 239.776 334.323 239.996 333.703 240.216L333.369 239.275C333.99 239.055 334.613 238.835 335.236 238.616ZM331.498 239.941L331.834 240.881C331.208 241.105 330.582 241.329 329.958 241.554L329.619 240.615C330.245 240.39 330.871 240.165 331.498 239.941ZM327.747 241.292L328.087 242.23C327.465 242.456 326.844 242.682 326.224 242.908L325.881 241.971C326.502 241.744 327.124 241.517 327.747 241.292ZM324.022 242.652L324.367 243.589C323.746 243.817 323.127 244.046 322.508 244.275L322.161 243.339C322.78 243.11 323.4 242.881 324.022 242.652ZM320.289 244.036L320.638 244.971C320.016 245.203 319.396 245.436 318.776 245.669L318.424 244.735C319.045 244.501 319.666 244.268 320.289 244.036ZM316.567 245.436L316.921 246.369C316.304 246.603 315.688 246.837 315.073 247.072L314.717 246.14C315.332 245.905 315.949 245.67 316.567 245.436ZM312.864 246.849L313.222 247.781C312.601 248.02 311.98 248.26 311.361 248.499L311 247.569C311.62 247.328 312.241 247.089 312.864 246.849ZM309.144 248.29L309.507 249.22C308.89 249.461 308.275 249.702 307.661 249.943L307.296 249.014C307.91 248.772 308.526 248.531 309.144 248.29ZM305.456 249.74L305.823 250.668C305.207 250.912 304.593 251.156 303.98 251.4L303.61 250.473C304.224 250.228 304.839 249.984 305.456 249.74ZM301.755 251.216L302.127 252.142C301.511 252.389 300.896 252.637 300.283 252.885L299.908 251.96C300.522 251.712 301.138 251.463 301.755 251.216ZM298.07 252.707L298.448 253.631C297.837 253.88 297.228 254.129 296.621 254.378L296.242 253.455C296.85 253.205 297.459 252.956 298.07 252.707ZM294.4 254.214L294.782 255.136C294.167 255.391 293.553 255.646 292.94 255.901L292.556 254.98C293.169 254.724 293.784 254.469 294.4 254.214ZM290.721 255.748L291.107 256.668C290.498 256.924 289.89 257.18 289.284 257.437L288.895 256.518C289.502 256.261 290.11 256.004 290.721 255.748ZM287.079 257.289L287.47 258.207C286.857 258.469 286.245 258.731 285.634 258.993L285.24 258.076C285.851 257.813 286.464 257.551 287.079 257.289ZM283.407 258.866L283.804 259.782C283.196 260.045 282.589 260.309 281.984 260.572L281.585 259.657C282.191 259.393 282.798 259.129 283.407 258.866ZM279.773 260.45L280.175 261.364C279.57 261.63 278.967 261.896 278.366 262.162L277.962 261.249C278.564 260.983 279.168 260.716 279.773 260.45ZM276.132 262.063L276.539 262.974C275.932 263.245 275.327 263.516 274.724 263.787L274.314 262.877C274.918 262.605 275.524 262.334 276.132 262.063ZM272.507 263.693C271.906 263.965 271.308 264.237 270.711 264.51L271.126 265.418C271.722 265.146 272.32 264.874 272.919 264.602L272.507 263.693ZM268.897 265.342L269.315 266.248C268.709 266.527 268.106 266.806 267.504 267.086L267.083 266.18C267.686 265.901 268.291 265.621 268.897 265.342ZM265.282 267.02L265.705 267.924C265.108 268.203 264.513 268.483 263.919 268.763L263.493 267.86C264.087 267.58 264.684 267.3 265.282 267.02ZM261.704 268.707L262.133 269.609C261.529 269.896 260.927 270.184 260.328 270.471L259.896 269.571C260.496 269.283 261.099 268.995 261.704 268.707ZM258.101 270.435L258.536 271.334C257.941 271.622 257.348 271.909 256.758 272.197L256.32 271.3C256.911 271.012 257.505 270.723 258.101 270.435ZM254.553 272.166L254.994 273.061C254.393 273.357 253.794 273.653 253.197 273.949L252.753 273.054C253.351 272.758 253.951 272.462 254.553 272.166ZM250.967 273.945L251.414 274.837C250.822 275.133 250.233 275.43 249.646 275.726L249.196 274.835C249.784 274.538 250.374 274.241 250.967 273.945ZM247.44 275.726L247.893 276.615C247.298 276.918 246.706 277.221 246.116 277.524L245.66 276.637C246.25 276.333 246.844 276.029 247.44 275.726ZM243.883 277.554L244.344 278.44C243.755 278.745 243.17 279.05 242.587 279.355L242.124 278.471C242.708 278.166 243.294 277.86 243.883 277.554ZM240.381 279.388L240.848 280.271C240.259 280.582 239.672 280.894 239.089 281.206L238.618 280.325C239.203 280.013 239.791 279.701 240.381 279.388ZM236.856 281.271L237.33 282.149C236.746 282.464 236.166 282.778 235.589 283.093L235.111 282.216C235.689 281.901 236.271 281.586 236.856 281.271ZM233.385 283.161L233.867 284.035C233.281 284.357 232.7 284.679 232.121 285.001L231.636 284.128C232.216 283.806 232.799 283.484 233.385 283.161ZM229.89 285.104L230.379 285.974C229.802 286.299 229.228 286.623 228.658 286.947L228.164 286.079C228.736 285.754 229.311 285.429 229.89 285.104ZM226.46 287.052L226.957 287.918C226.375 288.252 225.796 288.587 225.221 288.92L224.719 288.057C225.296 287.723 225.876 287.388 226.46 287.052ZM222.996 289.064L223.502 289.925C222.932 290.26 222.367 290.594 221.805 290.928L221.295 290.07C221.858 289.735 222.425 289.4 222.996 289.064ZM219.602 291.082L220.117 291.937C219.541 292.284 218.969 292.631 218.402 292.977L217.882 292.124C218.451 291.777 219.025 291.43 219.602 291.082ZM216.187 293.164L216.711 294.014C216.152 294.359 215.597 294.704 215.047 295.048L214.517 294.202C215.069 293.856 215.626 293.51 216.187 293.164ZM212.826 295.267L213.361 296.11C212.796 296.468 212.235 296.826 211.68 297.184L211.14 296.344C211.697 295.986 212.259 295.627 212.826 295.267ZM209.482 297.418L210.028 298.254C209.475 298.615 208.927 298.975 208.384 299.335L207.832 298.503C208.377 298.142 208.927 297.78 209.482 297.418ZM206.159 299.62L206.717 300.448C206.167 300.819 205.622 301.188 205.083 301.557L204.519 300.734C205.06 300.363 205.607 299.992 206.159 299.62ZM202.908 301.845L203.478 302.664C202.923 303.051 202.374 303.436 201.831 303.82L201.254 303.006C201.799 302.62 202.35 302.233 202.908 301.845ZM199.637 304.162L200.222 304.971C199.692 305.354 199.168 305.735 198.65 306.116L198.058 305.312C198.578 304.93 199.105 304.546 199.637 304.162ZM196.436 306.518L197.036 307.316C196.504 307.715 195.979 308.114 195.461 308.511L194.853 307.719C195.374 307.32 195.901 306.919 196.436 306.518ZM193.309 308.917L193.926 309.702C193.393 310.12 192.867 310.538 192.35 310.953L191.725 310.175C192.245 309.757 192.773 309.338 193.309 308.917ZM190.189 311.426L190.825 312.196C190.315 312.616 189.814 313.035 189.322 313.452L188.676 312.69C189.172 312.27 189.676 311.849 190.189 311.426ZM187.15 314.003L187.807 314.755C187.312 315.187 186.826 315.618 186.351 316.047L185.682 315.305C186.162 314.873 186.651 314.439 187.15 314.003ZM184.204 316.66L184.885 317.39C184.398 317.844 183.922 318.296 183.458 318.746L182.763 318.029C183.232 317.575 183.712 317.119 184.204 316.66ZM181.362 319.414L182.071 320.117C181.597 320.596 181.136 321.071 180.688 321.544L179.963 320.858C180.416 320.38 180.882 319.898 181.362 319.414ZM178.641 322.29L179.384 322.957C178.929 323.462 178.491 323.964 178.069 324.461L177.307 323.816C177.736 323.311 178.181 322.802 178.641 322.29ZM176.07 325.321L176.852 325.942C176.43 326.473 176.027 326.999 175.645 327.521L174.84 326.93C175.23 326.398 175.641 325.861 176.07 325.321ZM173.718 328.525L174.547 329.082C174.171 329.642 173.819 330.196 173.491 330.743L172.634 330.231C172.971 329.668 173.332 329.1 173.718 328.525ZM171.67 331.952L172.556 332.413C172.252 332.997 171.978 333.573 171.733 334.139L170.816 333.744C171.071 333.154 171.356 332.557 171.67 331.952ZM170.103 335.611L171.051 335.924C170.849 336.537 170.684 337.137 170.558 337.724L169.581 337.514C169.716 336.89 169.89 336.255 170.103 335.611ZM169.286 339.465L170.281 339.548C170.228 340.179 170.223 340.793 170.265 341.39L169.269 341.46C169.223 340.809 169.229 340.144 169.286 339.465ZM169.574 343.417C169.654 343.738 169.747 344.055 169.854 344.368C169.962 344.682 170.083 344.989 170.218 345.292L171.13 344.885C171.007 344.61 170.897 344.33 170.799 344.044C170.701 343.759 170.616 343.47 170.544 343.178L169.574 343.417ZM171.178 347.024L172.008 346.468C172.341 346.965 172.722 347.446 173.151 347.911L172.417 348.588C171.955 348.087 171.542 347.566 171.178 347.024ZM173.848 349.947L174.489 349.182C174.95 349.568 175.448 349.94 175.984 350.3L175.428 351.129C174.864 350.751 174.337 350.357 173.848 349.947ZM177.138 352.166L177.619 351.291C178.159 351.588 178.729 351.874 179.328 352.149L178.911 353.056C178.292 352.772 177.701 352.475 177.138 352.166ZM180.73 353.824L181.091 352.893C181.686 353.124 182.304 353.345 182.945 353.557L182.632 354.505C181.975 354.288 181.341 354.061 180.73 353.824ZM184.498 355.076L184.77 354.116C185.393 354.292 186.034 354.461 186.693 354.621L186.457 355.591C185.786 355.428 185.133 355.256 184.498 355.076ZM188.358 356.02L188.562 355.043C189.201 355.177 189.855 355.304 190.524 355.424L190.348 356.406C189.67 356.285 189.006 356.156 188.358 356.02ZM192.27 356.726L192.422 355.739C193.065 355.838 193.721 355.93 194.39 356.017L194.261 357.007C193.585 356.919 192.921 356.826 192.27 356.726ZM196.218 357.241L196.326 356.248C196.969 356.318 197.622 356.383 198.286 356.443L198.196 357.437C197.526 357.377 196.867 357.311 196.218 357.241ZM200.194 357.6C200.839 357.647 201.492 357.689 202.153 357.727L202.21 356.73C201.554 356.693 200.906 356.651 200.267 356.604L200.194 357.6ZM204.164 357.827L204.206 356.83C204.851 356.857 205.503 356.88 206.164 356.899L206.135 357.897C205.47 357.878 204.813 357.855 204.164 357.827ZM208.115 357.942L208.131 356.944C208.795 356.955 209.465 356.962 210.143 356.965L210.139 357.963C209.457 357.96 208.782 357.953 208.115 357.942ZM212.093 357.961C212.749 357.957 213.411 357.95 214.08 357.939L214.064 356.941C213.398 356.952 212.739 356.959 212.086 356.963L212.093 357.961ZM216.101 357.895L216.074 356.897C216.717 356.88 217.365 356.86 218.018 356.837L218.054 357.834C217.397 357.858 216.746 357.878 216.101 357.895ZM220.04 357.755L219.996 356.757C220.66 356.728 221.33 356.695 222.005 356.659L222.058 357.656C221.38 357.692 220.707 357.725 220.04 357.755ZM224.012 357.545L223.952 356.549C224.604 356.509 225.261 356.467 225.923 356.422L225.991 357.418C225.327 357.463 224.667 357.505 224.012 357.545ZM227.998 357.273L227.923 356.278C228.572 356.228 229.226 356.177 229.884 356.122L229.967 357.117C229.306 357.172 228.65 357.224 227.998 357.273ZM231.934 356.948C232.594 356.889 233.259 356.828 233.927 356.764L233.832 355.77C233.166 355.834 232.503 355.895 231.846 355.954L231.934 356.948ZM235.916 356.567L235.815 355.574C236.461 355.508 237.111 355.439 237.764 355.369L237.871 356.361C237.216 356.432 236.564 356.501 235.916 356.567ZM239.848 356.142L239.735 355.15C240.396 355.075 241.06 354.998 241.728 354.918L241.846 355.909C241.176 355.989 240.51 356.067 239.848 356.142ZM243.804 355.67C244.454 355.589 245.107 355.505 245.764 355.42L245.635 354.43C244.98 354.515 244.328 354.598 243.68 354.679L243.804 355.67ZM247.743 355.157C248.404 355.068 249.067 354.976 249.734 354.883L249.595 353.894C248.93 353.987 248.268 354.079 247.609 354.168L247.743 355.157ZM251.678 354.605L251.534 353.617C252.183 353.523 252.835 353.427 253.49 353.329L253.638 354.316C252.982 354.414 252.328 354.511 251.678 354.605ZM255.615 354.015L255.463 353.028C256.117 352.927 256.774 352.824 257.434 352.719L257.591 353.705C256.93 353.81 256.271 353.914 255.615 354.015ZM259.533 353.392L259.372 352.407C260.021 352.301 260.672 352.193 261.326 352.083L261.491 353.068C260.836 353.178 260.183 353.286 259.533 353.392ZM263.463 352.733L263.294 351.749C263.946 351.637 264.6 351.523 265.257 351.407L265.43 352.391C264.772 352.506 264.117 352.621 263.463 352.733ZM267.369 352.045L267.192 351.063C267.839 350.946 268.489 350.828 269.141 350.708L269.321 351.69C268.668 351.81 268.018 351.928 267.369 352.045ZM271.287 351.324L271.102 350.343C271.754 350.221 272.407 350.096 273.063 349.971L273.251 350.951C272.594 351.077 271.939 351.201 271.287 351.324ZM275.184 350.577L274.993 349.597C275.638 349.471 276.285 349.343 276.934 349.214L277.13 350.193C276.479 350.322 275.831 350.45 275.184 350.577ZM279.087 349.799L278.888 348.821C279.54 348.689 280.195 348.555 280.851 348.419L281.053 349.397C280.396 349.532 279.74 349.667 279.087 349.799ZM282.979 348.996L282.774 348.019C283.417 347.884 284.062 347.747 284.708 347.609L284.916 348.586C284.269 348.724 283.623 348.86 282.979 348.996ZM286.864 348.167C287.515 348.025 288.167 347.883 288.822 347.739L288.607 346.764C287.954 346.908 287.302 347.05 286.652 347.191L286.864 348.167ZM290.754 347.31L290.536 346.336C291.177 346.193 291.818 346.048 292.462 345.902L292.683 346.876C292.038 347.022 291.396 347.166 290.754 347.31ZM294.62 346.433L294.396 345.46C295.043 345.311 295.691 345.161 296.34 345.01L296.567 345.982C295.917 346.134 295.268 346.284 294.62 346.433ZM298.51 345.526L298.28 344.554C298.917 344.403 299.556 344.251 300.196 344.098L300.429 345.069C299.788 345.222 299.148 345.375 298.51 345.526ZM302.357 344.604C303 344.448 303.646 344.29 304.292 344.131L304.054 343.162C303.408 343.321 302.764 343.478 302.121 343.634L302.357 344.604ZM306.236 343.651C306.875 343.492 307.515 343.331 308.156 343.17L307.913 342.202C307.272 342.363 306.633 342.523 305.995 342.682L306.236 343.651ZM310.074 342.684L309.827 341.717C310.467 341.554 311.107 341.39 311.749 341.224L311.998 342.191C311.356 342.357 310.714 342.521 310.074 342.684ZM313.93 341.69C314.574 341.522 315.219 341.353 315.865 341.183L315.611 340.218C314.965 340.388 314.321 340.557 313.678 340.724L313.93 341.69ZM317.772 340.677L317.515 339.713C318.151 339.543 318.788 339.373 319.426 339.201L319.686 340.165C319.047 340.337 318.409 340.508 317.772 340.677ZM321.607 339.645L321.344 338.682C321.985 338.507 322.626 338.332 323.268 338.155L323.533 339.118C322.89 339.295 322.248 339.47 321.607 339.645ZM325.453 338.587L325.185 337.625C325.818 337.45 326.452 337.273 327.086 337.095L327.356 338.056C326.721 338.234 326.086 338.411 325.453 338.587ZM329.265 337.517L328.993 336.557C329.629 336.377 330.267 336.195 330.905 336.012L331.18 336.972C330.541 337.155 329.903 337.337 329.265 337.517ZM333.1 336.42L332.823 335.461C333.457 335.278 334.092 335.094 334.728 334.908L335.008 335.866C334.371 336.052 333.735 336.237 333.1 336.42ZM336.906 335.31C337.54 335.124 338.174 334.936 338.81 334.748L338.525 333.791C337.891 333.979 337.257 334.166 336.624 334.353L336.906 335.31ZM340.718 334.178L340.431 333.222C341.068 333.031 341.705 332.84 342.342 332.647L342.631 333.602C341.993 333.795 341.355 333.987 340.718 334.178ZM344.53 333.026L344.238 332.071C344.868 331.879 345.498 331.686 346.129 331.492L346.422 332.446C345.791 332.64 345.16 332.833 344.53 333.026ZM348.319 331.86L348.023 330.906C348.656 330.71 349.289 330.513 349.922 330.315L350.221 331.267C349.586 331.466 348.952 331.663 348.319 331.86ZM352.126 330.668C352.756 330.47 353.386 330.27 354.017 330.069L353.714 329.118C353.084 329.318 352.454 329.518 351.825 329.716L352.126 330.668ZM355.903 329.466L355.598 328.516C356.227 328.314 356.856 328.111 357.486 327.908L357.793 328.857C357.163 329.061 356.533 329.264 355.903 329.466ZM359.687 328.243L359.377 327.294C359.757 327.17 360.137 327.045 360.517 326.921C360.769 326.839 361.02 326.756 361.272 326.673L361.584 327.621C360.951 327.83 360.319 328.037 359.687 328.243ZM363.469 326.999L363.155 326.052C363.78 325.845 364.406 325.637 365.032 325.428L365.349 326.374C364.722 326.584 364.095 326.792 363.469 326.999ZM367.231 325.744L366.912 324.798C367.54 324.586 368.168 324.374 368.796 324.161L369.117 325.107C368.487 325.32 367.859 325.532 367.231 325.744ZM371.005 324.464C371.32 324.357 371.635 324.249 371.95 324.141C372.265 324.033 372.58 323.924 372.895 323.816L372.57 322.872C372.256 322.98 371.941 323.088 371.626 323.196C371.311 323.304 370.997 323.412 370.682 323.52L371.005 324.464ZM374.781 323.164L374.453 322.221C375.08 322.004 375.706 321.786 376.331 321.568L376.66 322.51C376.035 322.729 375.408 322.947 374.781 323.164ZM378.534 321.853L378.202 320.912C378.825 320.692 379.447 320.473 380.067 320.253L380.401 321.193C379.78 321.414 379.157 321.634 378.534 321.853ZM382.271 320.528L381.935 319.588C382.562 319.364 383.188 319.139 383.812 318.915L384.15 319.854C383.525 320.079 382.899 320.303 382.271 320.528ZM386.023 319.177L385.682 318.239C386.305 318.013 386.926 317.787 387.546 317.561L387.889 318.498C387.268 318.725 386.646 318.951 386.023 319.177ZM389.748 317.817L389.403 316.88C390.024 316.652 390.643 316.423 391.262 316.194L391.609 317.129C390.99 317.359 390.369 317.588 389.748 317.817ZM393.481 316.433L393.131 315.498C393.753 315.266 394.374 315.033 394.994 314.8L395.345 315.734C394.725 315.968 394.104 316.2 393.481 316.433ZM397.203 315.033L396.849 314.1C397.212 313.962 397.575 313.824 397.938 313.686C398.191 313.59 398.444 313.493 398.697 313.397L399.053 314.329C398.438 314.564 397.821 314.799 397.203 315.033ZM400.906 313.62C401.528 313.38 402.15 313.14 402.77 312.9L402.409 311.97C401.79 312.209 401.169 312.449 400.547 312.688L400.906 313.62ZM404.626 312.179L404.263 311.249C404.88 311.008 405.495 310.767 406.109 310.526L406.474 311.455C405.859 311.697 405.243 311.938 404.626 312.179ZM408.314 310.729L407.947 309.801C408.562 309.557 409.177 309.313 409.79 309.069L410.16 309.996C409.546 310.241 408.931 310.485 408.314 310.729ZM412.015 309.253L411.643 308.327C412.259 308.08 412.874 307.832 413.487 307.583L413.862 308.509C413.248 308.757 412.632 309.005 412.015 309.253ZM415.699 307.762L415.322 306.838C415.932 306.589 416.541 306.34 417.149 306.091L417.528 307.014C416.92 307.264 416.31 307.513 415.699 307.762ZM419.369 306.255C419.986 306 420.601 305.745 421.214 305.489L420.83 304.568C420.217 304.823 419.603 305.078 418.987 305.333L419.369 306.255ZM423.049 304.721L422.662 303.801C423.272 303.545 423.88 303.289 424.486 303.032L424.875 303.951C424.268 304.208 423.659 304.465 423.049 304.721ZM426.691 303.18L426.299 302.262C426.913 302 427.525 301.738 428.136 301.476L428.53 302.393C427.919 302.656 427.306 302.918 426.691 303.18ZM430.363 301.603L429.966 300.687C430.574 300.424 431.181 300.16 431.786 299.897L432.185 300.812C431.579 301.076 430.972 301.34 430.363 301.603ZM433.997 300.019L433.595 299.105C434.199 298.839 434.802 298.573 435.403 298.307L435.808 299.22C435.206 299.486 434.602 299.752 433.997 300.019ZM437.637 298.406L437.23 297.495C437.838 297.224 438.443 296.953 439.046 296.681L439.456 297.592C438.852 297.864 438.245 298.135 437.637 298.406ZM441.263 296.776L440.851 295.867C441.45 295.595 442.048 295.323 442.643 295.051L443.058 295.959C442.462 296.232 441.863 296.504 441.263 296.776ZM444.872 295.127L444.455 294.22C445.06 293.942 445.664 293.662 446.266 293.383L446.686 294.289C446.084 294.568 445.479 294.848 444.872 295.127ZM448.488 293.449L448.064 292.545C448.662 292.266 449.257 291.986 449.85 291.706L450.277 292.609C449.682 292.889 449.086 293.169 448.488 293.449ZM452.066 291.761L451.637 290.86C452.241 290.573 452.843 290.285 453.442 289.998L453.874 290.898C453.273 291.186 452.671 291.474 452.066 291.761ZM455.669 290.034L455.234 289.135C455.829 288.847 456.422 288.559 457.012 288.272L457.45 289.169C456.858 289.457 456.265 289.745 455.669 290.034ZM459.217 288.303L458.776 287.408C459.377 287.112 459.976 286.816 460.572 286.52L461.016 287.414C460.419 287.711 459.819 288.007 459.217 288.303ZM462.803 286.524L462.356 285.632C462.948 285.335 463.537 285.039 464.124 284.743L464.574 285.634C463.986 285.931 463.396 286.228 462.803 286.524ZM466.33 284.743L465.877 283.854C466.472 283.551 467.064 283.248 467.654 282.945L468.11 283.832C467.52 284.136 466.926 284.44 466.33 284.743ZM469.886 282.915L469.426 282.029C470.014 281.724 470.6 281.419 471.182 281.113L471.646 281.998C471.062 282.303 470.476 282.609 469.886 282.915ZM473.388 281.081L472.921 280.198C473.511 279.887 474.097 279.575 474.681 279.263L475.151 280.144C474.567 280.456 473.979 280.768 473.388 281.081ZM476.914 279.198L476.44 278.319C477.024 278.005 477.604 277.69 478.181 277.376L478.659 278.253C478.08 278.568 477.499 278.883 476.914 279.198ZM480.384 277.308L479.903 276.434C480.488 276.112 481.07 275.79 481.649 275.468L482.134 276.34C481.554 276.663 480.971 276.985 480.384 277.308ZM483.88 275.365L483.391 274.495C483.968 274.17 484.542 273.846 485.112 273.522L485.605 274.39C485.034 274.715 484.459 275.04 483.88 275.365ZM487.31 273.416L486.813 272.551C487.395 272.216 487.974 271.882 488.549 271.548L489.05 272.411C488.474 272.746 487.894 273.081 487.31 273.416ZM490.774 271.404L490.268 270.544C490.837 270.209 491.403 269.875 491.965 269.541L492.475 270.399C491.912 270.734 491.345 271.069 490.774 271.404ZM494.167 269.387L493.652 268.531C494.229 268.185 494.801 267.838 495.368 267.492L495.888 268.344C495.319 268.691 494.745 269.039 494.167 269.387ZM497.583 267.305L497.058 266.455C497.618 266.11 498.172 265.765 498.723 265.421L499.253 266.267C498.7 266.613 498.144 266.958 497.583 267.305ZM500.944 265.202L500.409 264.359C500.974 264.001 501.534 263.643 502.09 263.285L502.63 264.125C502.073 264.483 501.511 264.842 500.944 265.202ZM504.288 263.051L503.742 262.215C504.295 261.854 504.843 261.494 505.386 261.134L505.937 261.966C505.392 262.327 504.842 262.689 504.288 263.051ZM507.61 260.849L507.053 260.021C507.603 259.65 508.148 259.281 508.687 258.912L509.251 259.735C508.71 260.106 508.163 260.477 507.61 260.849ZM510.862 258.624C511.419 258.236 511.971 257.849 512.516 257.463L511.938 256.648C511.396 257.033 510.847 257.418 510.292 257.805L510.862 258.624ZM514.132 256.307L513.548 255.498C514.078 255.115 514.602 254.733 515.12 254.353L515.711 255.157C515.191 255.539 514.665 255.923 514.132 256.307ZM517.334 253.951L516.734 253.153C517.266 252.754 517.791 252.355 518.309 251.958L518.917 252.75C518.396 253.149 517.868 253.55 517.334 253.951ZM520.46 251.552L519.844 250.767C520.377 250.348 520.902 249.931 521.419 249.516L522.045 250.294C521.525 250.712 520.997 251.131 520.46 251.552ZM523.581 249.043L522.945 248.273C523.455 247.853 523.955 247.434 524.448 247.017L525.093 247.778C524.598 248.198 524.094 248.62 523.581 249.043ZM526.619 246.466L525.962 245.714C526.458 245.281 526.943 244.851 527.419 244.422L528.088 245.163C527.608 245.596 527.119 246.03 526.619 246.466ZM529.566 243.809L528.884 243.079C529.372 242.625 529.847 242.172 530.312 241.723L531.007 242.439C530.538 242.894 530.057 243.35 529.566 243.809ZM532.408 241.055L531.699 240.352C532.173 239.873 532.634 239.397 533.081 238.925L533.807 239.611C533.354 240.089 532.888 240.571 532.408 241.055ZM535.128 238.179L534.386 237.512C534.841 237.006 535.279 236.505 535.701 236.008L536.463 236.653C536.034 237.158 535.589 237.667 535.128 238.179ZM537.699 235.148L536.917 234.527C537.34 233.996 537.742 233.47 538.125 232.948L538.93 233.539C538.539 234.071 538.129 234.607 537.699 235.148ZM540.052 231.943L539.223 231.387C539.599 230.827 539.951 230.273 540.279 229.726L541.136 230.238C540.799 230.801 540.437 231.369 540.052 231.943ZM542.1 228.517L541.214 228.056C541.518 227.472 541.792 226.896 542.037 226.33L542.953 226.725C542.699 227.315 542.414 227.912 542.1 228.517ZM543.667 224.858L542.718 224.545C542.921 223.932 543.085 223.332 543.212 222.744L544.188 222.955C544.054 223.579 543.879 224.213 543.667 224.858ZM544.483 221.004L543.488 220.921C543.541 220.29 543.547 219.676 543.505 219.079L544.501 219.009C544.546 219.66 544.54 220.325 544.483 221.004Z" fill="white" fill-opacity="0.47"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M572.904 219.211C574.609 215.049 574.898 211.346 573.791 208.117C572.683 204.889 570.181 202.144 566.279 199.903C562.37 197.659 557.107 195.955 550.605 194.81C537.6 192.519 519.841 192.495 498.555 194.648C455.998 198.952 399.566 211.928 339.362 232.573C279.157 253.217 226.639 277.6 190.4 300.316C172.274 311.678 158.268 322.594 149.409 332.382C144.978 337.277 141.87 341.851 140.162 346.021C138.457 350.184 138.168 353.887 139.275 357.115C140.383 360.343 142.885 363.089 146.787 365.329C150.696 367.574 155.959 369.277 162.461 370.423C175.466 372.714 193.225 372.737 214.511 370.585C257.068 366.281 313.5 353.304 373.704 332.66C433.909 312.015 486.427 287.633 522.666 264.917C540.792 253.554 554.797 242.639 563.657 232.851C568.088 227.956 571.196 223.382 572.904 219.211ZM374.028 333.604C494.538 292.281 584.398 235.953 574.735 207.794C565.073 179.634 459.547 190.305 339.038 231.629C218.528 272.952 128.668 329.279 138.331 357.439C147.993 385.599 253.518 374.928 374.028 333.604Z" fill="url(#paint0_linear)"/>
+<path d="M360.328 219.952C328.582 222.555 304.958 250.391 307.561 282.126L422.521 272.702C419.918 240.967 392.073 217.35 360.328 219.952Z" fill="#F7F7F7"/>
+<path d="M225.006 293.056C225.795 302.672 218.636 311.106 209.016 311.894C199.397 312.683 190.959 305.527 190.171 295.912C189.382 286.296 196.541 277.862 206.16 277.074C215.78 276.285 224.217 283.441 225.006 293.056Z" fill="#C4C4C4"/>
+<mask id="mask1" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="190" y="277" width="36" height="35">
+<path d="M225.006 293.056C225.795 302.672 218.636 311.106 209.016 311.894C199.397 312.683 190.959 305.527 190.171 295.912C189.382 286.296 196.541 277.862 206.16 277.074C215.78 276.285 224.217 283.441 225.006 293.056Z" fill="#C4C4C4"/>
+</mask>
+<g mask="url(#mask1)">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M228.932 288.221L179.026 285.47L179.081 284.473L228.987 287.224L228.932 288.221Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M188.878 296.588L233.192 292.956L233.273 293.95L188.96 297.583L188.878 296.588Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M184.202 308.123L230.178 300.047L230.351 301.03L184.375 309.106L184.202 308.123Z" fill="#2D2D2D"/>
+</g>
+<path d="M231.622 368.755C232.185 375.623 227.072 381.647 220.201 382.21C213.33 382.774 207.303 377.662 206.739 370.794C206.176 363.926 211.289 357.902 218.16 357.339C225.032 356.775 231.058 361.886 231.622 368.755Z" fill="#C4C4C4"/>
+<path d="M531.587 206.212C532.376 215.827 525.217 224.261 515.597 225.05C505.978 225.838 497.54 218.683 496.752 209.067C495.963 199.452 503.122 191.018 512.741 190.229C522.361 189.441 530.798 196.596 531.587 206.212Z" fill="#C4C4C4"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M539.427 206.848C539.427 206.848 539.426 206.85 539.423 206.854C539.425 206.85 539.426 206.848 539.427 206.848ZM539.295 206.989C539.289 206.985 539.284 206.981 539.278 206.977C539.044 206.817 538.639 206.629 538.024 206.437C536.806 206.057 534.997 205.734 532.702 205.498C528.128 205.026 521.801 204.915 514.814 205.285C507.827 205.654 501.547 206.432 497.048 207.383C494.791 207.86 493.027 208.372 491.855 208.878C491.264 209.133 490.881 209.363 490.665 209.548C490.66 209.552 490.655 209.556 490.65 209.561C490.655 209.565 490.661 209.568 490.667 209.572C490.901 209.733 491.306 209.921 491.921 210.113C493.139 210.493 494.947 210.816 497.242 211.052C501.817 211.524 508.144 211.635 515.131 211.265C522.118 210.896 528.397 210.118 532.896 209.167C535.154 208.69 536.918 208.178 538.09 207.672C538.681 207.416 539.064 207.186 539.279 207.002C539.285 206.998 539.29 206.993 539.295 206.989ZM490.504 209.434C490.504 209.434 490.506 209.436 490.508 209.44C490.505 209.436 490.504 209.434 490.504 209.434ZM490.518 209.702C490.518 209.702 490.519 209.7 490.522 209.696C490.52 209.7 490.518 209.702 490.518 209.702ZM539.436 207.11C539.44 207.114 539.441 207.116 539.441 207.116C539.441 207.116 539.439 207.114 539.436 207.11ZM515.183 212.262C529.228 211.52 540.519 209.133 540.402 206.931C540.286 204.728 528.806 203.545 514.761 204.288C500.717 205.03 489.426 207.417 489.543 209.619C489.659 211.821 501.139 213.005 515.183 212.262Z" fill="white"/>
+<path d="M512.95 189.986C503.371 190.771 496.243 199.17 497.028 208.746L531.717 205.903C530.932 196.327 522.53 189.2 512.95 189.986Z" fill="#C4C4C4"/>
+<path d="M273.227 306.117C273.588 310.513 270.315 314.369 265.918 314.729C261.52 315.09 257.663 311.818 257.303 307.423C256.942 303.027 260.215 299.172 264.612 298.811C269.01 298.451 272.867 301.722 273.227 306.117Z" fill="#8D8D8D"/>
+<path d="M497.92 284.157C498.281 288.552 495.008 292.408 490.611 292.768C486.213 293.129 482.356 289.858 481.996 285.462C481.635 281.067 484.908 277.211 489.305 276.85C493.703 276.49 497.56 279.761 497.92 284.157Z" fill="#ED1C24"/>
+</g>
+<path d="M157.775 86.4235L98.7486 152.478C94.7356 156.969 87.299 154.621 86.5936 148.641L78.6532 81.3316C78.1569 77.1246 81.4893 73.4473 85.7261 73.5267L152.693 74.7816C158.67 74.8936 161.757 81.967 157.775 86.4235Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M86.0977 148.699C86.8536 155.107 94.8213 157.622 99.1209 152.811L158.147 86.7561C162.414 81.9812 159.106 74.4026 152.702 74.2826L85.7354 73.0277C81.196 72.9427 77.6255 76.8826 78.1573 81.3902L86.0977 148.699ZM98.3762 152.146C94.6499 156.316 87.7445 154.136 87.0894 148.583L79.149 81.2732C78.6882 77.3667 81.7825 73.9521 85.7167 74.0258L152.683 75.2807C158.233 75.3847 161.1 81.9528 157.403 86.0911L98.3762 152.146Z" fill="black"/>
+<path d="M199.392 213.615C199.392 213.615 157.926 214.987 174.128 178.779C177.217 171.771 190.354 149.305 183.917 140.691C183.917 140.691 207.163 150.399 197.08 172.688C186.695 195.54 190.121 210.444 199.392 213.615Z" fill="#ED1C24"/>
+<path d="M166.488 185.91C166.488 185.91 145.427 176.838 164.096 159.932C165.976 158.336 180.002 146.902 180.692 139.397C180.692 139.397 185.927 148.13 176.932 161.195C167.979 174.232 163.754 178.761 166.488 185.91Z" fill="#ED1C24"/>
+<path d="M218.449 175.903C214.436 197.502 216.276 208.032 228.706 215.094C228.706 215.094 181.251 225.373 201.78 175.022C209.124 157.019 200.717 149.026 200.494 148.685C204.006 149.487 222.462 154.305 218.449 175.903Z" fill="#ED1C24"/>
+<path d="M179.886 137.014C175.255 148.643 164.977 161.056 152.059 168.109C150 169.233 147.478 168.826 145.728 167.263C143.289 165.085 143.078 161.343 145.257 158.905L169.864 131.369C172.063 128.907 175.842 128.694 178.304 130.893C180.035 132.439 180.744 134.858 179.886 137.014Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M145.629 159.238C143.634 161.47 143.827 164.897 146.061 166.891C147.669 168.328 149.965 168.684 151.82 167.671C164.632 160.676 174.832 148.354 179.422 136.829C180.194 134.891 179.565 132.689 177.971 131.265C175.715 129.25 172.252 129.446 170.236 131.701L145.629 159.238ZM145.395 167.636C142.751 165.274 142.522 161.217 144.884 158.573L169.491 131.036C171.874 128.369 175.969 128.139 178.636 130.521C180.505 132.19 181.295 134.825 180.35 137.199C175.677 148.932 165.322 161.437 152.299 168.547C150.036 169.783 147.287 169.325 145.395 167.636Z" fill="black"/>
+<path d="M176.05 131.016C170.842 144.095 159.283 158.056 144.755 165.988C142.439 167.253 139.602 166.794 137.634 165.037C134.891 162.587 134.654 158.379 137.104 155.637L164.779 124.667C167.252 121.899 171.502 121.659 174.271 124.132C176.218 125.871 177.016 128.591 176.05 131.016Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M137.476 155.969C135.21 158.506 135.429 162.399 137.966 164.665C139.793 166.296 142.403 166.703 144.515 165.55C158.938 157.676 170.42 143.806 175.586 130.831C176.465 128.624 175.748 126.12 173.938 124.504C171.375 122.215 167.441 122.437 165.151 124.999L137.476 155.969ZM137.301 165.409C134.353 162.776 134.098 158.252 136.732 155.304L164.406 124.334C167.064 121.361 171.629 121.103 174.604 123.76C176.688 125.621 177.566 128.558 176.514 131.2C171.264 144.384 159.628 158.436 144.994 166.426C142.474 167.802 139.411 167.293 137.301 165.409Z" fill="black"/>
+<path d="M102.466 176.598C108.811 158.177 113.484 149.399 124.996 133.165L139.694 146.291C133.232 157.002 126.821 167.146 124.348 196.14L102.466 176.598Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M124.911 132.42L140.335 146.194L140.121 146.548C140.002 146.746 139.883 146.944 139.763 147.141C136.653 152.292 133.595 157.357 130.994 164.529C128.293 171.977 126.079 181.717 124.846 196.182L124.761 197.177L101.885 176.749L101.993 176.436C108.355 157.965 113.052 149.145 124.588 132.876L124.911 132.42ZM103.046 176.447L123.937 195.104C125.192 181.119 127.38 171.566 130.055 164.189C132.69 156.923 135.792 151.786 138.9 146.639C138.951 146.555 139.002 146.471 139.052 146.387L125.08 133.909C113.894 149.726 109.26 158.46 103.046 176.447Z" fill="black"/>
+<path d="M141.804 223.348C141.804 223.348 125.044 223.902 131.593 209.267C132.841 206.435 138.151 197.355 135.549 193.873C135.549 193.873 144.945 197.797 140.87 206.806C136.672 216.042 138.057 222.066 141.804 223.348Z" fill="#ED1C24"/>
+<path d="M128.505 212.15C128.505 212.15 119.993 208.483 127.539 201.65C128.298 201.005 133.967 196.384 134.246 193.35C134.246 193.35 136.362 196.88 132.726 202.161C129.108 207.43 127.401 209.261 128.505 212.15Z" fill="#ED1C24"/>
+<path d="M149.507 208.105C147.885 216.835 148.629 221.091 153.652 223.945C153.652 223.945 134.472 228.1 142.769 207.749C145.738 200.473 142.34 197.242 142.25 197.104C143.669 197.428 151.129 199.376 149.507 208.105Z" fill="#ED1C24"/>
+<path d="M121.711 208.093C109.032 199.999 97.2015 188.626 89.4766 172.705C89.4766 172.705 85.1837 164.333 86.3026 163.081C87.4216 161.829 96.4718 164.877 96.4718 164.877C113.048 170.587 126.053 181.381 135.269 192.92C136.435 197.877 126.421 208.463 121.711 208.093Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M89.9209 172.477C89.9209 172.477 89.9209 172.477 89.7837 172.547L89.9209 172.477L89.9259 172.487C97.58 188.262 109.292 199.551 121.869 207.602C122.866 207.634 124.209 207.121 125.71 206.156C127.25 205.166 128.875 203.752 130.325 202.168C131.776 200.582 133.036 198.843 133.859 197.21C134.665 195.611 135.01 194.194 134.805 193.14C125.64 181.693 112.735 171.007 96.3109 165.349C96.3103 165.349 96.3097 165.349 96.3092 165.349L96.3065 165.348L96.2877 165.341L96.2131 165.317C96.1474 165.295 96.0506 165.263 95.9268 165.223C95.6792 165.143 95.3237 165.029 94.8935 164.897C94.0324 164.632 92.8749 164.293 91.6848 163.993C90.4907 163.692 89.2808 163.435 88.3095 163.329C87.822 163.276 87.4162 163.264 87.112 163.295C86.9604 163.311 86.8491 163.336 86.7719 163.364C86.6969 163.391 86.6749 163.414 86.6748 163.414C86.6749 163.414 86.6569 163.436 86.6404 163.508C86.6229 163.583 86.6124 163.692 86.6168 163.839C86.6255 164.135 86.6917 164.525 86.8103 164.99C87.0465 165.916 87.4674 167.053 87.9312 168.171C88.3933 169.285 88.891 170.362 89.2737 171.162C89.4649 171.561 89.6271 171.891 89.7413 172.12C89.7984 172.235 89.8435 172.325 89.8742 172.385L89.9092 172.454L89.9181 172.472L89.9209 172.477ZM96.4718 164.877L96.6312 164.404L96.6345 164.405C113.319 170.152 126.397 181.012 135.659 192.609L135.729 192.697L135.755 192.806C136.087 194.22 135.614 195.945 134.751 197.659C133.877 199.393 132.558 201.207 131.062 202.841C129.566 204.476 127.877 205.95 126.25 206.996C124.646 208.027 123.019 208.697 121.671 208.591L121.547 208.581L121.442 208.514C108.704 200.382 96.803 188.946 89.0297 172.927L89.0194 172.907L88.9831 172.836C88.9515 172.773 88.9054 172.682 88.8473 172.565C88.7312 172.332 88.5667 171.997 88.3729 171.593C87.9857 170.784 87.48 169.689 87.0088 168.554C86.5392 167.422 86.0967 166.232 85.8427 165.236C85.7161 164.74 85.6305 164.27 85.6186 163.869C85.6076 163.494 85.6557 163.056 85.9302 162.748C86.2021 162.444 86.6325 162.341 87.0097 162.302C87.4145 162.26 87.8994 162.281 88.4177 162.337C89.458 162.45 90.7205 162.721 91.9289 163.025C93.1412 163.331 94.3162 163.675 95.187 163.943C95.6227 164.077 95.983 164.192 96.2347 164.273C96.3606 164.314 96.4593 164.347 96.5268 164.369L96.604 164.395L96.6312 164.404C96.6313 164.404 96.6312 164.404 96.4718 164.877Z" fill="black"/>
+<path d="M185.245 83.9623C167.647 92.3347 159.447 97.9635 144.604 111.222L159.302 124.348C169.223 116.725 178.586 109.218 207.127 103.504L185.245 83.9623Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M143.854 111.222L159.278 124.995L159.606 124.743C159.789 124.602 159.972 124.462 160.155 124.321C164.926 120.653 169.617 117.046 176.454 113.657C183.553 110.137 192.985 106.844 207.225 103.993L208.205 103.797L185.33 83.3688L185.03 83.5114C167.386 91.9059 159.147 97.5622 144.271 110.849L143.854 111.222ZM185.16 84.5555L206.052 103.212C192.291 106.03 183.042 109.276 176.01 112.763C169.084 116.196 164.326 119.855 159.559 123.52C159.481 123.58 159.403 123.64 159.326 123.699L145.353 111.222C159.818 98.3332 167.979 92.7488 185.16 84.5555Z" fill="black"/>
+<path d="M236.133 117.787C236.133 117.787 234.801 101.076 220.99 109.226C218.315 110.784 209.886 117.078 206.132 114.885C206.132 114.885 211.088 123.777 219.585 118.717C228.294 113.51 234.437 114.209 236.133 117.787Z" fill="#ED1C24"/>
+<path d="M223.508 105.835C223.508 105.835 218.908 97.7907 212.963 106.054C212.407 106.881 208.451 113.032 205.467 113.65C205.467 113.65 209.213 115.355 214.053 111.15C218.884 106.964 220.512 105.062 223.508 105.835Z" fill="#ED1C24"/>
+<path d="M221.847 127.151C230.342 124.559 234.656 124.82 238.058 129.489C238.058 129.489 240.032 109.97 220.736 120.498C213.837 124.264 210.244 121.252 210.097 121.178C210.579 122.551 213.352 129.743 221.847 127.151Z" fill="#ED1C24"/>
+<path d="M218.713 99.5412C209.243 87.8559 196.609 77.3821 179.916 71.4972C179.916 71.4972 171.112 68.1733 169.993 69.4255C168.874 70.6777 172.92 79.3254 172.92 79.3254C180.458 95.1503 192.649 106.855 205.154 114.714C210.212 115.315 219.61 104.179 218.713 99.5412Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M179.739 71.9641C179.739 71.9641 179.739 71.9641 179.794 71.8199L179.739 71.9641L179.749 71.968C196.29 77.799 208.827 88.1651 218.242 99.7538C218.386 100.74 218.027 102.133 217.236 103.732C216.425 105.373 215.203 107.145 213.79 108.764C212.377 110.383 210.79 111.83 209.259 112.831C207.76 113.811 206.391 114.314 205.321 114.229C192.913 106.41 180.841 94.7919 173.372 79.1123C173.372 79.1118 173.371 79.1113 173.371 79.1107L173.37 79.1081L173.362 79.0902L173.329 79.0188C173.3 78.956 173.257 78.8635 173.203 78.745C173.096 78.508 172.943 78.1677 172.763 77.7552C172.403 76.9295 171.936 75.8178 171.504 74.6693C171.071 73.517 170.68 72.3441 170.465 71.391C170.358 70.9128 170.3 70.5111 170.297 70.2054C170.295 70.0531 170.308 69.9396 170.327 69.8598C170.346 69.7822 170.365 69.7579 170.365 69.7578C170.365 69.7579 170.385 69.7375 170.455 69.713C170.528 69.6872 170.635 69.6646 170.782 69.6524C171.077 69.6278 171.472 69.6498 171.947 69.7153C172.894 69.8459 174.072 70.1362 175.236 70.4713C176.395 70.8053 177.521 71.1786 178.359 71.469C178.778 71.614 179.123 71.7381 179.364 71.8258C179.485 71.8696 179.579 71.9043 179.643 71.928L179.715 71.9551L179.733 71.9619L179.739 71.9641ZM172.92 79.3253L172.468 79.5368L172.47 79.5399C180.056 95.4675 192.321 107.239 204.889 115.136L204.984 115.196L205.095 115.209C206.538 115.381 208.199 114.717 209.806 113.667C211.432 112.604 213.086 111.09 214.543 109.42C216 107.75 217.275 105.907 218.131 104.174C218.977 102.465 219.459 100.773 219.203 99.4463L219.179 99.3238L219.101 99.2269C209.587 87.4872 196.882 76.9503 180.087 71.0282L180.065 71.0202L179.99 70.9922C179.925 70.9678 179.828 70.9324 179.706 70.8878C179.461 70.7986 179.11 70.6728 178.686 70.5258C177.838 70.232 176.694 69.8526 175.512 69.5121C174.334 69.1728 173.102 68.8669 172.084 68.7264C171.576 68.6565 171.099 68.6242 170.699 68.6575C170.325 68.6887 169.895 68.7857 169.621 69.0929C169.349 69.3972 169.294 69.8363 169.298 70.2153C169.302 70.6221 169.377 71.1015 169.491 71.6101C169.721 72.6307 170.131 73.8544 170.57 75.0205C171.01 76.1905 171.484 77.319 171.848 78.1539C172.03 78.5717 172.185 78.9167 172.294 79.1575C172.349 79.278 172.392 79.3724 172.422 79.4369L172.456 79.5108L172.468 79.5368C172.468 79.5369 172.468 79.5368 172.92 79.3253Z" fill="black"/>
+<path d="M131.214 163.584C92.7495 139.1 56.8612 104.692 33.4309 56.5216C33.4309 56.5216 20.4097 31.1926 23.8053 27.4031C27.2008 23.6137 54.6586 32.832 54.6586 32.832C104.951 50.1014 144.401 82.7574 172.358 117.669C175.893 132.665 145.507 164.703 131.214 163.584Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M33.8752 56.2937C33.8753 56.2939 33.8754 56.294 33.4304 56.5214L33.8752 56.2937L33.8804 56.3038C57.2405 104.33 93.0121 138.654 131.376 163.096C134.763 163.312 139.174 161.602 143.899 158.571C148.659 155.519 153.655 151.18 158.102 146.333C162.55 141.486 166.434 136.147 168.984 131.103C171.517 126.089 172.69 121.451 171.896 117.891C143.989 83.0707 104.638 50.5216 54.4968 33.3036C54.4962 33.3035 54.4957 33.3033 54.4952 33.3031L54.4937 33.3026L54.4791 33.2977L54.4208 33.2783C54.3691 33.2611 54.2923 33.2356 54.1918 33.2024C53.9907 33.1361 53.6951 33.0393 53.3174 32.9173C52.562 32.6733 51.4786 32.3288 50.1678 31.9271C47.5454 31.1236 44.0158 30.0923 40.3825 29.1797C36.7452 28.2661 33.021 27.4757 30.0038 27.1481C28.4934 26.9841 27.182 26.9386 26.1566 27.0441C25.1034 27.1523 24.4698 27.4089 24.1776 27.735C23.8881 28.0581 23.7129 28.6982 23.7433 29.7273C23.7728 30.73 23.9931 31.99 24.3608 33.4281C25.0951 36.3008 26.3936 39.7962 27.8061 43.1922C29.217 46.5842 30.7345 49.8602 31.8999 52.2893C32.4825 53.5036 32.9767 54.5054 33.3252 55.2035C33.4994 55.5525 33.6371 55.8255 33.7312 56.011C33.7783 56.1038 33.8144 56.1747 33.8387 56.2224L33.8662 56.2762L33.8752 56.2937ZM54.6581 32.8318L54.8178 32.3594L54.821 32.3605C105.221 49.667 144.745 82.3888 172.748 117.358L172.819 117.445L172.844 117.555C173.769 121.478 172.467 126.426 169.877 131.551C167.276 136.696 163.333 142.109 158.84 147.006C154.346 151.903 149.286 156.301 144.44 159.41C139.615 162.504 134.918 164.374 131.174 164.081L131.05 164.071L130.945 164.004C92.4208 139.482 56.4617 105.011 32.9829 56.7439L32.9757 56.7299L32.9476 56.6749C32.9228 56.6264 32.8863 56.5547 32.8388 56.461C32.7438 56.2737 32.6051 55.9988 32.4299 55.6478C32.0795 54.9459 31.583 53.9393 30.9979 52.7197C29.8279 50.2812 28.3024 46.9881 26.8824 43.5742C25.4641 40.1643 24.1439 36.6169 23.3918 33.6746C23.0162 32.2053 22.7764 30.8648 22.7437 29.7569C22.7119 28.6755 22.8726 27.6952 23.432 27.0709C23.9887 26.4497 24.9559 26.1654 26.0543 26.0524C27.1804 25.9367 28.5711 25.9897 30.1124 26.157C33.1986 26.4921 36.9755 27.2958 40.6271 28.213C44.2826 29.1312 47.8297 30.1677 50.4618 30.9742C51.7781 31.3776 52.8664 31.7236 53.6259 31.9689C54.0056 32.0916 54.3032 32.1891 54.506 32.256C54.6075 32.2894 54.6852 32.3152 54.7377 32.3327L54.8164 32.3589L54.8178 32.3594C54.818 32.3595 54.8178 32.3594 54.6581 32.8318Z" fill="black"/>
+<path d="M73.4239 71.5882C67.1588 78.2724 61.2538 79.6911 58.1827 79.5517C57.3815 79.5153 56.6625 79.1136 56.0609 78.5834L49.0102 72.3691C48.2263 71.6781 48.9738 69.7842 49.9977 69.5747C53.2439 68.9105 57.7186 66.8547 62.3938 61.8667C67.5766 56.3372 69.0936 50.8522 69.2221 47.1408C69.2568 46.1375 70.7325 45.3272 71.4857 45.9911L79.8956 53.4034C80.75 56.2519 80.6517 63.8768 73.4239 71.5882Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M80.3739 53.2599C81.2833 56.292 81.1279 64.0987 73.7882 71.9294C67.4396 78.7027 61.3992 80.1972 58.16 80.0501C57.2033 80.0067 56.3798 79.5297 55.7307 78.9576L48.68 72.7434C48.3629 72.4639 48.2244 72.0819 48.1924 71.7135C48.1605 71.3471 48.2295 70.9645 48.3578 70.618C48.6012 69.9602 49.1401 69.2405 49.8976 69.0856C53.0326 68.4441 57.4177 66.4456 62.0295 61.5253C67.1285 56.0851 68.5987 50.7157 68.7231 47.1234C68.7487 46.3838 69.2861 45.7955 69.8526 45.4986C70.4161 45.2032 71.2214 45.0926 71.8159 45.6166L80.2762 53.0732L80.0173 53.3667L80.3739 53.2599ZM79.4558 53.681L71.1555 46.3654C70.9968 46.2255 70.6877 46.1881 70.3163 46.3827C69.948 46.5758 69.7302 46.8942 69.7211 47.1579C69.5884 50.9885 68.0247 56.589 62.7582 62.2078C58.0196 67.2635 53.4552 69.3766 50.0979 70.0635C49.8314 70.1181 49.4846 70.4502 49.2943 70.9644C49.2056 71.204 49.1707 71.4375 49.1872 71.6271C49.2035 71.8147 49.2656 71.9286 49.3404 71.9946L56.3911 78.2089C56.9452 78.6972 57.5597 79.0236 58.2053 79.0529C61.1084 79.1847 66.8779 77.8419 73.0595 71.2468C80.0593 63.7787 80.2134 56.4548 79.4558 53.681Z" fill="black"/>
+<path d="M76.1336 92.833C74.8997 91.7312 74.793 89.838 75.8952 88.6045L90.5309 72.2262C91.6331 70.9927 93.5269 70.886 94.7608 71.9879C95.9947 73.0898 96.1014 74.983 94.9992 76.2165L80.3635 92.5948C79.2613 93.8283 77.3675 93.9349 76.1336 92.833Z" fill="#C4C4C4"/>
+<path d="M87.1186 94.8294C85.8847 93.7275 85.7779 91.8343 86.8802 90.6008L92.8675 83.9006C93.9697 82.6671 95.8635 82.5605 97.0974 83.6624C98.3313 84.7642 98.438 86.6574 97.3358 87.8909L91.3485 94.5911C90.2462 95.8246 88.3524 95.9313 87.1186 94.8294Z" fill="#C4C4C4"/>
+<path d="M98.1036 97.824C96.8697 96.7221 96.763 94.8289 97.8652 93.5955C98.9674 92.362 100.861 92.2553 102.095 93.3572C103.329 94.4591 103.436 96.3523 102.333 97.5858C101.231 98.8192 99.3375 98.9259 98.1036 97.824Z" fill="#C4C4C4"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M273.382 262.764L193.695 203.506L194.291 202.705L273.978 261.963L273.382 262.764Z" fill="url(#paint1_radial)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M238.848 271.519L134.255 205.747L134.787 204.902L239.38 270.674L238.848 271.519Z" fill="url(#paint2_radial)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M294.686 216.359L220.653 127L221.422 126.363L295.455 215.722L294.686 216.359Z" fill="url(#paint3_radial)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M296.647 256.642L203.154 167.597L203.843 166.875L297.336 255.919L296.647 256.642Z" fill="url(#paint4_radial)"/>
+<defs>
+<linearGradient id="paint0_linear" x1="339.038" y1="231.629" x2="374.008" y2="333.611" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<radialGradient id="paint1_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(233.837 232.735) rotate(90) scale(29.6291 39.8437)">
+<stop stop-color="#ED1C24" stop-opacity="0.78"/>
+<stop offset="1" stop-color="#ED1C24" stop-opacity="0"/>
+</radialGradient>
+<radialGradient id="paint2_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(186.817 238.21) rotate(87.2485) scale(35.3571 50.6575)">
+<stop stop-color="#ED1C24" stop-opacity="0.78"/>
+<stop offset="1" stop-color="#ED1C24" stop-opacity="0"/>
+</radialGradient>
+<radialGradient id="paint3_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(258.054 171.361) rotate(115.31) scale(24.5788 52.5644)">
+<stop stop-color="#ED1C24" stop-opacity="0.78"/>
+<stop offset="1" stop-color="#ED1C24" stop-opacity="0"/>
+</radialGradient>
+<radialGradient id="paint4_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(250.245 211.758) rotate(90) scale(44.5224 46.7467)">
+<stop stop-color="#ED1C24" stop-opacity="0.78"/>
+<stop offset="1" stop-color="#ED1C24" stop-opacity="0"/>
+</radialGradient>
+</defs>
+</svg>
diff --git a/public/img/community/b3-rocket5.svg b/public/img/community/b3-rocket5.svg
new file mode 100644
index 0000000..9cc4dcd
--- /dev/null
+++ b/public/img/community/b3-rocket5.svg
@@ -0,0 +1,105 @@
+<svg width="523" height="369" viewBox="0 0 523 369" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="0.452271" y="77.3203" width="510" height="291.367" rx="10" fill="#2D2D2D"/>
+<mask id="mask0" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="77" width="307" height="292">
+<rect x="0.452271" y="77.3203" width="305.839" height="291.367" rx="10" fill="#2D2D2D"/>
+</mask>
+<g mask="url(#mask0)">
+<path d="M127.601 253.591L127.731 253.606L127.86 253.622L127.989 253.64L128.118 253.66L128.246 253.681L128.374 253.704L128.501 253.729L128.628 253.755L128.754 253.783L128.879 253.813L129.004 253.844L129.128 253.877L129.252 253.912L129.374 253.948L129.496 253.986L129.617 254.026L129.737 254.067L129.856 254.11L129.974 254.154L130.092 254.2L130.208 254.248L130.323 254.298L130.437 254.349L130.55 254.401L130.661 254.455L130.772 254.511L130.881 254.569L130.989 254.627L131.096 254.688L131.201 254.75L131.305 254.814L131.407 254.879L131.508 254.946L131.608 255.014L131.706 255.084L131.802 255.156L131.897 255.229L131.99 255.303L132.081 255.379L132.171 255.456L132.259 255.535L132.346 255.616L132.43 255.697L132.513 255.781L132.594 255.865L132.672 255.951L132.749 256.039L132.824 256.128L132.898 256.218L132.969 256.31L133.038 256.403L133.104 256.497L133.169 256.593L133.232 256.69L133.292 256.788L133.351 256.888L133.407 256.988L133.461 257.09L133.512 257.194L133.562 257.298L133.608 257.404L133.653 257.511L133.695 257.619L133.735 257.728L133.772 257.839L133.807 257.95L133.84 258.063L133.87 258.176L133.897 258.291L133.922 258.407L133.944 258.523L133.964 258.641L133.981 258.76L133.995 258.88L134.007 259L134.016 259.122L134.022 259.244L134.025 259.368L134.026 259.492L134.024 259.617L134.019 259.743L134.012 259.87L134.001 259.997L133.988 260.125L133.972 260.254L133.953 260.384L133.931 260.514L133.907 260.646L133.879 260.777L133.848 260.909L133.815 261.042L133.778 261.176L133.738 261.31L133.696 261.444L133.65 261.579L133.602 261.715L133.55 261.851L133.496 261.987L133.438 262.124L133.377 262.261L133.313 262.399L133.246 262.537L133.176 262.675L133.103 262.813L133.027 262.952L132.948 263.091L132.865 263.23L132.78 263.369L132.691 263.509L132.6 263.648L132.505 263.788L132.407 263.928L132.305 264.067L132.201 264.207L132.093 264.347L131.983 264.487L131.869 264.626L131.752 264.766L131.632 264.905L131.509 265.044L131.382 265.184L131.253 265.322L131.12 265.461L130.984 265.6L130.845 265.738L130.703 265.876L130.558 266.013L130.409 266.15L130.258 266.287L130.103 266.423L129.946 266.559L129.785 266.694L129.621 266.829L129.454 266.964L129.284 267.097L129.11 267.231L128.934 267.363L128.755 267.495L128.573 267.626L128.387 267.757L128.199 267.887L128.008 268.016L127.813 268.144L127.616 268.271L127.416 268.398L127.212 268.524L127.006 268.649L126.797 268.773L126.585 268.895L126.37 269.017L126.153 269.138L125.932 269.258L125.709 269.377L125.482 269.495L125.253 269.612L125.022 269.727L124.787 269.841L124.55 269.955L124.31 270.066L124.067 270.177L123.822 270.287L123.574 270.395L123.324 270.501L123.07 270.607L122.815 270.711L122.556 270.813L122.296 270.914L122.032 271.014L121.767 271.112L121.499 271.209L121.228 271.304L120.955 271.397L120.68 271.489L120.402 271.58L120.122 271.668L119.84 271.755L119.556 271.84L119.269 271.924L118.98 272.006L118.689 272.086L118.396 272.164L118.101 272.241L117.804 272.315L117.505 272.388L117.204 272.459L116.901 272.528L116.596 272.595L116.289 272.66L115.981 272.723L115.67 272.784L115.358 272.843L115.044 272.9L114.729 272.955L114.411 273.007L114.093 273.058L113.772 273.107L113.45 273.153L113.127 273.197L112.802 273.239L112.476 273.279L112.148 273.317L111.82 273.352L111.489 273.385L111.158 273.416L110.825 273.444L110.492 273.47L110.157 273.494L109.821 273.516L109.484 273.535L109.146 273.551L108.807 273.565L108.467 273.577L108.127 273.587L107.785 273.593L107.443 273.598L107.1 273.6L106.757 273.599L106.413 273.596L106.068 273.59L105.723 273.582L105.377 273.571L105.031 273.558L104.684 273.542L104.337 273.523L103.99 273.502L103.643 273.478L103.296 273.451L102.948 273.422L102.6 273.39L102.252 273.355L101.905 273.318L101.557 273.278L101.209 273.235L100.862 273.19L100.515 273.142L100.168 273.091L99.8212 273.037L99.4749 272.981L99.1291 272.922L98.7838 272.86L98.4389 272.795L98.0947 272.727L97.7511 272.657L97.4081 272.584L97.0659 272.508L96.7244 272.429L96.3838 272.348L96.0441 272.263L95.7053 272.176L95.3675 272.086L95.0308 271.993L94.6951 271.897L94.3606 271.799L94.0273 271.698L93.6952 271.593L93.3645 271.486L93.0351 271.376L92.7071 271.264L92.3806 271.148L92.0556 271.029L91.7321 270.908L91.4103 270.784L91.0902 270.657L90.7718 270.527L90.4552 270.395L90.1404 270.259L89.8275 270.121L89.5165 269.98L89.2075 269.836L88.9006 269.689L88.5958 269.539L88.2931 269.387L87.9926 269.231L87.6943 269.073L87.3984 268.913L87.1048 268.749L86.8137 268.583L86.525 268.413L86.2388 268.242L85.9551 268.067L85.6741 267.889L85.3958 267.709L85.1201 267.526L84.8473 267.341L84.5772 267.152L84.31 266.961L84.0457 266.768L83.7844 266.571L83.5261 266.372L83.2709 266.171L83.0188 265.966L82.7699 265.759L82.5242 265.55L82.2817 265.338L82.0425 265.123L81.8067 264.906L81.5744 264.686L81.3454 264.463L81.12 264.238L80.8981 264.011L80.6798 263.781L80.4652 263.549L80.2542 263.314L80.047 263.077L79.8435 262.837L79.6439 262.595L79.4482 262.351L79.2563 262.104L79.0684 261.855L78.8845 261.603L78.7047 261.35L78.529 261.094L78.3573 260.835L78.1899 260.575L78.0266 260.312L77.8677 260.047L77.713 259.78L77.5626 259.511L77.4167 259.24L77.2751 258.967L77.138 258.691L77.0054 258.414L76.8773 258.134L76.7538 257.853L76.6349 257.57L76.5207 257.284L76.4111 256.997L76.3063 256.708L76.2062 256.417L76.1109 256.124L76.0204 255.829L75.9348 255.533L75.8541 255.235L75.7783 254.935L75.7074 254.634L75.6416 254.33L75.5807 254.026L75.5249 253.719L75.4742 253.411L75.4287 253.102L75.3882 252.791L75.3529 252.478L75.3229 252.165L75.298 251.849L75.2784 251.533L75.2641 251.215L75.2551 250.895L75.2514 250.575L75.2531 250.253L75.2602 249.93L75.2727 249.606L75.2906 249.281L75.3139 248.955L75.3427 248.627L75.377 248.299L75.4169 247.969L75.4622 247.639L75.5131 247.308L75.5696 246.975L75.6317 246.642L75.6994 246.309L75.7727 245.974L75.8516 245.639L75.9362 245.303L76.0265 244.966L76.1224 244.629L76.2241 244.291L76.3314 243.952L76.4445 243.613L76.5633 243.274L76.6879 242.934L76.8182 242.594L76.9542 242.254L77.0961 241.913L77.2437 241.572L77.3971 241.23L77.5563 240.889L77.7213 240.547L77.8921 240.205L78.0687 239.864L78.2511 239.522L78.4393 239.18L78.6333 238.838L78.8332 238.497L79.0389 238.155L79.2504 237.814L79.4677 237.473L79.6908 237.132L79.9198 236.791L80.1545 236.451L80.3951 236.111L80.6414 235.772L80.8936 235.433L81.1516 235.095L81.4153 234.757L81.6848 234.42L81.9601 234.084L82.2412 233.748L82.528 233.413L82.8205 233.078L83.1188 232.745L83.4228 232.412L83.7324 232.081L84.0478 231.75L84.3689 231.42L84.6956 231.092L85.028 230.764L85.366 230.437L85.7096 230.112L86.0588 229.788L86.4136 229.465L86.774 229.144L87.1399 228.823L87.5113 228.505L87.8882 228.187L88.2705 227.871L88.6584 227.557L89.0516 227.244L89.4503 226.933L89.8543 226.623L90.2637 226.315L90.6784 226.009L91.0984 225.705L91.5237 225.402L91.9542 225.101L92.3899 224.802L92.8308 224.505L93.2768 224.211L93.728 223.918L94.1842 223.627L94.6455 223.338L95.1118 223.052L95.5831 222.767L96.0594 222.485L96.5405 222.205L97.0265 221.928L97.5174 221.653L98.013 221.38L98.5134 221.109L99.0185 220.842L99.5283 220.576L100.043 220.314L100.562 220.053L101.085 219.796L101.613 219.541L102.146 219.289L102.683 219.04L103.224 218.793L103.77 218.549L104.32 218.309L104.874 218.071L105.432 217.836L105.995 217.604L106.561 217.375L107.132 217.149L107.706 216.927L108.285 216.707L108.867 216.491L109.454 216.278L110.044 216.068L110.637 215.861L111.235 215.658L111.836 215.458L112.44 215.262L113.048 215.069L113.66 214.879L114.275 214.693L114.893 214.51L115.514 214.331L116.139 214.156L116.767 213.984L117.398 213.816L118.032 213.652L118.669 213.492L119.309 213.335L119.951 213.182L120.597 213.033L121.245 212.887L121.896 212.746L122.549 212.609L123.205 212.475L123.863 212.345L124.524 212.22L125.187 212.099L125.853 211.981L126.52 211.868L127.19 211.759L127.862 211.654L128.535 211.553L129.211 211.456L129.888 211.364L130.568 211.276L131.249 211.192L131.931 211.112L132.615 211.037L133.301 210.966L133.988 210.9L134.676 210.838L135.366 210.78L136.057 210.727L136.749 210.678L137.442 210.634L138.136 210.594L138.831 210.559L139.526 210.528L140.223 210.502L140.92 210.48L141.617 210.463L142.316 210.451L143.014 210.443L143.713 210.44L144.413 210.442L145.112 210.448L145.812 210.46L146.511 210.475L147.211 210.496L147.911 210.521L148.61 210.551L149.309 210.586L150.008 210.625L150.706 210.67L151.404 210.719L152.101 210.773L152.798 210.832L153.494 210.895L154.189 210.964L154.883 211.037L155.576 211.115L156.268 211.199L156.959 211.287L157.649 211.379L158.337 211.477L159.024 211.58L159.71 211.687L160.394 211.8L161.076 211.917L161.757 212.039L162.436 212.166L163.113 212.298L163.788 212.435L164.461 212.577L165.132 212.724L165.8 212.876L166.466 213.032L167.13 213.194L167.792 213.36L168.451 213.532L169.107 213.708L169.761 213.889L170.412 214.075L171.06 214.266L171.705 214.462L172.347 214.663L172.986 214.869L173.622 215.079L174.255 215.294L174.884 215.515L175.51 215.74L176.132 215.969L176.751 216.204L177.366 216.444L177.977 216.688L178.585 216.937L179.188 217.191L179.788 217.449L180.384 217.713L180.975 217.981L181.562 218.254L182.145 218.531L182.724 218.813L183.298 219.1L183.868 219.392L184.433 219.688L184.993 219.989L185.548 220.294L186.099 220.604L186.645 220.919L187.186 221.238L187.722 221.561L188.252 221.89L188.778 222.222L189.298 222.559L189.813 222.901L190.322 223.246L190.826 223.597L191.324 223.951L191.817 224.31L192.304 224.673L192.785 225.041L193.26 225.413L193.73 225.789L194.193 226.169L194.651 226.553L195.102 226.941L195.547 227.334L195.986 227.731L196.418 228.131L196.844 228.536L197.264 228.945L197.677 229.357L198.083 229.774L198.483 230.194L198.876 230.618L199.262 231.046L199.641 231.478L200.014 231.914L200.379 232.353L200.738 232.796L201.089 233.242L201.434 233.693L201.771 234.146L202.1 234.603L202.423 235.064L202.738 235.528L203.046 235.996L203.346 236.466L203.638 236.94L203.923 237.418L204.201 237.898L204.47 238.382L204.732 238.869L204.986 239.359L205.232 239.852L205.471 240.348L205.701 240.847L205.923 241.349L206.138 241.854L206.344 242.362L206.542 242.872L206.732 243.385L206.913 243.901L207.086 244.419L207.251 244.94L207.408 245.464L207.556 245.99L207.696 246.518L207.827 247.049L207.95 247.582L208.064 248.118L208.17 248.655L208.267 249.195L208.355 249.737L208.435 250.281L208.506 250.827L208.568 251.375L208.621 251.925L208.666 252.476L208.702 253.03L208.728 253.585L208.746 254.142L208.755 254.701L208.755 255.261L208.746 255.823L208.728 256.386L208.701 256.95L208.665 257.516L208.619 258.083L208.565 258.652L208.502 259.221L208.429 259.792L208.347 260.364L208.256 260.937L208.156 261.51L208.047 262.085L207.928 262.66L207.801 263.237L207.664 263.814L207.518 264.391L207.362 264.969L207.197 265.548L207.023 266.127L206.84 266.707L206.647 267.286L206.445 267.867L206.234 268.447L206.014 269.027L205.784 269.608L205.545 270.189L205.297 270.769L205.039 271.35L204.772 271.93L204.496 272.51L204.21 273.09L203.915 273.669L203.611 274.248L203.298 274.827L202.975 275.405L202.644 275.982L202.302 276.559L201.952 277.135L201.593 277.711L201.224 278.285L200.846 278.858L200.459 279.431L200.063 280.002L199.658 280.573L199.243 281.142L198.82 281.71L198.387 282.276L197.946 282.842L197.495 283.405L197.035 283.968L196.567 284.529L196.089 285.088L195.603 285.645L195.108 286.201L194.603 286.755L194.09 287.307L193.569 287.857L193.038 288.405L192.499 288.951L191.951 289.494L191.394 290.036L190.829 290.575L190.256 291.112L189.673 291.647L189.082 292.179L188.483 292.709L187.875 293.236L187.259 293.76L186.635 294.282L186.002 294.801L185.362 295.317L184.713 295.831L184.055 296.341L183.39 296.848L182.717 297.352L182.036 297.853L181.346 298.351L180.649 298.846L179.944 299.337L179.232 299.825L178.511 300.309L177.783 300.79L177.047 301.267L176.304 301.741L175.554 302.211L174.796 302.677L174.03 303.14L173.257 303.599L172.477 304.053L171.69 304.504L170.896 304.951L170.095 305.393L169.287 305.832L168.472 306.266L167.65 306.696L166.821 307.122L165.986 307.543L165.144 307.96L164.296 308.372L163.441 308.78L162.579 309.183L161.712 309.581L160.838 309.975L159.958 310.364L159.072 310.749L158.18 311.128L157.282 311.502L156.378 311.872L155.469 312.236L154.553 312.596L153.632 312.95L152.706 313.299L151.774 313.643L150.837 313.982L149.895 314.315L148.948 314.643L147.995 314.966L147.038 315.283L146.075 315.594L145.108 315.9L144.136 316.201L143.16 316.496L142.179 316.785L141.193 317.068L140.203 317.346L139.209 317.617L138.211 317.883L137.209 318.143L136.203 318.397L135.193 318.645L134.179 318.887L133.161 319.123L132.14 319.353L131.116 319.577L130.088 319.794L129.057 320.005L128.022 320.21L126.985 320.409L125.945 320.602L124.901 320.788L123.856 320.967L122.807 321.14L121.756 321.307L120.702 321.467L119.647 321.621L118.588 321.768L117.528 321.909L116.466 322.042L115.402 322.17L114.336 322.29L113.268 322.404L112.199 322.511L111.129 322.611L110.057 322.705L108.983 322.792L107.909 322.872L106.833 322.945L105.757 323.011L104.68 323.07L103.602 323.122L102.524 323.167L101.445 323.206L100.366 323.237L99.2862 323.261L98.2066 323.279L97.127 323.289L96.0475 323.292L94.9682 323.288L93.8892 323.277L92.8106 323.259L91.7326 323.234L90.6553 323.201L89.5788 323.162L88.5032 323.115L87.4286 323.061L86.3551 323L85.2829 322.931L84.212 322.856L83.1426 322.773L82.0748 322.683L81.0087 322.586L79.9445 322.481L78.8821 322.37L77.8219 322.251L76.7638 322.124L75.708 321.991L74.6546 321.85L73.6037 321.702L72.5555 321.547L71.51 321.384L70.4675 321.215L69.4278 321.038L68.3913 320.853L67.358 320.662L66.3281 320.463L65.3016 320.257L64.2786 320.044L63.2594 319.823L62.2439 319.596L61.2324 319.361L60.2248 319.119L59.2215 318.869L58.2223 318.613L57.2276 318.349L56.2373 318.078L55.2516 317.8L54.2706 317.515L53.2945 317.223L52.3233 316.923L51.3571 316.617L50.3961 316.304L49.4404 315.983L48.49 315.655L47.5452 315.321L46.6059 314.979L45.6724 314.631L44.7447 314.275L43.823 313.913L42.9073 313.543L41.9977 313.167L41.0944 312.784L40.1975 312.394L39.3071 311.997L38.4232 311.593L37.5461 311.183L36.6757 310.766L35.8123 310.342L34.9558 309.912L34.1065 309.475L33.2644 309.031L32.4296 308.581L31.6023 308.124L30.7824 307.661L29.9702 307.191L29.1658 306.715L28.3691 306.232L27.5804 305.744L26.7998 305.248L26.0272 304.747L25.2629 304.239L24.5069 303.725L23.7594 303.205L23.0203 302.679L22.2899 302.146L21.5682 301.608L20.8552 301.063L20.1512 300.513L19.4562 299.957L18.7702 299.395L18.0934 298.827L17.4258 298.253L16.7676 297.674L16.1189 297.089L15.4796 296.498L14.85 295.902L14.23 295.3L13.6199 294.693L13.0196 294.08L12.4292 293.462L11.8489 292.839L11.2787 292.21L10.7187 291.576L10.1689 290.937L9.62948 290.293L9.1005 289.644L8.58201 288.99L8.0741 288.331L7.57685 287.668L7.09032 286.999L6.61458 286.326L6.14972 285.648L5.6958 284.965L5.25289 284.278L4.82105 283.586L4.40037 282.89L3.99089 282.19L3.59269 281.485L3.20584 280.776L2.83039 280.063L2.46641 279.345L2.11395 278.624L1.77309 277.899L1.44387 277.17L1.12636 276.437L0.820614 275.7L0.526683 274.959L0.244623 274.215L-0.0255106 273.468L-0.283668 272.716L-0.529797 271.962L-0.763849 271.204L-0.985774 270.443L-1.19553 269.678L-1.39306 268.911L-1.57833 268.14L-1.75129 267.367L-1.9119 266.59L-2.06012 265.811L-2.1959 265.029L-2.31922 264.244L-2.43002 263.457L-2.52829 262.667L-2.61397 261.875L-2.68704 261.08L-2.74747 260.283L-2.79522 259.484L-2.83026 258.683L-2.85257 257.88L-2.86211 257.074L-2.85887 256.267L-2.84281 255.458L-2.81391 254.648L-2.77216 253.835L-2.71753 253.021L-2.65 252.206L-2.56955 251.389L-2.47616 250.571L-2.36983 249.751L-2.25053 248.931L-2.11826 248.109L-1.973 247.286L-1.81474 246.463L-1.64348 245.638L-1.4592 244.813L-1.2619 243.987L-1.05157 243.161L-0.828221 242.334L-0.59184 241.507L-0.342427 240.679L-0.0799841 239.852L0.195486 239.024L0.48398 238.196L0.785493 237.368L1.10002 236.54L1.42755 235.712L1.76807 234.885L2.12159 234.058L2.48807 233.231L2.86751 232.405L3.25991 231.579L3.66522 230.755L4.08346 229.931L4.51458 229.108L4.95858 228.286L5.41543 227.465L5.8851 226.645L6.36758 225.826L6.86284 225.009L7.37085 224.193L7.89158 223.379L8.425 222.566L8.97109 221.755L9.5298 220.946L10.1011 220.138L10.685 219.333L11.2814 218.529L11.8902 217.728L12.5115 216.929L13.1452 216.132L13.7913 215.337L14.4497 214.545L15.1204 213.755L15.8032 212.969L16.4983 212.184L17.2055 211.403L17.9247 210.624L18.656 209.849L19.3993 209.076L20.1545 208.307L20.9215 207.541L21.7003 206.778L22.4909 206.019L23.2932 205.263L24.107 204.511L24.9325 203.762L25.7694 203.017L26.6178 202.276L27.4775 201.539L28.3485 200.806L29.2308 200.077L30.1242 199.352L31.0286 198.631L31.9441 197.915L32.8706 197.203L33.8078 196.495L34.7559 195.792L35.7147 195.094L36.684 194.4L37.664 193.712L38.6544 193.028L39.6551 192.349L40.6662 191.675L41.6875 191.007L42.7188 190.343L43.7603 189.685L44.8116 189.032L45.8728 188.385L46.9438 187.743L48.0244 187.107L49.1146 186.476L50.2143 185.851L51.3233 185.232L52.4417 184.619L53.5692 184.012L54.7058 183.411L55.8514 182.816L57.0058 182.227L58.1691 181.645L59.341 181.068L60.5214 180.499L61.7104 179.935L62.9077 179.378L64.1132 178.828L65.3268 178.285L66.5485 177.748L67.7781 177.218L69.0155 176.695L70.2605 176.179L71.5132 175.67L72.7732 175.168L74.0407 174.673L75.3153 174.185L76.597 173.705L77.8857 173.232L79.1813 172.766L80.4836 172.308L81.7925 171.857L83.1079 171.414L84.4297 170.979L85.7577 170.551L87.0918 170.131L88.4319 169.719L89.7779 169.314L91.1296 168.918L92.4869 168.53L93.8497 168.149L95.2178 167.777L96.5911 167.413L97.9695 167.057L99.3528 166.709L100.741 166.369L102.134 166.038L103.531 165.715L104.933 165.401L106.339 165.095L107.749 164.798L109.163 164.509L110.581 164.229L112.003 163.957L113.428 163.695L114.857 163.441L116.289 163.195L117.724 162.959L119.162 162.731L120.603 162.513L122.047 162.303L123.493 162.102L124.942 161.911L126.393 161.728L127.846 161.554L129.301 161.39L130.758 161.235L132.216 161.089L133.677 160.952L135.138 160.824L136.601 160.706L138.065 160.597L139.53 160.497L140.996 160.407L142.462 160.326L143.929 160.254L145.396 160.192L146.864 160.139L148.331 160.096L149.799 160.062L151.266 160.038L152.733 160.023L154.199 160.018L155.664 160.022L157.129 160.036L158.593 160.06L160.055 160.093L161.516 160.136L162.976 160.189L164.434 160.251L165.89 160.322L167.345 160.404L168.797 160.495L170.247 160.596L171.695 160.706L173.14 160.826L174.583 160.956L176.022 161.095L177.459 161.245L178.893 161.404L180.323 161.572L181.75 161.75L183.173 161.938L184.592 162.136L186.008 162.344L187.419 162.561L188.826 162.787L190.229 163.024L191.628 163.27L193.021 163.525L194.41 163.791L195.794 164.066L197.173 164.35L198.546 164.645L199.914 164.948L201.277 165.262L202.634 165.585L203.985 165.917L205.33 166.259L206.668 166.61L208.001 166.971L209.327 167.342L210.646 167.721L211.959 168.111L213.265 168.509L214.563 168.917L215.855 169.335L217.139 169.761L218.416 170.197L219.685 170.642L220.946 171.097L222.2 171.56L223.445 172.033L224.682 172.515L225.911 173.006L227.132 173.506L228.343 174.015L229.546 174.533L230.741 175.059L231.926 175.595L233.102 176.14L234.268 176.693L235.426 177.255L236.573 177.826L237.712 178.406L238.84 178.994L239.958 179.591L241.066 180.196L242.164 180.81L243.252 181.433L244.329 182.063L245.395 182.702L246.451 183.35L247.496 184.005L248.53 184.669L249.553 185.341L250.565 186.021L251.565 186.709L252.554 187.405L253.531 188.109L254.496 188.821L255.45 189.54L256.392 190.267L257.322 191.002L258.239 191.745L259.144 192.494L260.037 193.252L260.918 194.017L261.785 194.789L262.64 195.568L263.483 196.355L264.312 197.149L265.128 197.949L265.931 198.757L266.721 199.572L267.497 200.393L268.26 201.222L269.01 202.056L269.746 202.898L270.468 203.746L271.176 204.601L271.87 205.462L272.55 206.329L273.216 207.202L273.868 208.082L274.506 208.968L275.129 209.859L275.738 210.757L276.332 211.66L276.912 212.57L277.476 213.484L278.026 214.405L278.561 215.331L279.082 216.262L279.587 217.198L280.077 218.14L280.552 219.087L281.011 220.039L281.455 220.996L281.884 221.958L282.297 222.924L282.695 223.895L283.077 224.871L283.444 225.852L283.795 226.836L284.13 227.825L284.449 228.818L284.752 229.816L285.04 230.817" stroke="url(#paint0_linear)" stroke-width="3"/>
+<path d="M117.268 252.601L117.139 252.586L117.009 252.57L116.88 252.552L116.752 252.532L116.623 252.51L116.496 252.487L116.368 252.463L116.242 252.436L116.116 252.408L115.99 252.379L115.865 252.347L115.741 252.314L115.618 252.28L115.495 252.243L115.373 252.205L115.252 252.166L115.132 252.125L115.013 252.082L114.895 252.037L114.778 251.991L114.662 251.943L114.546 251.894L114.432 251.843L114.32 251.791L114.208 251.736L114.097 251.681L113.988 251.623L113.88 251.564L113.774 251.504L113.668 251.441L113.565 251.378L113.462 251.312L113.361 251.246L113.262 251.177L113.164 251.107L113.067 251.036L112.973 250.963L112.879 250.889L112.788 250.813L112.698 250.735L112.61 250.656L112.524 250.576L112.439 250.494L112.357 250.411L112.276 250.326L112.197 250.24L112.12 250.153L112.045 250.064L111.972 249.974L111.901 249.882L111.832 249.789L111.765 249.695L111.7 249.599L111.637 249.502L111.577 249.404L111.519 249.304L111.462 249.203L111.409 249.101L111.357 248.998L111.308 248.893L111.261 248.788L111.216 248.681L111.174 248.573L111.134 248.463L111.097 248.353L111.062 248.242L111.03 248.129L111 248.015L110.972 247.901L110.948 247.785L110.925 247.668L110.906 247.55L110.889 247.432L110.874 247.312L110.863 247.191L110.854 247.07L110.847 246.947L110.844 246.824L110.843 246.7L110.845 246.575L110.85 246.449L110.857 246.322L110.868 246.194L110.881 246.066L110.897 245.937L110.916 245.808L110.938 245.677L110.963 245.546L110.991 245.414L111.021 245.282L111.055 245.149L111.091 245.016L111.131 244.882L111.173 244.747L111.219 244.612L111.268 244.477L111.319 244.341L111.374 244.204L111.431 244.068L111.492 243.93L111.556 243.793L111.623 243.655L111.693 243.517L111.766 243.378L111.842 243.24L111.921 243.101L112.004 242.962L112.089 242.822L112.178 242.683L112.27 242.543L112.365 242.404L112.463 242.264L112.564 242.124L112.668 241.985L112.776 241.845L112.887 241.705L113 241.565L113.117 241.426L113.237 241.286L113.361 241.147L113.487 241.008L113.617 240.869L113.749 240.73L113.885 240.592L114.024 240.454L114.166 240.316L114.312 240.179L114.46 240.041L114.611 239.905L114.766 239.768L114.924 239.633L115.085 239.497L115.249 239.362L115.416 239.228L115.586 239.094L115.759 238.961L115.935 238.828L116.114 238.697L116.297 238.565L116.482 238.435L116.67 238.305L116.862 238.176L117.056 238.048L117.253 237.92L117.454 237.794L117.657 237.668L117.863 237.543L118.072 237.419L118.284 237.296L118.499 237.174L118.717 237.053L118.937 236.933L119.161 236.814L119.387 236.697L119.616 236.58L119.848 236.465L120.082 236.35L120.319 236.237L120.559 236.125L120.802 236.015L121.047 235.905L121.295 235.797L121.546 235.69L121.799 235.585L122.055 235.481L122.313 235.378L122.574 235.277L122.837 235.178L123.103 235.08L123.371 234.983L123.641 234.888L123.914 234.794L124.19 234.702L124.467 234.612L124.747 234.523L125.029 234.436L125.314 234.351L125.6 234.268L125.889 234.186L126.18 234.106L126.473 234.028L126.768 233.951L127.065 233.877L127.364 233.804L127.665 233.733L127.968 233.664L128.273 233.597L128.58 233.532L128.889 233.469L129.199 233.408L129.511 233.349L129.825 233.292L130.141 233.237L130.458 233.184L130.777 233.134L131.097 233.085L131.419 233.039L131.742 232.994L132.067 232.952L132.393 232.913L132.721 232.875L133.05 232.84L133.38 232.807L133.711 232.776L134.044 232.747L134.378 232.721L134.713 232.697L135.049 232.676L135.386 232.657L135.723 232.64L136.062 232.626L136.402 232.614L136.743 232.605L137.084 232.598L137.426 232.594L137.769 232.592L138.113 232.593L138.457 232.596L138.801 232.602L139.147 232.61L139.492 232.621L139.839 232.634L140.185 232.65L140.532 232.669L140.879 232.69L141.226 232.714L141.574 232.741L141.921 232.77L142.269 232.802L142.617 232.836L142.965 232.874L143.312 232.914L143.66 232.956L144.007 233.002L144.355 233.05L144.702 233.101L145.048 233.154L145.394 233.211L145.74 233.27L146.086 233.332L146.43 233.397L146.775 233.464L147.118 233.535L147.461 233.608L147.803 233.684L148.145 233.762L148.486 233.844L148.825 233.928L149.164 234.016L149.502 234.106L149.839 234.198L150.174 234.294L150.509 234.393L150.842 234.494L151.174 234.598L151.505 234.705L151.834 234.815L152.162 234.928L152.489 235.044L152.814 235.162L153.137 235.283L153.459 235.408L153.779 235.535L154.098 235.664L154.414 235.797L154.729 235.933L155.042 236.071L155.353 236.212L155.662 236.356L155.969 236.503L156.274 236.652L156.576 236.805L156.877 236.96L157.175 237.118L157.471 237.279L157.764 237.443L158.056 237.609L158.344 237.778L158.631 237.95L158.914 238.125L159.195 238.302L159.474 238.482L159.749 238.665L160.022 238.851L160.292 239.039L160.559 239.23L160.824 239.424L161.085 239.62L161.343 239.819L161.598 240.021L161.851 240.225L162.099 240.432L162.345 240.642L162.588 240.854L162.827 241.069L163.063 241.286L163.295 241.506L163.524 241.728L163.749 241.953L163.971 242.181L164.19 242.411L164.404 242.643L164.615 242.878L164.822 243.115L165.026 243.355L165.225 243.597L165.421 243.841L165.613 244.088L165.801 244.337L165.985 244.588L166.165 244.842L166.34 245.098L166.512 245.356L166.679 245.617L166.843 245.879L167.002 246.144L167.156 246.411L167.307 246.68L167.453 246.952L167.594 247.225L167.731 247.5L167.864 247.778L167.992 248.057L168.116 248.339L168.234 248.622L168.349 248.907L168.458 249.195L168.563 249.484L168.663 249.775L168.758 250.068L168.849 250.362L168.935 250.659L169.015 250.957L169.091 251.257L169.162 251.558L169.228 251.861L169.289 252.166L169.344 252.472L169.395 252.78L169.441 253.09L169.481 253.401L169.516 253.713L169.546 254.027L169.571 254.342L169.591 254.659L169.605 254.977L169.614 255.296L169.618 255.617L169.616 255.938L169.609 256.261L169.597 256.586L169.579 256.911L169.555 257.237L169.527 257.565L169.492 257.893L169.452 258.222L169.407 258.553L169.356 258.884L169.3 259.216L169.238 259.549L169.17 259.883L169.097 260.218L169.018 260.553L168.933 260.889L168.843 261.226L168.747 261.563L168.645 261.901L168.538 262.239L168.425 262.578L168.306 262.918L168.181 263.257L168.051 263.598L167.915 263.938L167.773 264.279L167.626 264.62L167.472 264.961L167.313 265.303L167.148 265.645L166.977 265.986L166.801 266.328L166.618 266.67L166.43 267.012L166.236 267.353L166.036 267.695L165.83 268.037L165.619 268.378L165.402 268.719L165.179 269.06L164.95 269.4L164.715 269.741L164.474 270.08L164.228 270.42L163.976 270.758L163.718 271.097L163.454 271.435L163.184 271.772L162.909 272.108L162.628 272.444L162.341 272.779L162.049 273.113L161.751 273.447L161.447 273.779L161.137 274.111L160.821 274.442L160.5 274.771L160.174 275.1L159.841 275.428L159.503 275.754L159.16 276.08L158.81 276.404L158.456 276.727L158.095 277.048L157.729 277.368L157.358 277.687L156.981 278.004L156.599 278.32L156.211 278.635L155.818 278.948L155.419 279.259L155.015 279.569L154.606 279.876L154.191 280.183L153.771 280.487L153.346 280.79L152.915 281.09L152.479 281.389L152.039 281.686L151.592 281.981L151.141 282.274L150.685 282.565L150.224 282.854L149.757 283.14L149.286 283.424L148.81 283.707L148.329 283.986L147.843 284.264L147.352 284.539L146.856 284.812L146.356 285.082L145.851 285.35L145.341 285.615L144.827 285.878L144.308 286.138L143.784 286.396L143.256 286.651L142.723 286.903L142.186 287.152L141.645 287.399L141.1 287.642L140.55 287.883L139.995 288.121L139.437 288.356L138.875 288.588L138.308 288.817L137.737 289.042L137.163 289.265L136.584 289.485L136.002 289.701L135.416 289.914L134.826 290.124L134.232 290.33L133.635 290.534L133.034 290.734L132.429 290.93L131.821 291.123L131.21 291.313L130.595 291.499L129.976 291.681L129.355 291.86L128.73 292.035L128.102 292.207L127.471 292.375L126.837 292.539L126.201 292.7L125.561 292.857L124.918 293.01L124.273 293.159L123.624 293.304L122.974 293.446L122.32 293.583L121.664 293.717L121.006 293.846L120.345 293.972L119.682 294.093L119.017 294.211L118.349 294.324L117.679 294.433L117.008 294.538L116.334 294.639L115.658 294.735L114.981 294.828L114.302 294.916L113.621 295L112.938 295.079L112.254 295.155L111.568 295.226L110.881 295.292L110.193 295.354L109.503 295.412L108.813 295.465L108.121 295.514L107.428 295.558L106.734 295.598L106.039 295.633L105.343 295.664L104.647 295.69L103.95 295.711L103.252 295.728L102.554 295.741L101.855 295.748L101.156 295.751L100.457 295.75L99.7572 295.743L99.0575 295.732L98.3579 295.716L97.6582 295.696L96.9586 295.671L96.2592 295.641L95.5601 295.606L94.8614 295.566L94.163 295.522L93.4652 295.473L92.7679 295.419L92.0713 295.36L91.3755 295.296L90.6804 295.228L89.9863 295.154L89.2931 295.076L88.6011 294.993L87.9101 294.905L87.2204 294.812L86.532 294.715L85.845 294.612L85.1594 294.504L84.4754 294.392L83.7931 294.275L83.1124 294.152L82.4336 294.025L81.7566 293.893L81.0816 293.756L80.4087 293.614L79.7378 293.468L79.0692 293.316L78.4028 293.159L77.7388 292.998L77.0773 292.831L76.4183 292.66L75.7619 292.484L75.1082 292.302L74.4573 292.116L73.8092 291.925L73.1641 291.729L72.5219 291.529L71.8829 291.323L71.2471 291.113L70.6145 290.897L69.9853 290.677L69.3595 290.452L68.7371 290.222L68.1184 289.988L67.5033 289.748L66.892 289.504L66.2845 289.255L65.6809 289.001L65.0813 288.742L64.4857 288.479L63.8942 288.211L63.307 287.938L62.7241 287.66L62.1455 287.378L61.5714 287.091L61.0018 286.8L60.4368 286.504L59.8765 286.203L59.321 285.897L58.7702 285.587L58.2244 285.273L57.6836 284.954L57.1478 284.63L56.6171 284.302L56.0917 283.97L55.5715 283.633L55.0567 283.291L54.5473 282.945L54.0434 282.595L53.5451 282.24L53.0524 281.882L52.5655 281.518L52.0843 281.151L51.609 280.779L51.1396 280.403L50.6761 280.023L50.2188 279.639L49.7676 279.25L49.3226 278.858L48.8838 278.461L48.4514 278.06L48.0254 277.656L47.6058 277.247L47.1928 276.834L46.7864 276.418L46.3866 275.998L45.9935 275.573L45.6073 275.145L45.2279 274.713L44.8554 274.278L44.4899 273.839L44.1314 273.396L43.78 272.949L43.4357 272.499L43.0987 272.045L42.7689 271.588L42.4464 271.128L42.1314 270.664L41.8237 270.196L41.5236 269.725L41.231 269.251L40.946 268.774L40.6687 268.293L40.3991 267.809L40.1372 267.322L39.8832 266.832L39.637 266.339L39.3987 265.843L39.1683 265.344L38.946 264.842L38.7318 264.338L38.5256 263.83L38.3276 263.32L38.1377 262.807L37.9562 262.291L37.7829 261.772L37.6179 261.251L37.4612 260.728L37.313 260.202L37.1732 259.673L37.0419 259.143L36.9192 258.61L36.8049 258.074L36.6993 257.537L36.6023 256.997L36.514 256.455L36.4344 255.911L36.3635 255.365L36.3013 254.817L36.248 254.267L36.2035 253.715L36.1678 253.162L36.1411 252.606L36.1232 252.05L36.1143 251.491L36.1143 250.931L36.1234 250.369L36.1414 249.806L36.1685 249.241L36.2047 248.675L36.2499 248.108L36.3042 247.54L36.3677 246.97L36.4403 246.4L36.522 245.828L36.6129 245.255L36.713 244.681L36.8223 244.107L36.9408 243.531L37.0686 242.955L37.2056 242.378L37.3518 241.801L37.5073 241.222L37.6721 240.644L37.8461 240.065L38.0294 239.485L38.222 238.905L38.4239 238.325L38.6351 237.745L38.8555 237.164L39.0853 236.584L39.3244 236.003L39.5728 235.423L39.8304 234.842L40.0974 234.262L40.3736 233.682L40.6592 233.102L40.9539 232.522L41.258 231.943L41.5714 231.365L41.894 230.787L42.2258 230.209L42.5669 229.632L42.9171 229.056L43.2767 228.481L43.6453 227.907L44.0232 227.333L44.4102 226.761L44.8064 226.189L45.2117 225.619L45.6261 225.05L46.0496 224.482L46.4821 223.915L46.9237 223.35L47.3743 222.786L47.8339 222.224L48.3025 221.663L48.78 221.104L49.2664 220.547L49.7617 219.991L50.2659 219.437L50.7788 218.885L51.3006 218.335L51.8311 217.787L52.3704 217.241L52.9183 216.697L53.4749 216.156L54.0401 215.616L54.6138 215.079L55.1961 214.545L55.7869 214.012L56.3862 213.483L56.9938 212.956L57.6099 212.431L58.2342 211.909L58.8669 211.391L59.5077 210.874L60.1568 210.361L60.814 209.851L61.4792 209.344L62.1525 208.839L62.8338 208.338L63.523 207.841L64.2201 207.346L64.9251 206.855L65.6377 206.367L66.3582 205.882L67.0862 205.402L67.8218 204.924L68.565 204.45L69.3157 203.98L70.0738 203.514L70.8392 203.052L71.6119 202.593L72.3918 202.138L73.1789 201.688L73.9731 201.241L74.7744 200.798L75.5825 200.36L76.3976 199.926L77.2195 199.496L78.0481 199.07L78.8834 198.649L79.7254 198.232L80.5738 197.82L81.4287 197.412L82.29 197.009L83.1576 196.61L84.0314 196.216L84.9114 195.827L85.7975 195.443L86.6895 195.064L87.5875 194.689L88.4913 194.32L89.4008 193.955L90.316 193.596L91.2368 193.241L92.1632 192.892L93.0949 192.548L94.0319 192.21L94.9742 191.876L95.9217 191.548L96.8742 191.226L97.8317 190.909L98.7941 190.597L99.7613 190.291L100.733 189.991L101.71 189.696L102.691 189.407L103.676 189.124L104.666 188.846L105.66 188.574L106.658 188.309L107.661 188.049L108.667 187.795L109.677 187.546L110.691 187.304L111.708 187.069L112.729 186.839L113.754 186.615L114.782 186.398L115.813 186.186L116.847 185.981L117.884 185.783L118.925 185.59L119.968 185.404L121.014 185.225L122.062 185.051L123.113 184.885L124.167 184.724L125.223 184.571L126.281 184.424L127.341 184.283L128.403 184.149L129.467 184.022L130.533 183.901L131.601 183.788L132.67 183.681L133.741 183.58L134.813 183.487L135.886 183.4L136.96 183.32L138.036 183.247L139.112 183.181L140.189 183.122L141.267 183.07L142.346 183.024L143.424 182.986L144.504 182.955L145.583 182.93L146.663 182.913L147.742 182.903L148.822 182.9L149.901 182.904L150.98 182.915L152.059 182.933L153.137 182.958L154.214 182.991L155.291 183.03L156.366 183.077L157.441 183.131L158.514 183.192L159.586 183.26L160.657 183.336L161.727 183.419L162.795 183.509L163.861 183.606L164.925 183.71L165.987 183.822L167.047 183.941L168.106 184.067L169.161 184.201L170.215 184.342L171.266 184.49L172.314 184.645L173.359 184.807L174.402 184.977L175.441 185.154L176.478 185.338L177.511 185.53L178.541 185.729L179.568 185.935L180.591 186.148L181.61 186.368L182.625 186.596L183.637 186.831L184.644 187.073L185.648 187.322L186.647 187.579L187.642 187.843L188.632 188.113L189.618 188.391L190.599 188.677L191.575 188.969L192.546 189.268L193.512 189.575L194.473 189.888L195.429 190.209L196.379 190.536L197.324 190.871L198.263 191.213L199.197 191.561L200.125 191.917L201.046 192.279L201.962 192.649L202.872 193.025L203.775 193.408L204.672 193.798L205.562 194.195L206.446 194.598L207.323 195.009L208.194 195.426L209.057 195.849L209.914 196.28L210.763 196.717L211.605 197.16L212.44 197.611L213.267 198.067L214.087 198.531L214.899 199L215.704 199.477L216.5 199.959L217.289 200.448L218.07 200.943L218.842 201.445L219.606 201.953L220.362 202.467L221.11 202.987L221.849 203.513L222.579 204.045L223.301 204.584L224.014 205.128L224.718 205.679L225.413 206.235L226.099 206.797L226.776 207.365L227.443 207.939L228.102 208.518L228.75 209.103L229.39 209.694L230.019 210.29L230.639 210.892L231.249 211.499L231.85 212.112L232.44 212.73L233.02 213.353L233.591 213.982L234.151 214.615L234.7 215.254L235.24 215.898L235.769 216.547L236.287 217.201L236.795 217.86L237.292 218.524L237.779 219.193L238.255 219.866L238.72 220.544L239.174 221.227L239.616 221.914L240.048 222.605L240.469 223.302L240.878 224.002L241.277 224.707L241.663 225.416L242.039 226.129L242.403 226.846L242.755 227.568L243.096 228.293L243.425 229.022L243.743 229.755L244.049 230.492L244.343 231.232L244.625 231.976L244.895 232.724L245.153 233.475L245.399 234.23L245.633 234.988L245.855 235.749L246.065 236.513L246.262 237.281L246.448 238.051L246.621 238.825L246.781 239.601L246.929 240.381L247.065 241.163L247.189 241.947L247.299 242.735L247.398 243.524L247.483 244.317L247.556 245.111L247.617 245.908L247.665 246.707L247.7 247.509L247.722 248.312L247.731 249.117L247.728 249.924L247.712 250.733L247.683 251.544L247.641 252.357L247.587 253.17L247.519 253.986L247.439 254.803L247.345 255.621L247.239 256.44L247.12 257.261L246.988 258.083L246.842 258.905L246.684 259.729L246.513 260.553L246.329 261.378L246.131 262.204L245.921 263.031L245.698 263.857L245.461 264.685L245.212 265.512L244.949 266.34L244.674 267.168L244.385 267.996L244.084 268.824L243.769 269.652L243.442 270.48L243.101 271.307L242.748 272.134L242.381 272.961L242.002 273.787L241.609 274.612L241.204 275.437L240.786 276.261L240.355 277.084L239.911 277.906L239.454 278.727L238.984 279.547L238.502 280.365L238.006 281.183L237.498 281.998L236.978 282.813L236.444 283.625L235.898 284.437L235.34 285.246L234.768 286.053L234.184 286.859L233.588 287.662L232.979 288.464L232.358 289.263L231.724 290.06L231.078 290.855L230.42 291.647L229.749 292.436L229.066 293.223L228.371 294.007L227.664 294.789L226.945 295.567L226.213 296.343L225.47 297.115L224.715 297.885L223.948 298.651L223.169 299.413L222.378 300.173L221.576 300.929L220.762 301.681L219.937 302.43L219.1 303.175L218.252 303.916L217.392 304.653L216.521 305.386L215.639 306.115L214.745 306.84L213.841 307.561L212.925 308.277L211.999 308.989L211.061 309.696L210.113 310.399L209.155 311.098L208.185 311.791L207.205 312.48L206.215 313.164L205.214 313.843L204.203 314.516L203.182 315.185L202.15 315.848L201.109 316.507L200.058 317.159L198.996 317.807L197.926 318.449L196.845 319.085L195.755 319.715L194.655 320.34L193.546 320.959L192.428 321.572L191.3 322.18L190.164 322.781L189.018 323.376L187.863 323.965L186.7 324.547L185.528 325.123L184.348 325.693L183.159 326.256L181.962 326.813L180.756 327.363L179.542 327.907L178.321 328.444L177.091 328.974L175.854 329.497L174.609 330.013L173.356 330.522L172.096 331.024L170.829 331.519L169.554 332.006L168.272 332.487L166.984 332.96L165.688 333.425L164.386 333.884L163.077 334.334L161.761 334.777L160.44 335.213L159.112 335.641L157.778 336.061L156.437 336.473L155.091 336.877L153.74 337.274L152.382 337.662L151.02 338.043L149.652 338.415L148.278 338.779L146.9 339.135L145.516 339.483L144.128 339.822L142.736 340.154L141.338 340.476L139.936 340.791L138.53 341.097L137.12 341.394L135.706 341.683L134.288 341.963L132.866 342.234L131.441 342.497L130.013 342.751L128.581 342.996L127.145 343.233L125.707 343.46L124.266 343.679L122.823 343.889L121.376 344.089L119.928 344.281L118.477 344.464L117.024 344.637L115.568 344.802L114.111 344.957L112.653 345.103L111.193 345.24L109.731 345.368L108.268 345.486L106.804 345.595L105.339 345.695L103.874 345.785L102.407 345.866L100.94 345.938L99.4731 346L98.0056 346.052L96.5381 346.096L95.0707 346.129L93.6036 346.154L92.1368 346.168L90.6706 346.174L89.2051 346.169L87.7404 346.155L86.2768 346.132L84.8143 346.098L83.3531 346.056L81.8934 346.003L80.4353 345.941L78.9789 345.869L77.5245 345.788L76.0722 345.697L74.6221 345.596L73.1744 345.486L71.7292 345.366L70.2867 345.236L68.847 345.096L67.4103 344.947L65.9768 344.788L64.5466 344.619L63.1198 344.441L61.6966 344.253L60.2772 344.055L58.8617 343.848L57.4502 343.631L56.043 343.404L54.6401 343.168L53.2417 342.922L51.848 342.666L50.4592 342.401L49.0753 342.126L47.6965 341.841L46.323 341.547L44.9548 341.243L43.5923 340.93L42.2355 340.607L40.8845 340.275L39.5396 339.933L38.2008 339.581L36.8684 339.22L35.5424 338.85L34.223 338.47L32.9103 338.081L31.6046 337.682L30.3058 337.274L29.0143 336.857L27.7301 336.43L26.4534 335.994L25.1843 335.549L23.923 335.095L22.6696 334.631L21.4242 334.159L20.187 333.677L18.9581 333.186L17.7377 332.686L16.5259 332.177L15.3229 331.659L14.1287 331.132L12.9435 330.596L11.7675 330.052L10.6008 329.498L9.44357 328.936L8.29584 328.365L7.15781 327.786L6.0296 327.197L4.91136 326.601L3.80319 325.995L2.70525 325.381L1.61765 324.759L0.540529 324.128L-0.525997 323.489L-1.58178 322.842L-2.62672 322.186L-3.66069 321.522L-4.68355 320.851L-5.69519 320.171L-6.69548 319.483L-7.6843 318.787L-8.66153 318.083L-9.62707 317.371L-10.5808 316.652L-11.5225 315.924L-12.4523 315.19L-13.3698 314.447L-14.2751 313.697L-15.1679 312.94L-16.0483 312.175L-16.916 311.403L-17.7711 310.623L-18.6133 309.837L-19.4425 309.043L-20.2587 308.242L-21.0618 307.435L-21.8516 306.62L-22.628 305.798L-23.391 304.97L-24.1405 304.135L-24.8763 303.294L-25.5983 302.445L-26.3065 301.591L-27.0008 300.73L-27.681 299.863L-28.3471 298.989L-28.999 298.11L-29.6366 297.224L-30.2598 296.332L-30.8685 295.435L-31.4627 294.531L-32.0422 293.622L-32.607 292.707L-33.157 291.787L-33.6921 290.861L-34.2123 289.93L-34.7174 288.993L-35.2074 288.051L-35.6822 287.105L-36.1417 286.153L-36.5859 285.196L-37.0148 284.234L-37.4281 283.267L-37.8259 282.296L-38.2081 281.32L-38.5747 280.34L-38.9255 279.355L-39.2605 278.366L-39.5797 277.373L-39.883 276.376L-40.1704 275.375" stroke="url(#paint1_linear)" stroke-width="3"/>
+<ellipse cx="123.505" cy="253.912" rx="25.9126" ry="17.2413" transform="rotate(-7.99381 123.505 253.912)" fill="white"/>
+</g>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M163.159 254.767V254.77C159.737 254.863 156.982 257.633 156.914 261.062H156.912C156.844 257.601 154.038 254.811 150.571 254.768V254.765C153.994 254.673 156.749 251.903 156.816 248.474H156.819C156.887 251.935 159.692 254.724 163.159 254.767Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M130.06 197.117V197.119C127.529 197.187 125.492 199.236 125.442 201.771H125.44C125.39 199.212 123.315 197.149 120.751 197.117V197.115C123.282 197.047 125.319 194.998 125.369 192.463H125.371C125.421 195.022 127.496 197.085 130.06 197.117Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M77.6931 276.457L77.6935 276.458C76.1467 276.964 75.2672 278.599 75.7012 280.171L75.7001 280.171C75.2 278.604 73.5437 277.713 71.9584 278.163L71.958 278.162C73.5048 277.656 74.3842 276.02 73.9503 274.449L73.9514 274.449C74.4516 276.016 76.1078 276.907 77.6931 276.457Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M204.695 255.878L204.695 255.879C203.149 256.385 202.269 258.021 202.703 259.592L202.702 259.592C202.202 258.025 200.546 257.134 198.96 257.584L198.96 257.583C200.507 257.077 201.386 255.442 200.952 253.87L200.953 253.87C201.453 255.437 203.11 256.328 204.695 255.878Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M30.6019 336.276L30.6023 336.277C29.0555 336.783 28.176 338.419 28.6101 339.99L28.6089 339.99C28.1088 338.423 26.4525 337.532 24.8672 337.983L24.8668 337.981C26.4136 337.475 27.293 335.84 26.8591 334.268L26.8602 334.268C27.3604 335.836 29.0166 336.726 30.6019 336.276Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M157.718 326.269L157.719 326.27C156.172 326.776 155.293 328.412 155.727 329.983L155.725 329.984C155.225 328.416 153.569 327.525 151.984 327.976L151.983 327.974C153.53 327.468 154.41 325.833 153.976 324.262L153.977 324.261C154.477 325.829 156.133 326.719 157.718 326.269Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M106.72 317.581L106.721 317.584C103.875 318.524 102.327 321.773 103.213 324.961L103.211 324.961C102.202 321.778 99.081 319.898 96.1608 320.724L96.16 320.721C99.0058 319.781 100.554 316.532 99.6677 313.344L99.6698 313.344C100.679 316.527 103.8 318.407 106.72 317.581Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M30.308 174.741V174.744C26.8853 174.837 24.1307 177.607 24.0632 181.036H24.0606C23.9925 177.575 21.1871 174.785 17.7202 174.742V174.739C21.1428 174.647 23.8974 171.877 23.9649 168.448H23.9675C24.0357 171.909 26.8411 174.698 30.308 174.741Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M187.452 152.447V152.45C184.03 152.543 181.275 155.313 181.207 158.742H181.205C181.137 155.281 178.331 152.491 174.864 152.448V152.445C178.287 152.353 181.042 149.583 181.109 146.154H181.112C181.18 149.615 183.985 152.404 187.452 152.447Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M50.5746 237.04V237.042C47.7409 237.118 45.4605 239.412 45.4046 242.251H45.4025C45.3461 239.385 43.0235 237.076 40.1533 237.04V237.038C42.9869 236.961 45.2673 234.668 45.3233 231.829H45.3254C45.3818 234.694 47.7044 237.004 50.5746 237.04Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M342.033 311.761V311.763C340.067 311.816 338.484 313.407 338.445 315.378H338.443C338.404 313.389 336.792 311.786 334.8 311.761V311.76C336.767 311.707 338.35 310.115 338.388 308.145H338.39C338.429 310.133 340.041 311.736 342.033 311.761Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M93.1554 119.466V119.468C91.1886 119.521 89.6058 121.113 89.567 123.083H89.5655C89.5263 121.094 87.9143 119.491 85.9221 119.467V119.465C87.8889 119.412 89.4717 117.82 89.5105 115.85H89.512C89.5512 117.838 91.1632 119.442 93.1554 119.466Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M68.532 231.657V231.659C66.0129 231.727 63.9856 233.766 63.9359 236.289H63.934C63.8839 233.742 61.8192 231.689 59.2676 231.657V231.655C61.7866 231.587 63.8139 229.548 63.8636 227.025H63.8655C63.9157 229.572 65.9804 231.625 68.532 231.657Z" fill="#2D2D2D"/>
+<path d="M480.275 310.222L480.302 310.238L480.328 310.254L480.354 310.27L480.38 310.287L480.405 310.304L480.43 310.322L480.455 310.339L480.48 310.357L480.504 310.376L480.528 310.394L480.552 310.413L480.575 310.432L480.598 310.452L480.621 310.472L480.644 310.492L480.666 310.512L480.687 310.533L480.709 310.553L480.73 310.574L480.751 310.596L480.771 310.617L480.791 310.639L480.81 310.661L480.829 310.684L480.848 310.706L480.866 310.729L480.884 310.752L480.901 310.775L480.918 310.799L480.935 310.822L480.951 310.846L480.967 310.87L480.982 310.894L480.996 310.919L481.011 310.943L481.024 310.968L481.038 310.993L481.05 311.018L481.063 311.043L481.074 311.068L481.085 311.094L481.096 311.12L481.106 311.145L481.116 311.171L481.125 311.197L481.134 311.224L481.142 311.25L481.149 311.276L481.156 311.303L481.162 311.329L481.168 311.356L481.173 311.383L481.178 311.41L481.182 311.437L481.185 311.464L481.188 311.491L481.19 311.518L481.192 311.545L481.193 311.572L481.193 311.6L481.193 311.627L481.192 311.654L481.19 311.681L481.188 311.709L481.185 311.736L481.182 311.763L481.178 311.791L481.173 311.818L481.168 311.845L481.162 311.873L481.155 311.9L481.148 311.927L481.14 311.954L481.132 311.981L481.122 312.008L481.112 312.035L481.102 312.062L481.09 312.089L481.078 312.116L481.066 312.142L481.053 312.169L481.039 312.195L481.024 312.222L481.008 312.248L480.992 312.274L480.976 312.3L480.958 312.326L480.94 312.352L480.921 312.377L480.902 312.403L480.882 312.428L480.861 312.453L480.839 312.478L480.817 312.503L480.794 312.527L480.77 312.551L480.746 312.576L480.721 312.6L480.695 312.623L480.669 312.647L480.642 312.67L480.614 312.693L480.585 312.716L480.556 312.739L480.526 312.761L480.496 312.783L480.464 312.805L480.432 312.826L480.4 312.848L480.366 312.869L480.332 312.889L480.298 312.91L480.262 312.93L480.226 312.95L480.19 312.969L480.152 312.988L480.114 313.007L480.075 313.026L480.036 313.044L479.996 313.062L479.955 313.079L479.914 313.096L479.872 313.113L479.829 313.13L479.786 313.146L479.742 313.161L479.697 313.177L479.652 313.192L479.606 313.206L479.56 313.22L479.513 313.234L479.465 313.248L479.417 313.261L479.368 313.273L479.318 313.285L479.268 313.297L479.217 313.308L479.166 313.319L479.114 313.329L479.061 313.339L479.008 313.349L478.954 313.358L478.9 313.366L478.845 313.374L478.79 313.382L478.734 313.389L478.678 313.396L478.621 313.402L478.563 313.408L478.505 313.413L478.447 313.418L478.388 313.422L478.328 313.425L478.268 313.429L478.207 313.431L478.146 313.434L478.085 313.435L478.023 313.436L477.961 313.437L477.898 313.437L477.834 313.436L477.771 313.435L477.706 313.434L477.642 313.432L477.577 313.429L477.511 313.426L477.445 313.422L477.379 313.418L477.313 313.413L477.246 313.408L477.178 313.402L477.111 313.395L477.042 313.388L476.974 313.38L476.905 313.372L476.836 313.363L476.767 313.353L476.697 313.343L476.627 313.333L476.557 313.322L476.486 313.31L476.416 313.297L476.345 313.284L476.273 313.271L476.202 313.257L476.13 313.242L476.058 313.226L475.986 313.21L475.913 313.194L475.841 313.177L475.768 313.159L475.695 313.14L475.622 313.121L475.549 313.102L475.475 313.081L475.402 313.061L475.328 313.039L475.255 313.017L475.181 312.994L475.107 312.971L475.033 312.947L474.959 312.923L474.885 312.898L474.811 312.872L474.736 312.845L474.662 312.818L474.588 312.791L474.514 312.763L474.44 312.734L474.366 312.704L474.291 312.674L474.217 312.644L474.143 312.612L474.069 312.581L473.995 312.548L473.922 312.515L473.848 312.481L473.774 312.447L473.701 312.412L473.628 312.377L473.555 312.341L473.482 312.304L473.409 312.267L473.336 312.229L473.264 312.19L473.192 312.151L473.12 312.112L473.048 312.071L472.976 312.031L472.905 311.989L472.834 311.947L472.763 311.905L472.693 311.862L472.623 311.818L472.553 311.774L472.483 311.729L472.414 311.684L472.345 311.638L472.277 311.591L472.209 311.544L472.141 311.497L472.074 311.449L472.007 311.4L471.941 311.351L471.875 311.301L471.809 311.251L471.744 311.2L471.679 311.149L471.615 311.097L471.551 311.045L471.488 310.992L471.425 310.939L471.363 310.885L471.301 310.83L471.24 310.776L471.18 310.72L471.12 310.665L471.06 310.608L471.002 310.552L470.943 310.495L470.886 310.437L470.829 310.379L470.773 310.32L470.717 310.261L470.662 310.202L470.608 310.142L470.554 310.082L470.501 310.021L470.449 309.96L470.397 309.899L470.346 309.837L470.296 309.775L470.247 309.712L470.198 309.649L470.151 309.586L470.103 309.522L470.057 309.458L470.012 309.393L469.967 309.328L469.923 309.263L469.88 309.198L469.838 309.132L469.797 309.066L469.756 308.999L469.717 308.932L469.678 308.865L469.64 308.798L469.603 308.73L469.567 308.662L469.532 308.594L469.498 308.526L469.465 308.457L469.433 308.388L469.401 308.319L469.371 308.249L469.342 308.18L469.313 308.11L469.286 308.04L469.259 307.969L469.234 307.899L469.209 307.828L469.186 307.757L469.164 307.686L469.142 307.615L469.122 307.544L469.103 307.472L469.085 307.401L469.068 307.329L469.052 307.257L469.037 307.185L469.023 307.113L469.01 307.041L468.999 306.969L468.988 306.897L468.979 306.825L468.97 306.752L468.963 306.68L468.957 306.607L468.952 306.535L468.949 306.462L468.946 306.39L468.945 306.317L468.945 306.245L468.946 306.172L468.948 306.1L468.951 306.028L468.956 305.955L468.961 305.883L468.968 305.811L468.976 305.739L468.986 305.667L468.996 305.595L469.008 305.523L469.021 305.451L469.035 305.379L469.051 305.308L469.067 305.236L469.085 305.165L469.104 305.094L469.125 305.023L469.147 304.953L469.17 304.882L469.194 304.812L469.219 304.742L469.246 304.672L469.274 304.602L469.303 304.533L469.334 304.464L469.365 304.395L469.398 304.326L469.433 304.258L469.468 304.19L469.505 304.122L469.543 304.054L469.583 303.987L469.623 303.92L469.665 303.854L469.709 303.788L469.753 303.722L469.799 303.657L469.846 303.592L469.895 303.527L469.944 303.463L469.995 303.399L470.048 303.335L470.101 303.272L470.156 303.21L470.212 303.148L470.269 303.086L470.328 303.025L470.388 302.964L470.449 302.904L470.511 302.844L470.575 302.784L470.64 302.726L470.706 302.667L470.774 302.61L470.843 302.552L470.913 302.496L470.984 302.44L471.057 302.384L471.13 302.329L471.205 302.275L471.282 302.221L471.359 302.168L471.438 302.115L471.518 302.063L471.599 302.012L471.681 301.961L471.765 301.911L471.85 301.861L471.936 301.813L472.023 301.764L472.111 301.717L472.201 301.67L472.292 301.624L472.384 301.579L472.477 301.534L472.571 301.49L472.666 301.447L472.763 301.405L472.861 301.363L472.96 301.322L473.06 301.282L473.161 301.242L473.263 301.204L473.366 301.166L473.471 301.129L473.576 301.093L473.683 301.057L473.79 301.022L473.899 300.989L474.009 300.956L474.12 300.923L474.232 300.892L474.345 300.862L474.459 300.832L474.573 300.803L474.689 300.775L474.806 300.748L474.924 300.722L475.043 300.697L475.163 300.673L475.284 300.649L475.406 300.627L475.528 300.605L475.652 300.584L475.777 300.565L475.902 300.546L476.028 300.528L476.155 300.511L476.284 300.495L476.412 300.48L476.542 300.466L476.673 300.453L476.804 300.441L476.936 300.43L477.069 300.419L477.203 300.41L477.338 300.402L477.473 300.395L477.609 300.389L477.746 300.384L477.884 300.379L478.022 300.376L478.161 300.374L478.3 300.373L478.441 300.373L478.581 300.374L478.723 300.376L478.865 300.379L479.008 300.383L479.151 300.388L479.295 300.394L479.44 300.402L479.585 300.41L479.73 300.419L479.877 300.43L480.023 300.441L480.17 300.454L480.318 300.467L480.466 300.482L480.614 300.498L480.763 300.515L480.913 300.533L481.063 300.552L481.213 300.572L481.363 300.593L481.514 300.615L481.665 300.639L481.817 300.663L481.969 300.689L482.121 300.715L482.273 300.743L482.426 300.772L482.579 300.802L482.732 300.833L482.885 300.865L483.039 300.898L483.192 300.932L483.346 300.968L483.5 301.004L483.654 301.042L483.808 301.08L483.963 301.12L484.117 301.161L484.271 301.203L484.426 301.246L484.58 301.29L484.735 301.335L484.889 301.382L485.043 301.429L485.198 301.477L485.352 301.527L485.506 301.578L485.66 301.629L485.814 301.682L485.968 301.736L486.122 301.791L486.275 301.847L486.429 301.904L486.582 301.962L486.734 302.021L486.887 302.082L487.039 302.143L487.191 302.205L487.343 302.269L487.494 302.333L487.646 302.399L487.796 302.465L487.947 302.533L488.097 302.602L488.246 302.671L488.395 302.742L488.544 302.814L488.692 302.886L488.84 302.96L488.987 303.035L489.133 303.111L489.28 303.187L489.425 303.265L489.57 303.344L489.715 303.423L489.858 303.504L490.001 303.586L490.144 303.668L490.286 303.752L490.427 303.836L490.567 303.922L490.707 304.008L490.846 304.095L490.984 304.183L491.122 304.272L491.258 304.362L491.394 304.453L491.529 304.545L491.663 304.638L491.797 304.731L491.929 304.826L492.061 304.921L492.191 305.017L492.321 305.114L492.45 305.212L492.577 305.311L492.704 305.41L492.83 305.511L492.954 305.612L493.078 305.714L493.201 305.816L493.322 305.92L493.443 306.024L493.562 306.129L493.68 306.235L493.797 306.341L493.913 306.449L494.028 306.557L494.142 306.665L494.254 306.775L494.365 306.885L494.475 306.996L494.584 307.107L494.691 307.219L494.797 307.332L494.902 307.445L495.005 307.559L495.108 307.674L495.208 307.789L495.308 307.905L495.406 308.022L495.502 308.139L495.598 308.256L495.691 308.375L495.784 308.493L495.875 308.613L495.964 308.732L496.052 308.853L496.138 308.974L496.223 309.095L496.307 309.217L496.389 309.339L496.469 309.461L496.548 309.585L496.625 309.708L496.7 309.832L496.774 309.956L496.847 310.081L496.917 310.206L496.987 310.332L497.054 310.458L497.12 310.584L497.184 310.71L497.246 310.837L497.307 310.964L497.366 311.092L497.423 311.22L497.478 311.348L497.532 311.476L497.584 311.604L497.634 311.733L497.682 311.862L497.729 311.991L497.774 312.12L497.817 312.25L497.858 312.379L497.897 312.509L497.935 312.639L497.97 312.769L498.004 312.899L498.036 313.029L498.066 313.159L498.094 313.289L498.12 313.42L498.144 313.55L498.166 313.68L498.187 313.811L498.205 313.941L498.222 314.071L498.236 314.202L498.249 314.332L498.26 314.462L498.268 314.592L498.275 314.722L498.28 314.852L498.282 314.982L498.283 315.111L498.282 315.241L498.278 315.37L498.273 315.499L498.266 315.628L498.256 315.757L498.245 315.885L498.232 316.013L498.216 316.141L498.199 316.269L498.179 316.396L498.158 316.523L498.134 316.65L498.108 316.777L498.081 316.903L498.051 317.028L498.019 317.154L497.985 317.279L497.949 317.403L497.911 317.527L497.871 317.651L497.828 317.774L497.784 317.897L497.738 318.019L497.689 318.141L497.639 318.262L497.586 318.383L497.531 318.503L497.475 318.623L497.416 318.742L497.355 318.861L497.292 318.979L497.227 319.096L497.16 319.213L497.09 319.329L497.019 319.444L496.946 319.559L496.87 319.673L496.793 319.786L496.713 319.899L496.632 320.011L496.548 320.122L496.462 320.233L496.374 320.342L496.285 320.451L496.193 320.559L496.099 320.667L496.003 320.773L495.905 320.879L495.805 320.984L495.703 321.087L495.599 321.191L495.493 321.293L495.385 321.394L495.275 321.494L495.163 321.594L495.049 321.692L494.933 321.79L494.815 321.886L494.695 321.982L494.574 322.077L494.45 322.17L494.324 322.263L494.197 322.354L494.067 322.445L493.936 322.534L493.802 322.623L493.667 322.71L493.53 322.796L493.391 322.881L493.25 322.965L493.108 323.048L492.963 323.13L492.817 323.21L492.669 323.29L492.519 323.368L492.367 323.445L492.213 323.521L492.058 323.595L491.901 323.669L491.742 323.741L491.581 323.812L491.419 323.882L491.255 323.95L491.089 324.017L490.922 324.083L490.753 324.147L490.582 324.211L490.41 324.273L490.236 324.333L490.06 324.392L489.883 324.45L489.705 324.507L489.524 324.562L489.342 324.616L489.159 324.668L488.974 324.719L488.787 324.769L488.6 324.817L488.41 324.864L488.219 324.909L488.027 324.953L487.833 324.996L487.638 325.037L487.441 325.076L487.244 325.114L487.044 325.151L486.844 325.186L486.642 325.22L486.439 325.252L486.234 325.283L486.028 325.312L485.821 325.339L485.613 325.365L485.404 325.39L485.193 325.413L484.981 325.434L484.768 325.454L484.554 325.473L484.339 325.489L484.123 325.505L483.905 325.518L483.687 325.53L483.468 325.541L483.247 325.55L483.026 325.557L482.803 325.563L482.58 325.567L482.356 325.569L482.131 325.57L481.905 325.569L481.678 325.567L481.45 325.563L481.222 325.557L480.992 325.55L480.762 325.541L480.531 325.53L480.3 325.518L480.068 325.504L479.835 325.489L479.601 325.472L479.367 325.453L479.132 325.432L478.897 325.41L478.661 325.386L478.424 325.361L478.187 325.334L477.95 325.305L477.712 325.275L477.474 325.243L477.235 325.209L476.996 325.174L476.756 325.137L476.516 325.098L476.276 325.057L476.035 325.015L475.795 324.972L475.554 324.926L475.312 324.879L475.071 324.831L474.829 324.78L474.588 324.728L474.346 324.675L474.104 324.619L473.862 324.562L473.62 324.504L473.378 324.443L473.136 324.381L472.894 324.318L472.652 324.253L472.41 324.186L472.168 324.117L471.926 324.047L471.685 323.976L471.444 323.902L471.203 323.827L470.962 323.751L470.721 323.672L470.481 323.593L470.241 323.511L470.001 323.428L469.762 323.344L469.523 323.257L469.285 323.17L469.047 323.08L468.809 322.99L468.572 322.897L468.336 322.803L468.1 322.708L467.865 322.61L467.63 322.512L467.396 322.412L467.163 322.31L466.93 322.207L466.698 322.102L466.467 321.996L466.236 321.888L466.006 321.779L465.777 321.668L465.549 321.556L465.322 321.442L465.096 321.327L464.871 321.211L464.646 321.093L464.423 320.974L464.2 320.853L463.979 320.731L463.758 320.607L463.539 320.482L463.321 320.356L463.104 320.228L462.888 320.099L462.673 319.969L462.459 319.837L462.247 319.704L462.036 319.57L461.826 319.434L461.617 319.297L461.41 319.159L461.204 319.019L461 318.878L460.797 318.736L460.595 318.593L460.395 318.449L460.196 318.303L459.999 318.156L459.803 318.008L459.609 317.859L459.416 317.709L459.225 317.557L459.036 317.405L458.848 317.251L458.662 317.096L458.478 316.94L458.295 316.783L458.114 316.625L457.935 316.466L457.757 316.306L457.582 316.145L457.408 315.983L457.236 315.82L457.066 315.656L456.897 315.491L456.731 315.325L456.567 315.158L456.404 314.99L456.244 314.821L456.085 314.652L455.929 314.481L455.774 314.31L455.622 314.138L455.472 313.965L455.323 313.791L455.177 313.617L455.033 313.442L454.891 313.266L454.752 313.089L454.614 312.912L454.479 312.733L454.346 312.555L454.215 312.375L454.087 312.195L453.961 312.014L453.837 311.833L453.715 311.651L453.596 311.468L453.479 311.285L453.365 311.102L453.253 310.918L453.143 310.733L453.036 310.548L452.931 310.362L452.829 310.176L452.729 309.99L452.631 309.803L452.537 309.616L452.444 309.428L452.354 309.24L452.267 309.052L452.182 308.863L452.1 308.674L452.021 308.485L451.944 308.296L451.869 308.106L451.798 307.916L451.729 307.726L451.662 307.536L451.599 307.345L451.538 307.155L451.479 306.964L451.424 306.773L451.371 306.582L451.321 306.391L451.273 306.2L451.228 306.009L451.187 305.818L451.147 305.627L451.111 305.436L451.077 305.245L451.047 305.054L451.019 304.864L450.994 304.673L450.971 304.483L450.952 304.292L450.935 304.102L450.921 303.912L450.91 303.722L450.902 303.533L450.897 303.344L450.895 303.155L450.895 302.966L450.898 302.778L450.905 302.59L450.914 302.402L450.926 302.215L450.941 302.028L450.959 301.842L450.98 301.656L451.004 301.47L451.03 301.285L451.06 301.101L451.092 300.916L451.128 300.733L451.166 300.55L451.208 300.368L451.252 300.186L451.299 300.005L451.349 299.824L451.402 299.645L451.458 299.466L451.517 299.287L451.579 299.109L451.644 298.932L451.712 298.756L451.783 298.581L451.856 298.406L451.933 298.232L452.012 298.06L452.095 297.887L452.18 297.716L452.268 297.546L452.359 297.377L452.454 297.208L452.551 297.041L452.651 296.874L452.753 296.709L452.859 296.544L452.968 296.381L453.079 296.218L453.194 296.057L453.311 295.897L453.431 295.738L453.554 295.58L453.68 295.423L453.808 295.267L453.94 295.113L454.074 294.959L454.211 294.807L454.351 294.657L454.494 294.507L454.64 294.359L454.788 294.212L454.939 294.066L455.093 293.922L455.25 293.779L455.409 293.637L455.571 293.497L455.736 293.358L455.903 293.22L456.074 293.084L456.246 292.95L456.422 292.817L456.6 292.685L456.781 292.555L456.965 292.426L457.151 292.299L457.339 292.174L457.531 292.05L457.724 291.928L457.921 291.807L458.12 291.688L458.321 291.57L458.525 291.454L458.732 291.34L458.941 291.227L459.152 291.116L459.366 291.007L459.582 290.9L459.801 290.794L460.022 290.69L460.245 290.588L460.471 290.487L460.699 290.389L460.929 290.292L461.162 290.197L461.397 290.104L461.634 290.012L461.874 289.923L462.115 289.835L462.359 289.749L462.605 289.665L462.853 289.583L463.103 289.503L463.356 289.425L463.61 289.349L463.867 289.274L464.125 289.202L464.386 289.132L464.648 289.063L464.913 288.997L465.179 288.933L465.448 288.87L465.718 288.81L465.99 288.751L466.264 288.695L466.54 288.641L466.817 288.589L467.097 288.539L467.378 288.491L467.661 288.445L467.945 288.401L468.231 288.359L468.519 288.32L468.808 288.282L469.099 288.247L469.392 288.214L469.686 288.183L469.982 288.154L470.279 288.127L470.577 288.102L470.877 288.08L471.178 288.06L471.481 288.042L471.785 288.026L472.09 288.012L472.397 288.001L472.704 287.991L473.013 287.984L473.324 287.979L473.635 287.977L473.947 287.976L474.261 287.978L474.576 287.982L474.891 287.989L475.208 287.997L475.526 288.008L475.844 288.021L476.164 288.036L476.484 288.054L476.805 288.074L477.127 288.096L477.45 288.12L477.774 288.146L478.098 288.175L478.423 288.206L478.748 288.24L479.075 288.275L479.401 288.313L479.729 288.353L480.057 288.395L480.385 288.44L480.714 288.487L481.043 288.536L481.373 288.587L481.703 288.641L482.033 288.697L482.364 288.755L482.695 288.816L483.026 288.878L483.357 288.943L483.688 289.01L484.02 289.08L484.352 289.151L484.683 289.225L485.015 289.301L485.347 289.38L485.678 289.46L486.01 289.543L486.341 289.628L486.673 289.715L487.004 289.804L487.335 289.896L487.665 289.99L487.996 290.086L488.326 290.184L488.655 290.284L488.985 290.386L489.313 290.491L489.642 290.598L489.97 290.707L490.297 290.818L490.624 290.931L490.95 291.046L491.276 291.164L491.6 291.283L491.925 291.405L492.248 291.528L492.571 291.654L492.893 291.782L493.214 291.912L493.534 292.044L493.853 292.178L494.171 292.314L494.488 292.452L494.805 292.592L495.12 292.734L495.434 292.878L495.747 293.024L496.059 293.172L496.37 293.322L496.679 293.474L496.987 293.628L497.294 293.783L497.6 293.941L497.904 294.1L498.207 294.262L498.508 294.425L498.808 294.59L499.107 294.757L499.404 294.925L499.699 295.096L499.993 295.268L500.285 295.442L500.575 295.618L500.864 295.796L501.151 295.975L501.437 296.156L501.72 296.339L502.002 296.523L502.282 296.709L502.56 296.897L502.836 297.086L503.11 297.277L503.383 297.47L503.653 297.664L503.921 297.859L504.187 298.057L504.451 298.255L504.713 298.456L504.973 298.658L505.23 298.861L505.485 299.065L505.738 299.272L505.989 299.479L506.238 299.688L506.484 299.898L506.728 300.11L506.969 300.323L507.208 300.538L507.444 300.753L507.678 300.97L507.91 301.188L508.139 301.408L508.365 301.629L508.589 301.85L508.81 302.073L509.028 302.298L509.244 302.523L509.457 302.749L509.668 302.977L509.876 303.206L510.08 303.435L510.282 303.666L510.482 303.898L510.678 304.13L510.872 304.364L511.062 304.599L511.25 304.834L511.435 305.071L511.616 305.308L511.795 305.546L511.971 305.785L512.144 306.025L512.313 306.265L512.48 306.507L512.643 306.749L512.803 306.991L512.961 307.235L513.114 307.479L513.265 307.724L513.413 307.969L513.557 308.215L513.698 308.461L513.836 308.708L513.97 308.956L514.101 309.204L514.229 309.452L514.354 309.701L514.475 309.951L514.593 310.2L514.707 310.45L514.818 310.701L514.925 310.952L515.029 311.203L515.13 311.454L515.227 311.706L515.32 311.957L515.41 312.209L515.497 312.462L515.579 312.714L515.659 312.966L515.735 313.219L515.807 313.471L515.875 313.724L515.94 313.976L516.002 314.229L516.059 314.481L516.113 314.734L516.164 314.986L516.21 315.238L516.253 315.491L516.293 315.742L516.328 315.994L516.36 316.246L516.389 316.497L516.413 316.748L516.434 316.999L516.451 317.249L516.464 317.499L516.473 317.748L516.479 317.998L516.481 318.246L516.479 318.495L516.474 318.742L516.464 318.99L516.451 319.237L516.434 319.483L516.413 319.728L516.388 319.973L516.36 320.218L516.328 320.461L516.292 320.704" stroke="url(#paint2_linear)"/>
+<path d="M478.154 309.001L478.128 308.985L478.102 308.969L478.076 308.952L478.05 308.936L478.025 308.918L478 308.901L477.975 308.883L477.95 308.865L477.926 308.847L477.902 308.828L477.878 308.809L477.854 308.79L477.831 308.771L477.809 308.751L477.786 308.731L477.764 308.711L477.742 308.69L477.721 308.669L477.7 308.648L477.679 308.627L477.659 308.605L477.639 308.583L477.62 308.561L477.6 308.539L477.582 308.516L477.564 308.494L477.546 308.471L477.528 308.448L477.511 308.424L477.495 308.401L477.479 308.377L477.463 308.353L477.448 308.329L477.433 308.304L477.419 308.28L477.405 308.255L477.392 308.23L477.379 308.205L477.367 308.18L477.355 308.154L477.344 308.129L477.334 308.103L477.323 308.077L477.314 308.051L477.305 308.025L477.296 307.999L477.288 307.973L477.281 307.946L477.274 307.92L477.268 307.893L477.262 307.866L477.257 307.84L477.252 307.813L477.248 307.786L477.245 307.759L477.242 307.732L477.24 307.705L477.238 307.678L477.237 307.65L477.237 307.623L477.237 307.596L477.238 307.569L477.239 307.541L477.242 307.514L477.244 307.487L477.248 307.459L477.252 307.432L477.256 307.405L477.262 307.377L477.268 307.35L477.274 307.323L477.282 307.296L477.29 307.268L477.298 307.241L477.308 307.214L477.317 307.187L477.328 307.16L477.339 307.134L477.351 307.107L477.364 307.08L477.377 307.054L477.391 307.027L477.406 307.001L477.421 306.975L477.437 306.949L477.454 306.923L477.472 306.897L477.49 306.871L477.508 306.845L477.528 306.82L477.548 306.795L477.569 306.77L477.591 306.745L477.613 306.72L477.636 306.696L477.659 306.671L477.684 306.647L477.709 306.623L477.735 306.599L477.761 306.576L477.788 306.553L477.816 306.53L477.844 306.507L477.874 306.484L477.904 306.462L477.934 306.44L477.965 306.418L477.997 306.396L478.03 306.375L478.063 306.354L478.097 306.333L478.132 306.313L478.167 306.293L478.203 306.273L478.24 306.254L478.278 306.234L478.316 306.216L478.354 306.197L478.394 306.179L478.434 306.161L478.474 306.143L478.516 306.126L478.558 306.109L478.601 306.093L478.644 306.077L478.688 306.061L478.732 306.046L478.778 306.031L478.824 306.016L478.87 306.002L478.917 305.988L478.965 305.975L479.013 305.962L479.062 305.95L479.112 305.937L479.162 305.926L479.213 305.915L479.264 305.904L479.316 305.893L479.369 305.883L479.422 305.874L479.475 305.865L479.53 305.856L479.584 305.848L479.64 305.841L479.696 305.834L479.752 305.827L479.809 305.821L479.867 305.815L479.925 305.81L479.983 305.805L480.042 305.801L480.102 305.797L480.162 305.794L480.222 305.791L480.283 305.789L480.345 305.787L480.407 305.786L480.469 305.786L480.532 305.786L480.595 305.786L480.659 305.787L480.723 305.789L480.788 305.791L480.853 305.794L480.918 305.797L480.984 305.8L481.051 305.805L481.117 305.81L481.184 305.815L481.252 305.821L481.319 305.828L481.387 305.835L481.456 305.843L481.524 305.851L481.593 305.86L481.663 305.869L481.733 305.879L481.803 305.89L481.873 305.901L481.943 305.913L482.014 305.925L482.085 305.938L482.156 305.952L482.228 305.966L482.3 305.981L482.372 305.996L482.444 306.012L482.516 306.029L482.589 306.046L482.662 306.064L482.735 306.082L482.808 306.101L482.881 306.121L482.954 306.141L483.028 306.162L483.101 306.183L483.175 306.206L483.249 306.228L483.323 306.252L483.397 306.275L483.471 306.3L483.545 306.325L483.619 306.351L483.693 306.377L483.768 306.404L483.842 306.432L483.916 306.46L483.99 306.489L484.064 306.518L484.138 306.548L484.212 306.579L484.286 306.61L484.36 306.642L484.434 306.675L484.508 306.708L484.582 306.741L484.655 306.776L484.729 306.81L484.802 306.846L484.875 306.882L484.948 306.919L485.021 306.956L485.094 306.994L485.166 307.032L485.238 307.071L485.31 307.111L485.382 307.151L485.453 307.192L485.525 307.233L485.596 307.275L485.666 307.318L485.737 307.361L485.807 307.405L485.877 307.449L485.946 307.494L486.016 307.539L486.084 307.585L486.153 307.631L486.221 307.678L486.289 307.726L486.356 307.774L486.423 307.823L486.489 307.872L486.555 307.922L486.621 307.972L486.686 308.023L486.751 308.074L486.815 308.126L486.879 308.178L486.942 308.231L487.005 308.284L487.067 308.338L487.128 308.392L487.189 308.447L487.25 308.502L487.31 308.558L487.369 308.614L487.428 308.671L487.486 308.728L487.544 308.786L487.601 308.844L487.657 308.902L487.713 308.961L487.768 309.021L487.822 309.08L487.876 309.141L487.929 309.201L487.981 309.262L488.033 309.324L488.083 309.386L488.134 309.448L488.183 309.511L488.231 309.574L488.279 309.637L488.326 309.701L488.373 309.765L488.418 309.83L488.463 309.894L488.506 309.96L488.549 310.025L488.592 310.091L488.633 310.157L488.673 310.224L488.713 310.29L488.752 310.357L488.789 310.425L488.826 310.492L488.862 310.56L488.897 310.629L488.932 310.697L488.965 310.766L488.997 310.835L489.028 310.904L489.059 310.973L489.088 311.043L489.117 311.113L489.144 311.183L489.171 311.253L489.196 311.324L489.22 311.394L489.244 311.465L489.266 311.536L489.287 311.607L489.308 311.679L489.327 311.75L489.345 311.822L489.362 311.893L489.378 311.965L489.393 312.037L489.407 312.109L489.42 312.181L489.431 312.253L489.442 312.326L489.451 312.398L489.459 312.47L489.467 312.543L489.473 312.615L489.477 312.688L489.481 312.76L489.484 312.833L489.485 312.905L489.485 312.978L489.484 313.05L489.482 313.123L489.479 313.195L489.474 313.267L489.469 313.34L489.462 313.412L489.453 313.484L489.444 313.556L489.434 313.628L489.422 313.7L489.409 313.772L489.395 313.843L489.379 313.915L489.362 313.986L489.344 314.057L489.325 314.128L489.305 314.199L489.283 314.27L489.26 314.341L489.236 314.411L489.211 314.481L489.184 314.551L489.156 314.62L489.127 314.69L489.096 314.759L489.064 314.828L489.031 314.897L488.997 314.965L488.961 315.033L488.925 315.101L488.886 315.168L488.847 315.235L488.806 315.302L488.764 315.369L488.721 315.435L488.676 315.501L488.631 315.566L488.584 315.631L488.535 315.696L488.485 315.76L488.434 315.824L488.382 315.887L488.329 315.95L488.274 316.013L488.218 316.075L488.16 316.137L488.102 316.198L488.042 316.259L487.981 316.319L487.918 316.379L487.855 316.438L487.79 316.497L487.723 316.555L487.656 316.613L487.587 316.67L487.517 316.727L487.446 316.783L487.373 316.839L487.299 316.894L487.224 316.948L487.148 317.002L487.071 317.055L486.992 317.108L486.912 317.16L486.831 317.211L486.748 317.262L486.665 317.312L486.58 317.361L486.494 317.41L486.407 317.458L486.318 317.506L486.229 317.552L486.138 317.598L486.046 317.644L485.953 317.688L485.859 317.732L485.763 317.776L485.667 317.818L485.569 317.86L485.47 317.901L485.37 317.941L485.269 317.98L485.167 318.019L485.064 318.057L484.959 318.094L484.854 318.13L484.747 318.166L484.639 318.2L484.531 318.234L484.421 318.267L484.31 318.299L484.198 318.331L484.085 318.361L483.971 318.391L483.856 318.419L483.74 318.447L483.623 318.474L483.505 318.501L483.387 318.526L483.267 318.55L483.146 318.574L483.024 318.596L482.901 318.618L482.778 318.638L482.653 318.658L482.528 318.677L482.402 318.695L482.274 318.712L482.146 318.728L482.017 318.743L481.888 318.757L481.757 318.77L481.626 318.782L481.493 318.793L481.36 318.803L481.227 318.812L481.092 318.821L480.957 318.828L480.821 318.834L480.684 318.839L480.546 318.843L480.408 318.846L480.269 318.849L480.13 318.85L479.989 318.85L479.848 318.849L479.707 318.847L479.565 318.844L479.422 318.84L479.279 318.834L479.135 318.828L478.99 318.821L478.845 318.813L478.699 318.803L478.553 318.793L478.407 318.781L478.259 318.769L478.112 318.755L477.964 318.741L477.815 318.725L477.666 318.708L477.517 318.69L477.367 318.671L477.217 318.651L477.067 318.63L476.916 318.607L476.764 318.584L476.613 318.56L476.461 318.534L476.309 318.508L476.157 318.48L476.004 318.451L475.851 318.421L475.698 318.39L475.545 318.358L475.391 318.325L475.238 318.29L475.084 318.255L474.93 318.219L474.776 318.181L474.621 318.142L474.467 318.103L474.313 318.062L474.158 318.02L474.004 317.977L473.85 317.933L473.695 317.887L473.541 317.841L473.386 317.794L473.232 317.745L473.078 317.696L472.924 317.645L472.769 317.593L472.615 317.541L472.462 317.487L472.308 317.432L472.155 317.376L472.001 317.319L471.848 317.26L471.695 317.201L471.543 317.141L471.39 317.08L471.238 317.017L471.087 316.954L470.935 316.889L470.784 316.824L470.634 316.757L470.483 316.69L470.333 316.621L470.184 316.551L470.035 316.481L469.886 316.409L469.738 316.336L469.59 316.263L469.443 316.188L469.296 316.112L469.15 316.035L469.005 315.958L468.86 315.879L468.715 315.799L468.571 315.719L468.428 315.637L468.286 315.555L468.144 315.471L468.003 315.387L467.862 315.301L467.723 315.215L467.584 315.128L467.445 315.039L467.308 314.95L467.171 314.86L467.036 314.769L466.901 314.678L466.766 314.585L466.633 314.491L466.501 314.397L466.369 314.302L466.239 314.205L466.109 314.108L465.98 314.011L465.852 313.912L465.726 313.812L465.6 313.712L465.475 313.611L465.352 313.509L465.229 313.406L465.107 313.303L464.987 313.199L464.868 313.094L464.749 312.988L464.632 312.881L464.516 312.774L464.402 312.666L464.288 312.557L464.176 312.448L464.065 312.338L463.955 312.227L463.846 312.116L463.739 312.003L463.633 311.891L463.528 311.777L463.424 311.663L463.322 311.549L463.221 311.433L463.122 311.317L463.024 311.201L462.927 311.084L462.832 310.966L462.738 310.848L462.646 310.729L462.555 310.61L462.466 310.49L462.378 310.37L462.291 310.249L462.206 310.128L462.123 310.006L462.041 309.884L461.961 309.761L461.882 309.638L461.805 309.515L461.729 309.391L461.655 309.266L461.583 309.141L461.512 309.016L461.443 308.891L461.376 308.765L461.31 308.639L461.246 308.512L461.184 308.385L461.123 308.258L461.064 308.131L461.007 308.003L460.951 307.875L460.898 307.747L460.846 307.618L460.796 307.49L460.747 307.361L460.701 307.232L460.656 307.103L460.613 306.973L460.572 306.844L460.533 306.714L460.495 306.584L460.46 306.454L460.426 306.324L460.394 306.194L460.364 306.064L460.336 305.933L460.31 305.803L460.286 305.673L460.263 305.542L460.243 305.412L460.225 305.281L460.208 305.151L460.193 305.021L460.181 304.891L460.17 304.76L460.162 304.63L460.155 304.5L460.15 304.371L460.147 304.241L460.147 304.111L460.148 303.982L460.151 303.853L460.157 303.723L460.164 303.595L460.173 303.466L460.185 303.337L460.198 303.209L460.214 303.081L460.231 302.954L460.251 302.826L460.272 302.699L460.296 302.572L460.321 302.446L460.349 302.32L460.379 302.194L460.411 302.069L460.445 301.944L460.481 301.819L460.519 301.695L460.559 301.572L460.601 301.448L460.646 301.326L460.692 301.203L460.741 301.082L460.791 300.96L460.844 300.84L460.898 300.719L460.955 300.6L461.014 300.481L461.075 300.362L461.138 300.244L461.203 300.127L461.27 300.01L461.339 299.894L461.411 299.779L461.484 299.664L461.56 299.55L461.637 299.436L461.717 299.324L461.798 299.212L461.882 299.101L461.968 298.99L462.055 298.88L462.145 298.772L462.237 298.663L462.331 298.556L462.427 298.45L462.525 298.344L462.625 298.239L462.727 298.135L462.831 298.032L462.937 297.93L463.045 297.829L463.155 297.728L463.267 297.629L463.381 297.53L463.497 297.433L463.615 297.336L463.734 297.241L463.856 297.146L463.98 297.052L464.106 296.96L464.233 296.868L464.363 296.778L464.494 296.688L464.627 296.6L464.763 296.513L464.9 296.426L465.039 296.341L465.18 296.257L465.322 296.175L465.467 296.093L465.613 296.012L465.761 295.933L465.911 295.855L466.063 295.778L466.217 295.702L466.372 295.627L466.529 295.554L466.688 295.482L466.848 295.411L467.011 295.341L467.175 295.273L467.34 295.206L467.508 295.14L467.677 295.075L467.847 295.012L468.02 294.95L468.194 294.889L468.369 294.83L468.547 294.772L468.725 294.716L468.906 294.661L469.088 294.607L469.271 294.554L469.456 294.503L469.642 294.454L469.83 294.405L470.02 294.359L470.211 294.313L470.403 294.269L470.597 294.227L470.792 294.186L470.988 294.146L471.186 294.108L471.385 294.072L471.586 294.036L471.788 294.003L471.991 293.971L472.196 293.94L472.402 293.911L472.609 293.883L472.817 293.857L473.026 293.833L473.237 293.81L473.449 293.788L473.662 293.768L473.876 293.75L474.091 293.733L474.307 293.718L474.524 293.704L474.743 293.692L474.962 293.682L475.183 293.673L475.404 293.666L475.626 293.66L475.85 293.656L476.074 293.654L476.299 293.653L476.525 293.654L476.752 293.656L476.98 293.66L477.208 293.666L477.437 293.673L477.668 293.682L477.898 293.692L478.13 293.705L478.362 293.718L478.595 293.734L478.829 293.751L479.063 293.77L479.298 293.79L479.533 293.812L479.769 293.836L480.005 293.862L480.242 293.889L480.48 293.917L480.718 293.948L480.956 293.98L481.195 294.014L481.434 294.049L481.674 294.086L481.914 294.125L482.154 294.165L482.394 294.207L482.635 294.251L482.876 294.296L483.117 294.343L483.359 294.392L483.6 294.442L483.842 294.494L484.084 294.548L484.326 294.603L484.568 294.66L484.81 294.719L485.052 294.779L485.294 294.841L485.536 294.905L485.778 294.97L486.02 295.037L486.262 295.105L486.503 295.175L486.745 295.247L486.986 295.32L487.227 295.395L487.468 295.472L487.709 295.55L487.949 295.63L488.189 295.711L488.428 295.794L488.668 295.879L488.906 295.965L489.145 296.053L489.383 296.142L489.62 296.233L489.857 296.326L490.094 296.42L490.33 296.515L490.565 296.612L490.8 296.711L491.034 296.811L491.267 296.913L491.5 297.016L491.732 297.121L491.963 297.227L492.194 297.335L492.423 297.444L492.652 297.554L492.88 297.667L493.108 297.78L493.334 297.895L493.559 298.012L493.784 298.13L494.007 298.249L494.23 298.37L494.451 298.492L494.672 298.616L494.891 298.741L495.109 298.867L495.326 298.995L495.542 299.124L495.757 299.254L495.971 299.386L496.183 299.519L496.394 299.653L496.604 299.789L496.812 299.926L497.02 300.064L497.225 300.203L497.43 300.344L497.633 300.486L497.835 300.629L498.035 300.774L498.234 300.919L498.431 301.066L498.627 301.214L498.821 301.364L499.013 301.514L499.204 301.665L499.394 301.818L499.582 301.972L499.768 302.126L499.952 302.282L500.135 302.439L500.316 302.597L500.495 302.756L500.673 302.917L500.848 303.078L501.022 303.24L501.194 303.403L501.364 303.567L501.532 303.732L501.699 303.898L501.863 304.065L502.026 304.233L502.186 304.401L502.345 304.571L502.501 304.741L502.656 304.913L502.808 305.085L502.958 305.258L503.106 305.431L503.253 305.606L503.397 305.781L503.538 305.957L503.678 306.134L503.815 306.311L503.951 306.489L504.084 306.668L504.214 306.848L504.343 307.028L504.469 307.208L504.593 307.39L504.714 307.572L504.834 307.754L504.95 307.937L505.065 308.121L505.177 308.305L505.287 308.49L505.394 308.675L505.499 308.86L505.601 309.046L505.701 309.233L505.798 309.42L505.893 309.607L505.986 309.795L506.075 309.983L506.163 310.171L506.247 310.359L506.33 310.548L506.409 310.738L506.486 310.927L506.56 311.117L506.632 311.307L506.701 311.497L506.767 311.687L506.831 311.877L506.892 312.068L506.95 312.259L507.006 312.45L507.059 312.64L507.109 312.831L507.157 313.022L507.201 313.213L507.243 313.404L507.282 313.596L507.319 313.786L507.352 313.977L507.383 314.168L507.411 314.359L507.436 314.55L507.459 314.74L507.478 314.93L507.495 315.121L507.509 315.31L507.52 315.5L507.528 315.69L507.533 315.879L507.535 316.068L507.535 316.257L507.531 316.445L507.525 316.633L507.516 316.82L507.504 317.008L507.489 317.195L507.471 317.381L507.45 317.567L507.426 317.753L507.399 317.938L507.37 318.122L507.337 318.306L507.302 318.49L507.263 318.673L507.222 318.855L507.178 319.037L507.131 319.218L507.081 319.398L507.027 319.578L506.971 319.757L506.912 319.936L506.851 320.113L506.786 320.29L506.718 320.466L506.647 320.642L506.574 320.816L506.497 320.99L506.418 321.163L506.335 321.335L506.25 321.506L506.162 321.677L506.07 321.846L505.976 322.014L505.879 322.182L505.779 322.348L505.676 322.514L505.571 322.678L505.462 322.842L505.351 323.004L505.236 323.166L505.119 323.326L504.999 323.485L504.876 323.643L504.75 323.8L504.621 323.955L504.49 324.11L504.356 324.263L504.218 324.415L504.078 324.566L503.936 324.716L503.79 324.864L503.642 325.011L503.491 325.157L503.337 325.301L503.18 325.444L503.021 325.586L502.859 325.726L502.694 325.865L502.526 326.002L502.356 326.138L502.183 326.273L502.008 326.406L501.83 326.537L501.649 326.668L501.465 326.796L501.279 326.923L501.09 327.049L500.899 327.173L500.705 327.295L500.509 327.416L500.31 327.535L500.109 327.653L499.905 327.768L499.698 327.883L499.489 327.995L499.278 328.106L499.064 328.215L498.848 328.323L498.629 328.429L498.408 328.533L498.185 328.635L497.959 328.735L497.731 328.834L497.5 328.931L497.268 329.026L497.033 329.119L496.796 329.211L496.556 329.3L496.315 329.388L496.071 329.474L495.825 329.557L495.577 329.639L495.326 329.72L495.074 329.798L494.82 329.874L494.563 329.948L494.305 330.021L494.044 330.091L493.781 330.159L493.517 330.226L493.25 330.29L492.982 330.353L492.712 330.413L492.44 330.471L492.166 330.527L491.89 330.582L491.612 330.634L491.333 330.684L491.052 330.732L490.769 330.778L490.485 330.822L490.199 330.863L489.911 330.903L489.621 330.94L489.33 330.976L489.038 331.009L488.744 331.04L488.448 331.069L488.151 331.096L487.853 331.12L487.553 331.143L487.252 331.163L486.949 331.181L486.645 331.197L486.34 331.211L486.033 331.222L485.725 331.231L485.416 331.238L485.106 331.243L484.795 331.246L484.482 331.246L484.169 331.244L483.854 331.24L483.538 331.234L483.222 331.225L482.904 331.215L482.586 331.202L482.266 331.186L481.946 331.169L481.625 331.149L481.303 331.127L480.98 331.103L480.656 331.076L480.332 331.047L480.007 331.016L479.681 330.983L479.355 330.948L479.028 330.91L478.701 330.87L478.373 330.827L478.045 330.783L477.716 330.736L477.387 330.687L477.057 330.635L476.727 330.582L476.397 330.526L476.066 330.468L475.735 330.407L475.404 330.344L475.073 330.28L474.741 330.212L474.41 330.143L474.078 330.071L473.746 329.998L473.415 329.921L473.083 329.843L472.751 329.763L472.42 329.68L472.088 329.595L471.757 329.508L471.426 329.418L471.095 329.327L470.764 329.233L470.434 329.137L470.104 329.039L469.774 328.939L469.445 328.836L469.116 328.732L468.788 328.625L468.46 328.516L468.133 328.405L467.806 328.292L467.48 328.176L467.154 328.059L466.829 327.94L466.505 327.818L466.182 327.694L465.859 327.568L465.537 327.441L465.216 327.311L464.896 327.179L464.577 327.045L464.259 326.909L463.941 326.771L463.625 326.631L463.31 326.489L462.996 326.345L462.683 326.199L462.371 326.051L462.06 325.901L461.751 325.749L461.443 325.595L461.136 325.439L460.83 325.282L460.526 325.122L460.223 324.961L459.922 324.798L459.622 324.633L459.323 324.466L459.026 324.297L458.731 324.127L458.437 323.954L458.145 323.78L457.854 323.605L457.565 323.427L457.278 323.248L456.993 323.067L456.709 322.884L456.428 322.7L456.148 322.514L455.87 322.326L455.594 322.136L455.319 321.946L455.047 321.753L454.777 321.559L454.509 321.363L454.243 321.166L453.979 320.967L453.717 320.767L453.457 320.565L453.2 320.362L452.944 320.157L452.691 319.951L452.441 319.743L452.192 319.535L451.946 319.324L451.702 319.112L451.461 318.899L451.222 318.685L450.986 318.469L450.752 318.252L450.52 318.034L450.291 317.815L450.065 317.594L449.841 317.372L449.62 317.149L449.401 316.925L449.185 316.7L448.972 316.473L448.762 316.246L448.554 316.017L448.349 315.787L448.147 315.557L447.948 315.325L447.752 315.092L447.558 314.859L447.368 314.624L447.18 314.388L446.995 314.152L446.813 313.915L446.635 313.677L446.459 313.438L446.286 313.198L446.117 312.957L445.95 312.716L445.787 312.474L445.626 312.231L445.469 311.988L445.315 311.744L445.165 311.499L445.017 311.254L444.873 311.008L444.732 310.761L444.594 310.514L444.459 310.267L444.328 310.019L444.2 309.77L444.076 309.521L443.955 309.272L443.837 309.022L443.723 308.772L443.612 308.522L443.505 308.271L443.401 308.02L443.3 307.769L443.203 307.517L443.11 307.265L443.02 307.013L442.933 306.761L442.85 306.509L442.771 306.256L442.695 306.004L442.623 305.751L442.554 305.499L442.489 305.246L442.428 304.994L442.37 304.741L442.316 304.489L442.266 304.236L442.219 303.984L442.176 303.732L442.137 303.48L442.101 303.228L442.069 302.977L442.041 302.726L442.017 302.475L441.996 302.224L441.979 301.974L441.966 301.724L441.956 301.474L441.951 301.225L441.949 300.976L441.951 300.728L441.956 300.48L441.966 300.233L441.979 299.986L441.996 299.74L442.017 299.494L442.041 299.249L442.07 299.005L442.102 298.761L442.138 298.518" stroke="url(#paint3_linear)"/>
+<ellipse cx="479.365" cy="309.891" rx="6.11022" ry="4.06551" transform="rotate(16.4647 479.365 309.891)" fill="white"/>
+<path d="M363.23 40.1783C394.359 75.8982 388.112 73.1051 425.96 89.9297C427.728 90.7158 427.494 93.3181 425.601 93.724L351.666 109.586C350.83 109.765 349.973 109.394 349.533 108.661L316.653 54.0116C315.967 52.8704 316.566 51.3895 317.853 51.0476L361.188 39.5348C361.924 39.3393 362.73 39.6043 363.23 40.1783Z" fill="white" stroke="black"/>
+<path d="M282.047 124.476C282.047 124.476 291.772 99.8309 308.88 118.521C312.204 122.111 322.035 135.515 328.719 133.931C328.719 133.931 317.126 145.086 306.622 133.517C295.865 121.627 286.26 119.849 282.047 124.476Z" fill="#ED1C24"/>
+<path d="M306.641 112.233C306.641 112.233 317.305 102.197 322.474 117.43C322.932 118.937 326.073 130.06 330.296 132.37C330.296 132.37 323.848 133.219 318.475 124.63C313.107 116.073 311.525 112.447 306.641 112.233Z" fill="#ED1C24"/>
+<path d="M299.312 145.221C287.671 137.383 281.032 135.787 273.737 141.276C273.737 141.276 279.762 110.86 304.061 135.677C312.748 144.553 319.568 141.657 319.824 141.613C318.463 143.467 310.952 153.058 299.312 145.221Z" fill="#ED1C24"/>
+<path d="M313.548 87.0669C313.548 87.0669 319.535 77.2775 325.44 86.528C326.591 88.3076 329.785 94.7598 332.755 94.5828C332.755 94.5828 326.977 98.4772 323.358 92.7575C319.656 86.8824 315.69 85.4072 313.548 87.0669Z" fill="#ED1C24"/>
+<path d="M324.953 83.6783C324.953 83.6783 330.252 80.1918 331.321 87.0767C331.404 87.7539 331.914 92.7336 333.544 94.0346C333.544 94.0346 330.73 93.9158 329.078 89.8504C327.426 85.7991 327.021 84.134 324.953 83.6783Z" fill="#ED1C24"/>
+<path d="M319.366 97.206C314.984 92.9937 312.271 91.8173 308.749 93.6151C308.749 93.6151 313.588 81.0872 322.104 93.4884C325.149 97.9234 328.274 97.1967 328.387 97.1969C327.668 97.8865 323.748 101.418 319.366 97.206Z" fill="#ED1C24"/>
+<path d="M315.202 70.696C315.202 70.696 319.659 63.4093 324.055 70.2949C324.911 71.6195 327.289 76.4223 329.499 76.2905C329.499 76.2905 325.198 79.1893 322.505 74.9318C319.749 70.5587 316.797 69.4607 315.202 70.696Z" fill="#ED1C24"/>
+<path d="M323.693 68.1737C323.693 68.1737 327.637 65.5786 328.432 70.7034C328.494 71.2074 328.874 74.9141 330.087 75.8825C330.087 75.8825 327.992 75.794 326.762 72.7679C325.533 69.7524 325.232 68.5129 323.693 68.1737Z" fill="#ED1C24"/>
+<path d="M319.533 78.2431C316.271 75.1077 314.252 74.2321 311.63 75.5703C311.63 75.5703 315.232 66.2451 321.571 75.476C323.837 78.7772 326.164 78.2362 326.248 78.2364C325.712 78.7497 322.795 81.3785 319.533 78.2431Z" fill="#ED1C24"/>
+<path d="M363.178 47.947L357.468 49.464L350.506 42.7496L356.494 41.1588L363.178 47.947Z" fill="#C4C4C4"/>
+<path d="M353.113 50.6211L347.403 52.1381L340.442 45.4237L346.43 43.8329L353.113 50.6211Z" fill="#C4C4C4"/>
+<path d="M343.049 53.2947L337.339 54.8117L330.377 48.0973L336.365 46.5064L343.049 53.2947Z" fill="#C4C4C4"/>
+<path d="M332.984 55.9685L327.274 57.4855L320.313 50.7711L326.301 49.1803L332.984 55.9685Z" fill="#C4C4C4"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M370.8 120.518L370.797 120.518C369.579 116.388 365.323 113.935 361.133 114.96L361.133 114.957C365.317 113.757 367.802 109.446 366.734 105.218L366.738 105.217C367.955 109.348 372.212 111.801 376.401 110.776L376.402 110.779C372.218 111.979 369.733 116.29 370.8 120.518Z" fill="white"/>
+<path d="M323.943 66.4281C334.37 61.7656 346.524 59.0106 359.85 60.7583C359.85 60.7583 366.954 61.5308 367.281 62.7634C367.609 63.9959 361.897 68.4637 361.897 68.4637C351.356 76.5938 339.079 80.3351 327.911 81.3628C324.279 80.0328 321.742 69.2615 323.943 66.4281Z" fill="white" stroke="black"/>
+<path d="M326.024 79.381C341.121 72.6306 358.718 68.642 378.011 71.1724C378.011 71.1724 388.295 72.2907 388.769 74.0752C389.244 75.8597 380.975 82.3282 380.975 82.3282C365.712 94.099 347.938 99.5156 331.769 101.003C326.511 99.0779 322.837 83.4833 326.024 79.381Z" fill="white" stroke="black"/>
+<path d="M328.872 138.081C322.463 129.311 318.387 116.123 319.698 103.451C319.92 101.305 321.531 99.6021 323.617 99.048C326.601 98.2551 329.664 100.032 330.457 103.016L338.419 132.989C339.22 136.003 337.426 139.095 334.412 139.896C332.351 140.444 330.13 139.803 328.872 138.081Z" fill="white" stroke="black"/>
+<path d="M333.289 134.225C326.625 125.895 322.665 113.306 324.481 100.98C324.824 98.652 326.63 96.861 328.904 96.2568C332.345 95.3426 335.875 97.3909 336.79 100.832L344.03 128.086C344.954 131.563 342.884 135.131 339.406 136.055C337.164 136.651 334.739 136.037 333.289 134.225Z" fill="white" stroke="black"/>
+<path d="M340.574 221.204L342.971 217.222L386.688 206.547L382.964 211.211L340.574 221.204Z" fill="white" stroke="black" stroke-linejoin="round"/>
+<path d="M335.404 87.1796C374.218 69.8245 419.458 59.5698 469.061 66.0753C469.061 66.0753 495.502 68.9506 496.721 73.5385C497.94 78.1263 476.681 94.7566 476.681 94.7566C437.442 125.019 391.744 138.945 350.173 142.77C336.657 137.82 327.211 97.7264 335.404 87.1796Z" fill="white" stroke="black"/>
+<path d="M451.189 73.1592L417.065 81.3986C413.271 82.3147 409.827 84.3211 407.16 87.1703L368.107 128.879" stroke="#C4C4C4" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M450.712 67.9327L414.664 76.7481C411.616 77.4935 408.436 77.5113 405.38 76.8L383.008 71.5934" stroke="#C4C4C4" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M463.766 70.9855C465.527 75.1833 464.454 83.8398 463.011 86.6643C462.715 87.2426 462.112 87.5334 461.484 87.7001L450.069 90.7327C451.762 89.4511 454.341 78.6128 451.591 71.9168C448.768 65.0423 441.778 64.1378 439.982 64.0725L454.672 64.6069C454.725 64.6088 454.777 64.615 454.829 64.6247C457.233 65.0701 460.996 64.3819 463.766 70.9855Z" fill="white"/>
+<path d="M463.011 86.6643L462.565 86.4368L463.011 86.6643ZM463.766 70.9855L464.227 70.7921L463.766 70.9855ZM454.829 64.6247L454.92 64.133L454.92 64.133L454.829 64.6247ZM450.069 90.7327L449.767 90.3341C449.577 90.4783 449.515 90.7372 449.62 90.9519C449.725 91.1667 449.967 91.2773 450.198 91.2159L450.069 90.7327ZM451.591 71.9168L452.054 71.7268L451.591 71.9168ZM454.672 64.6069L454.69 64.1072L454.672 64.6069ZM463.456 86.8918C464.224 85.3893 464.858 82.4384 465.088 79.3773C465.318 76.316 465.155 73.004 464.227 70.7921L463.305 71.1789C464.138 73.1648 464.318 76.2799 464.091 79.3024C463.864 82.3251 463.241 85.1148 462.565 86.4368L463.456 86.8918ZM464.227 70.7921C462.806 67.4036 461.095 65.8122 459.364 65.0392C458.51 64.6577 457.676 64.4871 456.919 64.3825C456.542 64.3306 456.177 64.294 455.844 64.2579C455.506 64.2213 455.201 64.185 454.92 64.133L454.738 65.1163C455.059 65.1757 455.397 65.2153 455.736 65.2521C456.08 65.2894 456.424 65.3238 456.782 65.3731C457.493 65.4712 458.223 65.6247 458.956 65.9523C460.401 66.5974 461.956 67.9638 463.305 71.1789L464.227 70.7921ZM450.371 91.1313C450.673 90.9025 450.94 90.5117 451.176 90.0635C451.419 89.6007 451.658 89.0196 451.882 88.3528C452.33 87.018 452.731 85.303 452.991 83.4236C453.509 79.6802 453.477 75.1937 452.054 71.7268L451.129 72.1067C452.454 75.3359 452.508 79.6165 452.001 83.2866C451.748 85.1141 451.359 86.7674 450.934 88.0345C450.721 88.6686 450.502 89.1969 450.291 89.5982C450.072 90.0142 449.888 90.2425 449.767 90.3341L450.371 91.1313ZM452.054 71.7268C449.112 64.5636 441.842 63.6398 440 63.5728L439.964 64.5722C441.715 64.6359 448.424 65.5209 451.129 72.1067L452.054 71.7268ZM439.964 64.5722L454.653 65.1065L454.69 64.1072L440 63.5728L439.964 64.5722ZM461.356 87.2169L449.941 90.2495L450.198 91.2159L461.612 88.1834L461.356 87.2169ZM454.92 64.133C454.847 64.1194 454.77 64.1101 454.69 64.1072L454.653 65.1065C454.679 65.1075 454.707 65.1105 454.738 65.1163L454.92 64.133ZM462.565 86.4368C462.369 86.8204 461.944 87.0606 461.356 87.2169L461.612 88.1834C462.279 88.0061 463.061 87.6647 463.456 86.8918L462.565 86.4368Z" fill="black"/>
+<path d="M385.024 88.6761C385.629 90.7307 385.063 92.961 383.578 94.922C382.094 96.8829 379.71 98.5429 376.769 99.4086C373.828 100.274 370.925 100.17 368.615 99.3263C366.305 98.4821 364.621 96.9143 364.016 94.8597C363.411 92.8052 363.978 90.5748 365.462 88.6138C366.946 86.653 369.33 84.9929 372.271 84.1273C375.212 83.2617 378.115 83.3655 380.425 84.2096C382.735 85.0538 384.42 86.6216 385.024 88.6761Z" fill="white" stroke="black"/>
+<path d="M381.053 89.8453C381.419 91.0889 381.081 92.4543 380.159 93.6724C379.237 94.8903 377.749 95.9294 375.905 96.4723C374.061 97.0151 372.247 96.9476 370.813 96.4233C369.378 95.899 368.354 94.9344 367.988 93.6907C367.622 92.447 367.96 91.0816 368.882 89.8635C369.804 88.6456 371.292 87.6065 373.136 87.0637C374.98 86.5209 376.793 86.5883 378.228 87.1126C379.663 87.637 380.687 88.6016 381.053 89.8453Z" fill="white" stroke="black"/>
+<path d="M341.395 134.551C359.052 131.242 384.553 125.802 418.021 111.091C400.733 156.802 393.274 173.828 387.021 206.465L342.941 217.499L341.395 134.551Z" fill="white" stroke="black" stroke-linejoin="round"/>
+<path d="M318.923 146.623C318.923 146.623 325.617 135.68 332.217 146.021C333.503 148.01 337.074 155.222 340.394 155.024C340.394 155.024 333.935 159.378 329.89 152.984C325.751 146.417 321.318 144.768 318.923 146.623Z" fill="#ED1C24"/>
+<path d="M331.673 142.835C331.673 142.835 337.597 138.938 338.791 146.634C338.884 147.391 339.454 152.957 341.276 154.412C341.276 154.412 338.13 154.279 336.284 149.735C334.437 145.206 333.985 143.345 331.673 142.835Z" fill="#ED1C24"/>
+<path d="M325.428 157.957C320.53 153.248 317.496 151.933 313.559 153.943C313.559 153.943 318.969 139.939 328.488 153.801C331.891 158.759 335.385 157.946 335.511 157.946C334.707 158.717 330.326 162.665 325.428 157.957Z" fill="#ED1C24"/>
+<path d="M316.302 170.298C316.302 170.298 323.007 159.335 329.62 169.695C330.908 171.688 334.486 178.913 337.812 178.715C337.812 178.715 331.341 183.076 327.288 176.671C323.142 170.092 318.701 168.44 316.302 170.298Z" fill="#ED1C24"/>
+<path d="M329.075 166.504C329.075 166.504 335.009 162.599 336.206 170.309C336.299 171.068 336.871 176.644 338.696 178.101C338.696 178.101 335.544 177.968 333.694 173.415C331.844 168.879 331.391 167.014 329.075 166.504Z" fill="#ED1C24"/>
+<path d="M322.817 181.653C317.91 176.936 314.871 175.618 310.927 177.632C310.927 177.632 316.347 163.602 325.884 177.49C329.293 182.456 332.793 181.643 332.919 181.643C332.114 182.415 327.724 186.37 322.817 181.653Z" fill="#ED1C24"/>
+<path d="M333.03 133.788C349.924 126.234 369.615 121.771 391.205 124.603C391.205 124.603 402.714 125.854 403.245 127.851C403.775 129.848 394.522 137.086 394.522 137.086C377.443 150.258 357.553 156.32 339.459 157.985C333.575 155.83 329.464 138.379 333.03 133.788Z" fill="white" stroke="black"/>
+<path d="M333.91 159.452C347.495 153.378 363.329 149.789 380.689 152.066C380.689 152.066 389.943 153.072 390.37 154.678C390.797 156.284 383.356 162.104 383.356 162.104C369.623 172.696 353.629 177.57 339.079 178.909C334.348 177.176 331.042 163.144 333.91 159.452Z" fill="white" stroke="black"/>
+<path d="M385.9 194.588L380.19 196.105L378.193 208.078L384.181 206.487L385.9 194.588Z" fill="#C4C4C4"/>
+<path d="M375.836 197.262L370.126 198.779L368.129 210.752L374.117 209.161L375.836 197.262Z" fill="#C4C4C4"/>
+<path d="M365.771 199.936L360.061 201.453L358.064 213.425L364.052 211.835L365.771 199.936Z" fill="#C4C4C4"/>
+<path d="M355.707 202.609L349.997 204.126L348 216.099L353.988 214.508L355.707 202.609Z" fill="#C4C4C4"/>
+<path d="M218.458 228.239L338.187 196.327" stroke="url(#paint4_radial)"/>
+<path d="M201.446 135.016L321.174 103.104" stroke="url(#paint5_radial)"/>
+<path d="M207.496 140.555L327.224 108.643" stroke="url(#paint6_radial)"/>
+<path d="M207.27 221.699L326.998 189.788" stroke="url(#paint7_radial)"/>
+<defs>
+<linearGradient id="paint0_linear" x1="95.1269" y1="254.197" x2="281.368" y2="289.86" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint1_linear" x1="136.734" y1="252.216" x2="43.6134" y2="123.432" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint2_linear" x1="473.246" y1="307.182" x2="509.739" y2="333.019" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint3_linear" x1="482.37" y1="310.819" x2="474.956" y2="274.085" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<radialGradient id="paint4_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(278.322 212.283) rotate(40.1532) scale(35.4665 50.7979)">
+<stop stop-color="#ED1C24" stop-opacity="0.78"/>
+<stop offset="1" stop-color="#ED1C24" stop-opacity="0"/>
+</radialGradient>
+<radialGradient id="paint5_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(261.31 119.06) rotate(40.1532) scale(35.4665 50.7979)">
+<stop stop-color="#ED1C24" stop-opacity="0.78"/>
+<stop offset="1" stop-color="#ED1C24" stop-opacity="0"/>
+</radialGradient>
+<radialGradient id="paint6_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(267.36 124.599) rotate(40.1532) scale(35.4665 50.7979)">
+<stop stop-color="#ED1C24" stop-opacity="0.78"/>
+<stop offset="1" stop-color="#ED1C24" stop-opacity="0"/>
+</radialGradient>
+<radialGradient id="paint7_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(267.134 205.743) rotate(40.1532) scale(35.4665 50.7979)">
+<stop stop-color="#ED1C24" stop-opacity="0.78"/>
+<stop offset="1" stop-color="#ED1C24" stop-opacity="0"/>
+</radialGradient>
+</defs>
+</svg>
diff --git a/public/img/community/b4-img.svg b/public/img/community/b4-img.svg
new file mode 100644
index 0000000..c0de693
--- /dev/null
+++ b/public/img/community/b4-img.svg
@@ -0,0 +1,101 @@
+<svg width="604" height="350" viewBox="0 0 604 350" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M578.063 115.04C574.76 110.182 575.926 114.201 578.063 123.335C579.708 130.361 580.931 134.369 583.369 135.577L585.33 156.95L599.244 153.004L597.717 135.577C600.891 134.268 601.698 113.945 601.97 103.947C601.037 100.838 598.225 109.667 597.188 114.59C597.512 109.926 598.079 98.6281 596.524 97.54C594.97 96.4519 593.35 109.02 593.221 114.59C592.897 108.372 591.899 95.624 590.5 94.3804C589.101 93.1367 589.01 107.335 589.14 114.59C588.492 108.372 586.885 94.2278 585.33 96.8706C583.387 100.174 585.059 120.809 584.087 123.335C583.116 125.861 581.367 119.898 578.063 115.04Z" fill="white"/>
+<path d="M587.197 135.577C587.107 135.537 583.466 135.625 583.369 135.577M583.369 135.577C580.931 134.369 579.708 130.361 578.063 123.335C575.926 114.201 574.76 110.182 578.063 115.04C581.367 119.898 583.116 125.861 584.087 123.335C585.059 120.809 583.387 100.174 585.33 96.8706C586.885 94.2278 588.492 108.372 589.14 114.59C589.01 107.335 589.101 93.1367 590.5 94.3804C591.899 95.624 592.897 108.372 593.221 114.59C593.35 109.02 594.97 96.4519 596.524 97.54C598.079 98.6281 597.512 109.926 597.188 114.59C598.225 109.667 601.037 100.838 601.97 103.947C601.698 113.945 600.891 134.268 597.717 135.577L599.244 153.004L585.33 156.95L583.369 135.577Z" stroke="#2D2D2D" stroke-linejoin="round"/>
+<rect x="254.545" y="69.0718" width="255.632" height="107.125" rx="10.5" stroke="#ED1C24"/>
+<rect x="486.849" y="29.9055" width="67.3812" height="59.7048" rx="8" fill="#2D2D2D"/>
+<path d="M532.644 51.4314L541.214 60.0016L532.644 68.5716" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M508.27 68.4216L499.7 59.8514L508.27 51.2815" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M516.41 71.2688L524.933 48.6387" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M282.136 15.9473H354.98C357.189 15.9473 358.98 17.7381 358.98 19.9473V68.4215" stroke="#ED1C24" stroke-linecap="round" stroke-linejoin="round"/>
+<mask id="path-9-inside-1" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M332.584 84.0912H332.699V83.0941C332.699 83.0876 332.699 83.0811 332.699 83.0746C332.699 83.068 332.699 83.0615 332.699 83.055V46.6599H301.006V84.0912H301.121C302.067 88.2548 308.749 91.4815 316.852 91.4815C324.956 91.4815 331.638 88.2548 332.584 84.0912Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M332.584 84.0912H332.699V83.0941C332.699 83.0876 332.699 83.0811 332.699 83.0746C332.699 83.068 332.699 83.0615 332.699 83.055V46.6599H301.006V84.0912H301.121C302.067 88.2548 308.749 91.4815 316.852 91.4815C324.956 91.4815 331.638 88.2548 332.584 84.0912Z" fill="white"/>
+<path d="M332.699 84.0912V85.0912H333.699V84.0912H332.699ZM332.584 84.0912V83.0912H331.786L331.609 83.8697L332.584 84.0912ZM332.699 83.0941L331.699 83.0897V83.0941H332.699ZM332.699 83.055H331.699L331.699 83.0594L332.699 83.055ZM332.699 46.6599H333.699V45.6599H332.699V46.6599ZM301.006 46.6599V45.6599H300.006V46.6599H301.006ZM301.006 84.0912H300.006V85.0912H301.006V84.0912ZM301.121 84.0912L302.096 83.8697L301.919 83.0912H301.121V84.0912ZM332.699 83.0912H332.584V85.0912H332.699V83.0912ZM331.699 83.0941V84.0912H333.699V83.0941H331.699ZM331.699 83.0746C331.699 83.0797 331.699 83.0848 331.699 83.0897L333.699 83.0985C333.699 83.0904 333.699 83.0824 333.699 83.0746H331.699ZM331.699 83.0594C331.699 83.0644 331.699 83.0694 331.699 83.0746H333.699C333.699 83.0667 333.699 83.0587 333.699 83.0506L331.699 83.0594ZM331.699 46.6599V83.055H333.699V46.6599H331.699ZM301.006 47.6599H332.699V45.6599H301.006V47.6599ZM302.006 84.0912V46.6599H300.006V84.0912H302.006ZM301.121 83.0912H301.006V85.0912H301.121V83.0912ZM316.852 90.4815C312.924 90.4815 309.378 89.6978 306.731 88.444C304.045 87.1719 302.469 85.5132 302.096 83.8697L300.145 84.3128C300.718 86.8329 302.956 88.8693 305.874 90.2515C308.831 91.6519 312.678 92.4815 316.852 92.4815V90.4815ZM331.609 83.8697C331.236 85.5132 329.66 87.1719 326.974 88.444C324.327 89.6978 320.781 90.4815 316.852 90.4815V92.4815C321.027 92.4815 324.874 91.6519 327.83 90.2515C330.748 88.8693 332.987 86.8329 333.56 84.3128L331.609 83.8697Z" fill="#ED1C24" mask="url(#path-9-inside-1)"/>
+<path d="M332.11 71.5608C332.11 75.6722 325.296 79.0052 316.89 79.0052C308.484 79.0052 301.67 75.6722 301.67 71.5608" stroke="#ED1C24"/>
+<path d="M332.073 59.3982C332.073 63.5096 325.258 66.8426 316.852 66.8426C308.447 66.8426 301.632 63.5096 301.632 59.3982" stroke="#ED1C24"/>
+<path d="M332.199 46.9861C332.199 48.9488 330.639 50.8525 327.829 52.2953C325.046 53.7247 321.166 54.6235 316.852 54.6235C312.539 54.6235 308.659 53.7247 305.876 52.2953C303.066 50.8525 301.506 48.9488 301.506 46.9861C301.506 45.0234 303.066 43.1196 305.876 41.6768C308.659 40.2475 312.539 39.3486 316.852 39.3486C321.166 39.3486 325.046 40.2475 327.829 41.6768C330.639 43.1196 332.199 45.0234 332.199 46.9861Z" fill="white" stroke="#ED1C24"/>
+<circle cx="153.374" cy="21.3117" r="3.37247" fill="#2D2D2D"/>
+<circle cx="153.374" cy="56.3854" r="3.37247" fill="#2D2D2D"/>
+<circle cx="153.374" cy="3.77482" r="3.37247" fill="#2D2D2D"/>
+<circle cx="153.374" cy="38.8485" r="3.37247" fill="#2D2D2D"/>
+<circle cx="170.911" cy="21.3117" r="3.37247" fill="#2D2D2D"/>
+<circle cx="170.911" cy="56.3854" r="3.37247" fill="#2D2D2D"/>
+<circle cx="170.911" cy="3.77482" r="3.37247" fill="#2D2D2D"/>
+<circle cx="170.911" cy="38.8485" r="3.37247" fill="#2D2D2D"/>
+<circle cx="188.448" cy="21.3117" r="3.37247" fill="#2D2D2D"/>
+<circle cx="188.448" cy="56.3854" r="3.37247" fill="#2D2D2D"/>
+<circle cx="188.448" cy="3.77482" r="3.37247" fill="#2D2D2D"/>
+<circle cx="188.448" cy="38.8485" r="3.37247" fill="#2D2D2D"/>
+<circle cx="205.985" cy="21.3117" r="3.37247" fill="#2D2D2D"/>
+<circle cx="205.985" cy="56.3854" r="3.37247" fill="#2D2D2D"/>
+<circle cx="205.985" cy="3.77482" r="3.37247" fill="#2D2D2D"/>
+<circle cx="205.985" cy="38.8485" r="3.37247" fill="#2D2D2D"/>
+<path d="M142.628 112.816V121.952C142.628 124.161 144.419 125.952 146.628 125.952H254.283" stroke="#ED1C24" stroke-linecap="round" stroke-linejoin="round"/>
+<circle cx="276.225" cy="15.4006" r="5.91113" fill="#2D2D2D"/>
+<rect x="95.0474" y="28.7246" width="85.4813" height="83.92" rx="5.5" fill="white" stroke="#ED1C24"/>
+<path d="M108.08 51.0295H168.617" stroke="#ED1C24" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M108.351 65.3245H168.888" stroke="#ED1C24" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M108.351 79.6191H168.888" stroke="#ED1C24" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M108.351 93.9141H168.888" stroke="#ED1C24" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M421.688 334.918C404.923 332.768 395.001 302.141 392.135 287.095L386.224 254.318L410.404 250.02C412.016 253.602 412.737 267.853 415.24 282.259C418.157 299.05 423.411 307.22 427.531 311.339L467.361 319.872V334.918C459.122 335.813 438.452 337.067 421.688 334.918Z" fill="#FBD7D9" stroke="#2D2D2D"/>
+<path d="M568.032 196.682C555.993 222.687 543.588 222.687 525.393 222.687H487.938L479.425 225.465C479.425 225.465 435.695 222.924 420.979 236.569C406.262 250.213 358.894 256.207 358.894 256.207L358.894 292.626L429.471 282.743L435.035 348.586H531.747C528.878 322.622 529.035 320.541 525.393 273.721C544.117 273.721 572.713 257.013 586.756 243.49C607.559 215.925 601.838 201.03 601.838 141.032L581.035 141.032C581.035 141.032 577.955 175.25 568.032 196.682Z" fill="#F3F3F3" stroke="#2D2D2D"/>
+<path d="M229.42 241.427L304.208 236.507C307.751 236.507 313.229 257.5 315.525 267.997L183.662 261.6V244.871L229.42 241.427Z" fill="#FBD7D9" stroke="#2D2D2D"/>
+<path d="M338.165 249.326L347.255 225.774V221.642H366.676V261.309C352.462 263.293 339.956 254.422 338.165 249.326Z" fill="#FBD7D9" stroke="#2D2D2D"/>
+<path d="M310.219 323.553C286.6 324.768 258.087 290.808 249.425 276.584C253.31 262.283 270.57 234.35 280.229 257.784C289.888 281.219 318.914 301.056 355.572 298.601L355.339 315.134C350.14 317.435 333.838 322.339 310.219 323.553Z" fill="white" stroke="#2D2D2D"/>
+<path d="M26.8623 184.392C26.3018 205.867 21.262 251.284 95.1638 271.061L170.107 271.061L178.434 233.589L109.788 239.432C81.1024 234.721 54.5163 218.438 48.4325 171.594C53.9457 167.475 64.8706 158.963 64.4645 157.862C63.9568 156.487 55.5445 160.373 52.6853 162.366C49.8261 164.359 62.2601 139.608 61.9186 137.624C61.6455 136.037 58.2198 141.362 57.1297 143.067C44.284 163.156 59.9813 138.558 58.7761 138.002C57.5708 137.447 48.1712 150.572 47.1538 148.521C48.0634 143.575 65.6835 133.886 50.4035 140.057C35.1235 146.228 27.1601 172.98 26.8623 184.392Z" fill="white" stroke="#2D2D2D"/>
+<path d="M80.4711 264.321C91.9806 262.951 92.1538 247.983 92.3821 238.392H115.367L121.748 264.321C127.828 264.936 139.721 284.767 142.205 289.371C155.649 314.292 153.946 335.657 158.586 335.657C174.827 335.657 203.461 324.074 221.701 317.73L220.025 329.372C203.9 340.739 194.815 348.555 154.661 348.555H134.05C133.634 341.994 133.054 330.323 127.508 308.753C117.438 269.589 79.6969 294.529 71.3399 305.566L72.3056 348.555H52.0942C47.7819 310.428 50.45 305.164 52.0942 297.217C54.1495 287.283 66.0841 266.034 80.4711 264.321Z" fill="white" stroke="#2D2D2D"/>
+<path d="M134.018 289.214L141.438 235.506L183.344 227.712L209.599 225.315C223.432 225.316 234.381 225.615 245.525 225.316C276.065 229.616 287.978 265.065 302.725 279.33L271.473 310.45L258.853 298.431L267.026 347.68L163.246 347.862V285.643L134.018 289.214Z" fill="#2D2D2D" stroke="#2D2D2D"/>
+<path d="M79.5467 220.324C59.8842 182.92 85.3741 164.56 116.381 173.803L96.6739 227L94.7316 269.395L92.2403 269.395L71.1131 272.112L53.7352 274.348C52.2718 262.971 79.5467 220.324 79.5467 220.324Z" fill="#BD202E"/>
+<mask id="path-46-inside-2" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M102.079 175.051C115.285 173.352 127.25 182.987 128.408 196.251L130.272 217.614C131.5 231.693 119.517 243.363 105.476 241.763C95.7479 240.654 87.874 233.343 86.0485 223.724L85.2998 219.779L80.5942 219.621C77.7222 219.524 75.4493 216.802 75.833 213.918C76.2126 211.065 79.0157 209.406 81.7425 210.421L83.6594 211.135L82.0502 202.656C79.5354 189.404 88.7011 176.771 102.079 175.051Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M102.079 175.051C115.285 173.352 127.25 182.987 128.408 196.251L130.272 217.614C131.5 231.693 119.517 243.363 105.476 241.763C95.7479 240.654 87.874 233.343 86.0485 223.724L85.2998 219.779L80.5942 219.621C77.7222 219.524 75.4493 216.802 75.833 213.918C76.2126 211.065 79.0157 209.406 81.7425 210.421L83.6594 211.135L82.0502 202.656C79.5354 189.404 88.7011 176.771 102.079 175.051Z" fill="white"/>
+<path d="M128.408 196.251L127.412 196.338L128.408 196.251ZM130.272 217.614L131.268 217.527L130.272 217.614ZM105.476 241.763L105.363 242.757L105.476 241.763ZM86.0485 223.724L85.066 223.91L86.0485 223.724ZM85.2998 219.779L85.3334 218.779L86.1331 218.806L86.2823 219.592L85.2998 219.779ZM80.5942 219.621L80.6278 218.621L80.5942 219.621ZM75.833 213.918L74.8417 213.786L74.8417 213.786L75.833 213.918ZM81.7425 210.421L81.3937 211.359L81.7425 210.421ZM83.6594 211.135L84.6418 210.948L84.9725 212.691L83.3105 212.072L83.6594 211.135ZM82.0502 202.656L81.0678 202.842L82.0502 202.656ZM127.412 196.338C126.304 183.64 114.849 174.416 102.207 176.042L101.951 174.059C115.721 172.288 128.197 182.333 129.404 196.164L127.412 196.338ZM129.276 217.701L127.412 196.338L129.404 196.164L131.268 217.527L129.276 217.701ZM105.589 240.769C119.002 242.298 130.449 231.15 129.276 217.701L131.268 217.527C132.551 232.236 120.032 244.428 105.363 242.757L105.589 240.769ZM87.031 223.538C88.7748 232.726 96.2964 239.711 105.589 240.769L105.363 242.757C95.1995 241.598 86.9732 233.96 85.066 223.91L87.031 223.538ZM86.2823 219.592L87.031 223.538L85.066 223.91L84.3173 219.965L86.2823 219.592ZM80.6278 218.621L85.3334 218.779L85.2662 220.778L80.5606 220.62L80.6278 218.621ZM76.8242 214.05C76.5167 216.361 78.3601 218.545 80.6278 218.621L80.5606 220.62C77.0843 220.503 74.3818 217.242 74.8417 213.786L76.8242 214.05ZM81.3937 211.359C79.2549 210.562 77.1173 211.848 76.8242 214.05L74.8417 213.786C75.3079 210.282 78.7766 208.25 82.0913 209.484L81.3937 211.359ZM83.3105 212.072L81.3937 211.359L82.0913 209.484L84.0082 210.198L83.3105 212.072ZM83.0327 202.469L84.6418 210.948L82.6769 211.321L81.0678 202.842L83.0327 202.469ZM102.207 176.042C89.3996 177.69 80.6252 189.783 83.0327 202.469L81.0678 202.842C78.4456 189.025 88.0025 175.853 101.951 174.059L102.207 176.042Z" fill="#2D2D2D" mask="url(#path-46-inside-2)"/>
+<path d="M112.186 174.288C114.938 185.887 112.255 209.332 81.6322 207.959C75.2852 197.727 79.1912 171.329 112.186 174.288Z" fill="#BD202E"/>
+<path d="M109.749 174.271C111.57 181.202 119.581 194.98 129.847 195.57C134.369 191.331 127.897 169.329 109.749 174.271Z" fill="#BD202E"/>
+<circle cx="333.472" cy="203" r="6.65969" fill="#FBD7D9" stroke="#2D2D2D"/>
+<circle cx="385.236" cy="205.767" r="6.65969" fill="#FBD7D9" stroke="#2D2D2D"/>
+<path d="M384.736 192.922C384.736 201.416 381.87 210.624 377.237 217.7C372.596 224.789 366.258 229.632 359.354 229.632C352.451 229.632 346.113 224.789 341.471 217.7C336.839 210.624 333.972 201.416 333.972 192.922C333.972 175.916 345.419 162.294 359.354 162.294C373.29 162.294 384.736 175.916 384.736 192.922Z" fill="#FBD7D9" stroke="#2D2D2D"/>
+<path d="M360.405 184.173C348.304 184.173 338.2 190.71 332.763 191.512C328.737 161.853 351.617 158.749 365.45 160.007C385.791 161.856 386.551 184.384 385.791 191.512C382.625 190.507 376.973 185.546 367.694 184.173C367.694 184.173 365.844 171.516 364.235 171.391C362.247 171.236 360.405 184.173 360.405 184.173Z" fill="#2D2D2D" stroke="#2D2D2D"/>
+<circle cx="359.354" cy="153.697" r="13.7242" fill="#2D2D2D"/>
+<circle cx="356.997" cy="133.111" r="6.86212" fill="#2D2D2D"/>
+<path d="M107.638 180.453C109.075 186.427 106.244 199.733 83.4335 205.16" stroke="#ED1C24"/>
+<path d="M83.4409 205.086L82.914 211.048" stroke="#ED1C24"/>
+<path d="M82.664 204.369L81.7006 210.726" stroke="#ED1C24"/>
+<path d="M81.5698 220.094L76.767 271.024" stroke="#ED1C24"/>
+<path d="M83.4062 220.525L83.0617 269.769" stroke="#ED1C24"/>
+<path d="M106.064 176.87C105.762 184.33 100.616 200.279 82.4448 204.397" stroke="#ED1C24"/>
+<path d="M337.636 234.994C330.424 229.785 298.548 234.391 287.864 236.561L301.937 275.404L310.592 278.064L314.973 348.659H396.733V306.611L423.315 295.582C420.644 287.903 412.829 268.334 408.422 259.119C402.913 247.6 390.326 242.208 381.812 242.208C373.298 242.208 374.196 248.015 362.677 249.518C351.158 251.02 346.651 241.505 337.636 234.994Z" fill="#BD202E" stroke="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M100.47 263.692C98.9895 263.015 97.4848 262.328 95.9436 261.7C86.6703 257.923 79.7659 259.917 72.0086 262.412C63.9037 265.019 55.5031 276.36 49.9941 287.879C48.5558 290.886 47.4297 293.094 46.4724 294.971C44.4963 298.846 43.2392 301.311 41.4399 306.484L72.0086 316.877V348.615H138.732V311.238L152.521 306.327C152.092 304.844 151.672 303.375 151.258 301.925C148.309 291.61 145.657 282.331 142.309 276.618C138.491 270.103 125.06 261.718 121.878 264.432L121.918 264.973L121.787 264.614C114.309 270.015 107.675 266.984 100.47 263.692Z" fill="#FBD7D9"/>
+<path d="M95.9436 261.7L96.1322 261.237V261.237L95.9436 261.7ZM100.47 263.692L100.262 264.147L100.47 263.692ZM72.0086 262.412L72.1617 262.888L72.0086 262.412ZM49.9941 287.879L50.4452 288.094L49.9941 287.879ZM46.4724 294.971L46.027 294.744L46.4724 294.971ZM41.4399 306.484L40.9677 306.32L40.8022 306.796L41.279 306.958L41.4399 306.484ZM72.0086 316.877H72.5086V316.519L72.1696 316.403L72.0086 316.877ZM72.0086 348.615H71.5086V349.115H72.0086V348.615ZM138.732 348.615V349.115H139.232V348.615H138.732ZM138.732 311.238L138.565 310.767L138.232 310.885V311.238H138.732ZM152.521 306.327L152.689 306.798L153.132 306.641L153.001 306.189L152.521 306.327ZM151.258 301.925L151.739 301.788L151.258 301.925ZM142.309 276.618L141.878 276.871L142.309 276.618ZM121.878 264.432L121.553 264.052L121.361 264.217L121.379 264.469L121.878 264.432ZM121.918 264.973L121.448 265.144L122.416 264.936L121.918 264.973ZM121.787 264.614L122.257 264.443L122.03 263.822L121.494 264.209L121.787 264.614ZM95.755 262.163C97.2849 262.786 98.7802 263.469 100.262 264.147L100.678 263.237C99.1988 262.561 97.6846 261.869 96.1322 261.237L95.755 262.163ZM72.1617 262.888C79.9061 260.397 86.6585 258.458 95.755 262.163L96.1322 261.237C86.6821 257.388 79.6258 259.437 71.8555 261.936L72.1617 262.888ZM50.4452 288.094C53.1861 282.363 56.6428 276.685 60.4133 272.122C64.1939 267.547 68.2452 264.148 72.1617 262.888L71.8555 261.936C67.6672 263.284 63.4657 266.858 59.6425 271.485C55.8092 276.124 52.3111 281.875 49.5431 287.663L50.4452 288.094ZM46.9178 295.199C47.8754 293.321 49.004 291.108 50.4452 288.094L49.5431 287.663C48.1077 290.664 46.984 292.868 46.027 294.744L46.9178 295.199ZM41.9122 306.649C43.7003 301.508 44.9452 299.067 46.9178 295.199L46.027 294.744C44.0473 298.626 42.7782 301.115 40.9677 306.32L41.9122 306.649ZM72.1696 316.403L41.6008 306.011L41.279 306.958L71.8477 317.35L72.1696 316.403ZM72.5086 348.615V316.877H71.5086V348.615H72.5086ZM138.732 348.115H72.0086V349.115H138.732V348.115ZM138.232 311.238V348.615H139.232V311.238H138.232ZM138.9 311.709L152.689 306.798L152.353 305.856L138.565 310.767L138.9 311.709ZM153.001 306.189C152.573 304.706 152.153 303.237 151.739 301.788L150.777 302.063C151.191 303.512 151.612 304.982 152.041 306.466L153.001 306.189ZM151.739 301.788C148.798 291.501 146.128 282.147 142.741 276.365L141.878 276.871C145.186 282.516 147.821 291.719 150.777 302.063L151.739 301.788ZM142.741 276.365C140.771 273.004 136.378 269.227 132.115 266.637C129.976 265.338 127.838 264.317 126.013 263.794C125.102 263.533 124.247 263.39 123.5 263.41C122.753 263.429 122.068 263.613 121.553 264.052L122.202 264.813C122.483 264.574 122.913 264.425 123.526 264.409C124.136 264.393 124.883 264.511 125.738 264.756C127.446 265.245 129.501 266.219 131.595 267.491C135.798 270.044 140.03 273.717 141.878 276.871L142.741 276.365ZM121.379 264.469L121.419 265.01L122.416 264.936L122.376 264.396L121.379 264.469ZM121.317 264.786L121.448 265.144L122.388 264.802L122.257 264.443L121.317 264.786ZM100.262 264.147C103.849 265.785 107.377 267.402 110.956 267.908C114.571 268.419 118.231 267.8 122.08 265.02L121.494 264.209C117.866 266.83 114.469 267.395 111.096 266.918C107.688 266.436 104.296 264.891 100.678 263.237L100.262 264.147Z" fill="#2D2D2D"/>
+<path d="M137.249 286.685L138.775 311.491" stroke="#2D2D2D"/>
+<path d="M190.652 227.6L195.962 211.65L219.883 208.898L223.916 228.686C224.89 233.463 222.297 238.333 217.666 239.858C208.915 242.739 204.092 242.736 195.992 239.606C191.26 237.778 189.049 232.413 190.652 227.6Z" fill="white" stroke="#2D2D2D"/>
+<path d="M186.148 190.047C181.901 189.459 178.795 185.655 179.13 181.323C179.466 176.992 183.121 173.712 187.408 173.785L186.148 190.047Z" fill="white" stroke="#2D2D2D"/>
+<path d="M230.965 189.542C235.173 188.718 238.063 184.748 237.487 180.442C236.91 176.135 233.079 173.064 228.803 173.375L230.965 189.542Z" fill="white" stroke="#2D2D2D"/>
+<path d="M184.795 181.706C185.352 169.131 195.709 159.222 208.297 159.222C220.148 159.222 230.148 168.037 231.636 179.794L232.802 189.004C234.64 203.529 223.319 216.373 208.677 216.373C194.825 216.373 183.771 204.819 184.384 190.981L184.795 181.706Z" fill="white" stroke="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M224.727 149.052C224.727 149.207 224.723 149.362 224.716 149.515C225.244 149.221 225.866 149.052 226.531 149.052C228.458 149.052 230.021 150.475 230.021 152.23C230.021 152.8 229.856 153.336 229.567 153.799C229.712 154.173 229.808 154.524 229.861 154.814C233.827 157.703 231.514 160.682 229.861 161.81L231.101 176.931C226.144 176.569 221.104 170.384 219.204 164.667C219.104 164.678 219.001 164.689 218.897 164.701C218.31 167.06 215.993 168.822 213.225 168.822C211.255 168.822 209.514 167.93 208.462 166.565C207.832 166.681 207.208 166.792 206.598 166.895C206.113 168.93 204.124 170.454 201.744 170.454C199.527 170.454 197.65 169.131 197.011 167.306C194.122 168.786 189.961 175.499 187.631 179.258C187.026 180.233 186.545 181.009 186.241 181.444C184.606 183.785 183.801 175.648 183.091 168.468C183.048 168.033 183.005 167.602 182.963 167.176C182.521 162.751 183.632 160.985 184.911 160.06C183.657 159.292 182.832 157.988 182.832 156.508C182.832 154.428 184.462 152.695 186.622 152.31C185.684 151.487 185.1 150.332 185.1 149.052C185.1 146.554 187.324 144.529 190.067 144.529C191.918 144.529 193.533 145.451 194.387 146.819C194.764 145.434 196.138 144.407 197.775 144.407C199.703 144.407 201.265 145.83 201.265 147.585C201.265 147.663 201.262 147.741 201.256 147.818H203.407C204.073 143.018 208.573 139.306 214.025 139.306C219.936 139.306 224.727 143.669 224.727 149.052Z" fill="#2D2D2D"/>
+<path d="M453.685 234.421L461.359 196.534L486.54 192.659L489.961 224.526C477.239 245.376 454.443 250.312 453.685 234.421Z" fill="white" stroke="#2D2D2D"/>
+<mask id="path-72-inside-3" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M476.362 153.704C463.682 151.603 451.699 160.18 449.598 172.861L447.296 186.751C445.195 199.432 453.772 211.415 466.452 213.516C479.133 215.617 491.116 207.04 493.217 194.36L493.621 191.923C498.068 192.634 502.259 189.621 502.996 185.172C503.736 180.709 500.717 176.491 496.253 175.751L495.816 175.679C495.37 164.897 487.429 155.538 476.362 153.704Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M476.362 153.704C463.682 151.603 451.699 160.18 449.598 172.861L447.296 186.751C445.195 199.432 453.772 211.415 466.452 213.516C479.133 215.617 491.116 207.04 493.217 194.36L493.621 191.923C498.068 192.634 502.259 189.621 502.996 185.172C503.736 180.709 500.717 176.491 496.253 175.751L495.816 175.679C495.37 164.897 487.429 155.538 476.362 153.704Z" fill="white"/>
+<path d="M493.621 191.923L493.779 190.935L492.797 190.778L492.635 191.759L493.621 191.923ZM496.253 175.751L496.417 174.765L496.253 175.751ZM495.816 175.679L494.816 175.72L494.85 176.532L495.652 176.665L495.816 175.679ZM450.584 173.024C452.595 160.888 464.063 152.68 476.199 154.691L476.526 152.718C463.3 150.526 450.802 159.471 448.611 172.697L450.584 173.024ZM448.283 186.915L450.584 173.024L448.611 172.697L446.31 186.588L448.283 186.915ZM466.616 212.529C454.48 210.519 446.272 199.05 448.283 186.915L446.31 186.588C444.118 199.813 453.063 212.311 466.289 214.503L466.616 212.529ZM492.231 194.196C490.22 206.332 478.752 214.54 466.616 212.529L466.289 214.503C479.515 216.694 492.013 207.749 494.204 194.523L492.231 194.196ZM492.635 191.759L492.231 194.196L494.204 194.523L494.608 192.086L492.635 191.759ZM502.01 185.009C501.363 188.914 497.683 191.56 493.779 190.935L493.463 192.91C498.453 193.708 503.156 190.327 503.983 185.336L502.01 185.009ZM496.09 176.738C500.009 177.387 502.659 181.09 502.01 185.009L503.983 185.336C504.813 180.327 501.425 175.595 496.417 174.765L496.09 176.738ZM495.652 176.665L496.09 176.738L496.417 174.765L495.979 174.692L495.652 176.665ZM476.199 154.691C486.789 156.445 494.39 165.402 494.816 175.72L496.815 175.637C496.35 164.392 488.069 154.63 476.526 152.718L476.199 154.691Z" fill="#2D2D2D" mask="url(#path-72-inside-3)"/>
+<path d="M470.687 141.743C486.25 139.597 494.451 149.517 494.276 154.656L499.145 158.335C504.374 160.199 501.714 171.031 499.983 177.552C499.983 177.552 499.145 176.782 498.218 176.533C491.668 174.77 490.459 180.292 489.633 182.677L486.82 183.623L487.44 174.747C482.194 172.549 482.155 167.289 482.792 164.934C471.926 170.811 459.804 165.923 455.102 162.745L449.678 173.52C449.339 172.972 448.531 171.216 446.994 167.123C445.458 163.03 448.425 160.347 450.1 159.517C450.307 157.152 451.233 144.425 470.687 141.743Z" fill="#2D2D2D" stroke="#2D2D2D"/>
+<path d="M487.032 164.216C487.013 167.63 489.675 174.495 500.475 174.644" stroke="#C4C4C4"/>
+<path d="M465.046 182.463C464.256 187.236 467.484 191.747 472.257 192.537C477.03 193.328 481.54 190.1 482.331 185.327C483.121 180.554 479.893 176.044 475.12 175.253C470.348 174.462 465.837 177.691 465.046 182.463ZM465.046 182.463L461.256 181.804M461.439 181.866C460.648 186.639 456.137 189.867 451.365 189.076C446.592 188.285 443.364 183.775 444.154 179.002C444.945 174.229 449.455 171.001 454.228 171.792C459.001 172.583 462.229 177.093 461.439 181.866Z" stroke="#2D2D2D"/>
+<path d="M490.129 162.777C491.58 165.567 495.95 170.626 501.827 168.54" stroke="#C4C4C4"/>
+<path d="M461.542 231.942L461.913 231.607C461.788 231.469 461.596 231.412 461.416 231.459C461.236 231.506 461.096 231.649 461.055 231.831L461.542 231.942ZM458.974 243.163L458.487 243.052L458.374 243.546L458.87 243.652L458.974 243.163ZM470.543 241.914L470.746 242.371L471.377 242.091L470.915 241.579L470.543 241.914ZM461.055 231.831L458.487 243.052L459.462 243.275L462.029 232.054L461.055 231.831ZM458.87 243.652C461.304 244.171 463.192 244.339 465.026 244.126C466.858 243.912 468.601 243.321 470.746 242.371L470.341 241.457C468.235 242.39 466.598 242.936 464.91 243.132C463.224 243.329 461.453 243.18 459.079 242.674L458.87 243.652ZM470.915 241.579L461.913 231.607L461.171 232.277L470.172 242.249L470.915 241.579Z" fill="#2D2D2D"/>
+<path d="M347.471 159.933C340.875 160.587 328.289 167.42 330.714 189.525" stroke="#2D2D2D"/>
+<path d="M363.283 139.241C368.595 139.241 374.168 144.89 374.168 150.363" stroke="#2D2D2D"/>
+<path d="M79.6667 220.3C71.6426 227.402 55.207 248.136 53.6576 274.255" stroke="#BD202E"/>
+<path d="M113.235 182.278C114.52 192.325 109.308 211.103 83.2327 207.738" stroke="#BD202E"/>
+<path d="M472.675 244.372L461.542 231.876L489.296 218.358L493.297 222.869L472.675 244.372Z" fill="white" stroke="#2D2D2D" stroke-linejoin="round"/>
+<path d="M446.858 238.825L457.598 230.738L454.692 224.42L446.858 238.825Z" fill="white"/>
+<path d="M458.356 242.995L457.598 230.738M457.598 230.738L446.858 238.825L454.692 224.42L457.598 230.738Z" stroke="#2D2D2D" stroke-linejoin="round"/>
+<path d="M37.2751 348.696H543.079" stroke="#2D2D2D"/>
+<path d="M133.681 206.836C133.043 211.29 128.383 214.933 123.205 214.857L123.19 215.857C128.778 215.939 133.949 212.016 134.671 206.978L133.681 206.836ZM123.205 214.857C118.054 214.781 114.548 211.075 115.175 206.691L114.186 206.549C113.454 211.657 117.573 215.774 123.19 215.857L123.205 214.857ZM115.175 206.691C115.325 205.644 115.939 204.575 116.914 203.547C117.886 202.522 119.188 201.569 120.651 200.755C123.586 199.122 127.075 198.098 129.655 198.136L129.67 197.136C126.866 197.095 123.204 198.19 120.164 199.882C118.639 200.73 117.248 201.742 116.188 202.859C115.132 203.972 114.376 205.223 114.186 206.549L115.175 206.691ZM129.655 198.136C130.934 198.155 131.826 198.432 132.451 198.862C133.069 199.289 133.472 199.897 133.716 200.672C134.217 202.261 134.023 204.446 133.681 206.836L134.671 206.978C135.008 204.621 135.25 202.211 134.67 200.371C134.373 199.431 133.856 198.617 133.018 198.039C132.185 197.465 131.082 197.157 129.67 197.136L129.655 198.136ZM92.9038 212.774C95.2558 217.288 101.435 219.274 106.68 217.343L106.334 216.404C101.474 218.194 95.8696 216.302 93.7906 212.312L92.9038 212.774ZM106.68 217.343C111.951 215.402 114.472 210.151 112.087 205.575L111.2 206.037C113.247 209.965 111.168 214.624 106.334 216.404L106.68 217.343ZM112.087 205.575C111.468 204.387 110.34 203.458 108.974 202.758C107.603 202.056 105.956 201.563 104.235 201.268C100.806 200.68 96.9882 200.862 94.3574 201.831L94.7029 202.769C97.1245 201.877 100.756 201.686 104.066 202.254C105.716 202.537 107.261 203.004 108.517 203.648C109.779 204.294 110.712 205.099 111.2 206.037L112.087 205.575ZM94.3574 201.831C93.0319 202.319 92.0935 202.975 91.498 203.793C90.8987 204.616 90.6811 205.556 90.7134 206.541C90.7766 208.469 91.8038 210.663 92.9038 212.774L93.7906 212.312C92.6751 210.171 91.7675 208.174 91.7129 206.508C91.6863 205.697 91.8641 204.989 92.3065 204.382C92.7526 203.769 93.5022 203.211 94.7029 202.769L94.3574 201.831ZM111.875 209.622L115.302 209.397L115.236 208.399L111.809 208.624L111.875 209.622Z" fill="#2D2D2D"/>
+<path d="M357.059 249.404L357.799 348.548" stroke="#2D2D2D" stroke-linejoin="round"/>
+<path d="M475.13 202.031C472.107 205.054 457.067 202.278 449.887 199.759C448.313 202.656 446.686 210.628 453.186 215.767C461.31 222.191 485.227 218.691 489.65 211.044C491.952 207.065 493.24 197.315 493.051 192.528L489.65 182.893L486.816 183.837C484.171 189.442 478.153 199.008 475.13 202.031Z" fill="#2D2D2D" stroke="#2D2D2D" stroke-linejoin="round"/>
+<path d="M480.523 200.5C480.523 195.654 465.117 193.448 459.479 193.7C444.536 190.469 446.701 203.432 449.057 210.248L475.393 213.155C477.757 209.761 480.523 205.347 480.523 200.5Z" fill="#2D2D2D" stroke="#2D2D2D" stroke-linejoin="round"/>
+</svg>
diff --git a/public/img/community/b5-img.png b/public/img/community/b5-img.png
new file mode 100644
index 0000000..3f5de14
--- /dev/null
+++ b/public/img/community/b5-img.png
Binary files differ
diff --git a/public/img/community/b7-chair-star.svg b/public/img/community/b7-chair-star.svg
new file mode 100644
index 0000000..b2f67df
--- /dev/null
+++ b/public/img/community/b7-chair-star.svg
@@ -0,0 +1,3 @@
+<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M17.1685 8.58431V8.58824C12.5002 8.71445 8.74329 12.4931 8.65122 17.1702H8.64776C8.55484 12.4495 4.72853 8.64422 1.90735e-06 8.58567V8.58174C4.66816 8.45553 8.42506 4.67704 8.51725 0H8.52071C8.61376 4.72055 12.44 8.52575 17.1685 8.58431Z" fill="#ED1C24"/>
+</svg>
diff --git a/public/img/community/b8-img.svg b/public/img/community/b8-img.svg
new file mode 100644
index 0000000..bfff204
--- /dev/null
+++ b/public/img/community/b8-img.svg
@@ -0,0 +1,102 @@
+<svg width="614" height="518" viewBox="0 0 614 518" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M305.091 373.105V447.257C305.091 452.78 309.568 457.257 315.091 457.257H495.39" stroke="#2D2D2D"/>
+<path d="M152.222 362.675H209.225C214.748 362.675 219.225 358.197 219.225 352.675V332.276C219.225 326.753 223.702 322.276 229.225 322.276H247.8" stroke="#2D2D2D"/>
+<path d="M286.228 169.08V231.148C286.228 236.671 290.705 241.148 296.228 241.148H341.37C346.893 241.148 351.37 245.625 351.37 251.148V292.238" stroke="#2D2D2D"/>
+<path d="M612.665 516.778H474.064V282.955C474.064 244.682 505.091 213.655 543.365 213.655C581.638 213.655 612.665 244.682 612.665 282.955V516.778Z" stroke="black"/>
+<path d="M428.566 348.804C429.81 343.063 430.234 347.227 431.671 356.496C432.776 363.628 433.142 367.801 431.334 369.834L437.516 390.388L423.138 391.937L418.029 375.206C414.596 375.18 406.239 356.637 402.245 347.468C401.946 344.235 407.859 351.37 410.663 355.547C408.617 351.344 403.862 341.079 404.896 339.488C405.93 337.897 412.137 348.945 414.342 354.062C412.314 348.174 408.467 335.98 409.299 334.303C410.131 332.626 415.53 345.758 418.126 352.534C416.399 346.525 412.594 332.808 415.025 334.677C418.064 337.013 424.238 356.773 426.085 358.751C427.932 360.73 427.321 354.546 428.566 348.804Z" fill="white"/>
+<path d="M427.785 371.267C427.853 371.197 431.262 369.915 431.334 369.834M431.334 369.834C433.142 367.801 432.776 363.628 431.671 356.496C430.234 347.227 429.81 343.063 428.566 348.804C427.321 354.546 427.932 360.73 426.085 358.751C424.238 356.773 418.064 337.013 415.025 334.677C412.594 332.808 416.399 346.525 418.126 352.534C415.53 345.758 410.131 332.626 409.299 334.303C408.467 335.98 412.314 348.174 414.342 354.062C412.137 348.945 405.93 337.897 404.896 339.488C403.862 341.079 408.617 351.344 410.663 355.547C407.859 351.37 401.946 344.235 402.245 347.468C406.239 356.637 414.596 375.18 418.029 375.206L423.138 391.937L437.516 390.388L431.334 369.834Z" stroke="#2D2D2D" stroke-linejoin="round"/>
+<path d="M446.501 401.215C463.493 434.17 465.175 427.727 480.501 402.453C480.501 402.453 493.05 375.74 501.742 369.112C510.435 362.484 509.336 404.225 509.336 404.225C503.987 417.337 510.884 416.972 480.501 447.892C453.609 475.26 420.542 407.815 417.482 377.127C418.091 377.128 436.068 371.685 436.068 371.685C436.068 371.685 439.826 388.27 446.501 401.215Z" fill="#D4E4F3" stroke="black" stroke-linejoin="round"/>
+<path d="M489.434 450.077V503.412H401.968V436.602L489.434 450.077Z" fill="#EBEBEB" stroke="#2D2D2D"/>
+<path d="M540.515 356.307C528.68 354.255 511.941 360.383 500.433 369.416C495.502 373.285 493.528 379.596 493.792 385.858L499.324 517.037H570.191L580.191 382.978C580.984 361.636 558.748 359.469 540.515 356.307Z" fill="#D4E4F3" stroke="#2D2D2D"/>
+<path d="M550.594 307.077L535.956 302.992L515.515 336.168L516.463 369.348L543.509 356.621L541.064 322.311L547.953 319.341L550.594 307.077Z" fill="white" stroke="#2D2D2D"/>
+<rect x="505.776" y="284.509" width="31.3525" height="59.889" rx="9.5" fill="white" stroke="#2D2D2D"/>
+<path d="M151.017 386.171H0.239746V215.581H151.017V386.171Z" fill="white"/>
+<path d="M393.82 171.085H243.042V0.494629H393.82V171.085Z" fill="#D4E5F3"/>
+<path d="M307.752 103.829C272.451 108.917 271.468 150.29 272.926 170.962H396.896V132.543C390.999 101.908 359.56 105.273 340.602 103.829L307.752 103.829Z" fill="white" stroke="black"/>
+<path d="M240.244 62.0721C239.745 59.6877 235.818 52.8265 234.416 52.8265C232.401 52.8265 235.881 59.8318 237.474 66.0984C238.67 70.8042 239.143 75.4885 240.244 76.6516L237.677 90.8277L251.061 89.3484C251.061 87.6849 250.074 76.3014 252.469 76.0352C255.464 75.7025 259.878 65.719 259.878 62.7247C259.878 60.3291 257.993 61.7265 257.05 62.7247C255.352 64.522 252.22 69.8728 250.223 66.5457C248.227 63.2186 251.98 55.33 254.995 55.3616C258.011 55.3932 257.489 60.7859 258.88 60.7283C260.271 60.6707 260.687 58.8105 258.425 54.0195C256.163 49.2284 247.241 54.094 245.899 59.0826C246.9 55.3616 252.392 43.352 251.061 42.1541C249.73 40.9563 245.197 53.2047 243.256 59.0826C243.034 53.9257 242.629 41.1607 240.244 42.1541C238.647 42.8196 239.579 56.1942 240.244 62.0721Z" fill="white"/>
+<path d="M240.244 62.0721L239.755 62.1745C239.81 62.4359 240.06 62.6081 240.324 62.5657C240.587 62.5233 240.771 62.2812 240.741 62.0158L240.244 62.0721ZM240.244 42.1541L240.437 42.6157L240.244 42.1541ZM243.256 59.0826L242.756 59.1041C242.767 59.3453 242.948 59.5447 243.187 59.5779C243.426 59.6111 243.655 59.4686 243.731 59.2394L243.256 59.0826ZM251.061 42.1541L251.396 41.7825L251.396 41.7825L251.061 42.1541ZM245.416 58.9527C245.344 59.2194 245.502 59.4937 245.769 59.5654C246.036 59.6372 246.31 59.4792 246.382 59.2125L245.416 58.9527ZM258.425 54.0195L258.877 53.806L258.425 54.0195ZM257.05 62.7247L256.686 62.3813L257.05 62.7247ZM252.469 76.0352L252.524 76.5321L252.469 76.0352ZM251.061 89.3484L251.116 89.8454L251.561 89.7962V89.3484H251.061ZM237.677 90.8277L237.185 90.7386L237.065 91.3983L237.732 91.3246L237.677 90.8277ZM240.244 76.6516L240.736 76.7407C240.765 76.5841 240.717 76.4234 240.607 76.3078L240.244 76.6516ZM237.474 66.0984L237.959 65.9752L237.474 66.0984ZM234.416 53.3265C234.412 53.3265 234.512 53.3384 234.738 53.5178C234.944 53.6808 235.19 53.9302 235.466 54.2579C236.016 54.9109 236.639 55.8191 237.241 56.8142C237.842 57.8069 238.416 58.8727 238.868 59.8343C239.325 60.806 239.643 61.6383 239.755 62.1745L240.734 61.9697C240.596 61.3137 240.236 60.3941 239.773 59.4087C239.305 58.4133 238.715 57.3167 238.097 56.2961C237.48 55.2779 236.827 54.3217 236.231 53.6137C235.934 53.261 235.639 52.9556 235.359 52.7342C235.101 52.529 234.771 52.3265 234.416 52.3265V53.3265ZM240.741 62.0158C240.41 59.0881 240.012 54.2893 239.896 50.1445C239.838 48.0698 239.851 46.1746 239.975 44.7644C240.038 44.0565 240.126 43.4931 240.239 43.0974C240.296 42.899 240.353 42.7633 240.404 42.6782C240.457 42.5881 240.477 42.599 240.437 42.6157L240.052 41.6926C239.812 41.7925 239.652 41.9858 239.544 42.1676C239.433 42.3544 239.347 42.58 239.278 42.8225C239.139 43.3085 239.043 43.9452 238.979 44.6766C238.85 46.1449 238.838 48.0855 238.896 50.1724C239.013 54.3507 239.414 59.1782 239.748 62.1283L240.741 62.0158ZM240.437 42.6157C240.49 42.5934 240.513 42.5991 240.525 42.6028C240.547 42.6093 240.6 42.6337 240.679 42.7209C240.847 42.9054 241.032 43.2608 241.215 43.8121C241.575 44.8979 241.851 46.5184 242.064 48.3691C242.489 52.0586 242.645 56.5173 242.756 59.1041L243.755 59.0611C243.645 56.491 243.487 51.9887 243.058 48.2548C242.844 46.3938 242.558 44.687 242.164 43.4977C241.97 42.9114 241.731 42.3923 241.419 42.0487C241.259 41.8719 241.059 41.7188 240.812 41.6449C240.557 41.5683 240.297 41.5907 240.052 41.6926L240.437 42.6157ZM243.731 59.2394C244.699 56.3082 246.312 51.7902 247.848 48.1597C248.617 46.3404 249.358 44.7647 249.982 43.7244C250.298 43.1968 250.561 42.8467 250.759 42.6666C250.861 42.5747 250.904 42.5658 250.891 42.5688C250.844 42.58 250.77 42.5646 250.727 42.5258L251.396 41.7825C251.186 41.5939 250.921 41.5339 250.66 41.5958C250.434 41.6495 250.241 41.7866 250.087 41.9264C249.775 42.2099 249.45 42.6661 249.124 43.2102C248.463 44.3133 247.7 45.9424 246.927 47.7702C245.377 51.4339 243.754 55.9792 242.781 58.9258L243.731 59.2394ZM250.727 42.5258C250.701 42.5026 250.723 42.5043 250.744 42.604C250.764 42.6997 250.774 42.8439 250.763 43.0454C250.741 43.4476 250.641 43.993 250.472 44.6582C250.136 45.9837 249.55 47.6926 248.885 49.4994C248.22 51.3049 247.485 53.184 246.848 54.8583C246.215 56.5203 245.674 57.9934 245.416 58.9527L246.382 59.2125C246.624 58.3113 247.145 56.8878 247.782 55.214C248.415 53.5525 249.157 51.6567 249.824 49.8449C250.49 48.0345 251.091 46.2839 251.441 44.9043C251.616 44.2171 251.734 43.5986 251.762 43.1003C251.775 42.8514 251.768 42.6112 251.723 42.3975C251.678 42.1879 251.588 41.9554 251.396 41.7825L250.727 42.5258ZM246.382 59.2125C246.688 58.0734 247.44 56.9063 248.461 55.8631C249.48 54.8229 250.742 53.9322 252.027 53.3374C253.318 52.7397 254.591 52.4594 255.643 52.5844C256.667 52.706 257.489 53.2082 257.973 54.233L258.877 53.806C258.23 52.4353 257.088 51.749 255.761 51.5913C254.462 51.437 252.997 51.7866 251.607 52.43C250.211 53.0763 248.849 54.0379 247.747 55.1634C246.648 56.2857 245.781 57.5975 245.416 58.9527L246.382 59.2125ZM257.973 54.233C259.097 56.6136 259.518 58.194 259.522 59.1512C259.525 59.6255 259.424 59.8871 259.318 60.0233C259.226 60.143 259.089 60.2192 258.859 60.2287L258.9 61.2279C259.367 61.2086 259.803 61.0307 260.109 60.6357C260.402 60.2571 260.525 59.7435 260.522 59.1467C260.517 57.9616 260.015 56.2163 258.877 53.806L257.973 54.233ZM258.859 60.2287C258.856 60.2289 258.857 60.2286 258.859 60.2291C258.862 60.2296 258.863 60.2303 258.862 60.2299C258.86 60.2289 258.843 60.2198 258.813 60.1856C258.746 60.1099 258.666 59.9692 258.576 59.7372C258.389 59.2558 258.251 58.6568 258.024 57.9293C257.811 57.2474 257.529 56.4985 257.073 55.9142C256.601 55.3078 255.933 54.8714 255.001 54.8616L254.99 55.8615C255.565 55.8676 255.963 56.1171 256.285 56.529C256.623 56.9629 256.862 57.5645 257.07 58.2275C257.263 58.8449 257.444 59.5853 257.644 60.0998C257.748 60.3658 257.879 60.6371 258.062 60.8455C258.257 61.0682 258.537 61.2429 258.9 61.2279L258.859 60.2287ZM255.001 54.8616C254.036 54.8515 253.11 55.4637 252.333 56.2843C251.541 57.1216 250.823 58.2597 250.273 59.4901C249.723 60.7217 249.329 62.0712 249.205 63.3414C249.081 64.6027 249.218 65.8425 249.795 66.803L250.652 66.2885C250.23 65.5854 250.087 64.5915 250.2 63.4389C250.312 62.2952 250.671 61.0507 251.186 59.8982C251.702 58.7445 252.363 57.7084 253.06 56.9715C253.773 56.2178 254.447 55.8559 254.99 55.8615L255.001 54.8616ZM249.795 66.803C250.073 67.2664 250.393 67.6163 250.762 67.8389C251.139 68.066 251.541 68.1439 251.945 68.1024C252.716 68.0231 253.45 67.5115 254.087 66.9247C254.74 66.3236 255.374 65.564 255.938 64.8608C256.515 64.141 257.007 63.4978 257.413 63.068L256.686 62.3813C256.244 62.8502 255.708 63.5499 255.158 64.2349C254.595 64.9365 254.002 65.6437 253.41 66.1891C252.802 66.7488 252.273 67.0634 251.842 67.1077C251.644 67.1281 251.461 67.0922 251.278 66.9822C251.088 66.8676 250.873 66.6569 250.652 66.2885L249.795 66.803ZM257.413 63.068C257.634 62.8347 257.908 62.5797 258.191 62.3655C258.481 62.1462 258.749 61.9938 258.96 61.9314C259.168 61.8697 259.209 61.9212 259.216 61.9284C259.261 61.973 259.378 62.1609 259.378 62.7247H260.378C260.378 62.0907 260.259 61.5549 259.921 61.219C259.545 60.8456 259.056 60.8597 258.675 60.9727C258.297 61.0849 257.917 61.3194 257.588 61.5679C257.252 61.8216 256.937 62.1156 256.686 62.3813L257.413 63.068ZM259.378 62.7247C259.378 63.386 259.126 64.5055 258.668 65.8607C258.215 67.1992 257.579 68.7162 256.851 70.1518C256.121 71.59 255.306 72.929 254.502 73.9212C254.099 74.4174 253.709 74.8144 253.344 75.093C252.975 75.3748 252.663 75.5106 252.414 75.5383L252.524 76.5321C253.024 76.4767 253.505 76.2276 253.951 75.8881C254.4 75.5454 254.846 75.0844 255.278 74.5511C256.144 73.4842 256.994 72.0778 257.742 70.6044C258.492 69.1282 259.146 67.5671 259.615 66.1811C260.078 64.8119 260.378 63.5605 260.378 62.7247H259.378ZM252.414 75.5383C251.894 75.596 251.533 75.9532 251.291 76.3598C251.049 76.7674 250.877 77.301 250.75 77.8881C250.495 79.0681 250.393 80.6078 250.367 82.1593C250.34 83.7175 250.389 85.3161 250.445 86.625C250.501 87.9516 250.561 88.9462 250.561 89.3484H251.561C251.561 88.9189 251.498 87.8667 251.444 86.5828C251.389 85.281 251.341 83.7052 251.367 82.1763C251.393 80.6407 251.494 79.1806 251.727 78.0993C251.845 77.5558 251.989 77.1434 252.151 76.8711C252.313 76.5977 252.445 76.5409 252.524 76.5321L252.414 75.5383ZM251.006 88.8515L237.622 90.3307L237.732 91.3246L251.116 89.8454L251.006 88.8515ZM238.169 90.9168L240.736 76.7407L239.752 76.5624L237.185 90.7386L238.169 90.9168ZM240.607 76.3078C240.415 76.1049 240.207 75.6893 239.991 75.0204C239.782 74.3697 239.586 73.5489 239.384 72.5994C238.983 70.7178 238.56 68.3399 237.959 65.9752L236.99 66.2215C237.585 68.5627 237.996 70.8798 238.406 72.8076C238.609 73.7627 238.813 74.6252 239.039 75.327C239.26 76.0105 239.523 76.6166 239.881 76.9953L240.607 76.3078ZM237.959 65.9752C237.158 62.8234 235.873 59.4548 235.068 56.959C234.658 55.6877 234.38 54.666 234.318 53.9743C234.286 53.6196 234.32 53.431 234.357 53.3503C234.371 53.3209 234.377 53.3242 234.365 53.3311C234.355 53.3373 234.364 53.3265 234.416 53.3265V52.3265C234.217 52.3265 234.016 52.3704 233.837 52.4823C233.656 52.5949 233.531 52.7548 233.45 52.9292C233.299 53.2561 233.286 53.6637 233.322 54.0637C233.395 54.8813 233.709 56.0026 234.116 57.2659C234.946 59.8394 236.198 63.1068 236.99 66.2215L237.959 65.9752Z" fill="black"/>
+<path d="M249.295 102.836C239.662 129.98 248.935 144.633 269.622 125.948C269.622 125.948 287.812 109.232 299.246 105.965C310.68 102.699 297.663 138.472 297.663 138.472C287.046 149.633 291.13 146.639 249.296 160.251C209.605 173.166 224.303 110.681 236.161 80.3984C242.673 84.7393 246.904 85.0605 254.969 83.7441C254.969 83.7441 249.755 101.543 249.295 102.836Z" fill="white" stroke="black" stroke-linejoin="round"/>
+<path d="M323.227 116.717L321.627 91.4471L336.981 86.3291L351.481 109.466C346.307 119.298 333.936 125.84 323.227 116.717Z" fill="white" stroke="black"/>
+<mask id="path-19-inside-1" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M325.447 39.7051C335.702 39.1096 344.676 46.5377 346.007 56.7241L346.872 63.3456C347.246 63.328 347.628 63.3571 348.012 63.4375C350.447 63.9484 352.008 66.337 351.497 68.7727C351.12 70.5695 349.721 71.89 348.035 72.2539L348.42 75.1975C349.953 86.93 341.239 97.5111 329.431 98.2573C317.953 98.9826 308.134 90.1047 307.704 78.6123L307.006 59.9949C306.607 49.3403 314.803 40.3231 325.447 39.7051Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M325.447 39.7051C335.702 39.1096 344.676 46.5377 346.007 56.7241L346.872 63.3456C347.246 63.328 347.628 63.3571 348.012 63.4375C350.447 63.9484 352.008 66.337 351.497 68.7727C351.12 70.5695 349.721 71.89 348.035 72.2539L348.42 75.1975C349.953 86.93 341.239 97.5111 329.431 98.2573C317.953 98.9826 308.134 90.1047 307.704 78.6123L307.006 59.9949C306.607 49.3403 314.803 40.3231 325.447 39.7051Z" fill="white"/>
+<path d="M346.007 56.7241L345.015 56.8536L346.007 56.7241ZM325.447 39.7051L325.389 38.7067L325.447 39.7051ZM346.872 63.3456L346.919 64.3445L345.999 64.3878L345.88 63.4751L346.872 63.3456ZM348.012 63.4375L347.806 64.4162L347.806 64.4162L348.012 63.4375ZM351.497 68.7727L352.476 68.978L351.497 68.7727ZM348.035 72.2539L347.044 72.3834L346.925 71.4707L347.824 71.2764L348.035 72.2539ZM348.42 75.1975L349.411 75.068L348.42 75.1975ZM307.704 78.6123L308.703 78.5748L307.704 78.6123ZM307.006 59.9949L306.007 60.0324L306.007 60.0324L307.006 59.9949ZM345.015 56.8536C343.752 47.1872 335.237 40.1383 325.505 40.7034L325.389 38.7067C336.168 38.0809 345.6 45.8882 346.998 56.5945L345.015 56.8536ZM345.88 63.4751L345.015 56.8536L346.998 56.5945L347.863 63.2161L345.88 63.4751ZM346.825 62.3467C347.283 62.3251 347.75 62.3608 348.217 62.4588L347.806 64.4162C347.506 64.3533 347.209 64.3308 346.919 64.3445L346.825 62.3467ZM348.217 62.4588C351.193 63.0831 353.1 66.0018 352.476 68.978L350.518 68.5674C350.916 66.6723 349.702 64.8137 347.806 64.4162L348.217 62.4588ZM352.476 68.978C352.015 71.1751 350.304 72.7872 348.246 73.2314L347.824 71.2764C349.138 70.9928 350.225 69.964 350.518 68.5674L352.476 68.978ZM347.428 75.327L347.044 72.3834L349.027 72.1244L349.411 75.068L347.428 75.327ZM329.368 97.2593C340.599 96.5496 348.886 86.4858 347.428 75.327L349.411 75.068C351.019 87.3741 341.88 98.4726 329.494 99.2553L329.368 97.2593ZM308.703 78.5748C309.113 89.5053 318.451 97.9491 329.368 97.2593L329.494 99.2553C317.455 100.016 307.156 90.7041 306.705 78.6497L308.703 78.5748ZM308.006 59.9575L308.703 78.5748L306.705 78.6497L306.007 60.0324L308.006 59.9575ZM325.505 40.7034C315.404 41.2899 307.627 49.8468 308.006 59.9575L306.007 60.0324C305.588 48.8339 314.201 39.3563 325.389 38.7067L325.505 40.7034Z" fill="black" mask="url(#path-19-inside-1)"/>
+<path d="M300.298 49.7904C299.083 42.6098 309.935 37.5384 319.817 36.0089C319.817 36.0089 325.069 34.7544 330.728 35.5254C336.386 36.2965 339.163 40.8973 339.163 40.8973C340.191 39.9583 343.178 39.1281 345.926 43.0096C349.422 47.9486 349.85 56.8121 348.78 64.117C348.78 64.117 346.761 63.0477 343.689 64.4826C341.325 65.5866 339.854 69.3122 337.199 68.7554C334.34 68.1556 338.86 56.2159 334.073 53.2718C330.615 51.145 324.564 48.9222 319.208 52.7876C312.513 57.6192 301.658 57.8361 300.298 49.7904Z" fill="#C4C4C4" stroke="black"/>
+<path d="M310.529 151.649C314.527 147.206 333.733 149.797 339.287 151.649L336.913 160.812C335.176 160.812 331.289 160.679 329.636 160.146C327.983 159.612 321.193 170.657 318.358 169.489L322.089 160.812L312.046 170.42L316.698 160.812C314.362 164.154 304.153 171.498 303.29 170.42C302.428 169.342 310.542 163.255 312.046 160.812C310.102 162.848 298.97 167.467 296.082 168.8C292.472 170.466 305.53 157.202 310.529 151.649Z" fill="white" stroke="black"/>
+<path d="M245.129 170.959L232.213 114.061C231.968 112.984 232.665 112.111 233.77 112.111H309.338C310.443 112.111 311.537 112.984 311.781 114.061L324.698 170.959H245.129Z" fill="#C4C4C4" stroke="#2D2D2D" stroke-linejoin="round"/>
+<path d="M415.299 171.765C415.299 165.52 400.312 124.364 384.702 112.732C384.621 112.672 384.536 112.627 384.44 112.596C376.457 110.009 360.057 117.732 367.652 136.677C367.676 136.737 367.707 136.797 367.742 136.851L386.801 166.072C387.361 166.93 386.421 168.001 385.5 167.552C376.801 163.315 353.105 152.245 337.869 149.628C337.396 149.547 336.947 149.824 336.786 150.275L332.775 161.508C332.598 162.004 332.826 162.548 333.306 162.766C346.364 168.705 372.506 186.727 388.849 191.298C400.821 194.645 415.299 192.925 415.299 171.765Z" fill="white" stroke="black"/>
+<circle cx="74.187" cy="277.917" r="18.9185" fill="#0070CC" stroke="black"/>
+<path d="M83.4288 291.202L81.229 261.772L99.1345 257.187L107.684 285.971L83.4288 291.202Z" fill="white" stroke="#2D2D2D" stroke-linejoin="round"/>
+<mask id="path-27-inside-2" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M62.2324 232.076C62.2324 232.076 79.2563 206.025 95.4229 209.366C104.032 211.146 109.849 224.218 112.682 237.304C113.215 237.484 113.721 237.765 114.165 238.153C116.079 239.826 115.951 242.688 113.909 244.225C115.144 253.139 114.899 261.077 113.108 264.17C108.305 272.467 80.3234 266.005 74.241 260.239C68.1587 254.473 62.2324 232.076 62.2324 232.076Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M62.2324 232.076C62.2324 232.076 79.2563 206.025 95.4229 209.366C104.032 211.146 109.849 224.218 112.682 237.304C113.215 237.484 113.721 237.765 114.165 238.153C116.079 239.826 115.951 242.688 113.909 244.225C115.144 253.139 114.899 261.077 113.108 264.17C108.305 272.467 80.3234 266.005 74.241 260.239C68.1587 254.473 62.2324 232.076 62.2324 232.076Z" fill="white"/>
+<path d="M95.4229 209.366L95.2205 210.346L95.4229 209.366ZM62.2324 232.076L61.2657 232.332L61.1518 231.901L61.3953 231.529L62.2324 232.076ZM112.682 237.304L112.363 238.252L111.825 238.071L111.704 237.516L112.682 237.304ZM114.165 238.153L113.507 238.906L113.507 238.906L114.165 238.153ZM113.909 244.225L112.918 244.362L112.837 243.779L113.307 243.425L113.909 244.225ZM113.108 264.17L112.243 263.669L113.108 264.17ZM95.2205 210.346C91.4759 209.572 87.6179 210.486 83.8707 212.396C80.1234 214.306 76.5612 217.176 73.4618 220.186C70.3673 223.19 67.7657 226.304 65.936 228.67C65.022 229.851 64.3027 230.844 63.813 231.539C63.5683 231.886 63.381 232.16 63.2556 232.345C63.1929 232.437 63.1456 232.508 63.1144 232.555C63.0989 232.578 63.0873 232.596 63.0797 232.607C63.076 232.613 63.0732 232.617 63.0715 232.62C63.0707 232.621 63.0701 232.622 63.0697 232.623C63.0696 232.623 63.0695 232.623 63.0694 232.623C63.0694 232.623 63.0695 232.623 62.2324 232.076C61.3953 231.529 61.3955 231.529 61.3957 231.528C61.3959 231.528 61.3962 231.527 61.3966 231.527C61.3973 231.526 61.3982 231.524 61.3995 231.522C61.4019 231.519 61.4053 231.514 61.4098 231.507C61.4188 231.493 61.4319 231.473 61.449 231.448C61.4832 231.396 61.5335 231.321 61.5995 231.223C61.7313 231.029 61.9256 230.745 62.1779 230.387C62.6823 229.671 63.4194 228.654 64.354 227.446C66.2214 225.031 68.8862 221.841 72.0685 218.751C75.2459 215.665 78.9709 212.649 82.9624 210.614C86.9541 208.58 91.2865 207.49 95.6253 208.387L95.2205 210.346ZM111.704 237.516C110.301 231.031 108.166 224.595 105.347 219.586C102.507 214.539 99.0928 211.146 95.2205 210.346L95.6253 208.387C100.362 209.366 104.161 213.399 107.09 218.605C110.04 223.847 112.23 230.491 113.659 237.093L111.704 237.516ZM113.507 238.906C113.166 238.609 112.777 238.391 112.363 238.252L113.001 236.356C113.654 236.576 114.275 236.922 114.823 237.4L113.507 238.906ZM113.307 243.425C114.853 242.262 114.933 240.152 113.507 238.906L114.823 237.4C117.226 239.5 117.049 243.113 114.51 245.024L113.307 243.425ZM112.243 263.669C113.006 262.351 113.514 259.81 113.644 256.343C113.772 252.928 113.53 248.775 112.918 244.362L114.899 244.087C115.523 248.588 115.776 252.861 115.643 256.418C115.511 259.921 115.002 262.896 113.974 264.671L112.243 263.669ZM74.929 259.514C76.2925 260.806 79.0168 262.235 82.545 263.513C86.036 264.777 90.1913 265.85 94.3078 266.49C98.4328 267.132 102.465 267.329 105.727 266.877C109.043 266.416 111.283 265.327 112.243 263.669L113.974 264.671C112.532 267.162 109.473 268.376 106.002 268.858C102.476 269.347 98.2317 269.124 94.0006 268.467C89.761 267.808 85.4803 266.703 81.864 265.393C78.2849 264.097 75.2307 262.556 73.553 260.965L74.929 259.514ZM62.2324 232.076C63.1991 231.82 63.1991 231.82 63.1991 231.82C63.1992 231.82 63.1992 231.82 63.1993 231.821C63.1994 231.821 63.1997 231.822 63.2 231.823C63.2007 231.826 63.2017 231.83 63.203 231.835C63.2058 231.845 63.2099 231.861 63.2155 231.882C63.2266 231.923 63.2434 231.985 63.2655 232.067C63.3098 232.23 63.3759 232.471 63.4622 232.781C63.6348 233.4 63.8885 234.292 64.212 235.381C64.8593 237.559 65.7848 240.522 66.8983 243.661C68.0129 246.803 69.3099 250.105 70.6985 252.97C72.1005 255.862 73.5472 258.204 74.929 259.514L73.553 260.965C71.8937 259.392 70.3187 256.771 68.8988 253.842C67.4656 250.886 66.1407 247.508 65.0134 244.33C63.885 241.149 62.9488 238.151 62.2948 235.95C61.9677 234.849 61.7109 233.947 61.5357 233.318C61.448 233.004 61.3808 232.758 61.3353 232.591C61.3126 232.507 61.2953 232.443 61.2836 232.399C61.2778 232.377 61.2734 232.361 61.2704 232.349C61.2689 232.344 61.2677 232.339 61.2669 232.336C61.2665 232.335 61.2662 232.334 61.266 232.333C61.2659 232.333 61.2658 232.332 61.2658 232.332C61.2657 232.332 61.2657 232.332 62.2324 232.076Z" fill="#2D2D2D" mask="url(#path-27-inside-2)"/>
+<path d="M79.4114 256.095C71.8786 254.168 68.3795 243.213 77.0805 243.213C79.4114 243.213 83.2224 243.261 84.7229 245.177L96.5279 232.487C104.744 220.847 101.777 194.147 71.9679 214.932C61.1118 222.502 58.8366 231.457 60.6374 241.461C62.0833 249.493 73.1359 261.917 81.2292 263.301L79.4114 256.095Z" fill="#0070CC" stroke="#2D2D2D" stroke-linejoin="round"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M150.425 325.532L133.509 310.244L125.613 354.644L132.683 386.296H72.1541C69.0096 388.611 66.1872 390.415 63.8528 391.508C44.4343 400.594 51.057 331.098 52.6372 320.037C53.9014 311.188 71.5889 295.741 82.4982 291.168V277.11L104.272 274.538L106.416 282.068C115.761 281.794 130.038 281.826 132.683 283.617C134.558 284.887 135.709 286.661 136.357 288.162L157.251 311.778C159.164 313.94 162.668 313.426 163.878 310.805L182.551 270.373L192.312 270.374C187.556 291.649 181.621 313.789 174.295 324.195C167.98 333.163 163.983 336.798 150.425 325.532ZM70.4235 330.36C70.0734 330.983 69.8869 331.487 69.8869 331.851C69.8869 336.082 69.3965 345.125 68.9527 353.309C68.5859 360.073 68.251 366.249 68.251 368.637L75.2172 362.8C75.4505 351.442 73.9454 339.661 71.1094 333.232C70.724 332.358 70.5009 331.397 70.4235 330.36Z" fill="#2D2D2D"/>
+<path d="M133.509 310.244L133.844 309.873L133.175 309.268L133.017 310.157L133.509 310.244ZM150.425 325.532L150.09 325.903L150.098 325.91L150.106 325.916L150.425 325.532ZM125.613 354.644L125.121 354.556L125.103 354.655L125.125 354.753L125.613 354.644ZM132.683 386.296V386.796H133.307L133.171 386.187L132.683 386.296ZM72.1541 386.296V385.796H71.9899L71.8577 385.894L72.1541 386.296ZM63.8528 391.508L64.0647 391.961L63.8528 391.508ZM52.6372 320.037L53.1322 320.108L52.6372 320.037ZM82.4982 291.168L82.6915 291.63L82.9982 291.501V291.168H82.4982ZM82.4982 277.11L82.4395 276.614L81.9982 276.666V277.11H82.4982ZM104.272 274.538L104.753 274.401L104.636 273.992L104.213 274.042L104.272 274.538ZM106.416 282.068L105.935 282.205L106.041 282.58L106.43 282.568L106.416 282.068ZM132.683 283.617L132.402 284.031L132.683 283.617ZM136.357 288.162L135.898 288.36L135.93 288.434L135.983 288.493L136.357 288.162ZM157.251 311.778L156.876 312.109L157.251 311.778ZM163.878 310.805L164.332 311.014L163.878 310.805ZM182.551 270.373L182.551 269.873L182.231 269.873L182.097 270.163L182.551 270.373ZM192.312 270.374L192.8 270.483L192.936 269.874L192.312 269.874L192.312 270.374ZM174.295 324.195L173.886 323.907L174.295 324.195ZM70.4235 330.36L70.9221 330.323L70.7987 328.671L69.9875 330.115L70.4235 330.36ZM68.9527 353.309L69.452 353.336L68.9527 353.309ZM68.251 368.637H67.751V369.708L68.5721 369.02L68.251 368.637ZM75.2172 362.8L75.5384 363.184L75.7125 363.038L75.7171 362.811L75.2172 362.8ZM71.1094 333.232L71.5669 333.03L71.1094 333.232ZM133.174 310.615L150.09 325.903L150.761 325.161L133.844 309.873L133.174 310.615ZM126.105 354.731L134.001 310.332L133.017 310.157L125.121 354.556L126.105 354.731ZM133.171 386.187L126.101 354.535L125.125 354.753L132.195 386.405L133.171 386.187ZM72.1541 386.796H132.683V385.796H72.1541V386.796ZM71.8577 385.894C68.7234 388.201 65.9316 389.983 63.6409 391.055L64.0647 391.961C66.4428 390.848 69.2958 389.021 72.4505 386.699L71.8577 385.894ZM63.6409 391.055C61.3321 392.135 59.4969 392.018 57.9969 391.076C56.4579 390.108 55.1803 388.216 54.1525 385.549C52.0998 380.223 51.1571 372.115 50.8702 363.311C50.2974 345.728 52.3449 325.619 53.1322 320.108L52.1423 319.966C51.3494 325.516 49.2955 345.686 49.8708 363.344C50.158 372.161 51.1018 380.414 53.2194 385.909C54.2768 388.652 55.6554 390.785 57.4648 391.922C59.3132 393.084 61.5189 393.152 64.0647 391.961L63.6409 391.055ZM53.1322 320.108C53.4309 318.017 54.7158 315.473 56.7068 312.73C58.6893 309.999 61.336 307.119 64.2917 304.365C70.21 298.849 77.3101 293.885 82.6915 291.63L82.3049 290.707C76.777 293.024 69.5787 298.07 63.6099 303.633C60.622 306.418 57.928 309.345 55.8976 312.142C53.8758 314.927 52.4757 317.632 52.1423 319.966L53.1322 320.108ZM82.9982 291.168V277.11H81.9982V291.168H82.9982ZM82.5568 277.607L104.33 275.035L104.213 274.042L82.4395 276.614L82.5568 277.607ZM103.791 274.675L105.935 282.205L106.897 281.932L104.753 274.401L103.791 274.675ZM132.963 283.203C132.56 282.93 131.981 282.717 131.304 282.541C130.616 282.362 129.783 282.212 128.844 282.085C126.965 281.832 124.622 281.668 122.082 281.569C116.998 281.371 111.079 281.431 106.401 281.569L106.43 282.568C111.097 282.431 116.99 282.371 122.043 282.568C124.57 282.667 126.876 282.829 128.71 283.076C129.627 283.2 130.417 283.344 131.052 283.509C131.698 283.676 132.144 283.856 132.402 284.031L132.963 283.203ZM136.816 287.964C136.142 286.402 134.939 284.54 132.963 283.203L132.402 284.031C134.178 285.233 135.276 286.92 135.898 288.36L136.816 287.964ZM157.625 311.447L136.732 287.831L135.983 288.493L156.876 312.109L157.625 311.447ZM163.424 310.595C162.365 312.888 159.299 313.339 157.625 311.447L156.876 312.109C159.028 314.542 162.97 313.963 164.332 311.014L163.424 310.595ZM182.097 270.163L163.424 310.595L164.332 311.014L183.005 270.582L182.097 270.163ZM192.312 269.874L182.551 269.873L182.551 270.873L192.312 270.874L192.312 269.874ZM174.703 324.483C178.414 319.213 181.748 311.014 184.744 301.511C187.745 291.995 190.421 281.125 192.8 270.483L191.824 270.265C189.447 280.897 186.778 291.735 183.791 301.21C180.799 310.697 177.502 318.771 173.886 323.907L174.703 324.483ZM150.106 325.916C153.51 328.745 156.34 330.661 158.776 331.79C161.217 332.922 163.291 333.277 165.164 332.943C167.037 332.609 168.638 331.598 170.155 330.131C171.667 328.669 173.125 326.725 174.703 324.483L173.886 323.907C172.307 326.149 170.897 328.022 169.46 329.412C168.028 330.797 166.599 331.671 164.989 331.959C163.378 332.246 161.516 331.958 159.197 330.883C156.873 329.806 154.119 327.951 150.745 325.147L150.106 325.916ZM69.9875 330.115C69.6319 330.748 69.3869 331.349 69.3869 331.851H70.3869C70.3869 331.625 70.5149 331.218 70.8594 330.605L69.9875 330.115ZM69.3869 331.851C69.3869 336.064 68.8977 345.09 68.4534 353.282L69.452 353.336C69.8953 345.161 70.3869 336.099 70.3869 331.851H69.3869ZM68.4534 353.282C68.0872 360.035 67.751 366.231 67.751 368.637H68.751C68.751 366.267 69.0846 360.11 69.452 353.336L68.4534 353.282ZM68.5721 369.02L75.5384 363.184L74.8961 362.417L67.9299 368.254L68.5721 369.02ZM70.652 333.434C73.4436 339.762 74.9501 351.456 74.7174 362.79L75.7171 362.811C75.9509 351.428 74.4471 339.559 71.5669 333.03L70.652 333.434ZM69.9249 330.397C70.0059 331.482 70.2404 332.501 70.652 333.434L71.5669 333.03C71.2077 332.216 70.9959 331.311 70.9221 330.323L69.9249 330.397Z" fill="black"/>
+<path d="M68.6369 388.727C87.4375 376.478 118.994 343.283 125.635 336.206L120.997 325.314L69.3784 367.64" stroke="black"/>
+<path d="M121.292 325.388C125.728 316.73 134.632 297.078 137.176 297.483C139.455 297.846 134.6 306.999 132.024 312.723C133.598 309.79 137.176 304.309 138.893 305.855C139.444 306.351 138.1 309.523 136.583 312.205C138.323 309.829 140.585 307.535 141.896 308.964C142.754 309.901 138.546 315.352 137.176 317.099C138.5 315.575 142.56 309.408 143.59 311.812C144.621 314.216 131.953 329.967 125.585 335.906L121.292 325.388Z" fill="#FFFDFD"/>
+<path d="M121.292 325.388L120.847 325.16L120.742 325.364L120.829 325.577L121.292 325.388ZM137.176 297.483L137.097 297.977L137.176 297.483ZM132.024 312.723L131.568 312.518C131.458 312.764 131.562 313.053 131.803 313.172C132.045 313.291 132.337 313.197 132.465 312.96L132.024 312.723ZM138.893 305.855L139.227 305.483L138.893 305.855ZM134.71 315.085L134.276 314.837C134.146 315.063 134.213 315.352 134.429 315.499C134.646 315.645 134.939 315.6 135.101 315.396L134.71 315.085ZM141.896 308.964L142.264 308.627V308.627L141.896 308.964ZM137.176 317.099L136.782 316.791C136.615 317.004 136.648 317.312 136.858 317.485C137.067 317.658 137.375 317.632 137.553 317.427L137.176 317.099ZM143.59 311.812L144.05 311.615L143.59 311.812ZM125.585 335.906L125.122 336.095L125.396 336.766L125.926 336.271L125.585 335.906ZM121.736 325.616C122.848 323.447 124.239 320.589 125.736 317.539C127.235 314.485 128.841 311.234 130.387 308.268C131.935 305.299 133.415 302.628 134.663 300.729C135.288 299.778 135.842 299.04 136.305 298.557C136.538 298.315 136.731 298.155 136.885 298.063C137.044 297.967 137.105 297.978 137.097 297.977L137.255 296.989C136.929 296.938 136.622 297.054 136.37 297.206C136.111 297.362 135.848 297.591 135.585 297.864C135.057 298.413 134.463 299.211 133.827 300.18C132.551 302.123 131.051 304.831 129.5 307.806C127.948 310.784 126.337 314.044 124.838 317.098C123.339 320.155 121.953 323.001 120.847 325.16L121.736 325.616ZM137.097 297.977C137.147 297.985 137.162 297.999 137.17 298.006C137.181 298.017 137.208 298.052 137.232 298.138C137.283 298.327 137.286 298.649 137.202 299.127C137.037 300.068 136.582 301.382 135.958 302.903C134.71 305.946 132.871 309.623 131.568 312.518L132.48 312.929C133.753 310.1 135.63 306.338 136.883 303.283C137.51 301.755 138.002 300.355 138.187 299.299C138.278 298.778 138.307 298.281 138.197 297.877C138.14 297.667 138.041 297.462 137.874 297.297C137.703 297.127 137.49 297.027 137.255 296.989L137.097 297.977ZM132.465 312.96C133.243 311.509 134.512 309.439 135.787 307.932C136.429 307.173 137.04 306.596 137.564 306.298C137.823 306.15 138.029 306.09 138.184 306.086C138.323 306.082 138.441 306.12 138.558 306.226L139.227 305.483C138.916 305.203 138.547 305.075 138.155 305.086C137.779 305.097 137.411 305.234 137.069 305.429C136.39 305.815 135.687 306.502 135.023 307.287C133.686 308.867 132.379 311.005 131.584 312.487L132.465 312.96ZM138.558 306.226C138.491 306.166 138.508 306.119 138.516 306.206C138.523 306.283 138.518 306.409 138.485 306.592C138.421 306.955 138.271 307.447 138.047 308.031C137.601 309.192 136.898 310.632 136.148 311.958L137.018 312.451C137.785 311.095 138.512 309.609 138.98 308.389C139.213 307.782 139.39 307.221 139.47 306.766C139.51 306.54 139.531 306.315 139.512 306.113C139.494 305.922 139.433 305.668 139.227 305.483L138.558 306.226ZM136.148 311.958C135.518 313.071 134.866 314.084 134.318 314.774L135.101 315.396C135.695 314.648 136.376 313.586 137.018 312.451L136.148 311.958ZM135.144 315.333C135.574 314.58 136.23 313.532 136.986 312.5L136.179 311.909C135.399 312.975 134.722 314.055 134.276 314.837L135.144 315.333ZM136.986 312.5C137.849 311.322 138.813 310.206 139.695 309.561C140.139 309.238 140.516 309.066 140.817 309.03C141.085 308.998 141.311 309.066 141.527 309.302L142.264 308.627C141.825 308.148 141.277 307.967 140.697 308.037C140.151 308.103 139.609 308.386 139.105 308.754C138.094 309.493 137.057 310.712 136.179 311.909L136.986 312.5ZM141.527 309.302C141.479 309.249 141.53 309.242 141.501 309.439C141.475 309.616 141.396 309.865 141.256 310.183C140.977 310.815 140.507 311.611 139.954 312.453C138.85 314.133 137.467 315.918 136.782 316.791L137.569 317.408C138.255 316.534 139.661 314.72 140.789 313.003C141.352 312.147 141.858 311.295 142.171 310.587C142.326 310.235 142.445 309.891 142.49 309.584C142.533 309.296 142.527 308.914 142.264 308.627L141.527 309.302ZM137.553 317.427C137.897 317.032 138.416 316.339 138.988 315.598C139.57 314.844 140.223 314.019 140.863 313.32C141.516 312.606 142.105 312.078 142.557 311.86C142.781 311.751 142.896 311.756 142.941 311.768C142.962 311.774 143.041 311.799 143.131 312.009L144.05 311.615C143.882 311.223 143.61 310.915 143.206 310.804C142.826 310.699 142.445 310.803 142.122 310.959C141.482 311.269 140.781 311.927 140.125 312.645C139.455 313.378 138.78 314.23 138.196 314.987C137.602 315.756 137.117 316.405 136.798 316.772L137.553 317.427ZM143.131 312.009C143.142 312.036 143.165 312.13 143.134 312.338C143.103 312.538 143.03 312.796 142.908 313.113C142.662 313.747 142.243 314.555 141.678 315.499C140.55 317.382 138.878 319.745 136.966 322.228C133.141 327.197 128.4 332.596 125.244 335.54L125.926 336.271C129.137 333.276 133.915 327.831 137.758 322.838C139.68 320.341 141.38 317.944 142.536 316.012C143.113 315.048 143.565 314.185 143.84 313.474C143.978 313.119 144.077 312.786 144.122 312.488C144.166 312.198 144.167 311.888 144.05 311.615L143.131 312.009ZM126.048 335.717L121.754 325.199L120.829 325.577L125.122 336.095L126.048 335.717Z" fill="black"/>
+<path d="M220.351 273.778H130.502C129.458 273.778 128.612 272.932 128.612 271.888L153.156 258.345L233.805 258.345V259.594C233.805 260.103 233.611 260.593 233.262 260.963L221.808 273.148C221.43 273.55 220.903 273.778 220.351 273.778Z" fill="#A9A9A9" stroke="#2D2D2D"/>
+<path d="M152.756 258.499V208.396C152.756 207.292 153.652 206.396 154.756 206.396H231.805C232.91 206.396 233.805 207.292 233.805 208.396V258.499H152.756Z" fill="white" stroke="#2D2D2D" stroke-linejoin="round"/>
+<path d="M128.612 271.656L152.621 258.499H233.521L220.721 271.656H128.612Z" fill="#C4C4C4" stroke="#2D2D2D" stroke-linejoin="round"/>
+<path d="M529.396 327.534C531.403 332.96 534.345 305.329 534.239 292.606L538.656 301.693C538.66 312.246 538.265 332.415 537.926 338.292C537.764 341.094 537.156 343.937 533.513 344.333C525.268 345.161 508.508 346.566 507.43 345.554C506.083 344.289 505.437 336.494 505.893 331.403C506.348 326.313 510.23 323.068 517.162 321.911C524.094 320.754 526.924 320.85 529.396 327.534Z" fill="#2D2D2D" stroke="#2D2D2D"/>
+<path d="M524.606 299.283C529.348 299.714 533.767 295.152 535.384 292.817L536.731 309.792C538.078 308.265 541.743 306.127 545.623 309.792C549.503 313.456 545.623 319.52 540.773 321.378L543.102 336.142C548.922 335.279 555.323 330.678 555.323 318.684C560.442 316.797 565.562 312.756 564.215 305.211C563.137 299.176 557.838 298.745 555.323 299.283L556.401 290.931C553.814 280.584 546.162 280.692 542.659 282.039C535.33 270.399 527.57 274.674 524.606 278.267C515.983 273.74 507.407 274.949 503.359 282.039C496.756 290.009 501.44 298.177 506.014 299.283C511.669 299.283 519.864 298.852 524.606 299.283Z" fill="#2D2D2D" stroke="#2D2D2D"/>
+<path d="M512.217 460.346C529.084 457.067 534.235 428.403 539.011 412.37C541.565 403.797 543.792 384.347 547.54 378.255C552.225 370.642 563.837 365.211 570.785 369.566C581.995 376.592 576.429 392.436 574.242 404.07C570.785 414.648 567.018 433.74 556.41 455.695C539.488 490.713 490.156 491.778 465.948 486.702V464.446L512.217 460.346Z" fill="#D4E4F3" stroke="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M447.681 411.914C453.348 411.914 457.943 407.32 457.943 401.653C457.943 395.985 453.348 391.391 447.681 391.391C442.24 391.391 437.788 395.626 437.441 400.979L410.747 422.343L412.4 424.785L408.607 427.352L410.544 430.215L414.337 427.648L416.074 430.215L445.536 411.69C446.228 411.837 446.946 411.914 447.681 411.914Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M428.641 425.778V449.615L425.117 448.776V425.97L416.723 413.192L424.142 408.319L433.51 422.579L428.641 425.778Z" fill="#C4C4C4"/>
+<path d="M428.641 425.778L428.366 425.36L428.141 425.508V425.778H428.641ZM428.641 449.615L428.525 450.101L429.141 450.248V449.615H428.641ZM425.117 448.776H424.617V449.17L425.001 449.262L425.117 448.776ZM425.117 425.97H425.617V425.82L425.534 425.695L425.117 425.97ZM416.723 413.192L416.449 412.774L416.031 413.049L416.305 413.467L416.723 413.192ZM424.142 408.319L424.56 408.044L424.286 407.626L423.868 407.901L424.142 408.319ZM433.51 422.579L433.784 422.997L434.202 422.723L433.928 422.305L433.51 422.579ZM428.141 425.778V449.615H429.141V425.778H428.141ZM428.756 449.128L425.232 448.289L425.001 449.262L428.525 450.101L428.756 449.128ZM425.617 448.776V425.97H424.617V448.776H425.617ZM425.534 425.695L417.141 412.918L416.305 413.467L424.699 426.244L425.534 425.695ZM416.998 413.61L424.417 408.737L423.868 407.901L416.449 412.774L416.998 413.61ZM423.724 408.593L433.092 422.854L433.928 422.305L424.56 408.044L423.724 408.593ZM433.235 422.161L428.366 425.36L428.915 426.196L433.784 422.997L433.235 422.161Z" fill="#2D2D2D"/>
+<path d="M526.301 461.188V517.006H420.45V447.067L526.301 461.188Z" fill="#EBEBEB" stroke="#2D2D2D"/>
+<path d="M401.909 436.792L420.065 446.627V516.778L401.909 503.537V436.792Z" fill="#EBEBEB" stroke="#2D2D2D"/>
+<circle cx="308.57" cy="345.402" r="76.0987" fill="white" stroke="black"/>
+<path d="M328.119 314.624C328.119 314.624 360.078 348.103 317.903 361.541C309.775 364.182 281.315 369.954 278.93 381.714C278.93 381.714 269.733 355.157 295.777 346.974C322.513 338.625 332.37 324.695 328.119 314.624Z" fill="#ED1C24"/>
+<path d="M329.517 362.597C329.517 362.597 337.62 386.863 309.674 383.9C306.949 383.522 287.009 380.354 280.25 385.359C280.25 385.359 283.628 374.512 301.186 372.282C318.689 370.038 325.599 370.186 329.517 362.597Z" fill="#ED1C24"/>
+<path d="M282.571 326.806C303.529 314.088 310.924 304.728 307.564 289.137C307.564 289.137 351.387 320.976 294.227 341.329C273.786 348.604 273.382 361.541 273.264 361.979C271.321 358.462 261.614 339.525 282.571 326.806Z" fill="#ED1C24"/>
+<rect x="132.471" y="120.014" width="52.4254" height="43.0416" rx="7" fill="#0070CC"/>
+<path d="M168.065 134.975L174.662 141.572L168.065 148.169" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M149.301 148.054L142.704 141.456L149.301 134.859" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M155.568 150.246L162.129 132.825" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+<circle cx="172.366" cy="416.497" r="2.29631" transform="rotate(90 172.366 416.497)" fill="white"/>
+<circle cx="161.599" cy="416.497" r="2.29631" transform="rotate(90 161.599 416.497)" fill="white"/>
+<circle cx="150.831" cy="416.497" r="2.29631" transform="rotate(90 150.831 416.497)" fill="white"/>
+<circle cx="140.064" cy="416.497" r="2.29631" transform="rotate(90 140.064 416.497)" fill="white"/>
+<circle cx="172.366" cy="427.265" r="2.29631" transform="rotate(90 172.366 427.265)" fill="white"/>
+<circle cx="161.599" cy="427.265" r="2.29631" transform="rotate(90 161.599 427.265)" fill="white"/>
+<circle cx="150.831" cy="427.265" r="2.29631" transform="rotate(90 150.831 427.265)" fill="white"/>
+<circle cx="140.064" cy="427.265" r="2.29631" transform="rotate(90 140.064 427.265)" fill="white"/>
+<circle cx="172.366" cy="438.032" r="2.29631" transform="rotate(90 172.366 438.032)" fill="white"/>
+<circle cx="161.599" cy="438.032" r="2.29631" transform="rotate(90 161.599 438.032)" fill="white"/>
+<circle cx="150.831" cy="438.032" r="2.29631" transform="rotate(90 150.831 438.032)" fill="white"/>
+<circle cx="140.064" cy="438.032" r="2.29631" transform="rotate(90 140.064 438.032)" fill="white"/>
+<circle cx="172.366" cy="448.799" r="2.29631" transform="rotate(90 172.366 448.799)" fill="white"/>
+<circle cx="161.599" cy="448.799" r="2.29631" transform="rotate(90 161.599 448.799)" fill="white"/>
+<circle cx="150.831" cy="448.799" r="2.29631" transform="rotate(90 150.831 448.799)" fill="white"/>
+<circle cx="140.064" cy="448.799" r="2.29631" transform="rotate(90 140.064 448.799)" fill="white"/>
+<circle cx="172.366" cy="459.567" r="2.29631" transform="rotate(90 172.366 459.567)" fill="white"/>
+<circle cx="161.599" cy="459.567" r="2.29631" transform="rotate(90 161.599 459.567)" fill="white"/>
+<circle cx="150.831" cy="459.567" r="2.29631" transform="rotate(90 150.831 459.567)" fill="white"/>
+<circle cx="140.064" cy="459.567" r="2.29631" transform="rotate(90 140.064 459.567)" fill="white"/>
+<rect x="169.528" y="422.501" width="75.1906" height="86.615" rx="9.5" fill="#91C2EA" stroke="black"/>
+<path d="M183.95 441.022C183.651 441.022 214.373 441.022 229.771 441.022" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M183.95 451.442C183.651 451.442 214.373 451.442 229.771 451.442" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M183.95 461.863C183.651 461.863 214.373 461.863 229.771 461.863" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M183.95 472.283C183.651 472.283 214.373 472.283 229.771 472.283" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M183.95 482.703C183.651 482.703 214.373 482.703 229.771 482.703" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M183.95 493.124C183.651 493.124 214.373 493.124 229.771 493.124" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M166.004 252.296V218.648H216.244V252.296H166.004Z" fill="#EFEFEF" stroke="#2D2D2D"/>
+<path d="M170.004 248.296V214.648H220.244V248.296H170.004Z" fill="#EFEFEF" stroke="#2D2D2D"/>
+<rect x="169.512" y="211.894" width="51.2176" height="5.30369" fill="#2D2D2D"/>
+<circle cx="173.963" cy="214.648" r="1.07875" fill="white"/>
+<circle cx="178.121" cy="214.648" r="1.07875" fill="white"/>
+<path d="M176.209 223.226H214.713" stroke="#2D2D2D"/>
+<path d="M176.209 229.478H214.713" stroke="#2D2D2D"/>
+<path d="M176.209 235.731H214.713" stroke="#2D2D2D"/>
+<path d="M176.209 241.984H192.063" stroke="#2D2D2D"/>
+<circle cx="182.278" cy="214.648" r="1.07875" fill="white"/>
+<path d="M485.12 229.58C485.12 224.333 480.867 220.08 475.62 220.08H408.843C403.596 220.08 399.343 224.333 399.343 229.58V251.046C399.343 256.293 403.596 260.546 408.843 260.546H485.12V229.58Z" fill="white" stroke="black"/>
+<circle cx="424.408" cy="240.313" r="3.59593" fill="#2D2D2D"/>
+<circle cx="442.231" cy="240.313" r="3.59593" fill="#2D2D2D"/>
+<circle cx="460.055" cy="240.313" r="3.59593" fill="#2D2D2D"/>
+</svg>
diff --git a/public/img/community/b9-icon-code.svg b/public/img/community/b9-icon-code.svg
new file mode 100644
index 0000000..b3bdde7
--- /dev/null
+++ b/public/img/community/b9-icon-code.svg
@@ -0,0 +1,6 @@
+<svg width="35" height="41" viewBox="0 0 35 41" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="1.17859" y="1.09863" width="32.3648" height="38.2129" rx="4" stroke="black" stroke-width="2"/>
+<path d="M11.1187 16.2754L7.1261 20.0776L11.1187 24.0704" stroke="#0070CC" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M23.6033 24.0703L27.5959 20.2681L23.6033 16.2753" stroke="#0070CC" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M15.0773 25.8447L19.2939 14.5643" stroke="#0070CC" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+</svg>
diff --git a/public/img/community/b9-icon-paper.svg b/public/img/community/b9-icon-paper.svg
new file mode 100644
index 0000000..9b659c2
--- /dev/null
+++ b/public/img/community/b9-icon-paper.svg
@@ -0,0 +1,5 @@
+<svg width="33" height="40" viewBox="0 0 33 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M20.6942 1.3877V9.97409C20.6942 11.6309 22.0373 12.9741 23.6942 12.9741H30.1888" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M1.68309 5.20019C1.68309 2.99105 3.47395 1.2002 5.68309 1.2002H21.2072L30.0549 9.71017C30.839 10.4643 31.282 11.5052 31.282 12.5931V34.9365C31.282 37.1456 29.4912 38.9365 27.282 38.9365H5.68309C3.47395 38.9365 1.68309 37.1456 1.68309 34.9365V5.20019Z" stroke="black" stroke-width="2"/>
+<path d="M17.2071 15.1886C16.8166 14.7981 16.1834 14.7981 15.7929 15.1886L9.42893 21.5526C9.03841 21.9431 9.03841 22.5763 9.42893 22.9668C9.81946 23.3573 10.4526 23.3573 10.8431 22.9668L16.5 17.31L22.1569 22.9668C22.5474 23.3573 23.1805 23.3573 23.5711 22.9668C23.9616 22.5763 23.9616 21.9431 23.5711 21.5526L17.2071 15.1886ZM15.5 30.7573C15.5 31.3096 15.9477 31.7573 16.5 31.7573C17.0523 31.7573 17.5 31.3096 17.5 30.7573L15.5 30.7573ZM15.5 15.8958L15.5 30.7573L17.5 30.7573L17.5 15.8958L15.5 15.8958Z" fill="#0070CC"/>
+</svg>
diff --git a/public/img/community/b9-wave.svg b/public/img/community/b9-wave.svg
new file mode 100644
index 0000000..23a8ce8
--- /dev/null
+++ b/public/img/community/b9-wave.svg
@@ -0,0 +1,18 @@
+<svg width="271" height="278" viewBox="0 0 271 278" fill="none" xmlns="http://www.w3.org/2000/svg">
+<mask id="mask0" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="271" height="278">
+<rect y="0.933594" width="271" height="277.066" rx="10" fill="#F6F6F6"/>
+</mask>
+<g mask="url(#mask0)">
+<g opacity="0.3">
+<path d="M494.777 201.296L259.325 79.7058C228.251 63.6588 190.583 73.3377 172.724 101.957L32.9624 325.943" stroke="#91C2EA" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M499.223 216.851L256.271 91.3877C229.434 77.529 196.902 85.888 181.479 110.605L37.4075 341.498" stroke="#91C2EA" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M503.946 233.377L260.994 107.914C234.158 94.0554 201.625 102.414 186.202 127.131L42.1306 358.024" stroke="#91C2EA" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M508.669 249.904L265.717 124.44C238.88 110.582 206.348 118.941 190.925 143.658L46.8535 374.55" stroke="#91C2EA" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M513.392 266.43L270.44 140.967C243.603 127.108 211.071 135.467 195.648 160.184L51.5766 391.077" stroke="#91C2EA" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M518.115 282.956L275.163 157.493C248.326 143.634 215.794 151.993 200.371 176.711L56.2995 407.603" stroke="#91C2EA" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M522.838 299.483L279.886 174.02C253.049 160.161 220.517 168.52 205.094 193.237L61.0225 424.13" stroke="#91C2EA" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M527.561 316.01L284.609 190.546C257.772 176.688 225.24 185.047 209.817 209.764L65.7455 440.656" stroke="#91C2EA" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M532.284 332.537L289.332 207.073C262.495 193.215 229.963 201.574 214.54 226.291L70.4685 457.183" stroke="#91C2EA" stroke-linecap="round" stroke-linejoin="round"/>
+</g>
+</g>
+</svg>
diff --git a/public/img/downloads/hero.svg b/public/img/downloads/hero.svg
new file mode 100644
index 0000000..fa84b98
--- /dev/null
+++ b/public/img/downloads/hero.svg
@@ -0,0 +1,38 @@
+<svg width="698" height="495" viewBox="0 0 698 495" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M385.314 130.402L422.178 209.832L321.465 267.979L183.888 246.695L147.024 167.265L247.737 109.118L385.314 130.402Z" fill="#0070CC" stroke="white"/>
+<path d="M147.32 167.13L183.976 246.192V308.005L147.32 228.942V167.13Z" fill="#0070CC" stroke="white"/>
+<path d="M183.976 246.551L321.347 266.856V328.669L183.976 308.364V246.551Z" fill="#0070CC" stroke="white"/>
+<path d="M196.978 287.61L270.114 298.42V310.246L196.978 299.436V287.61Z" fill="#0070CC" stroke="white"/>
+<path d="M422.107 209.85L321.347 266.856V328.669L422.107 271.663V209.85Z" fill="#0070CC" stroke="white"/>
+<path d="M414.022 257.202C414.022 252.555 410.759 250.671 406.734 252.995C402.709 255.319 399.446 260.97 399.446 265.618C399.446 270.265 402.709 272.149 406.734 269.825C410.759 267.501 414.022 261.85 414.022 257.202Z" fill="#0070CC" stroke="white"/>
+<path d="M385.314 58.4784L422.178 137.909L321.465 196.055L183.888 174.772L147.024 95.3421L247.737 37.1952L385.314 58.4784Z" fill="#0070CC" stroke="white"/>
+<path d="M147.32 95.2065L183.976 174.269V236.081L147.32 157.019V95.2065Z" fill="#0070CC" stroke="white"/>
+<path d="M183.976 174.628L321.347 194.933V256.745L183.976 236.441V174.628Z" fill="#0070CC" stroke="white"/>
+<path d="M196.978 214.932L270.114 225.742V237.567L196.978 226.757V214.932Z" fill="#0070CC" stroke="white"/>
+<path d="M422.107 137.927L321.347 194.933V256.745L422.107 199.739V137.927Z" fill="#0070CC" stroke="white"/>
+<path d="M414.022 185.827C414.022 181.179 410.759 179.296 406.734 181.619C402.709 183.943 399.446 189.595 399.446 194.242C399.446 198.89 402.709 200.774 406.734 198.45C410.759 196.126 414.022 190.475 414.022 185.827Z" fill="#0070CC" stroke="white"/>
+<path d="M597.213 253.402L634.077 332.832L533.364 390.979L395.787 369.695L358.923 290.265L459.636 232.118L597.213 253.402Z" fill="#0070CC" stroke="white"/>
+<path d="M359.219 290.13L395.875 369.192V431.005L359.219 351.942V290.13Z" fill="#0070CC" stroke="white"/>
+<path d="M395.875 369.551L533.246 389.856V451.669L395.875 431.364V369.551Z" fill="#0070CC" stroke="white"/>
+<path d="M408.877 410.61L482.013 421.42V433.246L408.877 422.435V410.61Z" fill="#0070CC" stroke="white"/>
+<path d="M634.006 332.85L533.246 389.856V451.668L634.006 394.663V332.85Z" fill="#0070CC" stroke="white"/>
+<path d="M625.921 380.202C625.921 375.555 622.658 373.671 618.633 375.995C614.608 378.319 611.345 383.97 611.345 388.618C611.345 393.265 614.608 395.149 618.633 392.825C622.658 390.501 625.921 384.85 625.921 380.202Z" fill="#0070CC" stroke="white"/>
+<path d="M597.213 181.478L634.077 260.908L533.364 319.055L395.787 297.772L358.923 218.342L459.636 160.195L597.213 181.478Z" fill="#0070CC" stroke="white"/>
+<path d="M359.219 218.207L395.875 297.269V359.081L359.219 280.019V218.207Z" fill="#0070CC" stroke="white"/>
+<path d="M395.875 297.628L533.246 317.933V379.745L395.875 359.441V297.628Z" fill="#0070CC" stroke="white"/>
+<path d="M408.877 337.932L482.013 348.742V360.567L408.877 349.757V337.932Z" fill="#0070CC" stroke="white"/>
+<path d="M634.006 260.927L533.246 317.933V379.745L634.006 322.739V260.927Z" fill="#0070CC" stroke="white"/>
+<path d="M625.921 308.827C625.921 304.179 622.658 302.296 618.633 304.619C614.608 306.943 611.345 312.595 611.345 317.242C611.345 321.89 614.608 323.774 618.633 321.45C622.658 319.126 625.921 313.475 625.921 308.827Z" fill="#0070CC" stroke="white"/>
+<path d="M302.213 295.402L339.077 374.832L238.364 432.979L100.787 411.695L63.923 332.265L164.636 274.118L302.213 295.402Z" fill="#0070CC" stroke="white"/>
+<path d="M64.2189 332.13L100.875 411.192V473.005L64.2189 393.942V332.13Z" fill="#0070CC" stroke="white"/>
+<path d="M100.875 411.551L238.246 431.856V493.669L100.875 473.364V411.551Z" fill="#0070CC" stroke="white"/>
+<path d="M113.876 452.61L187.013 463.42V475.246L113.876 464.435V452.61Z" fill="#0070CC" stroke="white"/>
+<path d="M339.006 374.85L238.246 431.856V493.668L339.006 436.663V374.85Z" fill="#0070CC" stroke="white"/>
+<path d="M330.921 422.202C330.921 417.555 327.658 415.671 323.633 417.995C319.608 420.319 316.345 425.97 316.345 430.618C316.345 435.265 319.608 437.149 323.633 434.825C327.658 432.501 330.921 426.85 330.921 422.202Z" fill="#0070CC" stroke="white"/>
+<path d="M302.213 223.478L339.077 302.908L238.364 361.055L100.787 339.772L63.923 260.342L164.636 202.195L302.213 223.478Z" fill="#0070CC" stroke="white"/>
+<path d="M64.2189 260.207L100.875 339.269V401.081L64.2189 322.019V260.207Z" fill="#0070CC" stroke="white"/>
+<path d="M100.875 339.628L238.246 359.933V421.745L100.875 401.441V339.628Z" fill="#0070CC" stroke="white"/>
+<path d="M113.876 379.932L187.013 390.742V402.567L113.876 391.757V379.932Z" fill="#0070CC" stroke="white"/>
+<path d="M339.006 302.927L238.246 359.933V421.745L339.006 364.739V302.927Z" fill="#0070CC" stroke="white"/>
+<path d="M330.921 350.827C330.921 346.179 327.658 344.296 323.633 346.619C319.608 348.943 316.345 354.595 316.345 359.242C316.345 363.89 319.608 365.774 323.633 363.45C327.658 361.126 330.921 355.475 330.921 350.827Z" fill="#0070CC" stroke="white"/>
+</svg>
diff --git a/public/img/downloads/icon-download.svg b/public/img/downloads/icon-download.svg
new file mode 100644
index 0000000..f8b0205
--- /dev/null
+++ b/public/img/downloads/icon-download.svg
@@ -0,0 +1,5 @@
+<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M19 13V17C19 17.5304 18.7893 18.0391 18.4142 18.4142C18.0391 18.7893 17.5304 19 17 19H3C2.46957 19 1.96086 18.7893 1.58579 18.4142C1.21071 18.0391 1 17.5304 1 17V13" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M5 8L10 13L15 8" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M10 13V1" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+</svg>
diff --git a/public/img/downloads/icon-shevron.svg b/public/img/downloads/icon-shevron.svg
new file mode 100644
index 0000000..31d7f9c
--- /dev/null
+++ b/public/img/downloads/icon-shevron.svg
@@ -0,0 +1,3 @@
+<svg width="12" height="6" viewBox="0 0 12 6" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M1 1L6.18519 5L11 1" stroke="black" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
+</svg>
diff --git a/public/img/events/b1-mainpic.svg b/public/img/events/b1-mainpic.svg
new file mode 100644
index 0000000..fdbd5a7
--- /dev/null
+++ b/public/img/events/b1-mainpic.svg
@@ -0,0 +1,81 @@
+<svg width="451" height="552" viewBox="0 0 451 552" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="102.824" y="25.7153" width="267.951" height="500.353" rx="9.5" stroke="#2D2D2D"/>
+<path d="M102.324 53.2349H371.037" stroke="#2D2D2D"/>
+<ellipse cx="119.337" cy="40.226" rx="4.00318" ry="4.00282" fill="#2D2D2D"/>
+<ellipse cx="133.349" cy="40.226" rx="4.00318" ry="4.00282" fill="#2D2D2D"/>
+<ellipse cx="147.36" cy="40.226" rx="4.00318" ry="4.00282" fill="#2D2D2D"/>
+<path d="M163.372 394.684L151.363 407.193L162.372 419.702" stroke="#2D2D2D"/>
+<path d="M181.387 419.702L193.396 407.193L182.387 394.684" stroke="#2D2D2D"/>
+<ellipse cx="167.376" cy="407.693" rx="1.50119" ry="1.50106" fill="#2D2D2D"/>
+<ellipse cx="173.38" cy="407.693" rx="1.50119" ry="1.50106" fill="#2D2D2D"/>
+<ellipse cx="179.385" cy="407.693" rx="1.50119" ry="1.50106" fill="#2D2D2D"/>
+<rect x="78.9857" y="66.9521" width="49.8596" height="48.2223" rx="9.5" fill="white" stroke="#2D2D2D"/>
+<path d="M99.1409 83.1063C99.1409 81.8401 99.6439 80.6257 100.539 79.7304C101.435 78.835 102.649 78.332 103.916 78.332C105.182 78.332 106.396 78.835 107.292 79.7304C108.187 80.6257 108.69 81.8401 108.69 83.1063V91.0635C108.69 92.3297 108.187 93.544 107.292 94.4394C106.396 95.3347 105.182 95.8377 103.916 95.8377C102.649 95.8377 101.435 95.3347 100.539 94.4394C99.6439 93.544 99.1409 92.3297 99.1409 91.0635V83.1063Z" fill="#ED1C24"/>
+<path d="M96.7535 88.6758C96.9646 88.6758 97.167 88.7596 97.3163 88.9088C97.4655 89.0581 97.5493 89.2605 97.5493 89.4715V91.0629C97.5493 92.7512 98.2201 94.3704 99.414 95.5642C100.608 96.758 102.227 97.4286 103.916 97.4286C105.604 97.4286 107.223 96.758 108.417 95.5642C109.611 94.3704 110.282 92.7512 110.282 91.0629V89.4715C110.282 89.2605 110.366 89.0581 110.515 88.9088C110.664 88.7596 110.867 88.6758 111.078 88.6758C111.289 88.6758 111.491 88.7596 111.64 88.9088C111.79 89.0581 111.873 89.2605 111.873 89.4715V91.0629C111.873 93.0355 111.141 94.9379 109.817 96.4008C108.494 97.8637 106.674 98.783 104.711 98.9803V102.203H109.486C109.697 102.203 109.9 102.287 110.049 102.436C110.198 102.585 110.282 102.788 110.282 102.999C110.282 103.21 110.198 103.412 110.049 103.561C109.9 103.711 109.697 103.794 109.486 103.794H98.3451C98.1341 103.794 97.9317 103.711 97.7824 103.561C97.6332 103.412 97.5493 103.21 97.5493 102.999C97.5493 102.788 97.6332 102.585 97.7824 102.436C97.9317 102.287 98.1341 102.203 98.3451 102.203H103.12V98.9803C101.157 98.783 99.3373 97.8637 98.0139 96.4008C96.6905 94.9379 95.9577 93.0355 95.9578 91.0629V89.4715C95.9578 89.2605 96.0416 89.0581 96.1908 88.9088C96.3401 88.7596 96.5425 88.6758 96.7535 88.6758Z" fill="#ED1C24"/>
+<rect x="154.218" y="448.219" width="159.127" height="41.0296" rx="4.5" fill="#F6F6F6" stroke="#2D2D2D"/>
+<path d="M180.239 463.23C180.239 466.546 177.551 469.234 174.234 469.234C170.918 469.234 168.229 466.546 168.229 463.23C168.229 459.913 170.918 457.225 174.234 457.225C177.551 457.225 180.239 459.913 180.239 463.23Z" fill="#F6F6F6" stroke="#2D2D2D"/>
+<path d="M186.233 480.242H162.436C162.706 474.132 167.915 469.234 174.334 469.234C180.753 469.234 185.962 474.132 186.233 480.242Z" fill="#F6F6F6" stroke="#2D2D2D"/>
+<rect x="199.316" y="459.003" width="101.355" height="6.94149" rx="3" fill="white"/>
+<rect x="199.316" y="471.523" width="44.3025" height="6.94149" rx="3" fill="white"/>
+<rect x="281.594" y="375.252" width="126.472" height="93.5705" rx="9.5" fill="white" stroke="#2D2D2D"/>
+<path d="M282.295 393.987H407.362" stroke="#2D2D2D"/>
+<rect x="326.811" y="411.619" width="35.2667" height="35.2636" rx="17.6318" fill="#2D2D2D"/>
+<path d="M353.353 429.251L338.734 437.065L338.734 421.437L353.353 429.251Z" fill="white"/>
+<ellipse cx="294.273" cy="385.678" rx="3.2478" ry="3.24751" fill="#2D2D2D"/>
+<ellipse cx="303.008" cy="385.678" rx="3.2478" ry="3.24751" fill="#2D2D2D"/>
+<ellipse cx="311.743" cy="385.678" rx="3.2478" ry="3.24751" fill="#2D2D2D"/>
+<rect x="153.456" y="137.065" width="172.855" height="224.121" rx="4.5" fill="white" stroke="#2D2D2D"/>
+<path d="M273.632 210.436C273.632 210.436 320.939 260.022 258.51 279.926C246.478 283.837 204.35 292.386 200.819 309.804C200.819 309.804 187.205 270.469 225.756 258.35C265.332 245.984 279.924 225.352 273.632 210.436Z" fill="#ED1C24"/>
+<path d="M275.7 281.488C275.7 281.488 287.694 317.429 246.329 313.041C242.294 312.481 212.778 307.788 202.773 315.202C202.773 315.202 207.773 299.135 233.763 295.833C259.672 292.509 269.9 292.727 275.7 281.488Z" fill="#ED1C24"/>
+<path d="M206.208 228.478C237.231 209.641 248.178 195.778 243.204 172.686C243.204 172.686 308.073 219.844 223.462 249.989C193.204 260.763 192.606 279.925 192.432 280.574C189.555 275.364 175.186 247.316 206.208 228.478Z" fill="#ED1C24"/>
+<path d="M196.564 222.595C196.263 221.768 193.34 219.71 192.463 219.021L190.124 221.439C191.377 222.097 194.604 222.745 194.604 223.421C194.604 224.267 194.497 226.165 195.061 226.823C195.624 227.48 196.94 223.628 196.564 222.595Z" fill="white" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M195.036 224.869C195.091 223.991 193.233 220.938 192.704 219.956L189.594 221.238C190.48 222.341 193.179 224.224 192.909 224.845C192.571 225.62 191.714 227.317 191.968 228.145C192.222 228.973 194.967 225.967 195.036 224.869Z" fill="white" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M126.487 280.459C135.568 280.459 165.655 251.548 178.573 237.588L184.25 231.066C187.579 231.563 198.213 229.102 197.401 226.896C196.735 225.086 192.524 226.186 190.495 226.896C189.08 227.391 187.816 226.32 187.579 225.07C187.342 223.821 189.968 222.499 189.968 222.499C195.492 217.528 201.887 214.997 201.054 214.216C199.43 212.694 194.155 216.143 187.579 220.139C183.238 223.306 177.651 226.79 175.05 229.102L128.053 257.366L93.9728 230.092L65.9853 238.579C72.3788 246.537 117.406 280.459 126.487 280.459Z" fill="#FFFDFD"/>
+<path d="M178.573 237.588L178.94 237.927L178.945 237.922L178.95 237.916L178.573 237.588ZM65.9853 238.579L65.8402 238.1L65.1321 238.315L65.5955 238.892L65.9853 238.579ZM93.9728 230.092L94.2852 229.702L94.0796 229.538L93.8277 229.614L93.9728 230.092ZM128.053 257.366L127.74 257.756L128.012 257.974L128.31 257.794L128.053 257.366ZM175.05 229.102L175.308 229.53L175.347 229.506L175.382 229.475L175.05 229.102ZM184.25 231.066L184.324 230.571L184.053 230.531L183.873 230.738L184.25 231.066ZM187.579 225.07L187.088 225.163V225.163L187.579 225.07ZM190.495 226.896L190.33 226.424L190.495 226.896ZM197.401 226.896L197.871 226.723L197.401 226.896ZM187.579 220.139L187.32 219.712L187.302 219.723L187.285 219.735L187.579 220.139ZM201.054 214.216L201.396 213.851V213.851L201.054 214.216ZM189.968 222.499L190.193 222.946L190.253 222.916L190.303 222.871L189.968 222.499ZM178.206 237.248C171.758 244.217 161.019 254.922 150.762 263.882C145.633 268.362 140.634 272.398 136.359 275.31C134.22 276.767 132.273 277.935 130.588 278.738C128.89 279.546 127.509 279.959 126.487 279.959L126.487 280.959C127.736 280.959 129.281 280.468 131.018 279.641C132.766 278.808 134.76 277.609 136.922 276.137C141.245 273.192 146.278 269.127 151.42 264.635C161.707 255.649 172.471 244.919 178.94 237.927L178.206 237.248ZM126.487 279.959C125.468 279.959 123.856 279.471 121.746 278.529C119.657 277.597 117.147 276.251 114.356 274.604C108.775 271.31 102.109 266.83 95.5199 262.097C88.9319 257.365 82.4287 252.385 77.1752 248.093C71.906 243.788 67.9352 240.207 66.3751 238.265L65.5955 238.892C67.2322 240.929 71.2873 244.574 76.5425 248.867C81.8136 253.174 88.3334 258.166 94.9365 262.909C101.538 267.651 108.231 272.15 113.847 275.465C116.655 277.122 119.201 278.488 121.338 279.442C123.454 280.386 125.236 280.959 126.487 280.959L126.487 279.959ZM66.1304 239.057L94.1178 230.571L93.8277 229.614L65.8402 238.1L66.1304 239.057ZM93.6603 230.483L127.74 257.756L128.365 256.976L94.2852 229.702L93.6603 230.483ZM128.31 257.794L175.308 229.53L174.792 228.673L127.795 256.938L128.31 257.794ZM183.873 230.738L178.196 237.26L178.95 237.916L184.627 231.394L183.873 230.738ZM187.088 225.163C187.365 226.627 188.88 227.991 190.66 227.368L190.33 226.424C189.281 226.791 188.267 226.012 188.071 224.977L187.088 225.163ZM190.66 227.368C191.659 227.019 193.176 226.58 194.509 226.448C195.178 226.382 195.761 226.398 196.196 226.515C196.623 226.63 196.841 226.821 196.932 227.069L197.871 226.723C197.629 226.066 197.07 225.715 196.457 225.55C195.852 225.386 195.13 225.382 194.41 225.453C192.963 225.597 191.36 226.064 190.33 226.424L190.66 227.368ZM196.932 227.069C196.953 227.127 196.967 227.225 196.814 227.419C196.652 227.623 196.354 227.86 195.909 228.114C195.027 228.617 193.715 229.103 192.244 229.513C190.78 229.921 189.186 230.246 187.757 230.439C186.315 230.632 185.084 230.685 184.324 230.571L184.176 231.56C185.081 231.695 186.428 231.626 187.89 231.43C189.366 231.231 191.004 230.897 192.513 230.476C194.015 230.057 195.417 229.545 196.405 228.982C196.894 228.703 197.32 228.39 197.598 228.039C197.884 227.678 198.052 227.217 197.871 226.723L196.932 227.069ZM175.382 229.475C176.655 228.344 178.676 226.912 180.945 225.353C183.203 223.802 185.696 222.132 187.874 220.543L187.285 219.735C185.122 221.313 182.651 222.968 180.379 224.529C178.12 226.081 176.046 227.548 174.718 228.728L175.382 229.475ZM187.839 220.567C191.141 218.56 194.077 216.715 196.397 215.556C197.558 214.975 198.529 214.585 199.29 214.427C200.069 214.265 200.489 214.372 200.712 214.581L201.396 213.851C200.807 213.299 199.959 213.266 199.086 213.448C198.196 213.633 197.133 214.07 195.95 214.661C193.582 215.845 190.593 217.723 187.32 219.712L187.839 220.567ZM200.712 214.581C200.67 214.542 200.624 214.462 200.628 214.364C200.63 214.293 200.658 214.27 200.631 214.308C200.576 214.389 200.431 214.53 200.151 214.74C199.605 215.148 198.737 215.678 197.632 216.361C195.445 217.714 192.432 219.609 189.634 222.127L190.303 222.871C193.028 220.418 195.974 218.563 198.158 217.212C199.238 216.543 200.158 215.983 200.749 215.541C201.037 215.326 201.299 215.102 201.455 214.876C201.534 214.761 201.619 214.598 201.627 214.402C201.635 214.179 201.541 213.987 201.396 213.851L200.712 214.581ZM189.968 222.499C189.743 222.052 189.743 222.053 189.743 222.053C189.743 222.053 189.743 222.053 189.743 222.053C189.743 222.053 189.742 222.053 189.742 222.053C189.742 222.053 189.741 222.054 189.74 222.054C189.738 222.055 189.736 222.056 189.733 222.058C189.727 222.061 189.718 222.065 189.708 222.071C189.686 222.082 189.656 222.098 189.618 222.119C189.542 222.16 189.435 222.219 189.307 222.295C189.053 222.445 188.714 222.661 188.378 222.921C188.047 223.178 187.698 223.495 187.445 223.852C187.195 224.203 186.993 224.66 187.088 225.163L188.071 224.977C188.048 224.856 188.084 224.679 188.26 224.431C188.433 224.188 188.696 223.94 188.991 223.711C189.283 223.485 189.585 223.292 189.816 223.155C189.931 223.087 190.027 223.034 190.094 222.998C190.127 222.98 190.153 222.967 190.17 222.958C190.178 222.953 190.184 222.95 190.188 222.948C190.19 222.947 190.192 222.946 190.192 222.946C190.193 222.946 190.193 222.946 190.193 222.946C190.193 222.946 190.193 222.946 190.193 222.946C190.193 222.946 190.193 222.946 190.193 222.946C190.193 222.946 190.193 222.946 189.968 222.499Z" fill="#2D2D2D"/>
+<path d="M62.0387 215.946C53.7624 223.954 63.0399 236.857 68.7132 242.308L101.045 268.335L117.597 245.637L94.0762 224.288C86.8456 218.17 70.3151 207.937 62.0387 215.946Z" fill="#9C9C9C" stroke="#2D2D2D"/>
+<path d="M19.9974 541.622V525.731L15.0474 520.521L1.5 545.269L16.6105 551H40.8395C38.3384 541.205 25.9026 540.667 19.9974 541.622Z" fill="#2D2D2D" stroke="#2D2D2D"/>
+<path d="M106.233 531.36V523.756H114.715V539.061C114.715 540.023 115.4 540.848 116.344 541.026L122.249 542.141C122.896 542.263 123.56 542.271 124.214 542.203C134.957 541.08 139.31 547.548 140.162 550.955H99.8169C99.1084 550.955 98.6246 550.239 98.8894 549.581L106.233 531.36Z" fill="#2D2D2D" stroke="#2D2D2D" stroke-linecap="round"/>
+<path d="M78.5104 448.28C80.6253 444.473 85.7367 373.379 88.028 338.308L41.1791 328.157C44.8526 353.625 52.372 405.768 53.0611 410.591C53.9226 416.621 48.1829 422.728 45.7275 424.589C42.1371 427.31 45.0776 431.1 45.7275 435.172L7.65683 526.529L25.6346 533.931C42.3787 506.967 76.3955 452.087 78.5104 448.28Z" fill="#2D2D2D" stroke="#2D2D2D" stroke-linecap="round"/>
+<path d="M122.133 455.949C122.133 450.874 111.09 371.432 105.979 334.775L101.574 322.413L98.8274 305.541L53.9228 325.886C63.4405 359.019 82.8988 426.553 84.5909 431.629C86.2829 436.704 97.2811 502.828 102.569 535.256H122.133C122.133 510.935 122.133 461.025 122.133 455.949Z" fill="#2D2D2D" stroke="#2D2D2D" stroke-linecap="round"/>
+<path d="M83.821 217.626L80.2506 182.724L69.0373 179.449L60.3596 199.22C64.6932 206.951 76.8678 225.717 83.821 217.626Z" fill="white" stroke="#2D2D2D"/>
+<path d="M91.8718 188.889C83.1182 195.293 71.2377 183.707 64.7575 180.99C62.2491 177.123 61.3512 169.06 61.1003 164.797C60.7868 159.467 77.4051 150.061 80.5406 149.747C83.0491 149.497 90.8265 146.5 91.8718 150.889C94.2757 157.891 98.1699 184.281 91.8718 188.889Z" fill="white" stroke="#2D2D2D"/>
+<path d="M99.1853 142.015C99.3058 135.633 90.0158 130.794 81.6379 135.128C81.5882 135.154 81.5371 135.175 81.4843 135.194C80.7927 135.435 75.7057 137.323 73.7736 141.293C73.5727 141.705 73.1473 141.974 72.6881 141.975C68.3265 141.98 57.9775 145.021 54.5321 156.252C51.8291 165.064 59.8488 180.497 66.3336 182.239C66.6879 182.334 67.0518 182.175 67.2699 181.88L75.7198 170.452C78.6381 166.25 71.5907 170.331 71.5421 166.115C71.4964 162.153 74.2577 161.052 79.194 163.012C79.7263 163.223 80.3249 162.972 80.4484 162.413C81.2876 158.614 81.8914 149.268 86.8657 150.931C93.7512 153.232 99.1318 144.852 99.1853 142.015Z" fill="#C4C4C4" stroke="#2D2D2D"/>
+<path d="M109.776 334.703L84.7687 211.351C83.516 205.172 79.4229 199.945 73.7241 197.248L63.1171 192.227C62.6428 192.003 62.0778 192.177 61.8389 192.644C58.3882 199.391 53.362 215.923 51.5703 221.042C49.7015 226.381 40.3338 301.4 38.3315 336.327C68.5001 344.602 100.178 339.315 109.776 334.703Z" fill="#9C9C9C" stroke="#2D2D2D"/>
+<rect x="0.662224" y="0.247978" width="69.0243" height="48.5328" rx="4.5" transform="matrix(0.910185 -0.414202 0.414263 0.910157 45.7544 306.825)" fill="#EEEEEE" stroke="#2D2D2D"/>
+<path d="M87.9671 330.479C94.5241 331.985 105.038 333.752 105.196 335.525C105.339 337.114 102.552 336.281 98.2772 335.525C100.511 336.082 104.792 337.551 104.047 338.963C103.807 339.417 101.452 339.054 99.3971 338.491C101.285 339.255 103.206 340.382 102.47 341.502C101.987 342.237 97.6189 340.34 96.2151 339.718C97.4614 340.348 102.285 342.023 100.847 343.12C99.4096 344.218 85.6627 339.234 80.6019 335.973C63.9015 326.871 28.498 304.786 26.2731 295.982C24.0483 287.179 45.9077 235.217 52.058 227.07L67.143 252.123L49.0477 291.843L87.9671 330.479Z" fill="#FFFDFD"/>
+<path d="M87.9671 330.479L87.6149 330.834L87.7161 330.934L87.8552 330.966L87.9671 330.479ZM105.196 335.525L105.694 335.48L105.694 335.48L105.196 335.525ZM98.2772 335.525L98.3643 335.032C98.0991 334.986 97.8443 335.157 97.7882 335.421C97.7321 335.684 97.8948 335.945 98.1561 336.01L98.2772 335.525ZM104.047 338.963L104.489 339.197L104.489 339.197L104.047 338.963ZM97.1487 337.724L97.2826 337.243C97.0308 337.173 96.7675 337.308 96.6785 337.554C96.5895 337.8 96.7049 338.073 96.9433 338.18L97.1487 337.724ZM102.47 341.502L102.887 341.777L102.887 341.777L102.47 341.502ZM96.2151 339.718L96.4176 339.261C96.1696 339.151 95.8793 339.259 95.7632 339.504C95.6471 339.749 95.7476 340.042 95.9897 340.165L96.2151 339.718ZM100.847 343.12L100.544 342.723L100.544 342.723L100.847 343.12ZM80.6019 335.973L80.8727 335.553L80.8573 335.543L80.8412 335.534L80.6019 335.973ZM52.058 227.07L52.4863 226.812L52.1047 226.178L51.6589 226.768L52.058 227.07ZM67.143 252.123L67.598 252.33L67.7072 252.09L67.5714 251.865L67.143 252.123ZM49.0477 291.843L48.5927 291.635L48.4484 291.952L48.6955 292.198L49.0477 291.843ZM87.8552 330.966C91.1724 331.728 95.3869 332.534 98.8618 333.387C100.592 333.812 102.098 334.24 103.176 334.665C103.717 334.879 104.124 335.082 104.393 335.27C104.687 335.476 104.7 335.583 104.698 335.569L105.694 335.48C105.654 335.023 105.303 334.687 104.966 334.451C104.604 334.197 104.112 333.96 103.543 333.735C102.4 333.284 100.838 332.843 99.1003 332.416C95.6396 331.566 91.3188 330.736 88.079 329.992L87.8552 330.966ZM104.698 335.569C104.71 335.699 104.687 335.753 104.678 335.769C104.671 335.782 104.653 335.81 104.578 335.843C104.394 335.922 104.037 335.958 103.436 335.906C102.252 335.804 100.543 335.418 98.3643 335.032L98.1902 336.017C100.287 336.388 102.108 336.796 103.351 336.902C103.963 336.955 104.543 336.948 104.975 336.76C105.208 336.659 105.418 336.498 105.553 336.255C105.685 336.016 105.718 335.747 105.694 335.48L104.698 335.569ZM98.1561 336.01C99.2558 336.284 100.847 336.781 102.06 337.373C102.673 337.672 103.144 337.975 103.413 338.255C103.546 338.393 103.603 338.499 103.623 338.57C103.639 338.624 103.637 338.669 103.604 338.73L104.489 339.197C104.643 338.905 104.67 338.595 104.585 338.297C104.505 338.014 104.333 337.769 104.134 337.562C103.741 337.153 103.142 336.788 102.499 336.474C101.198 335.839 99.5324 335.323 98.3983 335.04L98.1561 336.01ZM103.604 338.73C103.66 338.624 103.737 338.61 103.695 338.625C103.663 338.636 103.593 338.652 103.472 338.661C103.232 338.679 102.887 338.663 102.462 338.612C101.618 338.511 100.54 338.286 99.529 338.009L99.2651 338.974C100.309 339.259 101.437 339.497 102.344 339.605C102.794 339.658 103.211 339.683 103.545 339.659C103.71 339.647 103.879 339.621 104.029 339.568C104.17 339.518 104.373 339.416 104.489 339.197L103.604 338.73ZM99.529 338.009C98.68 337.777 97.899 337.514 97.354 337.268L96.9433 338.18C97.5551 338.456 98.3915 338.735 99.2651 338.974L99.529 338.009ZM97.0147 338.206C97.5874 338.365 98.396 338.626 99.2096 338.955L99.5846 338.028C98.7316 337.683 97.8869 337.411 97.2826 337.243L97.0147 338.206ZM99.2096 338.955C100.142 339.332 101.036 339.782 101.599 340.248C101.882 340.483 102.038 340.687 102.099 340.846C102.149 340.975 102.145 341.085 102.052 341.228L102.887 341.777C103.162 341.359 103.195 340.909 103.032 340.487C102.882 340.096 102.578 339.761 102.237 339.478C101.551 338.91 100.54 338.414 99.5846 338.028L99.2096 338.955ZM102.052 341.228C102.118 341.127 102.192 341.152 102.069 341.165C101.966 341.175 101.801 341.167 101.569 341.128C101.112 341.051 100.508 340.874 99.8514 340.646C98.5451 340.194 97.1187 339.572 96.4176 339.261L96.0126 340.175C96.7152 340.487 98.1748 341.124 99.5241 341.591C100.195 341.824 100.862 342.023 101.403 342.114C101.671 342.159 101.937 342.183 102.171 342.159C102.385 342.138 102.7 342.061 102.887 341.777L102.052 341.228ZM95.9897 340.165C96.3186 340.331 96.8791 340.564 97.4677 340.82C98.0712 341.082 98.7298 341.377 99.3012 341.684C99.8902 342.001 100.32 342.295 100.522 342.536C100.622 342.654 100.612 342.696 100.612 342.674C100.613 342.628 100.645 342.646 100.544 342.723L101.151 343.518C101.409 343.321 101.605 343.046 101.612 342.696C101.619 342.37 101.459 342.096 101.288 341.893C100.952 341.491 100.367 341.122 99.7742 340.803C99.1637 340.475 98.4725 340.166 97.866 339.902C97.2446 339.633 96.7348 339.421 96.4405 339.272L95.9897 340.165ZM100.544 342.723C100.557 342.713 100.522 342.742 100.376 342.761C100.239 342.778 100.051 342.781 99.808 342.764C99.322 342.729 98.676 342.618 97.902 342.438C96.3578 342.08 94.3663 341.465 92.2513 340.71C88.0125 339.198 83.354 337.152 80.8727 335.553L80.3311 336.394C82.9106 338.056 87.6559 340.132 91.9152 341.652C94.0493 342.414 96.0804 343.043 97.6762 343.412C98.4723 343.597 99.1756 343.721 99.7364 343.761C100.016 343.781 100.276 343.782 100.502 343.753C100.717 343.726 100.958 343.665 101.151 343.518L100.544 342.723ZM80.8412 335.534C72.5046 330.991 59.4939 323.203 48.2936 315.455C42.6926 311.58 37.5552 307.723 33.6838 304.291C31.7477 302.575 30.1375 300.973 28.9463 299.536C27.7465 298.089 27.0082 296.85 26.7579 295.86L25.7884 296.105C26.0943 297.315 26.949 298.693 28.1764 300.174C29.4124 301.665 31.0636 303.305 33.0205 305.039C36.9349 308.509 42.1092 312.392 47.7247 316.277C58.9575 324.048 71.9988 331.854 80.3627 336.412L80.8412 335.534ZM26.7579 295.86C26.5082 294.872 26.5863 293.19 26.9826 290.914C27.3749 288.66 28.0646 285.897 28.9782 282.787C30.805 276.571 33.5152 269.011 36.49 261.463C39.4644 253.917 42.6998 246.393 45.5745 240.248C48.4577 234.085 50.9564 229.359 52.4571 227.371L51.6589 226.768C50.0845 228.854 47.5443 233.678 44.6687 239.825C41.7844 245.99 38.5409 253.533 35.5597 261.097C32.579 268.659 29.8571 276.249 28.0188 282.506C27.0998 285.633 26.3988 288.437 25.9974 290.742C25.6002 293.024 25.4819 294.892 25.7884 296.105L26.7579 295.86ZM51.6296 227.327L66.7147 252.38L67.5714 251.865L52.4863 226.812L51.6296 227.327ZM66.688 251.915L48.5927 291.635L49.5027 292.05L67.598 252.33L66.688 251.915ZM48.6955 292.198L87.6149 330.834L88.3194 330.124L49.4 291.488L48.6955 292.198Z" fill="#2D2D2D"/>
+<path d="M73.0362 217.699C63.2432 211.637 53.0054 223.792 49.1106 230.628L31.7951 268.348L57.8583 278.833L72.7963 250.801C76.9567 242.292 82.8291 223.76 73.0362 217.699Z" fill="#9C9C9C" stroke="#2D2D2D"/>
+<ellipse rx="3.2133" ry="3.21304" transform="matrix(0.972588 0.232536 -0.232575 0.972578 87.9251 314.568)" fill="#2D2D2D"/>
+<path d="M297.371 0.5C291.572 0.5 286.871 5.20102 286.871 11V152.113C286.871 157.912 291.572 162.613 297.371 162.613H309.508C311.401 162.613 312.951 164.118 313.006 166.011L313.333 177.122C313.37 178.363 314.812 179.025 315.776 178.244L332.472 164.729C334.163 163.36 336.273 162.613 338.449 162.613H439.5C445.299 162.613 450 157.912 450 152.113V11C450 5.20101 445.299 0.5 439.5 0.5H297.371Z" fill="#F6F6F6" stroke="#2D2D2D"/>
+<mask id="mask0_79:4" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="287" y="1" width="163" height="181">
+<path d="M439.492 1C445.019 1 449.5 5.48031 449.5 11.007V152.106C449.5 157.633 445.019 162.113 439.492 162.113H336.41L312.892 181.127L317.395 167.117L308.202 162.113H297.379C291.852 162.113 287.371 157.633 287.371 152.106V11.007C287.371 5.48031 291.852 1 297.379 1H439.492Z" fill="#C4C4C4"/>
+</mask>
+<g mask="url(#mask0_79:4)">
+<path d="M428.415 85.5363C428.415 94.782 435.905 102.277 445.145 102.277C454.384 102.277 461.875 94.782 461.875 85.5363C461.875 76.2905 454.384 68.7959 445.145 68.7959C435.905 68.7959 428.415 76.2905 428.415 85.5363Z" fill="#ED1C24" stroke="#2D2D2D"/>
+<path d="M437.256 97.6509L439.199 71.6307L423.378 67.5767L415.824 93.0256L437.256 97.6509Z" fill="white" stroke="#2D2D2D" stroke-linejoin="round"/>
+<mask id="path-52-inside-1_79:4" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M455.985 45.3676C455.985 45.3676 440.945 22.3415 426.658 25.2974C419.049 26.8717 413.906 38.4308 411.401 50.0007C410.932 50.1594 410.488 50.4078 410.098 50.7491C408.408 52.2261 408.519 54.752 410.317 56.1118C409.224 63.9932 409.439 71.0117 411.021 73.746C415.265 81.0802 439.993 75.3638 445.369 70.2657C450.744 65.1676 455.985 45.3676 455.985 45.3676Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M455.985 45.3676C455.985 45.3676 440.945 22.3415 426.658 25.2974C419.049 26.8717 413.906 38.4308 411.401 50.0007C410.932 50.1594 410.488 50.4078 410.098 50.7491C408.408 52.2261 408.519 54.752 410.317 56.1118C409.224 63.9932 409.439 71.0117 411.021 73.746C415.265 81.0802 439.993 75.3638 445.369 70.2657C450.744 65.1676 455.985 45.3676 455.985 45.3676Z" fill="white"/>
+<path d="M426.658 25.2974L426.86 26.2767L426.86 26.2767L426.658 25.2974ZM455.985 45.3676L456.951 45.6233L457.065 45.1932L456.822 44.8207L455.985 45.3676ZM411.401 50.0007L411.722 50.9479L412.259 50.7661L412.379 50.2122L411.401 50.0007ZM410.098 50.7491L409.439 49.9963L409.439 49.9963L410.098 50.7491ZM410.317 56.1118L411.308 56.2491L411.388 55.668L410.92 55.3142L410.317 56.1118ZM411.021 73.746L410.155 74.2468L411.021 73.746ZM445.369 70.2657L444.68 69.5402L445.369 70.2657ZM426.86 26.2767C430.135 25.5992 433.516 26.3966 436.813 28.0772C440.11 29.758 443.248 32.2857 445.982 34.9413C448.711 37.5921 451.006 40.3395 452.62 42.4276C453.427 43.4705 454.061 44.3462 454.493 44.9596C454.709 45.2662 454.874 45.507 454.984 45.6702C455.039 45.7517 455.081 45.8139 455.108 45.8551C455.122 45.8757 455.132 45.8911 455.139 45.901C455.142 45.906 455.144 45.9096 455.146 45.9118C455.147 45.913 455.147 45.9137 455.147 45.9142C455.147 45.9144 455.148 45.9145 455.148 45.9146C455.148 45.9145 455.147 45.9144 455.985 45.3676C456.822 44.8207 456.822 44.8204 456.822 44.82C456.821 44.8198 456.821 44.8193 456.821 44.8188C456.82 44.8179 456.819 44.8165 456.818 44.8149C456.816 44.8115 456.813 44.8068 456.809 44.8007C456.801 44.7886 456.789 44.771 456.774 44.7481C456.744 44.7024 456.699 44.6356 456.641 44.5492C456.524 44.3765 456.352 44.1255 456.128 43.8083C455.682 43.1739 455.03 42.2739 454.203 41.2043C452.551 39.0674 450.193 36.2429 447.376 33.5067C444.564 30.7753 441.263 28.1008 437.722 26.2955C434.18 24.4901 430.324 23.5177 426.455 24.3182L426.86 26.2767ZM412.379 50.2122C413.618 44.4854 415.502 38.8073 417.987 34.3909C420.492 29.9372 423.488 26.9744 426.86 26.2767L426.455 24.3182C422.219 25.1947 418.838 28.7985 416.244 33.4104C413.628 38.0597 411.689 43.946 410.424 49.7892L412.379 50.2122ZM410.756 51.502C411.043 51.2505 411.372 51.0663 411.722 50.9479L411.081 49.0535C410.493 49.2525 409.933 49.5651 409.439 49.9963L410.756 51.502ZM410.92 55.3142C409.617 54.3285 409.554 52.5526 410.756 51.502L409.439 49.9963C407.262 51.8996 407.421 55.1754 409.714 56.9094L410.92 55.3142ZM411.887 73.2451C411.228 72.1066 410.779 69.8855 410.665 66.8217C410.553 63.8109 410.767 60.1457 411.308 56.2491L409.327 55.9744C408.774 59.9592 408.549 63.744 408.666 66.8963C408.782 69.9957 409.232 72.651 410.155 74.2468L411.887 73.2451ZM444.68 69.5402C443.494 70.6658 441.105 71.9225 437.99 73.0515C434.912 74.167 431.247 75.1147 427.617 75.6799C423.977 76.2464 420.426 76.4202 417.56 76.0227C414.638 75.6177 412.706 74.6619 411.887 73.2451L410.155 74.2468C411.457 76.4971 414.208 77.5772 417.285 78.0037C420.416 78.4379 424.179 78.2391 427.924 77.6561C431.678 77.0717 435.468 76.0927 438.671 74.9318C441.837 73.7843 444.556 72.4147 446.057 70.9913L444.68 69.5402ZM455.985 45.3676C455.018 45.1118 455.018 45.1118 455.018 45.1118C455.018 45.1119 455.018 45.1121 455.018 45.1123C455.018 45.1128 455.018 45.1136 455.017 45.1147C455.017 45.1168 455.016 45.1202 455.015 45.1247C455.012 45.1337 455.009 45.1475 455.004 45.1658C454.994 45.2024 454.979 45.2573 454.959 45.3293C454.92 45.4735 454.862 45.6864 454.786 45.9597C454.633 46.5063 454.409 47.2943 454.123 48.2562C453.551 50.181 452.734 52.7979 451.75 55.5706C450.765 58.3463 449.62 61.2613 448.395 63.7885C447.157 66.3433 445.886 68.3971 444.68 69.5402L446.057 70.9913C447.539 69.5852 448.939 67.2523 450.195 64.6607C451.465 62.0416 452.638 59.0507 453.635 56.2391C454.634 53.4245 455.462 50.7728 456.041 48.8258C456.33 47.8518 456.557 47.053 456.712 46.4969C456.79 46.2188 456.849 46.0014 456.89 45.853C456.91 45.7788 456.925 45.7219 456.936 45.6832C456.941 45.6639 456.945 45.6492 456.947 45.6392C456.949 45.6342 456.95 45.6303 456.95 45.6277C456.951 45.6264 456.951 45.6253 456.951 45.6246C456.951 45.6242 456.951 45.6239 456.951 45.6237C456.951 45.6235 456.951 45.6233 455.985 45.3676Z" fill="#2D2D2D" mask="url(#path-52-inside-1_79:4)"/>
+<path d="M439.31 66.6186C446.401 64.8989 449.695 55.1195 441.504 55.1195C439.31 55.1195 435.723 55.1627 434.31 56.8729L423.197 45.5447C415.463 35.1552 418.255 11.3209 446.317 29.875C456.537 36.6321 458.679 44.6261 456.984 53.5557C455.622 60.7256 445.158 72.3066 437.54 73.5413L439.31 66.6186Z" fill="#ED1C24" stroke="#2D2D2D" stroke-linejoin="round"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M378.058 128.002L393.005 114.486L399.982 153.74L393.735 181.724H447.219C449.997 183.77 452.49 185.365 454.553 186.331C471.711 194.364 465.859 132.923 464.463 123.143C463.346 115.32 447.717 101.663 438.078 97.6206V85.1917L418.839 82.9179L416.944 89.5759C408.687 89.3335 396.072 89.3619 393.735 90.9446C392.079 92.0671 391.062 93.6352 390.489 94.9623L372.5 115.307C370.587 117.471 367.083 116.957 365.873 114.335L349.673 79.2354L341.048 79.2366C345.25 98.0456 350.494 117.62 356.967 126.82C362.546 134.749 366.078 137.962 378.058 128.002ZM448.747 132.27C449.056 132.821 449.221 133.267 449.221 133.588C449.221 137.329 449.654 145.324 450.046 152.56C450.37 158.539 450.666 163.999 450.666 166.111L444.511 160.951C444.305 150.909 445.635 140.493 448.141 134.81C448.481 134.037 448.679 133.187 448.747 132.27Z" fill="#F0F0F0"/>
+<path d="M393.005 114.486L392.67 114.115L393.34 113.509L393.498 114.398L393.005 114.486ZM378.058 128.002L378.393 128.373L378.385 128.38L378.378 128.386L378.058 128.002ZM399.982 153.74L400.474 153.652L400.492 153.751L400.47 153.849L399.982 153.74ZM393.735 181.724V182.224H393.112L393.247 181.615L393.735 181.724ZM447.219 181.724V181.224H447.383L447.515 181.321L447.219 181.724ZM454.553 186.331L454.341 186.784L454.553 186.331ZM464.463 123.143L463.968 123.214L464.463 123.143ZM438.078 97.6206L437.884 98.0817L437.578 97.9531V97.6206H438.078ZM438.078 85.1917L438.136 84.6951L438.578 84.7473V85.1917H438.078ZM418.839 82.9179L418.358 82.7811L418.475 82.3714L418.898 82.4214L418.839 82.9179ZM416.944 89.5759L417.425 89.7128L417.319 90.0871L416.93 90.0757L416.944 89.5759ZM393.735 90.9446L394.016 91.3586L393.735 90.9446ZM390.489 94.9623L390.948 95.1605L390.916 95.2337L390.864 95.2935L390.489 94.9623ZM372.5 115.307L372.126 114.976L372.5 115.307ZM365.873 114.335L365.419 114.544L365.873 114.335ZM349.673 79.2354L349.672 78.7354L349.992 78.7353L350.127 79.0258L349.673 79.2354ZM341.048 79.2366L340.56 79.3456L340.424 78.7367L341.048 78.7366L341.048 79.2366ZM356.967 126.82L356.559 127.108V127.108L356.967 126.82ZM448.747 132.27L448.248 132.233L448.372 130.58L449.183 132.025L448.747 132.27ZM450.046 152.56L449.547 152.587L450.046 152.56ZM450.666 166.111H451.166V167.182L450.345 166.494L450.666 166.111ZM444.511 160.951L444.19 161.334L444.016 161.188L444.011 160.961L444.511 160.951ZM448.141 134.81L448.598 135.011L448.141 134.81ZM393.341 114.857L378.393 128.373L377.722 127.631L392.67 114.115L393.341 114.857ZM399.49 153.827L392.513 114.573L393.498 114.398L400.474 153.652L399.49 153.827ZM393.247 181.615L399.494 153.631L400.47 153.849L394.223 181.833L393.247 181.615ZM447.219 182.224H393.735V181.224H447.219V182.224ZM447.515 181.321C450.283 183.36 452.746 184.933 454.765 185.878L454.341 186.784C452.234 185.798 449.71 184.18 446.922 182.127L447.515 181.321ZM454.765 185.878C456.791 186.827 458.391 186.721 459.696 185.9C461.04 185.055 462.163 183.396 463.069 181.042C464.879 176.343 465.712 169.183 465.966 161.4C466.472 145.859 464.663 128.084 463.968 123.214L464.958 123.073C465.658 127.982 467.474 145.817 466.965 161.433C466.711 169.229 465.877 176.534 464.002 181.402C463.067 183.832 461.843 185.731 460.228 186.746C458.574 187.786 456.604 187.843 454.341 186.784L454.765 185.878ZM463.968 123.214C463.706 121.38 462.577 119.139 460.82 116.717C459.071 114.306 456.735 111.763 454.125 109.33C448.899 104.456 442.631 100.072 437.884 98.0817L438.271 97.1595C443.164 99.2115 449.53 103.677 454.807 108.598C457.449 111.062 459.832 113.653 461.629 116.13C463.417 118.595 464.661 120.995 464.958 123.073L463.968 123.214ZM437.578 97.6206V85.1917H438.578V97.6206H437.578ZM438.019 85.6882L418.78 83.4145L418.898 82.4214L438.136 84.6951L438.019 85.6882ZM419.32 83.0548L417.425 89.7128L416.464 89.4391L418.358 82.7811L419.32 83.0548ZM393.455 90.5307C393.819 90.2841 394.339 90.0934 394.939 89.9375C395.55 89.7789 396.288 89.6457 397.119 89.5335C398.782 89.309 400.854 89.1638 403.1 89.0762C407.594 88.901 412.825 88.9548 416.959 89.0761L416.93 90.0757C412.807 89.9547 407.601 89.9015 403.139 90.0755C400.907 90.1625 398.871 90.3061 397.253 90.5245C396.444 90.6337 395.749 90.7605 395.19 90.9054C394.622 91.053 394.236 91.2095 394.016 91.3586L393.455 90.5307ZM390.03 94.7641C390.629 93.3764 391.698 91.7209 393.455 90.5307L394.016 91.3586C392.459 92.4132 391.495 93.8939 390.948 95.1605L390.03 94.7641ZM372.126 114.976L390.115 94.6311L390.864 95.2935L372.875 115.638L372.126 114.976ZM366.327 114.125C367.386 116.419 370.452 116.869 372.126 114.976L372.875 115.638C370.723 118.072 366.78 117.494 365.419 114.544L366.327 114.125ZM350.127 79.0258L366.327 114.125L365.419 114.544L349.219 79.4449L350.127 79.0258ZM341.048 78.7366L349.672 78.7354L349.673 79.7354L341.048 79.7366L341.048 78.7366ZM356.559 127.108C353.275 122.441 350.327 115.185 347.679 106.782C345.027 98.3671 342.662 88.7551 340.56 79.3456L341.536 79.1276C343.636 88.527 345.993 98.1068 348.633 106.481C351.275 114.868 354.186 121.999 357.376 126.532L356.559 127.108ZM378.378 128.386C375.368 130.889 372.863 132.586 370.704 133.588C368.54 134.591 366.695 134.91 365.025 134.611C363.355 134.313 361.93 133.411 360.584 132.11C359.244 130.813 357.953 129.09 356.559 127.108L357.376 126.532C358.771 128.514 360.014 130.166 361.279 131.391C362.54 132.61 363.793 133.376 365.2 133.627C366.608 133.878 368.241 133.628 370.283 132.681C372.329 131.731 374.758 130.095 377.738 127.617L378.378 128.386ZM449.183 132.025C449.498 132.586 449.721 133.129 449.721 133.588H448.721C448.721 133.404 448.615 133.056 448.311 132.515L449.183 132.025ZM449.721 133.588C449.721 137.311 450.153 145.288 450.546 152.533L449.547 152.587C449.155 145.36 448.721 137.346 448.721 133.588H449.721ZM450.546 152.533C450.869 158.502 451.166 163.982 451.166 166.111H450.166C450.166 164.017 449.872 158.577 449.547 152.587L450.546 152.533ZM450.345 166.494L444.19 161.334L444.832 160.568L450.988 165.728L450.345 166.494ZM448.598 135.011C446.137 140.595 444.805 150.923 445.011 160.94L444.011 160.961C443.805 150.895 445.133 140.392 447.683 134.608L448.598 135.011ZM449.246 132.307C449.174 133.272 448.965 134.179 448.598 135.011L447.683 134.608C447.998 133.895 448.184 133.101 448.248 132.233L449.246 132.307Z" fill="#2D2D2D"/>
+<path d="M450.326 183.873C433.714 173.043 405.831 143.695 399.963 137.439L404.061 127.809L449.67 165.229" stroke="#2D2D2D"/>
+<path d="M403.8 127.874C399.881 120.22 392.013 102.845 389.765 103.203C387.751 103.524 392.041 111.617 394.317 116.677C392.926 114.084 389.765 109.238 388.248 110.605C387.761 111.043 388.948 113.848 390.289 116.219C388.752 114.119 386.753 112.09 385.595 113.354C384.836 114.182 388.555 119.001 389.765 120.546C388.595 119.199 385.008 113.746 384.097 115.871C383.187 117.997 394.38 131.923 400.007 137.173L403.8 127.874Z" fill="#FFFDFD"/>
+<path d="M403.8 127.874L404.246 127.646L404.35 127.851L404.263 128.063L403.8 127.874ZM389.765 103.203L389.687 102.709L389.765 103.203ZM394.317 116.677L394.773 116.472C394.884 116.718 394.78 117.007 394.538 117.126C394.296 117.245 394.004 117.151 393.877 116.914L394.317 116.677ZM388.248 110.605L388.583 110.976L388.583 110.976L388.248 110.605ZM391.944 118.765L392.379 118.517C392.508 118.744 392.441 119.033 392.225 119.179C392.008 119.326 391.715 119.281 391.553 119.076L391.944 118.765ZM385.595 113.354L385.226 113.016L385.595 113.354ZM389.765 120.546L390.159 120.238C390.326 120.452 390.293 120.759 390.083 120.932C389.874 121.105 389.566 121.079 389.388 120.874L389.765 120.546ZM384.097 115.871L383.638 115.674L384.097 115.871ZM400.007 137.173L400.47 137.362L400.196 138.034L399.666 137.539L400.007 137.173ZM403.355 128.102C402.373 126.184 401.143 123.657 399.821 120.96C398.497 118.26 397.078 115.387 395.712 112.765C394.345 110.14 393.038 107.781 391.937 106.105C391.385 105.264 390.898 104.615 390.492 104.193C390.289 103.981 390.122 103.843 389.993 103.766C389.857 103.684 389.818 103.701 389.844 103.697L389.687 102.709C389.994 102.66 390.279 102.771 390.508 102.909C390.743 103.05 390.979 103.256 391.213 103.5C391.683 103.989 392.21 104.699 392.773 105.556C393.903 107.276 395.229 109.672 396.599 112.303C397.971 114.937 399.395 117.82 400.719 120.52C402.044 123.223 403.268 125.738 404.246 127.646L403.355 128.102ZM389.844 103.697C389.825 103.7 389.816 103.704 389.814 103.705C389.813 103.706 389.812 103.706 389.812 103.707C389.811 103.708 389.791 103.728 389.772 103.798C389.73 103.952 389.726 104.226 389.799 104.646C389.944 105.472 390.344 106.629 390.895 107.973C391.998 110.663 393.62 113.909 394.773 116.472L393.861 116.883C392.738 114.385 391.078 111.055 389.97 108.353C389.416 107.001 388.979 105.759 388.814 104.819C388.733 104.356 388.706 103.906 388.807 103.536C388.859 103.344 388.951 103.152 389.107 102.997C389.268 102.838 389.468 102.744 389.687 102.709L389.844 103.697ZM393.877 116.914C393.19 115.633 392.071 113.806 390.948 112.479C390.382 111.809 389.847 111.305 389.393 111.047C389.169 110.919 388.997 110.87 388.873 110.867C388.765 110.864 388.675 110.893 388.583 110.976L387.913 110.233C388.2 109.975 388.541 109.857 388.902 109.867C389.247 109.877 389.581 110.003 389.888 110.178C390.498 110.525 391.124 111.138 391.712 111.833C392.897 113.235 394.054 115.129 394.758 116.441L393.877 116.914ZM388.583 110.976C388.658 110.908 388.645 110.85 388.639 110.921C388.633 110.982 388.637 111.087 388.665 111.247C388.721 111.562 388.853 111.993 389.05 112.508C389.442 113.531 390.062 114.802 390.725 115.973L389.854 116.465C389.175 115.265 388.531 113.948 388.116 112.866C387.91 112.328 387.753 111.828 387.681 111.42C387.645 111.218 387.626 111.014 387.643 110.828C387.66 110.653 387.716 110.411 387.913 110.233L388.583 110.976ZM390.725 115.973C391.28 116.955 391.855 117.848 392.336 118.454L391.553 119.076C391.026 118.412 390.422 117.47 389.854 116.465L390.725 115.973ZM391.51 119.013C391.131 118.349 390.552 117.424 389.886 116.514L390.693 115.923C391.384 116.868 391.983 117.825 392.379 118.517L391.51 119.013ZM389.886 116.514C389.124 115.474 388.277 114.493 387.505 113.928C387.116 113.645 386.792 113.5 386.541 113.469C386.323 113.443 386.142 113.497 385.964 113.692L385.226 113.016C385.627 112.579 386.13 112.412 386.661 112.477C387.157 112.537 387.646 112.793 388.095 113.121C388.996 113.78 389.917 114.863 390.693 115.923L389.886 116.514ZM385.964 113.692C386.024 113.625 385.977 113.596 386.001 113.765C386.023 113.914 386.091 114.129 386.214 114.408C386.458 114.962 386.871 115.663 387.359 116.407C388.333 117.889 389.554 119.466 390.159 120.238L389.372 120.855C388.766 120.082 387.522 118.476 386.524 116.956C386.026 116.199 385.576 115.443 385.299 114.811C385.161 114.498 385.053 114.189 385.012 113.91C384.974 113.651 384.976 113.29 385.226 113.016L385.964 113.692ZM389.388 120.874C389.082 120.523 388.622 119.907 388.118 119.254C387.604 118.588 387.028 117.86 386.465 117.244C385.888 116.612 385.373 116.154 384.985 115.966C384.793 115.873 384.707 115.883 384.687 115.889C384.681 115.89 384.67 115.894 384.652 115.912C384.63 115.934 384.595 115.979 384.557 116.068L383.638 115.674C383.79 115.318 384.043 115.029 384.421 114.925C384.777 114.827 385.129 114.925 385.42 115.065C385.997 115.344 386.623 115.935 387.203 116.569C387.796 117.219 388.394 117.974 388.91 118.643C389.436 119.325 389.863 119.896 390.143 120.219L389.388 120.874ZM384.557 116.068C384.553 116.078 384.531 116.149 384.559 116.328C384.584 116.499 384.647 116.723 384.755 117.001C384.97 117.557 385.338 118.268 385.837 119.101C386.832 120.764 388.308 122.851 389.997 125.046C393.376 129.437 397.562 134.208 400.348 136.808L399.666 137.539C396.825 134.888 392.602 130.071 389.205 125.655C387.505 123.447 386.002 121.325 384.979 119.615C384.468 118.762 384.067 117.995 383.822 117.362C383.7 117.046 383.611 116.747 383.57 116.478C383.53 116.217 383.528 115.931 383.638 115.674L384.557 116.068ZM399.544 136.984L403.338 127.686L404.263 128.063L400.47 137.362L399.544 136.984Z" fill="#2D2D2D"/>
+<path d="M316.374 82.2455H395.661C396.584 82.2455 397.332 81.4974 397.332 80.5745L375.645 68.6008L304.385 68.6006V69.6133C304.385 70.1221 304.579 70.6118 304.927 70.9827L314.916 81.6149C315.294 82.0173 315.821 82.2455 316.374 82.2455Z" fill="#A9A9A9" stroke="#2D2D2D"/>
+<path d="M375.999 68.7375V24.6733C375.999 23.5688 375.103 22.6733 373.999 22.6733H306.385C305.28 22.6733 304.385 23.5688 304.385 24.6733V68.7375H375.999Z" fill="white" stroke="#2D2D2D" stroke-linejoin="round"/>
+<path d="M397.332 80.3703L376.118 68.7378H304.636L315.946 80.3703H397.332Z" fill="#C4C4C4" stroke="#2D2D2D" stroke-linejoin="round"/>
+<path d="M364.293 63.2537V33.5049H319.902V63.2537H364.293Z" fill="#EFEFEF" stroke="#2D2D2D"/>
+<path d="M361.564 59.3911V29.6294H316.134V59.3911H361.564Z" fill="#EFEFEF" stroke="#2D2D2D"/>
+<path d="M362.083 27.2798H315.625V31.979H362.083V27.2798Z" fill="#2D2D2D"/>
+<ellipse rx="0.883588" ry="0.884123" transform="matrix(-1 0 0 1 317.716 29.4955)" fill="white"/>
+<ellipse rx="0.883588" ry="0.884123" transform="matrix(-1 0 0 1 312.18 29.4955)" fill="white"/>
+<path d="M355.276 37.5522H321.255" stroke="#2D2D2D"/>
+<path d="M355.276 43.0801H321.255" stroke="#2D2D2D"/>
+<path d="M355.276 48.6094H321.255" stroke="#2D2D2D"/>
+<path d="M355.276 54.1372H341.267" stroke="#2D2D2D"/>
+<ellipse rx="0.883588" ry="0.884123" transform="matrix(-1 0 0 1 308.646 29.4955)" fill="white"/>
+</g>
+</svg>
diff --git a/public/img/events/b2-summit.svg b/public/img/events/b2-summit.svg
new file mode 100644
index 0000000..f80a8bb
--- /dev/null
+++ b/public/img/events/b2-summit.svg
@@ -0,0 +1,31 @@
+<svg width="217" height="206" viewBox="0 0 217 206" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="217" height="206" rx="10" fill="#E8F2FA"/>
+<path d="M58.771 111.162V109.593C57.6807 111.302 56.199 112.395 54.3259 112.815C52.4528 113.236 50.6077 113.095 48.7905 112.367C46.9454 111.638 45.3798 110.265 44.0659 108.276C42.7519 106.286 42.081 103.681 42.081 100.43C42.081 96.6194 42.9476 93.5652 44.6809 91.1834C46.4142 88.8297 49.2099 87.6528 53.0679 87.6528C56.0033 87.6528 58.7151 88.4374 61.2311 90.0346C63.7472 91.6317 64.9773 94.5739 64.9773 98.861V111.807C64.9773 116.094 63.7192 119.008 61.2311 120.577C58.7151 122.146 56.0033 122.931 53.0679 122.931C47.4486 122.931 43.9541 120.297 42.6122 115.029H49.2937C49.769 115.898 50.5238 116.542 51.5303 117.018C52.5367 117.467 53.5431 117.607 54.5495 117.383C55.556 117.158 56.4785 116.57 57.2893 115.589C58.1559 114.581 58.6312 113.124 58.771 111.162ZM48.3153 100.598C48.3153 104.829 49.5454 107.183 51.9776 107.631C54.4098 108.08 56.2269 107.519 57.3731 105.922C57.9323 105.25 58.3237 104.185 58.5753 102.756C58.8269 101.327 58.8269 99.8978 58.6312 98.4688C58.4075 97.0677 57.9043 95.8068 57.1215 94.714C56.3388 93.6212 55.1646 93.0608 53.627 93.0608C51.5582 93.0608 50.1324 93.8174 49.4056 95.3585C48.6787 96.8716 48.3153 98.6369 48.3153 100.598Z" fill="black"/>
+<path d="M87.8735 112.918H84.6213C83.6881 112.918 82.9245 112.634 82.3589 112.039C81.765 111.444 81.4822 110.678 81.4822 109.771V97.1237C81.4822 95.6492 81.0298 94.5433 80.1248 93.8628C79.2198 93.1823 78.23 92.842 77.0988 92.842C75.9959 92.842 75.0061 93.1823 74.1294 93.8628C73.2527 94.5433 72.8285 95.6209 72.8285 97.1237V112.946H66.3241V98.4281C66.3241 94.2031 67.427 91.3958 69.6046 89.978C71.8104 88.5602 74.2142 87.7663 76.8726 87.6528C79.5875 87.6528 82.1044 88.3617 84.3951 89.7795C86.6858 91.1973 87.817 94.0896 87.817 98.4281V112.918H87.8735Z" fill="black"/>
+<path d="M89.8939 90.3149H95.9546C95.9546 93.7792 95.9546 92.615 95.9546 93.4952V112.946H89.8939V90.3149Z" fill="black"/>
+<path d="M108.076 112.879C106.056 112.991 103.867 112.963 101.51 112.795C99.1534 112.598 97.9749 111.11 97.9749 108.274V84.3247H101.286C102.072 84.3247 102.801 84.6336 103.39 85.2512C104.008 85.8689 104.316 86.5989 104.316 87.4693V88.3116H108.076V89.6032C108.076 90.5297 107.768 91.2878 107.15 91.8493C106.533 92.439 105.803 92.7197 104.934 92.7197H104.288V106.506C104.288 107.544 104.906 108.078 106.14 108.078H108.076V112.879Z" fill="black"/>
+<path d="M125.932 105.007H130.602C129.919 107.57 128.609 109.52 126.672 110.857C124.736 112.25 122.315 112.946 119.382 112.946C115.822 112.946 113.06 111.832 111.066 109.576C109.073 107.375 108.076 104.255 108.076 100.16C108.076 96.2604 109.044 93.2241 110.981 91.0234C112.974 88.7671 115.737 87.6528 119.296 87.6528C123.027 87.6528 125.932 88.7392 127.982 90.9399C129.976 93.1962 130.972 96.3162 130.972 100.355C130.972 100.606 130.972 100.801 130.972 100.996C130.972 101.191 130.972 101.302 130.972 101.358C130.972 101.665 130.944 101.887 130.887 101.999H114.74C114.797 103.893 115.281 105.286 116.135 106.205C116.933 107.18 118.157 107.654 119.781 107.654C120.834 107.654 121.746 107.431 122.486 107.013C122.685 106.957 122.856 106.846 122.999 106.679C123.141 106.539 123.312 106.372 123.511 106.177C123.568 105.982 123.796 105.759 124.223 105.453C124.622 105.174 125.191 105.007 125.932 105.007ZM114.74 97.904H124.28C124.166 96.2604 123.711 95.0348 122.97 94.2548C122.173 93.3912 121.005 92.9734 119.524 92.9734C118.157 92.9734 117.047 93.3912 116.164 94.2548C115.253 95.0905 114.797 96.3162 114.74 97.904Z" fill="black"/>
+<path d="M34 79H37.4549C38.3626 79 39.1239 79.3117 39.768 79.9351C40.4121 80.5585 40.7342 81.2952 40.7342 82.1736V112.947H34V79Z" fill="black"/>
+<path d="M89.8939 84.3247H93.0034C93.8203 84.3247 94.5054 84.6483 95.0851 85.2956C95.6648 85.9428 95.9547 86.7077 95.9547 87.6197V89.6497H89.8939V84.3247Z" fill="black"/>
+<path d="M77.9375 128.195V127.574L88.3709 121.433L89.2126 122.76L80.4185 127.788L89.2348 132.732L88.393 134.016L77.9375 128.195Z" fill="#ED1C24"/>
+<path d="M99.4823 131.833C99.4823 131.376 99.2977 131.027 98.9285 130.784C98.5593 130.528 98.1015 130.328 97.5551 130.185C97.0087 130.028 96.4106 129.886 95.7608 129.757C95.1258 129.629 94.5351 129.458 93.9887 129.244C93.4423 129.03 92.9845 128.744 92.6153 128.388C92.2461 128.017 92.0615 127.503 92.0615 126.847C92.0615 126.305 92.1797 125.841 92.4159 125.456C92.667 125.071 92.9919 124.757 93.3906 124.514C93.7893 124.258 94.2545 124.072 94.7862 123.958C95.3178 123.83 95.8716 123.765 96.4475 123.765C97.4813 123.765 98.3673 123.894 99.1057 124.151C99.8589 124.393 100.457 124.65 100.9 124.921L100.191 126.269C99.7038 126.012 99.1722 125.77 98.5962 125.542C98.035 125.299 97.3262 125.178 96.4697 125.178C96.1448 125.178 95.8199 125.213 95.495 125.285C95.1849 125.342 94.8969 125.435 94.6311 125.563C94.38 125.691 94.1733 125.863 94.0109 126.077C93.8632 126.276 93.7893 126.526 93.7893 126.826C93.7893 127.196 93.9739 127.482 94.3431 127.681C94.7123 127.881 95.1701 128.052 95.7165 128.195C96.2629 128.323 96.8536 128.452 97.4886 128.58C98.1384 128.694 98.7365 128.866 99.2829 129.094C99.8293 129.322 100.287 129.629 100.656 130.014C101.025 130.399 101.21 130.92 101.21 131.576C101.21 132.56 100.804 133.374 99.9918 134.016C99.1943 134.657 97.9907 134.978 96.3811 134.978C95.8937 134.978 95.4138 134.936 94.9412 134.85C94.4687 134.764 94.0256 134.65 93.6121 134.508C93.1986 134.365 92.8221 134.208 92.4824 134.037C92.1427 133.851 91.8622 133.666 91.6406 133.481L92.5267 132.09C92.7039 132.261 92.9402 132.439 93.2355 132.625C93.5309 132.796 93.8558 132.953 94.2102 133.095C94.5646 133.238 94.9412 133.352 95.3399 133.438C95.7534 133.523 96.1669 133.566 96.5804 133.566C96.9792 133.566 97.3483 133.538 97.688 133.481C98.0424 133.409 98.3525 133.309 98.6184 133.181C98.8842 133.038 99.0909 132.86 99.2386 132.646C99.4011 132.418 99.4823 132.147 99.4823 131.833Z" fill="#ED1C24"/>
+<path d="M110.66 124.022H113.806V131.319C113.806 132.018 113.85 132.689 113.939 133.331H115.423V134.722H112.477L112.41 132.903H112.322C111.938 133.516 111.428 134.016 110.793 134.401C110.158 134.786 109.39 134.978 108.489 134.978C107.81 134.978 107.227 134.9 106.739 134.743C106.267 134.6 105.875 134.344 105.565 133.973C105.255 133.602 105.026 133.11 104.879 132.496C104.731 131.868 104.657 131.091 104.657 130.164V125.456H103.173V124.022H106.385V129.821C106.385 130.406 106.407 130.934 106.451 131.405C106.51 131.861 106.621 132.254 106.784 132.582C106.946 132.896 107.182 133.138 107.492 133.309C107.817 133.466 108.246 133.545 108.777 133.545C109.545 133.545 110.21 133.302 110.771 132.817C111.347 132.332 111.782 131.726 112.078 130.998V125.456H110.66V124.022Z" fill="#ED1C24"/>
+<path d="M121.262 134.722V127.596C121.262 127.296 121.247 127.011 121.218 126.74C121.203 126.455 121.151 126.205 121.063 125.991C120.989 125.763 120.871 125.584 120.708 125.456C120.561 125.328 120.361 125.263 120.11 125.263C119.608 125.263 119.18 125.463 118.825 125.863C118.486 126.262 118.227 126.761 118.05 127.36V134.722H116.367V124.022H117.518L117.851 125.328H117.939C118.087 125.114 118.227 124.914 118.36 124.728C118.508 124.529 118.67 124.357 118.848 124.215C119.04 124.072 119.261 123.965 119.512 123.894C119.763 123.808 120.081 123.765 120.465 123.765C120.686 123.765 120.915 123.801 121.151 123.872C121.388 123.93 121.602 124.029 121.794 124.172C122 124.3 122.178 124.479 122.325 124.707C122.473 124.935 122.569 125.213 122.613 125.542C122.953 124.985 123.33 124.55 123.743 124.236C124.171 123.922 124.755 123.765 125.493 123.765C125.98 123.765 126.372 123.844 126.667 124.001C126.977 124.158 127.213 124.386 127.376 124.686C127.553 124.971 127.671 125.32 127.73 125.734C127.804 126.134 127.841 126.583 127.841 127.082V134.722H126.158V127.446C126.158 127.146 126.143 126.868 126.113 126.612C126.084 126.34 126.025 126.105 125.936 125.905C125.862 125.706 125.751 125.549 125.604 125.435C125.471 125.32 125.286 125.263 125.05 125.263C124.533 125.263 124.097 125.463 123.743 125.863C123.389 126.262 123.123 126.833 122.946 127.574V134.722H121.262Z" fill="#ED1C24"/>
+<path d="M134.101 134.722V127.596C134.101 127.296 134.087 127.011 134.057 126.74C134.042 126.455 133.991 126.205 133.902 125.991C133.828 125.763 133.71 125.584 133.548 125.456C133.4 125.328 133.2 125.263 132.949 125.263C132.447 125.263 132.019 125.463 131.665 125.863C131.325 126.262 131.067 126.761 130.889 127.36V134.722H129.206V124.022H130.358L130.69 125.328H130.779C130.926 125.114 131.067 124.914 131.199 124.728C131.347 124.529 131.51 124.357 131.687 124.215C131.879 124.072 132.1 123.965 132.351 123.894C132.602 123.808 132.92 123.765 133.304 123.765C133.525 123.765 133.754 123.801 133.991 123.872C134.227 123.93 134.441 124.029 134.633 124.172C134.84 124.3 135.017 124.479 135.165 124.707C135.312 124.935 135.408 125.213 135.453 125.542C135.792 124.985 136.169 124.55 136.582 124.236C137.011 123.922 137.594 123.765 138.332 123.765C138.82 123.765 139.211 123.844 139.506 124.001C139.816 124.158 140.053 124.386 140.215 124.686C140.392 124.971 140.51 125.32 140.57 125.734C140.643 126.134 140.68 126.583 140.68 127.082V134.722H138.997V127.446C138.997 127.146 138.982 126.868 138.952 126.612C138.923 126.34 138.864 126.105 138.775 125.905C138.701 125.706 138.591 125.549 138.443 125.435C138.31 125.32 138.125 125.263 137.889 125.263C137.372 125.263 136.937 125.463 136.582 125.863C136.228 126.262 135.962 126.833 135.785 127.574V134.722H134.101Z" fill="#ED1C24"/>
+<path d="M143.463 134.722V133.288H147.317V125.456H143.463V124.022H149.089V133.288H152.855V134.722H143.463ZM146.719 120.984C146.719 120.598 146.852 120.27 147.118 119.999C147.384 119.714 147.723 119.571 148.137 119.571C148.565 119.571 148.919 119.714 149.2 119.999C149.495 120.27 149.643 120.598 149.643 120.984C149.643 121.355 149.495 121.668 149.2 121.925C148.919 122.182 148.565 122.31 148.137 122.31C147.723 122.31 147.384 122.182 147.118 121.925C146.852 121.668 146.719 121.355 146.719 120.984Z" fill="#ED1C24"/>
+<path d="M154.663 124.022H157.299V121.904L159.027 121.433V124.022H164.941V125.456H159.027V130.506C159.027 131.548 159.285 132.318 159.802 132.817C160.334 133.316 161.087 133.566 162.061 133.566C162.726 133.566 163.302 133.445 163.789 133.202C164.291 132.96 164.742 132.696 165.14 132.411L165.716 133.673C165.199 134.073 164.579 134.394 163.856 134.636C163.147 134.879 162.416 135 161.663 135C161.072 135 160.511 134.914 159.979 134.743C159.462 134.586 159.004 134.336 158.606 133.994C158.207 133.652 157.889 133.217 157.653 132.689C157.417 132.147 157.299 131.505 157.299 130.763V125.456H154.663V124.022Z" fill="#ED1C24"/>
+<path d="M168.654 134.016L167.812 132.732L176.628 127.788L167.834 122.76L168.676 121.433L179.109 127.574V128.195L168.654 134.016Z" fill="#ED1C24"/>
+<path d="M150.162 87.7682C152.906 85.4401 156.407 84.1542 160.031 84.1431C167.418 84.1431 173.55 89.5457 174.218 96.5123C178.589 97.1201 182 100.721 182 105.14C182 109.992 177.886 113.857 172.902 113.857H148.445C142.753 113.857 138.062 109.443 138.062 103.911C138.062 99.1488 141.539 95.2049 146.142 94.2054C146.534 91.8742 148.058 89.5511 150.162 87.7682Z" fill="#0061B0"/>
+<path d="M153.593 98.0069L154.07 98.129C153.97 98.5258 153.79 98.8288 153.529 99.038C153.269 99.2455 152.952 99.3493 152.576 99.3493C152.186 99.3493 151.87 99.2696 151.625 99.1102C151.382 98.9491 151.196 98.7167 151.068 98.4129C150.942 98.109 150.879 97.7828 150.879 97.4341C150.879 97.0539 150.95 96.7227 151.093 96.4404C151.237 96.1565 151.442 95.9415 151.706 95.7954C151.972 95.6477 152.264 95.5738 152.583 95.5738C152.944 95.5738 153.248 95.6668 153.494 95.8527C153.74 96.0387 153.912 96.3002 154.009 96.6372L153.539 96.7493C153.455 96.4836 153.333 96.2902 153.174 96.169C153.015 96.0478 152.814 95.9872 152.573 95.9872C152.296 95.9872 152.063 96.0544 151.876 96.1889C151.691 96.3234 151.56 96.5044 151.484 96.7318C151.409 96.9576 151.371 97.1909 151.371 97.4316C151.371 97.7421 151.416 98.0136 151.504 98.246C151.594 98.4768 151.734 98.6495 151.923 98.764C152.112 98.8786 152.316 98.9359 152.536 98.9359C152.804 98.9359 153.03 98.8578 153.216 98.7018C153.401 98.5457 153.527 98.3141 153.593 98.0069Z" fill="white"/>
+<path d="M154.642 99.287V95.636H155.12V98.8562H156.898V99.287H154.642Z" fill="white"/>
+<path d="M157.324 97.5088C157.324 96.9028 157.485 96.4288 157.807 96.0868C158.129 95.7431 158.544 95.5713 159.053 95.5713C159.386 95.5713 159.687 95.6518 159.954 95.8129C160.222 95.9739 160.426 96.1989 160.565 96.4878C160.706 96.775 160.777 97.1012 160.777 97.4665C160.777 97.8367 160.703 98.168 160.555 98.4602C160.407 98.7524 160.198 98.974 159.927 99.1251C159.656 99.2746 159.364 99.3493 159.05 99.3493C158.711 99.3493 158.407 99.2663 158.139 99.1002C157.872 98.9342 157.669 98.7076 157.531 98.4203C157.393 98.1331 157.324 97.8293 157.324 97.5088ZM157.817 97.5163C157.817 97.9563 157.933 98.3033 158.166 98.5573C158.401 98.8097 158.695 98.9359 159.048 98.9359C159.408 98.9359 159.703 98.808 159.935 98.5523C160.168 98.2966 160.284 97.9339 160.284 97.464C160.284 97.1668 160.234 96.9078 160.134 96.687C160.036 96.4645 159.89 96.2927 159.698 96.1715C159.508 96.0486 159.293 95.9872 159.055 95.9872C158.717 95.9872 158.426 96.1051 158.181 96.3408C157.938 96.5749 157.817 96.9668 157.817 97.5163Z" fill="white"/>
+<path d="M163.764 95.636H164.242V97.7454C164.242 98.1124 164.201 98.4037 164.119 98.6196C164.037 98.8354 163.888 99.0114 163.673 99.1475C163.46 99.282 163.179 99.3493 162.831 99.3493C162.493 99.3493 162.216 99.2903 162.001 99.1724C161.786 99.0546 161.632 98.8844 161.54 98.6619C161.448 98.4378 161.402 98.1323 161.402 97.7454V95.636H161.88V97.7429C161.88 98.0601 161.909 98.2942 161.966 98.4452C162.026 98.5947 162.126 98.7101 162.267 98.7914C162.41 98.8728 162.584 98.9134 162.789 98.9134C163.14 98.9134 163.391 98.8329 163.54 98.6719C163.69 98.5108 163.764 98.2012 163.764 97.7429V95.636Z" fill="white"/>
+<path d="M165.04 99.287V95.636H166.284C166.565 95.636 166.779 95.6535 166.927 95.6883C167.134 95.7365 167.31 95.8237 167.456 95.9498C167.647 96.1125 167.789 96.3209 167.882 96.5749C167.978 96.8273 168.025 97.1162 168.025 97.4416C168.025 97.7189 167.993 97.9646 167.929 98.1788C167.865 98.3929 167.783 98.5706 167.683 98.7117C167.583 98.8512 167.473 98.9616 167.353 99.0429C167.235 99.1226 167.091 99.1832 166.922 99.2247C166.754 99.2663 166.561 99.287 166.343 99.287H165.04ZM165.518 98.8562H166.289C166.527 98.8562 166.713 98.8337 166.848 98.7889C166.984 98.7441 167.093 98.681 167.173 98.5996C167.286 98.4851 167.374 98.3315 167.437 98.1389C167.501 97.9447 167.533 97.7097 167.533 97.4341C167.533 97.0523 167.47 96.7592 167.345 96.555C167.222 96.3491 167.072 96.2113 166.895 96.1416C166.767 96.0918 166.561 96.0669 166.277 96.0669H165.518V98.8562Z" fill="white"/>
+<path d="M149.625 106.938V103.287H152.236V103.717H150.103V104.836H152.1V105.264H150.103V106.507H152.319V106.938H149.625Z" fill="white"/>
+<path d="M152.979 106.938V103.287H154.223C154.504 103.287 154.718 103.304 154.866 103.339C155.073 103.387 155.249 103.474 155.396 103.6C155.586 103.763 155.728 103.972 155.822 104.226C155.917 104.478 155.964 104.767 155.964 105.092C155.964 105.369 155.932 105.615 155.868 105.829C155.804 106.044 155.722 106.221 155.622 106.362C155.522 106.502 155.412 106.612 155.292 106.694C155.174 106.773 155.03 106.834 154.861 106.875C154.694 106.917 154.501 106.938 154.282 106.938H152.979ZM153.457 106.507H154.228C154.466 106.507 154.653 106.484 154.787 106.44C154.923 106.395 155.032 106.332 155.112 106.25C155.226 106.136 155.313 105.982 155.376 105.79C155.44 105.595 155.472 105.36 155.472 105.085C155.472 104.703 155.409 104.41 155.285 104.206C155.162 104 155.011 103.862 154.834 103.792C154.706 103.742 154.5 103.717 154.216 103.717H153.457V106.507Z" fill="white"/>
+<path d="M156.706 106.938V103.287H157.184V106.938H156.706Z" fill="white"/>
+<path d="M158.947 106.938V103.717H157.757V103.287H160.619V103.717H159.425V106.938H158.947Z" fill="white"/>
+<path d="M161.193 106.938V103.287H161.671V106.938H161.193Z" fill="white"/>
+<path d="M162.37 105.159C162.37 104.553 162.531 104.079 162.853 103.737C163.175 103.394 163.59 103.222 164.099 103.222C164.433 103.222 164.733 103.302 165.001 103.463C165.268 103.625 165.472 103.849 165.612 104.138C165.753 104.426 165.823 104.752 165.823 105.117C165.823 105.487 165.749 105.819 165.602 106.111C165.454 106.403 165.245 106.625 164.974 106.776C164.703 106.925 164.41 107 164.097 107C163.757 107 163.453 106.917 163.186 106.751C162.918 106.585 162.715 106.358 162.577 106.071C162.439 105.784 162.37 105.48 162.37 105.159ZM162.863 105.167C162.863 105.607 162.98 105.954 163.213 106.208C163.448 106.46 163.741 106.586 164.094 106.586C164.454 106.586 164.75 106.459 164.981 106.203C165.214 105.947 165.331 105.584 165.331 105.115C165.331 104.817 165.281 104.558 165.181 104.338C165.082 104.115 164.937 103.943 164.745 103.822C164.554 103.699 164.34 103.638 164.102 103.638C163.764 103.638 163.472 103.756 163.227 103.991C162.984 104.226 162.863 104.617 162.863 105.167Z" fill="white"/>
+<path d="M166.437 106.938V103.287H166.927L168.823 106.153V103.287H169.281V106.938H168.791L166.895 104.069V106.938H166.437Z" fill="white"/>
+</svg>
diff --git a/public/img/events/b3-online-bg.svg b/public/img/events/b3-online-bg.svg
new file mode 100644
index 0000000..0f66d4a
--- /dev/null
+++ b/public/img/events/b3-online-bg.svg
@@ -0,0 +1,73 @@
+<svg width="293" height="279" viewBox="0 0 293 279" fill="none" xmlns="http://www.w3.org/2000/svg">
+<mask id="mask0_89:32" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="293" height="279">
+<rect x="0.5" y="0.5" width="291.587" height="277.563" rx="9.5" fill="white" stroke="#E6E6E6"/>
+</mask>
+<g mask="url(#mask0_89:32)">
+<path d="M68.7799 188.599L36.2816 208.662L179.591 295.364L287.763 227.728L264.144 213.397" stroke="#0061B0" stroke-linejoin="round"/>
+<rect x="-2.98023e-08" y="0.5" width="171.892" height="105.395" transform="matrix(0.866025 0.5 -0.866025 0.5 132.573 115.252)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="59.6452" height="31.4505" rx="7.19264" transform="matrix(0.866025 0.5 -0.866025 0.5 121.747 177.627)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 119.213 130.946)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 128.427 125.627)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 165.283 157.544)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 174.497 152.225)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 211.354 184.143)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 220.568 178.823)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 100.785 141.585)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 146.855 168.184)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 192.926 194.783)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="22.9389" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 109.999 136.266)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 156.069 162.864)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 202.14 189.463)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 91.5708 146.905)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="49.5377" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 137.641 173.504)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 183.712 200.102)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 142.248 144.245)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 151.462 138.925)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 188.319 170.844)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 197.533 165.524)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 234.389 197.442)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 243.603 192.123)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 123.82 154.885)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 169.89 181.484)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 215.961 208.082)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 133.034 149.565)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 179.104 176.164)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 114.606 160.204)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 206.747 213.402)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 130.731 137.595)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 139.945 132.276)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 176.801 164.194)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 186.015 158.874)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 222.871 190.793)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 232.085 185.473)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 112.302 148.235)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 158.373 174.834)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 204.443 201.432)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 167.587 169.514)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 213.657 196.113)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 103.088 153.554)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 195.229 206.752)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 153.766 150.895)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 162.98 145.575)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 199.836 177.493)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 209.05 172.174)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 245.907 204.092)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 255.121 198.772)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 135.338 161.534)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 181.408 188.133)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 227.478 214.732)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 144.552 156.214)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 190.622 182.813)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="22.9389" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 225.175 202.762)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 126.123 166.854)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="9.63952" height="6.97964" rx="1.5" transform="matrix(0.866025 0.5 -0.866025 0.5 218.264 220.052)" fill="white" stroke="#0061B0"/>
+<rect x="0.433013" y="0.75" width="171.892" height="110.183" transform="matrix(0.866025 0.5 -2.20305e-08 1 132.621 3.86845)" fill="white" stroke="#0061B0"/>
+<rect x="0.433013" y="0.75" width="163.913" height="98.4795" rx="3.19" transform="matrix(0.866025 0.5 -2.20305e-08 1 136.076 9.85332)" fill="white" stroke="#0061B0"/>
+<rect x="0.433013" y="0.25" width="109.876" height="3.25581" transform="matrix(0.866025 -0.5 2.20305e-08 1 189.808 254.534)" fill="white" stroke="#0061B0"/>
+<rect x="0.433013" y="0.75" width="171.918" height="3.25581" transform="matrix(0.866025 0.5 -2.20305e-08 1 40.0569 167.642)" fill="white" stroke="#0061B0"/>
+<rect x="-2.98023e-08" y="0.5" width="171.768" height="3.16123" transform="matrix(0.866025 0.5 -0.866025 0.5 136.591 2.25)" fill="white" stroke="#0061B0"/>
+<path d="M210.901 125.913C210.374 124.532 209.527 123.095 208.517 121.678C207.048 119.617 205.17 117.511 203.235 115.534C201.297 113.553 199.28 111.68 197.522 110.087C196.87 109.495 196.257 108.946 195.697 108.444C194.736 107.582 193.932 106.861 193.353 106.31L193.351 106.308C188.605 101.821 186.023 97.9598 184.759 94.7274C183.498 91.5029 183.504 88.788 184.103 86.5725C184.704 84.3522 185.894 82.6687 186.944 81.5359C187.216 81.2433 187.477 80.9885 187.715 80.7716C187.558 83.0228 188.432 86.0473 190.318 89.5254C192.791 94.0864 197.037 99.5072 203.172 105.262L210.901 125.913ZM210.901 125.913C210.941 125.718 210.982 125.503 211.021 125.268C211.223 124.039 211.371 122.294 211.16 120.219C210.949 118.146 210.382 115.758 209.164 113.225C207.948 110.697 206.064 107.982 203.172 105.263L210.901 125.913ZM209.368 127.404C209.472 127.645 209.56 127.864 209.633 128.058C209.672 128.159 209.707 128.254 209.738 128.342C206.379 124.511 198.936 121.453 197.196 120.737C197.104 120.699 197.028 120.668 196.969 120.644M209.368 127.404C209.61 127.648 209.84 127.897 210.056 128.151C209.293 126.089 206.953 121.189 200.837 116.76C199.871 116.06 198.977 115.419 198.147 114.824C192.487 110.768 189.829 108.864 188.227 104.989C188.223 105.006 188.218 105.024 188.214 105.042C188.177 105.189 188.135 105.369 188.094 105.58M209.368 127.404C208.718 126.752 207.983 126.14 207.217 125.573C205.878 124.584 204.387 123.691 202.968 122.929C200.398 121.548 198.018 120.57 197.135 120.207C197.047 120.171 196.973 120.141 196.916 120.117M209.368 127.404C209.116 126.822 208.77 126.11 208.303 125.31C206.988 123.056 204.692 120.056 200.782 117.225L200.782 117.224C199.833 116.536 198.948 115.902 198.123 115.311C195.512 113.44 193.502 112 191.948 110.616C190.912 109.695 190.047 108.772 189.319 107.729C188.85 107.059 188.447 106.351 188.094 105.58M188.094 105.58C187.978 105.328 187.868 105.069 187.763 104.803C187.212 107.121 186.036 115.671 196.969 120.644M188.094 105.58C188.053 105.786 188.013 106.021 187.978 106.281C187.835 107.338 187.778 108.779 188.093 110.371C188.404 111.95 189.078 113.664 190.403 115.327C191.739 117.003 193.79 118.694 196.916 120.117M196.969 120.644L196.909 120.114C196.912 120.115 196.914 120.116 196.916 120.117M196.969 120.644L196.923 120.12C196.921 120.119 196.918 120.118 196.916 120.117M213.737 117.251C213.55 116.387 213.218 115.212 212.622 113.786C211.348 110.736 208.891 106.592 204.153 101.909C197.68 95.5084 194.146 90.4592 192.43 86.519C190.731 82.6187 190.778 79.7189 191.609 77.5516C192.447 75.3667 194.081 73.9401 195.528 73.0584C196.198 72.6498 196.822 72.3617 197.298 72.1706C196.838 75.525 197.397 78.8891 199.113 82.7592C201.013 87.044 204.312 91.8998 209.094 98.0142C213.737 103.95 214.941 108.647 214.919 112.021C214.904 114.424 214.266 116.187 213.737 117.251Z" fill="#0070CC" stroke="#0061B0"/>
+<circle r="35.6552" transform="matrix(0.859406 0.511293 0 1 200.529 99.9936)" stroke="#0061B0"/>
+<path d="M282.26 90.9536L285.118 89.3037L285.118 198.823L282.26 200.473L282.26 90.9536Z" fill="white" stroke="#0061B0"/>
+</g>
+</svg>
diff --git a/public/img/events/b3-speaker-bg.svg b/public/img/events/b3-speaker-bg.svg
new file mode 100644
index 0000000..2418f0d
--- /dev/null
+++ b/public/img/events/b3-speaker-bg.svg
@@ -0,0 +1,25 @@
+<svg width="280" height="280" viewBox="0 0 280 280" fill="none" xmlns="http://www.w3.org/2000/svg">
+<mask id="mask0_88:30" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="280" height="280">
+<rect x="0.8125" y="0.5" width="278.68" height="278.563" rx="9.5" fill="white" stroke="#E6E6E6"/>
+</mask>
+<g mask="url(#mask0_88:30)">
+<path d="M287.975 106.888L198.618 157.693L107.688 106.508L197.643 55.105L287.975 106.888Z" fill="white" stroke="#0070CC" stroke-linejoin="round"/>
+<path d="M107.643 160.922V106.61L198.359 157.755V211.878L107.643 160.922Z" fill="white" stroke="#0070CC" stroke-linejoin="round"/>
+<path d="M198.608 211.753V157.553L288.053 106.77V161.225L198.608 211.753Z" fill="#E8F2FA" stroke="#0070CC" stroke-linejoin="round"/>
+<path d="M197.787 185.754L108.429 236.559L17.5 185.374L107.455 133.971L197.787 185.754Z" fill="white" stroke="#0070CC" stroke-linejoin="round"/>
+<path d="M17.5525 211.901V185.358L108.508 236.591V262.908L17.5525 211.901Z" fill="white" stroke="#0070CC" stroke-linejoin="round"/>
+<path d="M108.494 262.691V236.75L198.18 185.654V211.993L108.494 262.691Z" fill="#E8F2FA" stroke="#0070CC" stroke-linejoin="round"/>
+<path d="M348.466 257.546L259.109 308.351L168.18 257.166L258.135 205.763L348.466 257.546Z" fill="white" stroke="#0070CC" stroke-linejoin="round"/>
+<path d="M348.466 241.13L259.109 291.935L168.18 240.75L258.135 189.347L348.466 241.13Z" fill="white" stroke="#0070CC" stroke-linejoin="round"/>
+<path d="M348.466 222.734L259.109 273.539L168.18 222.354L258.135 170.951L348.466 222.734Z" fill="white" stroke="#0070CC" stroke-linejoin="round"/>
+<path d="M181.454 17.1664C181.454 14.7591 180.621 12.9584 180.02 11.6581C179.927 11.4567 179.84 11.2672 179.762 11.0894C179.472 10.4296 179.352 10.0207 179.407 9.66225C179.466 9.27718 179.744 8.84373 180.551 8.37258C182.18 7.42117 184.959 6.18797 188.207 5.66377C191.465 5.13805 195.14 5.33477 198.573 7.16719C203.113 9.59023 207.467 13.93 210.678 19.232C213.889 24.5341 215.692 30.3641 215.692 35.4396V68.1659C215.692 73.2413 213.889 77.146 210.678 79.0211C209.042 79.9765 206.278 81.3291 203.35 82.1328C201.886 82.5347 200.391 82.7968 198.981 82.8072C197.565 82.8178 196.273 82.5732 195.208 82.0045C193.147 80.9043 191.822 78.5134 190.553 75.4525C190.24 74.6982 189.937 73.9187 189.63 73.1232C189.598 73.0418 189.567 72.9603 189.535 72.8786C189.259 72.1647 188.979 71.4393 188.689 70.7222C188.044 69.1275 187.334 67.5306 186.468 66.1003C183.257 60.7982 181.454 54.9682 181.454 49.8928V17.1664Z" fill="#0070CC" stroke="#0061B0"/>
+<path d="M218.573 72.4604V72.332L218.517 72.1898L216.163 66.1599C216.193 66.1332 216.231 66.1026 216.28 66.0686C216.445 65.9536 216.691 65.8256 217.002 65.6894C217.622 65.4179 218.46 65.1301 219.323 64.8569C220.016 64.638 220.718 64.4301 221.332 64.2486C221.482 64.204 221.628 64.161 221.766 64.1198C222.116 64.0157 222.423 63.923 222.661 63.846C222.887 63.7725 223.078 63.7051 223.171 63.6503C223.636 63.3787 224.267 63.4233 224.925 63.7742C225.582 64.1251 226.213 64.7536 226.678 65.5217C227.143 66.2899 227.404 67.1347 227.404 67.8703V74.4156C227.404 82.405 224.75 88.6925 219.955 92.0585C217.547 93.7488 213.695 95.4114 210.035 96.396C208.206 96.888 206.435 97.2077 204.926 97.2795C204.172 97.3153 203.491 97.2887 202.907 97.1943C202.315 97.0987 201.858 96.9387 201.537 96.7386L201.053 96.4372V96.9788V105.23V105.73L201.501 105.969L219.069 115.345C219.726 115.696 220.357 116.324 220.822 117.092C221.287 117.86 221.549 118.705 221.549 119.441C221.549 120.176 221.287 120.742 220.822 121.014C220.549 121.173 218.771 122.198 216.965 123.131C216.061 123.598 215.156 124.039 214.431 124.337C214.067 124.487 213.756 124.597 213.516 124.658C213.396 124.688 213.303 124.704 213.236 124.707C213.22 124.708 213.207 124.708 213.198 124.708L175.176 101.992L175.163 101.984L175.15 101.978C174.853 101.819 174.301 101.362 173.72 100.787C173.139 100.21 172.646 99.6298 172.437 99.2858L172.307 99.0709L172.123 98.9713C171.447 98.6059 170.713 98.1136 170.163 97.6279C169.886 97.3831 169.686 97.166 169.563 96.9933C169.487 96.8854 169.459 96.8229 169.45 96.7894C169.451 96.7871 169.453 96.7846 169.454 96.782C169.477 96.7435 169.519 96.6919 169.583 96.6283C169.711 96.5018 169.903 96.3555 170.148 96.1952C170.634 95.8759 171.295 95.523 171.98 95.1834C172.663 94.8446 173.365 94.5224 173.931 94.2642C173.996 94.2345 174.06 94.2055 174.122 94.1773C174.588 93.965 174.952 93.7995 175.084 93.7221C175.55 93.4505 176.18 93.4952 176.838 93.846V93.8461L176.846 93.8501L192.685 101.994L193.125 102.22V101.729V91.7254V91.2732L192.722 91.0127C185.54 86.3728 177.312 79.1834 172.555 70.765C167.786 62.3268 165.64 51.8872 165.64 43.8469L165.64 43.7212L165.587 43.5819L163.4 37.8703C163.433 37.8347 163.478 37.7928 163.537 37.7452C163.706 37.6086 163.957 37.4504 164.271 37.2775C164.898 36.9328 165.744 36.5473 166.614 36.1761C167.467 35.8121 168.337 35.4644 169.037 35.185L169.075 35.1696L169.101 35.1591C169.78 34.8879 170.315 34.6742 170.469 34.5842C170.934 34.3126 171.565 34.3573 172.222 34.7081C172.879 35.059 173.51 35.6875 173.975 36.4556C174.44 37.2238 174.702 38.0686 174.702 38.8042V46.2885C174.702 53.3645 177.217 61.493 181.693 68.8859C186.17 76.2789 192.242 82.3307 198.573 85.7097C204.905 89.0887 210.977 89.518 215.453 86.9034C217.724 85.577 218.517 83.6877 218.724 81.2259C218.826 80.0136 218.786 78.669 218.723 77.2164C218.712 76.9774 218.701 76.7353 218.69 76.49C218.633 75.2363 218.573 73.899 218.573 72.4604ZM216.097 66.2348C216.096 66.2374 216.095 66.2387 216.095 66.2387C216.095 66.2387 216.095 66.2373 216.097 66.2348ZM163.341 37.9476C163.34 37.9492 163.34 37.95 163.34 37.95C163.34 37.95 163.34 37.9492 163.341 37.9476Z" fill="#0070CC" stroke="#0061B0"/>
+<path d="M174.246 19.7611C174.246 14.6857 176.05 10.7811 179.261 8.90597C182.471 7.03087 186.826 7.33885 191.366 9.76193C195.906 12.185 200.26 16.5248 203.471 21.8269C206.682 27.129 208.485 32.959 208.485 38.0344V70.7607C208.485 75.8361 206.682 79.7407 203.471 81.6158C200.26 83.4909 195.906 83.183 191.366 80.7599C186.826 78.3368 182.471 73.997 179.261 68.6949C176.05 63.3928 174.246 57.5628 174.246 52.4874V19.7611Z" fill="white" stroke="#0061B0"/>
+<path d="M194.249 95.2272L193.846 95.0573V95.5095V108.764V109.264L194.294 109.503L211.862 118.878C212.519 119.229 213.15 119.858 213.615 120.626C214.08 121.394 214.342 122.239 214.342 122.975C214.342 123.71 214.08 124.276 213.615 124.548C213.15 124.819 212.519 124.775 211.862 124.424L170.871 102.547C170.213 102.196 169.583 101.568 169.117 100.799C168.652 100.031 168.391 99.1865 168.391 98.4509C168.391 97.7153 168.652 97.1496 169.117 96.8779C169.583 96.6062 170.213 96.6509 170.871 97.0018L188.438 106.378L188.886 106.617V106.117V92.8624V92.4102L188.483 92.1498C181.372 87.5556 174.779 80.3143 169.984 71.8305C165.19 63.3467 162.535 54.2254 162.535 46.2362V39.6909C162.535 38.9553 162.796 38.3896 163.262 38.1179C163.727 37.8462 164.357 37.8909 165.015 38.2418C165.673 38.5927 166.303 39.2213 166.768 39.9894C167.234 40.7576 167.495 41.6024 167.495 42.338V48.8833C167.495 55.9593 170.01 64.0878 174.486 71.4807C178.963 78.8737 185.035 84.9254 191.366 88.3043C197.697 91.6833 203.769 92.1126 208.246 89.498C212.723 86.8835 215.238 81.4393 215.238 74.3633V67.818C215.238 67.0824 215.499 66.5166 215.964 66.245C216.429 65.9733 217.06 66.018 217.717 66.3689C218.375 66.7198 219.006 67.3484 219.471 68.1165C219.936 68.8847 220.197 69.7295 220.197 70.4651V77.0104C220.198 84.9997 217.543 91.2872 212.748 94.6532C207.953 98.0192 201.361 98.2236 194.249 95.2272Z" fill="white" stroke="#0061B0"/>
+<path d="M70.4234 168.381L133.435 203.932" stroke="#0070CC" stroke-linejoin="round"/>
+<path d="M60.8431 173.449L123.855 209" stroke="#0070CC" stroke-linejoin="round"/>
+<path d="M78.8646 163.312L141.876 198.863" stroke="#0070CC" stroke-linejoin="round"/>
+<path d="M88.0399 158.244L151.052 193.795" stroke="#0070CC" stroke-linejoin="round"/>
+<path d="M97.2153 153.175L160.227 188.726" stroke="#0070CC" stroke-linejoin="round"/>
+</g>
+</svg>
diff --git a/public/img/events/b4-world.svg b/public/img/events/b4-world.svg
new file mode 100644
index 0000000..288694c
--- /dev/null
+++ b/public/img/events/b4-world.svg
@@ -0,0 +1,67 @@
+<svg width="499" height="499" viewBox="0 0 499 499" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M249.393 488.742L249.243 488.66C188.797 454.301 139.731 319.125 140.017 187.329V186.852H140.467C263.594 170.293 412.904 184.74 473.322 219.058L473.581 219.208V219.508C473.336 351.358 372.793 472.142 249.57 488.715L249.393 488.742ZM141.094 187.779C140.971 318.989 189.614 453.388 249.651 487.624C372.315 471.038 472.219 350.936 472.6 219.726C412.222 185.694 263.758 171.356 141.094 187.779Z" fill="white"/>
+<path d="M361.889 440.889C331.55 423.648 256.452 416.357 194.507 424.725L194.371 423.716C256.507 415.362 331.891 422.667 362.393 439.99L361.889 440.889Z" fill="white"/>
+<path d="M442.084 344.421C390.088 314.886 261.454 302.456 155.336 316.726L155.2 315.718C261.509 301.42 390.429 313.905 442.588 343.535L442.084 344.421Z" fill="white"/>
+<path d="M249.692 488.687L249.297 487.747C324.913 456.222 386.626 323.65 386.872 192.208H387.894C387.649 324.031 325.649 457.026 249.692 488.687Z" fill="white"/>
+<path d="M249.992 488.347L248.997 488.088C259.001 450.171 267.329 312.269 267.574 180.665H268.596C268.351 312.338 260.01 450.362 249.992 488.347Z" fill="white"/>
+<path d="M221.507 490.623C174.731 490.623 131.063 474.54 96.2943 444.079C74.1472 424.566 56.6388 400.352 45.048 373.206C32.5771 344.585 26.2668 313.087 26.294 279.723C7.59457 269.024 -1.07369 257.112 1.21604 245.254C6.16349 220.121 59.4678 197.756 140.467 186.852L141.039 186.771V187.357C140.794 318.825 189.56 453.606 249.747 487.802L251.11 488.551L249.611 488.742C240.295 489.995 230.906 490.623 221.507 490.623ZM140.004 187.915C59.7813 198.819 7.00851 220.83 2.22461 245.513C0.00302851 256.962 8.58951 268.56 27.0573 279.041L27.3162 279.191V279.532C27.2481 312.869 33.5312 344.285 45.9748 372.906C57.5251 399.89 74.9484 423.958 96.9757 443.356C138.014 479.311 191.577 495.148 247.934 487.938C188.156 452.406 139.922 318.58 140.017 187.915H140.004Z" fill="white"/>
+<path d="M136.773 471.146C127.151 465.695 122.694 459.548 123.88 453.428C126.361 440.617 153.347 429.236 194.316 423.73L194.453 424.739C153.933 430.19 127.287 441.257 124.943 453.633C123.839 459.289 128.132 465.041 137.332 470.274L136.773 471.146Z" fill="white"/>
+<path d="M56.851 396.226C40.4958 386.958 32.9451 376.6 34.9486 366.241C39.1737 344.434 85.2409 325.094 155.2 315.69L155.337 316.699C85.8269 326.048 40.0869 345.102 35.9436 366.432C34.0355 376.286 41.3953 386.277 57.3553 395.313L56.851 396.226Z" fill="white"/>
+<path d="M249.406 488.715C134.92 467.426 42.104 342.881 42.3493 210.962H43.3715C43.1262 342.363 135.629 466.512 249.583 487.706L249.406 488.715Z" fill="white"/>
+<path d="M249.488 488.728C112.472 485.703 1.29787 375.932 1.5432 244.014H2.5654C2.32007 375.36 113.099 484.68 249.502 487.693L249.488 488.728Z" fill="white"/>
+<path d="M277.087 496.674C267.324 496.48 257.779 493.746 249.393 488.742C192.258 496.388 137.905 480.564 96.3079 444.079C74.1609 424.566 56.6524 400.352 45.0616 373.206C32.5499 344.462 26.2395 312.896 26.3077 279.423V278.55L27.0709 278.973C87.3126 313.21 236.349 327.602 359.272 311.07L359.858 310.988V311.574C359.695 400.574 337.002 468.979 300.653 490.118C293.526 494.375 285.388 496.639 277.087 496.674ZM249.597 487.679L249.747 487.774C267.465 497.86 284.474 498.378 300.175 489.273C336.143 468.393 358.618 400.574 358.877 312.228C236.377 328.584 88.1712 314.314 27.3708 280.363C27.3708 313.373 33.6948 344.489 46.0293 372.865C57.5796 399.849 75.0029 423.916 97.0303 443.315C138.436 479.597 192.572 495.366 249.474 487.706L249.597 487.679Z" fill="white"/>
+<path d="M250.565 490.882C203.843 490.882 158.717 483.617 136.773 471.146L137.278 470.26C167.616 487.502 242.714 494.793 304.659 486.411L304.796 487.433C286.814 489.775 268.698 490.926 250.565 490.882Z" fill="white"/>
+<path d="M251.41 429.972C171.501 429.972 94.3453 417.529 56.851 396.226L57.3553 395.34C109.351 424.889 237.971 437.305 344.103 423.035L344.226 424.044C313.452 428.064 282.445 430.045 251.41 429.972Z" fill="white"/>
+<path d="M244.5 498.473H244.268C235.068 497.274 231.116 407.157 231.279 318.307H232.301C232.083 434.838 238.23 496.633 244.404 497.437C245.058 497.56 246.721 496.756 248.997 488.088L249.992 488.347C248.18 495.229 246.421 498.473 244.5 498.473Z" fill="white"/>
+<path d="M277.087 496.674C268.01 496.674 258.633 493.948 249.243 488.66L247.88 487.911L249.392 487.706C276.15 484.01 302.046 475.627 325.894 462.942C346.556 430.531 358.673 376.613 358.795 311.656V311.206H359.231C403.922 305.196 440.135 295.723 464.341 284.247C469.705 263.097 472.451 241.369 472.518 219.549V218.677L473.282 219.099C492.158 229.826 500.908 241.806 498.605 253.718C496.438 264.907 484.703 275.525 465.227 284.888C445.737 361.662 393.604 428.405 326.589 463.8C319.011 475.631 310.234 484.599 300.612 490.228C293.487 494.439 285.364 496.665 277.087 496.674ZM251.083 488.497C268.365 497.874 284.87 498.133 300.148 489.26C309.293 483.958 317.566 475.631 324.817 464.659C301.762 476.717 276.831 484.781 251.083 488.51V488.497ZM359.858 312.079C359.681 376.027 347.878 429.291 327.72 462.001C393.495 426.66 444.646 360.94 464.014 285.379C439.794 296.759 403.936 306.136 359.858 312.092V312.079ZM473.568 220.353C473.435 241.677 470.749 262.908 465.567 283.593C484.294 274.53 495.552 264.24 497.637 253.445C499.832 242.174 491.504 230.739 473.568 220.367V220.353Z" fill="white"/>
+<path d="M304.796 487.433L304.66 486.411C345.18 480.96 371.838 469.906 374.237 457.531C375.328 451.875 371.034 446.123 361.835 440.889L362.339 439.99C371.961 445.441 376.418 451.588 375.232 457.708C372.793 470.533 345.766 481.914 304.796 487.433Z" fill="white"/>
+<path d="M344.171 424.003L344.048 422.994C413.558 413.644 459.284 394.591 463.428 373.261C465.336 363.407 457.976 353.416 442.03 344.38L442.534 343.494C458.889 352.776 466.426 363.134 464.436 373.479C460.266 395.272 414.185 414.639 344.171 424.003Z" fill="white"/>
+<path d="M282.444 491.808C271.359 491.794 260.3 490.758 249.406 488.715L249.583 487.706C299.835 497.056 348.328 484.98 386.136 453.633C430.731 416.629 456.381 356.292 456.517 288.063H457.54C457.403 356.592 431.644 417.229 386.79 454.341C357.515 478.745 320.556 492.016 282.444 491.808Z" fill="white"/>
+<path d="M255.335 488.783C253.386 488.783 251.437 488.783 249.488 488.783V487.761C317.294 489.246 380.561 464.686 427.773 418.578C472.491 374.964 497.188 316.835 497.283 255.026H498.305C498.196 317.121 473.391 375.469 428.482 419.328C382.456 464.223 321.151 488.783 255.335 488.783Z" fill="white"/>
+<path d="M473.568 220.353L472.805 219.931C412.563 185.694 263.54 171.301 140.603 187.834L140.017 187.915V187.329C140.181 98.3162 162.874 29.9106 199.237 8.78513C214.965 -0.346519 232.683 0.144137 250.483 10.1481C307.604 2.51564 361.971 18.3257 403.568 54.8114C425.711 74.328 443.218 98.5408 454.814 125.684C467.326 154.428 473.636 185.98 473.582 219.467L473.568 220.353ZM247.975 179.956C340.001 179.956 428.85 194.199 472.559 218.609C472.559 185.585 466.222 154.469 453.887 126.106C442.337 99.1189 424.914 75.0468 402.886 55.6428C361.48 19.3615 307.372 3.60599 250.456 11.2521H250.279L250.129 11.1703C232.411 1.07093 215.401 0.566646 199.7 9.65741C163.787 30.5648 141.312 98.3844 141.094 186.743C176.534 182.142 212.238 179.875 247.975 179.956Z" fill="white"/>
+<path d="M442.534 103.632C390.511 74.0832 261.891 61.6669 155.786 75.9368L155.65 74.9146C261.959 60.6175 390.865 73.1019 443.038 102.732L442.534 103.632Z" fill="white"/>
+<path d="M362.598 28.7519C332.259 11.5108 257.175 4.21911 195.216 12.6011L195.08 11.5926C257.216 3.2378 332.6 10.5295 363.102 27.866L362.598 28.7519Z" fill="white"/>
+<path d="M387.894 192.209H386.872C387.022 109.479 362.979 43.9623 322.555 16.9626C301.007 2.55642 276.12 0.607424 250.578 11.2247L250.183 10.2706C276.079 -0.510177 301.266 1.52059 323.127 16.104C363.838 43.3081 388.044 109.165 387.894 192.209Z" fill="white"/>
+<path d="M268.596 180.664H267.574C267.847 64.1882 261.645 2.32467 255.471 1.49328C254.858 1.39787 253.168 2.16111 250.878 10.843L249.883 10.584C251.778 3.42864 253.618 0.225748 255.608 0.471076C264.807 1.69772 268.76 91.8558 268.596 180.664Z" fill="white"/>
+<path d="M27.3298 280.363L26.5666 279.941C7.67632 269.214 -1.07372 257.234 1.22964 245.322C3.41034 234.132 15.1316 223.515 34.6079 214.152C54.0978 137.364 106.23 70.6212 173.259 35.2259C180.837 23.3956 189.614 14.4275 199.237 8.79859C215.006 -0.360323 232.778 0.157589 250.633 10.2978L251.996 11.0474L250.497 11.2519C223.72 14.9419 197.805 23.3251 173.941 36.0164C153.279 68.4269 141.23 122.345 141.039 187.302V187.752H140.603C95.9126 193.762 59.7131 203.235 35.5074 214.711C30.1433 235.861 27.3969 257.589 27.3298 279.409V280.363ZM34.308 215.365C15.595 224.428 4.3235 234.718 2.23821 245.513C0.0438871 256.798 8.37142 268.233 26.3076 278.605C26.4408 257.281 29.1267 236.05 34.308 215.365ZM172.169 36.9295C106.38 72.3658 55.2291 138.018 35.8073 213.593C60.0811 202.212 95.9399 192.835 140.017 186.879C140.194 122.917 151.997 69.6399 172.169 36.9295ZM222.87 3.22419C214.708 3.25315 206.704 5.48004 199.7 9.67086C190.555 14.9863 182.282 23.3002 175.031 34.2037C198.096 22.1892 223.025 14.1576 248.766 10.4477C239.897 5.64112 231.266 3.23328 222.87 3.22419Z" fill="white"/>
+<path d="M57.2872 155.505C40.932 146.223 33.395 135.865 35.3985 125.52C39.6099 103.713 85.6907 84.3732 155.65 74.969L155.786 75.9912C86.2768 85.3273 40.5367 104.395 36.3934 125.725C34.4853 135.579 41.8452 145.555 57.7915 154.592L57.2872 155.505Z" fill="white"/>
+<path d="M137.537 58.9682C127.914 53.5165 123.458 47.3696 124.643 41.2501C127.124 28.4385 154.124 17.058 195.08 11.5518L195.216 12.5603C154.696 18.0121 128.051 29.0791 125.706 41.4409C124.602 47.0971 128.896 52.8623 138.095 58.0959L137.537 58.9682Z" fill="white"/>
+<path d="M43.3717 210.963H42.3495C42.4721 142.421 68.2452 81.7837 113.099 44.6029C151.139 13.0373 199.932 0.839093 250.469 10.2433L250.292 11.2519C200.041 1.90219 151.548 13.9778 113.74 45.3252C69.1447 82.3834 43.4943 142.734 43.3717 210.963Z" fill="white"/>
+<path d="M2.56529 244.095H1.54309C1.66576 182 26.4575 123.639 71.3798 79.7801C118.796 33.4403 182.363 8.81213 250.387 10.2705V11.2927C182.622 9.79344 119.328 34.3671 72.1158 80.4752C27.3707 124.157 2.68796 182.191 2.56529 244.095Z" fill="white"/>
+<path d="M251.9 319.057C159.344 319.057 69.9897 304.61 26.6076 279.941L26.3486 279.791V279.532C26.6076 147.6 127.042 26.8167 250.319 10.2434H250.483L250.633 10.3252C311.106 44.6847 360.104 179.874 359.858 311.67V312.12H359.409C323.765 316.802 287.85 319.119 251.9 319.057ZM27.3299 279.191C87.667 313.264 236.159 327.616 358.836 311.193C358.972 179.983 310.329 45.5706 250.279 11.3474C127.669 27.8661 27.7115 147.968 27.3299 279.191Z" fill="white"/>
+<path d="M251.859 189.169C171.951 189.169 94.795 176.739 57.2871 155.437L57.7914 154.537C109.746 184.126 238.421 196.515 344.539 182.232L344.675 183.254C313.901 187.27 282.895 189.246 251.859 189.169Z" fill="white"/>
+<path d="M251.328 78.7035C204.607 78.7035 159.48 71.4254 137.537 58.9682L138.041 58.0823C168.393 75.3098 243.477 82.6151 305.436 74.233L305.573 75.2416C287.587 77.5935 269.466 78.75 251.328 78.7035Z" fill="white"/>
+<path d="M232.301 318.307H231.279C231.525 186.634 239.879 48.61 249.883 10.625L250.878 10.884C240.874 48.7871 232.547 186.702 232.301 318.307Z" fill="white"/>
+<path d="M358.836 312.242V311.656C359.081 180.174 310.316 45.3935 250.129 11.2111L248.766 10.4615L250.278 10.2571C307.522 2.57012 361.889 18.4347 403.527 54.8931C425.67 74.4097 443.177 98.6225 454.773 125.766C467.244 154.387 473.554 185.885 473.541 219.249C492.24 229.935 500.908 241.86 498.605 253.718C493.712 278.918 440.367 301.325 359.368 312.215L358.836 312.242ZM251.941 11.0339C311.72 46.4702 359.954 180.365 359.858 311.029C440.081 300.126 492.853 278.114 497.637 253.432C499.859 241.983 491.272 230.384 472.805 219.903L472.559 219.754V219.454C472.559 186.116 466.331 154.701 453.887 126.079C442.337 99.0916 424.914 75.0195 402.886 55.6155C361.889 19.6886 308.299 3.87853 251.941 11.0339Z" fill="white"/>
+<path d="M344.675 183.254L344.539 182.232C414.049 172.896 459.789 153.828 463.932 132.498C465.84 122.658 458.48 112.668 442.534 103.631L443.038 102.732C459.393 112.014 466.93 122.372 464.927 132.716C460.715 154.469 414.635 173.85 344.675 183.254Z" fill="white"/>
+<path d="M305.573 75.2416L305.436 74.233C345.943 68.7813 372.602 57.7143 374.946 45.3388C376.036 39.6827 371.757 33.9311 362.543 28.6974L363.047 27.8115C372.67 33.2633 377.14 39.4101 375.941 45.5297C373.515 58.3549 346.529 69.7354 305.573 75.2416Z" fill="white"/>
+<path d="M457.54 288.009H456.518C456.763 156.609 364.247 32.4456 250.292 11.252L250.469 10.2434C364.888 31.4779 457.785 156.132 457.54 288.009Z" fill="white"/>
+<path d="M498.332 254.999H497.31C497.555 123.639 386.776 14.3185 250.374 11.3064V10.2842C387.349 13.2554 498.578 123.04 498.332 254.999Z" fill="white"/>
+<path d="M249.079 498.528H248.03L244.309 498.46H242.646C241.133 498.46 239.007 498.351 237.194 498.242C226.92 497.713 216.687 496.553 206.556 494.766C188.06 491.498 169.998 486.13 152.72 478.765C144.015 474.996 135.508 470.783 127.233 466.145C119.613 461.902 112.258 457.2 105.208 452.066C104.008 451.152 102.714 450.185 101.364 449.19C96.7985 445.783 91.6194 441.925 87.8577 438.464C86.6038 437.319 85.2272 436.065 83.7689 434.77C80.5387 431.867 77.1859 428.855 74.5418 426.197C69.9078 421.536 64.0472 415.212 59.972 410.469C54.2068 403.763 46.9969 393.841 37.9062 380.157C34.0978 374.103 30.5952 367.862 27.4116 361.458C24.141 355.193 21.2243 348.75 18.6752 342.159C14.1753 329.959 10.2906 317.54 7.03572 304.951C4.56881 294.524 2.83789 280.5 1.58399 269.446C1.01156 264.267 0.916151 257.711 0.848005 251.932V249.125C0.710085 241.723 1.05153 234.321 1.8702 226.964C2.11553 225.096 2.36085 223.025 2.61981 220.871C3.17861 216.115 3.76468 211.194 4.4734 207.146C5.6319 200.55 7.48548 192.032 9.09374 185.953C10.6475 180.079 12.9509 172.569 14.8317 167.281C16.4263 162.769 18.7433 157.195 20.7877 152.288L22.8594 147.246C25.7789 140.418 29.1435 133.788 32.9315 127.401C38.2196 118.474 46.4245 106.221 53.8252 96.1765C58.4206 90.0275 63.4297 84.1989 68.8175 78.7309L72.5247 74.9965C75.4959 71.9844 78.8759 68.5498 81.7381 66.0011C87.0672 61.2581 94.7541 54.9068 101.323 49.8095C106.012 46.1704 112.609 41.8499 115.225 40.1599C119.069 37.6794 124.234 34.7082 128.391 32.2549L129.618 31.5462C137.916 26.8192 146.532 22.6749 155.405 19.1435C163.01 16.1859 168.775 14.0733 173 12.6968C178.534 10.9113 186.043 8.86694 191.223 7.5449C197.737 5.89575 206.215 4.36926 208.614 3.93312C214.065 2.97907 218.563 2.44752 223.306 1.90235C225.037 1.69791 231.729 1.07096 235.341 0.893782C240.274 0.648454 244.527 0.430383 251.791 0.471271C263.28 0.591097 274.747 1.50187 286.11 3.19714C291.63 3.98764 298.036 5.21428 300.993 5.84123C305.232 6.7544 311.474 8.29451 317.73 9.93003C321.274 10.8841 326.235 12.4378 330.065 13.7871C335.748 15.8043 342.413 18.353 347.074 20.302C355.252 23.7093 365.637 29.2564 372.547 32.9227C374.128 33.8222 375.696 34.749 377.249 35.6486C382.101 38.5244 387.73 41.9862 391.914 45.0937C393.141 46.0069 394.504 47.0018 395.921 48.024C399.165 50.3955 402.845 53.0805 405.653 55.3702C411.306 59.8297 416.729 64.5743 421.899 69.5856C423.112 70.8395 424.461 72.2025 425.879 73.6744C428.973 76.7819 432.176 79.9848 434.683 82.7924C439.372 88.0397 444.715 94.4864 448.313 99.1476C451.911 103.809 456.272 110.051 459.148 114.576C460.729 117.043 466.194 125.684 469.874 132.798C476.221 144.68 481.586 157.06 485.916 169.816C490.441 183.104 494.094 200.891 495.456 207.91C496.724 214.438 497.61 223.297 498.182 229.58C498.55 234.078 498.7 239.748 498.823 244.763C498.823 246.563 498.918 248.293 498.973 249.874C499.117 258.194 498.689 266.514 497.692 274.775C496.847 281.767 495.92 288.991 494.87 294.538C493.644 301.094 491.695 309.598 490.018 315.677C488.424 321.51 486.039 328.965 484.103 334.254C482.4 338.86 480.014 344.544 477.82 349.559L475.844 354.207C473.239 360.034 470.323 365.717 467.108 371.23C464.518 375.769 460.961 381.329 457.826 386.222L455.523 389.929C451.154 396.47 446.403 402.746 441.294 408.724C433.498 418.006 425.068 426.736 416.066 434.852C410.614 439.595 402.818 445.919 396.112 450.989C392.391 453.797 387.28 457.108 383.178 459.766L382.21 460.393C373.19 466.036 363.831 471.12 354.188 475.617C350.795 477.116 342.154 480.892 335.435 483.372C330.405 485.226 323.168 487.57 317.307 489.206C308.697 491.623 299.967 493.593 291.153 495.107C284.556 496.225 280.835 496.647 276.515 497.138C273.993 497.424 267.819 497.969 264.48 498.133C259.737 498.378 256.671 498.528 253.4 498.542H249.079V498.528ZM250.129 1.49347C243.914 1.49347 239.975 1.68428 235.463 1.91598C231.865 2.09316 225.214 2.70648 223.497 2.91092C218.754 3.46973 214.283 3.98764 208.859 4.94169C202.385 6.08656 195.911 7.42223 191.55 8.53983C186.384 9.90277 178.902 11.8927 173.382 13.6781C169.17 15.041 163.432 17.1399 155.841 20.0975C147.019 23.5815 138.452 27.6804 130.204 32.3639L128.977 33.0726C124.889 35.485 119.669 38.5244 115.839 40.9504C113.235 42.6268 106.68 46.9337 102.019 50.4909C95.4628 55.5747 87.8031 61.9123 82.4877 66.6417C79.6528 69.1631 76.2864 72.5841 73.3152 75.5962L69.608 79.3306C64.2384 84.7574 59.2518 90.5502 54.6839 96.6671C47.2831 106.685 39.1055 118.897 33.831 127.81C30.0839 134.177 26.7602 140.783 23.8816 147.586C23.241 149.154 22.5186 150.857 21.7963 152.629C19.7655 157.536 17.4485 163.096 15.8539 167.621C13.9867 172.896 11.7651 180.351 10.1432 186.212C8.52132 192.072 6.70862 200.754 5.55013 207.324C4.84141 211.344 4.25534 216.251 3.69654 220.953C3.45121 223.106 3.20587 225.178 2.96054 227.059C2.14135 234.366 1.7999 241.719 1.93836 249.07V251.878C2.02013 257.63 2.11553 264.144 2.68796 269.283C3.9146 280.322 5.6319 294.306 8.1397 304.719C11.3809 317.274 15.2566 329.656 19.7519 341.818C22.2853 348.372 25.1838 354.778 28.4338 361.008C31.5941 367.376 35.074 373.581 38.8602 379.598C45.5995 390.089 52.9445 400.179 60.858 409.815C64.9468 414.544 70.7529 420.854 75.3732 425.502C78.0037 428.133 81.3292 431.131 84.5594 434.034C86.0041 435.329 87.3943 436.569 88.6482 437.714C92.3826 441.148 97.5481 444.992 102.087 448.386C103.45 449.381 104.731 450.348 105.93 451.261C112.942 456.364 120.256 461.039 127.833 465.259C136.077 469.881 144.552 474.08 153.224 477.839C179.915 489.201 208.4 495.766 237.371 497.233C239.13 497.342 241.242 497.424 242.755 497.451H244.404L248.111 497.519C249.229 497.519 250.592 497.519 251.859 497.519H253.481C256.725 497.519 259.792 497.356 264.385 497.124C267.792 496.947 273.925 496.402 276.447 496.116C280.74 495.625 284.461 495.202 291.017 494.098C299.8 492.597 308.498 490.636 317.076 488.224C322.868 486.602 330.119 484.258 335.121 482.418C341.827 479.951 350.427 476.19 353.82 474.677C363.409 470.203 372.717 465.151 381.692 459.548L382.66 458.908C386.749 456.263 391.846 452.952 395.54 450.171C402.232 445.115 410.041 438.804 415.439 434.089C424.402 426 432.794 417.302 440.558 408.056C445.641 402.115 450.365 395.875 454.705 389.371L457.049 385.691C460.17 380.811 463.714 375.278 466.303 370.699C469.504 365.228 472.411 359.591 475.013 353.812L476.989 349.151C479.129 344.149 481.555 338.479 483.245 333.899C485.18 328.638 487.551 321.21 489.146 315.404C490.809 309.339 492.758 300.889 493.985 294.361C495.007 288.827 495.934 281.617 496.779 274.653C497.775 266.446 498.203 258.181 498.06 249.915C498.06 248.321 497.964 246.59 497.91 244.777C497.787 239.789 497.651 234.133 497.283 229.662C496.765 223.406 495.92 214.588 494.557 208.114C493.194 201.095 489.5 183.377 485.016 170.143C480.71 157.422 475.373 145.073 469.056 133.221C465.39 126.147 459.952 117.547 458.371 115.08C455.509 110.61 451.27 104.586 447.577 99.7337C443.883 94.8817 438.69 88.6122 433.947 83.3785C431.453 80.6526 428.264 77.3952 425.184 74.3014C423.821 72.9384 422.458 71.5755 421.19 70.2126C416.05 65.2211 410.654 60.4991 405.026 56.0653L404.685 55.7791C447.631 93.9412 472.682 151.103 473.513 215.638C473.513 216.728 473.513 217.832 473.513 218.936V219.413C473.336 351.358 372.793 472.142 249.57 488.715L249.433 487.706C372.22 471.188 472.287 350.868 472.559 219.481V219.004C472.559 140.731 436.891 72.9657 376.786 36.4936L372.111 33.7677C365.228 30.1151 354.802 24.5816 346.733 21.1879C342.099 19.2525 335.448 16.7038 329.778 14.7003C325.976 13.3374 321.042 11.8109 317.512 10.8704C311.283 9.19404 305.055 7.65393 300.83 6.78165C297.886 6.14107 291.521 4.92806 286.028 4.13756C274.707 2.48046 263.287 1.59705 251.846 1.49347H250.129Z" fill="white"/>
+<g clip-path="url(#clip0_202:5)">
+<path d="M57.2088 94.458C53.1913 91.047 49.4674 87.3075 46.076 83.2787C40.9868 77.2284 34.9432 68.2178 34.9432 59.6315C34.941 55.2464 36.2458 50.9592 38.6924 47.3125C41.139 43.6657 44.6175 40.8234 48.6877 39.1452C52.7578 37.467 57.2366 37.0284 61.5573 37.8848C65.878 38.7412 69.8463 40.8542 72.9601 43.9564C75.0332 46.0107 76.6764 48.4538 77.7946 51.1445C78.9127 53.8351 79.4837 56.7197 79.4744 59.6315C79.4744 68.2178 73.4309 77.2284 68.3416 83.2787C64.9502 87.3075 61.2263 91.047 57.2088 94.458ZM57.2088 50.1333C54.678 50.1333 52.2509 51.134 50.4613 52.9153C48.6718 54.6965 47.6664 57.1124 47.6664 59.6315C47.6664 62.1505 48.6718 64.5664 50.4613 66.3477C52.2509 68.1289 54.678 69.1296 57.2088 69.1296C59.7396 69.1296 62.1668 68.1289 63.9563 66.3477C65.7458 64.5664 66.7512 62.1505 66.7512 59.6315C66.7512 57.1124 65.7458 54.6965 63.9563 52.9153C62.1668 51.134 59.7396 50.1333 57.2088 50.1333Z" fill="#ED1C24"/>
+</g>
+<g clip-path="url(#clip1_202:5)">
+<path d="M458.209 222.458C454.191 219.047 450.467 215.308 447.076 211.279C441.987 205.228 435.943 196.218 435.943 187.631C435.941 183.246 437.246 178.959 439.692 175.312C442.139 171.666 445.618 168.823 449.688 167.145C453.758 165.467 458.237 165.028 462.557 165.885C466.878 166.741 470.846 168.854 473.96 171.956C476.033 174.011 477.676 176.454 478.795 179.144C479.913 181.835 480.484 184.72 480.474 187.631C480.474 196.218 474.431 205.228 469.342 211.279C465.95 215.308 462.226 219.047 458.209 222.458ZM458.209 178.133C455.678 178.133 453.251 179.134 451.461 180.915C449.672 182.697 448.666 185.112 448.666 187.631C448.666 190.151 449.672 192.566 451.461 194.348C453.251 196.129 455.678 197.13 458.209 197.13C460.74 197.13 463.167 196.129 464.956 194.348C466.746 192.566 467.751 190.151 467.751 187.631C467.751 185.112 466.746 182.697 464.956 180.915C463.167 179.134 460.74 178.133 458.209 178.133Z" fill="#ED1C24"/>
+</g>
+<g clip-path="url(#clip2_202:5)">
+<path d="M222.209 301.458C218.191 298.047 214.467 294.308 211.076 290.279C205.987 284.228 199.943 275.218 199.943 266.631C199.941 262.246 201.246 257.959 203.692 254.312C206.139 250.666 209.618 247.823 213.688 246.145C217.758 244.467 222.237 244.028 226.557 244.885C230.878 245.741 234.846 247.854 237.96 250.956C240.033 253.011 241.676 255.454 242.795 258.144C243.913 260.835 244.484 263.72 244.474 266.631C244.474 275.218 238.431 284.228 233.342 290.279C229.95 294.308 226.226 298.047 222.209 301.458ZM222.209 257.133C219.678 257.133 217.251 258.134 215.461 259.915C213.672 261.697 212.666 264.112 212.666 266.631C212.666 269.151 213.672 271.566 215.461 273.348C217.251 275.129 219.678 276.13 222.209 276.13C224.74 276.13 227.167 275.129 228.956 273.348C230.746 271.566 231.751 269.151 231.751 266.631C231.751 264.112 230.746 261.697 228.956 259.915C227.167 258.134 224.74 257.133 222.209 257.133Z" fill="#ED1C24"/>
+</g>
+<g clip-path="url(#clip3_202:5)">
+<path d="M332.209 122.458C328.191 119.047 324.467 115.308 321.076 111.279C315.987 105.228 309.943 96.2178 309.943 87.6315C309.941 83.2464 311.246 78.9592 313.692 75.3125C316.139 71.6657 319.618 68.8234 323.688 67.1452C327.758 65.467 332.237 65.0284 336.557 65.8848C340.878 66.7412 344.846 68.8542 347.96 71.9564C350.033 74.0107 351.676 76.4538 352.795 79.1445C353.913 81.8351 354.484 84.7197 354.474 87.6315C354.474 96.2178 348.431 105.228 343.342 111.279C339.95 115.308 336.226 119.047 332.209 122.458ZM332.209 78.1333C329.678 78.1333 327.251 79.134 325.461 80.9153C323.672 82.6965 322.666 85.1124 322.666 87.6315C322.666 90.1505 323.672 92.5664 325.461 94.3477C327.251 96.1289 329.678 97.1296 332.209 97.1296C334.74 97.1296 337.167 96.1289 338.956 94.3477C340.746 92.5664 341.751 90.1505 341.751 87.6315C341.751 85.1124 340.746 82.6965 338.956 80.9153C337.167 79.134 334.74 78.1333 332.209 78.1333Z" fill="#ED1C24"/>
+</g>
+<defs>
+<clipPath id="clip0_202:5">
+<rect width="57" height="57" fill="white" transform="translate(27.8182 37.458)"/>
+</clipPath>
+<clipPath id="clip1_202:5">
+<rect width="57" height="57" fill="white" transform="translate(428.818 165.458)"/>
+</clipPath>
+<clipPath id="clip2_202:5">
+<rect width="57" height="57" fill="white" transform="translate(192.818 244.458)"/>
+</clipPath>
+<clipPath id="clip3_202:5">
+<rect width="57" height="57" fill="white" transform="translate(302.818 65.458)"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/public/img/events/b5-bg.svg b/public/img/events/b5-bg.svg
new file mode 100644
index 0000000..6c625e3
--- /dev/null
+++ b/public/img/events/b5-bg.svg
@@ -0,0 +1,82 @@
+<svg width="505" height="200" viewBox="0 0 505 200" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g opacity="0.5">
+<mask id="mask0_80:110" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="505" height="200">
+<rect width="505" height="200" rx="10" fill="#E8F2FA"/>
+</mask>
+<g mask="url(#mask0_80:110)">
+<rect x="45.5" y="123.5" width="126.472" height="93.5705" rx="9.5" fill="#E8F2FA" stroke="#91C2EA"/>
+<path d="M46.2012 142.235L172 142" stroke="#91C2EA"/>
+<rect x="91.2173" y="160.366" width="34.2667" height="34.2636" rx="17.1318" fill="#91C2EA" stroke="#91C2EA"/>
+<path d="M103.14 170.518L116.198 177.498L103.14 184.478L103.14 170.518Z" fill="#E8F2FA" stroke="#91C2EA"/>
+<path d="M60.9264 133.925C60.9264 135.443 59.6962 136.673 58.1786 136.673C56.661 136.673 55.4308 135.443 55.4308 133.925C55.4308 132.408 56.661 131.178 58.1786 131.178C59.6962 131.178 60.9264 132.408 60.9264 133.925Z" fill="#91C2EA" stroke="#91C2EA"/>
+<path d="M69.6618 133.925C69.6618 135.443 68.4316 136.673 66.914 136.673C65.3964 136.673 64.1662 135.443 64.1662 133.925C64.1662 132.408 65.3964 131.178 66.914 131.178C68.4316 131.178 69.6618 132.408 69.6618 133.925Z" fill="#91C2EA" stroke="#91C2EA"/>
+<path d="M78.3971 133.925C78.3971 135.443 77.1669 136.673 75.6493 136.673C74.1316 136.673 72.9015 135.443 72.9015 133.925C72.9015 132.408 74.1316 131.178 75.6493 131.178C77.1669 131.178 78.3971 132.408 78.3971 133.925Z" fill="#91C2EA" stroke="#91C2EA"/>
+<rect x="40.5" y="117.5" width="126.472" height="93.5705" rx="9.5" fill="#E8F2FA" stroke="#91C2EA"/>
+<path d="M41.2012 136.235L167 136" stroke="#91C2EA"/>
+<rect x="86.2173" y="154.366" width="34.2667" height="34.2636" rx="17.1318" fill="#91C2EA" stroke="#91C2EA"/>
+<path d="M98.1401 164.518L111.198 171.498L98.1401 178.478L98.1401 164.518Z" fill="#E8F2FA" stroke="#91C2EA"/>
+<path d="M55.9264 127.925C55.9264 129.443 54.6962 130.673 53.1786 130.673C51.661 130.673 50.4308 129.443 50.4308 127.925C50.4308 126.408 51.661 125.178 53.1786 125.178C54.6962 125.178 55.9264 126.408 55.9264 127.925Z" fill="#91C2EA" stroke="#91C2EA"/>
+<path d="M64.6618 127.925C64.6618 129.443 63.4316 130.673 61.914 130.673C60.3964 130.673 59.1662 129.443 59.1662 127.925C59.1662 126.408 60.3964 125.178 61.914 125.178C63.4316 125.178 64.6618 126.408 64.6618 127.925Z" fill="#91C2EA" stroke="#91C2EA"/>
+<path d="M73.3971 127.925C73.3971 129.443 72.1669 130.673 70.6493 130.673C69.1316 130.673 67.9015 129.443 67.9015 127.925C67.9015 126.408 69.1316 125.178 70.6493 125.178C72.1669 125.178 73.3971 126.408 73.3971 127.925Z" fill="#91C2EA" stroke="#91C2EA"/>
+<rect x="35.5" y="113.5" width="126.472" height="93.5705" rx="9.5" fill="#E8F2FA" stroke="#91C2EA"/>
+<path d="M36.2012 132.235L162 132" stroke="#91C2EA"/>
+<rect x="81.2173" y="150.366" width="34.2667" height="34.2636" rx="17.1318" fill="#91C2EA" stroke="#91C2EA"/>
+<path d="M93.1401 160.518L106.198 167.498L93.1401 174.478L93.1401 160.518Z" fill="#E8F2FA" stroke="#91C2EA"/>
+<path d="M50.9264 123.925C50.9264 125.443 49.6962 126.673 48.1786 126.673C46.661 126.673 45.4308 125.443 45.4308 123.925C45.4308 122.408 46.661 121.178 48.1786 121.178C49.6962 121.178 50.9264 122.408 50.9264 123.925Z" fill="#91C2EA" stroke="#91C2EA"/>
+<path d="M59.6618 123.925C59.6618 125.443 58.4316 126.673 56.914 126.673C55.3964 126.673 54.1662 125.443 54.1662 123.925C54.1662 122.408 55.3964 121.178 56.914 121.178C58.4316 121.178 59.6618 122.408 59.6618 123.925Z" fill="#91C2EA" stroke="#91C2EA"/>
+<path d="M68.3971 123.925C68.3971 125.443 67.1669 126.673 65.6493 126.673C64.1316 126.673 62.9015 125.443 62.9015 123.925C62.9015 122.408 64.1316 121.178 65.6493 121.178C67.1669 121.178 68.3971 122.408 68.3971 123.925Z" fill="#91C2EA" stroke="#91C2EA"/>
+<rect x="420" y="85" width="127.472" height="95.5705" rx="10" fill="#E8F2FA"/>
+<rect x="420.5" y="85.5" width="126.472" height="94.5705" rx="9.5" stroke="#91C2EA" stroke-opacity="0.4"/>
+<path d="M421.201 104.438H546.268" stroke="#91C2EA" stroke-opacity="0.4"/>
+<rect x="465.717" y="122.256" width="35.2667" height="35.6365" rx="17.6334" fill="#91C2EA"/>
+<rect x="466.217" y="122.756" width="34.2667" height="34.6365" rx="17.1334" stroke="#91C2EA" stroke-opacity="0.4"/>
+<path d="M492.259 140.074L477.64 147.971L477.64 132.178L492.259 140.074Z" fill="#E8F2FA"/>
+<path d="M478.14 133.016L491.207 140.074L478.14 147.133L478.14 133.016Z" stroke="#91C2EA" stroke-opacity="0.4"/>
+<ellipse cx="433.179" cy="96.0409" rx="3.2478" ry="3.28185" fill="#91C2EA"/>
+<path d="M435.926 96.0409C435.926 97.5822 434.691 98.8227 433.179 98.8227C431.666 98.8227 430.431 97.5822 430.431 96.0409C430.431 94.4996 431.666 93.259 433.179 93.259C434.691 93.259 435.926 94.4996 435.926 96.0409Z" stroke="#91C2EA" stroke-opacity="0.4"/>
+<ellipse cx="441.914" cy="96.0409" rx="3.2478" ry="3.28185" fill="#91C2EA"/>
+<path d="M444.662 96.0409C444.662 97.5822 443.427 98.8227 441.914 98.8227C440.401 98.8227 439.166 97.5822 439.166 96.0409C439.166 94.4996 440.401 93.259 441.914 93.259C443.427 93.259 444.662 94.4996 444.662 96.0409Z" stroke="#91C2EA" stroke-opacity="0.4"/>
+<ellipse cx="450.649" cy="96.0409" rx="3.2478" ry="3.28185" fill="#91C2EA"/>
+<path d="M453.397 96.0409C453.397 97.5822 452.162 98.8227 450.649 98.8227C449.137 98.8227 447.901 97.5822 447.901 96.0409C447.901 94.4996 449.137 93.259 450.649 93.259C452.162 93.259 453.397 94.4996 453.397 96.0409Z" stroke="#91C2EA" stroke-opacity="0.4"/>
+<rect x="427" y="79" width="127.472" height="95.5705" rx="10" fill="#E8F2FA"/>
+<rect x="427.5" y="79.5" width="126.472" height="94.5705" rx="9.5" stroke="#91C2EA" stroke-opacity="0.8"/>
+<path d="M428.201 98.4382H553.268" stroke="#91C2EA" stroke-opacity="0.8"/>
+<rect x="472.717" y="116.256" width="35.2667" height="35.6365" rx="17.6334" fill="#91C2EA"/>
+<rect x="473.217" y="116.756" width="34.2667" height="34.6365" rx="17.1334" stroke="#91C2EA" stroke-opacity="0.8"/>
+<path d="M499.259 134.074L484.64 141.971L484.64 126.178L499.259 134.074Z" fill="#E8F2FA"/>
+<path d="M485.14 127.016L498.207 134.074L485.14 141.133L485.14 127.016Z" stroke="#91C2EA" stroke-opacity="0.8"/>
+<ellipse cx="440.179" cy="90.0409" rx="3.2478" ry="3.28185" fill="#91C2EA"/>
+<path d="M442.926 90.0409C442.926 91.5822 441.691 92.8227 440.179 92.8227C438.666 92.8227 437.431 91.5822 437.431 90.0409C437.431 88.4996 438.666 87.259 440.179 87.259C441.691 87.259 442.926 88.4996 442.926 90.0409Z" stroke="#91C2EA" stroke-opacity="0.8"/>
+<ellipse cx="448.914" cy="90.0409" rx="3.2478" ry="3.28185" fill="#91C2EA"/>
+<path d="M451.662 90.0409C451.662 91.5822 450.427 92.8227 448.914 92.8227C447.401 92.8227 446.166 91.5822 446.166 90.0409C446.166 88.4996 447.401 87.259 448.914 87.259C450.427 87.259 451.662 88.4996 451.662 90.0409Z" stroke="#91C2EA" stroke-opacity="0.8"/>
+<ellipse cx="457.649" cy="90.0409" rx="3.2478" ry="3.28185" fill="#91C2EA"/>
+<path d="M460.397 90.0409C460.397 91.5822 459.162 92.8227 457.649 92.8227C456.137 92.8227 454.901 91.5822 454.901 90.0409C454.901 88.4996 456.137 87.259 457.649 87.259C459.162 87.259 460.397 88.4996 460.397 90.0409Z" stroke="#91C2EA" stroke-opacity="0.8"/>
+<rect x="434.5" y="73.5" width="126.472" height="93.5705" rx="9.5" fill="#E8F2FA" stroke="#91C2EA"/>
+<path d="M435.201 88.2349H560.268" stroke="#91C2EA"/>
+<rect x="480.217" y="110.366" width="34.2667" height="34.2636" rx="17.1318" fill="#E8F2FA" stroke="#91C2EA"/>
+<path d="M492.14 120.518L505.198 127.498L492.14 134.478L492.14 120.518Z" fill="#91C2EA" stroke="#91C2EA"/>
+<path d="M449.926 80.9252C449.926 82.4426 448.696 83.6728 447.179 83.6728C445.661 83.6728 444.431 82.4426 444.431 80.9252C444.431 79.4079 445.661 78.1777 447.179 78.1777C448.696 78.1777 449.926 79.4079 449.926 80.9252Z" fill="#91C2EA" stroke="#91C2EA"/>
+<path d="M458.662 80.9252C458.662 82.4426 457.432 83.6728 455.914 83.6728C454.396 83.6728 453.166 82.4426 453.166 80.9252C453.166 79.4079 454.396 78.1777 455.914 78.1777C457.432 78.1777 458.662 79.4079 458.662 80.9252Z" fill="#91C2EA" stroke="#91C2EA"/>
+<path d="M467.397 80.9252C467.397 82.4426 466.167 83.6728 464.649 83.6728C463.132 83.6728 461.901 82.4426 461.901 80.9252C461.901 79.4079 463.132 78.1777 464.649 78.1777C466.167 78.1777 467.397 79.4079 467.397 80.9252Z" fill="#91C2EA" stroke="#91C2EA"/>
+<path d="M79 113V73C79 61.9543 87.9543 53 99 53H239.614C250.66 53 259.614 44.0457 259.614 33V31C259.614 19.9543 268.568 11 279.614 11H505" stroke="#91C2EA"/>
+<rect x="411.5" y="-8.5" width="49.8596" height="48.2223" rx="9.5" fill="#E8F2FA" stroke="#91C2EA"/>
+<path d="M431.655 7.65392C431.655 6.3877 432.158 5.17335 433.054 4.27799C433.949 3.38264 435.164 2.87964 436.43 2.87964C437.696 2.87964 438.911 3.38264 439.806 4.27799C440.702 5.17335 441.205 6.3877 441.205 7.65392V15.6111C441.205 16.8773 440.702 18.0916 439.806 18.987C438.911 19.8823 437.696 20.3853 436.43 20.3853C435.164 20.3853 433.949 19.8823 433.054 18.987C432.158 18.0916 431.655 16.8773 431.655 15.6111V7.65392Z" fill="#91C2EA"/>
+<path d="M429.268 13.2236C429.479 13.2236 429.681 13.3075 429.831 13.4567C429.98 13.6059 430.064 13.8083 430.064 14.0193V15.6108C430.064 17.2991 430.734 18.9182 431.928 20.112C433.122 21.3058 434.742 21.9765 436.43 21.9765C438.118 21.9765 439.738 21.3058 440.932 20.112C442.126 18.9182 442.796 17.2991 442.796 15.6108V14.0193C442.796 13.8083 442.88 13.6059 443.029 13.4567C443.179 13.3075 443.381 13.2236 443.592 13.2236C443.803 13.2236 444.005 13.3075 444.155 13.4567C444.304 13.6059 444.388 13.8083 444.388 14.0193V15.6108C444.388 17.5834 443.655 19.4857 442.332 20.9487C441.008 22.4116 439.189 23.3309 437.226 23.5281V26.7508H442C442.212 26.7508 442.414 26.8346 442.563 26.9838C442.712 27.1331 442.796 27.3355 442.796 27.5465C442.796 27.7575 442.712 27.9599 442.563 28.1091C442.414 28.2584 442.212 28.3422 442 28.3422H430.859C430.648 28.3422 430.446 28.2584 430.297 28.1091C430.148 27.9599 430.064 27.7575 430.064 27.5465C430.064 27.3355 430.148 27.1331 430.297 26.9838C430.446 26.8346 430.648 26.7508 430.859 26.7508H435.634V23.5281C433.671 23.3309 431.852 22.4116 430.528 20.9487C429.205 19.4857 428.472 17.5834 428.472 15.6108V14.0193C428.472 13.8083 428.556 13.6059 428.705 13.4567C428.854 13.3075 429.057 13.2236 429.268 13.2236Z" fill="#91C2EA"/>
+<circle cx="170.5" cy="55.5" r="27" fill="#E8F2FA" stroke="#91C2EA"/>
+<path d="M172.5 190.5H262" stroke="#91C2EA"/>
+<circle cx="125" cy="53" r="12.5" fill="#E8F2FA" stroke="#91C2EA"/>
+<path d="M118.356 52.7112H132.222" stroke="#91C2EA"/>
+<path d="M125.289 45.7778L125.289 59.6445" stroke="#91C2EA"/>
+<path d="M253 177L253 100" stroke="#91C2EA"/>
+<path d="M385 100L385 130C385 141.046 393.954 150 405 150L420 150" stroke="#91C2EA" stroke-opacity="0.4"/>
+<path d="M176.516 49.5046C176.516 52.8208 173.827 55.5092 170.511 55.5092C167.194 55.5092 164.506 52.8208 164.506 49.5046C164.506 46.1884 167.194 43.5 170.511 43.5C173.827 43.5 176.516 46.1884 176.516 49.5046Z" fill="#E8F2FA" stroke="#91C2EA"/>
+<path d="M182.51 66.517H158.712C158.983 60.407 164.192 55.5085 170.611 55.5085C177.03 55.5085 182.239 60.407 182.51 66.517Z" fill="#E8F2FA" stroke="#91C2EA"/>
+<circle cx="315.5" cy="192.5" r="27" fill="#E8F2FA" stroke="#91C2EA"/>
+<path d="M321.516 186.505C321.516 189.821 318.827 192.509 315.511 192.509C312.194 192.509 309.506 189.821 309.506 186.505C309.506 183.188 312.194 180.5 315.511 180.5C318.827 180.5 321.516 183.188 321.516 186.505Z" fill="#E8F2FA" stroke="#91C2EA"/>
+<path d="M327.51 203.517H303.712C303.983 197.407 309.192 192.509 315.611 192.509C322.03 192.509 327.239 197.407 327.51 203.517Z" fill="#E8F2FA" stroke="#91C2EA"/>
+<circle cx="253.5" cy="192.5" r="27" fill="#E8F2FA" stroke="#91C2EA"/>
+<path d="M259.516 186.505C259.516 189.821 256.827 192.509 253.511 192.509C250.194 192.509 247.506 189.821 247.506 186.505C247.506 183.188 250.194 180.5 253.511 180.5C256.827 180.5 259.516 183.188 259.516 186.505Z" fill="#E8F2FA" stroke="#91C2EA"/>
+<path d="M265.51 203.517H241.712C241.983 197.407 247.192 192.509 253.611 192.509C260.03 192.509 265.239 197.407 265.51 203.517Z" fill="#E8F2FA" stroke="#91C2EA"/>
+</g>
+</g>
+</svg>
diff --git a/public/img/events/content/event1.png b/public/img/events/content/event1.png
new file mode 100644
index 0000000..77e00f1
--- /dev/null
+++ b/public/img/events/content/event1.png
Binary files differ
diff --git a/public/img/events/content/event2.png b/public/img/events/content/event2.png
new file mode 100644
index 0000000..202c5fd
--- /dev/null
+++ b/public/img/events/content/event2.png
Binary files differ
diff --git a/public/img/events/content/event3.png b/public/img/events/content/event3.png
new file mode 100644
index 0000000..6f4303f
--- /dev/null
+++ b/public/img/events/content/event3.png
Binary files differ
diff --git a/public/img/events/flag-ru.svg b/public/img/events/flag-ru.svg
new file mode 100644
index 0000000..7b5fabf
--- /dev/null
+++ b/public/img/events/flag-ru.svg
@@ -0,0 +1,11 @@
+<svg width="34" height="34" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg">
+<circle cx="17" cy="17" r="16.5" fill="#C4C4C4" stroke="#E9E9E9"/>
+<mask id="mask0_37:231" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="1" y="1" width="32" height="32">
+<circle cx="17" cy="17" r="16" fill="#C4C4C4"/>
+</mask>
+<g mask="url(#mask0_37:231)">
+<path d="M45 -1L-10 -1L-10 17L45 17L45 -1Z" fill="white"/>
+<path d="M45 17L-10 17L-10 35L45 35L45 17Z" fill="#D52B1E"/>
+<path d="M45 11L-10 11L-10 23L45 23L45 11Z" fill="#0039A6"/>
+</g>
+</svg>
diff --git a/public/img/events/flag-uk.svg b/public/img/events/flag-uk.svg
new file mode 100644
index 0000000..800781a
--- /dev/null
+++ b/public/img/events/flag-uk.svg
@@ -0,0 +1,16 @@
+<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+<mask id="mask0_37:230" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="32" height="32">
+<path d="M32 16C32 24.8366 24.8366 32 16 32C7.16344 32 0 24.8366 0 16C0 7.16344 7.16344 0 16 0C24.8366 0 32 7.16344 32 16Z" fill="#C4C4C4"/>
+</mask>
+<g mask="url(#mask0_37:230)">
+<path d="M47 32L47 5.72205e-06L-14 3.89256e-07L-14 32L47 32Z" fill="#012169"/>
+<path d="M47 32L-14 3.89256e-07L47 32ZM-14 32L47 5.72205e-06L-14 32Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M24.7608 16L49 28.2955L45.6957 35L16.5 20.1903L-12.6957 35L-16 28.2954L8.23918 16L-16 3.70455L-12.6957 -3L16.5 11.8097L45.6957 -3L49 3.70456L24.7608 16Z" fill="white"/>
+<path d="M47 32L-14 3.89256e-07L47 32ZM-14 32L47 5.72205e-06L-14 32Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M21.516 16.5L48 29.6259L45.7936 34L16 19.2338L-13.7936 34L-16 29.6259L10.484 16.5L-16 3.37408L-13.7936 -1L16 13.7662L45.7936 -0.999996L48 3.37408L21.516 16.5Z" fill="#C8102E"/>
+<path d="M16.5 32L16.5 3.05565e-06L16.5 32ZM47 16L-14 16L47 16Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M10.4122 9.61278L10.4122 2.52344e-06L22.5878 3.58787e-06L22.5878 9.61278L47 9.61278L47 22.3872L22.5878 22.3872L22.5878 32L10.4122 32L10.4122 22.3872L-14 22.3872L-14 9.61277L10.4122 9.61278Z" fill="white"/>
+<path d="M16.5 32L16.5 3.05565e-06L16.5 32ZM47 16L-14 16L47 16Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M12.8473 12.1677L12.8473 2.73632e-06L20.1527 3.37498e-06L20.1527 12.1677L47 12.1677L47 19.8323L20.1527 19.8323L20.1527 32L12.8473 32L12.8473 19.8323L-14 19.8323L-14 12.1677L12.8473 12.1677Z" fill="#C8102E"/>
+</g>
+</svg>
diff --git a/public/img/events/icon-arrow.svg b/public/img/events/icon-arrow.svg
new file mode 100644
index 0000000..37a51df
--- /dev/null
+++ b/public/img/events/icon-arrow.svg
@@ -0,0 +1,4 @@
+<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M1 8H15" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M8 1L15 8L8 15" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+</svg>
diff --git a/public/img/events/icon-camera.svg b/public/img/events/icon-camera.svg
new file mode 100644
index 0000000..f5b4c45
--- /dev/null
+++ b/public/img/events/icon-camera.svg
@@ -0,0 +1,4 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="0.5" y="5.5" width="15" height="13" rx="2.5" stroke="#9C9C9C"/>
+<path d="M17.7399 13.6016C17.5909 13.5108 17.5 13.349 17.5 13.1746L17.5 10.7847C17.5 10.6095 17.5918 10.447 17.7419 10.3565L22.7419 7.34229C23.0751 7.1414 23.5 7.38139 23.5 7.7705L23.5 16.22C23.5 16.6102 23.0731 16.85 22.7399 16.647L17.7399 13.6016Z" stroke="#9C9C9C"/>
+</svg>
diff --git a/public/img/events/icon-loc.svg b/public/img/events/icon-loc.svg
new file mode 100644
index 0000000..94653b1
--- /dev/null
+++ b/public/img/events/icon-loc.svg
@@ -0,0 +1,3 @@
+<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M16.5 32C14.2445 30.085 12.1539 27.9857 10.25 25.7239C7.39285 22.3272 4 17.2687 4 12.4483C3.99876 9.98645 4.73126 7.5796 6.10481 5.53232C7.47835 3.48504 9.43118 1.88935 11.7162 0.947206C14.0012 0.00505985 16.5156 -0.241197 18.9412 0.239601C21.3669 0.720399 23.5947 1.90664 25.3428 3.6482C26.5066 4.8015 27.4291 6.1731 28.0569 7.68363C28.6846 9.19415 29.0052 10.8136 28.9999 12.4483C28.9999 17.2687 25.6071 22.3272 22.75 25.7239C20.846 27.9857 18.7554 30.085 16.5 32ZM16.5 7.11596C15.0792 7.11596 13.7166 7.67776 12.7119 8.67776C11.7072 9.67776 11.1428 11.034 11.1428 12.4483C11.1428 13.8625 11.7072 15.2188 12.7119 16.2188C13.7166 17.2188 15.0792 17.7806 16.5 17.7806C17.9208 17.7806 19.2834 17.2188 20.288 16.2188C21.2927 15.2188 21.8571 13.8625 21.8571 12.4483C21.8571 11.034 21.2927 9.67776 20.288 8.67776C19.2834 7.67776 17.9208 7.11596 16.5 7.11596Z" fill="#2D2D2D"/>
+</svg>
diff --git a/public/img/events/icon-mic.svg b/public/img/events/icon-mic.svg
new file mode 100644
index 0000000..f105af4
--- /dev/null
+++ b/public/img/events/icon-mic.svg
@@ -0,0 +1,4 @@
+<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M10 6C10 4.4087 10.6321 2.88258 11.7574 1.75736C12.8826 0.632141 14.4087 0 16 0C17.5913 0 19.1174 0.632141 20.2426 1.75736C21.3679 2.88258 22 4.4087 22 6V16C22 17.5913 21.3679 19.1174 20.2426 20.2426C19.1174 21.3679 17.5913 22 16 22C14.4087 22 12.8826 21.3679 11.7574 20.2426C10.6321 19.1174 10 17.5913 10 16V6Z" fill="#2D2D2D"/>
+<path d="M7 13C7.26522 13 7.51957 13.1054 7.70711 13.2929C7.89464 13.4804 8 13.7348 8 14V16C8 18.1217 8.84285 20.1566 10.3431 21.6569C11.8434 23.1571 13.8783 24 16 24C18.1217 24 20.1566 23.1571 21.6569 21.6569C23.1571 20.1566 24 18.1217 24 16V14C24 13.7348 24.1054 13.4804 24.2929 13.2929C24.4804 13.1054 24.7348 13 25 13C25.2652 13 25.5196 13.1054 25.7071 13.2929C25.8946 13.4804 26 13.7348 26 14V16C26 18.4791 25.0792 20.8698 23.4162 22.7083C21.7533 24.5468 19.4666 25.7021 17 25.95V30H23C23.2652 30 23.5196 30.1054 23.7071 30.2929C23.8946 30.4804 24 30.7348 24 31C24 31.2652 23.8946 31.5196 23.7071 31.7071C23.5196 31.8946 23.2652 32 23 32H9C8.73478 32 8.48043 31.8946 8.29289 31.7071C8.10536 31.5196 8 31.2652 8 31C8 30.7348 8.10536 30.4804 8.29289 30.2929C8.48043 30.1054 8.73478 30 9 30H15V25.95C12.5334 25.7021 10.2467 24.5468 8.58376 22.7083C6.92077 20.8698 5.99997 18.4791 6 16V14C6 13.7348 6.10536 13.4804 6.29289 13.2929C6.48043 13.1054 6.73478 13 7 13Z" fill="#2D2D2D"/>
+</svg>
diff --git a/public/img/events/icon-pero.png b/public/img/events/icon-pero.png
new file mode 100644
index 0000000..af56574
--- /dev/null
+++ b/public/img/events/icon-pero.png
Binary files differ
diff --git a/public/img/events/icon-pero.svg b/public/img/events/icon-pero.svg
new file mode 100644
index 0000000..e385f90
--- /dev/null
+++ b/public/img/events/icon-pero.svg
@@ -0,0 +1,92 @@
+<svg width="119" height="32" viewBox="0 0 119 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M23.6798 0.56465C23.1899 0.852348 22.3747 1.66689 21.4022 2.84825L22.2934 4.52409C22.9206 3.63403 23.5569 2.83027 24.1913 2.15058C24.2419 2.09664 24.2654 2.07147 24.2654 2.07147C24.2419 2.09664 24.2148 2.12541 24.1913 2.15058C23.9835 2.37715 23.3526 3.11078 22.4018 4.56005C23.3183 4.5151 24.7155 4.3281 25.8724 4.1339C26.2158 2.2279 25.538 1.36481 25.538 1.36481C25.538 1.36481 24.6776 -0.019736 23.6762 0.571843L23.6798 0.56465Z" fill="url(#paint0_linear_204:5)"/>
+<path d="M20.6793 14.6426C20.5654 14.6624 20.4498 14.684 20.3287 14.7039C20.3287 14.7039 20.3268 14.7039 20.3268 14.7057C20.3883 14.6966 20.448 14.6876 20.5076 14.6786C20.5636 14.666 20.6215 14.6552 20.6793 14.6426Z" fill="#BD202E"/>
+<path d="M20.6793 14.6426C20.5654 14.6624 20.4498 14.684 20.3287 14.7039C20.3287 14.7039 20.3268 14.7039 20.3268 14.7057C20.3883 14.6966 20.448 14.6876 20.5076 14.6786C20.5636 14.666 20.6215 14.6552 20.6793 14.6426Z" fill="black"/>
+<path d="M20.9867 13.1829C20.9849 13.1829 20.9849 13.1829 20.9849 13.1847C21.0029 13.1829 21.0228 13.1793 21.0409 13.1757C21.1168 13.1649 21.1909 13.1523 21.2632 13.1343C21.1729 13.1505 21.0825 13.1667 20.9867 13.1829Z" fill="#BD202E"/>
+<path d="M20.9867 13.1829C20.9849 13.1829 20.9849 13.1829 20.9849 13.1847C21.0029 13.1829 21.0228 13.1793 21.0409 13.1757C21.1168 13.1649 21.1909 13.1523 21.2632 13.1343C21.1729 13.1505 21.0825 13.1667 20.9867 13.1829Z" fill="black"/>
+<path d="M19.667 8.85188C19.9382 8.34661 20.2129 7.85393 20.4895 7.37563C20.7769 6.87576 21.0697 6.39386 21.3644 5.92635C21.3806 5.89938 21.4005 5.87061 21.4168 5.84364C21.7078 5.38512 22.0024 4.94279 22.2971 4.52203L21.4059 2.84619C21.3391 2.92711 21.2722 3.00982 21.2035 3.09613C20.945 3.41619 20.6793 3.75783 20.4045 4.12285C20.0954 4.53282 19.7791 4.97156 19.4556 5.43187C19.1591 5.85623 18.8554 6.30036 18.5518 6.76248C18.2933 7.15446 18.0366 7.55724 17.7799 7.97081C17.7709 7.98519 17.7618 8.00137 17.7528 8.01756L18.9151 10.3012C19.1609 9.80668 19.414 9.32299 19.667 8.85188Z" fill="url(#paint1_linear_204:5)"/>
+<path d="M14.3708 21.7091C14.2171 22.128 14.0617 22.5578 13.908 22.9947C13.9062 23.0001 13.9044 23.0073 13.9008 23.0127C13.8791 23.0738 13.8556 23.1368 13.8357 23.1979C13.7309 23.4928 13.6405 23.7589 13.4326 24.3613C13.7743 24.5159 14.049 24.9259 14.3093 25.3898C14.2822 24.9097 14.0833 24.4584 13.7019 24.1095C15.3884 24.1851 16.8471 23.7607 17.5883 22.5344C17.6551 22.4247 17.7166 22.3114 17.7726 22.1874C17.431 22.6189 17.0062 22.8005 16.2091 22.7574C16.2073 22.7574 16.2055 22.7592 16.2036 22.7592C16.2055 22.7592 16.2073 22.7574 16.2091 22.7574C17.384 22.2341 17.9715 21.7324 18.4866 20.9053C18.6095 20.7075 18.7306 20.4935 18.8536 20.2544C17.8269 21.3027 16.6483 21.6012 15.383 21.3746L14.4431 21.4771C14.4123 21.5562 14.3852 21.6335 14.3545 21.7127L14.3708 21.7091Z" fill="url(#paint2_linear_204:5)"/>
+<path d="M14.8227 19.6195C15.0252 19.098 15.2349 18.5694 15.4482 18.0372C15.6542 17.5265 15.8639 17.0122 16.0808 16.498C16.2977 15.9837 16.5183 15.4641 16.7424 14.9462C16.9702 14.4194 17.2051 13.8943 17.4456 13.3711C17.6823 12.8532 17.9209 12.339 18.165 11.8319C18.2517 11.6485 18.3421 11.4651 18.4307 11.2835C18.5843 10.9688 18.7398 10.6559 18.897 10.3466C18.9061 10.3305 18.9133 10.3125 18.9223 10.2963L17.7601 8.0127C17.742 8.04326 17.7221 8.07563 17.7022 8.1044C17.4311 8.54494 17.1618 8.99446 16.8979 9.45298C16.6303 9.91689 16.3682 10.3898 16.1116 10.8699C15.8965 11.2745 15.685 11.6808 15.4771 12.0944C15.4355 12.1771 15.3957 12.2616 15.3542 12.3443C15.1011 12.864 14.8734 13.3621 14.6655 13.8458C14.4305 14.3906 14.2244 14.912 14.0455 15.4065C13.9262 15.732 13.8195 16.0449 13.7201 16.3469C13.6388 16.6041 13.5629 16.863 13.4869 17.1201C13.3134 17.7243 13.1634 18.3285 13.0405 18.9362L14.2082 21.2378C14.3618 20.8278 14.5209 20.4107 14.6836 19.9899C14.7324 19.8694 14.7757 19.7508 14.8227 19.6357V19.6195Z" fill="url(#paint3_linear_204:5)"/>
+<path d="M13.0151 19.0141C12.8687 19.7477 12.7639 20.4777 12.7115 21.2078L12.706 21.2833C12.3409 20.7025 11.3666 20.1361 11.3684 20.1415C12.068 21.1484 12.5976 22.1554 12.6753 23.1263C12.3011 23.2019 11.7896 23.0922 11.1985 22.8764C11.8149 23.441 12.2776 23.5956 12.4602 23.6388C11.8926 23.6748 11.3034 24.0614 10.7087 24.5073C11.5781 24.1549 12.2813 24.0146 12.7874 24.1279C11.9884 26.3755 11.1895 28.8569 10.3833 31.5001C10.6291 31.4282 10.7755 31.2628 10.8569 31.0416C10.9997 30.5651 11.9451 27.4274 13.4237 23.3277C13.467 23.2109 13.5086 23.0922 13.552 22.9753C13.5628 22.9411 13.5755 22.9088 13.5881 22.8782C13.7436 22.4467 13.9081 22.0061 14.0744 21.5566C14.1123 21.4541 14.1503 21.3516 14.1901 21.2491C14.1901 21.2473 14.1919 21.2455 14.1919 21.2437L13.0224 18.9421C13.0188 18.9655 13.0133 18.9925 13.0079 19.0195L13.0151 19.0141Z" fill="url(#paint4_linear_204:5)"/>
+<path d="M19.0886 10.4921C19.0543 10.5605 19.0217 10.6288 18.9874 10.6971C18.8862 10.9039 18.7849 11.1143 18.6801 11.3301C18.568 11.5638 18.456 11.8012 18.3421 12.0457C18.2842 12.168 18.2264 12.292 18.1686 12.4179C17.995 12.7937 17.8197 13.1821 17.6407 13.5831C17.422 14.074 17.1961 14.5864 16.9701 15.1187C16.755 15.6257 16.5327 16.149 16.3122 16.692C16.1007 17.2063 15.8874 17.7385 15.6705 18.2852C15.4771 18.7724 15.2818 19.2759 15.0866 19.792C15.0776 19.8153 15.0685 19.8423 15.0595 19.8657C14.8643 20.3782 14.6673 20.905 14.4702 21.4444C14.4666 21.457 14.4612 21.4678 14.4576 21.4822L15.3975 21.3797C15.3794 21.3761 15.3596 21.3743 15.3415 21.3707C16.464 21.2323 17.9625 20.3961 18.9205 19.3568C19.3652 18.8821 19.7683 18.3211 20.1406 17.6648C20.4172 17.1775 20.6793 16.6345 20.9287 16.0357C21.1456 15.5125 21.3535 14.9443 21.5542 14.3311C21.2957 14.466 21.001 14.5667 20.6757 14.635C20.6178 14.6476 20.56 14.6584 20.5003 14.6691C20.4407 14.6799 20.381 14.6889 20.3196 14.6961C20.3196 14.6961 20.3214 14.6961 20.3214 14.6943C21.3698 14.2933 22.0296 13.5202 22.5086 12.5726C22.2338 12.7596 21.7855 13.0041 21.2487 13.121C21.1764 13.1372 21.1023 13.1497 21.0263 13.1623C21.0083 13.1641 20.9884 13.1677 20.9703 13.1713H20.9721H20.9739C21.3391 13.0203 21.6445 12.8495 21.9103 12.6499C21.9681 12.6067 22.0241 12.5636 22.0747 12.5168C22.1561 12.4467 22.232 12.373 22.3079 12.2974C22.3549 12.2471 22.4001 12.1967 22.4453 12.1446C22.5501 12.0205 22.6477 11.8875 22.7381 11.7436C22.7652 11.6987 22.7942 11.6555 22.8195 11.6088C22.8556 11.5422 22.8882 11.4757 22.9207 11.4128C23.0671 11.1215 23.1846 10.859 23.2768 10.6306C23.3238 10.5155 23.3636 10.4112 23.3997 10.3105C23.4142 10.271 23.4268 10.2332 23.4395 10.1955C23.4774 10.0858 23.5063 9.98867 23.5298 9.90236C23.566 9.77289 23.5877 9.6704 23.5985 9.59668C23.5624 9.62365 23.5226 9.65242 23.4756 9.67939C23.1593 9.86819 22.617 10.0372 22.1796 10.1181L23.0418 10.0246L22.1796 10.1181C22.1742 10.1199 22.1669 10.1199 22.1597 10.1217C22.1145 10.1289 22.0729 10.1361 22.0277 10.1415L22.0494 10.1307L19.1031 10.4526C19.1031 10.4598 19.0977 10.4724 19.0922 10.4831L19.0886 10.4921Z" fill="url(#paint5_linear_204:5)"/>
+<path d="M22.4144 4.55637C22.1523 4.95735 21.8667 5.41227 21.5558 5.92833C21.5396 5.9535 21.5215 5.98407 21.507 6.00924C21.2413 6.45517 20.9593 6.94426 20.6593 7.48189C20.4026 7.94581 20.1351 8.44208 19.8567 8.97612C19.6145 9.44183 19.3651 9.93632 19.1066 10.4596L22.0529 10.1377C22.9133 9.74392 23.2965 9.38969 23.6689 8.87363C23.7665 8.73158 23.8677 8.58414 23.9654 8.4295C24.269 7.95839 24.5655 7.44054 24.8312 6.92448C25.0879 6.4264 25.3138 5.93372 25.4873 5.48779C25.5976 5.20549 25.6862 4.94296 25.7476 4.71101C25.8019 4.50782 25.8434 4.31362 25.876 4.12842C24.7318 4.32441 23.3273 4.51142 22.4054 4.55637H22.4144Z" fill="url(#paint6_linear_204:5)"/>
+<path d="M20.4986 14.6802C20.439 14.691 20.3793 14.7 20.3179 14.7072C20.3793 14.7018 20.4408 14.691 20.4986 14.6802Z" fill="#BD202E"/>
+<path opacity="0.35" d="M20.4986 14.6802C20.439 14.691 20.3793 14.7 20.3179 14.7072C20.3793 14.7018 20.4408 14.691 20.4986 14.6802Z" fill="#BD202E"/>
+<path d="M20.4986 14.6802C20.439 14.691 20.3793 14.7 20.3179 14.7072C20.3793 14.7018 20.4408 14.691 20.4986 14.6802Z" fill="url(#paint7_linear_204:5)"/>
+<path d="M20.9865 13.1882C21.0046 13.1864 21.0245 13.1828 21.0425 13.1792C21.0245 13.181 21.0064 13.1864 20.9865 13.1882Z" fill="#BD202E"/>
+<path opacity="0.35" d="M20.9865 13.1882C21.0046 13.1864 21.0245 13.1828 21.0425 13.1792C21.0245 13.181 21.0064 13.1864 20.9865 13.1882Z" fill="#BD202E"/>
+<path d="M20.9865 13.1882C21.0046 13.1864 21.0245 13.1828 21.0425 13.1792C21.0245 13.181 21.0064 13.1864 20.9865 13.1882Z" fill="url(#paint8_linear_204:5)"/>
+<path d="M20.9865 13.1871C20.9866 13.1871 20.9866 13.1869 20.9865 13.1871C20.9866 13.1869 20.9866 13.1871 20.9865 13.1871Z" fill="#BD202E"/>
+<path opacity="0.35" d="M20.9865 13.1871C20.9866 13.1871 20.9866 13.1869 20.9865 13.1871C20.9866 13.1869 20.9866 13.1871 20.9865 13.1871Z" fill="#BD202E"/>
+<path d="M20.9865 13.1871C20.9866 13.1871 20.9866 13.1869 20.9865 13.1871C20.9866 13.1869 20.9866 13.1871 20.9865 13.1871Z" fill="url(#paint9_linear_204:5)"/>
+<path d="M38.1119 21.2591H40.3626L36.2186 11.5906H34.1003L29.9695 21.2591H32.1673L32.9881 19.1872H37.291L38.1119 21.2591ZM33.6766 17.4883L35.1462 13.7867L36.6158 17.4883H33.6766Z" fill="black"/>
+<path d="M45.3358 11.5906H41.3242V21.2591H43.469V18.5933H45.3358C47.8116 18.5933 49.3606 17.2535 49.3606 15.0988C49.3606 12.9303 47.8116 11.5906 45.3358 11.5906ZM45.2166 16.7701H43.469V13.4138H45.2166C46.5273 13.4138 47.1893 14.0353 47.1893 15.0988C47.1893 16.1486 46.5273 16.7701 45.2166 16.7701Z" fill="black"/>
+<path d="M57.3508 21.2591H59.6015L55.4575 11.5906H53.3392L49.2084 21.2591H51.4062L52.227 19.1872H56.5299L57.3508 21.2591ZM52.9155 17.4883L54.3851 13.7867L55.8547 17.4883H52.9155Z" fill="black"/>
+<path d="M64.869 21.4248C66.4843 21.4248 67.8215 20.8171 68.6953 19.6983L67.3184 18.3723C66.6961 19.132 65.915 19.5187 64.9882 19.5187C63.2538 19.5187 62.0225 18.248 62.0225 16.4248C62.0225 14.6016 63.2538 13.3309 64.9882 13.3309C65.915 13.3309 66.6961 13.7176 67.3184 14.4635L68.6953 13.1375C67.8215 12.0325 66.4843 11.4248 64.8823 11.4248C61.996 11.4248 59.8512 13.5104 59.8512 16.4248C59.8512 19.3392 61.996 21.4248 64.869 21.4248Z" fill="black"/>
+<path d="M76.4988 11.5906V15.4027H72.2885V11.5906H70.1437V21.2591H72.2885V17.295H76.4988V21.2591H78.6436V11.5906H76.4988Z" fill="black"/>
+<path d="M82.9679 19.4635V17.2259H87.2708V15.4856H82.9679V13.3861H87.8401V11.5906H80.8363V21.2591H88.0122V19.4635H82.9679Z" fill="black"/>
+<path d="M94.1541 21.3419C93.2361 21.3419 92.4064 21.1301 91.665 20.7066C90.9324 20.283 90.3543 19.6983 89.9306 18.9524C89.5158 18.1974 89.3083 17.3548 89.3083 16.4248C89.3083 15.4948 89.5158 14.6568 89.9306 13.911C90.3543 13.1559 90.9368 12.5666 91.6782 12.143C92.4197 11.7195 93.2493 11.5077 94.1673 11.5077C94.8558 11.5077 95.4913 11.6274 96.0738 11.8668C96.6564 12.1062 97.1506 12.4561 97.5567 12.9165L96.9344 13.5657C96.2106 12.8014 95.2971 12.4193 94.1938 12.4193C93.4612 12.4193 92.7948 12.5942 92.1946 12.9441C91.5944 13.294 91.1222 13.7729 90.7779 14.3806C90.4425 14.9883 90.2748 15.6697 90.2748 16.4248C90.2748 17.1799 90.4425 17.8613 90.7779 18.469C91.1222 19.0767 91.5944 19.5556 92.1946 19.9055C92.7948 20.2554 93.4612 20.4303 94.1938 20.4303C95.3059 20.4303 96.2195 20.0436 96.9344 19.2701L97.5567 19.9193C97.1506 20.3797 96.6519 20.7342 96.0606 20.9828C95.478 21.2222 94.8425 21.3419 94.1541 21.3419Z" fill="black"/>
+<path d="M103.503 21.3419C102.585 21.3419 101.751 21.1301 101 20.7066C100.259 20.2738 99.6763 19.6845 99.2527 18.9386C98.8378 18.1928 98.6304 17.3548 98.6304 16.4248C98.6304 15.4948 98.8378 14.6568 99.2527 13.911C99.6763 13.1651 100.259 12.5804 101 12.1568C101.751 11.7241 102.585 11.5077 103.503 11.5077C104.421 11.5077 105.246 11.7195 105.978 12.143C106.72 12.5666 107.302 13.1559 107.726 13.911C108.15 14.6568 108.362 15.4948 108.362 16.4248C108.362 17.3548 108.15 18.1974 107.726 18.9524C107.302 19.6983 106.72 20.283 105.978 20.7066C105.246 21.1301 104.421 21.3419 103.503 21.3419ZM103.503 20.4303C104.235 20.4303 104.897 20.26 105.489 19.9193C106.08 19.5694 106.543 19.0906 106.879 18.4828C107.214 17.8659 107.382 17.1799 107.382 16.4248C107.382 15.6697 107.214 14.9883 106.879 14.3806C106.543 13.7637 106.08 13.2848 105.489 12.9441C104.897 12.5942 104.235 12.4193 103.503 12.4193C102.77 12.4193 102.104 12.5942 101.503 12.9441C100.912 13.2848 100.444 13.7637 100.1 14.3806C99.7646 14.9883 99.5969 15.6697 99.5969 16.4248C99.5969 17.1799 99.7646 17.8659 100.1 18.4828C100.444 19.0906 100.912 19.5694 101.503 19.9193C102.104 20.26 102.77 20.4303 103.503 20.4303Z" fill="black"/>
+<path d="M118.303 11.5906V21.2591H117.495L111.537 13.4138V21.2591H110.558V11.5906H111.365L117.336 19.4359V11.5906H118.303Z" fill="black"/>
+<defs>
+<linearGradient id="paint0_linear_204:5" x1="22.2033" y1="3.10991" x2="28.7318" y2="1.26519" gradientUnits="userSpaceOnUse">
+<stop stop-color="#F59723"/>
+<stop offset="0.312" stop-color="#F69822"/>
+<stop offset="0.838" stop-color="#E87726"/>
+</linearGradient>
+<linearGradient id="paint1_linear_204:5" x1="7.8976" y1="32.3122" x2="21.0725" y2="3.87052" gradientUnits="userSpaceOnUse">
+<stop offset="0.323" stop-color="#9C2063"/>
+<stop offset="0.63" stop-color="#C82037"/>
+<stop offset="0.751" stop-color="#CC2135"/>
+<stop offset="1" stop-color="#E87726"/>
+</linearGradient>
+<linearGradient id="paint2_linear_204:5" x1="12.3697" y1="30.2041" x2="20.2171" y2="13.2633" gradientUnits="userSpaceOnUse">
+<stop stop-color="#282661"/>
+<stop offset="0.0955" stop-color="#662E8C"/>
+<stop offset="0.788" stop-color="#9E2064"/>
+<stop offset="0.949" stop-color="#CC2032"/>
+</linearGradient>
+<linearGradient id="paint3_linear_204:5" x1="8.37335" y1="30.5923" x2="21.5483" y2="2.15055" gradientUnits="userSpaceOnUse">
+<stop offset="0.323" stop-color="#9C2063"/>
+<stop offset="0.63" stop-color="#C82037"/>
+<stop offset="0.751" stop-color="#CC2135"/>
+<stop offset="1" stop-color="#E87726"/>
+</linearGradient>
+<linearGradient id="paint4_linear_204:5" x1="9.73358" y1="28.6996" x2="16.6555" y2="13.7568" gradientUnits="userSpaceOnUse">
+<stop stop-color="#282661"/>
+<stop offset="0.0955" stop-color="#662E8C"/>
+<stop offset="0.788" stop-color="#9E2064"/>
+<stop offset="0.949" stop-color="#CC2032"/>
+</linearGradient>
+<linearGradient id="paint5_linear_204:5" x1="11.3383" y1="31.9728" x2="24.5132" y2="3.53106" gradientUnits="userSpaceOnUse">
+<stop offset="0.323" stop-color="#9C2063"/>
+<stop offset="0.63" stop-color="#C82037"/>
+<stop offset="0.751" stop-color="#CC2135"/>
+<stop offset="1" stop-color="#E87726"/>
+</linearGradient>
+<linearGradient id="paint6_linear_204:5" x1="10.3629" y1="33.6602" x2="23.5378" y2="5.21845" gradientUnits="userSpaceOnUse">
+<stop offset="0.323" stop-color="#9C2063"/>
+<stop offset="0.63" stop-color="#C82037"/>
+<stop offset="0.751" stop-color="#CC2135"/>
+<stop offset="1" stop-color="#E87726"/>
+</linearGradient>
+<linearGradient id="paint7_linear_204:5" x1="12.2145" y1="32.4166" x2="25.4379" y2="3.93378" gradientUnits="userSpaceOnUse">
+<stop offset="0.323" stop-color="#9C2063"/>
+<stop offset="0.63" stop-color="#C82037"/>
+<stop offset="0.751" stop-color="#CC2135"/>
+<stop offset="1" stop-color="#E87726"/>
+</linearGradient>
+<linearGradient id="paint8_linear_204:5" x1="12.1133" y1="32.3748" x2="25.3384" y2="3.89086" gradientUnits="userSpaceOnUse">
+<stop offset="0.323" stop-color="#9C2063"/>
+<stop offset="0.63" stop-color="#C82037"/>
+<stop offset="0.751" stop-color="#CC2135"/>
+<stop offset="1" stop-color="#E87726"/>
+</linearGradient>
+<linearGradient id="paint9_linear_204:5" x1="20.8929" y1="13.3945" x2="21.0838" y2="12.9847" gradientUnits="userSpaceOnUse">
+<stop offset="0.323" stop-color="#9C2063"/>
+<stop offset="0.63" stop-color="#C82037"/>
+<stop offset="0.751" stop-color="#CC2135"/>
+<stop offset="1" stop-color="#E87726"/>
+</linearGradient>
+</defs>
+</svg>
diff --git a/public/img/events/icon-play.svg b/public/img/events/icon-play.svg
new file mode 100644
index 0000000..f950cfe
--- /dev/null
+++ b/public/img/events/icon-play.svg
@@ -0,0 +1,4 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
+<circle cx="12" cy="12" r="12" fill="#0070CC"/>
+<path d="M17.7142 11.9999L9.1428 16.9486L9.14281 7.05121L17.7142 11.9999Z" fill="white"/>
+</svg>
diff --git a/public/img/events/icon-plus.svg b/public/img/events/icon-plus.svg
new file mode 100644
index 0000000..f1af7bf
--- /dev/null
+++ b/public/img/events/icon-plus.svg
@@ -0,0 +1,4 @@
+<svg width="14" height="13" viewBox="0 0 14 13" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M13.1923 6.5C13.1923 6.92864 12.8448 7.27612 12.4162 7.27612L0.968441 7.27612C0.539802 7.27612 0.192322 6.92863 0.192322 6.5C0.192322 6.07136 0.539802 5.72388 0.968441 5.72388L12.4162 5.72388C12.8448 5.72388 13.1923 6.07136 13.1923 6.5Z" fill="#0070CC"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M6.69233 13C6.26369 13 5.91621 12.6525 5.91621 12.2239L5.91621 0.776119C5.91621 0.34748 6.26369 -1.05323e-07 6.69233 -6.78505e-08C7.12097 -3.03777e-08 7.46845 0.34748 7.46845 0.776119L7.46844 12.2239C7.46844 12.6525 7.12096 13 6.69233 13Z" fill="#0070CC"/>
+</svg>
diff --git a/public/img/faq/hero.svg b/public/img/faq/hero.svg
new file mode 100644
index 0000000..df51afc
--- /dev/null
+++ b/public/img/faq/hero.svg
@@ -0,0 +1,34 @@
+<svg width="604" height="651" viewBox="0 0 604 651" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M168.937 536.404V649.034" stroke="white"/>
+<path d="M111.598 618.829L168.681 588.624L229.092 618.829" stroke="white"/>
+<path d="M111.342 549.203V619.085L169.193 649.546L229.092 619.085V548.691" stroke="white"/>
+<path d="M111.086 548.691L168.937 517.206L229.092 548.691L167.913 578.64L111.086 548.691Z" stroke="white"/>
+<path d="M109.038 506.711L167.657 475.993L227.044 504.407" stroke="white"/>
+<path d="M168.681 501.591C167.06 478.041 164.329 429.917 177.64 403.295C191.463 375.65 220.841 315.907 216.293 270.955C211.941 227.951 199.654 215.408 183.016 202.097" stroke="white"/>
+<path d="M166.377 441.692L109.806 471.13L169.193 501.847L227.556 471.13L166.377 441.692Z" stroke="white"/>
+<path d="M215.269 340.325L157.674 310.376L215.269 279.658L274.656 310.376L215.269 340.325Z" stroke="white"/>
+<path d="M104.942 204.657L164.073 234.862" stroke="white"/>
+<path d="M54.7707 344.932C64.9245 313.106 93.1296 252.844 139.973 272.92C149.701 277.089 161.834 294.73 155.076 324.628" stroke="white"/>
+<path d="M0.247421 345.188H54.7707L113.134 377.186" stroke="white"/>
+<path d="M156.906 309.864C157.333 321.127 149.334 351.991 126.189 392.8C106.734 427.101 109.55 474.457 109.55 506.967L168.937 536.916" stroke="white"/>
+<path d="M59.6343 377.186L1.01536 346.98C10.4012 307.133 49.1904 220.783 129.26 194.162C136.854 192.199 156.445 190.117 174.056 197.489C191.668 204.862 225.593 224.452 240.355 232.814" stroke="white"/>
+<path d="M113.39 377.186C122.605 348.004 154.602 292.656 191.719 300.904C242.402 312.167 199.077 387.974 188.903 412.511C180.2 433.501 171.453 467.416 168.937 501.847C168.937 516.95 168.937 525.397 168.937 536.66L228.068 505.175C227.897 489.816 226.956 458.075 231.139 446.812C234.467 437.853 255.969 396.64 262.369 377.186C268.768 357.731 285.151 296.297 265.44 260.46C245.73 224.623 214.757 220.271 191.719 226.415C168.681 232.558 93.6793 257.132 60.6582 377.186" stroke="white"/>
+<path d="M59.8902 376.93H113.134" stroke="white"/>
+<path d="M105.198 205.681V275.307L164.073 306.536V235.63" stroke="white"/>
+<path d="M462.543 454.622V603.126" stroke="white"/>
+<path d="M386.941 563.3L462.205 523.474L541.858 563.3" stroke="white"/>
+<path d="M386.603 471.497V563.637L462.88 603.801L541.858 563.637V470.822" stroke="white"/>
+<path d="M386.266 470.822L462.543 429.308L541.858 470.822L461.193 510.311L386.266 470.822Z" stroke="white"/>
+<path d="M383.565 415.47L460.855 374.969L539.158 412.433" stroke="white"/>
+<path d="M462.205 408.72C460.068 377.669 456.468 314.217 474.018 279.116C492.244 242.665 530.98 163.893 524.982 104.623C519.245 47.9218 503.044 31.3838 481.106 13.8333" stroke="white"/>
+<path d="M459.168 329.743L384.578 368.556L462.88 409.058L539.833 368.556L459.168 329.743Z" stroke="white"/>
+<path d="M523.632 196.089L447.692 156.6L523.632 116.099L601.935 156.6L523.632 196.089Z" stroke="white"/>
+<path d="M378.165 17.2085L456.13 57.0347" stroke="white"/>
+<path d="M312.013 202.164C325.401 160.2 362.59 80.7442 424.354 107.215C437.18 112.712 453.178 135.971 444.267 175.392" stroke="white"/>
+<path d="M240.124 202.501H312.013L388.966 244.69" stroke="white"/>
+<path d="M446.68 155.925C447.242 170.775 436.697 211.47 406.179 265.278C380.528 310.504 384.241 372.944 384.241 415.808L462.543 455.296" stroke="white"/>
+<path d="M318.426 244.69L241.136 204.864C253.512 152.325 304.656 38.4715 410.229 3.37041C420.242 0.782837 446.072 -1.96225 469.293 7.75805C492.514 17.4783 537.245 43.3091 556.708 54.3344" stroke="white"/>
+<path d="M389.303 244.69C401.454 206.214 443.642 133.237 492.581 144.112C559.408 158.963 502.283 258.914 488.869 291.267C477.393 318.942 465.86 363.66 462.543 409.058C462.543 428.971 462.543 440.109 462.543 454.959L540.508 413.445C540.283 393.195 539.042 351.343 544.558 336.493C548.946 324.68 577.296 270.341 585.734 244.69C594.172 219.039 615.773 138.037 589.784 90.7856C563.796 43.5341 522.957 37.7965 492.581 45.8967C462.205 53.997 363.315 86.398 319.776 244.69" stroke="white"/>
+<path d="M318.764 244.353H388.966" stroke="white"/>
+<path d="M378.503 18.5583V110.361L456.13 151.537V58.047" stroke="white"/>
+</svg>
diff --git a/public/img/faq/icon-faq1.svg b/public/img/faq/icon-faq1.svg
new file mode 100644
index 0000000..699862f
--- /dev/null
+++ b/public/img/faq/icon-faq1.svg
@@ -0,0 +1,12 @@
+<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="2" y="2" width="45" height="44" rx="2" fill="white" stroke="black" stroke-width="2"/>
+<path d="M3.5 10.5H46.5" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+<circle cx="7.5" cy="6.5" r="1.5" fill="black"/>
+<circle cx="11.5" cy="6.5" r="1.5" fill="black"/>
+<circle cx="15.5" cy="6.5" r="1.5" fill="black"/>
+<path d="M25.8219 31.5171L33.0103 20.7345C33.2901 20.3149 33.8417 20.1666 34.2787 20.4184C40.2476 23.8585 41.8906 30.3811 42.0056 34.0493C42.0223 34.5828 41.5803 35 41.0465 35H27.618C27.2393 35 26.893 34.786 26.7236 34.4472L25.7595 32.5191C25.599 32.1981 25.6228 31.8157 25.8219 31.5171Z" fill="#ED1C24"/>
+<path d="M41.9719 34.5H7.02809C7.54636 25.3003 15.1706 18 24.5 18C33.8294 18 41.4536 25.3003 41.9719 34.5Z" stroke="black" stroke-width="2"/>
+<path d="M15 21L23.6822 33.3379C24.0805 33.9039 24.9195 33.9039 25.3178 33.3379L34 21" stroke="black" stroke-width="2"/>
+<circle cx="24.5" cy="34.5" r="2.5" fill="white" stroke="black" stroke-width="2"/>
+<path d="M27 33.5L35 29" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+</svg>
diff --git a/public/img/faq/icon-faq2.svg b/public/img/faq/icon-faq2.svg
new file mode 100644
index 0000000..11f8d2d
--- /dev/null
+++ b/public/img/faq/icon-faq2.svg
@@ -0,0 +1,13 @@
+<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M4 36.956V28.6105C4 27.1138 5.10311 25.8461 6.58541 25.6392L22.5106 23.4171C24.1587 23.1872 25.679 24.3424 25.8989 25.9918L26.4538 30.1532C26.4845 30.3836 26.4883 30.6168 26.4652 30.8482L25.6311 39.189C25.5476 40.0245 25.1177 40.7867 24.446 41.2905L21.9269 43.1798C21.6445 43.3916 21.327 43.5519 20.9889 43.6533L17.1062 44.8181C16.7065 44.9381 16.2861 44.9733 15.872 44.9215L9.37276 44.1091C8.80291 44.0379 8.26549 43.8046 7.82431 43.4369L6.10974 42.0081C5.71012 41.6751 5.40396 41.2439 5.22131 40.7568L4.19101 38.0094C4.0647 37.6725 4 37.3157 4 36.956Z" fill="white"/>
+<path d="M5 23.5V39C5 42.866 9.37258 45 16 45C22.6274 45 27 42.866 27 39V24" stroke="black" stroke-width="2"/>
+<path d="M27 32C27 35.3137 22.0751 38 16 38C9.92487 38 5 35.3137 5 32" stroke="black" stroke-width="2"/>
+<path d="M27 24C27 25.4297 25.9993 26.9089 23.9814 28.086C21.9881 29.2487 19.1685 30 16 30C12.8315 30 10.0119 29.2487 8.01859 28.086C6.00073 26.9089 5 25.4297 5 24C5 22.5703 6.00073 21.0911 8.01859 19.914C10.0119 18.7513 12.8315 18 16 18C19.1685 18 21.9881 18.7513 23.9814 19.914C25.9993 21.0911 27 22.5703 27 24Z" fill="white" stroke="black" stroke-width="2"/>
+<path d="M14.2929 25.7071C14.6834 26.0976 15.3166 26.0976 15.7071 25.7071L22.0711 19.3431C22.4616 18.9526 22.4616 18.3195 22.0711 17.9289C21.6805 17.5384 21.0474 17.5384 20.6569 17.9289L15 23.5858L9.34315 17.9289C8.95262 17.5384 8.31946 17.5384 7.92893 17.9289C7.53841 18.3195 7.53841 18.9526 7.92893 19.3431L14.2929 25.7071ZM16 25V11H14V25H16Z" fill="#ED1C24"/>
+<path d="M21 37.5132V20.6784C21 19.1526 22.1452 17.8699 23.6613 17.6976L39.7712 15.8669C41.5112 15.6692 43.0499 16.9976 43.1083 18.7478L43.5 30.5L43.0605 38.8504C43.0216 39.5905 42.71 40.29 42.186 40.814L39.6945 43.3055C39.2433 43.7567 38.66 44.0523 38.0293 44.1493L33.0243 44.9193C32.6775 44.9727 32.3239 44.9648 31.9798 44.896L25.747 43.6494C25.2568 43.5514 24.7988 43.3324 24.4148 43.0123L22.6556 41.5464C22.227 41.1892 21.9065 40.7196 21.7301 40.1904L21.154 38.4619C21.052 38.156 21 37.8356 21 37.5132Z" fill="white"/>
+<path d="M21 15.5V39C21 42.866 25.3726 45 32 45C38.6274 45 43 42.866 43 39V16" stroke="black" stroke-width="2"/>
+<path d="M43 32C43 35.3137 38.0751 38 32 38C25.9249 38 21 35.3137 21 32" stroke="black" stroke-width="2"/>
+<path d="M43 24C43 27.3137 38.0751 30 32 30C25.9249 30 21 27.3137 21 24" stroke="black" stroke-width="2"/>
+<path d="M43 16C43 17.4297 41.9993 18.9089 39.9814 20.086C37.9881 21.2487 35.1685 22 32 22C28.8315 22 26.0119 21.2487 24.0186 20.086C22.0007 18.9089 21 17.4297 21 16C21 14.5703 22.0007 13.0911 24.0186 11.914C26.0119 10.7513 28.8315 10 32 10C35.1685 10 37.9881 10.7513 39.9814 11.914C41.9993 13.0911 43 14.5703 43 16Z" fill="white" stroke="black" stroke-width="2"/>
+<path d="M32.7071 1.29289C32.3166 0.902369 31.6834 0.902369 31.2929 1.29289L24.9289 7.65685C24.5384 8.04738 24.5384 8.68054 24.9289 9.07107C25.3195 9.46159 25.9526 9.46159 26.3431 9.07107L32 3.41421L37.6569 9.07107C38.0474 9.46159 38.6805 9.46159 39.0711 9.07107C39.4616 8.68054 39.4616 8.04738 39.0711 7.65685L32.7071 1.29289ZM31 2L31 17L33 17L33 2L31 2Z" fill="#ED1C24"/>
+</svg>
diff --git a/public/img/faq/icon-faq3.svg b/public/img/faq/icon-faq3.svg
new file mode 100644
index 0000000..4abed0e
--- /dev/null
+++ b/public/img/faq/icon-faq3.svg
@@ -0,0 +1,14 @@
+<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M5.23698 42.7512V15.2408C5.23698 15.2408 8.59995 18.8972 18.9611 18.8972C29.3223 18.8972 32.9869 14.9572 32.9869 14.9572V42.7512C22.1499 46.2393 16.074 46.3506 5.23698 42.7512Z" fill="white"/>
+<path d="M33.823 13.8424C33.823 16.7876 27.2406 19.1751 18.9477 19.1751C10.6547 19.1751 4.07233 16.7876 4.07233 13.8424C4.07233 10.8973 10.6547 8.50977 18.9477 8.50977C27.2406 8.50977 33.823 10.8973 33.823 13.8424Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M32.0405 13.8424C32.0405 13.8354 32.0407 13.7894 31.9832 13.6882C31.9188 13.5749 31.7868 13.403 31.535 13.1891C31.0197 12.7513 30.1617 12.2718 28.9323 11.8321C26.4894 10.9582 22.9753 10.3806 18.9611 10.3806C14.9469 10.3806 11.4327 10.9582 8.98978 11.8321C7.76043 12.2718 6.90237 12.7513 6.38708 13.1891C6.13531 13.403 6.00329 13.5749 5.93891 13.6882C5.88139 13.7894 5.88161 13.835 5.88165 13.842C5.88161 13.8491 5.88139 13.8955 5.93891 13.9967C6.00329 14.1099 6.13531 14.2819 6.38708 14.4958C6.90237 14.9335 7.76043 15.413 8.98978 15.8528C11.4327 16.7267 14.9469 17.3042 18.9611 17.3042C22.9753 17.3042 26.4894 16.7267 28.9323 15.8528C30.1617 15.413 31.0197 14.9335 31.535 14.4958C31.7868 14.2819 31.9188 14.1099 31.9832 13.9967C32.0407 13.8955 32.0405 13.8495 32.0405 13.8424ZM18.9611 19.1751C27.3018 19.1751 33.9221 16.7876 33.9221 13.8424C33.9221 10.8973 27.3018 8.50977 18.9611 8.50977C10.6203 8.50977 4 10.8973 4 13.8424C4 16.7876 10.6203 19.1751 18.9611 19.1751Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M4.09579 40.9202L4.00049 13.666L5.87134 13.6577L5.96665 40.912L4.09579 40.9202Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M32.0512 41.1041L32.0512 13.9338L33.9221 13.9338L33.9221 41.1041L32.0512 41.1041Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M9.46139 43.6756C11.8643 44.5621 15.2462 45.1291 19.0274 45.1291C22.8086 45.1291 26.1905 44.5621 28.5934 43.6756C29.7985 43.231 30.7083 42.724 31.2996 42.2082C31.893 41.6905 32.0782 41.2473 32.0782 40.9046H33.949C33.949 41.9868 33.3515 42.901 32.5294 43.618C31.7053 44.3369 30.5668 44.9417 29.2409 45.4309C26.5818 46.4119 22.9706 47 19.0274 47C15.0842 47 11.473 46.4119 8.81383 45.4309C7.48792 44.9417 6.34948 44.3369 5.52535 43.618C4.70329 42.901 4.1057 41.9868 4.1057 40.9046H5.97657C5.97657 41.2473 6.1617 41.6905 6.75513 42.2082C7.34648 42.724 8.25628 43.231 9.46139 43.6756Z" fill="black"/>
+<path d="M9.86948 30.8495L11.1759 30.7225C11.2545 31.1609 11.4133 31.483 11.6522 31.6886C11.8941 31.8943 12.2192 31.9971 12.6274 31.9971C13.0599 31.9971 13.3849 31.9064 13.6027 31.7249C13.8234 31.5405 13.9338 31.3258 13.9338 31.0808C13.9338 30.9236 13.8869 30.7905 13.7932 30.6816C13.7025 30.5697 13.5422 30.473 13.3124 30.3913C13.1551 30.3369 12.7968 30.2401 12.2373 30.101C11.5176 29.9226 11.0126 29.7034 10.7223 29.4433C10.314 29.0774 10.1099 28.6313 10.1099 28.1051C10.1099 27.7664 10.2051 27.4504 10.3957 27.1571C10.5892 26.8607 10.8659 26.6354 11.2258 26.4812C11.5887 26.327 12.0256 26.2499 12.5367 26.2499C13.3713 26.2499 13.9988 26.4328 14.4192 26.7987C14.8425 27.1647 15.0648 27.653 15.086 28.2639L13.7433 28.3229C13.6858 27.9812 13.5619 27.7362 13.3713 27.588C13.1838 27.4368 12.9011 27.3612 12.5231 27.3612C12.133 27.3612 11.8276 27.4414 11.6068 27.6016C11.4647 27.7045 11.3936 27.842 11.3936 28.0144C11.3936 28.1717 11.4601 28.3062 11.5932 28.4181C11.7625 28.5603 12.1738 28.7084 12.827 28.8627C13.4802 29.0169 13.9625 29.1772 14.274 29.3435C14.5885 29.5068 14.8335 29.7321 15.0089 30.0194C15.1873 30.3036 15.2765 30.6559 15.2765 31.0763C15.2765 31.4573 15.1706 31.8141 14.959 32.1468C14.7473 32.4794 14.4479 32.7274 14.0608 32.8907C13.6737 33.051 13.1914 33.1311 12.6138 33.1311C11.7731 33.1311 11.1275 32.9376 10.6769 32.5505C10.2263 32.1604 9.95717 31.5934 9.86948 30.8495Z" fill="black"/>
+<path d="M21.7586 32.1695C22.0882 32.4053 22.4465 32.5928 22.8336 32.7319L22.3392 33.68C22.1366 33.6195 21.9385 33.5363 21.745 33.4305C21.7026 33.4093 21.4047 33.2128 20.8513 32.8408C20.4159 33.0313 19.9335 33.1266 19.4043 33.1266C18.3822 33.1266 17.5808 32.8257 17.0002 32.2239C16.4226 31.6221 16.1338 30.7769 16.1338 29.6882C16.1338 28.6026 16.4241 27.7589 17.0047 27.1571C17.5854 26.5523 18.3731 26.2499 19.368 26.2499C20.3539 26.2499 21.1356 26.5523 21.7132 27.1571C22.2908 27.7589 22.5796 28.6026 22.5796 29.6882C22.5796 30.2628 22.4995 30.7678 22.3392 31.2033C22.2182 31.5359 22.0247 31.858 21.7586 32.1695ZM20.679 31.4119C20.8513 31.2093 20.9799 30.9644 21.0645 30.6771C21.1522 30.3898 21.1961 30.0602 21.1961 29.6882C21.1961 28.9201 21.0267 28.3471 20.688 27.9691C20.3493 27.588 19.9063 27.3975 19.359 27.3975C18.8116 27.3975 18.3671 27.588 18.0254 27.9691C17.6867 28.3501 17.5173 28.9231 17.5173 29.6882C17.5173 30.4654 17.6867 31.0475 18.0254 31.4346C18.3671 31.8187 18.798 32.0107 19.3181 32.0107C19.5117 32.0107 19.6946 31.979 19.867 31.9155C19.5948 31.737 19.3181 31.5979 19.0369 31.4981L19.4134 30.7315C19.8549 30.8827 20.2768 31.1095 20.679 31.4119Z" fill="black"/>
+<path d="M23.6728 33.0132V26.4177H25.0155V31.8928H28.354V33.0132H23.6728Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M43.892 28.9215L43.891 28.9215L43.888 28.9215L43.883 28.9216L43.876 28.9219L43.8671 28.9223L43.8561 28.9229L43.8432 28.9237L43.8283 28.9249L43.8115 28.9263L43.7927 28.9281L43.772 28.9303L43.7494 28.9329L43.7249 28.936L43.6985 28.9395L43.6702 28.9437L43.6401 28.9484L43.6082 28.9537L43.5745 28.9597L43.539 28.9663L43.5018 28.9737L43.4628 28.9818L43.4221 28.9906L43.3798 29.0003L43.3358 29.0109L43.2902 29.0223L43.2431 29.0346L43.1944 29.0478L43.1441 29.062L43.0924 29.0771L43.0393 29.0933L42.9847 29.1104L42.9288 29.1287L42.8715 29.148L42.813 29.1683L42.7531 29.1898L42.6921 29.2125L42.6299 29.2362L42.5666 29.2612L42.5022 29.2873L42.4367 29.3146L42.3702 29.3431L42.3028 29.3728L42.2345 29.4037L42.1652 29.4359L42.0952 29.4693L42.0244 29.5039L41.9529 29.5398L41.8806 29.577L41.8078 29.6154L41.7343 29.655L41.6603 29.6959L41.5858 29.7381L41.5109 29.7815L41.4355 29.8262L41.3598 29.8721L41.2838 29.9192L41.2075 29.9675L41.131 30.0171L41.0544 30.0679L40.9776 30.1198L40.9008 30.173L40.8239 30.2273L40.7471 30.2827L40.6703 30.3393L40.5936 30.397L40.5171 30.4557L40.4408 30.5156L40.3647 30.5764L40.289 30.6383L40.2135 30.7012L40.1385 30.7651L40.0638 30.8299L39.9896 30.8957L39.9159 30.9623L39.8428 31.0298L39.7702 31.0981L39.6982 31.1672L39.6269 31.237L39.5563 31.3076L39.4864 31.3788L39.4172 31.4508L39.3488 31.5233L39.2813 31.5964L39.2146 31.6701L39.1488 31.7442L39.0839 31.8188L39.02 31.8939L38.957 31.9693L38.895 32.045L38.834 32.1211L38.7741 32.1974L38.7153 32.2739L38.6575 32.3505L38.6008 32.4273L38.5453 32.5041L38.4909 32.581L38.4377 32.6578L38.3856 32.7346L38.3348 32.8113L38.2851 32.8878L38.2367 32.9641L38.1894 33.0401L38.1434 33.1158L38.0987 33.1912L38.0552 33.2662L38.0129 33.3407L37.9719 33.4148L37.9321 33.4883L37.8936 33.5612L37.8564 33.6335L37.8204 33.7051L37.7857 33.7759L37.7522 33.846L37.7199 33.9153L37.6889 33.9837L37.6591 34.0512L37.6305 34.1178L37.6031 34.1833L37.5769 34.2478L37.5519 34.3113L37.528 34.3735L37.5053 34.4347L37.4837 34.4946L37.4632 34.5532L37.4438 34.6106L37.4255 34.6666L37.4083 34.7213L37.392 34.7746L37.3768 34.8264L37.3625 34.8768L37.3493 34.9256L37.3369 34.9729L37.3254 35.0186L37.3148 35.0627L37.3051 35.1052L37.2961 35.146L37.2879 35.1851L37.2805 35.2225L37.2738 35.2581L37.2678 35.292L37.2624 35.324L37.2577 35.3543L37.2535 35.3827L37.2499 35.4092L37.2468 35.4339L37.2441 35.4566L37.2419 35.4775L37.2401 35.4964L37.2386 35.5134L37.2375 35.5284L37.2366 35.5415L37.236 35.5526L37.2356 35.5617L37.2353 35.5689L37.2352 35.574L37.2351 35.5772L37.2351 35.5783L37.2351 35.5775L37.2351 35.5746L37.235 35.5698L37.2347 35.563L37.2343 35.5542L37.2338 35.5434L37.2329 35.5306L37.2318 35.5159L37.2304 35.4992L37.2287 35.4806L37.2265 35.4601L37.2239 35.4376L37.2209 35.4132L37.2173 35.387L37.2133 35.3589L37.2086 35.329L37.2033 35.2972L37.1974 35.2636L37.1908 35.2283L37.1835 35.1912L37.1755 35.1523L37.1667 35.1118L37.1571 35.0696L37.1466 35.0257L37.1353 34.9803L37.123 34.9332L37.1099 34.8846L37.0958 34.8345L37.0807 34.7829L37.0647 34.7299L37.0476 34.6754L37.0294 34.6196L37.0102 34.5625L36.9899 34.504L36.9685 34.4443L36.946 34.3834L36.9223 34.3212L36.8974 34.258L36.8714 34.1937L36.8442 34.1283L36.8158 34.0619L36.7862 33.9945L36.7554 33.9263L36.7233 33.8571L36.69 33.7872L36.6555 33.7164L36.6197 33.6449L36.5826 33.5727L36.5443 33.4999L36.5048 33.4265L36.464 33.3526L36.4219 33.2781L36.3786 33.2032L36.334 33.1279L36.2882 33.0522L36.2412 32.9762L36.193 32.8999L36.1435 32.8235L36.0928 32.7468L36.0409 32.6701L35.9879 32.5932L35.9337 32.5164L35.8783 32.4395L35.8219 32.3627L35.7643 32.2861L35.7056 32.2095L35.6458 32.1332L35.585 32.0571L35.5232 31.9813L35.4604 31.9059L35.3966 31.8308L35.3319 31.7561L35.2662 31.6819L35.1996 31.6081L35.1322 31.5349L35.064 31.4623L34.995 31.3903L34.9252 31.3189L34.8547 31.2482L34.7834 31.1782L34.7116 31.109L34.6391 31.0406L34.566 30.973L34.4924 30.9062L34.4183 30.8403L34.3437 30.7754L34.2687 30.7114L34.1933 30.6483L34.1176 30.5862L34.0416 30.5252L33.9653 30.4652L33.8888 30.4062L33.8122 30.3484L33.7354 30.2916L33.6586 30.236L33.5817 30.1815L33.5049 30.1282L33.4281 30.0761L33.3514 30.0251L33.2749 29.9753L33.1986 29.9268L33.1225 29.8795L33.0468 29.8334L32.9714 29.7885L32.8964 29.7449L32.8218 29.7026L32.7477 29.6614L32.6742 29.6216L32.6012 29.583L32.5289 29.5456L32.4572 29.5096L32.3863 29.4747L32.3161 29.4411L32.2468 29.4087L32.1783 29.3776L32.1107 29.3477L32.0441 29.319L31.9785 29.2915L31.9139 29.2652L31.8504 29.2401L31.788 29.2162L31.7268 29.1934L31.6668 29.1717L31.608 29.1511L31.5505 29.1317L31.4944 29.1133L31.4396 29.0959L31.3862 29.0796L31.3343 29.0643L31.2838 29.05L31.2348 29.0366L31.1874 29.0242L31.1416 29.0126L31.0973 29.002L31.0547 28.9921L31.0138 28.9831L30.9746 28.9749L30.9371 28.9674L30.9013 28.9607L30.8673 28.9546L30.8351 28.9492L30.8047 28.9444L30.7761 28.9402L30.7495 28.9365L30.7246 28.9333L30.7017 28.9307L30.6807 28.9284L30.6616 28.9266L30.6445 28.9251L30.6293 28.9239L30.6161 28.923L30.6048 28.9224L30.5955 28.9219L30.5882 28.9217L30.5829 28.9215L30.5796 28.9215L30.5783 28.9215L30.579 28.9215L30.5817 28.9214L30.5863 28.9213L30.593 28.9211L30.6016 28.9207L30.6123 28.9201L30.6249 28.9193L30.6394 28.9183L30.656 28.9169L30.6744 28.9151L30.6948 28.913L30.7171 28.9105L30.7413 28.9075L30.7674 28.904L30.7954 28.8999L30.8252 28.8953L30.8568 28.8901L30.8903 28.8843L30.9255 28.8777L30.9624 28.8705L31.0011 28.8625L31.0415 28.8537L31.0836 28.8442L31.1273 28.8338L31.1727 28.8225L31.2196 28.8104L31.268 28.7973L31.318 28.7833L31.3695 28.7683L31.4224 28.7523L31.4768 28.7353L31.5325 28.7172L31.5895 28.6981L31.6479 28.6779L31.7075 28.6566L31.7683 28.6341L31.8304 28.6105L31.8935 28.5858L31.9578 28.5599L32.0231 28.5328L32.0894 28.5045L32.1567 28.4749L32.2249 28.4442L32.2939 28.4122L32.3638 28.379L32.4345 28.3446L32.506 28.3089L32.5781 28.272L32.6509 28.2338L32.7242 28.1943L32.7981 28.1536L32.8726 28.1116L32.9474 28.0684L33.0227 28.024L33.0984 27.9783L33.1743 27.9313L33.2506 27.8832L33.327 27.8338L33.4037 27.7832L33.4804 27.7314L33.5572 27.6785L33.6341 27.6244L33.711 27.5691L33.7877 27.5127L33.8644 27.4552L33.941 27.3966L34.0173 27.337L34.0934 27.2762L34.1692 27.2145L34.2447 27.1518L34.3199 27.088L34.3946 27.0234L34.4688 26.9578L34.5426 26.8913L34.6159 26.824L34.6886 26.7558L34.7606 26.6868L34.832 26.6171L34.9028 26.5466L34.9728 26.4755L35.0421 26.4036L35.1106 26.3312L35.1783 26.2582L35.2451 26.1846L35.311 26.1105L35.3761 26.036L35.4402 25.961L35.5033 25.8857L35.5655 25.81L35.6266 25.734L35.6867 25.6577L35.7457 25.5812L35.8036 25.5046L35.8605 25.4279L35.9162 25.351L35.9708 25.2742L36.0242 25.1973L36.0764 25.1205L36.1275 25.0438L36.1773 24.9673L36.226 24.891L36.2734 24.8149L36.3196 24.7391L36.3645 24.6637L36.4082 24.5886L36.4507 24.514L36.4919 24.4399L36.5319 24.3663L36.5706 24.2933L36.608 24.2209L36.6442 24.1492L36.6792 24.0782L36.7128 24.008L36.7453 23.9386L36.7765 23.87L36.8065 23.8024L36.8353 23.7357L36.8629 23.67L36.8893 23.6053L36.9145 23.5417L36.9385 23.4792L36.9614 23.4179L36.9832 23.3578L37.0039 23.2989L37.0234 23.2414L37.0419 23.1851L37.0593 23.1302L37.0757 23.0767L37.0911 23.0247L37.1055 22.9741L37.119 22.925L37.1315 22.8775L37.1431 22.8315L37.1538 22.7871L37.1637 22.7444L37.1728 22.7033L37.1811 22.6639L37.1886 22.6263L37.1954 22.5904L37.2015 22.5562L37.207 22.5239L37.2118 22.4934L37.2161 22.4647L37.2198 22.4378L37.223 22.4129L37.2257 22.3898L37.228 22.3686L37.2299 22.3494L37.2314 22.3321L37.2326 22.3168L37.2335 22.3034L37.2342 22.292L37.2346 22.2825L37.2349 22.2751L37.2351 22.2696L37.2351 22.2661L37.2351 22.2646L37.2351 22.2652L37.2352 22.2677L37.2353 22.2722L37.2355 22.2787L37.2358 22.2872L37.2364 22.2977L37.2372 22.3101L37.2382 22.3245L37.2396 22.3409L37.2413 22.3592L37.2434 22.3794L37.2459 22.4016L37.2489 22.4257L37.2523 22.4516L37.2563 22.4794L37.2609 22.5091L37.266 22.5406L37.2718 22.5738L37.2783 22.6089L37.2855 22.6457L37.2934 22.6843L37.3021 22.7246L37.3116 22.7665L37.3219 22.8101L37.3331 22.8553L37.3452 22.9021L37.3582 22.9504L37.3722 23.0003L37.3871 23.0517L37.403 23.1045L37.4199 23.1587L37.4379 23.2143L37.4569 23.2713L37.4771 23.3295L37.4983 23.389L37.5206 23.4498L37.5441 23.5117L37.5688 23.5748L37.5946 23.6389L37.6216 23.7041L37.6498 23.7704L37.6792 23.8376L37.7099 23.9057L37.7417 23.9747L37.7749 24.0446L37.8092 24.1152L37.8448 24.1866L37.8816 24.2586L37.9197 24.3314L37.9591 24.4047L37.9997 24.4785L38.0416 24.5529L38.0847 24.6278L38.129 24.703L38.1746 24.7787L38.2215 24.8546L38.2695 24.9308L38.3188 25.0073L38.3693 25.0839L38.421 25.1606L38.4738 25.2374L38.5279 25.3143L38.583 25.3912L38.6393 25.468L38.6967 25.5446L38.7552 25.6212L38.8148 25.6976L38.8755 25.7737L38.9371 25.8495L38.9998 25.9251L39.0634 26.0002L39.128 26.075L39.1935 26.1493L39.26 26.2231L39.3272 26.2964L39.3953 26.3691L39.4642 26.4412L39.5339 26.5127L39.6043 26.5835L39.6754 26.6536L39.7472 26.7229L39.8196 26.7915L39.8926 26.8592L39.9661 26.9261L40.0401 26.9921L40.1146 27.0573L40.1896 27.1214L40.2649 27.1846L40.3406 27.2469L40.4166 27.3081L40.4928 27.3683L40.5692 27.4274L40.6459 27.4854L40.7226 27.5423L40.7994 27.5981L40.8763 27.6528L40.9531 27.7063L41.0299 27.7586L41.1066 27.8098L41.1832 27.8597L41.2595 27.9085L41.3356 27.956L41.4114 28.0023L41.4869 28.0473L41.562 28.0911L41.6366 28.1337L41.7108 28.175L41.7844 28.2151L41.8575 28.2539L41.9299 28.2914L42.0017 28.3277L42.0727 28.3627L42.143 28.3965L42.2125 28.4291L42.2811 28.4604L42.3488 28.4905L42.4156 28.5194L42.4814 28.5471L42.5462 28.5736L42.6099 28.5989L42.6724 28.623L42.7338 28.646L42.794 28.6678L42.853 28.6886L42.9107 28.7082L42.967 28.7268L43.022 28.7443L43.0756 28.7608L43.1278 28.7762L43.1785 28.7907L43.2277 28.8042L43.2754 28.8168L43.3215 28.8285L43.366 28.8393L43.4088 28.8493L43.45 28.8584L43.4896 28.8668L43.5273 28.8744L43.5634 28.8812L43.5977 28.8874L43.6302 28.8929L43.6609 28.8978L43.6897 28.9021L43.7167 28.9059L43.7418 28.9091L43.765 28.9119L43.7863 28.9142L43.8057 28.9161L43.8232 28.9176L43.8387 28.9189L43.8522 28.9198L43.8638 28.9205L43.8734 28.9209L43.881 28.9212L43.8866 28.9214L43.8902 28.9214L43.8919 28.9215L43.892 28.9215Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M46.7449 14.5097L46.7442 14.5098L46.742 14.5098L46.7385 14.5099L46.7335 14.5101L46.7271 14.5103L46.7193 14.5108L46.7101 14.5114L46.6994 14.5122L46.6874 14.5132L46.674 14.5145L46.6592 14.516L46.6431 14.5179L46.6255 14.5201L46.6067 14.5227L46.5865 14.5256L46.565 14.529L46.5422 14.5328L46.5181 14.537L46.4928 14.5418L46.4662 14.547L46.4384 14.5528L46.4093 14.5592L46.3791 14.5661L46.3477 14.5736L46.3151 14.5818L46.2814 14.5905L46.2466 14.6L46.2107 14.6101L46.1738 14.6209L46.1358 14.6325L46.0969 14.6447L46.0569 14.6578L46.016 14.6715L45.9742 14.6861L45.9314 14.7015L45.8879 14.7176L45.8434 14.7346L45.7982 14.7524L45.7522 14.771L45.7054 14.7905L45.6579 14.8109L45.6098 14.8321L45.561 14.8542L45.5115 14.8772L45.4615 14.901L45.4109 14.9258L45.3598 14.9514L45.3082 14.978L45.2562 15.0054L45.2037 15.0337L45.1508 15.0629L45.0976 15.0931L45.0441 15.1241L44.9903 15.156L44.9362 15.1887L44.8819 15.2224L44.8274 15.2569L44.7728 15.2923L44.718 15.3286L44.6632 15.3657L44.6083 15.4037L44.5534 15.4425L44.4985 15.4821L44.4437 15.5225L44.3889 15.5637L44.3343 15.6056L44.2798 15.6484L44.2255 15.6919L44.1713 15.7361L44.1174 15.781L44.0638 15.8266L44.0105 15.8729L43.9575 15.9199L43.9049 15.9675L43.8526 16.0157L43.8008 16.0645L43.7494 16.1138L43.6984 16.1637L43.648 16.2141L43.598 16.265L43.5486 16.3164L43.4998 16.3682L43.4516 16.4204L43.4039 16.473L43.3569 16.526L43.3106 16.5793L43.2649 16.6329L43.2199 16.6868L43.1756 16.7409L43.1321 16.7952L43.0893 16.8497L43.0472 16.9043L43.006 16.9591L42.9655 17.0139L42.9258 17.0688L42.887 17.1237L42.849 17.1786L42.8118 17.2334L42.7755 17.2882L42.74 17.3428L42.7054 17.3973L42.6717 17.4516L42.6388 17.5057L42.6068 17.5596L42.5758 17.6131L42.5456 17.6664L42.5163 17.7193L42.4879 17.7718L42.4604 17.8238L42.4338 17.8755L42.4081 17.9266L42.3832 17.9772L42.3593 18.0273L42.3363 18.0768L42.3141 18.1257L42.2928 18.1739L42.2724 18.2214L42.2528 18.2682L42.2341 18.3143L42.2162 18.3596L42.1992 18.4041L42.183 18.4478L42.1676 18.4905L42.1529 18.5324L42.1391 18.5734L42.126 18.6135L42.1137 18.6525L42.1021 18.6906L42.0912 18.7276L42.081 18.7635L42.0715 18.7984L42.0627 18.8322L42.0545 18.8648L42.0469 18.8964L42.04 18.9267L42.0336 18.9558L42.0277 18.9838L42.0224 19.0105L42.0177 19.0359L42.0134 19.0601L42.0095 19.083L42.0061 19.1046L42.0032 19.1249L42.0006 19.1438L41.9983 19.1615L41.9964 19.1777L41.9949 19.1926L41.9936 19.2061L41.9925 19.2183L41.9917 19.229L41.9911 19.2383L41.9906 19.2463L41.9903 19.2528L41.9901 19.2579L41.9901 19.2616L41.99 19.2638L41.99 19.2646L41.99 19.264L41.99 19.262L41.9899 19.2586L41.9897 19.2537L41.9894 19.2474L41.989 19.2397L41.9884 19.2306L41.9877 19.2201L41.9866 19.2082L41.9854 19.1949L41.9839 19.1802L41.982 19.1641L41.9798 19.1467L41.9773 19.128L41.9744 19.1079L41.9711 19.0865L41.9673 19.0638L41.9631 19.0399L41.9584 19.0146L41.9532 18.9881L41.9474 18.9604L41.9411 18.9314L41.9342 18.9013L41.9268 18.8699L41.9187 18.8375L41.9099 18.8039L41.9006 18.7692L41.8905 18.7334L41.8797 18.6965L41.8682 18.6586L41.856 18.6197L41.8431 18.5799L41.8293 18.539L41.8148 18.4973L41.7996 18.4546L41.7835 18.4111L41.7665 18.3667L41.7488 18.3216L41.7302 18.2756L41.7108 18.2289L41.6905 18.1815L41.6694 18.1334L41.6473 18.0846L41.6244 18.0352L41.6006 17.9852L41.576 17.9347L41.5504 17.8836L41.5239 17.8321L41.4966 17.7801L41.4683 17.7276L41.4392 17.6748L41.4091 17.6216L41.3782 17.5681L41.3464 17.5143L41.3137 17.4603L41.2801 17.406L41.2456 17.3515L41.2103 17.2969L41.1741 17.2422L41.137 17.1873L41.0991 17.1324L41.0604 17.0775L41.0209 17.0227L40.9805 16.9678L40.9394 16.913L40.8975 16.8584L40.8548 16.8039L40.8114 16.7495L40.7672 16.6954L40.7223 16.6415L40.6768 16.5878L40.6305 16.5345L40.5836 16.4815L40.5361 16.4288L40.4879 16.3765L40.4392 16.3246L40.3899 16.2732L40.34 16.2222L40.2897 16.1717L40.2388 16.1217L40.1875 16.0723L40.1357 16.0234L40.0835 15.9751L40.0309 15.9274L39.978 15.8804L39.9247 15.834L39.8711 15.7882L39.8173 15.7432L39.7632 15.6989L39.7089 15.6553L39.6544 15.6124L39.5998 15.5703L39.5451 15.529L39.4902 15.4884L39.4353 15.4487L39.3804 15.4098L39.3255 15.3717L39.2707 15.3345L39.2159 15.2981L39.1613 15.2625L39.1068 15.2278L39.0525 15.194L38.9983 15.1611L38.9445 15.1291L38.8909 15.0979L38.8376 15.0677L38.7847 15.0383L38.7322 15.0098L38.6801 14.9823L38.6284 14.9556L38.5772 14.9298L38.5265 14.9049L38.4764 14.8809L38.4269 14.8578L38.378 14.8356L38.3297 14.8142L38.2821 14.7937L38.2352 14.7741L38.1891 14.7553L38.1437 14.7374L38.0992 14.7203L38.0555 14.704L38.0126 14.6885L37.9706 14.6738L37.9296 14.6599L37.8895 14.6468L37.8503 14.6344L37.8122 14.6227L37.7751 14.6118L37.7391 14.6015L37.7041 14.592L37.6702 14.5831L37.6375 14.5749L37.6059 14.5672L37.5755 14.5602L37.5462 14.5538L37.5182 14.5479L37.4914 14.5426L37.4658 14.5378L37.4415 14.5334L37.4185 14.5295L37.3968 14.5261L37.3764 14.5231L37.3574 14.5205L37.3397 14.5182L37.3233 14.5163L37.3083 14.5147L37.2947 14.5134L37.2824 14.5123L37.2716 14.5115L37.2621 14.5109L37.2541 14.5104L37.2474 14.5101L37.2422 14.5099L37.2384 14.5098L37.2361 14.5098L37.2351 14.5097L37.2356 14.5097L37.2375 14.5097L37.2409 14.5096L37.2456 14.5095L37.2518 14.5092L37.2594 14.5088L37.2684 14.5082L37.2788 14.5075L37.2906 14.5065L37.3038 14.5052L37.3184 14.5037L37.3343 14.5019L37.3516 14.4998L37.3702 14.4973L37.3902 14.4944L37.4115 14.4911L37.4341 14.4874L37.458 14.4832L37.4831 14.4785L37.5095 14.4733L37.5372 14.4676L37.566 14.4614L37.5961 14.4545L37.6273 14.4471L37.6597 14.4391L37.6932 14.4304L37.7278 14.4211L37.7635 14.411L37.8003 14.4003L37.8381 14.3889L37.8769 14.3768L37.9167 14.3639L37.9574 14.3502L37.9991 14.3358L38.0417 14.3205L38.0852 14.3045L38.1295 14.2877L38.1746 14.27L38.2205 14.2515L38.2671 14.2321L38.3145 14.2119L38.3625 14.1908L38.4112 14.1689L38.4606 14.146L38.5105 14.1223L38.561 14.0977L38.612 14.0722L38.6636 14.0458L38.7155 14.0185L38.7679 13.9903L38.8207 13.9613L38.8739 13.9313L38.9274 13.9004L38.9812 13.8687L39.0352 13.836L39.0895 13.8025L39.1439 13.7681L39.1985 13.7328L39.2532 13.6967L39.3081 13.6597L39.3629 13.6219L39.4178 13.5833L39.4727 13.5438L39.5276 13.5035L39.5824 13.4624L39.637 13.4206L39.6916 13.378L39.7459 13.3346L39.8001 13.2905L39.854 13.2457L39.9077 13.2002L39.961 13.154L40.0141 13.1071L40.0668 13.0596L40.1191 13.0115L40.171 12.9628L40.2225 12.9136L40.2735 12.8638L40.3241 12.8134L40.3741 12.7626L40.4236 12.7113L40.4725 12.6596L40.5208 12.6074L40.5686 12.5549L40.6157 12.5019L40.6621 12.4487L40.7079 12.3951L40.753 12.3413L40.7974 12.2872L40.8411 12.233L40.884 12.1785L40.9261 12.1239L40.9675 12.0691L41.0081 12.0143L41.0479 11.9594L41.0869 11.9045L41.125 11.8496L41.1624 11.7948L41.1988 11.74L41.2344 11.6854L41.2692 11.6308L41.3031 11.5765L41.336 11.5224L41.3682 11.4685L41.3994 11.4149L41.4297 11.3616L41.4591 11.3086L41.4877 11.2561L41.5153 11.2039L41.5421 11.1522L41.5679 11.101L41.5929 11.0503L41.617 11.0001L41.6401 10.9505L41.6624 10.9016L41.6839 10.8533L41.7044 10.8056L41.7241 10.7587L41.743 10.7125L41.761 10.6671L41.7782 10.6224L41.7945 10.5786L41.8101 10.5357L41.8248 10.4937L41.8388 10.4525L41.852 10.4124L41.8644 10.3731L41.8761 10.3349L41.8871 10.2977L41.8974 10.2616L41.907 10.2266L41.916 10.1926L41.9243 10.1598L41.9319 10.1281L41.939 10.0976L41.9455 10.0682L41.9514 10.0401L41.9568 10.0132L41.9616 9.98755L41.966 9.96316L41.9699 9.94005L41.9734 9.91824L41.9764 9.89775L41.9791 9.87858L41.9814 9.86075L41.9833 9.84427L41.9849 9.82916L41.9863 9.81542L41.9874 9.80306L41.9882 9.7921L41.9889 9.78254L41.9893 9.77439L41.9896 9.76764L41.9898 9.76232L41.99 9.75842L41.99 9.75594L41.99 9.75488L41.99 9.75526L41.99 9.75705L41.9901 9.76028L41.9903 9.76492L41.9905 9.77099L41.9909 9.77847L41.9915 9.78736L41.9922 9.79765L41.9932 9.80934L41.9944 9.82242L41.9959 9.83688L41.9977 9.85271L41.9998 9.86989L42.0023 9.88842L42.0051 9.90829L42.0084 9.92947L42.0121 9.95196L42.0162 9.97573L42.0209 10.0008L42.026 10.0271L42.0317 10.0546L42.0379 10.0834L42.0446 10.1133L42.052 10.1445L42.06 10.1768L42.0686 10.2102L42.0779 10.2447L42.0879 10.2804L42.0985 10.317L42.1099 10.3548L42.122 10.3935L42.1348 10.4332L42.1484 10.4739L42.1628 10.5155L42.178 10.558L42.1939 10.6014L42.2107 10.6456L42.2283 10.6907L42.2468 10.7365L42.2661 10.7831L42.2862 10.8304L42.3072 10.8784L42.3291 10.9271L42.3519 10.9764L42.3755 11.0263L42.4001 11.0767L42.4255 11.1277L42.4518 11.1792L42.479 11.2311L42.5071 11.2835L42.5361 11.3362L42.566 11.3894L42.5968 11.4428L42.6285 11.4966L42.6611 11.5506L42.6945 11.6049L42.7289 11.6593L42.7641 11.7139L42.8001 11.7686L42.837 11.8234L42.8748 11.8783L42.9134 11.9332L42.9528 11.9881L42.993 12.043L43.034 12.0977L43.0758 12.1524L43.1184 12.207L43.1617 12.2613L43.2057 12.3155L43.2505 12.3695L43.2959 12.4231L43.3421 12.4765L43.3889 12.5296L43.4363 12.5823L43.4844 12.6347L43.533 12.6866L43.5822 12.7382L43.632 12.7892L43.6823 12.8398L43.7331 12.8898L43.7843 12.9394L43.8361 12.9883L43.8882 13.0367L43.9407 13.0845L43.9936 13.1317L44.0468 13.1782L44.1003 13.224L44.1541 13.2692L44.2082 13.3136L44.2625 13.3573L44.3169 13.4003L44.3715 13.4425L44.4262 13.484L44.4811 13.5246L44.5359 13.5645L44.5908 13.6036L44.6457 13.6418L44.7006 13.6792L44.7554 13.7157L44.81 13.7514L44.8646 13.7862L44.9189 13.8201L44.9731 13.8532L45.027 13.8854L45.0806 13.9167L45.1339 13.9471L45.1869 13.9766L45.2395 14.0052L45.2917 14.0329L45.3434 14.0597L45.3947 14.0856L45.4454 14.1107L45.4956 14.1348L45.5453 14.1581L45.5943 14.1804L45.6427 14.2019L45.6904 14.2226L45.7374 14.2423L45.7836 14.2612L45.8291 14.2793L45.8738 14.2966L45.9177 14.313L45.9607 14.3286L46.0028 14.3434L46.044 14.3574L46.0842 14.3707L46.1235 14.3832L46.1618 14.395L46.1991 14.406L46.2353 14.4164L46.2704 14.426L46.3045 14.435L46.3374 14.4434L46.3692 14.4511L46.3998 14.4582L46.4292 14.4647L46.4575 14.4707L46.4845 14.4761L46.5102 14.481L46.5347 14.4854L46.5579 14.4894L46.5798 14.4929L46.6004 14.4959L46.6197 14.4986L46.6376 14.5009L46.6542 14.5029L46.6694 14.5045L46.6833 14.5059L46.6957 14.507L46.7068 14.5079L46.7165 14.5085L46.7248 14.509L46.7316 14.5094L46.7371 14.5096L46.7411 14.5097L46.7437 14.5097L46.7448 14.5097L46.7449 14.5097Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M36.3822 5.75486L36.3815 5.75487L36.3794 5.7549L36.3758 5.75499L36.3708 5.75517L36.3644 5.75546L36.3566 5.75589L36.3474 5.75649L36.3368 5.75729L36.3247 5.75832L36.3113 5.75959L36.2965 5.76115L36.2804 5.76302L36.2629 5.76522L36.244 5.76778L36.2238 5.77073L36.2023 5.77409L36.1796 5.77789L36.1555 5.78215L36.1301 5.78689L36.1035 5.79215L36.0757 5.79794L36.0466 5.80428L36.0164 5.8112L35.985 5.81873L35.9524 5.82687L35.9187 5.83565L35.8839 5.8451L35.8481 5.85522L35.8111 5.86604L35.7732 5.87758L35.7342 5.88985L35.6942 5.90287L35.6533 5.91665L35.6115 5.93121L35.5688 5.94657L35.5252 5.96273L35.4808 5.97971L35.4355 5.99752L35.3895 6.01616L35.3427 6.03566L35.2953 6.05601L35.2471 6.07724L35.1983 6.09933L35.1488 6.1223L35.0988 6.14616L35.0482 6.17091L34.9971 6.19655L34.9455 6.22308L34.8935 6.25051L34.841 6.27883L34.7882 6.30805L34.735 6.33817L34.6814 6.36918L34.6276 6.40108L34.5735 6.43386L34.5192 6.46752L34.4648 6.50206L34.4101 6.53746L34.3554 6.57373L34.3005 6.61084L34.2457 6.64879L34.1908 6.68758L34.1359 6.72718L34.081 6.76759L34.0263 6.80879L33.9716 6.85076L33.9171 6.89351L33.8628 6.93699L33.8087 6.98121L33.7548 7.02614L33.7012 7.07176L33.6478 7.11806L33.5948 7.16501L33.5422 7.2126L33.4899 7.26079L33.4381 7.30958L33.3867 7.35893L33.3357 7.40882L33.2853 7.45924L33.2354 7.51014L33.186 7.56151L33.1371 7.61333L33.0889 7.66555L33.0412 7.71816L32.9942 7.77113L32.9479 7.82443L32.9022 7.87802L32.8572 7.93189L32.813 7.98599L32.7694 8.04031L32.7266 8.0948L32.6846 8.14944L32.6433 8.20419L32.6028 8.25903L32.5632 8.31392L32.5243 8.36882L32.4863 8.42371L32.4491 8.47855L32.4128 8.5333L32.3773 8.58795L32.3427 8.64244L32.309 8.69675L32.2761 8.75084L32.2442 8.80468L32.2131 8.85824L32.1829 8.91148L32.1536 8.96437L32.1252 9.01687L32.0977 9.06895L32.0711 9.12058L32.0454 9.17173L32.0206 9.22235L31.9966 9.27242L31.9736 9.3219L31.9514 9.37077L31.9301 9.41899L31.9097 9.46652L31.8902 9.51334L31.8714 9.55942L31.8536 9.60472L31.8365 9.64921L31.8203 9.69287L31.8049 9.73566L31.7903 9.77756L31.7764 9.81854L31.7633 9.85857L31.751 9.89762L31.7394 9.93567L31.7285 9.97269L31.7184 10.0086L31.7089 10.0435L31.7 10.0773L31.6918 10.11L31.6843 10.1415L31.6773 10.1718L31.6709 10.201L31.6651 10.2289L31.6598 10.2556L31.655 10.281L31.6507 10.3052L31.6469 10.3281L31.6435 10.3497L31.6405 10.37L31.6379 10.389L31.6357 10.4066L31.6338 10.4228L31.6322 10.4377L31.6309 10.4513L31.6298 10.4634L31.629 10.4741L31.6284 10.4835L31.628 10.4914L31.6277 10.4979L31.6275 10.503L31.6274 10.5067L31.6273 10.5089L31.6273 10.5098L31.6273 10.5092L31.6273 10.5071L31.6272 10.5037L31.6271 10.4988L31.6268 10.4925L31.6264 10.4848L31.6258 10.4757L31.625 10.4652L31.624 10.4533L31.6227 10.44L31.6212 10.4253L31.6193 10.4093L31.6172 10.3919L31.6146 10.3731L31.6117 10.353L31.6084 10.3316L31.6046 10.309L31.6004 10.285L31.5957 10.2597L31.5905 10.2332L31.5847 10.2055L31.5784 10.1765L31.5716 10.1464L31.5641 10.1151L31.556 10.0826L31.5473 10.049L31.5379 10.0143L31.5278 9.97848L31.517 9.94163L31.5056 9.90375L31.4934 9.86485L31.4804 9.82498L31.4667 9.78415L31.4522 9.7424L31.4369 9.69974L31.4208 9.65622L31.4039 9.61186L31.3861 9.56668L31.3676 9.52073L31.3481 9.47402L31.3278 9.4266L31.3067 9.37849L31.2847 9.32973L31.2618 9.28034L31.238 9.23036L31.2133 9.17982L31.1877 9.12876L31.1613 9.07721L31.1339 9.0252L31.1057 8.97276L31.0765 8.91993L31.0465 8.86674L31.0155 8.81323L30.9837 8.75943L30.951 8.70538L30.9174 8.6511L30.8829 8.59664L30.8476 8.54201L30.8114 8.48727L30.7744 8.43244L30.7365 8.37756L30.6977 8.32266L30.6582 8.26777L30.6179 8.21292L30.5767 8.15815L30.5348 8.10349L30.4921 8.04898L30.4487 7.99463L30.4045 7.94049L30.3597 7.88658L30.3141 7.83294L30.2679 7.7796L30.221 7.72657L30.1734 7.6739L30.1253 7.62162L30.0765 7.56974L30.0272 7.51829L29.9774 7.46731L29.927 7.41682L29.8761 7.36684L29.8248 7.3174L29.773 7.26852L29.7208 7.22023L29.6682 7.17255L29.6153 7.12549L29.562 7.07909L29.5085 7.03336L29.4546 6.98832L29.4005 6.94399L29.3462 6.90038L29.2918 6.85752L29.2371 6.81542L29.1824 6.7741L29.1275 6.73356L29.0727 6.69383L29.0178 6.65492L28.9629 6.61683L28.908 6.57958L28.8533 6.54318L28.7986 6.50764L28.7441 6.47297L28.6898 6.43916L28.6357 6.40624L28.5818 6.3742L28.5282 6.34305L28.475 6.31279L28.422 6.28343L28.3695 6.25496L28.3174 6.22739L28.2657 6.20071L28.2145 6.17493L28.1639 6.15004L28.1138 6.12604L28.0642 6.10293L28.0153 6.0807L27.967 6.05934L27.9195 6.03884L27.8726 6.01921L27.8264 6.00043L27.7811 5.98249L27.7365 5.96538L27.6928 5.94909L27.6499 5.93361L27.608 5.91892L27.5669 5.90501L27.5268 5.89187L27.4877 5.87948L27.4495 5.86783L27.4124 5.8569L27.3764 5.84666L27.3414 5.83711L27.3076 5.82822L27.2748 5.81998L27.2432 5.81236L27.2128 5.80534L27.1835 5.79891L27.1555 5.79303L27.1287 5.78769L27.1032 5.78287L27.0789 5.77854L27.0559 5.77467L27.0342 5.77124L27.0138 5.76823L26.9947 5.7656L26.977 5.76335L26.9606 5.76143L26.9456 5.75982L26.932 5.7585L26.9197 5.75744L26.9089 5.7566L26.8994 5.75597L26.8914 5.75552L26.8848 5.75521L26.8796 5.75501L26.8758 5.75491L26.8734 5.75487L26.8725 5.75486L26.873 5.75486L26.8749 5.75483L26.8782 5.75475L26.883 5.75459L26.8891 5.75432L26.8967 5.75392L26.9057 5.75334L26.9161 5.75258L26.9279 5.75159L26.9411 5.75035L26.9557 5.74884L26.9716 5.74703L26.9889 5.74488L27.0076 5.74238L27.0275 5.73949L27.0488 5.7362L27.0714 5.73247L27.0953 5.72829L27.1204 5.72362L27.1468 5.71845L27.1745 5.71275L27.2033 5.70649L27.2334 5.69967L27.2646 5.69224L27.297 5.6842L27.3305 5.67552L27.3651 5.66618L27.4008 5.65617L27.4376 5.64546L27.4754 5.63403L27.5142 5.62188L27.554 5.60898L27.5948 5.59532L27.6365 5.58088L27.679 5.56566L27.7225 5.54962L27.7668 5.53278L27.8119 5.5151L27.8578 5.49659L27.9044 5.47723L27.9518 5.45701L27.9999 5.43593L28.0486 5.41397L28.0979 5.39114L28.1479 5.36743L28.1983 5.34282L28.2494 5.31732L28.3009 5.29093L28.3529 5.26365L28.4053 5.23547L28.4581 5.20639L28.5112 5.17641L28.5647 5.14555L28.6185 5.11379L28.6725 5.08115L28.7268 5.04762L28.7812 5.01323L28.8358 4.97796L28.8906 4.94183L28.9454 4.90485L29.0003 4.86703L29.0552 4.82838L29.1101 4.78891L29.1649 4.74863L29.2197 4.70755L29.2744 4.6657L29.3289 4.62308L29.3833 4.57971L29.4374 4.53561L29.4913 4.49079L29.545 4.44528L29.5984 4.39909L29.6514 4.35224L29.7041 4.30475L29.7564 4.25665L29.8084 4.20796L29.8598 4.15869L29.9109 4.10888L29.9614 4.05855L30.0114 4.00772L30.0609 3.95642L30.1098 3.90468L30.1582 3.85252L30.2059 3.79997L30.253 3.74706L30.2994 3.69381L30.3452 3.64026L30.3903 3.58643L30.4347 3.53236L30.4784 3.47808L30.5213 3.42361L30.5635 3.369L30.6048 3.31426L30.6454 3.25944L30.6852 3.20455L30.7242 3.14965L30.7624 3.09476L30.7997 3.03991L30.8362 2.98514L30.8718 2.93047L30.9065 2.87596L30.9404 2.82161L30.9734 2.76748L31.0055 2.7136L31.0367 2.65999L31.067 2.6067L31.0965 2.55375L31.125 2.50119L31.1527 2.44904L31.1794 2.39733L31.2053 2.34611L31.2302 2.2954L31.2543 2.24524L31.2775 2.19566L31.2998 2.1467L31.3212 2.09838L31.3418 2.05073L31.3615 2.00379L31.3803 1.9576L31.3983 1.91217L31.4155 1.86755L31.4318 1.82375L31.4474 1.78082L31.4621 1.73878L31.4761 1.69765L31.4893 1.65747L31.5018 1.61826L31.5135 1.58005L31.5245 1.54287L31.5348 1.50673L31.5444 1.47168L31.5533 1.43772L31.5616 1.40488L31.5693 1.37319L31.5763 1.34267L31.5828 1.31334L31.5887 1.28521L31.5941 1.25831L31.599 1.23266L31.6033 1.20828L31.6072 1.18517L31.6107 1.16336L31.6138 1.14286L31.6164 1.1237L31.6187 1.10587L31.6206 1.08939L31.6223 1.07428L31.6236 1.06054L31.6247 1.04818L31.6255 1.03722L31.6262 1.02766L31.6267 1.0195L31.627 1.01276L31.6272 1.00744L31.6273 1.00353L31.6273 1.00105L31.6273 1L31.6273 1.00037L31.6274 1.00217L31.6274 1.00539L31.6276 1.01004L31.6279 1.01611L31.6282 1.02359L31.6288 1.03248L31.6296 1.04277L31.6305 1.05446L31.6317 1.06754L31.6332 1.082L31.635 1.09782L31.6371 1.11501L31.6396 1.13354L31.6425 1.1534L31.6457 1.17459L31.6494 1.19707L31.6536 1.22085L31.6582 1.2459L31.6633 1.27221L31.669 1.29975L31.6752 1.32851L31.682 1.35846L31.6893 1.3896L31.6973 1.42189L31.706 1.45531L31.7153 1.48985L31.7252 1.52547L31.7359 1.56215L31.7472 1.59988L31.7593 1.63861L31.7722 1.67833L31.7858 1.71901L31.8001 1.76062L31.8153 1.80313L31.8313 1.84652L31.8481 1.89075L31.8657 1.9358L31.8841 1.98163L31.9034 2.02821L31.9235 2.07552L31.9446 2.12353L31.9664 2.17219L31.9892 2.22148L32.0129 2.27137L32.0374 2.32182L32.0628 2.3728L32.0891 2.42428L32.1163 2.47622L32.1445 2.52859L32.1735 2.58136L32.2034 2.63449L32.2342 2.68795L32.2658 2.74171L32.2984 2.79572L32.3319 2.84997L32.3662 2.90441L32.4014 2.959L32.4375 3.01373L32.4744 3.06855L32.5121 3.12342L32.5507 3.17832L32.5901 3.23322L32.6303 3.28807L32.6713 3.34286L32.7131 3.39754L32.7557 3.45208L32.799 3.50645L32.8431 3.56063L32.8878 3.61457L32.9333 3.66826L32.9794 3.72165L33.0262 3.77473L33.0736 3.82746L33.1217 3.87981L33.1703 3.93176L33.2196 3.98327L33.2693 4.03433L33.3196 4.0849L33.3704 4.13496L33.4217 4.18449L33.4734 4.23346L33.5255 4.28184L33.578 4.32963L33.6309 4.37678L33.6841 4.42329L33.7377 4.46913L33.7915 4.51428L33.8455 4.55873L33.8998 4.60245L33.9542 4.64543L34.0088 4.68765L34.0636 4.7291L34.1184 4.76976L34.1733 4.80962L34.2282 4.84867L34.2831 4.88689L34.3379 4.92427L34.3927 4.9608L34.4474 4.99648L34.5019 5.0313L34.5563 5.06524L34.6104 5.0983L34.6643 5.13048L34.7179 5.16178L34.7713 5.19218L34.8242 5.22168L34.8768 5.25029L34.929 5.27801L34.9808 5.30483L35.032 5.33075L35.0828 5.35578L35.133 5.37992L35.1826 5.40318L35.2316 5.42555L35.28 5.44705L35.3277 5.46768L35.3747 5.48745L35.4209 5.50636L35.4664 5.52444L35.5111 5.54168L35.555 5.5581L35.598 5.57371L35.6401 5.58852L35.6813 5.60255L35.7216 5.61581L35.7608 5.62832L35.7991 5.64009L35.8364 5.65114L35.8726 5.66148L35.9078 5.67114L35.9418 5.68013L35.9747 5.68848L36.0065 5.69619L36.0371 5.7033L36.0666 5.70983L36.0948 5.71579L36.1218 5.72122L36.1475 5.72612L36.172 5.73053L36.1952 5.73447L36.2171 5.73797L36.2377 5.74105L36.257 5.74373L36.275 5.74604L36.2915 5.74801L36.3068 5.74967L36.3206 5.75103L36.3331 5.75214L36.3441 5.753L36.3538 5.75367L36.3621 5.75415L36.3689 5.75448L36.3744 5.75469L36.3784 5.7548L36.381 5.75485L36.3822 5.75486L36.3822 5.75486Z" fill="#ED1C24"/>
+</svg>
diff --git a/public/img/favicon.png b/public/img/favicon.png
new file mode 100644
index 0000000..a3d244d
--- /dev/null
+++ b/public/img/favicon.png
Binary files differ
diff --git a/public/img/features/01-multi-tier-storage.svg b/public/img/features/01-multi-tier-storage.svg
new file mode 100644
index 0000000..adebe52
--- /dev/null
+++ b/public/img/features/01-multi-tier-storage.svg
@@ -0,0 +1,14 @@
+<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="1.14347" width="11.1144" height="11.1144" rx="2.25" transform="matrix(0.762311 -0.647211 0.762311 0.647211 15.0187 40.576)" fill="white" stroke="black" stroke-width="1.5"/>
+<rect x="1.14347" width="11.1144" height="11.1144" rx="2.25" transform="matrix(0.762311 -0.647211 0.762311 0.647211 14.9011 37.2512)" fill="white" stroke="black" stroke-width="1.5"/>
+<rect x="1.14347" width="11.1144" height="11.1144" rx="2.25" transform="matrix(0.762311 -0.647211 0.762311 0.647211 14.9011 33.796)" fill="white" stroke="black" stroke-width="1.5"/>
+<rect x="1.14347" width="11.1144" height="11.1144" rx="2.25" transform="matrix(0.762311 -0.647211 0.762311 0.647211 15.1527 15.6842)" fill="white" stroke="black" stroke-width="1.5"/>
+<rect x="1.14347" width="11.1144" height="11.1144" rx="2.25" transform="matrix(0.762311 -0.647211 0.762311 0.647211 15.0351 12.3593)" fill="white" stroke="black" stroke-width="1.5"/>
+<rect x="1.14347" width="11.1144" height="11.1144" rx="2.25" transform="matrix(0.762311 -0.647211 0.762311 0.647211 15.0351 8.90425)" fill="white" stroke="black" stroke-width="1.5"/>
+<rect x="1.14347" width="11.1144" height="11.1144" rx="2.25" transform="matrix(0.762311 -0.647211 0.762311 0.647211 0.389404 28.3106)" fill="white" stroke="black" stroke-width="1.5"/>
+<rect x="1.14347" width="11.1144" height="11.1144" rx="2.25" transform="matrix(0.762311 -0.647211 0.762311 0.647211 0.271789 24.9859)" fill="white" stroke="black" stroke-width="1.5"/>
+<rect x="1.14347" width="11.1144" height="11.1144" rx="2.25" transform="matrix(0.762311 -0.647211 0.762311 0.647211 0.271789 21.5306)" fill="white" stroke="black" stroke-width="1.5"/>
+<rect x="1.14347" width="11.1144" height="11.1144" rx="2.25" transform="matrix(0.762311 -0.647211 0.762311 0.647211 29.0397 28.0777)" fill="white" stroke="black" stroke-width="1.5"/>
+<rect x="1.14347" width="11.1144" height="11.1144" rx="2.25" transform="matrix(0.762311 -0.647211 0.762311 0.647211 28.9221 24.753)" fill="white" stroke="black" stroke-width="1.5"/>
+<rect x="1.14347" width="11.1144" height="11.1144" rx="2.25" transform="matrix(0.762311 -0.647211 0.762311 0.647211 28.9221 21.2978)" fill="white" stroke="black" stroke-width="1.5"/>
+</svg>
diff --git a/public/img/features/02-native-persistence.svg b/public/img/features/02-native-persistence.svg
new file mode 100644
index 0000000..302a7d7
--- /dev/null
+++ b/public/img/features/02-native-persistence.svg
@@ -0,0 +1,15 @@
+<svg width="49" height="48" viewBox="0 0 49 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g clip-path="url(#clip0)">
+<path d="M8.03549 33.876C5.94041 32.1563 5.94041 29.3681 8.03549 27.6484L21.2033 16.84C23.2984 15.1203 26.6952 15.1203 28.7903 16.84L41.9581 27.6484C44.0532 29.3681 44.0532 32.1563 41.9581 33.876L28.7903 44.6845C26.6952 46.4041 23.2984 46.4041 21.2033 44.6845L8.03549 33.876Z" fill="#F41921"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M22.7207 18.0855L9.55289 28.8939C8.29584 29.9258 8.29584 31.5987 9.55289 32.6305L22.7207 43.4389C23.9778 44.4708 26.0159 44.4708 27.2729 43.4389L40.4407 32.6305C41.6978 31.5987 41.6978 29.9258 40.4407 28.8939L27.2729 18.0855C26.0159 17.0537 23.9778 17.0537 22.7207 18.0855ZM8.03549 27.6484C5.94041 29.3681 5.94041 32.1563 8.03549 33.876L21.2033 44.6845C23.2984 46.4041 26.6952 46.4041 28.7903 44.6845L41.9581 33.876C44.0532 32.1563 44.0532 29.3681 41.9581 27.6484L28.7903 16.84C26.6952 15.1203 23.2984 15.1203 21.2033 16.84L8.03549 27.6484Z" fill="black"/>
+<path d="M8.03549 26.6666C5.94041 24.9469 5.94041 22.1588 8.03549 20.4391L21.2033 9.63061C23.2984 7.91092 26.6952 7.91092 28.7903 9.63061L41.9581 20.4391C44.0532 22.1588 44.0532 24.9469 41.9581 26.6666L28.7903 37.4751C26.6952 39.1948 23.2984 39.1948 21.2033 37.4751L8.03549 26.6666Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M22.7207 10.8761L9.55289 21.6846C8.29584 22.7164 8.29584 24.3893 9.55289 25.4211L22.7207 36.2296C23.9778 37.2614 26.0159 37.2614 27.2729 36.2296L40.4407 25.4211C41.6978 24.3893 41.6978 22.7164 40.4407 21.6846L27.2729 10.8761C26.0159 9.84431 23.9778 9.84431 22.7207 10.8761ZM8.03549 20.4391C5.94041 22.1588 5.94041 24.9469 8.03549 26.6666L21.2033 37.4751C23.2984 39.1948 26.6952 39.1948 28.7903 37.4751L41.9581 26.6666C44.0532 24.9469 44.0532 22.1588 41.9581 20.4391L28.7903 9.63061C26.6952 7.91092 23.2984 7.91092 21.2033 9.63061L8.03549 20.4391Z" fill="black"/>
+<path d="M8.03549 20.1498C5.94041 18.4301 5.94041 15.6419 8.03549 13.9222L21.2033 3.11377C23.2984 1.39407 26.6952 1.39407 28.7903 3.11376L41.9581 13.9222C44.0532 15.6419 44.0532 18.4301 41.9581 20.1498L28.7903 30.9583C26.6952 32.6779 23.2984 32.678 21.2033 30.9583L8.03549 20.1498Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M22.7207 4.35928L9.55289 15.1677C8.29584 16.1996 8.29584 17.8725 9.55289 18.9043L22.7207 29.7127C23.9778 30.7446 26.0159 30.7446 27.2729 29.7127L40.4407 18.9043C41.6978 17.8725 41.6978 16.1996 40.4407 15.1677L27.2729 4.35928C26.0159 3.32746 23.9778 3.32746 22.7207 4.35928ZM8.03549 13.9222C5.94041 15.6419 5.94041 18.4301 8.03549 20.1498L21.2033 30.9583C23.2984 32.678 26.6952 32.6779 28.7903 30.9583L41.9581 20.1498C44.0532 18.4301 44.0532 15.6419 41.9581 13.9222L28.7903 3.11376C26.6952 1.39407 23.2984 1.39407 21.2033 3.11377L8.03549 13.9222Z" fill="black"/>
+</g>
+<defs>
+<clipPath id="clip0">
+<rect width="48" height="48" fill="white" transform="translate(0.996826)"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/public/img/features/03-distributed-SQL.svg b/public/img/features/03-distributed-SQL.svg
new file mode 100644
index 0000000..adf52b2
--- /dev/null
+++ b/public/img/features/03-distributed-SQL.svg
@@ -0,0 +1,14 @@
+<svg width="49" height="49" viewBox="0 0 49 49" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M0.980314 48.9219C0.452055 48.9171 0.0227507 48.4865 0.0214355 47.9602L3.02869e-06 39.3835C-0.00131214 38.8571 0.42586 38.4344 0.954119 38.4392C1.48238 38.444 1.91168 38.8745 1.913 39.4008L1.92868 45.6769L7.58169 40.6013C7.71888 40.9786 8.21229 41.8895 8.83477 42.2109L3.28474 47.0369L9.58403 47.0941C10.1123 47.0989 10.5416 47.5294 10.5429 48.0557C10.5442 48.582 10.117 49.0048 9.58879 49L0.980314 48.9219Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M47.1195 48.9218C47.6478 48.9171 48.0771 48.4865 48.0784 47.9602L48.0998 39.3834C48.1011 38.8571 47.674 38.4344 47.1457 38.4392C46.6174 38.444 46.1881 38.8745 46.1868 39.4008L46.1711 45.6769L40.5181 40.6013C40.3809 40.9786 39.8875 41.8895 39.2651 42.2109L44.8151 47.0369L38.5158 47.0941C37.9875 47.0989 37.5582 47.5294 37.5569 48.0557C37.5556 48.582 37.9828 49.0048 38.511 49L47.1195 48.9218Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M47.1195 1.01535C47.6478 1.02014 48.0771 1.45069 48.0784 1.977L48.0998 10.5538C48.1011 11.0801 47.674 11.5028 47.1457 11.498C46.6174 11.4932 46.1881 11.0627 46.1868 10.5364L46.1711 4.26032L40.5181 9.33587C40.3809 8.95861 39.8875 8.04771 39.2651 7.72632L44.8151 2.90033L38.5158 2.84314C37.9875 2.83835 37.5582 2.4078 37.5569 1.88149C37.5556 1.35518 37.9828 0.932404 38.511 0.9372L47.1195 1.01535Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M1.00175 1.06266C0.473489 1.06746 0.0441817 1.498 0.0428665 2.02431L0.0214355 10.6011C0.0201203 11.1274 0.447293 11.5501 0.975552 11.5453C1.50381 11.5406 1.93311 11.11 1.93443 10.5837L1.95011 4.30763L7.60312 9.38318C7.74031 9.00592 8.23372 8.09502 8.8562 7.77363L3.30617 2.94764L9.60546 2.89046C10.1337 2.88566 10.563 2.45511 10.5643 1.9288C10.5657 1.40249 10.1385 0.979716 9.61022 0.984512L1.00175 1.06266Z" fill="#ED1C24"/>
+<path d="M9.87402 40.4654V12.0982C9.87402 12.0982 13.3465 15.8684 24.0451 15.8684C34.7437 15.8684 38.5277 11.8057 38.5277 11.8057V40.4654C27.3377 44.0622 21.064 44.1769 9.87402 40.4654Z" fill="white"/>
+<path d="M39.3911 10.6564C39.3911 13.6932 32.5944 16.1551 24.0313 16.1551C15.4683 16.1551 8.67151 13.6932 8.67151 10.6564C8.67151 7.61947 15.4683 5.15759 24.0313 5.15759C32.5944 5.15759 39.3911 7.61947 39.3911 10.6564Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M37.4668 10.6564C37.4668 10.6482 37.467 10.5997 37.4069 10.4938C37.3401 10.3759 37.2034 10.1978 36.9436 9.97656C36.4119 9.52393 35.5275 9.02885 34.2617 8.57506C31.7462 7.67328 28.1285 7.07759 23.9968 7.07759C19.8652 7.07759 16.2475 7.67328 13.732 8.57506C12.4662 9.02885 11.5817 9.52393 11.0501 9.97656C10.7903 10.1978 10.6536 10.3759 10.5868 10.4938C10.5267 10.5997 10.5269 10.6478 10.5269 10.656C10.5269 10.6641 10.5267 10.7131 10.5868 10.8189C10.6536 10.9368 10.7903 11.115 11.0501 11.3362C11.5817 11.7888 12.4662 12.2839 13.732 12.7377C16.2475 13.6394 19.8652 14.2351 23.9968 14.2351C28.1285 14.2351 31.7462 13.6394 34.2617 12.7377C35.5275 12.2839 36.4119 11.7888 36.9436 11.3362C37.2034 11.115 37.3401 10.9368 37.4069 10.8189C37.467 10.7131 37.4668 10.6645 37.4668 10.6564ZM23.9968 16.1551C32.5791 16.1551 39.3911 13.6932 39.3911 10.6564C39.3911 7.61947 32.5791 5.15759 23.9968 5.15759C15.4146 5.15759 8.60257 7.61947 8.60257 10.6564C8.60257 13.6932 15.4146 16.1551 23.9968 16.1551Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M8.70148 38.578L8.60257 10.3326L10.5226 10.3242L10.6215 38.5696L8.70148 38.578Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M37.4864 38.6226L37.4864 10.5181L39.3974 10.5181L39.3974 38.6226L37.4864 38.6226Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2124 41.4233C16.685 42.3377 20.1646 42.9225 24.0546 42.9225C27.9446 42.9225 31.4242 42.3377 33.8968 41.4233C35.1368 40.9646 36.0734 40.4414 36.6824 39.9089C37.2936 39.3745 37.4848 38.9164 37.4848 38.5618H39.3974C39.3974 39.6764 38.7835 40.618 37.9387 41.3567C37.0917 42.0973 35.9214 42.7206 34.558 43.2249C31.8237 44.2361 28.11 44.8425 24.0546 44.8425C19.9992 44.8425 16.2855 44.2361 13.5512 43.2249C12.1878 42.7206 11.0175 42.0973 10.1705 41.3567C9.32572 40.618 8.71176 39.6764 8.71176 38.5618H10.6244C10.6244 38.9164 10.8156 39.3745 11.4268 39.9089C12.0358 40.4414 12.9724 40.9646 14.2124 41.4233Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2124 31.8205C16.685 32.7349 20.1646 33.3197 24.0546 33.3197C27.9446 33.3197 31.4242 32.7349 33.8968 31.8205C35.1368 31.3618 36.0734 30.8386 36.6824 30.3061C37.2936 29.7717 37.4848 29.3137 37.4848 28.959H39.3974C39.3974 30.0736 38.7835 31.0152 37.9387 31.7539C37.0917 32.4945 35.9214 33.1179 34.558 33.6221C31.8237 34.6333 28.11 35.2397 24.0546 35.2397C19.9992 35.2397 16.2855 34.6333 13.5512 33.6221C12.1878 33.1179 11.0175 32.4945 10.1705 31.7539C9.32572 31.0152 8.71176 30.0736 8.71176 28.959H10.6244C10.6244 29.3137 10.8156 29.7717 11.4268 30.3061C12.0358 30.8386 12.9724 31.3618 14.2124 31.8205Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2113 22.2176C16.6834 23.132 20.1622 23.7168 24.0514 23.7168C27.9407 23.7168 31.4195 23.132 33.8916 22.2176C35.1314 21.7589 36.0678 21.2357 36.6767 20.7032C37.2877 20.1688 37.4789 19.7108 37.4789 19.3561H39.3911C39.3911 20.4707 38.7773 21.4123 37.9327 22.151C37.0858 22.8916 35.9158 23.5149 34.5527 24.0192C31.819 25.0304 28.106 25.6368 24.0514 25.6368C19.9968 25.6368 16.2839 25.0304 13.5502 24.0192C12.1871 23.5149 11.0171 22.8916 10.1702 22.151C9.3256 21.4123 8.71176 20.4707 8.71176 19.3561H10.624C10.624 19.7108 10.8152 20.1688 11.4262 20.7032C12.0351 21.2357 12.9715 21.7589 14.2113 22.2176Z" fill="black"/>
+</svg>
diff --git a/public/img/features/04-ACID-transactions.svg b/public/img/features/04-ACID-transactions.svg
new file mode 100644
index 0000000..4d3b451
--- /dev/null
+++ b/public/img/features/04-ACID-transactions.svg
@@ -0,0 +1,12 @@
+<svg width="49" height="48" viewBox="0 0 49 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M3.51895 33.9815L31.9649 4.9187L33.3079 6.29083L4.86196 35.3536L3.51895 33.9815Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M9.01416 39.5958L37.4601 10.533L38.8031 11.9051L10.3572 40.9679L9.01416 39.5958Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M14.5093 45.2103L42.9552 16.1475L44.2982 17.5196L15.8523 46.5824L14.5093 45.2103Z" fill="black"/>
+<path d="M28.7259 33.8315C28.7259 41.6566 22.5171 48 14.8582 48C7.19927 48 0.990479 41.6566 0.990479 33.8315C0.990479 26.0065 7.19927 19.6631 14.8582 19.6631C22.5171 19.6631 28.7259 26.0065 28.7259 33.8315Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M14.8582 46.08C21.4181 46.08 26.8059 40.6352 26.8059 33.8315C26.8059 27.0279 21.4181 21.5831 14.8582 21.5831C8.29828 21.5831 2.91048 27.0279 2.91048 33.8315C2.91048 40.6352 8.29828 46.08 14.8582 46.08ZM14.8582 48C22.5171 48 28.7259 41.6566 28.7259 33.8315C28.7259 26.0065 22.5171 19.6631 14.8582 19.6631C7.19927 19.6631 0.990479 26.0065 0.990479 33.8315C0.990479 41.6566 7.19927 48 14.8582 48Z" fill="black"/>
+<path d="M23.8508 33.7931C23.8508 38.8885 19.8078 43.0191 14.8206 43.0191C9.83342 43.0191 5.79048 38.8885 5.79048 33.7931C5.79048 28.6977 9.83342 24.5671 14.8206 24.5671C19.8078 24.5671 23.8508 28.6977 23.8508 33.7931Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M14.8206 41.0991C18.7088 41.0991 21.9308 37.8671 21.9308 33.7931C21.9308 29.7191 18.7088 26.4871 14.8206 26.4871C10.9324 26.4871 7.71048 29.7191 7.71048 33.7931C7.71048 37.8671 10.9324 41.0991 14.8206 41.0991ZM14.8206 43.0191C19.8078 43.0191 23.8508 38.8885 23.8508 33.7931C23.8508 28.6977 19.8078 24.5671 14.8206 24.5671C9.83342 24.5671 5.79048 28.6977 5.79048 33.7931C5.79048 38.8885 9.83342 43.0191 14.8206 43.0191Z" fill="black"/>
+<path d="M48.9905 11.4429C48.9905 17.7626 43.9761 22.8858 37.7905 22.8858C31.6049 22.8858 26.5905 17.7626 26.5905 11.4429C26.5905 5.12316 31.6049 0 37.7905 0C43.9761 0 48.9905 5.12316 48.9905 11.4429Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M37.7905 20.9658C42.8771 20.9658 47.0705 16.7413 47.0705 11.4429C47.0705 6.14451 42.8771 1.92 37.7905 1.92C32.7039 1.92 28.5105 6.14451 28.5105 11.4429C28.5105 16.7413 32.7039 20.9658 37.7905 20.9658ZM37.7905 22.8858C43.9761 22.8858 48.9905 17.7626 48.9905 11.4429C48.9905 5.12316 43.9761 0 37.7905 0C31.6049 0 26.5905 5.12316 26.5905 11.4429C26.5905 17.7626 31.6049 22.8858 37.7905 22.8858Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M44.1363 7.47029L37.4678 15.6967L32.1054 10.8308L33.3956 9.4089L37.2546 12.9106L42.6448 6.26123L44.1363 7.47029Z" fill="#ED1C24"/>
+</svg>
diff --git a/public/img/features/05-key-value-APIs.svg b/public/img/features/05-key-value-APIs.svg
new file mode 100644
index 0000000..697c289
--- /dev/null
+++ b/public/img/features/05-key-value-APIs.svg
@@ -0,0 +1,24 @@
+<svg width="49" height="48" viewBox="0 0 49 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="48" height="48" transform="translate(0.987305)" fill="#F6F6F6"/>
+<path d="M0.987305 2.88C0.987305 1.28942 2.27672 0 3.8673 0H15.7625C17.3531 0 18.6425 1.28942 18.6425 2.88V11.3018C18.6425 12.8924 17.3531 14.1818 15.7625 14.1818H3.86731C2.27673 14.1818 0.987305 12.8924 0.987305 11.3018V2.88Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M15.7625 1.92H3.8673C3.33711 1.92 2.9073 2.34981 2.9073 2.88V11.3018C2.9073 11.832 3.33711 12.2618 3.86731 12.2618H15.7625C16.2927 12.2618 16.7225 11.832 16.7225 11.3018V2.88C16.7225 2.34981 16.2927 1.92 15.7625 1.92ZM3.8673 0C2.27672 0 0.987305 1.28942 0.987305 2.88V11.3018C0.987305 12.8924 2.27673 14.1818 3.86731 14.1818H15.7625C17.3531 14.1818 18.6425 12.8924 18.6425 11.3018V2.88C18.6425 1.28942 17.3531 0 15.7625 0H3.8673Z" fill="black"/>
+<path d="M20.8494 2.88C20.8494 1.28942 22.1388 0 23.7294 0H46.1073C47.6979 0 48.9873 1.28942 48.9873 2.88V11.3018C48.9873 12.8924 47.6979 14.1818 46.1073 14.1818H23.7294C22.1388 14.1818 20.8494 12.8924 20.8494 11.3018V7.09091V2.88Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M46.1073 1.92H23.7294C23.1992 1.92 22.7694 2.34981 22.7694 2.88V11.3018C22.7694 11.832 23.1992 12.2618 23.7294 12.2618H46.1073C46.6375 12.2618 47.0673 11.832 47.0673 11.3018V2.88C47.0673 2.3498 46.6375 1.92 46.1073 1.92ZM23.7294 0C22.1388 0 20.8494 1.28942 20.8494 2.88V11.3018C20.8494 12.8924 22.1388 14.1818 23.7294 14.1818H46.1073C47.6979 14.1818 48.9873 12.8924 48.9873 11.3018V2.88C48.9873 1.28942 47.6979 0 46.1073 0H23.7294Z" fill="black"/>
+<path d="M0.987305 19.7891C0.987305 18.1985 2.27672 16.9091 3.8673 16.9091H15.7625C17.3531 16.9091 18.6425 18.1985 18.6425 19.7891V28.2109C18.6425 29.8015 17.3531 31.0909 15.7625 31.0909H3.86731C2.27673 31.0909 0.987305 29.8015 0.987305 28.2109V19.7891Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M15.7625 18.8291H3.8673C3.33711 18.8291 2.9073 19.2589 2.9073 19.7891V28.2109C2.9073 28.7411 3.33711 29.1709 3.86731 29.1709H15.7625C16.2927 29.1709 16.7225 28.7411 16.7225 28.2109V19.7891C16.7225 19.2589 16.2927 18.8291 15.7625 18.8291ZM3.8673 16.9091C2.27672 16.9091 0.987305 18.1985 0.987305 19.7891V28.2109C0.987305 29.8015 2.27673 31.0909 3.86731 31.0909H15.7625C17.3531 31.0909 18.6425 29.8015 18.6425 28.2109V19.7891C18.6425 18.1985 17.3531 16.9091 15.7625 16.9091H3.8673Z" fill="black"/>
+<path d="M20.8494 19.7889C20.8494 18.1984 22.1388 16.9089 23.7294 16.9089H46.1073C47.6979 16.9089 48.9873 18.1984 48.9873 19.7889V28.2108C48.9873 29.8013 47.6979 31.0908 46.1073 31.0908H23.7294C22.1388 31.0908 20.8494 29.8013 20.8494 28.2108V19.7889Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M46.1073 18.8289H23.7294C23.1992 18.8289 22.7694 19.2587 22.7694 19.7889V28.2108C22.7694 28.7409 23.1992 29.1708 23.7294 29.1708H46.1073C46.6375 29.1708 47.0673 28.7409 47.0673 28.2108V19.7889C47.0673 19.2587 46.6375 18.8289 46.1073 18.8289ZM23.7294 16.9089C22.1388 16.9089 20.8494 18.1984 20.8494 19.7889V28.2108C20.8494 29.8013 22.1388 31.0908 23.7294 31.0908H46.1073C47.6979 31.0908 48.9873 29.8013 48.9873 28.2108V19.7889C48.9873 18.1984 47.6979 16.9089 46.1073 16.9089H23.7294Z" fill="black"/>
+<path d="M0.987305 36.6982C0.987305 35.1077 2.27672 33.8182 3.8673 33.8182H15.7625C17.3531 33.8182 18.6425 35.1077 18.6425 36.6982V45.1201C18.6425 46.7106 17.3531 48.0001 15.7625 48.0001H3.86731C2.27673 48.0001 0.987305 46.7106 0.987305 45.1201V36.6982Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M15.7625 35.7382H3.8673C3.33711 35.7382 2.9073 36.168 2.9073 36.6982V45.1201C2.9073 45.6503 3.33711 46.0801 3.86731 46.0801H15.7625C16.2927 46.0801 16.7225 45.6503 16.7225 45.1201V36.6982C16.7225 36.168 16.2927 35.7382 15.7625 35.7382ZM3.8673 33.8182C2.27672 33.8182 0.987305 35.1077 0.987305 36.6982V45.1201C0.987305 46.7106 2.27673 48.0001 3.86731 48.0001H15.7625C17.3531 48.0001 18.6425 46.7106 18.6425 45.1201V36.6982C18.6425 35.1077 17.3531 33.8182 15.7625 33.8182H3.8673Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8287 4.69104H32.6287V9.49104H11.8287V4.69104Z" fill="#FDFDFD"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M12.1652 6.13098H30.0852V8.05098H12.1652V6.13098Z" fill="#F41921"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M28.4823 2.47314L31.9854 7.09091L28.4823 11.7087L26.9526 10.5482L29.5754 7.09091L26.9526 3.63357L28.4823 2.47314Z" fill="#F41921"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8287 21.6001H32.6287V26.4001H11.8287V21.6001Z" fill="#FDFDFD"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M12.1652 23.04H30.0852V24.96H12.1652V23.04Z" fill="#F41921"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M28.4823 19.3823L31.9854 24.0001L28.4823 28.6178L26.9526 27.4574L29.5754 24.0001L26.9526 20.5427L28.4823 19.3823Z" fill="#F41921"/>
+<path d="M20.8494 36.6982C20.8494 35.1077 22.1388 33.8182 23.7294 33.8182H46.1073C47.6979 33.8182 48.9873 35.1077 48.9873 36.6982V45.1201C48.9873 46.7106 47.6979 48.0001 46.1073 48.0001H23.7294C22.1388 48.0001 20.8494 46.7106 20.8494 45.1201V36.6982Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M46.1073 35.7382H23.7294C23.1992 35.7382 22.7694 36.168 22.7694 36.6982V45.1201C22.7694 45.6503 23.1992 46.0801 23.7294 46.0801H46.1073C46.6375 46.0801 47.0673 45.6503 47.0673 45.1201V36.6982C47.0673 36.168 46.6375 35.7382 46.1073 35.7382ZM23.7294 33.8182C22.1388 33.8182 20.8494 35.1077 20.8494 36.6982V45.1201C20.8494 46.7106 22.1388 48.0001 23.7294 48.0001H46.1073C47.6979 48.0001 48.9873 46.7106 48.9873 45.1201V36.6982C48.9873 35.1077 47.6979 33.8182 46.1073 33.8182H23.7294Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8287 38.5092H32.6287V43.3092H11.8287V38.5092Z" fill="#FDFDFD"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M12.1652 39.9491H30.0852V41.8691H12.1652V39.9491Z" fill="#F41921"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M28.4823 36.2914L31.9854 40.9091L28.4823 45.5269L26.9526 44.3665L29.5754 40.9091L26.9526 37.4518L28.4823 36.2914Z" fill="#F41921"/>
+</svg>
diff --git a/public/img/features/06-compute-APIs.svg b/public/img/features/06-compute-APIs.svg
new file mode 100644
index 0000000..31c8317
--- /dev/null
+++ b/public/img/features/06-compute-APIs.svg
@@ -0,0 +1,19 @@
+<svg width="49" height="48" viewBox="0 0 49 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M32.0683 45.4688C31.6006 45.4688 31.2214 45.0867 31.2214 44.6152L31.2214 36.0899C31.2214 35.6185 31.6006 35.2363 32.0683 35.2363C32.536 35.2363 32.9151 35.6185 32.9151 36.0899V44.6152C32.9151 45.0867 32.536 45.4688 32.0683 45.4688Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M24.7038 45.469C24.2361 45.469 23.8569 45.0868 23.8569 44.6153L23.8569 36.0901C23.8569 35.6186 24.2361 35.2364 24.7038 35.2364C25.1715 35.2364 25.5506 35.6186 25.5506 36.0901V44.6153C25.5506 45.0868 25.1715 45.469 24.7038 45.469Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M17.3393 45.469C16.8716 45.469 16.4925 45.0868 16.4925 44.6153L16.4925 36.0901C16.4925 35.6186 16.8716 35.2364 17.3393 35.2364C17.807 35.2364 18.1861 35.6186 18.1861 36.0901L18.1861 44.6153C18.1861 45.0868 17.807 45.469 17.3393 45.469Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M31.031 36.0899C31.031 35.5125 31.4954 35.0443 32.0683 35.0443C32.6412 35.0443 33.1056 35.5125 33.1056 36.0899V44.6152C33.1056 45.1927 32.6412 45.6608 32.0683 45.6608C31.4954 45.6608 31.031 45.1927 31.031 44.6152L31.031 36.0899ZM32.0683 35.4283C31.7058 35.4283 31.4119 35.7245 31.4119 36.0899L31.4119 44.6152C31.4119 44.9806 31.7058 45.2768 32.0683 45.2768C32.4308 45.2768 32.7247 44.9806 32.7247 44.6152V36.0899C32.7247 35.7245 32.4308 35.4283 32.0683 35.4283ZM16.302 36.0901C16.302 35.5126 16.7664 35.0444 17.3393 35.0444C17.9122 35.0444 18.3766 35.5126 18.3766 36.0901L18.3766 44.6153C18.3766 45.1928 17.9122 45.6609 17.3393 45.6609C16.7664 45.6609 16.302 45.1928 16.302 44.6153L16.302 36.0901ZM17.3393 35.4284C16.9768 35.4284 16.6829 35.7246 16.6829 36.0901L16.6829 44.6153C16.6829 44.9807 16.9768 45.2769 17.3393 45.2769C17.7018 45.2769 17.9957 44.9807 17.9957 44.6153L17.9957 36.0901C17.9957 35.7246 17.7018 35.4284 17.3393 35.4284ZM23.6665 36.0901C23.6665 35.5126 24.1309 35.0444 24.7038 35.0444C25.2767 35.0444 25.7411 35.5126 25.7411 36.0901V44.6153C25.7411 45.1928 25.2767 45.6609 24.7038 45.6609C24.1309 45.6609 23.6665 45.1928 23.6665 44.6153L23.6665 36.0901ZM24.7038 35.4284C24.3413 35.4284 24.0474 35.7246 24.0474 36.0901L24.0474 44.6153C24.0474 44.9807 24.3413 45.2769 24.7038 45.2769C25.0663 45.2769 25.3602 44.9807 25.3602 44.6153V36.0901C25.3602 35.7246 25.0663 35.4284 24.7038 35.4284Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M39.8888 22.241C39.6549 21.8327 39.7937 21.3107 40.1987 21.0749L47.5232 16.8123C47.9283 16.5766 48.4462 16.7165 48.68 17.1247C48.9139 17.533 48.7751 18.0551 48.3701 18.2908L41.0456 22.5534C40.6405 22.7892 40.1226 22.6493 39.8888 22.241Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M36.2065 15.8121C35.9727 15.4038 36.1115 14.8818 36.5165 14.6461L43.841 10.3834C44.246 10.1477 44.764 10.2876 44.9978 10.6959C45.2317 11.1042 45.0929 11.6262 44.6878 11.8619L37.3633 16.1246C36.9583 16.3603 36.4404 16.2204 36.2065 15.8121Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M32.5243 9.38318C32.2904 8.9749 32.4292 8.45283 32.8343 8.21711L40.1588 3.95447C40.5638 3.71875 41.0817 3.85864 41.3156 4.26692C41.5494 4.6752 41.4106 5.19727 41.0056 5.43299L33.6811 9.69562C33.2761 9.93134 32.7581 9.79146 32.5243 9.38318Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M40.0635 3.78821C40.5597 3.49947 41.1941 3.67082 41.4805 4.17093C41.767 4.67105 41.597 5.31054 41.1008 5.59928L33.7763 9.86192C33.2802 10.1507 32.6458 9.97931 32.3593 9.47919C32.0729 8.97908 32.2429 8.33959 32.739 8.05085L40.0635 3.78821ZM41.1506 4.36293C40.9694 4.04649 40.5679 3.93806 40.254 4.12076L32.9295 8.3834C32.6156 8.5661 32.508 8.97074 32.6892 9.28719C32.8705 9.60364 33.2719 9.71206 33.5859 9.52936L40.9104 5.26673C41.2243 5.08402 41.3319 4.67938 41.1506 4.36293ZM43.7458 10.2172C44.2419 9.92842 44.8763 10.0998 45.1628 10.5999C45.4492 11.1 45.2792 11.7395 44.7831 12.0282L37.4586 16.2909C36.9624 16.5796 36.328 16.4083 36.0416 15.9081C35.7551 15.408 35.9251 14.7685 36.4213 14.4798L43.7458 10.2172ZM44.8328 10.7919C44.6516 10.4754 44.2502 10.367 43.9362 10.5497L36.6117 14.8124C36.2978 14.9951 36.1902 15.3997 36.3715 15.7161C36.5527 16.0326 36.9542 16.141 37.2681 15.9583L44.5926 11.6957C44.9065 11.513 45.0141 11.1083 44.8328 10.7919ZM47.428 16.646C47.9241 16.3573 48.5585 16.5286 48.845 17.0288C49.1314 17.5289 48.9614 18.1684 48.4653 18.4571L41.1408 22.7197C40.6447 23.0085 40.0102 22.8371 39.7238 22.337C39.4373 21.8369 39.6073 21.1974 40.1035 20.9087L47.428 16.646ZM48.5151 17.2208C48.3338 16.9043 47.9324 16.7959 47.6184 16.9786L40.294 21.2412C39.98 21.4239 39.8725 21.8286 40.0537 22.145C40.235 22.4615 40.6364 22.5699 40.9503 22.3872L48.2748 18.1245C48.5888 17.9418 48.6963 17.5372 48.5151 17.2208Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M17.4407 9.58996C17.2074 9.99857 16.6902 10.1383 16.2855 9.90198L8.96271 5.62684C8.55799 5.39056 8.41902 4.86778 8.65232 4.45918C8.88561 4.05058 9.40282 3.91088 9.80754 4.14716L17.1303 8.4223C17.5351 8.65858 17.674 9.18136 17.4407 9.58996Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M13.7585 16.0393C13.5252 16.4479 13.008 16.5876 12.6033 16.3513L5.28047 12.0762C4.87575 11.8399 4.73678 11.3171 4.97008 10.9085C5.20337 10.4999 5.72058 10.3602 6.1253 10.5965L13.4481 14.8716C13.8528 15.1079 13.9918 15.6307 13.7585 16.0393Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M10.0762 22.4884C9.84293 22.897 9.32572 23.0367 8.921 22.8004L1.5982 18.5253C1.19348 18.289 1.05452 17.7662 1.28781 17.3576C1.52111 16.949 2.03832 16.8093 2.44304 17.0456L9.76584 21.3207C10.1706 21.557 10.3095 22.0798 10.0762 22.4884Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M8.48723 4.36342C8.7731 3.86274 9.40708 3.6915 9.90301 3.98103L17.2258 8.25617C17.7214 8.54549 17.8915 9.18542 17.6058 9.68575C17.3199 10.1864 16.686 10.3577 16.19 10.0681L8.86724 5.793C8.37167 5.50368 8.20156 4.86375 8.48723 4.36342ZM9.71208 4.31332C9.39857 4.13029 8.99812 4.23845 8.8174 4.55497C8.63648 4.87184 8.74431 5.27747 9.05817 5.46071L16.381 9.73585C16.6945 9.91888 17.0949 9.81073 17.2756 9.49421C17.4566 9.17733 17.3487 8.7717 17.0349 8.58846L9.71208 4.31332ZM4.80499 10.8128C5.09086 10.3121 5.72484 10.1408 6.22077 10.4304L13.5436 14.7055C14.0391 14.9948 14.2092 15.6348 13.9236 16.1351C13.6377 16.6358 13.0037 16.807 12.5078 16.5175L5.185 12.2423C4.68943 11.953 4.51932 11.3131 4.80499 10.8128ZM6.02984 10.7627C5.71633 10.5796 5.31588 10.6878 5.13516 11.0043C4.95424 11.3212 5.06207 11.7268 5.37593 11.91L12.6987 16.1852C13.0122 16.3682 13.4127 16.2601 13.5934 15.9435C13.7743 15.6267 13.6665 15.221 13.3526 15.0378L6.02984 10.7627ZM1.12272 17.2619C1.4086 16.7612 2.04258 16.5899 2.5385 16.8795L9.8613 21.1546C10.3569 21.4439 10.527 22.0839 10.2413 22.5842C9.95545 23.0849 9.32146 23.2561 8.82554 22.9666L1.50274 18.6914C1.00716 18.4021 0.837057 17.7622 1.12272 17.2619ZM2.34758 17.2118C2.03406 17.0287 1.63362 17.1369 1.4529 17.4534C1.27198 17.7703 1.3798 18.1759 1.69367 18.3592L9.01647 22.6343C9.32998 22.8173 9.73042 22.7092 9.91114 22.3927C10.0921 22.0758 9.98424 21.6701 9.67037 21.4869L2.34758 17.2118Z" fill="black"/>
+<path d="M15.354 9.93517C16.1106 8.61228 17.5105 7.79754 19.0253 7.79858L30.8324 7.80673C32.3441 7.80778 33.7406 8.62113 34.4964 9.94079L40.4128 20.2701C41.1686 21.5898 41.1692 23.2155 40.4142 24.5357L34.5177 34.8468C33.7612 36.1697 32.3612 36.9844 30.8464 36.9834L19.0394 36.9752C17.5276 36.9742 16.1312 36.1608 15.3753 34.8412L9.45898 24.5118C8.70313 23.1922 8.70258 21.5664 9.45753 20.2463L15.354 9.93517Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M30.8312 9.51398L19.0242 9.50583C18.1153 9.5052 17.2753 9.99405 16.8214 10.7878L10.9249 21.0989C10.4719 21.891 10.4722 22.8664 10.9258 23.6582L16.8421 33.9876C17.2956 34.7794 18.1335 35.2674 19.0405 35.268L30.8475 35.2761C31.7564 35.2768 32.5964 34.7879 33.0503 33.9942L38.9468 23.6831C39.3998 22.891 39.3995 21.9156 38.946 21.1238L33.0297 10.7944C32.5761 10.0026 31.7382 9.5146 30.8312 9.51398ZM19.0253 7.79858C17.5105 7.79754 16.1106 8.61228 15.354 9.93517L9.45753 20.2463C8.70258 21.5664 8.70313 23.1922 9.45898 24.5118L15.3753 34.8412C16.1312 36.1608 17.5276 36.9742 19.0394 36.9752L30.8464 36.9834C32.3612 36.9844 33.7612 36.1697 34.5177 34.8468L40.4142 24.5357C41.1692 23.2155 41.1686 21.5898 40.4128 20.2701L34.4964 9.94079C33.7406 8.62113 32.3441 7.80778 30.8324 7.80673L19.0253 7.79858Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M19.0252 7.99069C17.5785 7.98969 16.2416 8.76778 15.5191 10.0312L9.62256 20.3422C8.90156 21.603 8.90209 23.1556 9.62394 24.4159L15.5403 34.7453C16.2621 36.0056 17.5958 36.7823 19.0395 36.7833L30.8465 36.7915C32.2932 36.7925 33.6302 36.0144 34.3527 34.751L40.2492 24.4399C40.9702 23.1792 40.9697 21.6265 40.2478 20.3663L34.3315 10.0369C33.6096 8.7766 32.276 7.99984 30.8323 7.99884L19.0252 7.99069ZM15.189 9.83939C15.9796 8.45699 17.4425 7.6056 19.0255 7.60669L30.8325 7.61484C32.4122 7.61593 33.8715 8.46588 34.6614 9.84489L40.5777 20.1743C41.3676 21.5533 41.3681 23.2522 40.5792 24.6317L34.6827 34.9428C33.8922 36.3252 32.4292 37.1766 30.8463 37.1755L19.0392 37.1673C17.4595 37.1663 16.0002 36.3163 15.2103 34.9373L9.29403 24.6079C8.50417 23.2289 8.5036 21.53 9.29251 20.1505L15.189 9.83939ZM19.0241 9.69793C18.1833 9.69735 17.4063 10.1495 16.9864 10.8838L11.0899 21.1949C10.6709 21.9276 10.6712 22.8299 11.0907 23.5623L17.007 33.8917C17.4266 34.6241 18.2016 35.0755 19.0406 35.0761L30.8477 35.0843C31.6884 35.0848 32.4654 34.6326 32.8853 33.8984L38.7818 23.5873C39.2008 22.8546 39.2005 21.9523 38.781 21.2199L32.8647 10.8905C32.4452 10.1581 31.6701 9.70666 30.8311 9.70608L19.0241 9.69793ZM16.6564 10.692C17.1443 9.83876 18.0473 9.31326 19.0243 9.31393L30.8314 9.32208C31.8064 9.32276 32.7071 9.84736 33.1946 10.6985L39.1109 21.0279C39.5985 21.879 39.5988 22.9276 39.1119 23.7791L33.2154 34.0902C32.7274 34.9434 31.8245 35.4689 30.8474 35.4683L19.0404 35.4601C18.0654 35.4594 17.1646 34.9348 16.6771 34.0837L10.7608 23.7543C10.2733 22.9032 10.2729 21.8546 10.7599 21.0031L16.6564 10.692Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M27.4476 15.3388L22.2732 15.3388C21.3654 15.3388 20.5261 15.8288 20.0722 16.6238L17.485 21.1551C17.0321 21.9484 17.0317 22.925 17.4842 23.7174L20.0771 28.2589C20.5296 29.0513 21.3661 29.5393 22.2721 29.5393H27.4464C28.3542 29.5393 29.1936 29.0493 29.6475 28.2543L32.2346 23.723C32.6876 22.9296 32.6879 21.953 32.2355 21.1606L29.6425 16.6192C29.1901 15.8268 28.3535 15.3388 27.4476 15.3388ZM22.2756 13.6295C20.7625 13.6295 19.3637 14.4462 18.6072 15.7712L16.02 20.3025C15.265 21.6247 15.2645 23.2524 16.0185 24.5731L18.6115 29.1145C19.3656 30.4352 20.7599 31.2485 22.2698 31.2485H27.4441C28.9571 31.2485 30.356 30.4319 31.1125 29.1069L33.6997 24.5756C34.4546 23.2533 34.4552 21.6257 33.7011 20.305L31.1082 15.7636C30.3541 14.4429 28.9598 13.6295 27.4499 13.6295L22.2756 13.6295Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M27.4499 13.8215L22.2756 13.8215C20.8309 13.8215 19.4949 14.6013 18.7723 15.8669L16.1851 20.3982C15.4639 21.6613 15.4635 23.216 16.1836 24.4773L18.7766 29.0187C19.4967 30.28 20.8281 31.0565 22.2698 31.0565H27.4441C28.8888 31.0565 30.2248 30.2767 30.9474 29.0111L33.5346 24.4798C34.2557 23.2168 34.2562 21.6621 33.536 20.4007L30.9431 15.8593C30.2229 14.5981 28.8916 13.8215 27.4499 13.8215ZM22.2756 13.4375L27.4499 13.4375C29.0281 13.4375 30.4852 14.2876 31.2732 15.6678L33.8662 20.2092C34.6542 21.5893 34.6535 23.2899 33.8648 24.6714L31.2776 29.2026C30.4872 30.587 29.0255 31.4405 27.4441 31.4405H22.2698C20.6916 31.4405 19.2344 30.5904 18.4464 29.2103L15.8535 24.6688C15.0655 23.2888 15.0661 21.5881 15.8549 20.2067L18.4421 15.6754C19.2325 14.291 20.6942 13.4375 22.2756 13.4375ZM27.4476 15.5308H22.2732C21.4338 15.5308 20.6573 15.9839 20.2373 16.7195L17.6501 21.2508C17.2309 21.985 17.2307 22.8886 17.6492 23.6216L20.2422 28.1631C20.6607 28.896 21.4344 29.3473 22.2721 29.3473H27.4464C28.2859 29.3473 29.0624 28.8941 29.4824 28.1585L32.0696 23.6272C32.4887 22.8931 32.489 21.9894 32.0704 21.2564L29.4775 16.715C29.059 15.982 28.2853 15.5308 27.4476 15.5308ZM22.2732 15.1468L27.4476 15.1468C28.4218 15.1468 29.3212 15.6716 29.8076 16.5234L32.4006 21.0648C32.8869 21.9166 32.8865 22.9662 32.3997 23.8188L29.8126 28.35C29.3248 29.2044 28.4226 29.7313 27.4464 29.7313H22.2721C21.2979 29.7313 20.3984 29.2065 19.912 28.3546L17.3191 23.8132C16.8327 22.9614 16.8332 21.9118 17.3199 21.0593L19.9071 16.528C20.3949 15.6736 21.2971 15.1468 22.2732 15.1468Z" fill="#ED1C24"/>
+</svg>
diff --git a/public/img/features/07-machine-learning.svg b/public/img/features/07-machine-learning.svg
new file mode 100644
index 0000000..f6726af
--- /dev/null
+++ b/public/img/features/07-machine-learning.svg
@@ -0,0 +1,12 @@
+<svg width="49" height="48" viewBox="0 0 49 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M8.59127 7.90243C8.59127 3.53804 12.1293 0 16.4937 0C20.8581 0 24.3961 3.53804 24.3961 7.90243V40.0976C24.3961 44.4619 20.8581 48 16.4937 48C12.1293 48 8.59127 44.4619 8.59127 40.0976V38.0206C4.36221 37.867 0.980957 34.3901 0.980957 30.1235V29.7206C0.980957 27.4701 1.92172 25.4393 3.43144 24C1.92172 22.5608 0.980957 20.53 0.980957 18.2794V17.8765C0.980957 13.6099 4.36221 10.1331 8.59127 9.97939V7.90243Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M8.6639 36.022C9.73949 36.061 10.5913 36.9443 10.5913 38.0206V40.0976C10.5913 43.3574 13.2339 46 16.4937 46C19.7535 46 22.3961 43.3574 22.3961 40.0976V7.90243C22.3961 4.64261 19.7535 2 16.4937 2C13.2339 2 10.5913 4.64261 10.5913 7.90243V9.97939C10.5913 11.0557 9.73949 11.939 8.6639 11.9781C5.50649 12.0928 2.98096 14.6902 2.98096 17.8765V18.2794C2.98096 19.9606 3.68121 21.4749 4.81147 22.5524C5.20739 22.9299 5.43144 23.453 5.43144 24C5.43144 24.547 5.20739 25.0702 4.81147 25.4476C3.68121 26.5251 2.98096 28.0394 2.98096 29.7206V30.1235C2.98096 33.3099 5.50649 35.9072 8.6639 36.022ZM2.90735 24.5498C1.70714 25.9357 0.980957 27.7433 0.980957 29.7206V30.1235C0.980957 34.3901 4.36221 37.867 8.59127 38.0206V40.0976C8.59127 44.4619 12.1293 48 16.4937 48C20.8581 48 24.3961 44.4619 24.3961 40.0976V7.90243C24.3961 3.53804 20.8581 0 16.4937 0C12.1293 0 8.59127 3.53804 8.59127 7.90243V9.97939C4.36221 10.1331 0.980957 13.6099 0.980957 17.8765V18.2794C0.980957 20.2567 1.70714 22.0644 2.90735 23.4503C3.07322 23.6418 3.24814 23.8253 3.43144 24C3.24813 24.1748 3.07322 24.3582 2.90735 24.5498Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M41.3707 40.0976C41.3707 44.462 37.8326 48 33.4682 48C29.1038 48 25.5658 44.462 25.5658 40.0976L25.5658 7.90244C25.5658 3.53805 29.1038 1.34082e-05 33.4682 1.38146e-05C37.8326 1.42209e-05 41.3707 3.53805 41.3707 7.90245L41.3707 9.97935C45.5997 10.133 48.981 13.6099 48.981 17.8765L48.981 18.2794C48.981 20.5299 48.0402 22.5607 46.5305 24C48.0402 25.4392 48.981 27.47 48.981 29.7206L48.981 30.1235C48.981 34.3901 45.5997 37.8669 41.3707 38.0206L41.3707 40.0976Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M41.298 11.978C40.2224 11.9389 39.3707 11.0557 39.3707 9.97935L39.3707 7.90245C39.3707 4.64262 36.728 2.00001 33.4682 2.00001C30.2084 2.00001 27.5658 4.64262 27.5658 7.90244L27.5658 40.0976C27.5658 43.3574 30.2084 46 33.4682 46C36.728 46 39.3706 43.3574 39.3706 40.0976L39.3707 38.0206C39.3707 36.9443 40.2224 36.061 41.298 36.0219C44.4554 35.9072 46.981 33.3098 46.981 30.1235L46.981 29.7206C46.981 28.0394 46.2807 26.5251 45.1504 25.4476C44.7545 25.0701 44.5305 24.547 44.5305 24C44.5305 23.453 44.7545 22.9298 45.1504 22.5524C46.2807 21.4749 46.981 19.9606 46.981 18.2794L46.981 17.8765C46.981 14.6901 44.4554 12.0928 41.298 11.978ZM47.0546 23.4502C48.2548 22.0643 48.981 20.2567 48.981 18.2794L48.981 17.8765C48.981 13.6099 45.5997 10.133 41.3707 9.97935L41.3707 7.90245C41.3707 3.53805 37.8326 1.42209e-05 33.4682 1.38146e-05C29.1038 1.34082e-05 25.5658 3.53805 25.5658 7.90244L25.5658 40.0976C25.5658 44.462 29.1038 48 33.4682 48C37.8326 48 41.3707 44.462 41.3707 40.0976L41.3707 38.0206C45.5997 37.8669 48.981 34.3901 48.981 30.1235L48.981 29.7206C48.981 27.7433 48.2548 25.9356 47.0546 24.5497C46.8887 24.3582 46.7138 24.1747 46.5305 24C46.7138 23.8252 46.8887 23.6418 47.0546 23.4502Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M33.0746 14.1722C33.8537 14.1722 34.4853 13.5406 34.4853 12.7615C34.4853 11.9823 33.8537 11.3507 33.0746 11.3507C32.2955 11.3507 31.6639 11.9823 31.6639 12.7615C31.6639 13.5406 32.2955 14.1722 33.0746 14.1722ZM33.0746 16.1722C34.9583 16.1722 36.4853 14.6452 36.4853 12.7615C36.4853 10.8778 34.9583 9.35071 33.0746 9.35071C31.1909 9.35071 29.6639 10.8778 29.6639 12.7615C29.6639 14.6452 31.1909 16.1722 33.0746 16.1722Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M38.9287 24.7695C39.7078 24.7695 40.3394 24.1379 40.3394 23.3587C40.3394 22.5796 39.7078 21.948 38.9287 21.948C38.1496 21.948 37.518 22.5796 37.518 23.3587C37.518 24.1379 38.1496 24.7695 38.9287 24.7695ZM38.9287 26.7695C40.8124 26.7695 42.3394 25.2424 42.3394 23.3587C42.3394 21.475 40.8124 19.948 38.9287 19.948C37.045 19.948 35.518 21.475 35.518 23.3587C35.518 25.2424 37.045 26.7695 38.9287 26.7695Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M33.0746 36.6137C33.8537 36.6137 34.4854 35.9821 34.4854 35.203C34.4854 34.4238 33.8537 33.7922 33.0746 33.7922C32.2955 33.7922 31.6639 34.4238 31.6639 35.203C31.6639 35.9821 32.2955 36.6137 33.0746 36.6137ZM33.0746 38.6137C34.9583 38.6137 36.4854 37.0867 36.4854 35.203C36.4854 33.3193 34.9583 31.7922 33.0746 31.7922C31.1909 31.7922 29.6639 33.3193 29.6639 35.203C29.6639 37.0867 31.1909 38.6137 33.0746 38.6137Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M27.5686 23L36.9919 23L36.9919 25L27.5686 25L27.5686 23Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M27.5686 12.3333L31.6586 12.3333L31.6586 14.3333L27.5686 14.3333L27.5686 12.3333Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M27.5686 34.3334L31.6586 34.3334L31.6586 36.3334L27.5686 36.3334L27.5686 34.3334Z" fill="#ED1C24"/>
+</svg>
diff --git a/public/img/features/08-services.svg b/public/img/features/08-services.svg
new file mode 100644
index 0000000..4ebf8fb
--- /dev/null
+++ b/public/img/features/08-services.svg
@@ -0,0 +1,5 @@
+<svg width="49" height="48" viewBox="0 0 49 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M19.6791 2C19.6791 0.895432 20.5745 0 21.6791 0H27.6531C28.7577 0 29.6531 0.895431 29.6531 2V3.6423C31.8999 4.15617 34.0086 5.03241 35.9144 6.20627L36.9661 5.15449C37.7472 4.37344 39.0135 4.37344 39.7946 5.15449L43.6754 9.03535C44.4565 9.8164 44.4565 11.0827 43.6754 11.8638L42.658 12.8812C43.778 14.6584 44.6375 16.6164 45.1828 18.7014H46.9778C48.0824 18.7014 48.9778 19.5968 48.9778 20.7014V26.6754C48.9778 27.78 48.0824 28.6754 46.9778 28.6754H45.3355C44.8217 30.9222 43.9454 33.0309 42.7715 34.9367L43.8233 35.9884C44.6043 36.7695 44.6043 38.0358 43.8233 38.8169L39.9424 42.6977C39.1614 43.4788 37.895 43.4788 37.114 42.6977L36.0966 41.6803C34.1433 42.9113 31.9717 43.8275 29.6531 44.3578V46C29.6531 47.1046 28.7577 48 27.6531 48H21.6791C20.5745 48 19.6791 47.1046 19.6791 46V44.205C17.5941 43.6598 15.6362 42.8003 13.859 41.6803L12.5627 42.9765C11.7817 43.7575 10.5154 43.7575 9.73431 42.9765L5.85344 39.0956C5.07239 38.3146 5.07239 37.0482 5.85344 36.2672L7.18402 34.9366C6.01017 33.0308 5.13393 30.9222 4.62006 28.6754H2.97778C1.87321 28.6754 0.977783 27.78 0.977783 26.6754V20.7014C0.977783 19.5968 1.87321 18.7014 2.97778 18.7014H4.77281C5.31808 16.6164 6.17754 14.6585 7.29756 12.8813L6.00131 11.585C5.22026 10.804 5.22026 9.53763 6.00131 8.75659L9.88217 4.87572C10.6632 4.09467 11.9295 4.09467 12.7106 4.87572L14.0412 6.20631C15.7697 5.14163 17.6651 4.32177 19.6791 3.79506V2Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M27.6531 5.23652L27.6531 2L21.6791 2V5.33928L20.1851 5.72999C18.3658 6.20579 16.653 6.94653 15.0901 7.9092L13.7445 8.73802L11.2964 6.28993L7.41552 10.1708L9.84111 12.5964L8.98958 13.9476C7.97682 15.5546 7.2003 17.324 6.70773 19.2074L6.31702 20.7014H2.97778L2.97778 26.6754H6.21428L6.56972 28.2295C7.03393 30.2591 7.82556 32.1646 8.88692 33.8877L9.71572 35.2333L7.26766 37.6814L11.1485 41.5623L13.5741 39.1367L14.9253 39.9882C16.5323 41.001 18.3017 41.7775 20.1851 42.2701L21.6791 42.6608L21.6791 46H27.6531V42.7636L29.2072 42.4081C31.3018 41.9291 33.2641 41.1013 35.0303 39.9883L36.3815 39.1367L38.5282 41.2835L42.4091 37.4026L40.2398 35.2334L41.0687 33.8878C42.13 32.1646 42.9217 30.2592 43.3859 28.2295L43.7413 26.6754H46.9778V20.7014H43.6386L43.2479 19.2074C42.7553 17.324 41.9788 15.5546 40.966 13.9475L40.1144 12.5963L42.2612 10.4496L38.3804 6.5687L36.2111 8.73797L34.8655 7.90916C33.1423 6.8478 31.2369 6.05617 29.2072 5.59196L27.6531 5.23652ZM29.6531 3.6423V2C29.6531 0.895431 28.7577 0 27.6531 0H21.6791C20.5745 0 19.6791 0.895432 19.6791 2V3.79506C17.6651 4.32177 15.7697 5.14163 14.0412 6.20631L12.7106 4.87572C11.9295 4.09467 10.6632 4.09467 9.88217 4.87572L6.00131 8.75659C5.22026 9.53763 5.22026 10.804 6.00131 11.585L7.29756 12.8813C6.17754 14.6585 5.31808 16.6164 4.77281 18.7014H2.97778C1.87321 18.7014 0.977783 19.5968 0.977783 20.7014V26.6754C0.977783 27.78 1.87321 28.6754 2.97778 28.6754H4.62006C5.13393 30.9222 6.01017 33.0308 7.18402 34.9366L5.85344 36.2672C5.07239 37.0482 5.07239 38.3146 5.85344 39.0956L9.73431 42.9765C10.5154 43.7575 11.7817 43.7575 12.5627 42.9765L13.859 41.6803C15.6362 42.8003 17.5941 43.6598 19.6791 44.205V46C19.6791 47.1046 20.5745 48 21.6791 48H27.6531C28.7577 48 29.6531 47.1046 29.6531 46V44.3578C31.9717 43.8275 34.1433 42.9113 36.0966 41.6803L37.114 42.6977C37.895 43.4788 39.1614 43.4788 39.9424 42.6977L43.8233 38.8169C44.6043 38.0358 44.6043 36.7695 43.8233 35.9884L42.7715 34.9367C43.9454 33.0309 44.8217 30.9222 45.3355 28.6754H46.9778C48.0824 28.6754 48.9778 27.78 48.9778 26.6754V20.7014C48.9778 19.5968 48.0824 18.7014 46.9778 18.7014H45.1828C44.6375 16.6164 43.778 14.6584 42.658 12.8812L43.6754 11.8638C44.4565 11.0827 44.4565 9.8164 43.6754 9.03535L39.7946 5.15449C39.0135 4.37344 37.7472 4.37344 36.9661 5.15449L35.9144 6.20627C34.0086 5.03241 31.8999 4.15617 29.6531 3.6423Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M24.9778 35.753C31.7665 35.753 37.2699 30.2496 37.2699 23.4608C37.2699 16.6721 31.7665 11.1687 24.9778 11.1687C18.189 11.1687 12.6856 16.6721 12.6856 23.4608C12.6856 30.2496 18.189 35.753 24.9778 35.753ZM24.9778 37.753C32.8711 37.753 39.2699 31.3542 39.2699 23.4608C39.2699 15.5675 32.8711 9.1687 24.9778 9.1687C17.0844 9.1687 10.6856 15.5675 10.6856 23.4608C10.6856 31.3542 17.0844 37.753 24.9778 37.753Z" fill="black"/>
+</svg>
diff --git a/public/img/features/09-streaming.svg b/public/img/features/09-streaming.svg
new file mode 100644
index 0000000..f33715f
--- /dev/null
+++ b/public/img/features/09-streaming.svg
@@ -0,0 +1,9 @@
+<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M43.2409 38.5939C46.2301 34.6368 48 29.7267 48 24.4079C48 18.9984 46.1693 14.0116 43.0869 10.0203L41.699 11.5303C44.3856 15.1339 45.9733 19.5876 45.9733 24.4079C45.9733 29.1372 44.445 33.5136 41.8499 37.0805L43.2409 38.5939Z" fill="black"/>
+<path d="M6.60691 37.6861L5.22451 39.1901C1.95446 35.1351 0 29.9972 0 24.4079C0 18.7283 2.0181 13.5148 5.38398 9.43005L6.76388 10.9313C3.79772 14.6349 2.02667 19.3169 2.02667 24.4079C2.02667 29.4084 3.73534 34.0143 6.60691 37.6861Z" fill="black"/>
+<path d="M38.4458 34.0462C40.402 31.2274 41.5467 27.815 41.5467 24.1382C41.5467 20.4614 40.402 17.0489 38.4458 14.2302L37.0401 15.7595C38.6097 18.1767 39.52 21.0524 39.52 24.1382C39.52 27.224 38.6097 30.0996 37.0401 32.5169L38.4458 34.0462Z" fill="black"/>
+<path d="M10.5866 32.5169L9.18086 34.0463C7.22465 31.2275 6.07999 27.815 6.07999 24.1382C6.07999 20.4614 7.22465 17.0489 9.18086 14.2301L10.5866 15.7595C9.01697 18.1767 8.10665 21.0523 8.10665 24.1382C8.10665 27.224 9.01697 30.0997 10.5866 32.5169Z" fill="black"/>
+<path d="M19.3107 14.9587C19.3107 14.9587 7.72807 21.8531 18.6441 28.6988C20.744 30.0321 28.3602 33.7395 28.1436 37.1704C28.1436 37.1704 32.76 30.5037 26.0103 26.3085C19.0774 22.0158 17.3442 17.4303 19.3107 14.9587Z" fill="#ED1C24"/>
+<path d="M15.2773 28.1295C15.2773 28.1295 11.1442 34.2434 19.2771 35.4955C20.077 35.593 25.96 36.1947 27.4933 38.0809C27.4933 38.0809 27.3599 34.8288 22.5602 32.9101C17.7772 30.9913 15.8106 30.5198 15.2773 28.1295Z" fill="#ED1C24"/>
+<path d="M31.2767 21.7067C26.3103 16.6334 24.9271 13.4952 27.0603 9.43005C27.0603 9.43005 12.2445 14.9911 26.8769 24.8612C32.11 28.3897 31.2434 31.9995 31.2434 32.1296C32.06 31.3003 36.2431 26.7799 31.2767 21.7067Z" fill="#ED1C24"/>
+</svg>
diff --git a/public/img/features/10-continuous-queries.svg b/public/img/features/10-continuous-queries.svg
new file mode 100644
index 0000000..e5dfc89
--- /dev/null
+++ b/public/img/features/10-continuous-queries.svg
@@ -0,0 +1,11 @@
+<svg width="49" height="48" viewBox="0 0 49 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g clip-path="url(#clip0)">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M26.4449 17.5175C28.8188 13.6474 32.4912 12.1409 36.6924 12.1409C43.4987 12.1409 49.0244 17.5805 49.0244 24.3007C49.0244 31.0208 43.4987 36.4605 36.6924 36.4605C32.7856 36.4605 29.3016 34.6678 27.0434 31.8736L26.8552 31.6408L28.6636 30.2192L28.8468 30.4459C30.6843 32.7194 33.5148 34.1748 36.6924 34.1748C42.2322 34.1748 46.715 29.7496 46.715 24.3007C46.715 18.8518 42.2322 14.4266 36.6924 14.4266C33.1186 14.4266 30.2887 15.6555 28.419 18.7037C28.3859 18.7577 28.2821 18.9716 28.1229 19.3738C27.9748 19.748 27.8028 20.2232 27.6297 20.7475C27.2803 21.8057 26.9447 23.0082 26.7857 23.9485C26.2374 27.1913 24.5239 30.0987 23.7084 31.1897L23.5339 31.4231L23.5115 31.4069C21.2731 34.4668 17.6239 36.4605 13.5034 36.4605C6.69716 36.4605 1.17145 31.0208 1.17145 24.3007C1.17145 17.5806 6.69716 12.1409 13.5034 12.1409C17.4102 12.1409 20.8943 13.9336 23.1524 16.7277L23.3406 16.9606L21.5322 18.3821L21.349 18.1555C19.5115 15.882 16.681 14.4266 13.5034 14.4266C7.96363 14.4266 3.48085 18.8518 3.48085 24.3007C3.48085 29.7496 7.96363 34.1748 13.5034 34.1748C16.9905 34.1748 20.0608 32.4215 21.8574 29.7583L22.0205 29.5165L22.0572 29.5406C22.794 28.4547 24.0807 26.0986 24.508 23.5712C24.6943 22.4697 25.0689 21.1448 25.4345 20.0375C25.6189 19.4791 25.8057 18.9619 25.9725 18.5402C26.1286 18.1459 26.2958 17.7606 26.4449 17.5175Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M22.5042 12.6729C22.5042 12.0378 23.0251 11.53 23.6589 11.53C24.2927 11.53 24.8136 12.0378 24.8136 12.6729V18.6051C24.8136 19.2401 24.2927 19.7479 23.6589 19.7479H16.7844C16.1506 19.7479 15.6297 19.2401 15.6297 18.6051C15.6297 17.9701 16.1506 17.4622 16.7844 17.4622H22.5042V12.6729Z" fill="#FF1019"/>
+</g>
+<defs>
+<clipPath id="clip0">
+<rect width="48" height="48" fill="white" transform="translate(0.971436)"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/public/img/features/11-messaging.svg b/public/img/features/11-messaging.svg
new file mode 100644
index 0000000..4d4ac6f
--- /dev/null
+++ b/public/img/features/11-messaging.svg
@@ -0,0 +1,12 @@
+<svg width="49" height="48" viewBox="0 0 49 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M12.3896 20.8024C12.3896 25.0439 15.8281 28.4824 20.0696 28.4824L39.1043 28.4824C40.5958 28.4824 42.0551 28.9167 43.3039 29.7323L48.9221 33.4017V7.67988C48.9221 3.43833 45.4837 -0.000133514 41.2421 -0.000133514L20.0696 -0.000133514C15.8281 -0.000133514 12.3896 3.43832 12.3896 7.67987L12.3896 20.8024Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M48.9221 33.4017L43.3039 29.7323C42.0551 28.9167 40.5958 28.4824 39.1043 28.4824L20.0696 28.4824C15.8281 28.4824 12.3896 25.0439 12.3896 20.8024L12.3896 7.67987C12.3896 3.43832 15.8281 -0.000133514 20.0696 -0.000133514L41.2421 -0.000133514C45.4837 -0.000133514 48.9221 3.43833 48.9221 7.67988V33.4017ZM47.0021 29.8545L44.3538 28.1248C42.7928 27.1053 40.9687 26.5624 39.1043 26.5624L20.0696 26.5624C16.8885 26.5624 14.3096 23.9836 14.3096 20.8024L14.3096 7.67987C14.3096 4.49871 16.8885 1.91987 20.0696 1.91987L41.2421 1.91987C44.4233 1.91987 47.0021 4.49871 47.0021 7.67988V29.8545Z" fill="black"/>
+<path d="M36.315 28.086C36.315 23.8445 32.8765 20.406 28.635 20.406L10.505 20.406C9.01348 20.406 7.55421 19.9717 6.30541 19.1561L0.922131 15.6401V40.32C0.922131 44.5616 4.36058 48 8.60213 48H28.635C32.8765 48 36.315 44.5616 36.315 40.32V28.086Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M0.922131 15.6401L6.30541 19.1561C7.55421 19.9717 9.01348 20.406 10.505 20.406L28.635 20.406C32.8765 20.406 36.315 23.8445 36.315 28.086V40.32C36.315 44.5616 32.8765 48 28.635 48H8.60213C4.36058 48 0.922131 44.5616 0.922131 40.32V15.6401ZM2.84213 19.1874L5.25551 20.7636C6.8165 21.7831 8.64059 22.326 10.505 22.326L28.635 22.326C31.8162 22.326 34.395 24.9049 34.395 28.086V40.32C34.395 43.5012 31.8162 46.08 28.635 46.08H8.60213C5.42097 46.08 2.84213 43.5012 2.84213 40.32V19.1874Z" fill="#F41921"/>
+<path d="M14.0814 34.2101C14.0814 35.3312 13.1859 36.2401 12.0813 36.2401C10.9767 36.2401 10.0812 35.3312 10.0812 34.2101C10.0812 33.0889 10.9767 32.1801 12.0813 32.1801C13.1859 32.1801 14.0814 33.0889 14.0814 34.2101Z" fill="#F41921"/>
+<path d="M26.5379 14.671C26.5379 15.7922 25.6424 16.7011 24.5378 16.7011C23.4332 16.7011 22.5378 15.7922 22.5378 14.671C22.5378 13.5499 23.4332 12.641 24.5378 12.641C25.6424 12.641 26.5379 13.5499 26.5379 14.671Z" fill="black"/>
+<path d="M20.6187 34.2101C20.6187 35.3312 19.7233 36.2401 18.6187 36.2401C17.514 36.2401 16.6186 35.3312 16.6186 34.2101C16.6186 33.0889 17.514 32.1801 18.6187 32.1801C19.7233 32.1801 20.6187 33.0889 20.6187 34.2101Z" fill="#F41921"/>
+<path d="M33.0751 14.671C33.0751 15.7922 32.1797 16.7011 31.0751 16.7011C29.9705 16.7011 29.075 15.7922 29.075 14.671C29.075 13.5499 29.9705 12.641 31.0751 12.641C32.1797 12.641 33.0751 13.5499 33.0751 14.671Z" fill="black"/>
+<path d="M27.1561 34.2101C27.1561 35.3312 26.2607 36.2401 25.1561 36.2401C24.0515 36.2401 23.156 35.3312 23.156 34.2101C23.156 33.0889 24.0515 32.1801 25.1561 32.1801C26.2607 32.1801 27.1561 33.0889 27.1561 34.2101Z" fill="#F41921"/>
+<path d="M39.6126 14.671C39.6126 15.7922 38.7172 16.7011 37.6125 16.7011C36.5079 16.7011 35.6125 15.7922 35.6125 14.671C35.6125 13.5499 36.5079 12.641 37.6125 12.641C38.7172 12.641 39.6126 13.5499 39.6126 14.671Z" fill="black"/>
+</svg>
diff --git a/public/img/features/acid/acid-func.svg b/public/img/features/acid/acid-func.svg
new file mode 100644
index 0000000..b23e2b9
--- /dev/null
+++ b/public/img/features/acid/acid-func.svg
@@ -0,0 +1,164 @@
+<svg width="546" height="603" viewBox="0 0 546 603" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="546" height="603" rx="10" fill="#F6F6F6"/>
+<path d="M124.207 71.6557C124.207 66.8753 128.082 63 132.862 63H416.63C421.411 63 425.286 66.8753 425.286 71.6557V201.113C425.286 205.894 421.411 209.769 416.63 209.769H132.862C128.082 209.769 124.207 205.894 124.207 201.113V71.6557Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M416.63 64.7311H132.862C129.038 64.7311 125.938 67.8314 125.938 71.6557V201.113C125.938 204.937 129.038 208.038 132.862 208.038H416.63C420.455 208.038 423.555 204.937 423.555 201.113V71.6557C423.555 67.8314 420.455 64.7311 416.63 64.7311ZM132.862 63C128.082 63 124.207 66.8753 124.207 71.6557V201.113C124.207 205.894 128.082 209.769 132.862 209.769H416.63C421.411 209.769 425.286 205.894 425.286 201.113V71.6557C425.286 66.8753 421.411 63 416.63 63H132.862Z" fill="black"/>
+<path d="M113.265 84.2978C113.265 79.5174 117.14 75.6421 121.921 75.6421H404.501C409.282 75.6421 413.157 79.5174 413.157 84.2978V221.622C413.157 226.402 409.282 230.278 404.501 230.278H121.921C117.14 230.278 113.265 226.402 113.265 221.622V84.2978Z" fill="#2D2D2D"/>
+<path d="M132.595 108.233H134.243V106.862L135.323 106.557V108.233H139.021V109.161H135.323V112.429C135.323 113.103 135.485 113.602 135.808 113.925C136.14 114.248 136.611 114.41 137.22 114.41C137.636 114.41 137.996 114.331 138.301 114.174C138.615 114.017 138.896 113.846 139.145 113.662L139.506 114.479C139.182 114.737 138.795 114.945 138.342 115.102C137.899 115.259 137.442 115.337 136.971 115.337C136.602 115.337 136.251 115.282 135.919 115.171C135.595 115.07 135.309 114.908 135.06 114.687C134.811 114.465 134.612 114.183 134.464 113.842C134.317 113.491 134.243 113.075 134.243 112.595V109.161H132.595V108.233Z" fill="white"/>
+<path d="M144.493 111.612L141.82 108.233H143.205L145.199 110.836L147.249 108.233H148.495L145.822 111.557L148.661 115.157H147.332L145.13 112.318L142.886 115.157H141.626L144.493 111.612Z" fill="white"/>
+<path d="M153.039 114.396C153.039 114.1 153.122 113.874 153.288 113.717C153.455 113.551 153.676 113.468 153.953 113.468C154.249 113.468 154.479 113.551 154.646 113.717C154.812 113.874 154.895 114.1 154.895 114.396C154.895 114.663 154.812 114.885 154.646 115.06C154.479 115.236 154.249 115.324 153.953 115.324C153.676 115.324 153.455 115.236 153.288 115.06C153.122 114.885 153.039 114.663 153.039 114.396Z" fill="white"/>
+<path d="M164.702 113.288C164.702 112.992 164.586 112.766 164.355 112.609C164.125 112.443 163.838 112.314 163.497 112.221C163.155 112.12 162.781 112.028 162.375 111.944C161.978 111.861 161.609 111.751 161.267 111.612C160.925 111.474 160.639 111.289 160.408 111.058C160.178 110.818 160.062 110.486 160.062 110.061C160.062 109.71 160.136 109.41 160.284 109.161C160.441 108.911 160.644 108.708 160.893 108.551C161.142 108.385 161.433 108.265 161.766 108.191C162.098 108.108 162.444 108.067 162.804 108.067C163.451 108.067 164.005 108.15 164.466 108.316C164.937 108.473 165.311 108.639 165.588 108.815L165.145 109.687C164.84 109.521 164.508 109.364 164.148 109.216C163.797 109.059 163.354 108.981 162.818 108.981C162.615 108.981 162.412 109.004 162.209 109.05C162.015 109.087 161.835 109.147 161.669 109.23C161.512 109.313 161.382 109.424 161.281 109.562C161.189 109.692 161.142 109.853 161.142 110.047C161.142 110.287 161.258 110.472 161.489 110.601C161.719 110.73 162.006 110.841 162.347 110.933C162.689 111.017 163.058 111.1 163.455 111.183C163.861 111.257 164.235 111.367 164.577 111.515C164.919 111.663 165.205 111.861 165.436 112.111C165.666 112.36 165.782 112.697 165.782 113.122C165.782 113.759 165.528 114.285 165.02 114.7C164.522 115.116 163.769 115.324 162.763 115.324C162.458 115.324 162.158 115.296 161.863 115.24C161.567 115.185 161.29 115.111 161.032 115.019C160.773 114.927 160.538 114.825 160.325 114.714C160.113 114.594 159.938 114.474 159.799 114.354L160.353 113.454C160.464 113.565 160.612 113.68 160.796 113.8C160.981 113.911 161.184 114.013 161.406 114.105C161.627 114.197 161.863 114.271 162.112 114.326C162.37 114.382 162.629 114.41 162.887 114.41C163.137 114.41 163.367 114.391 163.58 114.354C163.801 114.308 163.995 114.243 164.162 114.16C164.328 114.068 164.457 113.953 164.549 113.814C164.651 113.666 164.702 113.491 164.702 113.288Z" fill="white"/>
+<path d="M167.888 108.233H169.536V106.862L170.617 106.557V108.233H174.314V109.161H170.617V112.429C170.617 113.103 170.778 113.602 171.101 113.925C171.434 114.248 171.905 114.41 172.514 114.41C172.93 114.41 173.29 114.331 173.594 114.174C173.908 114.017 174.19 113.846 174.439 113.662L174.799 114.479C174.476 114.737 174.088 114.945 173.636 115.102C173.193 115.259 172.736 115.337 172.265 115.337C171.895 115.337 171.545 115.282 171.212 115.171C170.889 115.07 170.603 114.908 170.354 114.687C170.104 114.465 169.906 114.183 169.758 113.842C169.61 113.491 169.536 113.075 169.536 112.595V109.161H167.888V108.233Z" fill="white"/>
+<path d="M177.778 108.773C178.175 108.542 178.623 108.376 179.122 108.274C179.62 108.173 180.11 108.122 180.59 108.122C181.06 108.122 181.444 108.196 181.739 108.344C182.044 108.491 182.279 108.685 182.445 108.925C182.621 109.156 182.736 109.424 182.792 109.729C182.856 110.024 182.889 110.324 182.889 110.629C182.889 110.98 182.879 111.354 182.861 111.751C182.842 112.148 182.829 112.545 182.819 112.942C182.819 113.403 182.847 113.842 182.902 114.257H183.83V115.157H181.988L181.864 114.119H181.794C181.739 114.202 181.656 114.308 181.545 114.437C181.434 114.567 181.287 114.696 181.102 114.825C180.927 114.945 180.71 115.051 180.451 115.144C180.193 115.236 179.888 115.282 179.537 115.282C178.854 115.282 178.314 115.107 177.917 114.756C177.52 114.405 177.321 113.925 177.321 113.315C177.321 112.845 177.423 112.452 177.626 112.138C177.838 111.824 178.138 111.584 178.526 111.418C178.914 111.252 179.38 111.155 179.925 111.127C180.479 111.1 181.097 111.137 181.781 111.238C181.827 110.813 181.831 110.463 181.794 110.186C181.767 109.899 181.693 109.673 181.573 109.507C181.462 109.341 181.301 109.225 181.088 109.161C180.885 109.087 180.631 109.05 180.326 109.05C179.911 109.05 179.514 109.11 179.135 109.23C178.757 109.341 178.42 109.456 178.124 109.576L177.778 108.773ZM179.814 114.354C180.073 114.354 180.313 114.313 180.534 114.23C180.756 114.146 180.95 114.04 181.116 113.911C181.282 113.782 181.421 113.643 181.531 113.496C181.642 113.339 181.725 113.191 181.781 113.052V112.083C181.301 112 180.857 111.958 180.451 111.958C180.045 111.958 179.694 112.004 179.399 112.097C179.103 112.18 178.872 112.314 178.706 112.498C178.54 112.683 178.457 112.923 178.457 113.219C178.457 113.523 178.558 113.791 178.762 114.022C178.974 114.243 179.325 114.354 179.814 114.354Z" fill="white"/>
+<path d="M186.02 115.157V114.23H187.89V109.161H186.02V108.233H188.61L188.831 109.133H188.901C189.215 108.847 189.565 108.602 189.953 108.399C190.341 108.196 190.803 108.094 191.338 108.094C191.652 108.094 191.901 108.154 192.086 108.274C192.28 108.394 192.428 108.57 192.529 108.801C192.64 109.031 192.714 109.313 192.751 109.645C192.788 109.969 192.806 110.338 192.806 110.753L191.837 110.767C191.837 110.176 191.777 109.742 191.657 109.465C191.546 109.188 191.338 109.05 191.033 109.05C190.747 109.05 190.489 109.091 190.258 109.175C190.027 109.258 189.824 109.359 189.648 109.479C189.482 109.599 189.339 109.719 189.219 109.839C189.099 109.959 189.011 110.061 188.956 110.144V114.23H191.615V115.157H186.02Z" fill="white"/>
+<path d="M194.359 108.233H196.007V106.862L197.087 106.557V108.233H200.785V109.161H197.087V112.429C197.087 113.103 197.249 113.602 197.572 113.925C197.904 114.248 198.375 114.41 198.984 114.41C199.4 114.41 199.76 114.331 200.065 114.174C200.378 114.017 200.66 113.846 200.909 113.662L201.269 114.479C200.946 114.737 200.558 114.945 200.106 115.102C199.663 115.259 199.206 115.337 198.735 115.337C198.366 115.337 198.015 115.282 197.682 115.171C197.359 115.07 197.073 114.908 196.824 114.687C196.575 114.465 196.376 114.183 196.228 113.842C196.081 113.491 196.007 113.075 196.007 112.595V109.161H194.359V108.233Z" fill="white"/>
+<path d="M208.736 118.093C208.117 117.936 207.535 117.701 206.991 117.387C206.455 117.082 205.984 116.681 205.578 116.182C205.181 115.684 204.862 115.074 204.622 114.354C204.392 113.634 204.276 112.78 204.276 111.792C204.276 110.813 204.396 109.959 204.636 109.23C204.876 108.491 205.199 107.868 205.606 107.36C206.012 106.843 206.483 106.432 207.018 106.128C207.563 105.814 208.135 105.592 208.736 105.463L209.082 106.336C208.537 106.492 208.039 106.7 207.586 106.959C207.134 107.208 206.741 107.545 206.409 107.97C206.086 108.385 205.832 108.907 205.647 109.535C205.472 110.153 205.384 110.906 205.384 111.792C205.384 112.688 205.49 113.454 205.703 114.091C205.924 114.719 206.21 115.24 206.561 115.656C206.921 116.081 207.318 116.408 207.752 116.639C208.195 116.879 208.639 117.046 209.082 117.138L208.736 118.093Z" fill="white"/>
+<path d="M213.557 117.138C214 117.046 214.438 116.879 214.872 116.639C215.315 116.408 215.712 116.081 216.063 115.656C216.423 115.24 216.71 114.719 216.922 114.091C217.144 113.454 217.254 112.688 217.254 111.792C217.254 110.906 217.162 110.153 216.977 109.535C216.802 108.907 216.548 108.385 216.216 107.97C215.892 107.545 215.505 107.208 215.052 106.959C214.6 106.7 214.101 106.492 213.557 106.336L213.903 105.463C214.503 105.592 215.071 105.814 215.606 106.128C216.151 106.432 216.626 106.843 217.033 107.36C217.439 107.868 217.762 108.491 218.002 109.23C218.242 109.959 218.362 110.813 218.362 111.792C218.362 112.78 218.242 113.634 218.002 114.354C217.771 115.074 217.453 115.684 217.047 116.182C216.65 116.681 216.179 117.082 215.634 117.387C215.098 117.701 214.521 117.936 213.903 118.093L213.557 117.138Z" fill="white"/>
+<path d="M223.571 114.396C223.571 114.119 223.659 113.897 223.834 113.731C224.019 113.556 224.254 113.468 224.54 113.468C224.891 113.468 225.164 113.592 225.358 113.842C225.551 114.082 225.648 114.423 225.648 114.867C225.648 115.227 225.588 115.541 225.468 115.808C225.348 116.085 225.196 116.316 225.011 116.501C224.836 116.695 224.642 116.847 224.43 116.958C224.227 117.078 224.037 117.166 223.862 117.221L223.516 116.681C223.848 116.552 224.134 116.367 224.374 116.127C224.614 115.887 224.734 115.596 224.734 115.254C224.605 115.282 224.504 115.296 224.43 115.296C224.162 115.296 223.95 115.222 223.793 115.074C223.645 114.917 223.571 114.691 223.571 114.396ZM223.696 108.953C223.696 108.658 223.779 108.431 223.945 108.274C224.111 108.108 224.333 108.025 224.61 108.025C224.905 108.025 225.136 108.108 225.302 108.274C225.468 108.431 225.551 108.658 225.551 108.953C225.551 109.221 225.468 109.442 225.302 109.618C225.136 109.793 224.905 109.881 224.61 109.881C224.333 109.881 224.111 109.793 223.945 109.618C223.779 109.442 223.696 109.221 223.696 108.953Z" fill="white"/>
+<path d="M133.495 134.593C133.495 134.51 133.49 134.404 133.481 134.275C133.481 134.136 133.477 133.998 133.467 133.859C133.458 133.711 133.444 133.568 133.426 133.43C133.417 133.291 133.403 133.171 133.384 133.07H132.456V132.17H134.298L134.437 133.139H134.506C134.755 132.816 135.069 132.548 135.448 132.336C135.836 132.114 136.306 132.003 136.86 132.003C137.848 132.003 138.591 132.276 139.09 132.821C139.589 133.365 139.838 134.256 139.838 135.493C139.838 136.075 139.75 136.601 139.575 137.072C139.409 137.534 139.169 137.926 138.855 138.249C138.541 138.573 138.162 138.822 137.719 138.997C137.276 139.173 136.786 139.26 136.251 139.26C136.057 139.26 135.882 139.251 135.725 139.233C135.577 139.223 135.439 139.205 135.309 139.177C135.189 139.159 135.069 139.131 134.949 139.094C134.829 139.057 134.7 139.011 134.561 138.956V141.864H133.495V134.593ZM136.68 133.014C136.403 133.014 136.14 133.065 135.891 133.167C135.651 133.268 135.434 133.402 135.24 133.568C135.055 133.735 134.903 133.919 134.783 134.122C134.663 134.325 134.589 134.529 134.561 134.732V137.889C134.765 138.028 134.991 138.139 135.24 138.222C135.499 138.296 135.836 138.332 136.251 138.332C136.99 138.332 137.581 138.092 138.024 137.612C138.467 137.123 138.688 136.412 138.688 135.48C138.688 134.695 138.531 134.09 138.218 133.665C137.913 133.231 137.4 133.014 136.68 133.014Z" fill="white"/>
+<path d="M146.016 132.17H147.983V136.892C147.983 137.345 148.01 137.778 148.066 138.194H148.994V139.094H147.152L147.11 137.917H147.055C146.815 138.314 146.496 138.637 146.099 138.886C145.702 139.136 145.222 139.26 144.659 139.26C144.234 139.26 143.87 139.21 143.565 139.108C143.269 139.016 143.025 138.849 142.831 138.609C142.637 138.369 142.494 138.051 142.402 137.654C142.309 137.248 142.263 136.744 142.263 136.144V133.097H141.335V132.17H143.343V135.923C143.343 136.301 143.357 136.643 143.385 136.948C143.422 137.243 143.491 137.497 143.593 137.709C143.694 137.912 143.842 138.069 144.036 138.18C144.239 138.282 144.507 138.332 144.839 138.332C145.319 138.332 145.735 138.176 146.085 137.862C146.445 137.548 146.718 137.155 146.902 136.684V133.097H146.016V132.17Z" fill="white"/>
+<path d="M150.242 132.17H151.89V130.799L152.97 130.494V132.17H156.668V133.097H152.97V136.366C152.97 137.04 153.131 137.538 153.455 137.862C153.787 138.185 154.258 138.346 154.867 138.346C155.283 138.346 155.643 138.268 155.947 138.111C156.261 137.954 156.543 137.783 156.792 137.598L157.152 138.416C156.829 138.674 156.441 138.882 155.989 139.039C155.546 139.196 155.089 139.274 154.618 139.274C154.249 139.274 153.898 139.219 153.565 139.108C153.242 139.006 152.956 138.845 152.707 138.623C152.458 138.402 152.259 138.12 152.111 137.778C151.964 137.428 151.89 137.012 151.89 136.532V133.097H150.242V132.17Z" fill="white"/>
+<path d="M173.442 142.03C172.823 141.873 172.242 141.638 171.697 141.324C171.161 141.019 170.691 140.618 170.284 140.119C169.887 139.62 169.569 139.011 169.329 138.291C169.098 137.571 168.983 136.717 168.983 135.729C168.983 134.75 169.103 133.896 169.343 133.167C169.583 132.428 169.906 131.805 170.312 131.297C170.718 130.78 171.189 130.369 171.725 130.065C172.269 129.751 172.842 129.529 173.442 129.4L173.788 130.272C173.243 130.429 172.745 130.637 172.292 130.895C171.84 131.145 171.448 131.482 171.115 131.906C170.792 132.322 170.538 132.844 170.354 133.471C170.178 134.09 170.09 134.842 170.09 135.729C170.09 136.624 170.197 137.391 170.409 138.028C170.631 138.656 170.917 139.177 171.268 139.593C171.628 140.017 172.025 140.345 172.459 140.576C172.902 140.816 173.345 140.982 173.788 141.075L173.442 142.03Z" fill="white"/>
+<path d="M177.778 132.71C178.175 132.479 178.623 132.313 179.122 132.211C179.62 132.11 180.11 132.059 180.59 132.059C181.06 132.059 181.444 132.133 181.739 132.28C182.044 132.428 182.279 132.622 182.445 132.862C182.621 133.093 182.736 133.361 182.792 133.665C182.856 133.961 182.889 134.261 182.889 134.565C182.889 134.916 182.879 135.29 182.861 135.687C182.842 136.084 182.829 136.481 182.819 136.878C182.819 137.34 182.847 137.778 182.902 138.194H183.83V139.094H181.988L181.864 138.055H181.795C181.739 138.139 181.656 138.245 181.545 138.374C181.434 138.503 181.287 138.633 181.102 138.762C180.927 138.882 180.71 138.988 180.451 139.08C180.193 139.173 179.888 139.219 179.537 139.219C178.854 139.219 178.314 139.043 177.917 138.693C177.52 138.342 177.321 137.862 177.321 137.252C177.321 136.781 177.423 136.389 177.626 136.075C177.838 135.761 178.138 135.521 178.526 135.355C178.914 135.189 179.38 135.092 179.925 135.064C180.479 135.036 181.097 135.073 181.781 135.175C181.827 134.75 181.831 134.399 181.795 134.122C181.767 133.836 181.693 133.61 181.573 133.444C181.462 133.278 181.301 133.162 181.088 133.097C180.885 133.024 180.631 132.987 180.326 132.987C179.911 132.987 179.514 133.047 179.135 133.167C178.757 133.278 178.42 133.393 178.124 133.513L177.778 132.71ZM179.814 138.291C180.073 138.291 180.313 138.249 180.534 138.166C180.756 138.083 180.95 137.977 181.116 137.848C181.282 137.718 181.421 137.58 181.531 137.432C181.642 137.275 181.725 137.128 181.781 136.989V136.02C181.301 135.937 180.857 135.895 180.451 135.895C180.045 135.895 179.694 135.941 179.399 136.034C179.103 136.117 178.872 136.25 178.706 136.435C178.54 136.62 178.457 136.86 178.457 137.155C178.457 137.46 178.558 137.728 178.762 137.959C178.974 138.18 179.325 138.291 179.814 138.291Z" fill="white"/>
+<path d="M191.186 133.236C190.973 133.162 190.743 133.102 190.493 133.056C190.253 133.001 190.013 132.973 189.773 132.973C188.868 132.973 188.194 133.185 187.751 133.61C187.308 134.035 187.086 134.709 187.086 135.632C187.086 136.038 187.151 136.403 187.28 136.726C187.41 137.04 187.594 137.308 187.834 137.529C188.074 137.751 188.361 137.922 188.693 138.042C189.034 138.162 189.408 138.222 189.815 138.222C190.249 138.222 190.669 138.148 191.075 138C191.49 137.852 191.837 137.658 192.114 137.418L192.598 138.222C192.469 138.332 192.308 138.448 192.114 138.568C191.92 138.688 191.694 138.803 191.435 138.914C191.186 139.016 190.904 139.099 190.59 139.163C190.286 139.228 189.953 139.26 189.593 139.26C188.993 139.26 188.462 139.177 188 139.011C187.548 138.836 187.169 138.591 186.865 138.277C186.56 137.954 186.329 137.571 186.172 137.128C186.015 136.675 185.937 136.177 185.937 135.632C185.937 135.05 186.015 134.533 186.172 134.081C186.339 133.628 186.574 133.25 186.879 132.945C187.183 132.64 187.553 132.41 187.987 132.253C188.421 132.087 188.905 132.003 189.441 132.003C190.124 132.003 190.678 132.063 191.103 132.183C191.537 132.303 191.901 132.437 192.197 132.585L192.183 132.627V134.552H191.186V133.236Z" fill="white"/>
+<path d="M200.009 133.236C199.797 133.162 199.566 133.102 199.317 133.056C199.077 133.001 198.837 132.973 198.597 132.973C197.692 132.973 197.018 133.185 196.575 133.61C196.131 134.035 195.91 134.709 195.91 135.632C195.91 136.038 195.974 136.403 196.104 136.726C196.233 137.04 196.418 137.308 196.658 137.529C196.898 137.751 197.184 137.922 197.516 138.042C197.858 138.162 198.232 138.222 198.638 138.222C199.072 138.222 199.492 138.148 199.898 138C200.314 137.852 200.66 137.658 200.937 137.418L201.422 138.222C201.292 138.332 201.131 138.448 200.937 138.568C200.743 138.688 200.517 138.803 200.258 138.914C200.009 139.016 199.728 139.099 199.414 139.163C199.109 139.228 198.777 139.26 198.416 139.26C197.816 139.26 197.285 139.177 196.824 139.011C196.371 138.836 195.993 138.591 195.688 138.277C195.384 137.954 195.153 137.571 194.996 137.128C194.839 136.675 194.76 136.177 194.76 135.632C194.76 135.05 194.839 134.533 194.996 134.081C195.162 133.628 195.397 133.25 195.702 132.945C196.007 132.64 196.376 132.41 196.81 132.253C197.244 132.087 197.729 132.003 198.264 132.003C198.947 132.003 199.501 132.063 199.926 132.183C200.36 132.303 200.725 132.437 201.02 132.585L201.006 132.627V134.552H200.009V133.236Z" fill="white"/>
+<path d="M203.542 135.632C203.542 134.515 203.833 133.633 204.415 132.987C204.996 132.331 205.827 132.003 206.908 132.003C207.489 132.003 207.988 132.1 208.403 132.294C208.828 132.479 209.179 132.733 209.456 133.056C209.733 133.379 209.936 133.762 210.065 134.205C210.204 134.649 210.273 135.124 210.273 135.632C210.273 136.186 210.199 136.689 210.051 137.141C209.904 137.585 209.687 137.963 209.4 138.277C209.114 138.591 208.759 138.836 208.334 139.011C207.919 139.177 207.443 139.26 206.908 139.26C206.335 139.26 205.837 139.168 205.412 138.983C204.987 138.789 204.636 138.531 204.359 138.208C204.082 137.885 203.875 137.502 203.736 137.058C203.607 136.615 203.542 136.14 203.542 135.632ZM204.692 135.632C204.692 135.955 204.729 136.278 204.802 136.601C204.886 136.924 205.015 137.215 205.19 137.474C205.366 137.732 205.592 137.94 205.869 138.097C206.155 138.254 206.501 138.332 206.908 138.332C207.646 138.332 208.2 138.106 208.569 137.654C208.948 137.192 209.137 136.518 209.137 135.632C209.137 135.299 209.096 134.976 209.013 134.662C208.939 134.339 208.809 134.048 208.625 133.79C208.449 133.531 208.219 133.324 207.932 133.167C207.655 133.01 207.314 132.931 206.908 132.931C206.169 132.931 205.615 133.158 205.246 133.61C204.876 134.062 204.692 134.736 204.692 135.632Z" fill="white"/>
+<path d="M216.603 132.17H218.57V136.892C218.57 137.345 218.598 137.778 218.653 138.194H219.581V139.094H217.739L217.698 137.917H217.642C217.402 138.314 217.084 138.637 216.687 138.886C216.29 139.136 215.809 139.26 215.246 139.26C214.821 139.26 214.457 139.21 214.152 139.108C213.857 139.016 213.612 138.849 213.418 138.609C213.224 138.369 213.081 138.051 212.989 137.654C212.896 137.248 212.85 136.744 212.85 136.144V133.097H211.922V132.17H213.931V135.923C213.931 136.301 213.944 136.643 213.972 136.948C214.009 137.243 214.078 137.497 214.18 137.709C214.281 137.912 214.429 138.069 214.623 138.18C214.826 138.282 215.094 138.332 215.426 138.332C215.906 138.332 216.322 138.176 216.673 137.862C217.033 137.548 217.305 137.155 217.49 136.684V133.097H216.603V132.17Z" fill="white"/>
+<path d="M221.688 134.593C221.688 134.51 221.683 134.404 221.674 134.275C221.674 134.136 221.669 133.998 221.66 133.859C221.651 133.711 221.637 133.568 221.618 133.43C221.609 133.291 221.595 133.171 221.577 133.07H220.649V132.17H222.505L222.629 133.291H222.699C222.791 133.134 222.911 132.982 223.059 132.834C223.216 132.677 223.396 132.539 223.599 132.419C223.802 132.29 224.028 132.188 224.277 132.114C224.527 132.04 224.79 132.003 225.067 132.003C225.491 132.003 225.865 132.05 226.189 132.142C226.521 132.234 226.793 132.4 227.006 132.64C227.227 132.871 227.393 133.19 227.504 133.596C227.615 133.993 227.67 134.501 227.67 135.119V139.094H226.59V135.327C226.59 134.561 226.466 133.984 226.216 133.596C225.967 133.208 225.515 133.014 224.859 133.014C224.619 133.014 224.384 133.065 224.153 133.167C223.931 133.259 223.728 133.384 223.543 133.541C223.359 133.698 223.197 133.882 223.059 134.095C222.92 134.298 222.819 134.515 222.754 134.746V139.094H221.688V134.593Z" fill="white"/>
+<path d="M229.652 132.17H231.3V130.799L232.381 130.494V132.17H236.078V133.097H232.381V136.366C232.381 137.04 232.542 137.538 232.865 137.862C233.198 138.185 233.669 138.346 234.278 138.346C234.693 138.346 235.053 138.268 235.358 138.111C235.672 137.954 235.954 137.783 236.203 137.598L236.563 138.416C236.24 138.674 235.852 138.882 235.4 139.039C234.957 139.196 234.5 139.274 234.029 139.274C233.659 139.274 233.308 139.219 232.976 139.108C232.653 139.006 232.367 138.845 232.117 138.623C231.868 138.402 231.67 138.12 231.522 137.778C231.374 137.428 231.3 137.012 231.3 136.532V133.097H229.652V132.17Z" fill="white"/>
+<path d="M239.805 138.097H241.98V130.812L239.764 132.363L239.224 131.574L242.27 129.4H243.046V138.097H245.179V139.094H239.805V138.097Z" fill="white"/>
+<path d="M250.041 138.332C250.041 138.055 250.129 137.834 250.304 137.668C250.489 137.492 250.725 137.405 251.011 137.405C251.362 137.405 251.634 137.529 251.828 137.778C252.022 138.019 252.119 138.36 252.119 138.803C252.119 139.163 252.059 139.477 251.939 139.745C251.819 140.022 251.666 140.253 251.482 140.438C251.306 140.631 251.112 140.784 250.9 140.895C250.697 141.015 250.508 141.102 250.332 141.158L249.986 140.618C250.318 140.488 250.604 140.304 250.845 140.064C251.085 139.824 251.205 139.533 251.205 139.191C251.075 139.219 250.974 139.233 250.9 139.233C250.632 139.233 250.42 139.159 250.263 139.011C250.115 138.854 250.041 138.628 250.041 138.332Z" fill="white"/>
+<path d="M264.544 129.4H266.76V132.959H266.829C267.07 132.654 267.379 132.419 267.757 132.253C268.136 132.087 268.547 132.003 268.99 132.003C271.021 132.003 272.037 133.176 272.037 135.521C272.037 136.712 271.709 137.626 271.053 138.263C270.398 138.891 269.465 139.205 268.256 139.205C267.683 139.205 267.166 139.15 266.705 139.039C266.243 138.928 265.906 138.799 265.694 138.651V130.328H264.544V129.4ZM268.851 132.931C268.297 132.931 267.85 133.088 267.508 133.402C267.166 133.716 266.917 134.159 266.76 134.732V137.917C266.973 138.028 267.226 138.115 267.522 138.18C267.817 138.245 268.127 138.277 268.45 138.277C268.819 138.277 269.151 138.226 269.447 138.125C269.752 138.014 270.01 137.848 270.222 137.626C270.435 137.395 270.596 137.105 270.707 136.754C270.827 136.403 270.887 135.987 270.887 135.507C270.887 135.156 270.85 134.824 270.776 134.51C270.703 134.196 270.583 133.924 270.416 133.693C270.259 133.453 270.052 133.268 269.793 133.139C269.535 133.001 269.221 132.931 268.851 132.931Z" fill="white"/>
+<path d="M274.836 132.71C275.233 132.479 275.681 132.313 276.179 132.211C276.678 132.11 277.167 132.059 277.647 132.059C278.118 132.059 278.501 132.133 278.797 132.28C279.101 132.428 279.337 132.622 279.503 132.862C279.678 133.093 279.794 133.361 279.849 133.665C279.914 133.961 279.946 134.261 279.946 134.565C279.946 134.916 279.937 135.29 279.918 135.687C279.9 136.084 279.886 136.481 279.877 136.878C279.877 137.34 279.905 137.778 279.96 138.194H280.888V139.094H279.046L278.921 138.055H278.852C278.797 138.139 278.714 138.245 278.603 138.374C278.492 138.503 278.344 138.633 278.16 138.762C277.984 138.882 277.767 138.988 277.509 139.08C277.25 139.173 276.945 139.219 276.595 139.219C275.911 139.219 275.371 139.043 274.974 138.693C274.577 138.342 274.379 137.862 274.379 137.252C274.379 136.781 274.48 136.389 274.683 136.075C274.896 135.761 275.196 135.521 275.584 135.355C275.971 135.189 276.438 135.092 276.982 135.064C277.536 135.036 278.155 135.073 278.838 135.175C278.884 134.75 278.889 134.399 278.852 134.122C278.824 133.836 278.75 133.61 278.63 133.444C278.52 133.278 278.358 133.162 278.146 133.097C277.943 133.024 277.689 132.987 277.384 132.987C276.969 132.987 276.572 133.047 276.193 133.167C275.814 133.278 275.477 133.393 275.182 133.513L274.836 132.71ZM276.872 138.291C277.13 138.291 277.37 138.249 277.592 138.166C277.813 138.083 278.007 137.977 278.173 137.848C278.34 137.718 278.478 137.58 278.589 137.432C278.7 137.275 278.783 137.128 278.838 136.989V136.02C278.358 135.937 277.915 135.895 277.509 135.895C277.102 135.895 276.752 135.941 276.456 136.034C276.161 136.117 275.93 136.25 275.764 136.435C275.597 136.62 275.514 136.86 275.514 137.155C275.514 137.46 275.616 137.728 275.819 137.959C276.031 138.18 276.382 138.291 276.872 138.291Z" fill="white"/>
+<path d="M283.812 129.4H286.11V136.768C286.11 137.331 286.203 137.728 286.387 137.959C286.581 138.189 286.863 138.305 287.232 138.305C287.491 138.305 287.735 138.259 287.966 138.166C288.206 138.074 288.469 137.917 288.756 137.695L289.254 138.457C289.106 138.586 288.945 138.702 288.77 138.803C288.594 138.905 288.414 138.993 288.229 139.066C288.045 139.131 287.86 139.182 287.675 139.219C287.491 139.256 287.32 139.274 287.163 139.274C286.821 139.274 286.517 139.228 286.249 139.136C285.981 139.053 285.755 138.914 285.57 138.72C285.395 138.526 285.261 138.272 285.169 137.959C285.076 137.635 285.03 137.238 285.03 136.768V130.328H283.812V129.4Z" fill="white"/>
+<path d="M292.483 132.71C292.88 132.479 293.327 132.313 293.826 132.211C294.325 132.11 294.814 132.059 295.294 132.059C295.765 132.059 296.148 132.133 296.443 132.28C296.748 132.428 296.984 132.622 297.15 132.862C297.325 133.093 297.441 133.361 297.496 133.665C297.561 133.961 297.593 134.261 297.593 134.565C297.593 134.916 297.584 135.29 297.565 135.687C297.547 136.084 297.533 136.481 297.524 136.878C297.524 137.34 297.551 137.778 297.607 138.194H298.535V139.094H296.693L296.568 138.055H296.499C296.443 138.139 296.36 138.245 296.25 138.374C296.139 138.503 295.991 138.633 295.806 138.762C295.631 138.882 295.414 138.988 295.155 139.08C294.897 139.173 294.592 139.219 294.241 139.219C293.558 139.219 293.018 139.043 292.621 138.693C292.224 138.342 292.026 137.862 292.026 137.252C292.026 136.781 292.127 136.389 292.33 136.075C292.543 135.761 292.843 135.521 293.23 135.355C293.618 135.189 294.084 135.092 294.629 135.064C295.183 135.036 295.802 135.073 296.485 135.175C296.531 134.75 296.536 134.399 296.499 134.122C296.471 133.836 296.397 133.61 296.277 133.444C296.166 133.278 296.005 133.162 295.793 133.097C295.589 133.024 295.335 132.987 295.031 132.987C294.615 132.987 294.218 133.047 293.84 133.167C293.461 133.278 293.124 133.393 292.829 133.513L292.483 132.71ZM294.518 138.291C294.777 138.291 295.017 138.249 295.239 138.166C295.46 138.083 295.654 137.977 295.82 137.848C295.986 137.718 296.125 137.58 296.236 137.432C296.346 137.275 296.43 137.128 296.485 136.989V136.02C296.005 135.937 295.562 135.895 295.155 135.895C294.749 135.895 294.398 135.941 294.103 136.034C293.807 136.117 293.577 136.25 293.41 136.435C293.244 136.62 293.161 136.86 293.161 137.155C293.161 137.46 293.263 137.728 293.466 137.959C293.678 138.18 294.029 138.291 294.518 138.291Z" fill="white"/>
+<path d="M301.098 134.593C301.098 134.51 301.094 134.404 301.084 134.275C301.084 134.136 301.08 133.998 301.071 133.859C301.061 133.711 301.047 133.568 301.029 133.43C301.02 133.291 301.006 133.171 300.987 133.07H300.06V132.17H301.915L302.04 133.291H302.109C302.202 133.134 302.322 132.982 302.469 132.834C302.626 132.677 302.806 132.539 303.009 132.419C303.213 132.29 303.439 132.188 303.688 132.114C303.937 132.04 304.2 132.003 304.477 132.003C304.902 132.003 305.276 132.05 305.599 132.142C305.932 132.234 306.204 132.4 306.416 132.64C306.638 132.871 306.804 133.19 306.915 133.596C307.026 133.993 307.081 134.501 307.081 135.119V139.094H306.001V135.327C306.001 134.561 305.876 133.984 305.627 133.596C305.378 133.208 304.925 133.014 304.27 133.014C304.03 133.014 303.794 133.065 303.563 133.167C303.342 133.259 303.139 133.384 302.954 133.541C302.769 133.698 302.608 133.882 302.469 134.095C302.331 134.298 302.229 134.515 302.165 134.746V139.094H301.098V134.593Z" fill="white"/>
+<path d="M314.713 133.236C314.501 133.162 314.27 133.102 314.021 133.056C313.781 133.001 313.541 132.973 313.301 132.973C312.396 132.973 311.722 133.185 311.279 133.61C310.836 134.035 310.614 134.709 310.614 135.632C310.614 136.038 310.679 136.403 310.808 136.726C310.937 137.04 311.122 137.308 311.362 137.529C311.602 137.751 311.888 137.922 312.221 138.042C312.562 138.162 312.936 138.222 313.342 138.222C313.776 138.222 314.196 138.148 314.603 138C315.018 137.852 315.364 137.658 315.641 137.418L316.126 138.222C315.997 138.332 315.835 138.448 315.641 138.568C315.447 138.688 315.221 138.803 314.963 138.914C314.713 139.016 314.432 139.099 314.118 139.163C313.813 139.228 313.481 139.26 313.121 139.26C312.521 139.26 311.99 139.177 311.528 139.011C311.076 138.836 310.697 138.591 310.393 138.277C310.088 137.954 309.857 137.571 309.7 137.128C309.543 136.675 309.465 136.177 309.465 135.632C309.465 135.05 309.543 134.533 309.7 134.081C309.866 133.628 310.102 133.25 310.406 132.945C310.711 132.64 311.08 132.41 311.514 132.253C311.948 132.087 312.433 132.003 312.968 132.003C313.652 132.003 314.206 132.063 314.63 132.183C315.064 132.303 315.429 132.437 315.724 132.585L315.711 132.627V134.552H314.713V133.236Z" fill="white"/>
+<path d="M324.783 138.222C324.617 138.369 324.419 138.508 324.188 138.637C323.966 138.766 323.722 138.877 323.454 138.97C323.186 139.062 322.904 139.131 322.609 139.177C322.323 139.233 322.032 139.26 321.736 139.26C321.183 139.26 320.693 139.177 320.268 139.011C319.844 138.836 319.488 138.591 319.202 138.277C318.916 137.954 318.699 137.571 318.551 137.128C318.403 136.684 318.33 136.186 318.33 135.632C318.33 135.05 318.408 134.533 318.565 134.081C318.731 133.628 318.967 133.25 319.271 132.945C319.576 132.64 319.945 132.41 320.379 132.253C320.813 132.087 321.298 132.003 321.833 132.003C322.221 132.003 322.604 132.054 322.983 132.156C323.361 132.257 323.694 132.451 323.98 132.737C324.275 133.014 324.502 133.402 324.659 133.901C324.816 134.39 324.871 135.027 324.825 135.812H319.465C319.465 136.643 319.687 137.266 320.13 137.682C320.582 138.088 321.183 138.291 321.93 138.291C322.18 138.291 322.424 138.263 322.664 138.208C322.914 138.143 323.149 138.069 323.371 137.986C323.592 137.903 323.786 137.811 323.952 137.709C324.128 137.608 324.262 137.515 324.354 137.432L324.783 138.222ZM321.861 132.917C321.556 132.917 321.266 132.95 320.989 133.014C320.721 133.079 320.481 133.19 320.268 133.347C320.065 133.494 319.895 133.693 319.756 133.942C319.627 134.182 319.544 134.482 319.507 134.842H323.814C323.768 134.233 323.569 133.762 323.218 133.43C322.877 133.088 322.424 132.917 321.861 132.917Z" fill="white"/>
+<path d="M328.039 138.097H330.214V130.812L327.998 132.363L327.458 131.574L330.505 129.4H331.28V138.097H333.413V139.094H328.039V138.097Z" fill="white"/>
+<path d="M336.89 134.593H341.627V135.618H336.89V134.593Z" fill="white"/>
+<path d="M345.686 138.097H347.86V130.812L345.645 132.363L345.105 131.574L348.151 129.4H348.927V138.097H351.06V139.094H345.686V138.097Z" fill="white"/>
+<path d="M353.512 134.247C353.512 133.462 353.582 132.76 353.72 132.142C353.859 131.514 354.066 130.988 354.343 130.563C354.62 130.129 354.971 129.801 355.396 129.58C355.821 129.349 356.324 129.234 356.905 129.234C357.524 129.234 358.046 129.344 358.47 129.566C358.904 129.788 359.255 130.111 359.523 130.535C359.791 130.96 359.985 131.486 360.105 132.114C360.225 132.733 360.285 133.444 360.285 134.247C360.285 135.032 360.215 135.738 360.077 136.366C359.938 136.984 359.731 137.511 359.454 137.945C359.177 138.369 358.826 138.697 358.401 138.928C357.976 139.15 357.473 139.26 356.892 139.26C356.282 139.26 355.761 139.14 355.327 138.9C354.902 138.651 354.551 138.305 354.274 137.862C354.006 137.418 353.812 136.892 353.692 136.283C353.572 135.664 353.512 134.986 353.512 134.247ZM359.149 134.247C359.149 133.758 359.121 133.291 359.066 132.848L354.953 136.601C355.11 137.128 355.345 137.548 355.659 137.862C355.973 138.176 356.384 138.332 356.892 138.332C357.704 138.332 358.281 137.995 358.623 137.321C358.974 136.647 359.149 135.623 359.149 134.247ZM354.662 134.247C354.662 134.478 354.667 134.699 354.676 134.912C354.694 135.124 354.713 135.332 354.731 135.535L358.858 131.796C358.701 131.297 358.466 130.9 358.152 130.605C357.847 130.309 357.432 130.161 356.905 130.161C356.084 130.161 355.502 130.503 355.16 131.186C354.828 131.86 354.662 132.881 354.662 134.247Z" fill="white"/>
+<path d="M362.336 134.247C362.336 133.462 362.405 132.76 362.544 132.142C362.682 131.514 362.89 130.988 363.167 130.563C363.444 130.129 363.795 129.801 364.219 129.58C364.644 129.349 365.147 129.234 365.729 129.234C366.347 129.234 366.869 129.344 367.294 129.566C367.728 129.788 368.079 130.111 368.346 130.535C368.614 130.96 368.808 131.486 368.928 132.114C369.048 132.733 369.108 133.444 369.108 134.247C369.108 135.032 369.039 135.738 368.9 136.366C368.762 136.984 368.554 137.511 368.277 137.945C368 138.369 367.649 138.697 367.225 138.928C366.8 139.15 366.297 139.26 365.715 139.26C365.106 139.26 364.584 139.14 364.15 138.9C363.725 138.651 363.375 138.305 363.098 137.862C362.83 137.418 362.636 136.892 362.516 136.283C362.396 135.664 362.336 134.986 362.336 134.247ZM367.972 134.247C367.972 133.758 367.945 133.291 367.889 132.848L363.776 136.601C363.933 137.128 364.169 137.548 364.482 137.862C364.796 138.176 365.207 138.332 365.715 138.332C366.528 138.332 367.105 137.995 367.446 137.321C367.797 136.647 367.972 135.623 367.972 134.247ZM363.485 134.247C363.485 134.478 363.49 134.699 363.499 134.912C363.518 135.124 363.536 135.332 363.555 135.535L367.682 131.796C367.525 131.297 367.289 130.9 366.975 130.605C366.671 130.309 366.255 130.161 365.729 130.161C364.907 130.161 364.326 130.503 363.984 131.186C363.652 131.86 363.485 132.881 363.485 134.247Z" fill="white"/>
+<path d="M372.378 141.075C372.821 140.982 373.26 140.816 373.694 140.576C374.137 140.345 374.534 140.017 374.885 139.593C375.245 139.177 375.531 138.656 375.743 138.028C375.965 137.391 376.076 136.624 376.076 135.729C376.076 134.842 375.983 134.09 375.799 133.471C375.623 132.844 375.369 132.322 375.037 131.906C374.714 131.482 374.326 131.145 373.874 130.895C373.421 130.637 372.923 130.429 372.378 130.272L372.724 129.4C373.324 129.529 373.892 129.751 374.428 130.065C374.972 130.369 375.448 130.78 375.854 131.297C376.26 131.805 376.584 132.428 376.824 133.167C377.064 133.896 377.184 134.75 377.184 135.729C377.184 136.717 377.064 137.571 376.824 138.291C376.593 139.011 376.274 139.62 375.868 140.119C375.471 140.618 375 141.019 374.455 141.324C373.92 141.638 373.343 141.873 372.724 142.03L372.378 141.075Z" fill="white"/>
+<path d="M382.392 138.332C382.392 138.055 382.48 137.834 382.656 137.668C382.84 137.492 383.076 137.405 383.362 137.405C383.713 137.405 383.985 137.529 384.179 137.778C384.373 138.019 384.47 138.36 384.47 138.803C384.47 139.163 384.41 139.477 384.29 139.745C384.17 140.022 384.017 140.253 383.833 140.438C383.657 140.631 383.463 140.784 383.251 140.895C383.048 141.015 382.859 141.102 382.683 141.158L382.337 140.618C382.669 140.488 382.956 140.304 383.196 140.064C383.436 139.824 383.556 139.533 383.556 139.191C383.426 139.219 383.325 139.233 383.251 139.233C382.983 139.233 382.771 139.159 382.614 139.011C382.466 138.854 382.392 138.628 382.392 138.332ZM382.517 132.89C382.517 132.594 382.6 132.368 382.766 132.211C382.933 132.045 383.154 131.962 383.431 131.962C383.727 131.962 383.957 132.045 384.124 132.211C384.29 132.368 384.373 132.594 384.373 132.89C384.373 133.158 384.29 133.379 384.124 133.555C383.957 133.73 383.727 133.818 383.431 133.818C383.154 133.818 382.933 133.73 382.766 133.555C382.6 133.379 382.517 133.158 382.517 132.89Z" fill="white"/>
+<path d="M133.495 158.528C133.495 158.445 133.49 158.339 133.481 158.21C133.481 158.071 133.477 157.933 133.467 157.794C133.458 157.647 133.444 157.503 133.426 157.365C133.417 157.226 133.403 157.106 133.384 157.005H132.456V156.105H134.298L134.437 157.074H134.506C134.755 156.751 135.069 156.483 135.448 156.271C135.836 156.049 136.306 155.938 136.86 155.938C137.848 155.938 138.591 156.211 139.09 156.756C139.589 157.3 139.838 158.191 139.838 159.428C139.838 160.01 139.75 160.536 139.575 161.007C139.409 161.469 139.169 161.861 138.855 162.184C138.541 162.508 138.162 162.757 137.719 162.932C137.276 163.108 136.786 163.195 136.251 163.195C136.057 163.195 135.882 163.186 135.725 163.168C135.577 163.158 135.439 163.14 135.309 163.112C135.189 163.094 135.069 163.066 134.949 163.029C134.829 162.992 134.7 162.946 134.561 162.891V165.799H133.495V158.528ZM136.68 156.949C136.403 156.949 136.14 157 135.891 157.102C135.651 157.203 135.434 157.337 135.24 157.503C135.055 157.67 134.903 157.854 134.783 158.057C134.663 158.261 134.589 158.464 134.561 158.667V161.824C134.765 161.963 134.991 162.074 135.24 162.157C135.499 162.231 135.836 162.268 136.251 162.268C136.99 162.268 137.581 162.027 138.024 161.547C138.467 161.058 138.688 160.347 138.688 159.415C138.688 158.63 138.531 158.025 138.218 157.6C137.913 157.166 137.4 156.949 136.68 156.949Z" fill="white"/>
+<path d="M146.016 156.105H147.983V160.827C147.983 161.28 148.01 161.714 148.066 162.129H148.994V163.029H147.152L147.11 161.852H147.055C146.815 162.249 146.496 162.572 146.099 162.821C145.702 163.071 145.222 163.195 144.659 163.195C144.234 163.195 143.87 163.145 143.565 163.043C143.269 162.951 143.025 162.785 142.831 162.545C142.637 162.304 142.494 161.986 142.402 161.589C142.309 161.183 142.263 160.679 142.263 160.079V157.033H141.335V156.105H143.343V159.858C143.343 160.236 143.357 160.578 143.385 160.883C143.422 161.178 143.491 161.432 143.593 161.644C143.694 161.847 143.842 162.004 144.036 162.115C144.239 162.217 144.507 162.268 144.839 162.268C145.319 162.268 145.735 162.111 146.085 161.797C146.445 161.483 146.718 161.09 146.902 160.619V157.033H146.016V156.105Z" fill="white"/>
+<path d="M150.242 156.105H151.89V154.734L152.97 154.429V156.105H156.668V157.033H152.97V160.301C152.97 160.975 153.131 161.474 153.455 161.797C153.787 162.12 154.258 162.281 154.867 162.281C155.283 162.281 155.643 162.203 155.947 162.046C156.261 161.889 156.543 161.718 156.792 161.534L157.152 162.351C156.829 162.609 156.441 162.817 155.989 162.974C155.546 163.131 155.089 163.209 154.618 163.209C154.249 163.209 153.898 163.154 153.565 163.043C153.242 162.942 152.956 162.78 152.707 162.558C152.458 162.337 152.259 162.055 152.111 161.714C151.964 161.363 151.89 160.947 151.89 160.467V157.033H150.242V156.105Z" fill="white"/>
+<path d="M173.442 165.965C172.823 165.808 172.242 165.573 171.697 165.259C171.161 164.954 170.691 164.553 170.284 164.054C169.887 163.555 169.569 162.946 169.329 162.226C169.098 161.506 168.983 160.652 168.983 159.664C168.983 158.685 169.103 157.831 169.343 157.102C169.583 156.363 169.906 155.74 170.312 155.232C170.718 154.715 171.189 154.304 171.725 154C172.269 153.686 172.842 153.464 173.442 153.335L173.788 154.207C173.243 154.364 172.745 154.572 172.292 154.831C171.84 155.08 171.448 155.417 171.115 155.842C170.792 156.257 170.538 156.779 170.354 157.406C170.178 158.025 170.09 158.778 170.09 159.664C170.09 160.559 170.197 161.326 170.409 161.963C170.631 162.591 170.917 163.112 171.268 163.528C171.628 163.952 172.025 164.28 172.459 164.511C172.902 164.751 173.345 164.917 173.788 165.01L173.442 165.965Z" fill="white"/>
+<path d="M177.778 156.645C178.175 156.414 178.623 156.248 179.122 156.146C179.62 156.045 180.11 155.994 180.59 155.994C181.06 155.994 181.444 156.068 181.739 156.215C182.044 156.363 182.279 156.557 182.445 156.797C182.621 157.028 182.736 157.296 182.792 157.6C182.856 157.896 182.889 158.196 182.889 158.501C182.889 158.851 182.879 159.225 182.861 159.622C182.842 160.019 182.829 160.416 182.819 160.813C182.819 161.275 182.847 161.714 182.902 162.129H183.83V163.029H181.988L181.864 161.991H181.795C181.739 162.074 181.656 162.18 181.545 162.309C181.434 162.438 181.287 162.568 181.102 162.697C180.927 162.817 180.71 162.923 180.451 163.015C180.193 163.108 179.888 163.154 179.537 163.154C178.854 163.154 178.314 162.978 177.917 162.628C177.52 162.277 177.321 161.797 177.321 161.187C177.321 160.716 177.423 160.324 177.626 160.01C177.838 159.696 178.138 159.456 178.526 159.29C178.914 159.124 179.38 159.027 179.925 158.999C180.479 158.971 181.097 159.008 181.781 159.11C181.827 158.685 181.831 158.334 181.795 158.057C181.767 157.771 181.693 157.545 181.573 157.379C181.462 157.213 181.301 157.097 181.088 157.033C180.885 156.959 180.631 156.922 180.326 156.922C179.911 156.922 179.514 156.982 179.135 157.102C178.757 157.213 178.42 157.328 178.124 157.448L177.778 156.645ZM179.814 162.226C180.073 162.226 180.313 162.184 180.534 162.101C180.756 162.018 180.95 161.912 181.116 161.783C181.282 161.654 181.421 161.515 181.531 161.367C181.642 161.21 181.725 161.063 181.781 160.924V159.955C181.301 159.872 180.857 159.83 180.451 159.83C180.045 159.83 179.694 159.876 179.399 159.969C179.103 160.052 178.872 160.186 178.706 160.37C178.54 160.555 178.457 160.795 178.457 161.09C178.457 161.395 178.558 161.663 178.762 161.894C178.974 162.115 179.325 162.226 179.814 162.226Z" fill="white"/>
+<path d="M191.186 157.171C190.973 157.097 190.743 157.037 190.493 156.991C190.253 156.936 190.013 156.908 189.773 156.908C188.868 156.908 188.194 157.12 187.751 157.545C187.308 157.97 187.086 158.644 187.086 159.567C187.086 159.973 187.151 160.338 187.28 160.661C187.41 160.975 187.594 161.243 187.834 161.464C188.074 161.686 188.361 161.857 188.693 161.977C189.034 162.097 189.408 162.157 189.815 162.157C190.249 162.157 190.669 162.083 191.075 161.935C191.49 161.787 191.837 161.594 192.114 161.353L192.598 162.157C192.469 162.268 192.308 162.383 192.114 162.503C191.92 162.623 191.694 162.738 191.435 162.849C191.186 162.951 190.904 163.034 190.59 163.098C190.286 163.163 189.953 163.195 189.593 163.195C188.993 163.195 188.462 163.112 188 162.946C187.548 162.771 187.169 162.526 186.865 162.212C186.56 161.889 186.329 161.506 186.172 161.063C186.015 160.61 185.937 160.112 185.937 159.567C185.937 158.985 186.015 158.468 186.172 158.016C186.339 157.563 186.574 157.185 186.879 156.88C187.183 156.576 187.553 156.345 187.987 156.188C188.421 156.022 188.905 155.938 189.441 155.938C190.124 155.938 190.678 155.998 191.103 156.119C191.537 156.239 191.901 156.372 192.197 156.52L192.183 156.562V158.487H191.186V157.171Z" fill="white"/>
+<path d="M200.009 157.171C199.797 157.097 199.566 157.037 199.317 156.991C199.077 156.936 198.837 156.908 198.597 156.908C197.692 156.908 197.018 157.12 196.575 157.545C196.131 157.97 195.91 158.644 195.91 159.567C195.91 159.973 195.974 160.338 196.104 160.661C196.233 160.975 196.418 161.243 196.658 161.464C196.898 161.686 197.184 161.857 197.516 161.977C197.858 162.097 198.232 162.157 198.638 162.157C199.072 162.157 199.492 162.083 199.898 161.935C200.314 161.787 200.66 161.594 200.937 161.353L201.422 162.157C201.292 162.268 201.131 162.383 200.937 162.503C200.743 162.623 200.517 162.738 200.258 162.849C200.009 162.951 199.728 163.034 199.414 163.098C199.109 163.163 198.777 163.195 198.416 163.195C197.816 163.195 197.285 163.112 196.824 162.946C196.371 162.771 195.993 162.526 195.688 162.212C195.384 161.889 195.153 161.506 194.996 161.063C194.839 160.61 194.76 160.112 194.76 159.567C194.76 158.985 194.839 158.468 194.996 158.016C195.162 157.563 195.397 157.185 195.702 156.88C196.007 156.576 196.376 156.345 196.81 156.188C197.244 156.022 197.729 155.938 198.264 155.938C198.947 155.938 199.501 155.998 199.926 156.119C200.36 156.239 200.725 156.372 201.02 156.52L201.006 156.562V158.487H200.009V157.171Z" fill="white"/>
+<path d="M203.542 159.567C203.542 158.45 203.833 157.568 204.415 156.922C204.996 156.266 205.827 155.938 206.908 155.938C207.489 155.938 207.988 156.035 208.403 156.229C208.828 156.414 209.179 156.668 209.456 156.991C209.733 157.314 209.936 157.697 210.065 158.14C210.204 158.584 210.273 159.059 210.273 159.567C210.273 160.121 210.199 160.624 210.051 161.076C209.904 161.52 209.687 161.898 209.4 162.212C209.114 162.526 208.759 162.771 208.334 162.946C207.919 163.112 207.443 163.195 206.908 163.195C206.335 163.195 205.837 163.103 205.412 162.918C204.987 162.725 204.636 162.466 204.359 162.143C204.082 161.82 203.875 161.437 203.736 160.993C203.607 160.55 203.542 160.075 203.542 159.567ZM204.692 159.567C204.692 159.89 204.729 160.213 204.802 160.536C204.886 160.86 205.015 161.15 205.19 161.409C205.366 161.667 205.592 161.875 205.869 162.032C206.155 162.189 206.501 162.268 206.908 162.268C207.646 162.268 208.2 162.041 208.569 161.589C208.948 161.127 209.137 160.453 209.137 159.567C209.137 159.235 209.096 158.911 209.013 158.597C208.939 158.274 208.809 157.984 208.625 157.725C208.449 157.466 208.219 157.259 207.932 157.102C207.655 156.945 207.314 156.866 206.908 156.866C206.169 156.866 205.615 157.093 205.246 157.545C204.876 157.997 204.692 158.671 204.692 159.567Z" fill="white"/>
+<path d="M216.603 156.105H218.57V160.827C218.57 161.28 218.598 161.714 218.653 162.129H219.581V163.029H217.739L217.698 161.852H217.642C217.402 162.249 217.084 162.572 216.687 162.821C216.29 163.071 215.809 163.195 215.246 163.195C214.821 163.195 214.457 163.145 214.152 163.043C213.857 162.951 213.612 162.785 213.418 162.545C213.224 162.304 213.081 161.986 212.989 161.589C212.896 161.183 212.85 160.679 212.85 160.079V157.033H211.922V156.105H213.931V159.858C213.931 160.236 213.944 160.578 213.972 160.883C214.009 161.178 214.078 161.432 214.18 161.644C214.281 161.847 214.429 162.004 214.623 162.115C214.826 162.217 215.094 162.268 215.426 162.268C215.906 162.268 216.322 162.111 216.673 161.797C217.033 161.483 217.305 161.09 217.49 160.619V157.033H216.603V156.105Z" fill="white"/>
+<path d="M221.688 158.528C221.688 158.445 221.683 158.339 221.674 158.21C221.674 158.071 221.669 157.933 221.66 157.794C221.651 157.647 221.637 157.503 221.618 157.365C221.609 157.226 221.595 157.106 221.577 157.005H220.649V156.105H222.505L222.629 157.226H222.699C222.791 157.069 222.911 156.917 223.059 156.769C223.216 156.612 223.396 156.474 223.599 156.354C223.802 156.225 224.028 156.123 224.277 156.049C224.527 155.975 224.79 155.938 225.067 155.938C225.491 155.938 225.865 155.985 226.189 156.077C226.521 156.169 226.793 156.335 227.006 156.576C227.227 156.806 227.393 157.125 227.504 157.531C227.615 157.928 227.67 158.436 227.67 159.055V163.029H226.59V159.262C226.59 158.496 226.466 157.919 226.216 157.531C225.967 157.143 225.515 156.949 224.859 156.949C224.619 156.949 224.384 157 224.153 157.102C223.931 157.194 223.728 157.319 223.543 157.476C223.359 157.633 223.197 157.817 223.059 158.03C222.92 158.233 222.819 158.45 222.754 158.681V163.029H221.688V158.528Z" fill="white"/>
+<path d="M229.652 156.105H231.3V154.734L232.381 154.429V156.105H236.078V157.033H232.381V160.301C232.381 160.975 232.542 161.474 232.865 161.797C233.198 162.12 233.669 162.281 234.278 162.281C234.693 162.281 235.053 162.203 235.358 162.046C235.672 161.889 235.954 161.718 236.203 161.534L236.563 162.351C236.24 162.609 235.852 162.817 235.4 162.974C234.957 163.131 234.5 163.209 234.029 163.209C233.659 163.209 233.308 163.154 232.976 163.043C232.653 162.942 232.367 162.78 232.117 162.558C231.868 162.337 231.67 162.055 231.522 161.714C231.374 161.363 231.3 160.947 231.3 160.467V157.033H229.652V156.105Z" fill="white"/>
+<path d="M244.971 155.786C244.971 156.636 244.569 157.582 243.766 158.625C242.963 159.668 241.841 160.804 240.401 162.032H245.276V163.029H239.127V162.032C239.302 161.866 239.542 161.649 239.847 161.381C240.151 161.113 240.479 160.818 240.83 160.495C241.181 160.162 241.536 159.807 241.896 159.428C242.266 159.05 242.598 158.662 242.894 158.265C243.189 157.868 243.429 157.471 243.614 157.074C243.798 156.677 243.891 156.294 243.891 155.925C243.891 155.371 243.743 154.937 243.448 154.623C243.161 154.3 242.727 154.138 242.146 154.138C241.647 154.138 241.227 154.193 240.885 154.304C240.544 154.415 240.235 154.577 239.958 154.789L239.487 154.027C239.902 153.732 240.341 153.515 240.802 153.376C241.273 153.238 241.786 153.169 242.34 153.169C243.208 153.169 243.863 153.404 244.306 153.875C244.749 154.346 244.971 154.983 244.971 155.786Z" fill="white"/>
+<path d="M250.041 162.268C250.041 161.991 250.129 161.769 250.304 161.603C250.489 161.427 250.725 161.34 251.011 161.34C251.362 161.34 251.634 161.464 251.828 161.714C252.022 161.954 252.119 162.295 252.119 162.738C252.119 163.098 252.059 163.412 251.939 163.68C251.819 163.957 251.666 164.188 251.482 164.373C251.306 164.566 251.112 164.719 250.9 164.83C250.697 164.95 250.508 165.037 250.332 165.093L249.986 164.553C250.318 164.423 250.604 164.239 250.845 163.999C251.085 163.759 251.205 163.468 251.205 163.126C251.075 163.154 250.974 163.168 250.9 163.168C250.632 163.168 250.42 163.094 250.263 162.946C250.115 162.789 250.041 162.563 250.041 162.268Z" fill="white"/>
+<path d="M264.544 153.335H266.76V156.894H266.829C267.07 156.589 267.379 156.354 267.757 156.188C268.136 156.022 268.547 155.938 268.99 155.938C271.021 155.938 272.037 157.111 272.037 159.456C272.037 160.647 271.709 161.561 271.053 162.198C270.398 162.826 269.465 163.14 268.256 163.14C267.683 163.14 267.166 163.085 266.705 162.974C266.243 162.863 265.906 162.734 265.694 162.586V154.263H264.544V153.335ZM268.851 156.866C268.297 156.866 267.85 157.023 267.508 157.337C267.166 157.651 266.917 158.094 266.76 158.667V161.852C266.973 161.963 267.226 162.051 267.522 162.115C267.817 162.18 268.127 162.212 268.45 162.212C268.819 162.212 269.151 162.161 269.447 162.06C269.752 161.949 270.01 161.783 270.222 161.561C270.435 161.33 270.596 161.04 270.707 160.689C270.827 160.338 270.887 159.922 270.887 159.442C270.887 159.091 270.85 158.759 270.776 158.445C270.703 158.131 270.583 157.859 270.416 157.628C270.259 157.388 270.052 157.203 269.793 157.074C269.535 156.936 269.221 156.866 268.851 156.866Z" fill="white"/>
+<path d="M274.836 156.645C275.233 156.414 275.681 156.248 276.179 156.146C276.678 156.045 277.167 155.994 277.647 155.994C278.118 155.994 278.501 156.068 278.797 156.215C279.101 156.363 279.337 156.557 279.503 156.797C279.678 157.028 279.794 157.296 279.849 157.6C279.914 157.896 279.946 158.196 279.946 158.501C279.946 158.851 279.937 159.225 279.918 159.622C279.9 160.019 279.886 160.416 279.877 160.813C279.877 161.275 279.905 161.714 279.96 162.129H280.888V163.029H279.046L278.921 161.991H278.852C278.797 162.074 278.714 162.18 278.603 162.309C278.492 162.438 278.344 162.568 278.16 162.697C277.984 162.817 277.767 162.923 277.509 163.015C277.25 163.108 276.945 163.154 276.595 163.154C275.911 163.154 275.371 162.978 274.974 162.628C274.577 162.277 274.379 161.797 274.379 161.187C274.379 160.716 274.48 160.324 274.683 160.01C274.896 159.696 275.196 159.456 275.584 159.29C275.971 159.124 276.438 159.027 276.982 158.999C277.536 158.971 278.155 159.008 278.838 159.11C278.884 158.685 278.889 158.334 278.852 158.057C278.824 157.771 278.75 157.545 278.63 157.379C278.52 157.213 278.358 157.097 278.146 157.033C277.943 156.959 277.689 156.922 277.384 156.922C276.969 156.922 276.572 156.982 276.193 157.102C275.814 157.213 275.477 157.328 275.182 157.448L274.836 156.645ZM276.872 162.226C277.13 162.226 277.37 162.184 277.592 162.101C277.813 162.018 278.007 161.912 278.173 161.783C278.34 161.654 278.478 161.515 278.589 161.367C278.7 161.21 278.783 161.063 278.838 160.924V159.955C278.358 159.872 277.915 159.83 277.509 159.83C277.102 159.83 276.752 159.876 276.456 159.969C276.161 160.052 275.93 160.186 275.764 160.37C275.597 160.555 275.514 160.795 275.514 161.09C275.514 161.395 275.616 161.663 275.819 161.894C276.031 162.115 276.382 162.226 276.872 162.226Z" fill="white"/>
+<path d="M283.812 153.335H286.11V160.703C286.11 161.266 286.203 161.663 286.387 161.894C286.581 162.124 286.863 162.24 287.232 162.24C287.491 162.24 287.735 162.194 287.966 162.101C288.206 162.009 288.469 161.852 288.756 161.63L289.254 162.392C289.106 162.521 288.945 162.637 288.77 162.738C288.594 162.84 288.414 162.928 288.229 163.002C288.045 163.066 287.86 163.117 287.675 163.154C287.491 163.191 287.32 163.209 287.163 163.209C286.821 163.209 286.517 163.163 286.249 163.071C285.981 162.988 285.755 162.849 285.57 162.655C285.395 162.461 285.261 162.208 285.169 161.894C285.076 161.57 285.03 161.173 285.03 160.703V154.263H283.812V153.335Z" fill="white"/>
+<path d="M292.483 156.645C292.88 156.414 293.327 156.248 293.826 156.146C294.325 156.045 294.814 155.994 295.294 155.994C295.765 155.994 296.148 156.068 296.443 156.215C296.748 156.363 296.984 156.557 297.15 156.797C297.325 157.028 297.441 157.296 297.496 157.6C297.561 157.896 297.593 158.196 297.593 158.501C297.593 158.851 297.584 159.225 297.565 159.622C297.547 160.019 297.533 160.416 297.524 160.813C297.524 161.275 297.551 161.714 297.607 162.129H298.535V163.029H296.693L296.568 161.991H296.499C296.443 162.074 296.36 162.18 296.25 162.309C296.139 162.438 295.991 162.568 295.806 162.697C295.631 162.817 295.414 162.923 295.155 163.015C294.897 163.108 294.592 163.154 294.241 163.154C293.558 163.154 293.018 162.978 292.621 162.628C292.224 162.277 292.026 161.797 292.026 161.187C292.026 160.716 292.127 160.324 292.33 160.01C292.543 159.696 292.843 159.456 293.23 159.29C293.618 159.124 294.084 159.027 294.629 158.999C295.183 158.971 295.802 159.008 296.485 159.11C296.531 158.685 296.536 158.334 296.499 158.057C296.471 157.771 296.397 157.545 296.277 157.379C296.166 157.213 296.005 157.097 295.793 157.033C295.589 156.959 295.335 156.922 295.031 156.922C294.615 156.922 294.218 156.982 293.84 157.102C293.461 157.213 293.124 157.328 292.829 157.448L292.483 156.645ZM294.518 162.226C294.777 162.226 295.017 162.184 295.239 162.101C295.46 162.018 295.654 161.912 295.82 161.783C295.986 161.654 296.125 161.515 296.236 161.367C296.346 161.21 296.43 161.063 296.485 160.924V159.955C296.005 159.872 295.562 159.83 295.155 159.83C294.749 159.83 294.398 159.876 294.103 159.969C293.807 160.052 293.577 160.186 293.41 160.37C293.244 160.555 293.161 160.795 293.161 161.09C293.161 161.395 293.263 161.663 293.466 161.894C293.678 162.115 294.029 162.226 294.518 162.226Z" fill="white"/>
+<path d="M301.098 158.528C301.098 158.445 301.094 158.339 301.084 158.21C301.084 158.071 301.08 157.933 301.071 157.794C301.061 157.647 301.047 157.503 301.029 157.365C301.02 157.226 301.006 157.106 300.987 157.005H300.06V156.105H301.915L302.04 157.226H302.109C302.202 157.069 302.322 156.917 302.469 156.769C302.626 156.612 302.806 156.474 303.009 156.354C303.213 156.225 303.439 156.123 303.688 156.049C303.937 155.975 304.2 155.938 304.477 155.938C304.902 155.938 305.276 155.985 305.599 156.077C305.932 156.169 306.204 156.335 306.416 156.576C306.638 156.806 306.804 157.125 306.915 157.531C307.026 157.928 307.081 158.436 307.081 159.055V163.029H306.001V159.262C306.001 158.496 305.876 157.919 305.627 157.531C305.378 157.143 304.925 156.949 304.27 156.949C304.03 156.949 303.794 157 303.563 157.102C303.342 157.194 303.139 157.319 302.954 157.476C302.769 157.633 302.608 157.817 302.469 158.03C302.331 158.233 302.229 158.45 302.165 158.681V163.029H301.098V158.528Z" fill="white"/>
+<path d="M314.713 157.171C314.501 157.097 314.27 157.037 314.021 156.991C313.781 156.936 313.541 156.908 313.301 156.908C312.396 156.908 311.722 157.12 311.279 157.545C310.836 157.97 310.614 158.644 310.614 159.567C310.614 159.973 310.679 160.338 310.808 160.661C310.937 160.975 311.122 161.243 311.362 161.464C311.602 161.686 311.888 161.857 312.221 161.977C312.562 162.097 312.936 162.157 313.342 162.157C313.776 162.157 314.196 162.083 314.603 161.935C315.018 161.787 315.364 161.594 315.641 161.353L316.126 162.157C315.997 162.268 315.835 162.383 315.641 162.503C315.447 162.623 315.221 162.738 314.963 162.849C314.713 162.951 314.432 163.034 314.118 163.098C313.813 163.163 313.481 163.195 313.121 163.195C312.521 163.195 311.99 163.112 311.528 162.946C311.076 162.771 310.697 162.526 310.393 162.212C310.088 161.889 309.857 161.506 309.7 161.063C309.543 160.61 309.465 160.112 309.465 159.567C309.465 158.985 309.543 158.468 309.7 158.016C309.866 157.563 310.102 157.185 310.406 156.88C310.711 156.576 311.08 156.345 311.514 156.188C311.948 156.022 312.433 155.938 312.968 155.938C313.652 155.938 314.206 155.998 314.63 156.119C315.064 156.239 315.429 156.372 315.724 156.52L315.711 156.562V158.487H314.713V157.171Z" fill="white"/>
+<path d="M324.783 162.157C324.617 162.304 324.419 162.443 324.188 162.572C323.966 162.701 323.722 162.812 323.454 162.905C323.186 162.997 322.904 163.066 322.609 163.112C322.323 163.168 322.032 163.195 321.736 163.195C321.183 163.195 320.693 163.112 320.268 162.946C319.844 162.771 319.488 162.526 319.202 162.212C318.916 161.889 318.699 161.506 318.551 161.063C318.403 160.619 318.33 160.121 318.33 159.567C318.33 158.985 318.408 158.468 318.565 158.016C318.731 157.563 318.967 157.185 319.271 156.88C319.576 156.576 319.945 156.345 320.379 156.188C320.813 156.022 321.298 155.938 321.833 155.938C322.221 155.938 322.604 155.989 322.983 156.091C323.361 156.192 323.694 156.386 323.98 156.672C324.275 156.949 324.502 157.337 324.659 157.836C324.816 158.325 324.871 158.962 324.825 159.747H319.465C319.465 160.578 319.687 161.201 320.13 161.617C320.582 162.023 321.183 162.226 321.93 162.226C322.18 162.226 322.424 162.198 322.664 162.143C322.914 162.078 323.149 162.004 323.371 161.921C323.592 161.838 323.786 161.746 323.952 161.644C324.128 161.543 324.262 161.45 324.354 161.367L324.783 162.157ZM321.861 156.853C321.556 156.853 321.266 156.885 320.989 156.949C320.721 157.014 320.481 157.125 320.268 157.282C320.065 157.43 319.895 157.628 319.756 157.877C319.627 158.117 319.544 158.417 319.507 158.778H323.814C323.768 158.168 323.569 157.697 323.218 157.365C322.877 157.023 322.424 156.853 321.861 156.853Z" fill="white"/>
+<path d="M328.039 162.032H330.214V154.747L327.998 156.299L327.458 155.509L330.505 153.335H331.28V162.032H333.413V163.029H328.039V162.032Z" fill="white"/>
+<path d="M335.769 157.85H338.76V154.789H339.757V157.85H342.749V158.847H339.757V161.907H338.76V158.847H335.769V157.85Z" fill="white"/>
+<path d="M345.686 162.032H347.86V154.747L345.645 156.299L345.105 155.509L348.151 153.335H348.927V162.032H351.06V163.029H345.686V162.032Z" fill="white"/>
+<path d="M353.512 158.182C353.512 157.397 353.582 156.696 353.72 156.077C353.859 155.449 354.066 154.923 354.343 154.498C354.62 154.064 354.971 153.736 355.396 153.515C355.821 153.284 356.324 153.169 356.905 153.169C357.524 153.169 358.046 153.279 358.47 153.501C358.904 153.723 359.255 154.046 359.523 154.47C359.791 154.895 359.985 155.421 360.105 156.049C360.225 156.668 360.285 157.379 360.285 158.182C360.285 158.967 360.215 159.673 360.077 160.301C359.938 160.92 359.731 161.446 359.454 161.88C359.177 162.304 358.826 162.632 358.401 162.863C357.976 163.085 357.473 163.195 356.892 163.195C356.282 163.195 355.761 163.075 355.327 162.835C354.902 162.586 354.551 162.24 354.274 161.797C354.006 161.353 353.812 160.827 353.692 160.218C353.572 159.599 353.512 158.921 353.512 158.182ZM359.149 158.182C359.149 157.693 359.121 157.226 359.066 156.783L354.953 160.536C355.11 161.063 355.345 161.483 355.659 161.797C355.973 162.111 356.384 162.268 356.892 162.268C357.704 162.268 358.281 161.931 358.623 161.257C358.974 160.583 359.149 159.558 359.149 158.182ZM354.662 158.182C354.662 158.413 354.667 158.634 354.676 158.847C354.694 159.059 354.713 159.267 354.731 159.47L358.858 155.731C358.701 155.232 358.466 154.835 358.152 154.54C357.847 154.244 357.432 154.097 356.905 154.097C356.084 154.097 355.502 154.438 355.16 155.121C354.828 155.795 354.662 156.816 354.662 158.182Z" fill="white"/>
+<path d="M362.336 158.182C362.336 157.397 362.405 156.696 362.544 156.077C362.682 155.449 362.89 154.923 363.167 154.498C363.444 154.064 363.795 153.736 364.219 153.515C364.644 153.284 365.147 153.169 365.729 153.169C366.347 153.169 366.869 153.279 367.294 153.501C367.728 153.723 368.079 154.046 368.346 154.47C368.614 154.895 368.808 155.421 368.928 156.049C369.048 156.668 369.108 157.379 369.108 158.182C369.108 158.967 369.039 159.673 368.9 160.301C368.762 160.92 368.554 161.446 368.277 161.88C368 162.304 367.649 162.632 367.225 162.863C366.8 163.085 366.297 163.195 365.715 163.195C365.106 163.195 364.584 163.075 364.15 162.835C363.725 162.586 363.375 162.24 363.098 161.797C362.83 161.353 362.636 160.827 362.516 160.218C362.396 159.599 362.336 158.921 362.336 158.182ZM367.972 158.182C367.972 157.693 367.945 157.226 367.889 156.783L363.776 160.536C363.933 161.063 364.169 161.483 364.482 161.797C364.796 162.111 365.207 162.268 365.715 162.268C366.528 162.268 367.105 161.931 367.446 161.257C367.797 160.583 367.972 159.558 367.972 158.182ZM363.485 158.182C363.485 158.413 363.49 158.634 363.499 158.847C363.518 159.059 363.536 159.267 363.555 159.47L367.682 155.731C367.525 155.232 367.289 154.835 366.975 154.54C366.671 154.244 366.255 154.097 365.729 154.097C364.907 154.097 364.326 154.438 363.984 155.121C363.652 155.795 363.485 156.816 363.485 158.182Z" fill="white"/>
+<path d="M372.378 165.01C372.821 164.917 373.26 164.751 373.694 164.511C374.137 164.28 374.534 163.952 374.885 163.528C375.245 163.112 375.531 162.591 375.743 161.963C375.965 161.326 376.076 160.559 376.076 159.664C376.076 158.778 375.983 158.025 375.799 157.406C375.623 156.779 375.369 156.257 375.037 155.842C374.714 155.417 374.326 155.08 373.874 154.831C373.421 154.572 372.923 154.364 372.378 154.207L372.724 153.335C373.324 153.464 373.892 153.686 374.428 154C374.972 154.304 375.448 154.715 375.854 155.232C376.26 155.74 376.584 156.363 376.824 157.102C377.064 157.831 377.184 158.685 377.184 159.664C377.184 160.652 377.064 161.506 376.824 162.226C376.593 162.946 376.274 163.555 375.868 164.054C375.471 164.553 375 164.954 374.455 165.259C373.92 165.573 373.343 165.808 372.724 165.965L372.378 165.01Z" fill="white"/>
+<path d="M382.392 162.268C382.392 161.991 382.48 161.769 382.656 161.603C382.84 161.427 383.076 161.34 383.362 161.34C383.713 161.34 383.985 161.464 384.179 161.714C384.373 161.954 384.47 162.295 384.47 162.738C384.47 163.098 384.41 163.412 384.29 163.68C384.17 163.957 384.017 164.188 383.833 164.373C383.657 164.566 383.463 164.719 383.251 164.83C383.048 164.95 382.859 165.037 382.683 165.093L382.337 164.553C382.669 164.423 382.956 164.239 383.196 163.999C383.436 163.759 383.556 163.468 383.556 163.126C383.426 163.154 383.325 163.168 383.251 163.168C382.983 163.168 382.771 163.094 382.614 162.946C382.466 162.789 382.392 162.563 382.392 162.268ZM382.517 156.825C382.517 156.529 382.6 156.303 382.766 156.146C382.933 155.98 383.154 155.897 383.431 155.897C383.727 155.897 383.957 155.98 384.124 156.146C384.29 156.303 384.373 156.529 384.373 156.825C384.373 157.093 384.29 157.314 384.124 157.49C383.957 157.665 383.727 157.753 383.431 157.753C383.154 157.753 382.933 157.665 382.766 157.49C382.6 157.314 382.517 157.093 382.517 156.825Z" fill="white"/>
+<path d="M132.595 180.041H134.243V178.67L135.323 178.366V180.041H139.021V180.969H135.323V184.238C135.323 184.912 135.485 185.41 135.808 185.733C136.14 186.057 136.611 186.218 137.22 186.218C137.636 186.218 137.996 186.14 138.301 185.983C138.615 185.826 138.896 185.655 139.145 185.47L139.506 186.287C139.182 186.546 138.795 186.754 138.342 186.911C137.899 187.068 137.442 187.146 136.971 187.146C136.602 187.146 136.251 187.091 135.919 186.98C135.595 186.878 135.309 186.717 135.06 186.495C134.811 186.273 134.612 185.992 134.464 185.65C134.317 185.299 134.243 184.884 134.243 184.404V180.969H132.595V180.041Z" fill="white"/>
+<path d="M144.493 183.421L141.82 180.041H143.205L145.199 182.645L147.249 180.041H148.495L145.822 183.365L148.661 186.966H147.332L145.13 184.127L142.886 186.966H141.626L144.493 183.421Z" fill="white"/>
+<path d="M153.039 186.204C153.039 185.909 153.122 185.683 153.288 185.526C153.455 185.359 153.676 185.276 153.953 185.276C154.249 185.276 154.479 185.359 154.646 185.526C154.812 185.683 154.895 185.909 154.895 186.204C154.895 186.472 154.812 186.694 154.646 186.869C154.479 187.044 154.249 187.132 153.953 187.132C153.676 187.132 153.455 187.044 153.288 186.869C153.122 186.694 153.039 186.472 153.039 186.204Z" fill="white"/>
+<path d="M164.715 181.108C164.503 181.034 164.272 180.974 164.023 180.928C163.783 180.872 163.543 180.845 163.303 180.845C162.398 180.845 161.724 181.057 161.281 181.482C160.838 181.906 160.616 182.58 160.616 183.504C160.616 183.91 160.681 184.275 160.81 184.598C160.939 184.912 161.124 185.179 161.364 185.401C161.604 185.623 161.89 185.793 162.223 185.913C162.564 186.033 162.938 186.093 163.344 186.093C163.778 186.093 164.198 186.02 164.605 185.872C165.02 185.724 165.366 185.53 165.643 185.29L166.128 186.093C165.999 186.204 165.837 186.32 165.643 186.44C165.449 186.56 165.223 186.675 164.965 186.786C164.715 186.887 164.434 186.971 164.12 187.035C163.815 187.1 163.483 187.132 163.123 187.132C162.523 187.132 161.992 187.049 161.53 186.883C161.078 186.707 160.699 186.463 160.395 186.149C160.09 185.826 159.859 185.443 159.702 184.999C159.545 184.547 159.467 184.048 159.467 183.504C159.467 182.922 159.545 182.405 159.702 181.953C159.868 181.5 160.104 181.122 160.408 180.817C160.713 180.512 161.082 180.281 161.516 180.124C161.95 179.958 162.435 179.875 162.97 179.875C163.654 179.875 164.208 179.935 164.632 180.055C165.066 180.175 165.431 180.309 165.726 180.457L165.713 180.498V182.423H164.715V181.108Z" fill="white"/>
+<path d="M168.249 183.504C168.249 182.387 168.539 181.505 169.121 180.858C169.703 180.203 170.534 179.875 171.614 179.875C172.196 179.875 172.694 179.972 173.11 180.166C173.534 180.351 173.885 180.605 174.162 180.928C174.439 181.251 174.642 181.634 174.771 182.077C174.91 182.52 174.979 182.996 174.979 183.504C174.979 184.058 174.905 184.561 174.758 185.013C174.61 185.456 174.393 185.835 174.107 186.149C173.82 186.463 173.465 186.707 173.04 186.883C172.625 187.049 172.149 187.132 171.614 187.132C171.041 187.132 170.543 187.04 170.118 186.855C169.693 186.661 169.343 186.403 169.066 186.08C168.789 185.756 168.581 185.373 168.442 184.93C168.313 184.487 168.249 184.011 168.249 183.504ZM169.398 183.504C169.398 183.827 169.435 184.15 169.509 184.473C169.592 184.796 169.721 185.087 169.897 185.346C170.072 185.604 170.298 185.812 170.575 185.969C170.861 186.126 171.208 186.204 171.614 186.204C172.352 186.204 172.906 185.978 173.276 185.526C173.654 185.064 173.844 184.39 173.844 183.504C173.844 183.171 173.802 182.848 173.719 182.534C173.645 182.211 173.516 181.92 173.331 181.662C173.156 181.403 172.925 181.195 172.639 181.039C172.362 180.882 172.02 180.803 171.614 180.803C170.875 180.803 170.321 181.029 169.952 181.482C169.583 181.934 169.398 182.608 169.398 183.504Z" fill="white"/>
+<path d="M179.911 186.966V182.354C179.911 182.16 179.902 181.976 179.883 181.8C179.874 181.616 179.842 181.454 179.786 181.316C179.74 181.168 179.666 181.052 179.565 180.969C179.472 180.886 179.348 180.845 179.191 180.845C178.877 180.845 178.609 180.974 178.388 181.232C178.175 181.491 178.014 181.814 177.903 182.202V186.966H176.85V180.041H177.57L177.778 180.886H177.834C177.926 180.748 178.014 180.618 178.097 180.498C178.189 180.369 178.291 180.258 178.401 180.166C178.521 180.074 178.66 180.004 178.817 179.958C178.974 179.903 179.172 179.875 179.412 179.875C179.551 179.875 179.694 179.898 179.842 179.944C179.989 179.981 180.123 180.046 180.243 180.138C180.373 180.221 180.483 180.337 180.576 180.485C180.668 180.632 180.728 180.812 180.756 181.025C180.968 180.665 181.204 180.383 181.462 180.18C181.73 179.977 182.095 179.875 182.556 179.875C182.861 179.875 183.106 179.926 183.29 180.028C183.484 180.129 183.632 180.277 183.733 180.471C183.844 180.655 183.918 180.882 183.955 181.149C184.001 181.408 184.024 181.699 184.024 182.022V186.966H182.972V182.257C182.972 182.063 182.962 181.883 182.944 181.717C182.925 181.542 182.889 181.389 182.833 181.26C182.787 181.131 182.718 181.029 182.625 180.955C182.542 180.882 182.427 180.845 182.279 180.845C181.956 180.845 181.684 180.974 181.462 181.232C181.241 181.491 181.074 181.86 180.964 182.34V186.966H179.911Z" fill="white"/>
+<path d="M188.734 186.966V182.354C188.734 182.16 188.725 181.976 188.707 181.8C188.697 181.616 188.665 181.454 188.61 181.316C188.564 181.168 188.49 181.052 188.388 180.969C188.296 180.886 188.171 180.845 188.014 180.845C187.7 180.845 187.433 180.974 187.211 181.232C186.999 181.491 186.837 181.814 186.726 182.202V186.966H185.674V180.041H186.394L186.602 180.886H186.657C186.749 180.748 186.837 180.618 186.92 180.498C187.013 180.369 187.114 180.258 187.225 180.166C187.345 180.074 187.483 180.004 187.64 179.958C187.797 179.903 187.996 179.875 188.236 179.875C188.374 179.875 188.517 179.898 188.665 179.944C188.813 179.981 188.947 180.046 189.067 180.138C189.196 180.221 189.307 180.337 189.399 180.485C189.491 180.632 189.552 180.812 189.579 181.025C189.792 180.665 190.027 180.383 190.286 180.18C190.553 179.977 190.918 179.875 191.38 179.875C191.684 179.875 191.929 179.926 192.114 180.028C192.307 180.129 192.455 180.277 192.557 180.471C192.668 180.655 192.741 180.882 192.778 181.149C192.825 181.408 192.848 181.699 192.848 182.022V186.966H191.795V182.257C191.795 182.063 191.786 181.883 191.767 181.717C191.749 181.542 191.712 181.389 191.657 181.26C191.61 181.131 191.541 181.029 191.449 180.955C191.366 180.882 191.25 180.845 191.103 180.845C190.779 180.845 190.507 180.974 190.286 181.232C190.064 181.491 189.898 181.86 189.787 182.34V186.966H188.734Z" fill="white"/>
+<path d="M195.384 186.966V186.038H197.793V180.969H195.384V180.041H198.901V186.038H201.256V186.966H195.384ZM197.419 178.075C197.419 177.826 197.502 177.613 197.669 177.438C197.835 177.253 198.047 177.161 198.306 177.161C198.573 177.161 198.795 177.253 198.97 177.438C199.155 177.613 199.247 177.826 199.247 178.075C199.247 178.315 199.155 178.518 198.97 178.684C198.795 178.85 198.573 178.933 198.306 178.933C198.047 178.933 197.835 178.85 197.669 178.684C197.502 178.518 197.419 178.315 197.419 178.075Z" fill="white"/>
+<path d="M203.182 180.041H204.83V178.67L205.91 178.366V180.041H209.608V180.969H205.91V184.238C205.91 184.912 206.072 185.41 206.395 185.733C206.727 186.057 207.198 186.218 207.808 186.218C208.223 186.218 208.583 186.14 208.888 185.983C209.202 185.826 209.483 185.655 209.733 185.47L210.093 186.287C209.77 186.546 209.382 186.754 208.929 186.911C208.486 187.068 208.029 187.146 207.558 187.146C207.189 187.146 206.838 187.091 206.506 186.98C206.183 186.878 205.897 186.717 205.647 186.495C205.398 186.273 205.199 185.992 205.052 185.65C204.904 185.299 204.83 184.884 204.83 184.404V180.969H203.182V180.041Z" fill="white"/>
+<path d="M217.559 189.902C216.94 189.745 216.359 189.51 215.814 189.196C215.279 188.891 214.808 188.489 214.401 187.991C214.004 187.492 213.686 186.883 213.446 186.163C213.215 185.443 213.1 184.589 213.1 183.601C213.1 182.622 213.22 181.768 213.46 181.039C213.7 180.3 214.023 179.677 214.429 179.169C214.835 178.652 215.306 178.241 215.842 177.936C216.386 177.622 216.959 177.401 217.559 177.272L217.905 178.144C217.36 178.301 216.862 178.509 216.41 178.767C215.957 179.017 215.565 179.354 215.232 179.778C214.909 180.194 214.655 180.715 214.471 181.343C214.295 181.962 214.208 182.714 214.208 183.601C214.208 184.496 214.314 185.263 214.526 185.9C214.748 186.527 215.034 187.049 215.385 187.465C215.745 187.889 216.142 188.217 216.576 188.448C217.019 188.688 217.462 188.854 217.905 188.946L217.559 189.902Z" fill="white"/>
+<path d="M222.38 188.946C222.823 188.854 223.262 188.688 223.696 188.448C224.139 188.217 224.536 187.889 224.887 187.465C225.247 187.049 225.533 186.527 225.745 185.9C225.967 185.263 226.078 184.496 226.078 183.601C226.078 182.714 225.985 181.962 225.801 181.343C225.625 180.715 225.371 180.194 225.039 179.778C224.716 179.354 224.328 179.017 223.876 178.767C223.423 178.509 222.925 178.301 222.38 178.144L222.726 177.272C223.326 177.401 223.894 177.622 224.43 177.936C224.974 178.241 225.45 178.652 225.856 179.169C226.262 179.677 226.586 180.3 226.826 181.039C227.066 181.768 227.186 182.622 227.186 183.601C227.186 184.589 227.066 185.443 226.826 186.163C226.595 186.883 226.276 187.492 225.87 187.991C225.473 188.489 225.002 188.891 224.457 189.196C223.922 189.51 223.345 189.745 222.726 189.902L222.38 188.946Z" fill="white"/>
+<path d="M232.394 186.204C232.394 185.927 232.482 185.706 232.658 185.539C232.842 185.364 233.078 185.276 233.364 185.276C233.715 185.276 233.987 185.401 234.181 185.65C234.375 185.89 234.472 186.232 234.472 186.675C234.472 187.035 234.412 187.349 234.292 187.617C234.172 187.894 234.019 188.125 233.835 188.309C233.659 188.503 233.465 188.656 233.253 188.766C233.05 188.886 232.861 188.974 232.685 189.029L232.339 188.489C232.671 188.36 232.958 188.175 233.198 187.935C233.438 187.695 233.558 187.405 233.558 187.063C233.429 187.091 233.327 187.104 233.253 187.104C232.985 187.104 232.773 187.031 232.616 186.883C232.468 186.726 232.394 186.5 232.394 186.204ZM232.519 180.762C232.519 180.466 232.602 180.24 232.768 180.083C232.935 179.917 233.156 179.834 233.433 179.834C233.729 179.834 233.959 179.917 234.126 180.083C234.292 180.24 234.375 180.466 234.375 180.762C234.375 181.029 234.292 181.251 234.126 181.426C233.959 181.602 233.729 181.689 233.433 181.689C233.156 181.689 232.935 181.602 232.768 181.426C232.602 181.251 232.519 181.029 232.519 180.762Z" fill="white"/>
+<path d="M197.337 240.869L218.961 246.591L218.96 215.492L197.337 209.77L176.093 216.382L176.093 247.352L197.337 240.869Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M175.228 248.522L175.228 215.745L197.318 208.87L219.826 214.826L219.826 247.716L197.354 241.769L175.228 248.522ZM176.959 246.183L197.32 239.969L218.095 245.467L218.095 216.159L197.357 210.671L176.959 217.019L176.959 246.183Z" fill="#2D2D2D"/>
+<path d="M197.717 222.341L176.093 216.619L176.093 254.542L197.717 260.264L218.961 253.652L218.961 215.858L197.717 222.341Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M219.826 214.689L219.826 254.289L197.736 261.164L175.228 255.208L175.228 215.495L197.7 221.441L219.826 214.689ZM218.095 217.027L197.733 223.241L176.959 217.743L176.959 253.875L197.697 259.363L218.095 253.014L218.095 217.027Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M196.535 259.63L196.535 222.28L198.266 222.28L198.266 259.63L196.535 259.63Z" fill="#2D2D2D"/>
+<path d="M230.952 250.406L235.711 238.014H237.477L242.549 250.406H240.681L239.235 246.653H234.054L232.693 250.406H230.952ZM234.527 245.318H238.728L237.435 241.886C237.041 240.843 236.747 239.987 236.556 239.316C236.398 240.111 236.176 240.9 235.888 241.683L234.527 245.318Z" fill="#2D2D2D"/>
+<path d="M243.838 253.846V241.429H245.224V242.596C245.551 242.139 245.92 241.798 246.331 241.573C246.743 241.342 247.242 241.226 247.828 241.226C248.594 241.226 249.27 241.424 249.856 241.818C250.442 242.213 250.885 242.77 251.183 243.492C251.482 244.207 251.631 244.994 251.631 245.85C251.631 246.769 251.465 247.597 251.133 248.335C250.806 249.068 250.327 249.631 249.696 250.026C249.07 250.415 248.411 250.609 247.718 250.609C247.211 250.609 246.754 250.502 246.348 250.288C245.948 250.074 245.619 249.803 245.359 249.476V253.846H243.838ZM245.216 245.968C245.216 247.124 245.45 247.977 245.917 248.53C246.385 249.082 246.951 249.358 247.616 249.358C248.292 249.358 248.87 249.073 249.349 248.504C249.834 247.929 250.076 247.042 250.076 245.842C250.076 244.698 249.839 243.841 249.366 243.272C248.898 242.703 248.338 242.418 247.684 242.418C247.036 242.418 246.461 242.723 245.96 243.331C245.464 243.934 245.216 244.813 245.216 245.968Z" fill="#2D2D2D"/>
+<path d="M253.647 253.846V241.429H255.033V242.596C255.36 242.139 255.729 241.798 256.141 241.573C256.552 241.342 257.051 241.226 257.637 241.226C258.403 241.226 259.08 241.424 259.666 241.818C260.252 242.213 260.694 242.77 260.993 243.492C261.291 244.207 261.441 244.994 261.441 245.85C261.441 246.769 261.274 247.597 260.942 248.335C260.615 249.068 260.136 249.631 259.505 250.026C258.879 250.415 258.22 250.609 257.527 250.609C257.02 250.609 256.563 250.502 256.158 250.288C255.758 250.074 255.428 249.803 255.169 249.476V253.846H253.647ZM255.025 245.968C255.025 247.124 255.259 247.977 255.727 248.53C256.194 249.082 256.761 249.358 257.426 249.358C258.102 249.358 258.679 249.073 259.158 248.504C259.643 247.929 259.885 247.042 259.885 245.842C259.885 244.698 259.649 243.841 259.175 243.272C258.708 242.703 258.147 242.418 257.493 242.418C256.845 242.418 256.27 242.723 255.769 243.331C255.273 243.934 255.025 244.813 255.025 245.968Z" fill="#2D2D2D"/>
+<path d="M263.423 250.406V238.014H264.944V250.406H263.423Z" fill="#2D2D2D"/>
+<path d="M267.493 239.764V238.014H269.014V239.764H267.493ZM267.493 250.406V241.429H269.014V250.406H267.493Z" fill="#2D2D2D"/>
+<path d="M277.37 247.118L278.866 247.312C278.702 248.344 278.282 249.152 277.606 249.738C276.936 250.319 276.11 250.609 275.13 250.609C273.901 250.609 272.912 250.209 272.163 249.409C271.419 248.603 271.047 247.45 271.047 245.951C271.047 244.982 271.207 244.134 271.529 243.407C271.85 242.68 272.337 242.136 272.991 241.776C273.65 241.41 274.366 241.226 275.138 241.226C276.113 241.226 276.91 241.474 277.53 241.97C278.15 242.46 278.547 243.159 278.722 244.067L277.243 244.295C277.102 243.692 276.851 243.238 276.49 242.934C276.135 242.63 275.704 242.477 275.197 242.477C274.431 242.477 273.808 242.754 273.329 243.306C272.85 243.852 272.611 244.72 272.611 245.909C272.611 247.115 272.842 247.991 273.304 248.538C273.766 249.085 274.369 249.358 275.113 249.358C275.71 249.358 276.209 249.175 276.609 248.809C277.009 248.442 277.263 247.879 277.37 247.118Z" fill="#2D2D2D"/>
+<path d="M286.198 249.299C285.635 249.778 285.091 250.116 284.567 250.313C284.049 250.51 283.491 250.609 282.893 250.609C281.907 250.609 281.149 250.37 280.62 249.891C280.09 249.406 279.825 248.789 279.825 248.039C279.825 247.6 279.924 247.2 280.121 246.839C280.324 246.473 280.586 246.18 280.907 245.96C281.234 245.74 281.6 245.574 282.006 245.461C282.304 245.382 282.755 245.306 283.358 245.233C284.587 245.086 285.491 244.912 286.072 244.709C286.077 244.5 286.08 244.368 286.08 244.312C286.08 243.692 285.936 243.255 285.649 243.001C285.26 242.658 284.683 242.486 283.916 242.486C283.2 242.486 282.671 242.613 282.327 242.866C281.989 243.114 281.738 243.557 281.575 244.193L280.087 243.99C280.222 243.354 280.445 242.841 280.755 242.452C281.065 242.058 281.513 241.756 282.099 241.548C282.685 241.333 283.364 241.226 284.136 241.226C284.902 241.226 285.525 241.317 286.004 241.497C286.483 241.677 286.835 241.905 287.061 242.182C287.286 242.452 287.444 242.796 287.534 243.213C287.585 243.472 287.61 243.94 287.61 244.616V246.645C287.61 248.059 287.641 248.955 287.703 249.333C287.771 249.705 287.9 250.062 288.092 250.406H286.503C286.345 250.091 286.243 249.721 286.198 249.299ZM286.072 245.901C285.519 246.126 284.691 246.318 283.586 246.476C282.961 246.566 282.519 246.667 282.259 246.78C282 246.893 281.8 247.059 281.659 247.279C281.518 247.493 281.448 247.732 281.448 247.997C281.448 248.403 281.6 248.741 281.904 249.011C282.214 249.282 282.665 249.417 283.257 249.417C283.843 249.417 284.364 249.29 284.821 249.037C285.277 248.778 285.612 248.425 285.826 247.98C285.99 247.636 286.072 247.129 286.072 246.459V245.901Z" fill="#2D2D2D"/>
+<path d="M293.472 249.045L293.692 250.389C293.263 250.479 292.88 250.524 292.542 250.524C291.99 250.524 291.562 250.437 291.257 250.262C290.953 250.088 290.739 249.86 290.615 249.578C290.491 249.29 290.429 248.69 290.429 247.777V242.613H289.313V241.429H290.429V239.206L291.942 238.293V241.429H293.472V242.613H291.942V247.862C291.942 248.296 291.967 248.575 292.018 248.699C292.074 248.823 292.162 248.921 292.28 248.995C292.404 249.068 292.579 249.104 292.804 249.104C292.973 249.104 293.196 249.085 293.472 249.045Z" fill="#2D2D2D"/>
+<path d="M295.15 239.764V238.014H296.671V239.764H295.15ZM295.15 250.406V241.429H296.671V250.406H295.15Z" fill="#2D2D2D"/>
+<path d="M298.602 245.918C298.602 244.255 299.065 243.024 299.989 242.224C300.761 241.559 301.702 241.226 302.812 241.226C304.046 241.226 305.055 241.632 305.838 242.444C306.621 243.249 307.013 244.365 307.013 245.791C307.013 246.946 306.838 247.856 306.489 248.521C306.145 249.18 305.641 249.693 304.976 250.06C304.317 250.426 303.595 250.609 302.812 250.609C301.555 250.609 300.538 250.206 299.76 249.4C298.988 248.594 298.602 247.434 298.602 245.918ZM300.166 245.918C300.166 247.067 300.417 247.929 300.919 248.504C301.42 249.073 302.051 249.358 302.812 249.358C303.567 249.358 304.195 249.071 304.697 248.496C305.198 247.921 305.449 247.045 305.449 245.867C305.449 244.757 305.196 243.917 304.688 243.348C304.187 242.773 303.561 242.486 302.812 242.486C302.051 242.486 301.42 242.77 300.919 243.34C300.417 243.909 300.166 244.768 300.166 245.918Z" fill="#2D2D2D"/>
+<path d="M308.978 250.406V241.429H310.347V242.706C311.007 241.719 311.959 241.226 313.205 241.226C313.746 241.226 314.241 241.325 314.692 241.522C315.149 241.714 315.49 241.967 315.715 242.283C315.94 242.599 316.098 242.973 316.188 243.407C316.245 243.689 316.273 244.182 316.273 244.886V250.406H314.751V244.946C314.751 244.326 314.692 243.864 314.574 243.559C314.456 243.249 314.244 243.004 313.94 242.824C313.641 242.638 313.289 242.545 312.883 242.545C312.235 242.545 311.675 242.751 311.201 243.162C310.733 243.573 310.5 244.354 310.5 245.503V250.406H308.978Z" fill="#2D2D2D"/>
+<path d="M222.374 296.941V298.111H215.821C215.812 297.818 215.86 297.536 215.963 297.265C216.13 296.819 216.396 296.379 216.761 295.947C217.131 295.514 217.663 295.013 218.357 294.445C219.435 293.562 220.163 292.863 220.541 292.349C220.92 291.831 221.109 291.342 221.109 290.882C221.109 290.399 220.936 289.994 220.589 289.665C220.246 289.331 219.797 289.164 219.243 289.164C218.657 289.164 218.188 289.34 217.836 289.692C217.485 290.043 217.307 290.53 217.302 291.152L216.051 291.024C216.137 290.091 216.459 289.381 217.018 288.894C217.577 288.402 218.328 288.157 219.27 288.157C220.221 288.157 220.974 288.42 221.529 288.948C222.083 289.475 222.36 290.129 222.36 290.909C222.36 291.306 222.279 291.695 222.117 292.079C221.955 292.462 221.684 292.865 221.305 293.289C220.931 293.713 220.307 294.294 219.432 295.034C218.702 295.647 218.233 296.064 218.026 296.285C217.818 296.501 217.647 296.72 217.512 296.941H222.374Z" fill="#6E6E6E"/>
+<path d="M227.751 295.135V293.911H231.491V295.135H227.751Z" fill="#6E6E6E"/>
+<path d="M237.193 298.111V288.197H240.932C241.59 288.197 242.093 288.229 242.44 288.292C242.927 288.373 243.335 288.528 243.664 288.758C243.993 288.984 244.257 289.302 244.455 289.712C244.658 290.122 244.76 290.573 244.76 291.064C244.76 291.907 244.491 292.622 243.955 293.208C243.419 293.79 242.449 294.08 241.047 294.08H238.505V298.111H237.193ZM238.505 292.91H241.067C241.915 292.91 242.517 292.753 242.873 292.437C243.229 292.121 243.407 291.677 243.407 291.105C243.407 290.69 243.301 290.336 243.089 290.043C242.882 289.746 242.607 289.55 242.264 289.455C242.044 289.396 241.636 289.367 241.04 289.367H238.505V292.91Z" fill="#6E6E6E"/>
+<path d="M246.448 298.111V288.197H247.665V291.754C248.233 291.096 248.95 290.767 249.815 290.767C250.347 290.767 250.809 290.873 251.201 291.085C251.594 291.292 251.873 291.581 252.04 291.95C252.211 292.32 252.297 292.856 252.297 293.56V298.111H251.08V293.56C251.08 292.951 250.947 292.509 250.681 292.234C250.419 291.955 250.047 291.815 249.565 291.815C249.204 291.815 248.864 291.91 248.544 292.099C248.228 292.284 248.003 292.536 247.868 292.856C247.732 293.176 247.665 293.618 247.665 294.182V298.111H246.448Z" fill="#6E6E6E"/>
+<path d="M259.016 297.225C258.565 297.608 258.13 297.878 257.711 298.036C257.296 298.194 256.85 298.273 256.372 298.273C255.583 298.273 254.977 298.081 254.553 297.698C254.129 297.31 253.917 296.817 253.917 296.217C253.917 295.866 253.996 295.545 254.154 295.257C254.316 294.964 254.526 294.729 254.783 294.554C255.044 294.378 255.337 294.245 255.662 294.155C255.901 294.092 256.261 294.031 256.744 293.972C257.727 293.855 258.45 293.715 258.914 293.553C258.919 293.386 258.921 293.28 258.921 293.235C258.921 292.739 258.806 292.39 258.576 292.187C258.265 291.912 257.803 291.774 257.19 291.774C256.618 291.774 256.194 291.876 255.919 292.079C255.648 292.277 255.448 292.631 255.317 293.14L254.127 292.978C254.235 292.469 254.413 292.058 254.661 291.747C254.909 291.432 255.267 291.191 255.736 291.024C256.205 290.852 256.748 290.767 257.366 290.767C257.979 290.767 258.477 290.839 258.86 290.983C259.244 291.127 259.525 291.31 259.706 291.531C259.886 291.747 260.012 292.022 260.084 292.356C260.125 292.563 260.145 292.937 260.145 293.478V295.101C260.145 296.233 260.17 296.95 260.22 297.252C260.274 297.549 260.377 297.836 260.531 298.111H259.259C259.133 297.858 259.052 297.563 259.016 297.225ZM258.914 294.506C258.473 294.687 257.81 294.84 256.926 294.966C256.426 295.038 256.072 295.119 255.865 295.21C255.657 295.3 255.497 295.433 255.385 295.609C255.272 295.78 255.216 295.971 255.216 296.183C255.216 296.508 255.337 296.778 255.581 296.995C255.829 297.211 256.189 297.319 256.663 297.319C257.132 297.319 257.549 297.218 257.914 297.015C258.279 296.808 258.547 296.526 258.718 296.17C258.849 295.895 258.914 295.489 258.914 294.953V294.506Z" fill="#6E6E6E"/>
+<path d="M261.725 295.967L262.929 295.778C262.996 296.26 263.183 296.63 263.49 296.887C263.801 297.144 264.234 297.272 264.788 297.272C265.347 297.272 265.762 297.159 266.032 296.934C266.303 296.704 266.438 296.436 266.438 296.129C266.438 295.854 266.319 295.638 266.08 295.48C265.913 295.372 265.498 295.234 264.836 295.068C263.943 294.842 263.323 294.648 262.976 294.486C262.633 294.319 262.372 294.092 262.191 293.803C262.016 293.51 261.928 293.188 261.928 292.836C261.928 292.516 262 292.221 262.144 291.95C262.293 291.675 262.494 291.448 262.746 291.267C262.935 291.127 263.192 291.01 263.517 290.916C263.846 290.816 264.198 290.767 264.572 290.767C265.135 290.767 265.629 290.848 266.053 291.01C266.481 291.173 266.797 291.393 266.999 291.673C267.202 291.948 267.342 292.318 267.419 292.782L266.229 292.944C266.174 292.575 266.017 292.286 265.755 292.079C265.498 291.871 265.133 291.768 264.66 291.768C264.101 291.768 263.702 291.86 263.463 292.045C263.224 292.23 263.104 292.446 263.104 292.694C263.104 292.852 263.154 292.994 263.253 293.12C263.352 293.251 263.508 293.359 263.72 293.445C263.841 293.49 264.2 293.593 264.795 293.756C265.656 293.986 266.256 294.175 266.594 294.324C266.936 294.468 267.205 294.68 267.398 294.959C267.592 295.239 267.689 295.586 267.689 296.001C267.689 296.407 267.57 296.79 267.331 297.15C267.096 297.507 266.756 297.784 266.31 297.982C265.863 298.176 265.358 298.273 264.795 298.273C263.862 298.273 263.149 298.079 262.658 297.691C262.171 297.304 261.86 296.729 261.725 295.967Z" fill="#6E6E6E"/>
+<path d="M274.226 295.798L275.483 295.953C275.285 296.688 274.918 297.259 274.381 297.664C273.845 298.07 273.159 298.273 272.325 298.273C271.275 298.273 270.441 297.951 269.823 297.306C269.21 296.657 268.904 295.748 268.904 294.581C268.904 293.373 269.215 292.435 269.837 291.768C270.459 291.1 271.266 290.767 272.258 290.767C273.218 290.767 274.002 291.094 274.611 291.747C275.22 292.401 275.524 293.321 275.524 294.506C275.524 294.578 275.522 294.687 275.517 294.831H270.161C270.207 295.62 270.43 296.224 270.831 296.643C271.232 297.062 271.733 297.272 272.332 297.272C272.778 297.272 273.159 297.155 273.475 296.92C273.791 296.686 274.041 296.312 274.226 295.798ZM270.229 293.83H274.239C274.185 293.226 274.032 292.773 273.779 292.471C273.392 292.002 272.889 291.768 272.271 291.768C271.712 291.768 271.241 291.955 270.858 292.329C270.479 292.703 270.27 293.203 270.229 293.83Z" fill="#6E6E6E"/>
+<path d="M285.905 295.48L287.102 295.636C286.972 296.461 286.636 297.108 286.095 297.576C285.558 298.041 284.898 298.273 284.113 298.273C283.131 298.273 282.339 297.953 281.74 297.313C281.145 296.668 280.847 295.746 280.847 294.547C280.847 293.771 280.976 293.093 281.233 292.511C281.49 291.93 281.88 291.495 282.403 291.206C282.93 290.913 283.503 290.767 284.12 290.767C284.9 290.767 285.538 290.965 286.034 291.362C286.53 291.754 286.848 292.313 286.987 293.039L285.804 293.221C285.691 292.739 285.491 292.376 285.202 292.133C284.918 291.889 284.573 291.768 284.168 291.768C283.554 291.768 283.056 291.989 282.673 292.43C282.29 292.868 282.098 293.562 282.098 294.513C282.098 295.478 282.283 296.179 282.653 296.616C283.022 297.053 283.505 297.272 284.1 297.272C284.578 297.272 284.977 297.126 285.297 296.833C285.617 296.54 285.82 296.089 285.905 295.48Z" fill="#6E6E6E"/>
+<path d="M287.864 294.52C287.864 293.19 288.233 292.205 288.973 291.565C289.59 291.033 290.343 290.767 291.231 290.767C292.219 290.767 293.026 291.091 293.652 291.741C294.279 292.385 294.592 293.278 294.592 294.418C294.592 295.343 294.452 296.071 294.173 296.603C293.898 297.13 293.494 297.54 292.963 297.833C292.435 298.126 291.858 298.273 291.231 298.273C290.226 298.273 289.412 297.951 288.79 297.306C288.173 296.661 287.864 295.733 287.864 294.52ZM289.115 294.52C289.115 295.44 289.315 296.129 289.717 296.589C290.118 297.044 290.623 297.272 291.231 297.272C291.835 297.272 292.338 297.042 292.739 296.582C293.141 296.123 293.341 295.421 293.341 294.479C293.341 293.591 293.138 292.919 292.733 292.464C292.331 292.004 291.831 291.774 291.231 291.774C290.623 291.774 290.118 292.002 289.717 292.457C289.315 292.913 289.115 293.6 289.115 294.52Z" fill="#6E6E6E"/>
+<path d="M296.199 298.111V290.929H297.288V291.937C297.513 291.585 297.813 291.303 298.187 291.091C298.561 290.875 298.987 290.767 299.465 290.767C299.997 290.767 300.432 290.877 300.77 291.098C301.113 291.319 301.354 291.628 301.494 292.025C302.062 291.186 302.801 290.767 303.712 290.767C304.424 290.767 304.972 290.965 305.355 291.362C305.738 291.754 305.93 292.36 305.93 293.181V298.111H304.719V293.587C304.719 293.1 304.679 292.75 304.598 292.539C304.521 292.322 304.379 292.149 304.172 292.018C303.964 291.887 303.721 291.822 303.441 291.822C302.936 291.822 302.517 291.991 302.184 292.329C301.85 292.662 301.683 293.199 301.683 293.938V298.111H300.466V293.445C300.466 292.904 300.367 292.498 300.168 292.227C299.97 291.957 299.645 291.822 299.195 291.822C298.852 291.822 298.534 291.912 298.241 292.092C297.953 292.273 297.743 292.536 297.612 292.883C297.482 293.231 297.416 293.731 297.416 294.385V298.111H296.199Z" fill="#6E6E6E"/>
+<path d="M307.908 298.111V290.929H308.997V291.937C309.223 291.585 309.522 291.303 309.897 291.091C310.271 290.875 310.697 290.767 311.175 290.767C311.707 290.767 312.142 290.877 312.48 291.098C312.822 291.319 313.064 291.628 313.203 292.025C313.771 291.186 314.511 290.767 315.421 290.767C316.134 290.767 316.681 290.965 317.065 291.362C317.448 291.754 317.639 292.36 317.639 293.181V298.111H316.429V293.587C316.429 293.1 316.388 292.75 316.307 292.539C316.231 292.322 316.089 292.149 315.881 292.018C315.674 291.887 315.43 291.822 315.151 291.822C314.646 291.822 314.227 291.991 313.893 292.329C313.559 292.662 313.393 293.199 313.393 293.938V298.111H312.175V293.445C312.175 292.904 312.076 292.498 311.878 292.227C311.68 291.957 311.355 291.822 310.904 291.822C310.562 291.822 310.244 291.912 309.951 292.092C309.662 292.273 309.453 292.536 309.322 292.883C309.191 293.231 309.126 293.731 309.126 294.385V298.111H307.908Z" fill="#6E6E6E"/>
+<path d="M319.625 289.597V288.197H320.842V289.597H319.625ZM319.625 298.111V290.929H320.842V298.111H319.625Z" fill="#6E6E6E"/>
+<path d="M325.532 297.022L325.708 298.097C325.366 298.169 325.059 298.205 324.788 298.205C324.347 298.205 324.004 298.135 323.761 297.996C323.517 297.856 323.346 297.673 323.247 297.448C323.147 297.218 323.098 296.738 323.098 296.008V291.876H322.205V290.929H323.098V289.151L324.308 288.42V290.929H325.532V291.876H324.308V296.075C324.308 296.422 324.329 296.645 324.369 296.745C324.414 296.844 324.484 296.923 324.579 296.981C324.678 297.04 324.818 297.069 324.998 297.069C325.133 297.069 325.311 297.053 325.532 297.022Z" fill="#6E6E6E"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M274.627 282.205L274.627 267.232L276.358 267.232L276.358 282.205L274.627 282.205Z" fill="#2D2D2D"/>
+<path d="M101.576 503.888V426.964C101.576 426.964 109.831 434.772 135.486 434.772C161.142 434.772 170.288 426.071 170.288 426.071V503.888C160.147 519.431 104.851 515.249 101.576 503.888Z" fill="white"/>
+<path d="M171.191 423.88C171.191 430.082 155.361 435.147 135.538 435.147C115.716 435.147 99.9818 430.12 99.9818 423.919C99.9818 417.718 115.716 412.69 135.538 412.69C155.361 412.69 171.191 417.679 171.191 423.88Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M167.368 426.873C168.975 425.666 169.46 424.636 169.46 423.88C169.46 423.126 168.977 422.102 167.372 420.903C165.795 419.725 163.401 418.593 160.279 417.611C154.055 415.656 145.326 414.422 135.538 414.422C125.752 414.422 117.048 415.665 110.85 417.629C107.74 418.615 105.358 419.752 103.791 420.931C102.196 422.132 101.713 423.16 101.713 423.919C101.713 424.678 102.196 425.705 103.791 426.906C105.358 428.086 107.74 429.223 110.85 430.208C117.048 432.173 125.752 433.416 135.538 433.416C145.323 433.416 154.051 432.163 160.275 430.189C163.396 429.199 165.791 428.057 167.368 426.873ZM135.538 435.147C155.361 435.147 171.191 430.082 171.191 423.88C171.191 417.679 155.361 412.69 135.538 412.69C115.716 412.69 99.9818 417.718 99.9818 423.919C99.9818 430.12 115.716 435.147 135.538 435.147Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M100.127 503.467L99.8648 423.174L101.596 423.166L101.858 503.459L100.127 503.467Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M169.481 504.015L169.481 424.036L171.212 424.036L171.212 504.015L169.481 504.015Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M111.416 509.648C117.593 511.567 126.18 512.767 135.703 512.767C145.225 512.767 153.812 511.567 159.99 509.648C163.083 508.687 165.524 507.56 167.173 506.349C168.839 505.125 169.547 503.932 169.547 502.849H171.278C171.278 504.744 170.044 506.388 168.197 507.744C166.333 509.114 163.691 510.311 160.503 511.301C154.118 513.285 145.35 514.498 135.703 514.498C126.056 514.498 117.288 513.285 110.902 511.301C107.715 510.311 105.073 509.114 103.208 507.744C101.361 506.388 100.127 504.744 100.127 502.849H101.858C101.858 503.932 102.567 505.125 104.233 506.349C105.881 507.56 108.322 508.687 111.416 509.648Z" fill="#ED1C24"/>
+<path d="M233.323 504.637V426.964C233.323 426.964 241.577 434.772 267.233 434.772C292.888 434.772 302.035 426.071 302.035 426.071V504.637C302.035 504.637 298.341 514.178 267.233 514.545C236.125 514.911 233.323 504.637 233.323 504.637Z" fill="white"/>
+<path d="M302.841 423.919C302.841 430.12 287.108 435.147 267.285 435.147C247.462 435.147 231.728 430.12 231.728 423.919C231.728 417.718 247.462 412.69 267.285 412.69C287.108 412.69 302.841 417.718 302.841 423.919Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M299.032 426.906C300.628 425.705 301.11 424.678 301.11 423.919C301.11 423.16 300.628 422.132 299.032 420.931C297.465 419.752 295.083 418.615 291.974 417.629C285.775 415.665 277.071 414.422 267.285 414.422C257.499 414.422 248.795 415.665 242.596 417.629C239.487 418.615 237.105 419.752 235.538 420.931C233.942 422.132 233.459 423.16 233.459 423.919C233.459 424.678 233.942 425.705 235.538 426.906C237.105 428.086 239.487 429.223 242.596 430.208C248.795 432.173 257.499 433.416 267.285 433.416C277.071 433.416 285.775 432.173 291.974 430.208C295.083 429.223 297.465 428.086 299.032 426.906ZM267.285 435.147C287.108 435.147 302.841 430.12 302.841 423.919C302.841 417.718 287.108 412.69 267.285 412.69C247.462 412.69 231.728 417.718 231.728 423.919C231.728 430.12 247.462 435.147 267.285 435.147Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M231.874 503.467L231.611 423.174L233.342 423.166L233.605 503.459L231.874 503.467Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M301.227 504.015L301.227 423.17L302.958 423.17L302.958 504.015L301.227 504.015Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M243.162 510.396C249.34 512.315 257.927 513.516 267.449 513.516C276.972 513.516 285.559 512.315 291.736 510.396C294.83 509.435 297.271 508.308 298.919 507.098C300.585 505.874 301.294 504.681 301.294 503.598H303.025C303.025 505.492 301.791 507.136 299.944 508.493C298.08 509.862 295.437 511.059 292.25 512.049C285.865 514.033 277.096 515.247 267.449 515.247C257.802 515.247 249.034 514.033 242.649 512.049C239.461 511.059 236.819 509.862 234.955 508.493C233.108 507.136 231.874 505.492 231.874 503.598H233.605C233.605 504.681 234.313 505.874 235.979 507.098C237.628 508.308 240.069 509.435 243.162 510.396Z" fill="#ED1C24"/>
+<path d="M167.699 526.554V449.16C167.699 449.16 175.93 455.545 201.514 455.545C227.098 455.545 236.22 448.43 236.22 448.43V526.126C225.978 540.239 173.971 538.421 167.699 526.554Z" fill="white"/>
+<path d="M237.162 446.376C237.162 452.577 221.385 457.604 201.508 457.604C181.632 457.604 165.855 452.577 165.855 446.376C165.855 440.174 181.632 435.147 201.508 435.147C221.385 435.147 237.162 440.174 237.162 446.376Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M233.347 449.362C234.948 448.16 235.431 447.133 235.431 446.376C235.431 445.618 234.948 444.591 233.347 443.39C231.775 442.209 229.385 441.072 226.267 440.087C220.051 438.122 211.322 436.878 201.508 436.878C191.695 436.878 182.966 438.122 176.75 440.087C173.631 441.072 171.242 442.209 169.67 443.39C168.069 444.591 167.586 445.618 167.586 446.376C167.586 447.133 168.069 448.16 169.67 449.362C171.242 450.542 173.631 451.679 176.75 452.665C182.966 454.63 191.695 455.873 201.508 455.873C211.322 455.873 220.051 454.63 226.267 452.665C229.385 451.679 231.775 450.542 233.347 449.362ZM201.508 457.604C221.385 457.604 237.162 452.577 237.162 446.376C237.162 440.174 221.385 435.147 201.508 435.147C181.632 435.147 165.855 440.174 165.855 446.376C165.855 452.577 181.632 457.604 201.508 457.604Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M166 525.924L165.738 445.631L167.469 445.623L167.732 525.916L166 525.924Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M235.354 526.472L235.354 445.627L237.085 445.627L237.085 526.472L235.354 526.472Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M177.289 532.105C183.467 534.024 192.053 535.224 201.576 535.224C211.099 535.224 219.686 534.024 225.863 532.105C228.957 531.143 231.397 530.017 233.046 528.806C234.712 527.582 235.42 526.389 235.42 525.306H237.152C237.152 527.201 235.917 528.845 234.071 530.201C232.206 531.57 229.564 532.767 226.376 533.758C219.991 535.741 211.223 536.955 201.576 536.955C191.929 536.955 183.161 535.741 176.776 533.758C173.588 532.767 170.946 531.57 169.081 530.201C167.235 528.845 166 527.201 166 525.306H167.732C167.732 526.389 168.44 527.582 170.106 528.806C171.755 530.017 174.195 531.143 177.289 532.105Z" fill="#ED1C24"/>
+<path d="M247.158 522.139C247.158 522.139 239.298 527.004 246.705 531.836C248.13 532.777 253.298 535.393 253.151 537.814C253.151 537.814 256.283 533.109 251.704 530.149C246.999 527.119 245.823 523.883 247.158 522.139Z" fill="#ED1C24"/>
+<path d="M244.421 531.434C244.421 531.434 241.617 535.749 247.135 536.632C247.678 536.701 251.67 537.126 252.71 538.457C252.71 538.457 252.62 536.162 249.363 534.808C246.117 533.454 244.783 533.121 244.421 531.434Z" fill="#ED1C24"/>
+<path d="M255.277 526.901C251.907 523.321 250.969 521.106 252.416 518.237C252.416 518.237 242.363 522.162 252.292 529.127C255.843 531.618 255.255 534.165 255.255 534.257C255.809 533.672 258.647 530.481 255.277 526.901Z" fill="#ED1C24"/>
+<path d="M260.994 536.189V526.275H262.34L267.547 534.059V526.275H268.805V536.189H267.459L262.252 528.399V536.189H260.994Z" fill="#2D2D2D"/>
+<path d="M270.79 531.361C270.79 529.715 271.232 528.428 272.116 527.499C272.999 526.566 274.14 526.099 275.537 526.099C276.453 526.099 277.278 526.318 278.012 526.755C278.747 527.193 279.306 527.804 279.689 528.588C280.077 529.368 280.271 530.254 280.271 531.246C280.271 532.251 280.068 533.15 279.662 533.944C279.257 534.737 278.682 535.339 277.938 535.749C277.194 536.155 276.392 536.358 275.531 536.358C274.597 536.358 273.763 536.132 273.029 535.682C272.294 535.231 271.737 534.615 271.358 533.835C270.98 533.056 270.79 532.231 270.79 531.361ZM272.143 531.381C272.143 532.575 272.463 533.518 273.103 534.207C273.748 534.893 274.555 535.235 275.524 535.235C276.511 535.235 277.323 534.888 277.958 534.194C278.598 533.5 278.919 532.515 278.919 531.239C278.919 530.432 278.781 529.729 278.506 529.129C278.236 528.525 277.837 528.058 277.309 527.729C276.786 527.396 276.198 527.229 275.544 527.229C274.615 527.229 273.815 527.549 273.144 528.189C272.476 528.825 272.143 529.889 272.143 531.381Z" fill="#2D2D2D"/>
+<path d="M282.141 536.189V526.275H285.556C286.327 526.275 286.916 526.323 287.321 526.417C287.889 526.548 288.374 526.785 288.775 527.127C289.298 527.569 289.688 528.135 289.945 528.825C290.207 529.51 290.337 530.294 290.337 531.178C290.337 531.931 290.249 532.598 290.074 533.18C289.898 533.761 289.672 534.243 289.397 534.627C289.122 535.005 288.82 535.305 288.491 535.526C288.167 535.742 287.772 535.907 287.308 536.02C286.848 536.132 286.318 536.189 285.719 536.189H282.141ZM283.453 535.019H285.57C286.224 535.019 286.735 534.958 287.105 534.836C287.479 534.715 287.777 534.543 287.998 534.322C288.309 534.011 288.55 533.594 288.721 533.071C288.897 532.544 288.985 531.906 288.985 531.158C288.985 530.121 288.814 529.325 288.471 528.771C288.133 528.212 287.72 527.837 287.233 527.648C286.882 527.513 286.316 527.445 285.536 527.445H283.453V535.019Z" fill="#2D2D2D"/>
+<path d="M292.35 536.189V526.275H299.518V527.445H293.662V530.481H299.146V531.645H293.662V535.019H299.748V536.189H292.35Z" fill="#2D2D2D"/>
+<path d="M106.373 522.139C106.373 522.139 98.5137 527.004 105.921 531.836C107.346 532.777 112.514 535.393 112.367 537.814C112.367 537.814 115.499 533.109 110.919 530.149C106.215 527.119 105.039 523.883 106.373 522.139Z" fill="#ED1C24"/>
+<path d="M103.637 531.434C103.637 531.434 100.832 535.749 106.351 536.632C106.893 536.701 110.885 537.126 111.926 538.457C111.926 538.457 111.835 536.162 108.578 534.808C105.333 533.454 103.998 533.121 103.637 531.434Z" fill="#ED1C24"/>
+<path d="M114.493 526.901C111.123 523.321 110.184 521.106 111.632 518.237C111.632 518.237 101.579 522.162 111.507 529.127C115.058 531.618 114.47 534.165 114.47 534.257C115.024 533.672 117.863 530.481 114.493 526.901Z" fill="#ED1C24"/>
+<path d="M120.21 536.189V526.275H121.556L126.763 534.059V526.275H128.02V536.189H126.675L121.468 528.399V536.189H120.21Z" fill="#2D2D2D"/>
+<path d="M130.006 531.361C130.006 529.715 130.448 528.428 131.331 527.499C132.215 526.566 133.355 526.099 134.753 526.099C135.668 526.099 136.493 526.318 137.228 526.755C137.963 527.193 138.522 527.804 138.905 528.588C139.293 529.368 139.487 530.254 139.487 531.246C139.487 532.251 139.284 533.15 138.878 533.944C138.472 534.737 137.897 535.339 137.154 535.749C136.41 536.155 135.607 536.358 134.746 536.358C133.813 536.358 132.979 536.132 132.244 535.682C131.509 535.231 130.953 534.615 130.574 533.835C130.195 533.056 130.006 532.231 130.006 531.361ZM131.358 531.381C131.358 532.575 131.678 533.518 132.319 534.207C132.963 534.893 133.77 535.235 134.739 535.235C135.727 535.235 136.538 534.888 137.174 534.194C137.814 533.5 138.134 532.515 138.134 531.239C138.134 530.432 137.997 529.729 137.722 529.129C137.451 528.525 137.052 528.058 136.525 527.729C136.002 527.396 135.413 527.229 134.76 527.229C133.831 527.229 133.031 527.549 132.359 528.189C131.692 528.825 131.358 529.889 131.358 531.381Z" fill="#2D2D2D"/>
+<path d="M141.357 536.189V526.275H144.772C145.543 526.275 146.131 526.323 146.537 526.417C147.105 526.548 147.59 526.785 147.991 527.127C148.514 527.569 148.904 528.135 149.161 528.825C149.422 529.51 149.553 530.294 149.553 531.178C149.553 531.931 149.465 532.598 149.289 533.18C149.113 533.761 148.888 534.243 148.613 534.627C148.338 535.005 148.036 535.305 147.707 535.526C147.382 535.742 146.988 535.907 146.523 536.02C146.064 536.132 145.534 536.189 144.934 536.189H141.357ZM142.669 535.019H144.785C145.439 535.019 145.951 534.958 146.321 534.836C146.695 534.715 146.992 534.543 147.213 534.322C147.524 534.011 147.765 533.594 147.937 533.071C148.113 532.544 148.2 531.906 148.2 531.158C148.2 530.121 148.029 529.325 147.686 528.771C147.348 528.212 146.936 527.837 146.449 527.648C146.097 527.513 145.532 527.445 144.752 527.445H142.669V535.019Z" fill="#2D2D2D"/>
+<path d="M151.565 536.189V526.275H158.733V527.445H152.877V530.481H158.361V531.645H152.877V535.019H158.963V536.189H151.565Z" fill="#2D2D2D"/>
+<path d="M175.989 545.344C175.989 545.344 168.13 550.21 175.537 555.041C176.962 555.982 182.13 558.598 181.983 561.019C181.983 561.019 185.115 556.315 180.535 553.354C175.831 550.325 174.655 547.089 175.989 545.344Z" fill="#ED1C24"/>
+<path d="M173.253 554.639C173.253 554.639 170.448 558.954 175.967 559.838C176.509 559.906 180.501 560.331 181.542 561.662C181.542 561.662 181.451 559.367 178.194 558.013C174.949 556.659 173.614 556.326 173.253 554.639Z" fill="#ED1C24"/>
+<path d="M184.109 550.107C180.739 546.526 179.8 544.312 181.248 541.443C181.248 541.443 171.195 545.367 181.123 552.333C184.674 554.823 184.086 557.37 184.086 557.462C184.64 556.877 187.479 553.687 184.109 550.107Z" fill="#ED1C24"/>
+<path d="M189.826 559.394V549.481H191.172L196.379 557.264V549.481H197.636V559.394H196.291L191.084 551.604V559.394H189.826Z" fill="#2D2D2D"/>
+<path d="M199.622 554.566C199.622 552.92 200.064 551.633 200.947 550.705C201.831 549.771 202.971 549.305 204.369 549.305C205.284 549.305 206.109 549.523 206.844 549.961C207.579 550.398 208.138 551.009 208.521 551.793C208.909 552.573 209.103 553.459 209.103 554.451C209.103 555.456 208.9 556.356 208.494 557.149C208.088 557.942 207.513 558.544 206.77 558.955C206.026 559.36 205.223 559.563 204.362 559.563C203.429 559.563 202.595 559.338 201.86 558.887C201.125 558.436 200.569 557.821 200.19 557.041C199.811 556.261 199.622 555.436 199.622 554.566ZM200.974 554.586C200.974 555.781 201.294 556.723 201.935 557.413C202.579 558.098 203.386 558.441 204.355 558.441C205.343 558.441 206.154 558.093 206.79 557.399C207.43 556.705 207.75 555.72 207.75 554.444C207.75 553.637 207.613 552.934 207.338 552.334C207.067 551.73 206.668 551.264 206.141 550.934C205.618 550.601 205.029 550.434 204.376 550.434C203.447 550.434 202.647 550.754 201.975 551.394C201.308 552.03 200.974 553.094 200.974 554.586Z" fill="#2D2D2D"/>
+<path d="M210.973 559.394V549.481H214.388C215.159 549.481 215.747 549.528 216.153 549.623C216.721 549.753 217.206 549.99 217.607 550.333C218.13 550.774 218.52 551.34 218.777 552.03C219.038 552.715 219.169 553.5 219.169 554.383C219.169 555.136 219.081 555.803 218.905 556.385C218.729 556.966 218.504 557.449 218.229 557.832C217.954 558.211 217.652 558.51 217.323 558.731C216.998 558.948 216.604 559.112 216.139 559.225C215.68 559.338 215.15 559.394 214.55 559.394H210.973ZM212.285 558.224H214.401C215.055 558.224 215.567 558.163 215.937 558.042C216.311 557.92 216.608 557.749 216.829 557.528C217.14 557.217 217.381 556.8 217.553 556.277C217.729 555.749 217.816 555.111 217.816 554.363C217.816 553.326 217.645 552.53 217.303 551.976C216.964 551.417 216.552 551.043 216.065 550.853C215.713 550.718 215.148 550.65 214.368 550.65H212.285V558.224Z" fill="#2D2D2D"/>
+<path d="M221.181 559.394V549.481H228.349V550.65H222.493V553.687H227.977V554.85H222.493V558.224H228.579V559.394H221.181Z" fill="#2D2D2D"/>
+<path d="M356.849 505.832V428.063C356.849 428.063 365.192 435.881 391.121 435.881C417.05 435.881 426.294 427.17 426.294 427.17V505.832C426.294 505.832 422.561 515.384 391.121 515.752C359.681 516.119 356.849 505.832 356.849 505.832Z" fill="white"/>
+<path d="M427.102 425.609C427.102 432.548 411.368 438.174 391.546 438.174C371.723 438.174 355.989 432.548 355.989 425.609C355.989 418.669 371.723 413.044 391.546 413.044C411.368 413.044 427.102 418.669 427.102 425.609Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M423.219 429.176C424.794 427.849 425.371 426.636 425.371 425.609C425.371 424.581 424.794 423.369 423.219 422.042C421.651 420.722 419.276 419.454 416.179 418.355C409.999 416.164 401.316 414.775 391.546 414.775C381.776 414.775 373.092 416.164 366.913 418.355C363.815 419.454 361.44 420.722 359.873 422.042C358.297 423.369 357.72 424.581 357.72 425.609C357.72 426.636 358.297 427.849 359.873 429.176C361.44 430.496 363.815 431.764 366.913 432.862C373.092 435.054 381.776 436.443 391.546 436.443C401.316 436.443 409.999 435.054 416.179 432.862C419.276 431.764 421.651 430.496 423.219 429.176ZM391.546 438.174C411.368 438.174 427.102 432.548 427.102 425.609C427.102 418.669 411.368 413.044 391.546 413.044C371.723 413.044 355.989 418.669 355.989 425.609C355.989 432.548 371.723 438.174 391.546 438.174Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M355.802 503.876L355.802 426.282L357.534 426.282L357.534 503.876L355.802 503.876Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M425.566 503.956L425.646 425.142L427.377 425.144L427.297 503.958L425.566 503.956Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M367.166 511.592C373.364 513.736 381.983 515.079 391.543 515.079C401.104 515.079 409.723 513.736 415.921 511.592C419.024 510.518 421.474 509.259 423.13 507.904C424.793 506.544 425.553 505.178 425.553 503.877H427.284C427.284 505.908 426.093 507.717 424.226 509.244C422.353 510.776 419.695 512.118 416.487 513.228C410.063 515.451 401.244 516.81 391.543 516.81C381.843 516.81 373.024 515.451 366.6 513.228C363.392 512.118 360.734 510.776 358.861 509.244C356.994 507.717 355.802 505.908 355.802 503.877H357.534C357.534 505.178 358.294 506.544 359.957 507.904C361.613 509.259 364.063 510.518 367.166 511.592Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M367.166 458.921C373.364 461.066 381.983 462.408 391.543 462.408C401.104 462.408 409.723 461.066 415.921 458.921C419.024 457.848 421.474 456.589 423.13 455.234C424.793 453.873 425.553 452.507 425.553 451.206H427.284C427.284 453.237 426.093 455.046 424.226 456.573C422.353 458.106 419.695 459.447 416.487 460.557C410.063 462.78 401.244 464.139 391.543 464.139C381.843 464.139 373.024 462.78 366.6 460.557C363.392 459.447 360.734 458.106 358.861 456.573C356.994 455.046 355.802 453.237 355.802 451.206H357.534C357.534 452.507 358.294 453.873 359.957 455.234C361.613 456.589 364.063 457.848 367.166 458.921Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M367.166 485.437C373.364 487.582 381.983 488.924 391.543 488.924C401.104 488.924 409.723 487.582 415.921 485.437C419.024 484.364 421.474 483.105 423.13 481.75C424.793 480.389 425.553 479.023 425.553 477.722H427.284C427.284 479.754 426.093 481.562 424.226 483.09C422.353 484.622 419.695 485.963 416.487 487.073C410.063 489.296 401.244 490.655 391.543 490.655C381.843 490.655 373.024 489.296 366.6 487.073C363.392 485.963 360.734 484.622 358.861 483.09C356.994 481.562 355.802 479.754 355.802 477.722H357.534C357.534 479.023 358.294 480.389 359.957 481.75C361.613 483.105 364.063 484.364 367.166 485.437Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M274.102 336.742V309.582H275.833V336.742C275.833 346.781 283.971 354.919 294.01 354.919H375.794C386.789 354.919 395.702 363.832 395.702 374.827V407.497H393.971V374.827C393.971 364.788 385.833 356.65 375.794 356.65H294.01C283.015 356.65 274.102 347.737 274.102 336.742Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M274.102 336.741V306.269H275.833V336.741C275.833 347.736 266.92 356.65 255.925 356.65H218.672C208.633 356.65 200.495 364.788 200.495 374.827V406.632H198.764V374.827C198.764 363.832 207.677 354.918 218.672 354.918H255.925C265.963 354.918 274.102 346.78 274.102 336.741Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M198.986 407.905L193.593 402.023L194.869 400.853L199.63 406.046L204.427 400.917L205.691 402.1L200.256 407.911C200.092 408.087 199.861 408.187 199.62 408.185C199.379 408.184 199.149 408.083 198.986 407.905Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M394.183 408.092L388.453 402.033L389.711 400.843L394.818 406.244L399.962 400.91L401.208 402.111L395.435 408.098C395.27 408.268 395.044 408.364 394.807 408.363C394.571 408.361 394.345 408.264 394.183 408.092Z" fill="#2D2D2D"/>
+</svg>
diff --git a/public/img/features/acid/hero.svg b/public/img/features/acid/hero.svg
new file mode 100644
index 0000000..01f9ab5
--- /dev/null
+++ b/public/img/features/acid/hero.svg
@@ -0,0 +1,14 @@
+<svg width="662" height="840" viewBox="0 0 662 840" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M185.084 376.468L185.084 286.482M495.832 376.468V286.482M340.457 339.195V249.222" stroke="white" stroke-linejoin="round"/>
+<path d="M120.791 466.21C120.791 433.645 142.237 401.08 185.13 376.234C228.022 351.388 284.24 338.964 340.457 338.964C396.675 338.964 452.893 351.387 495.785 376.234C538.678 401.08 560.124 433.645 560.124 466.21" stroke="white" stroke-width="2" stroke-linejoin="round"/>
+<path d="M495.831 556.196L495.832 466.21M185.084 556.196L185.084 466.21M340.458 503.484V593.456" stroke="white" stroke-linejoin="round"/>
+<path d="M560.124 376.382L560.124 466.297C560.124 498.84 538.678 531.383 495.785 556.212C410 605.871 270.915 605.871 185.13 556.212C142.237 531.383 120.791 498.84 120.791 466.297L120.791 376.382M560.124 376.382C560.124 408.925 538.678 441.467 495.786 466.297C452.893 491.126 396.675 503.541 340.458 503.541C284.24 503.541 228.023 491.126 185.13 466.297C142.237 441.467 120.791 408.925 120.791 376.382M560.124 376.382C560.124 343.839 538.678 311.296 495.786 286.467C410 236.808 270.915 236.808 185.13 286.467C142.237 311.296 120.791 343.839 120.791 376.382" stroke="white" stroke-width="2" stroke-linejoin="round"/>
+<path d="M65.8743 621.584L65.8743 531.598M376.622 621.584V531.598M221.248 584.311V494.338" stroke="white" stroke-linejoin="round"/>
+<path d="M1.58154 711.326C1.58161 678.761 23.0279 646.196 65.9204 621.35C108.813 596.503 165.03 584.08 221.248 584.08C277.466 584.08 333.683 596.503 376.576 621.35C419.469 646.196 440.915 678.761 440.915 711.326" stroke="white" stroke-width="2" stroke-linejoin="round"/>
+<path d="M376.622 801.312L376.622 711.326M65.8743 801.312L65.8744 711.326M221.248 748.6V838.572" stroke="white" stroke-linejoin="round"/>
+<path d="M440.915 621.498L440.915 711.413C440.915 743.956 419.469 776.499 376.576 801.328C290.791 850.987 151.706 850.987 65.9204 801.328C23.0278 776.499 1.58151 743.956 1.58154 711.413L1.58205 621.498M440.915 621.498C440.915 654.04 419.469 686.583 376.576 711.413C333.684 736.242 277.466 748.657 221.248 748.657C165.031 748.657 108.813 736.242 65.9206 711.413C23.028 686.583 1.58204 654.04 1.58205 621.498M440.915 621.498C440.915 588.955 419.469 556.412 376.576 531.582C290.791 481.924 151.706 481.924 65.9206 531.582C23.028 556.412 1.58207 588.955 1.58205 621.498" stroke="white" stroke-width="2" stroke-linejoin="round"/>
+<path d="M285.541 128.674L285.541 38.6875M596.289 128.674V38.6878M440.914 91.4002V1.42773" stroke="white" stroke-linejoin="round"/>
+<path d="M221.248 218.416C221.248 185.851 242.695 153.285 285.587 128.439C328.48 103.593 384.697 91.1697 440.915 91.1697C497.132 91.1696 553.35 103.593 596.243 128.439C639.135 153.285 660.581 185.851 660.582 218.416" stroke="white" stroke-width="2" stroke-linejoin="round"/>
+<path d="M596.288 308.402L596.289 218.416M285.541 308.402L285.541 218.416M440.915 255.689V345.661" stroke="white" stroke-linejoin="round"/>
+<path d="M660.581 128.587L660.582 218.502C660.582 251.045 639.135 283.588 596.243 308.417C510.457 358.076 371.372 358.076 285.587 308.417C242.694 283.588 221.248 251.045 221.248 218.502L221.249 128.587M660.581 128.587C660.581 161.13 639.135 193.673 596.243 218.502C553.35 243.332 497.133 255.746 440.915 255.746C384.697 255.746 328.48 243.332 285.587 218.502C242.695 193.673 221.249 161.13 221.249 128.587M660.581 128.587C660.581 96.044 639.135 63.5012 596.243 38.6718C510.458 -10.987 371.372 -10.987 285.587 38.6718C242.695 63.5013 221.249 96.044 221.249 128.587" stroke="white" stroke-width="2" stroke-linejoin="round"/>
+</svg>
diff --git a/public/img/features/acid/icon-cross.svg b/public/img/features/acid/icon-cross.svg
new file mode 100644
index 0000000..9ae953c
--- /dev/null
+++ b/public/img/features/acid/icon-cross.svg
@@ -0,0 +1,4 @@
+<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M12.7339 0.5V24.5" stroke="black" stroke-width="2"/>
+<path d="M24.7339 12.5L0.733874 12.5" stroke="black" stroke-width="2"/>
+</svg>
diff --git a/public/img/features/compute-apis/code.png b/public/img/features/compute-apis/code.png
new file mode 100644
index 0000000..a13945d
--- /dev/null
+++ b/public/img/features/compute-apis/code.png
Binary files differ
diff --git a/public/img/features/compute-apis/compute-hero.svg b/public/img/features/compute-apis/compute-hero.svg
new file mode 100644
index 0000000..d06e657
--- /dev/null
+++ b/public/img/features/compute-apis/compute-hero.svg
@@ -0,0 +1,22 @@
+<svg width="1218" height="620" viewBox="0 0 1218 620" fill="none" xmlns="http://www.w3.org/2000/svg">
+<mask id="mask0_2:378" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="1218" height="620">
+<rect width="1218" height="620" fill="#0070CC"/>
+</mask>
+<g mask="url(#mask0_2:378)">
+<path d="M1004.01 616L1212.83 793.985" stroke="white" stroke-linejoin="round"/>
+<path d="M1102.03 233.111L1158.53 354.839L1004.18 443.95L793.345 411.333L736.851 289.605L891.195 200.494L1102.03 233.111Z" fill="#0070CC" stroke="white"/>
+<path d="M737.304 289.397L793.48 410.562V584.598L737.304 463.434V289.397Z" fill="#0070CC" stroke="white"/>
+<path d="M793.48 411.113L1004 442.23V616.266L793.48 585.149V411.113Z" fill="#0070CC" stroke="white"/>
+<path d="M1158.42 354.868L1004 442.23V616.266L1158.42 528.904V354.868Z" fill="#0070CC" stroke="white"/>
+<path d="M1053.54 261.196L1091.76 343.548L987.344 403.834L844.705 381.768L806.485 299.416L910.904 239.129L1053.54 261.196Z" fill="#0070CC" stroke="white"/>
+<path d="M1052.97 35.3678L1091.4 118.17L986.407 178.786L842.989 156.599L804.561 73.7966L909.55 13.181L1052.97 35.3678Z" fill="#0070CC" stroke="white"/>
+<path d="M804.869 73.6553L843.081 156.075V274.459L804.869 192.039V73.6553Z" fill="#0070CC" stroke="white"/>
+<path d="M843.081 156.449L986.285 177.616V296L843.081 274.833V156.449Z" fill="#0070CC" stroke="white"/>
+<path d="M1091.32 118.19L986.285 177.616V296L1091.32 236.574V118.19Z" fill="#0070CC" stroke="white"/>
+<path d="M737.5 464L9 620.5" stroke="white" stroke-linejoin="round"/>
+<path d="M1084.17 572L1292.99 749.985" stroke="white" stroke-linejoin="round"/>
+<path d="M1158.17 529L1366.99 706.985" stroke="white" stroke-linejoin="round"/>
+<path d="M763.5 522L245 638.5" stroke="white" stroke-linejoin="round"/>
+<path d="M796.5 585L528 641.5" stroke="white" stroke-linejoin="round"/>
+</g>
+</svg>
diff --git a/public/img/features/compute-apis/icon-one.svg b/public/img/features/compute-apis/icon-one.svg
new file mode 100644
index 0000000..8d82226
--- /dev/null
+++ b/public/img/features/compute-apis/icon-one.svg
@@ -0,0 +1,8 @@
+<svg width="43" height="39" viewBox="0 0 43 39" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="0.9" y="0.9" width="40.5285" height="37.0604" rx="4.1" fill="white" stroke="black" stroke-width="1.8"/>
+<path d="M15.9857 23.176L15.2941 23.6701L15.7417 24.2965L16.4092 23.9129L15.9857 23.176ZM23.678 18.7556L24.3543 18.2407L23.9019 17.6465L23.2545 18.0186L23.678 18.7556ZM32.8859 31.8423C33.3511 31.9053 33.7793 31.5793 33.8423 31.1141L34.8695 23.5334C34.9326 23.0682 34.6066 22.64 34.1414 22.577C33.6762 22.5139 33.248 22.84 33.1849 23.3051L32.2718 30.0436L25.5334 29.1305C25.0682 29.0674 24.64 29.3934 24.577 29.8586C24.5139 30.3238 24.84 30.752 25.3051 30.8151L32.8859 31.8423ZM7.30841 12.4942L15.2941 23.6701L16.6772 22.6818L8.69159 11.5058L7.30841 12.4942ZM16.4092 23.9129L24.1015 19.4925L23.2545 18.0186L15.5622 22.439L16.4092 23.9129ZM23.0017 19.2704L32.3237 31.5149L33.6763 30.4851L24.3543 18.2407L23.0017 19.2704Z" fill="#ED1C24"/>
+<path d="M0.5 7.5H41" stroke="black" stroke-width="1.7"/>
+<circle cx="5.5" cy="4.5" r="1.5" fill="black"/>
+<circle cx="9.5" cy="4.5" r="1.5" fill="black"/>
+<circle cx="13.5" cy="4.5" r="1.5" fill="black"/>
+</svg>
diff --git a/public/img/features/compute-apis/icon-two.svg b/public/img/features/compute-apis/icon-two.svg
new file mode 100644
index 0000000..03e7a3a
--- /dev/null
+++ b/public/img/features/compute-apis/icon-two.svg
@@ -0,0 +1,13 @@
+<svg width="43" height="39" viewBox="0 0 43 39" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="0.9" y="0.9" width="40.5285" height="37.0604" rx="4.1" fill="white" stroke="black" stroke-width="1.8"/>
+<path d="M0.5 7.5H41" stroke="black" stroke-width="1.7"/>
+<circle cx="5.5" cy="4.5" r="1.5" fill="black"/>
+<circle cx="9.5" cy="4.5" r="1.5" fill="black"/>
+<circle cx="13.5" cy="4.5" r="1.5" fill="black"/>
+<path d="M11 18V19C11 21.2091 12.7909 23 15 23V23" stroke="black" stroke-width="1.7"/>
+<path d="M32 18V19C32 21.2091 30.2091 23 28 23V23H15" stroke="black" stroke-width="1.7"/>
+<path d="M21.5 23V27" stroke="black" stroke-width="1.7"/>
+<rect x="15.9" y="26.9" width="11.2" height="6.2" rx="1.1" fill="white" stroke="#ED1C24" stroke-width="1.8"/>
+<rect x="5.9" y="12.9" width="12.2" height="6.2" rx="1.1" fill="white" stroke="#ED1C24" stroke-width="1.8"/>
+<rect x="23.9" y="12.9" width="12.2" height="6.2" rx="1.1" fill="white" stroke="#ED1C24" stroke-width="1.8"/>
+</svg>
diff --git a/public/img/features/deployment/deploy-pic.svg b/public/img/features/deployment/deploy-pic.svg
new file mode 100644
index 0000000..7155047
--- /dev/null
+++ b/public/img/features/deployment/deploy-pic.svg
@@ -0,0 +1,33 @@
+<svg width="362" height="410" viewBox="0 0 362 410" fill="none" xmlns="http://www.w3.org/2000/svg">
+<circle cx="181" cy="224" r="134" fill="white"/>
+<path d="M162.786 191.971C162.786 191.971 115.197 220.992 160.047 249.807C168.675 255.42 199.967 271.025 199.077 285.467C199.077 285.467 218.044 257.405 190.312 239.746C161.827 221.676 154.706 202.375 162.786 191.971Z" fill="#ED1C24"/>
+<path d="M146.216 247.412C146.216 247.412 129.235 273.147 162.649 278.417C165.936 278.828 190.107 281.36 196.406 289.3C196.406 289.3 195.859 275.611 176.138 267.535C156.487 259.458 148.407 257.473 146.216 247.412Z" fill="#ED1C24"/>
+<path d="M211.95 220.376C191.545 199.021 185.862 185.811 194.627 168.7C194.627 168.7 133.754 192.108 193.873 233.654C215.374 248.507 211.813 263.702 211.813 264.249C215.168 260.758 232.355 241.731 211.95 220.376Z" fill="#ED1C24"/>
+<path d="M2.13025 353.263V292.817C2.13025 292.817 13.7894 302.954 48.0625 302.954C82.3356 302.954 93.9226 291.875 93.9226 291.875V353.263C79.6241 374.269 8.63828 367.992 2.13025 353.263Z" fill="#E0454C"/>
+<path d="M1.13025 395.954V333.322C1.13025 333.322 12.9872 345.437 47.2603 345.437C81.5334 345.437 92.9226 333.322 92.9226 333.322L93.8916 395.954C79.3167 414.241 10.001 410.812 1.13025 395.954Z" fill="#0070CC"/>
+<path d="M94 289C94 290.614 92.9756 292.327 90.7007 294.04C88.4419 295.74 85.105 297.314 80.8783 298.653C72.4362 301.329 60.6682 303 47.5 303C34.3318 303 22.5638 301.329 14.1217 298.653C9.89495 297.314 6.55809 295.74 4.29934 294.04C2.02437 292.327 1 290.614 1 289C1 287.386 2.02437 285.673 4.29934 283.96C6.55809 282.26 9.89495 280.686 14.1217 279.347C22.5638 276.671 34.3318 275 47.5 275C60.6682 275 72.4362 276.671 80.8783 279.347C85.105 280.686 88.4419 282.26 90.7007 283.96C92.9756 285.673 94 287.386 94 289Z" fill="#E0454C" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M1 288L1.35056 395.263" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M94 288L94 396" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M94.0886 394.443C94.0886 402.399 73.3285 408.849 47.7196 408.849C22.1107 408.849 1.35056 402.399 1.35056 394.443" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M94.0886 330.443C94.0886 338.399 73.3285 344.849 47.7196 344.849C22.1107 344.849 1.35059 338.399 1.35059 330.443" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M13.1875 328V316.547H15.4688L18.1797 324.656C18.4297 325.411 18.612 325.977 18.7266 326.352C18.8568 325.935 19.0599 325.323 19.3359 324.516L22.0781 316.547H24.1172V328H22.6562V318.414L19.3281 328H17.9609L14.6484 318.25V328H13.1875ZM26.7937 328V316.547H35.075V317.898H28.3094V321.406H34.6453V322.75H28.3094V326.648H35.3406V328H26.7937ZM37.5875 328V316.547H39.8687L42.5797 324.656C42.8297 325.411 43.012 325.977 43.1266 326.352C43.2568 325.935 43.4599 325.323 43.7359 324.516L46.4781 316.547H48.5172V328H47.0562V318.414L43.7281 328H42.3609L39.0484 318.25V328H37.5875ZM50.7016 322.422C50.7016 320.521 51.212 319.034 52.2328 317.961C53.2536 316.883 54.5714 316.344 56.1859 316.344C57.2432 316.344 58.1964 316.596 59.0453 317.102C59.8943 317.607 60.5401 318.312 60.9828 319.219C61.4307 320.12 61.6547 321.143 61.6547 322.289C61.6547 323.451 61.4203 324.49 60.9516 325.406C60.4828 326.323 59.8187 327.018 58.9594 327.492C58.1 327.961 57.1729 328.195 56.1781 328.195C55.1 328.195 54.1365 327.935 53.2875 327.414C52.4385 326.893 51.7953 326.182 51.3578 325.281C50.9203 324.38 50.7016 323.427 50.7016 322.422ZM52.2641 322.445C52.2641 323.826 52.6339 324.914 53.3734 325.711C54.1182 326.503 55.0505 326.898 56.1703 326.898C57.3109 326.898 58.2484 326.497 58.9828 325.695C59.7224 324.893 60.0922 323.755 60.0922 322.281C60.0922 321.349 59.9333 320.536 59.6156 319.844C59.3031 319.146 58.8422 318.607 58.2328 318.227C57.6286 317.841 56.949 317.648 56.1937 317.648C55.1208 317.648 54.1964 318.018 53.4203 318.758C52.6495 319.492 52.2641 320.721 52.2641 322.445ZM63.8391 328V316.547H68.9172C69.938 316.547 70.7141 316.651 71.2453 316.859C71.7766 317.062 72.201 317.424 72.5187 317.945C72.8365 318.466 72.9953 319.042 72.9953 319.672C72.9953 320.484 72.7323 321.169 72.2062 321.727C71.6802 322.284 70.8677 322.638 69.7687 322.789C70.1698 322.982 70.4745 323.172 70.6828 323.359C71.1255 323.766 71.5448 324.273 71.9406 324.883L73.9328 328H72.0266L70.5109 325.617C70.0682 324.93 69.7036 324.404 69.4172 324.039C69.1307 323.674 68.8729 323.419 68.6437 323.273C68.4198 323.128 68.1906 323.026 67.9562 322.969C67.7844 322.932 67.5031 322.914 67.1125 322.914H65.3547V328H63.8391ZM65.3547 321.602H68.6125C69.3052 321.602 69.8469 321.531 70.2375 321.391C70.6281 321.245 70.925 321.016 71.1281 320.703C71.3312 320.385 71.4328 320.042 71.4328 319.672C71.4328 319.13 71.2349 318.685 70.8391 318.336C70.4484 317.987 69.8286 317.812 68.9797 317.812H65.3547V321.602ZM78.5078 328V323.148L74.0938 316.547H75.9375L78.1953 320C78.612 320.646 79 321.292 79.3594 321.938C79.7031 321.339 80.1198 320.664 80.6094 319.914L82.8281 316.547H84.5938L80.0234 323.148V328H78.5078Z" fill="white"/>
+<path d="M29.2344 391V379.547H33.1797C34.0703 379.547 34.75 379.602 35.2188 379.711C35.875 379.862 36.4349 380.135 36.8984 380.531C37.5026 381.042 37.9531 381.695 38.25 382.492C38.5521 383.284 38.7031 384.19 38.7031 385.211C38.7031 386.081 38.6016 386.852 38.3984 387.523C38.1953 388.195 37.9349 388.753 37.6172 389.195C37.2995 389.633 36.9505 389.979 36.5703 390.234C36.1953 390.484 35.7396 390.674 35.2031 390.805C34.6719 390.935 34.0599 391 33.3672 391H29.2344ZM30.75 389.648H33.1953C33.9505 389.648 34.5417 389.578 34.9688 389.438C35.401 389.297 35.7448 389.099 36 388.844C36.3594 388.484 36.638 388.003 36.8359 387.398C37.0391 386.789 37.1406 386.052 37.1406 385.188C37.1406 383.99 36.9427 383.07 36.5469 382.43C36.1562 381.784 35.6797 381.352 35.1172 381.133C34.7109 380.977 34.0573 380.898 33.1562 380.898H30.75V389.648ZM41.2547 391V379.547H42.7703V391H41.2547ZM45.1344 387.32L46.5641 387.195C46.6318 387.768 46.788 388.24 47.0328 388.609C47.2828 388.974 47.6682 389.271 48.1891 389.5C48.7099 389.724 49.2958 389.836 49.9469 389.836C50.525 389.836 51.0354 389.75 51.4781 389.578C51.9208 389.406 52.249 389.172 52.4625 388.875C52.6812 388.573 52.7906 388.245 52.7906 387.891C52.7906 387.531 52.6865 387.219 52.4781 386.953C52.2698 386.682 51.926 386.456 51.4469 386.273C51.1396 386.154 50.4599 385.969 49.4078 385.719C48.3557 385.464 47.6187 385.224 47.1969 385C46.65 384.714 46.2411 384.359 45.9703 383.938C45.7047 383.51 45.5719 383.034 45.5719 382.508C45.5719 381.93 45.7359 381.391 46.0641 380.891C46.3922 380.385 46.8714 380.003 47.5016 379.742C48.1318 379.482 48.8323 379.352 49.6031 379.352C50.4521 379.352 51.1995 379.49 51.8453 379.766C52.4964 380.036 52.9964 380.438 53.3453 380.969C53.6943 381.5 53.8818 382.102 53.9078 382.773L52.4547 382.883C52.3766 382.159 52.1109 381.612 51.6578 381.242C51.2099 380.872 50.5458 380.688 49.6656 380.688C48.749 380.688 48.0797 380.857 47.6578 381.195C47.2411 381.529 47.0328 381.932 47.0328 382.406C47.0328 382.818 47.1812 383.156 47.4781 383.422C47.7698 383.688 48.5302 383.961 49.7594 384.242C50.9937 384.518 51.8401 384.76 52.2984 384.969C52.9651 385.276 53.4573 385.667 53.775 386.141C54.0927 386.609 54.2516 387.151 54.2516 387.766C54.2516 388.375 54.0771 388.951 53.7281 389.492C53.3792 390.029 52.8766 390.448 52.2203 390.75C51.5693 391.047 50.8349 391.195 50.0172 391.195C48.9807 391.195 48.1109 391.044 47.4078 390.742C46.7099 390.44 46.1604 389.987 45.7594 389.383C45.3635 388.773 45.1552 388.086 45.1344 387.32ZM56.4594 391V379.547H57.975V385.227L63.6625 379.547H65.7172L60.9125 384.188L65.9281 391H63.9281L59.85 385.203L57.975 387.031V391H56.4594Z" fill="white"/>
+<path d="M268.13 353.263V292.817C268.13 292.817 279.789 302.954 314.062 302.954C348.336 302.954 359.923 291.875 359.923 291.875V353.263C345.624 374.269 274.638 367.992 268.13 353.263Z" fill="#E0454C"/>
+<path d="M267.13 395.954V333.322C267.13 333.322 278.987 345.437 313.26 345.437C347.533 345.437 358.923 333.322 358.923 333.322L359.892 395.954C345.317 414.241 276.001 410.812 267.13 395.954Z" fill="#0070CC"/>
+<path d="M360 289C360 290.614 358.976 292.327 356.701 294.04C354.442 295.74 351.105 297.314 346.878 298.653C338.436 301.329 326.668 303 313.5 303C300.332 303 288.564 301.329 280.122 298.653C275.895 297.314 272.558 295.74 270.299 294.04C268.024 292.327 267 290.614 267 289C267 287.386 268.024 285.673 270.299 283.96C272.558 282.26 275.895 280.686 280.122 279.347C288.564 276.671 300.332 275 313.5 275C326.668 275 338.436 276.671 346.878 279.347C351.105 280.686 354.442 282.26 356.701 283.96C358.976 285.673 360 287.386 360 289Z" fill="#E0454C" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M267 288L267.351 395.263" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M360 288L360 396" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M360.089 394.443C360.089 402.399 339.328 408.849 313.72 408.849C288.111 408.849 267.351 402.399 267.351 394.443" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M360.089 330.443C360.089 338.399 339.328 344.849 313.72 344.849C288.111 344.849 267.351 338.399 267.351 330.443" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M279.188 328V316.547H281.469L284.18 324.656C284.43 325.411 284.612 325.977 284.727 326.352C284.857 325.935 285.06 325.323 285.336 324.516L288.078 316.547H290.117V328H288.656V318.414L285.328 328H283.961L280.648 318.25V328H279.188ZM292.794 328V316.547H301.075V317.898H294.309V321.406H300.645V322.75H294.309V326.648H301.341V328H292.794ZM303.587 328V316.547H305.869L308.58 324.656C308.83 325.411 309.012 325.977 309.127 326.352C309.257 325.935 309.46 325.323 309.736 324.516L312.478 316.547H314.517V328H313.056V318.414L309.728 328H308.361L305.048 318.25V328H303.587ZM316.702 322.422C316.702 320.521 317.212 319.034 318.233 317.961C319.254 316.883 320.571 316.344 322.186 316.344C323.243 316.344 324.196 316.596 325.045 317.102C325.894 317.607 326.54 318.312 326.983 319.219C327.431 320.12 327.655 321.143 327.655 322.289C327.655 323.451 327.42 324.49 326.952 325.406C326.483 326.323 325.819 327.018 324.959 327.492C324.1 327.961 323.173 328.195 322.178 328.195C321.1 328.195 320.136 327.935 319.287 327.414C318.439 326.893 317.795 326.182 317.358 325.281C316.92 324.38 316.702 323.427 316.702 322.422ZM318.264 322.445C318.264 323.826 318.634 324.914 319.373 325.711C320.118 326.503 321.051 326.898 322.17 326.898C323.311 326.898 324.248 326.497 324.983 325.695C325.722 324.893 326.092 323.755 326.092 322.281C326.092 321.349 325.933 320.536 325.616 319.844C325.303 319.146 324.842 318.607 324.233 318.227C323.629 317.841 322.949 317.648 322.194 317.648C321.121 317.648 320.196 318.018 319.42 318.758C318.649 319.492 318.264 320.721 318.264 322.445ZM329.839 328V316.547H334.917C335.938 316.547 336.714 316.651 337.245 316.859C337.777 317.062 338.201 317.424 338.519 317.945C338.836 318.466 338.995 319.042 338.995 319.672C338.995 320.484 338.732 321.169 338.206 321.727C337.68 322.284 336.868 322.638 335.769 322.789C336.17 322.982 336.474 323.172 336.683 323.359C337.126 323.766 337.545 324.273 337.941 324.883L339.933 328H338.027L336.511 325.617C336.068 324.93 335.704 324.404 335.417 324.039C335.131 323.674 334.873 323.419 334.644 323.273C334.42 323.128 334.191 323.026 333.956 322.969C333.784 322.932 333.503 322.914 333.112 322.914H331.355V328H329.839ZM331.355 321.602H334.612C335.305 321.602 335.847 321.531 336.237 321.391C336.628 321.245 336.925 321.016 337.128 320.703C337.331 320.385 337.433 320.042 337.433 319.672C337.433 319.13 337.235 318.685 336.839 318.336C336.448 317.987 335.829 317.812 334.98 317.812H331.355V321.602ZM344.508 328V323.148L340.094 316.547H341.938L344.195 320C344.612 320.646 345 321.292 345.359 321.938C345.703 321.339 346.12 320.664 346.609 319.914L348.828 316.547H350.594L346.023 323.148V328H344.508Z" fill="white"/>
+<path d="M295.234 391V379.547H299.18C300.07 379.547 300.75 379.602 301.219 379.711C301.875 379.862 302.435 380.135 302.898 380.531C303.503 381.042 303.953 381.695 304.25 382.492C304.552 383.284 304.703 384.19 304.703 385.211C304.703 386.081 304.602 386.852 304.398 387.523C304.195 388.195 303.935 388.753 303.617 389.195C303.299 389.633 302.951 389.979 302.57 390.234C302.195 390.484 301.74 390.674 301.203 390.805C300.672 390.935 300.06 391 299.367 391H295.234ZM296.75 389.648H299.195C299.951 389.648 300.542 389.578 300.969 389.438C301.401 389.297 301.745 389.099 302 388.844C302.359 388.484 302.638 388.003 302.836 387.398C303.039 386.789 303.141 386.052 303.141 385.188C303.141 383.99 302.943 383.07 302.547 382.43C302.156 381.784 301.68 381.352 301.117 381.133C300.711 380.977 300.057 380.898 299.156 380.898H296.75V389.648ZM307.255 391V379.547H308.77V391H307.255ZM311.134 387.32L312.564 387.195C312.632 387.768 312.788 388.24 313.033 388.609C313.283 388.974 313.668 389.271 314.189 389.5C314.71 389.724 315.296 389.836 315.947 389.836C316.525 389.836 317.035 389.75 317.478 389.578C317.921 389.406 318.249 389.172 318.462 388.875C318.681 388.573 318.791 388.245 318.791 387.891C318.791 387.531 318.686 387.219 318.478 386.953C318.27 386.682 317.926 386.456 317.447 386.273C317.14 386.154 316.46 385.969 315.408 385.719C314.356 385.464 313.619 385.224 313.197 385C312.65 384.714 312.241 384.359 311.97 383.938C311.705 383.51 311.572 383.034 311.572 382.508C311.572 381.93 311.736 381.391 312.064 380.891C312.392 380.385 312.871 380.003 313.502 379.742C314.132 379.482 314.832 379.352 315.603 379.352C316.452 379.352 317.199 379.49 317.845 379.766C318.496 380.036 318.996 380.438 319.345 380.969C319.694 381.5 319.882 382.102 319.908 382.773L318.455 382.883C318.377 382.159 318.111 381.612 317.658 381.242C317.21 380.872 316.546 380.688 315.666 380.688C314.749 380.688 314.08 380.857 313.658 381.195C313.241 381.529 313.033 381.932 313.033 382.406C313.033 382.818 313.181 383.156 313.478 383.422C313.77 383.688 314.53 383.961 315.759 384.242C316.994 384.518 317.84 384.76 318.298 384.969C318.965 385.276 319.457 385.667 319.775 386.141C320.093 386.609 320.252 387.151 320.252 387.766C320.252 388.375 320.077 388.951 319.728 389.492C319.379 390.029 318.877 390.448 318.22 390.75C317.569 391.047 316.835 391.195 316.017 391.195C314.981 391.195 314.111 391.044 313.408 390.742C312.71 390.44 312.16 389.987 311.759 389.383C311.364 388.773 311.155 388.086 311.134 387.32ZM322.459 391V379.547H323.975V385.227L329.663 379.547H331.717L326.913 384.188L331.928 391H329.928L325.85 385.203L323.975 387.031V391H322.459Z" fill="white"/>
+<path d="M135.13 79.2634V18.8166C135.13 18.8166 146.789 28.9537 181.062 28.9537C215.336 28.9537 226.923 17.8754 226.923 17.8754V79.2634C212.624 100.269 141.638 93.9918 135.13 79.2634Z" fill="#E0454C"/>
+<path d="M134.13 121.954V59.3221C134.13 59.3221 145.987 71.4371 180.26 71.4371C214.533 71.4371 225.923 59.3221 225.923 59.3221L226.892 121.954C212.317 140.241 143.001 136.812 134.13 121.954Z" fill="#0070CC"/>
+<path d="M227 15C227 16.6141 225.976 18.3274 223.701 20.0397C221.442 21.7398 218.105 23.3137 213.878 24.6533C205.436 27.3289 193.668 29 180.5 29C167.332 29 155.564 27.3289 147.122 24.6533C142.895 23.3137 139.558 21.7398 137.299 20.0397C135.024 18.3274 134 16.6141 134 15C134 13.3859 135.024 11.6726 137.299 9.9603C139.558 8.26022 142.895 6.68627 147.122 5.34667C155.564 2.67113 167.332 1 180.5 1C193.668 1 205.436 2.67113 213.878 5.34667C218.105 6.68627 221.442 8.26022 223.701 9.9603C225.976 11.6726 227 13.3859 227 15Z" fill="#E0454C" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M134 14L134.351 121.263" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M227 14L227 122" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M227.089 120.443C227.089 128.399 206.328 134.849 180.72 134.849C155.111 134.849 134.351 128.399 134.351 120.443" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M227.089 56.4428C227.089 64.399 206.328 70.8487 180.72 70.8487C155.111 70.8487 134.351 64.399 134.351 56.4428" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M146.188 54V42.5469H148.469L151.18 50.6562C151.43 51.4115 151.612 51.9766 151.727 52.3516C151.857 51.9349 152.06 51.3229 152.336 50.5156L155.078 42.5469H157.117V54H155.656V44.4141L152.328 54H150.961L147.648 44.25V54H146.188ZM159.794 54V42.5469H168.075V43.8984H161.309V47.4062H167.645V48.75H161.309V52.6484H168.341V54H159.794ZM170.587 54V42.5469H172.869L175.58 50.6562C175.83 51.4115 176.012 51.9766 176.127 52.3516C176.257 51.9349 176.46 51.3229 176.736 50.5156L179.478 42.5469H181.517V54H180.056V44.4141L176.728 54H175.361L172.048 44.25V54H170.587ZM183.702 48.4219C183.702 46.5208 184.212 45.0339 185.233 43.9609C186.254 42.8828 187.571 42.3438 189.186 42.3438C190.243 42.3438 191.196 42.5964 192.045 43.1016C192.894 43.6068 193.54 44.3125 193.983 45.2188C194.431 46.1198 194.655 47.1432 194.655 48.2891C194.655 49.4505 194.42 50.4896 193.952 51.4062C193.483 52.3229 192.819 53.0182 191.959 53.4922C191.1 53.9609 190.173 54.1953 189.178 54.1953C188.1 54.1953 187.136 53.9349 186.287 53.4141C185.439 52.8932 184.795 52.1823 184.358 51.2812C183.92 50.3802 183.702 49.4271 183.702 48.4219ZM185.264 48.4453C185.264 49.8255 185.634 50.9141 186.373 51.7109C187.118 52.5026 188.051 52.8984 189.17 52.8984C190.311 52.8984 191.248 52.4974 191.983 51.6953C192.722 50.8932 193.092 49.7552 193.092 48.2812C193.092 47.349 192.933 46.5365 192.616 45.8438C192.303 45.1458 191.842 44.6068 191.233 44.2266C190.629 43.8411 189.949 43.6484 189.194 43.6484C188.121 43.6484 187.196 44.0182 186.42 44.7578C185.649 45.4922 185.264 46.7214 185.264 48.4453ZM196.839 54V42.5469H201.917C202.938 42.5469 203.714 42.651 204.245 42.8594C204.777 43.0625 205.201 43.4245 205.519 43.9453C205.836 44.4661 205.995 45.0417 205.995 45.6719C205.995 46.4844 205.732 47.1693 205.206 47.7266C204.68 48.2839 203.868 48.638 202.769 48.7891C203.17 48.9818 203.474 49.1719 203.683 49.3594C204.126 49.7656 204.545 50.2734 204.941 50.8828L206.933 54H205.027L203.511 51.6172C203.068 50.9297 202.704 50.4036 202.417 50.0391C202.131 49.6745 201.873 49.4193 201.644 49.2734C201.42 49.1276 201.191 49.026 200.956 48.9688C200.784 48.9323 200.503 48.9141 200.112 48.9141H198.355V54H196.839ZM198.355 47.6016H201.612C202.305 47.6016 202.847 47.5312 203.237 47.3906C203.628 47.2448 203.925 47.0156 204.128 46.7031C204.331 46.3854 204.433 46.0417 204.433 45.6719C204.433 45.1302 204.235 44.6849 203.839 44.3359C203.448 43.987 202.829 43.8125 201.98 43.8125H198.355V47.6016ZM211.508 54V49.1484L207.094 42.5469H208.938L211.195 46C211.612 46.6458 212 47.2917 212.359 47.9375C212.703 47.3385 213.12 46.6641 213.609 45.9141L215.828 42.5469H217.594L213.023 49.1484V54H211.508Z" fill="white"/>
+<path d="M162.234 117V105.547H166.18C167.07 105.547 167.75 105.602 168.219 105.711C168.875 105.862 169.435 106.135 169.898 106.531C170.503 107.042 170.953 107.695 171.25 108.492C171.552 109.284 171.703 110.19 171.703 111.211C171.703 112.081 171.602 112.852 171.398 113.523C171.195 114.195 170.935 114.753 170.617 115.195C170.299 115.633 169.951 115.979 169.57 116.234C169.195 116.484 168.74 116.674 168.203 116.805C167.672 116.935 167.06 117 166.367 117H162.234ZM163.75 115.648H166.195C166.951 115.648 167.542 115.578 167.969 115.438C168.401 115.297 168.745 115.099 169 114.844C169.359 114.484 169.638 114.003 169.836 113.398C170.039 112.789 170.141 112.052 170.141 111.188C170.141 109.99 169.943 109.07 169.547 108.43C169.156 107.784 168.68 107.352 168.117 107.133C167.711 106.977 167.057 106.898 166.156 106.898H163.75V115.648ZM174.255 117V105.547H175.77V117H174.255ZM178.134 113.32L179.564 113.195C179.632 113.768 179.788 114.24 180.033 114.609C180.283 114.974 180.668 115.271 181.189 115.5C181.71 115.724 182.296 115.836 182.947 115.836C183.525 115.836 184.035 115.75 184.478 115.578C184.921 115.406 185.249 115.172 185.462 114.875C185.681 114.573 185.791 114.245 185.791 113.891C185.791 113.531 185.686 113.219 185.478 112.953C185.27 112.682 184.926 112.456 184.447 112.273C184.14 112.154 183.46 111.969 182.408 111.719C181.356 111.464 180.619 111.224 180.197 111C179.65 110.714 179.241 110.359 178.97 109.938C178.705 109.51 178.572 109.034 178.572 108.508C178.572 107.93 178.736 107.391 179.064 106.891C179.392 106.385 179.871 106.003 180.502 105.742C181.132 105.482 181.832 105.352 182.603 105.352C183.452 105.352 184.199 105.49 184.845 105.766C185.496 106.036 185.996 106.438 186.345 106.969C186.694 107.5 186.882 108.102 186.908 108.773L185.455 108.883C185.377 108.159 185.111 107.612 184.658 107.242C184.21 106.872 183.546 106.688 182.666 106.688C181.749 106.688 181.08 106.857 180.658 107.195C180.241 107.529 180.033 107.932 180.033 108.406C180.033 108.818 180.181 109.156 180.478 109.422C180.77 109.688 181.53 109.961 182.759 110.242C183.994 110.518 184.84 110.76 185.298 110.969C185.965 111.276 186.457 111.667 186.775 112.141C187.093 112.609 187.252 113.151 187.252 113.766C187.252 114.375 187.077 114.951 186.728 115.492C186.379 116.029 185.877 116.448 185.22 116.75C184.569 117.047 183.835 117.195 183.017 117.195C181.981 117.195 181.111 117.044 180.408 116.742C179.71 116.44 179.16 115.987 178.759 115.383C178.364 114.773 178.155 114.086 178.134 113.32ZM189.459 117V105.547H190.975V111.227L196.663 105.547H198.717L193.913 110.188L198.928 117H196.928L192.85 111.203L190.975 113.031V117H189.459Z" fill="white"/>
+</svg>
diff --git a/public/img/features/deployment/hero.svg b/public/img/features/deployment/hero.svg
new file mode 100644
index 0000000..cfcef2d
--- /dev/null
+++ b/public/img/features/deployment/hero.svg
@@ -0,0 +1,52 @@
+<svg width="593" height="523" viewBox="0 0 593 523" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M390.25 99.0062H233.581V146.833H233.619C233.135 158.758 240.774 170.772 256.536 179.872C287.121 197.53 336.71 197.53 367.295 179.872C383.057 170.772 390.696 158.758 390.212 146.833H390.25V99.0062Z" fill="#0070CC" stroke="white"/>
+<path d="M256.535 68.0987C287.12 50.4403 336.709 50.4403 367.294 68.0987C397.879 85.757 397.879 114.387 367.294 132.045C336.709 149.704 287.12 149.704 256.535 132.045C225.95 114.387 225.95 85.757 256.535 68.0987Z" fill="#0070CC" stroke="white"/>
+<mask id="path-3-inside-1_19:245" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M377.713 140.044C380.523 138.421 382.801 139.737 382.801 142.981C382.801 146.226 380.523 150.172 377.713 151.794C374.903 153.416 372.625 152.101 372.625 148.856C372.625 145.612 374.903 141.666 377.713 140.044ZM364.004 149.836C366.814 148.213 369.092 149.528 369.092 152.773C369.092 156.018 366.814 159.963 364.004 161.586C361.194 163.208 358.916 161.893 358.916 158.648C358.916 155.403 361.194 151.458 364.004 149.836Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M377.713 140.044C380.523 138.421 382.801 139.737 382.801 142.981C382.801 146.226 380.523 150.172 377.713 151.794C374.903 153.416 372.625 152.101 372.625 148.856C372.625 145.612 374.903 141.666 377.713 140.044ZM364.004 149.836C366.814 148.213 369.092 149.528 369.092 152.773C369.092 156.018 366.814 159.963 364.004 161.586C361.194 163.208 358.916 161.893 358.916 158.648C358.916 155.403 361.194 151.458 364.004 149.836Z" fill="#0070CC"/>
+<path d="M377.713 140.044L377.213 139.178V139.178L377.713 140.044ZM377.713 151.794L378.213 152.66V152.66L377.713 151.794ZM364.004 149.836L364.504 150.702L364.004 149.836ZM364.004 161.586L363.504 160.72L364.004 161.586ZM358.916 158.648H359.916H358.916ZM383.801 142.981C383.801 141.149 383.15 139.594 381.81 138.821C380.471 138.048 378.8 138.261 377.213 139.178L378.213 140.91C379.435 140.204 380.308 140.263 380.81 140.553C381.313 140.843 381.801 141.569 381.801 142.981H383.801ZM378.213 152.66C379.805 151.74 381.191 150.202 382.176 148.496C383.162 146.789 383.801 144.82 383.801 142.981H381.801C381.801 144.387 381.301 146.013 380.444 147.496C379.588 148.979 378.43 150.225 377.213 150.928L378.213 152.66ZM371.625 148.856C371.625 150.689 372.276 152.243 373.615 153.016C374.954 153.789 376.625 153.576 378.213 152.66L377.213 150.928C375.99 151.634 375.117 151.574 374.615 151.284C374.113 150.994 373.625 150.268 373.625 148.856H371.625ZM377.213 139.178C375.62 140.097 374.234 141.635 373.249 143.342C372.264 145.048 371.625 147.017 371.625 148.856H373.625C373.625 147.451 374.125 145.825 374.981 144.342C375.837 142.859 376.995 141.612 378.213 140.91L377.213 139.178ZM370.092 152.773C370.092 150.94 369.441 149.386 368.102 148.613C366.763 147.84 365.091 148.053 363.504 148.969L364.504 150.702C365.727 149.996 366.6 150.055 367.102 150.345C367.604 150.635 368.092 151.361 368.092 152.773H370.092ZM364.504 162.452C366.097 161.532 367.483 159.994 368.468 158.288C369.453 156.581 370.092 154.612 370.092 152.773H368.092C368.092 154.179 367.592 155.805 366.736 157.288C365.88 158.771 364.721 160.017 363.504 160.72L364.504 162.452ZM357.916 158.648C357.916 160.481 358.567 162.035 359.906 162.808C361.246 163.581 362.917 163.368 364.504 162.452L363.504 160.72C362.281 161.426 361.409 161.366 360.906 161.076C360.404 160.786 359.916 160.06 359.916 158.648H357.916ZM363.504 148.969C361.911 149.889 360.526 151.427 359.54 153.133C358.555 154.84 357.916 156.809 357.916 158.648H359.916C359.916 157.243 360.416 155.616 361.272 154.133C362.129 152.65 363.287 151.404 364.504 150.702L363.504 148.969Z" fill="white" mask="url(#path-3-inside-1_19:245)"/>
+<path d="M390.25 45.1512H233.581V92.9779H233.619C233.135 104.903 240.774 116.917 256.536 126.017C287.121 143.675 336.71 143.675 367.295 126.017C383.057 116.917 390.696 104.903 390.212 92.9779H390.25V45.1512Z" fill="#0070CC" stroke="white"/>
+<path d="M256.535 14.2438C287.12 -3.41459 336.709 -3.41459 367.294 14.2438C397.879 31.9021 397.879 60.5319 367.294 78.1903C336.709 95.8486 287.12 95.8487 256.535 78.1903C225.95 60.532 225.95 31.9021 256.535 14.2438Z" fill="#0070CC" stroke="white"/>
+<mask id="path-7-inside-2_19:245" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M377.713 89.1263C380.523 87.5039 382.801 88.8191 382.801 92.0638C382.801 95.3086 380.523 99.2541 377.713 100.876C374.903 102.499 372.625 101.184 372.625 97.9389C372.625 94.6942 374.903 90.7487 377.713 89.1263ZM364.004 98.9181C366.814 97.2958 369.092 98.6109 369.092 101.856C369.092 105.1 366.814 109.046 364.004 110.668C361.194 112.291 358.916 110.975 358.916 107.731C358.916 104.486 361.194 100.54 364.004 98.9181Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M377.713 89.1263C380.523 87.5039 382.801 88.8191 382.801 92.0638C382.801 95.3086 380.523 99.2541 377.713 100.876C374.903 102.499 372.625 101.184 372.625 97.9389C372.625 94.6942 374.903 90.7487 377.713 89.1263ZM364.004 98.9181C366.814 97.2958 369.092 98.6109 369.092 101.856C369.092 105.1 366.814 109.046 364.004 110.668C361.194 112.291 358.916 110.975 358.916 107.731C358.916 104.486 361.194 100.54 364.004 98.9181Z" fill="#0070CC"/>
+<path d="M377.713 89.1263L377.213 88.2603V88.2603L377.713 89.1263ZM377.713 100.876L378.213 101.742L377.713 100.876ZM364.004 98.9181L363.504 98.0521L364.004 98.9181ZM364.004 110.668L364.504 111.534L364.004 110.668ZM358.916 107.731H359.916H358.916ZM383.801 92.0638C383.801 90.2311 383.15 88.6771 381.81 87.9039C380.471 87.1307 378.8 87.3439 377.213 88.2603L378.213 89.9923C379.435 89.2863 380.308 89.3459 380.81 89.6359C381.313 89.9259 381.801 90.6518 381.801 92.0638H383.801ZM378.213 101.742C379.805 100.823 381.191 99.285 382.176 97.5785C383.162 95.872 383.801 93.903 383.801 92.0638H381.801C381.801 93.4694 381.301 95.0955 380.444 96.5785C379.588 98.0616 378.43 99.3077 377.213 100.01L378.213 101.742ZM371.625 97.9389C371.625 99.7717 372.276 101.326 373.615 102.099C374.954 102.872 376.625 102.659 378.213 101.742L377.213 100.01C375.99 100.716 375.117 100.657 374.615 100.367C374.113 100.077 373.625 99.3509 373.625 97.9389H371.625ZM377.213 88.2603C375.62 89.1799 374.234 90.7177 373.249 92.4242C372.264 94.1307 371.625 96.0997 371.625 97.9389H373.625C373.625 96.5334 374.125 94.9073 374.981 93.4242C375.837 91.9412 376.995 90.6951 378.213 89.9923L377.213 88.2603ZM370.092 101.856C370.092 100.023 369.441 98.4689 368.102 97.6957C366.763 96.9225 365.091 97.1357 363.504 98.0521L364.504 99.7841C365.727 99.0781 366.6 99.1378 367.102 99.4278C367.604 99.7178 368.092 100.444 368.092 101.856H370.092ZM364.504 111.534C366.097 110.615 367.483 109.077 368.468 107.37C369.453 105.664 370.092 103.695 370.092 101.856H368.092C368.092 103.261 367.592 104.887 366.736 106.37C365.88 107.853 364.721 109.1 363.504 109.802L364.504 111.534ZM357.916 107.731C357.916 109.563 358.567 111.118 359.906 111.891C361.246 112.664 362.917 112.451 364.504 111.534L363.504 109.802C362.281 110.508 361.409 110.449 360.906 110.159C360.404 109.869 359.916 109.143 359.916 107.731H357.916ZM363.504 98.0521C361.911 98.9717 360.526 100.51 359.54 102.216C358.555 103.923 357.916 105.892 357.916 107.731H359.916C359.916 106.325 360.416 104.699 361.272 103.216C362.129 101.733 363.287 100.487 364.504 99.7841L363.504 98.0521Z" fill="white" mask="url(#path-7-inside-2_19:245)"/>
+<path d="M330.031 94.0671C330.031 84.3447 336.904 80.4255 345.386 85.3073L557.195 207.697C565.622 212.523 572.495 224.35 572.495 234.072L572.083 379.715C572.083 389.438 565.209 393.343 556.728 388.461L344.905 266.072C336.45 261.19 329.632 249.378 329.66 239.655L330.031 94.0671Z" stroke="white" stroke-miterlimit="10"/>
+<path d="M331.02 66.014C325.013 62.5348 320.133 65.3264 320.105 72.2297L319.556 250.024C319.556 256.9 324.381 265.33 330.388 268.809L570.955 407.769C576.949 411.234 581.843 408.457 581.857 401.553L582.365 223.759C582.365 216.883 577.526 208.439 571.519 204.974L331.02 66.014Z" fill="#0070CC" stroke="white" stroke-linejoin="round"/>
+<path d="M323.281 65.2438L332.477 59.9082C334.457 58.7531 337.192 58.9181 340.217 60.6645L580.743 199.625C586.75 203.09 591.603 211.506 591.589 218.409L591.081 396.204C591.081 399.628 589.857 402.048 587.905 403.176L578.722 408.525C580.674 407.384 581.884 404.977 581.884 401.553L582.393 223.759C582.393 216.883 577.554 208.439 571.546 204.974L330.979 66.0139C329.419 65.0216 327.604 64.5055 325.755 64.5287C324.871 64.5612 324.008 64.8065 323.24 65.2438H323.281Z" fill="#0070CC" stroke="white" stroke-linejoin="round"/>
+<path d="M328.835 267.97C322.828 264.505 313.122 264.491 307.156 267.97L153.496 357.355C147.516 360.821 147.557 366.459 153.564 369.924L394.132 508.816C400.139 512.281 409.858 512.281 415.824 508.816L569.485 419.43C575.465 415.951 575.423 410.327 569.485 406.861L328.835 267.97Z" fill="#0070CC" stroke="white" stroke-linejoin="round"/>
+<path d="M229.102 336.618L323.955 281.46C325.635 280.6 327.496 280.151 329.384 280.151C331.273 280.151 333.134 280.6 334.814 281.46L546.156 403.492C549.153 405.225 549.167 408.044 546.156 409.777L451.304 464.948C449.621 465.802 447.761 466.247 445.874 466.247C443.987 466.247 442.127 465.802 440.444 464.948L229.157 342.916C226.147 341.17 226.119 338.364 229.157 336.618" stroke="white" stroke-linejoin="round"/>
+<path d="M243.248 407.631L280.996 385.629C282.859 384.68 284.92 384.185 287.01 384.185C289.101 384.185 291.162 384.68 293.025 385.629L364.507 426.884C367.848 428.809 367.862 431.93 364.507 433.856L326.759 455.858C324.896 456.807 322.835 457.302 320.745 457.302C318.654 457.302 316.593 456.807 314.731 455.858L243.248 414.603C239.921 412.678 239.894 409.557 243.248 407.631Z" stroke="white" stroke-linejoin="round"/>
+<path d="M245.186 433.443L153.523 380.499C150.512 378.753 149 376.47 149 374.174V363.544C149 365.826 150.498 368.123 153.523 369.869L394.09 508.761C400.097 512.226 409.816 512.226 415.782 508.761L569.443 419.375C570.753 418.655 571.892 417.66 572.784 416.46C573.488 415.492 573.877 414.329 573.897 413.132V423.776C573.897 426.031 572.413 428.286 569.443 430.005L415.782 519.391C409.816 522.87 400.097 522.87 394.09 519.391L286.563 457.33" fill="#0070CC"/>
+<path d="M245.186 433.443L153.523 380.499C150.512 378.753 149 376.47 149 374.174V363.544C149 365.826 150.498 368.123 153.523 369.869L394.09 508.761C400.097 512.226 409.816 512.226 415.782 508.761L569.443 419.375C570.753 418.655 571.892 417.66 572.784 416.46C573.488 415.492 573.877 414.329 573.897 413.132V413.132V423.776C573.897 426.031 572.413 428.286 569.443 430.005L415.782 519.391C409.816 522.87 400.097 522.87 394.09 519.391L286.563 457.33" stroke="white" stroke-linejoin="round"/>
+<path d="M580.922 199.377L571.794 204.603" stroke="white" stroke-linejoin="round"/>
+<path d="M591.356 218.945L582.228 224.171" stroke="white" stroke-linejoin="round"/>
+<path d="M393.747 509.269V519.707" stroke="white" stroke-linejoin="round"/>
+<path d="M413.308 510.576V519.707" stroke="white" stroke-linejoin="round"/>
+<path d="M569.842 419.238V429.675" stroke="white" stroke-linejoin="round"/>
+<path d="M245.186 432.921L278.481 452.75L287.127 447.758L253.833 427.929L245.186 432.921Z" stroke="white" stroke-linejoin="round"/>
+<path d="M245.186 432.797L245.2 442.299L278.494 462.239L278.48 452.75L245.186 432.797Z" fill="#0070CC" stroke="white" stroke-linejoin="round"/>
+<path d="M278.481 452.75L278.494 462.239L287.141 457.247L287.127 447.759L278.481 452.75Z" fill="#0070CC" stroke="white" stroke-linejoin="round"/>
+<path d="M278.73 283L175.632 226.363C165.405 220.745 165.498 211.312 175.834 205.762L241.5 170.5" stroke="white"/>
+<path d="M200.5 330.5L148 303" stroke="white"/>
+<path d="M173.334 237.567H1V282.244L1.0448 282.244C1.04479 290.778 12.9399 297.646 36.7302 311.381C60.5205 325.116 72.4157 331.984 87.1971 331.984C101.978 331.984 113.874 325.116 137.664 311.381C161.454 297.646 173.349 290.778 173.349 282.244C173.349 282.064 173.344 281.884 173.334 281.706V237.567Z" fill="#0070CC" stroke="white"/>
+<path d="M36.7299 208.43C60.5202 194.695 72.4153 187.827 87.1967 187.827C101.978 187.827 113.873 194.695 137.664 208.43C161.454 222.165 173.349 229.033 173.349 237.567C173.349 246.101 161.454 252.969 137.664 266.704C113.873 280.439 101.978 287.307 87.1967 287.307C72.4153 287.307 60.5202 280.439 36.7299 266.704C12.9396 252.969 1.04442 246.101 1.04442 237.567C1.04442 229.033 12.9396 222.165 36.7299 208.43Z" fill="#0070CC" stroke="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2325 259.92C13.7542 259.644 13.3664 259.867 13.3664 260.42L13.3664 289.499C13.3664 290.052 13.7542 290.723 14.2325 290.999L18.3882 293.399C18.8665 293.675 19.2542 293.451 19.2542 292.899L19.2542 263.819C19.2542 263.267 18.8665 262.595 18.3882 262.319L14.2325 259.92ZM23.9448 266.233C23.4665 265.957 23.0788 266.181 23.0788 266.733L23.0788 295.812C23.0788 296.365 23.4665 297.036 23.9448 297.312L28.1005 299.712C28.5788 299.988 28.9666 299.764 28.9666 299.212L28.9666 270.132C28.9666 269.58 28.5788 268.908 28.1005 268.632L23.9448 266.233ZM32.7913 272.317C32.7913 271.765 33.179 271.541 33.6573 271.817L37.8131 274.217C38.2913 274.493 38.6791 275.164 38.6791 275.717V304.796C38.6791 305.349 38.2913 305.572 37.8131 305.296L33.6573 302.897C33.179 302.621 32.7913 301.949 32.7913 301.397V272.317ZM43.3699 276.916C42.8916 276.64 42.5039 276.864 42.5039 277.416V306.496C42.5039 307.048 42.8916 307.72 43.3699 307.996L47.5257 310.395C48.0039 310.671 48.3917 310.447 48.3917 309.895L48.3917 280.816C48.3917 280.263 48.0039 279.592 47.5257 279.316L43.3699 276.916Z" fill="#0070CC"/>
+<path d="M13.3664 260.42H12.8664H13.3664ZM14.2325 259.92L14.4825 259.487L14.2325 259.92ZM13.3664 289.499H13.8664H13.3664ZM14.2325 290.999L14.4825 290.566H14.4825L14.2325 290.999ZM18.3882 293.399L18.1382 293.832L18.3882 293.399ZM19.2542 292.899H18.7542H19.2542ZM19.2542 263.819H19.7542H19.2542ZM18.3882 262.319L18.1382 262.752L18.3882 262.319ZM23.0788 266.733H23.5788H23.0788ZM23.9448 266.233L24.1948 265.8H24.1948L23.9448 266.233ZM23.0788 295.812H22.5788H23.0788ZM23.9448 297.312L24.1948 296.879H24.1948L23.9448 297.312ZM28.1005 299.712L27.8505 300.145H27.8505L28.1005 299.712ZM28.9666 299.212H28.4666H28.9666ZM28.9666 270.132H29.4666H28.9666ZM28.1005 268.632L28.3505 268.199V268.199L28.1005 268.632ZM33.6573 271.817L33.4073 272.25L33.6573 271.817ZM37.8131 274.217L38.0631 273.784L37.8131 274.217ZM37.8131 305.296L38.0631 304.863L37.8131 305.296ZM33.6573 302.897L33.4073 303.33L33.6573 302.897ZM43.3699 276.916L43.1199 277.349L43.3699 276.916ZM43.3699 307.996L43.1199 308.429L43.3699 307.996ZM47.5257 310.395L47.2757 310.828L47.5257 310.395ZM48.3917 309.895H47.8917H48.3917ZM48.3917 280.816H48.8917H48.3917ZM47.5257 279.316L47.2757 279.749L47.5257 279.316ZM13.8664 260.42C13.8664 260.338 13.8809 260.296 13.8879 260.28C13.8937 260.268 13.891 260.28 13.8701 260.292C13.8491 260.304 13.8375 260.301 13.8511 260.302C13.8676 260.303 13.9119 260.312 13.9825 260.353L14.4825 259.487C14.1522 259.296 13.736 259.215 13.3701 259.426C13.0041 259.637 12.8664 260.038 12.8664 260.42H13.8664ZM13.8664 289.499L13.8664 260.42H12.8664L12.8664 289.499H13.8664ZM14.4825 290.566C14.3372 290.482 14.1776 290.318 14.0531 290.103C13.9286 289.887 13.8664 289.667 13.8664 289.499H12.8664C12.8664 289.884 12.9981 290.275 13.1871 290.603C13.376 290.93 13.6494 291.24 13.9825 291.432L14.4825 290.566ZM18.6382 292.966L14.4825 290.566L13.9825 291.432L18.1382 293.832L18.6382 292.966ZM18.7542 292.899C18.7542 292.98 18.7397 293.023 18.7327 293.038C18.727 293.05 18.7296 293.038 18.7506 293.026C18.7715 293.014 18.7832 293.018 18.7696 293.017C18.753 293.015 18.7088 293.006 18.6382 292.966L18.1382 293.832C18.4684 294.022 18.8846 294.104 19.2506 293.892C19.6165 293.681 19.7542 293.28 19.7542 292.899H18.7542ZM18.7542 263.819L18.7542 292.899H19.7542L19.7542 263.819H18.7542ZM18.1382 262.752C18.2835 262.836 18.4431 263 18.5676 263.216C18.692 263.431 18.7542 263.651 18.7542 263.819H19.7542C19.7542 263.434 19.6226 263.043 19.4336 262.716C19.2446 262.388 18.9712 262.078 18.6382 261.886L18.1382 262.752ZM13.9825 260.353L18.1382 262.752L18.6382 261.886L14.4825 259.487L13.9825 260.353ZM23.5788 266.733C23.5788 266.651 23.5933 266.609 23.6003 266.593C23.606 266.581 23.6034 266.593 23.5824 266.605C23.5614 266.617 23.5498 266.614 23.5634 266.615C23.58 266.616 23.6242 266.625 23.6948 266.666L24.1948 265.8C23.8645 265.609 23.4484 265.528 23.0824 265.739C22.7165 265.95 22.5788 266.351 22.5788 266.733H23.5788ZM23.5788 295.812L23.5788 266.733H22.5788L22.5788 295.812H23.5788ZM24.1948 296.879C24.0495 296.795 23.8899 296.631 23.7654 296.416C23.641 296.2 23.5788 295.98 23.5788 295.812H22.5788C22.5788 296.197 22.7104 296.589 22.8994 296.916C23.0884 297.243 23.3617 297.553 23.6948 297.745L24.1948 296.879ZM28.3505 299.279L24.1948 296.879L23.6948 297.745L27.8505 300.145L28.3505 299.279ZM28.4666 299.212C28.4666 299.293 28.4521 299.336 28.445 299.351C28.4393 299.363 28.4419 299.351 28.4629 299.339C28.4839 299.327 28.4955 299.331 28.4819 299.33C28.4653 299.328 28.4211 299.319 28.3505 299.279L27.8505 300.145C28.1808 300.335 28.597 300.417 28.9629 300.205C29.3288 299.994 29.4666 299.593 29.4666 299.212H28.4666ZM28.4666 270.132L28.4666 299.212H29.4666V270.132H28.4666ZM27.8505 269.065C27.9958 269.149 28.1554 269.313 28.2799 269.529C28.4044 269.744 28.4666 269.964 28.4666 270.132H29.4666C29.4666 269.748 29.3349 269.356 29.1459 269.029C28.9569 268.701 28.6836 268.391 28.3505 268.199L27.8505 269.065ZM23.6948 266.666L27.8505 269.065L28.3505 268.199L24.1948 265.8L23.6948 266.666ZM33.9073 271.384C33.5771 271.194 33.1609 271.112 32.7949 271.324C32.429 271.535 32.2913 271.936 32.2913 272.317H33.2913C33.2913 272.236 33.3058 272.193 33.3128 272.178C33.3186 272.166 33.3159 272.178 33.2949 272.19C33.274 272.202 33.2623 272.198 33.2759 272.199C33.2925 272.201 33.3367 272.21 33.4073 272.25L33.9073 271.384ZM38.0631 273.784L33.9073 271.384L33.4073 272.25L37.5631 274.65L38.0631 273.784ZM39.1791 275.717C39.1791 275.332 39.0474 274.94 38.8584 274.613C38.6695 274.286 38.3961 273.976 38.0631 273.784L37.5631 274.65C37.7083 274.734 37.8679 274.898 37.9924 275.113C38.1169 275.329 38.1791 275.549 38.1791 275.717H39.1791ZM39.1791 304.796V275.717H38.1791V304.796H39.1791ZM37.5631 305.729C37.8933 305.92 38.3095 306.001 38.6754 305.79C39.0414 305.579 39.1791 305.178 39.1791 304.796H38.1791C38.1791 304.878 38.1646 304.92 38.1576 304.936C38.1518 304.948 38.1545 304.936 38.1754 304.924C38.1964 304.912 38.2081 304.915 38.1945 304.914C38.1779 304.913 38.1336 304.904 38.0631 304.863L37.5631 305.729ZM33.4073 303.33L37.5631 305.729L38.0631 304.863L33.9073 302.464L33.4073 303.33ZM32.2913 301.397C32.2913 301.781 32.4229 302.173 32.6119 302.5C32.8009 302.828 33.0743 303.138 33.4073 303.33L33.9073 302.464C33.7621 302.38 33.6024 302.216 33.4779 302C33.3535 301.785 33.2913 301.565 33.2913 301.397H32.2913ZM32.2913 272.317V301.397H33.2913V272.317H32.2913ZM43.0039 277.416C43.0039 277.335 43.0184 277.292 43.0254 277.277C43.0311 277.265 43.0285 277.277 43.0075 277.289C42.9866 277.301 42.9749 277.297 42.9885 277.298C43.0051 277.3 43.0493 277.309 43.1199 277.349L43.6199 276.483C43.2897 276.293 42.8735 276.211 42.5075 276.423C42.1416 276.634 42.0039 277.035 42.0039 277.416H43.0039ZM43.0039 306.496V277.416H42.0039V306.496H43.0039ZM43.6199 307.563C43.4746 307.479 43.315 307.315 43.1905 307.099C43.0661 306.884 43.0039 306.664 43.0039 306.496H42.0039C42.0039 306.88 42.1355 307.272 42.3245 307.599C42.5135 307.927 42.7869 308.237 43.1199 308.429L43.6199 307.563ZM47.7757 309.962L43.6199 307.563L43.1199 308.429L47.2757 310.828L47.7757 309.962ZM47.8917 309.895C47.8917 309.977 47.8772 310.019 47.8702 310.034C47.8644 310.047 47.8671 310.035 47.888 310.023C47.909 310.011 47.9207 310.014 47.9071 310.013C47.8905 310.012 47.8462 310.003 47.7757 309.962L47.2757 310.828C47.6059 311.019 48.0221 311.1 48.388 310.889C48.754 310.678 48.8917 310.276 48.8917 309.895H47.8917ZM47.8917 280.816L47.8917 309.895H48.8917L48.8917 280.816L47.8917 280.816ZM47.2757 279.749C47.4209 279.832 47.5806 279.996 47.705 280.212C47.8295 280.428 47.8917 280.648 47.8917 280.816H48.8917C48.8917 280.431 48.76 280.039 48.571 279.712C48.3821 279.385 48.1087 279.075 47.7757 278.883L47.2757 279.749ZM43.1199 277.349L47.2757 279.749L47.7757 278.883L43.6199 276.483L43.1199 277.349Z" fill="white"/>
+<path d="M173.334 185.12H1V230.768L1.0448 230.768C1.04479 239.302 12.9399 246.17 36.7302 259.905C60.5205 273.641 72.4157 280.508 87.1971 280.508C101.978 280.508 113.874 273.641 137.664 259.905C161.454 246.17 173.349 239.302 173.349 230.768C173.349 230.588 173.344 230.409 173.334 230.23V185.12Z" fill="#0070CC" stroke="white"/>
+<path d="M36.73 155.983C60.5203 142.248 72.4154 135.38 87.1968 135.38C101.978 135.38 113.873 142.248 137.664 155.983C161.454 169.718 173.349 176.586 173.349 185.12C173.349 193.654 161.454 200.522 137.664 214.257C113.873 227.993 101.978 234.86 87.1968 234.86C72.4154 234.86 60.5203 227.993 36.73 214.257C12.9397 200.522 1.04452 193.654 1.04452 185.12C1.04452 176.586 12.9397 169.718 36.73 155.983Z" fill="#0070CC" stroke="white"/>
+<mask id="path-33-inside-3_19:245" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M82.1505 148.213C84.9377 149.822 89.4566 149.822 92.2438 148.213C95.031 146.604 95.031 143.995 92.2438 142.386C89.4566 140.777 84.9377 140.777 82.1505 142.386C79.3633 143.995 79.3633 146.604 82.1505 148.213ZM14.2076 188.034C16.9948 189.643 21.5138 189.643 24.301 188.034C27.0882 186.425 27.0882 183.816 24.301 182.206C21.5138 180.597 16.9948 180.597 14.2076 182.206C11.4204 183.816 11.4204 186.425 14.2076 188.034ZM152.609 188.034C155.396 189.643 159.915 189.643 162.702 188.034C165.489 186.425 165.489 183.816 162.702 182.206C159.915 180.597 155.396 180.597 152.609 182.206C149.821 183.816 149.821 186.425 152.609 188.034ZM92.2438 225.426C89.4566 227.036 84.9377 227.036 82.1505 225.426C79.3633 223.817 79.3633 221.208 82.1505 219.599C84.9377 217.99 89.4566 217.99 92.2438 219.599C95.031 221.208 95.031 223.817 92.2438 225.426Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M82.1505 148.213C84.9377 149.822 89.4566 149.822 92.2438 148.213C95.031 146.604 95.031 143.995 92.2438 142.386C89.4566 140.777 84.9377 140.777 82.1505 142.386C79.3633 143.995 79.3633 146.604 82.1505 148.213ZM14.2076 188.034C16.9948 189.643 21.5138 189.643 24.301 188.034C27.0882 186.425 27.0882 183.816 24.301 182.206C21.5138 180.597 16.9948 180.597 14.2076 182.206C11.4204 183.816 11.4204 186.425 14.2076 188.034ZM152.609 188.034C155.396 189.643 159.915 189.643 162.702 188.034C165.489 186.425 165.489 183.816 162.702 182.206C159.915 180.597 155.396 180.597 152.609 182.206C149.821 183.816 149.821 186.425 152.609 188.034ZM92.2438 225.426C89.4566 227.036 84.9377 227.036 82.1505 225.426C79.3633 223.817 79.3633 221.208 82.1505 219.599C84.9377 217.99 89.4566 217.99 92.2438 219.599C95.031 221.208 95.031 223.817 92.2438 225.426Z" fill="#0070CC"/>
+<path d="M92.2438 148.213L91.7438 147.347L92.2438 148.213ZM82.1505 148.213L82.6505 147.347V147.347L82.1505 148.213ZM92.2438 142.386L92.7438 141.52L92.2438 142.386ZM24.301 188.034L24.801 188.9H24.801L24.301 188.034ZM14.2076 188.034L14.7076 187.168L14.2076 188.034ZM14.2076 182.206L13.7076 181.34H13.7076L14.2076 182.206ZM162.702 188.034L163.202 188.9L162.702 188.034ZM162.702 182.206L163.202 181.34L162.702 182.206ZM152.609 182.206L152.109 181.34L152.609 182.206ZM92.2438 225.426L92.7438 226.292V226.292L92.2438 225.426ZM91.7438 147.347C90.538 148.043 88.8947 148.42 87.1972 148.42C85.4996 148.42 83.8563 148.043 82.6505 147.347L81.6505 149.079C83.2319 149.992 85.2416 150.42 87.1972 150.42C89.1527 150.42 91.1624 149.992 92.7438 149.079L91.7438 147.347ZM91.7438 143.252C92.9553 143.951 93.3342 144.728 93.3342 145.3C93.3342 145.871 92.9553 146.648 91.7438 147.347L92.7438 149.079C94.3196 148.17 95.3342 146.837 95.3342 145.3C95.3342 143.762 94.3196 142.43 92.7438 141.52L91.7438 143.252ZM82.6505 143.252C83.8563 142.556 85.4996 142.179 87.1972 142.179C88.8947 142.179 90.538 142.556 91.7438 143.252L92.7438 141.52C91.1624 140.607 89.1527 140.179 87.1972 140.179C85.2416 140.179 83.2319 140.607 81.6505 141.52L82.6505 143.252ZM82.6505 147.347C81.439 146.648 81.0601 145.871 81.0601 145.3C81.0601 144.728 81.439 143.951 82.6505 143.252L81.6505 141.52C80.0747 142.43 79.0601 143.762 79.0601 145.3C79.0601 146.837 80.0747 148.17 81.6505 149.079L82.6505 147.347ZM23.801 187.168C22.5952 187.864 20.9518 188.241 19.2543 188.241C17.5568 188.241 15.9134 187.864 14.7076 187.168L13.7076 188.9C15.289 189.813 17.2987 190.241 19.2543 190.241C21.2098 190.241 23.2196 189.813 24.801 188.9L23.801 187.168ZM23.801 183.073C25.0124 183.772 25.3914 184.549 25.3914 185.12C25.3914 185.692 25.0124 186.468 23.801 187.168L24.801 188.9C26.3768 187.99 27.3914 186.658 27.3914 185.12C27.3914 183.582 26.3768 182.25 24.801 181.34L23.801 183.073ZM14.7076 183.073C15.9134 182.376 17.5568 182 19.2543 182C20.9518 182 22.5952 182.376 23.801 183.073L24.801 181.34C23.2196 180.427 21.2098 180 19.2543 180C17.2987 180 15.289 180.427 13.7076 181.34L14.7076 183.073ZM14.7076 187.168C13.4962 186.468 13.1172 185.692 13.1172 185.12C13.1172 184.549 13.4962 183.772 14.7076 183.073L13.7076 181.34C12.1318 182.25 11.1172 183.582 11.1172 185.12C11.1172 186.658 12.1318 187.99 13.7076 188.9L14.7076 187.168ZM162.202 187.168C160.996 187.864 159.353 188.241 157.655 188.241C155.958 188.241 154.314 187.864 153.109 187.168L152.109 188.9C153.69 189.813 155.7 190.241 157.655 190.241C159.611 190.241 161.621 189.813 163.202 188.9L162.202 187.168ZM162.202 183.073C163.413 183.772 163.792 184.549 163.792 185.12C163.792 185.692 163.413 186.468 162.202 187.168L163.202 188.9C164.778 187.99 165.792 186.658 165.792 185.12C165.792 183.582 164.778 182.25 163.202 181.34L162.202 183.073ZM153.109 183.073C154.314 182.376 155.958 182 157.655 182C159.353 182 160.996 182.376 162.202 183.073L163.202 181.34C161.621 180.427 159.611 180 157.655 180C155.7 180 153.69 180.427 152.109 181.34L153.109 183.073ZM153.109 187.168C151.897 186.468 151.518 185.692 151.518 185.12C151.518 184.549 151.897 183.772 153.109 183.073L152.109 181.34C150.533 182.25 149.518 183.582 149.518 185.12C149.518 186.658 150.533 187.99 152.109 188.9L153.109 187.168ZM81.6505 226.292C83.2319 227.206 85.2416 227.633 87.1972 227.633C89.1527 227.633 91.1624 227.206 92.7438 226.292L91.7438 224.56C90.538 225.257 88.8947 225.633 87.1972 225.633C85.4996 225.633 83.8563 225.257 82.6505 224.56L81.6505 226.292ZM81.6505 218.733C80.0747 219.643 79.0601 220.975 79.0601 222.513C79.0601 224.051 80.0747 225.383 81.6505 226.292L82.6505 224.56C81.439 223.861 81.0601 223.084 81.0601 222.513C81.0601 221.941 81.439 221.164 82.6505 220.465L81.6505 218.733ZM92.7438 218.733C91.1624 217.82 89.1527 217.392 87.1972 217.392C85.2416 217.392 83.2319 217.82 81.6505 218.733L82.6505 220.465C83.8563 219.769 85.4996 219.392 87.1972 219.392C88.8947 219.392 90.538 219.769 91.7438 220.465L92.7438 218.733ZM92.7438 226.292C94.3196 225.383 95.3342 224.051 95.3342 222.513C95.3342 220.975 94.3196 219.643 92.7438 218.733L91.7438 220.465C92.9553 221.164 93.3342 221.941 93.3342 222.513C93.3342 223.084 92.9553 223.861 91.7438 224.56L92.7438 226.292Z" fill="white" mask="url(#path-33-inside-3_19:245)"/>
+<path d="M364 130L517 218.5" stroke="white"/>
+<path d="M364 150L517 238.5" stroke="white"/>
+<path d="M364 170L517 258.5" stroke="white"/>
+<path d="M364 190L517 278.5" stroke="white"/>
+<path d="M364 210L517 298.5" stroke="white"/>
+<path d="M364 230L438.5 272.5" stroke="white"/>
+<path d="M342 243V94.5L541.5 208V358L342 243Z" stroke="white"/>
+</svg>
diff --git a/public/img/features/hero-bg.svg b/public/img/features/hero-bg.svg
new file mode 100644
index 0000000..f169332
--- /dev/null
+++ b/public/img/features/hero-bg.svg
@@ -0,0 +1,13 @@
+<svg width="604" height="747" viewBox="0 0 604 747" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M243.512 46.5439L524.935 208.641L524.935 605.239L243.512 443.141L243.512 46.5439Z" fill="#0070CC" stroke="#F6F6F6"/>
+<rect width="90.2134" height="396.597" transform="matrix(0.866274 -0.49957 2.20558e-08 1 524.85 208.788)" fill="#0070CC" stroke="#F6F6F6"/>
+<path d="M321.661 1.47704L602.835 164.008L524.731 209.156L243.558 46.6246L321.661 1.47704Z" fill="#0070CC" stroke="#F6F6F6"/>
+<path d="M122.256 116.85L403.679 278.948L403.679 675.545L122.256 513.448L122.256 116.85Z" fill="#0070CC" stroke="#F6F6F6"/>
+<rect width="90.2134" height="396.597" transform="matrix(0.866274 -0.49957 2.20558e-08 1 403.594 279.096)" fill="#0070CC" stroke="#F6F6F6"/>
+<path d="M200.406 71.7832L481.579 234.315L403.475 279.462L122.302 116.931L200.406 71.7832Z" fill="#0070CC" stroke="#F6F6F6"/>
+<path d="M1 187.158L282.423 349.256L282.423 745.853L0.999992 583.756L1 187.158Z" fill="#0070CC" stroke="#F6F6F6"/>
+<rect width="90.2134" height="396.597" transform="matrix(0.866274 -0.49957 2.20558e-08 1 282.339 349.402)" fill="#0070CC" stroke="#F6F6F6"/>
+<path d="M79.1494 142.091L360.322 304.623L282.219 349.77L1.0458 187.239L79.1494 142.091Z" fill="#0070CC" stroke="#F6F6F6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M35.6267 262.065C35.6267 261.513 36.0144 261.289 36.4927 261.565L166.014 336.344C166.493 336.621 166.88 337.292 166.88 337.844V364.688C166.88 365.24 166.493 365.464 166.014 365.188L36.4927 290.409C36.0144 290.132 35.6267 289.461 35.6267 288.909L35.6267 262.065ZM35.6267 312.545C35.6267 311.993 36.0147 311.768 36.4932 312.044L106.679 352.471C107.158 352.746 107.546 353.418 107.546 353.97V380.813C107.546 381.366 107.158 381.59 106.679 381.314L36.4932 340.887C36.0147 340.612 35.6267 339.941 35.6267 339.388L35.6267 312.545ZM36.4932 362.521C36.0147 362.245 35.6267 362.469 35.6267 363.022L35.6267 389.865C35.6267 390.417 36.0147 391.089 36.4932 391.364L209.868 491.227C210.346 491.502 210.734 491.278 210.734 490.726V463.882C210.734 463.33 210.346 462.659 209.868 462.383L36.4932 362.521Z" fill="#0070CC"/>
+<path d="M36.4927 261.565L36.2427 261.998V261.998L36.4927 261.565ZM35.6267 262.065L36.1267 262.065L35.6267 262.065ZM166.014 336.344L166.264 335.911L166.264 335.911L166.014 336.344ZM166.014 365.188L165.764 365.621L166.014 365.188ZM36.4927 290.409L36.7427 289.976L36.7427 289.976L36.4927 290.409ZM35.6267 288.909H35.1267H35.6267ZM36.4932 312.044L36.7428 311.611H36.7428L36.4932 312.044ZM35.6267 312.545H35.1267H35.6267ZM106.679 352.471L106.929 352.037H106.929L106.679 352.471ZM106.679 381.314L106.929 380.881L106.679 381.314ZM36.4932 340.887L36.7428 340.454H36.7428L36.4932 340.887ZM35.6267 339.388H35.1267H35.6267ZM35.6267 363.022H36.1267H35.6267ZM36.4932 362.521L36.2437 362.954H36.2437L36.4932 362.521ZM35.6267 389.865H35.1267H35.6267ZM36.4932 391.364L36.7428 390.931L36.7428 390.931L36.4932 391.364ZM209.868 491.227L209.618 491.66H209.618L209.868 491.227ZM209.868 462.383L209.618 462.816H209.618L209.868 462.383ZM36.7427 261.132C36.4125 260.941 35.9963 260.86 35.6304 261.071C35.2644 261.283 35.1267 261.684 35.1267 262.065L36.1267 262.065C36.1267 261.984 36.1412 261.941 36.1482 261.926C36.154 261.913 36.1513 261.925 36.1304 261.937C36.1094 261.95 36.0977 261.946 36.1113 261.947C36.1279 261.949 36.1722 261.957 36.2427 261.998L36.7427 261.132ZM166.264 335.911L36.7427 261.132L36.2427 261.998L165.764 336.777L166.264 335.911ZM167.38 337.844C167.38 337.46 167.249 337.068 167.06 336.741C166.871 336.414 166.597 336.104 166.264 335.911L165.764 336.777C165.91 336.861 166.069 337.025 166.194 337.241C166.318 337.456 166.38 337.677 166.38 337.844H167.38ZM167.38 364.688V337.844H166.38V364.688H167.38ZM165.764 365.621C166.095 365.812 166.511 365.893 166.877 365.682C167.243 365.47 167.38 365.069 167.38 364.688H166.38C166.38 364.769 166.366 364.812 166.359 364.827C166.353 364.84 166.356 364.828 166.377 364.816C166.398 364.803 166.409 364.807 166.396 364.806C166.379 364.804 166.335 364.796 166.264 364.755L165.764 365.621ZM36.2427 290.842L165.764 365.621L166.264 364.755L36.7427 289.976L36.2427 290.842ZM35.1267 288.909C35.1267 289.293 35.2584 289.685 35.4474 290.012C35.6363 290.339 35.9097 290.649 36.2427 290.842L36.7427 289.976C36.5975 289.892 36.4378 289.728 36.3134 289.512C36.1889 289.296 36.1267 289.076 36.1267 288.909H35.1267ZM35.1267 262.065L35.1267 288.909H36.1267L36.1267 262.065L35.1267 262.065ZM36.7428 311.611C36.4122 311.42 35.996 311.34 35.6303 311.551C35.2646 311.763 35.1267 312.163 35.1267 312.545H36.1267C36.1267 312.463 36.1412 312.421 36.1483 312.406C36.1541 312.393 36.1515 312.405 36.1307 312.417C36.11 312.429 36.0985 312.425 36.1122 312.426C36.1288 312.428 36.1731 312.437 36.2437 312.477L36.7428 311.611ZM106.929 352.037L36.7428 311.611L36.2437 312.477L106.43 352.904L106.929 352.037ZM108.046 353.97C108.046 353.585 107.914 353.194 107.725 352.866C107.536 352.539 107.262 352.229 106.929 352.037L106.43 352.904C106.575 352.988 106.735 353.151 106.859 353.367C106.984 353.582 107.046 353.802 107.046 353.97H108.046ZM108.046 380.813V353.97H107.046V380.813H108.046ZM106.43 381.747C106.76 381.938 107.177 382.018 107.542 381.807C107.908 381.596 108.046 381.195 108.046 380.813H107.046C107.046 380.895 107.031 380.937 107.024 380.953C107.019 380.965 107.021 380.953 107.042 380.941C107.063 380.929 107.074 380.933 107.06 380.932C107.044 380.93 106.999 380.922 106.929 380.881L106.43 381.747ZM36.2437 341.321L106.43 381.747L106.929 380.881L36.7428 340.454L36.2437 341.321ZM35.1267 339.388C35.1267 339.773 35.2585 340.165 35.4476 340.492C35.6368 340.819 35.9104 341.129 36.2437 341.321L36.7428 340.454C36.5975 340.371 36.4379 340.207 36.3134 339.991C36.1889 339.776 36.1267 339.556 36.1267 339.388H35.1267ZM35.1267 312.545L35.1267 339.388H36.1267L36.1267 312.545H35.1267ZM36.1267 363.022C36.1267 362.94 36.1412 362.897 36.1483 362.882C36.1541 362.87 36.1515 362.882 36.1307 362.894C36.11 362.906 36.0985 362.902 36.1122 362.903C36.1288 362.905 36.1731 362.913 36.2437 362.954L36.7428 362.087C36.4122 361.897 35.996 361.816 35.6303 362.028C35.2646 362.239 35.1267 362.64 35.1267 363.022H36.1267ZM36.1267 389.865L36.1267 363.022H35.1267L35.1267 389.865H36.1267ZM36.7428 390.931C36.5975 390.847 36.4379 390.684 36.3134 390.468C36.1889 390.253 36.1267 390.033 36.1267 389.865H35.1267C35.1267 390.25 35.2585 390.641 35.4476 390.969C35.6368 391.296 35.9104 391.605 36.2437 391.797L36.7428 390.931ZM210.117 490.793L36.7428 390.931L36.2437 391.797L209.618 491.66L210.117 490.793ZM210.234 490.726C210.234 490.807 210.22 490.85 210.213 490.865C210.207 490.878 210.21 490.866 210.23 490.854C210.251 490.842 210.263 490.845 210.249 490.844C210.232 490.843 210.188 490.834 210.117 490.793L209.618 491.66C209.949 491.85 210.365 491.931 210.731 491.72C211.097 491.508 211.234 491.107 211.234 490.726H210.234ZM210.234 463.882V490.726H211.234V463.882H210.234ZM209.618 462.816C209.764 462.9 209.923 463.064 210.048 463.279C210.172 463.495 210.234 463.715 210.234 463.882H211.234C211.234 463.498 211.103 463.106 210.913 462.779C210.724 462.452 210.451 462.142 210.117 461.95L209.618 462.816ZM36.2437 362.954L209.618 462.816L210.117 461.95L36.7428 362.087L36.2437 362.954Z" fill="#F6F6F6"/>
+</svg>
diff --git a/public/img/features/icon-check-err.svg b/public/img/features/icon-check-err.svg
new file mode 100644
index 0000000..9b26d8b
--- /dev/null
+++ b/public/img/features/icon-check-err.svg
@@ -0,0 +1,6 @@
+<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M32 16C32 24.8366 24.8366 32 16 32C7.16344 32 0 24.8366 0 16C0 7.16344 7.16344 0 16 0C24.8366 0 32 7.16344 32 16Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M16 29.5C23.4558 29.5 29.5 23.4558 29.5 16C29.5 8.54416 23.4558 2.5 16 2.5C8.54416 2.5 2.5 8.54416 2.5 16C2.5 23.4558 8.54416 29.5 16 29.5ZM16 32C24.8366 32 32 24.8366 32 16C32 7.16344 24.8366 0 16 0C7.16344 0 0 7.16344 0 16C0 24.8366 7.16344 32 16 32Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M22.2411 10.5393C22.7293 11.0274 22.7293 11.8189 22.2411 12.307L12.3071 22.241C11.819 22.7292 11.0275 22.7292 10.5394 22.241C10.0512 21.7529 10.0512 20.9614 10.5394 20.4733L20.4734 10.5393C20.9615 10.0511 21.753 10.0511 22.2411 10.5393Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M22.2411 22.2412C21.753 22.7293 20.9615 22.7293 20.4734 22.2412L10.5394 12.3072C10.0512 11.819 10.0512 11.0276 10.5394 10.5394C11.0275 10.0513 11.819 10.0513 12.3071 10.5394L22.2411 20.4734C22.7293 20.9616 22.7293 21.753 22.2411 22.2412Z" fill="white"/>
+</svg>
diff --git a/public/img/features/icon-check-ok.svg b/public/img/features/icon-check-ok.svg
new file mode 100644
index 0000000..d06b896
--- /dev/null
+++ b/public/img/features/icon-check-ok.svg
@@ -0,0 +1,4 @@
+<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+<circle cx="16" cy="16" r="14.75" fill="#0070CC" stroke="#0070CC" stroke-width="2.5"/>
+<path d="M8.66666 15.2888L14.9298 21.3333L22.6667 10.6666" stroke="white" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
+</svg>
diff --git a/public/img/features/in-memory/01-ACID-Transactions.svg b/public/img/features/in-memory/01-ACID-Transactions.svg
new file mode 100644
index 0000000..fc57c88
--- /dev/null
+++ b/public/img/features/in-memory/01-ACID-Transactions.svg
@@ -0,0 +1,14 @@
+<svg width="81" height="81" viewBox="0 0 81 81" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="0.776001" y="0.601074" width="80" height="80" rx="10" fill="#F6F6F6"/>
+<rect width="48.0001" height="48" transform="translate(16.776 16.6011)" fill="#F6F6F6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M19.3045 50.5826L47.7504 21.5198L49.0934 22.8919L20.6475 51.9547L19.3045 50.5826Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M24.7997 56.1969L53.2456 27.1341L54.5886 28.5062L26.1427 57.569L24.7997 56.1969Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M30.2948 61.8113L58.7408 32.7485L60.0838 34.1207L31.6378 63.1835L30.2948 61.8113Z" fill="black"/>
+<path d="M44.5114 50.4326C44.5114 58.2576 38.3027 64.6011 30.6437 64.6011C22.9848 64.6011 16.776 58.2576 16.776 50.4326C16.776 42.6076 22.9848 36.2642 30.6437 36.2642C38.3027 36.2642 44.5114 42.6076 44.5114 50.4326Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M30.6437 62.6811C37.2036 62.6811 42.5914 57.2363 42.5914 50.4326C42.5914 43.6289 37.2036 38.1842 30.6437 38.1842C24.0838 38.1842 18.696 43.6289 18.696 50.4326C18.696 57.2363 24.0838 62.6811 30.6437 62.6811ZM30.6437 64.6011C38.3027 64.6011 44.5114 58.2576 44.5114 50.4326C44.5114 42.6076 38.3027 36.2642 30.6437 36.2642C22.9848 36.2642 16.776 42.6076 16.776 50.4326C16.776 58.2576 22.9848 64.6011 30.6437 64.6011Z" fill="black"/>
+<path d="M39.6363 50.3942C39.6363 55.4896 35.5933 59.6202 30.6061 59.6202C25.6189 59.6202 21.576 55.4896 21.576 50.3942C21.576 45.2989 25.6189 41.1683 30.6061 41.1683C35.5933 41.1683 39.6363 45.2989 39.6363 50.3942Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M30.6061 57.7002C34.4943 57.7002 37.7163 54.4683 37.7163 50.3942C37.7163 46.3202 34.4943 43.0883 30.6061 43.0883C26.7179 43.0883 23.496 46.3202 23.496 50.3942C23.496 54.4683 26.7179 57.7002 30.6061 57.7002ZM30.6061 59.6202C35.5933 59.6202 39.6363 55.4896 39.6363 50.3942C39.6363 45.2989 35.5933 41.1683 30.6061 41.1683C25.6189 41.1683 21.576 45.2989 21.576 50.3942C21.576 55.4896 25.6189 59.6202 30.6061 59.6202Z" fill="black"/>
+<path d="M64.7761 28.044C64.7761 34.3637 59.7616 39.4869 53.576 39.4869C47.3905 39.4869 42.376 34.3637 42.376 28.044C42.376 21.7242 47.3905 16.6011 53.576 16.6011C59.7616 16.6011 64.7761 21.7242 64.7761 28.044Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M53.576 37.5669C58.6626 37.5669 62.8561 33.3424 62.8561 28.044C62.8561 22.7456 58.6626 18.5211 53.576 18.5211C48.4895 18.5211 44.296 22.7456 44.296 28.044C44.296 33.3424 48.4895 37.5669 53.576 37.5669ZM53.576 39.4869C59.7616 39.4869 64.7761 34.3637 64.7761 28.044C64.7761 21.7242 59.7616 16.6011 53.576 16.6011C47.3905 16.6011 42.376 21.7242 42.376 28.044C42.376 34.3637 47.3905 39.4869 53.576 39.4869Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M59.9218 24.0714L53.2533 32.2977L47.8909 27.4318L49.1812 26.01L53.0401 29.5117L58.4303 22.8623L59.9218 24.0714Z" fill="#ED1C24"/>
+</svg>
diff --git a/public/img/features/in-memory/02-sql.svg b/public/img/features/in-memory/02-sql.svg
new file mode 100644
index 0000000..d55b32b
--- /dev/null
+++ b/public/img/features/in-memory/02-sql.svg
@@ -0,0 +1,24 @@
+<svg width="80" height="81" viewBox="0 0 80 81" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect y="0.601074" width="80" height="80" rx="10" fill="#F6F6F6"/>
+<g clip-path="url(#clip0_19:62)">
+<path d="M21.9955 54.6077V25.6792C21.9955 25.6792 25.5318 29.524 36.4271 29.524C47.3224 29.524 51.1759 25.3809 51.1759 25.3809V54.6077C39.7802 58.2756 33.3911 58.3927 21.9955 54.6077Z" fill="white"/>
+<path d="M52.0551 24.2087C52.0551 27.3056 45.1334 29.8162 36.4129 29.8162C27.6925 29.8162 20.7708 27.3056 20.7708 24.2087C20.7708 21.1117 27.6925 18.6011 36.4129 18.6011C45.1334 18.6011 52.0551 21.1117 52.0551 24.2087Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M50.1807 24.2087C50.1807 24.2012 50.181 24.1529 50.1205 24.0465C50.0528 23.9274 49.9139 23.7465 49.6492 23.5216C49.1073 23.0613 48.205 22.5571 46.9123 22.0946C44.3435 21.1757 40.6482 20.5684 36.427 20.5684C32.2059 20.5684 28.5105 21.1757 25.9417 22.0946C24.649 22.5571 23.7467 23.0613 23.2048 23.5216C22.9401 23.7465 22.8013 23.9274 22.7336 24.0465C22.6731 24.1529 22.6733 24.2008 22.6734 24.2082C22.6733 24.2156 22.6731 24.2644 22.7336 24.3708C22.8013 24.4899 22.9401 24.6708 23.2048 24.8957C23.7467 25.356 24.649 25.8602 25.9417 26.3227C28.5105 27.2416 32.2059 27.8489 36.427 27.8489C40.6482 27.8489 44.3435 27.2416 46.9123 26.3227C48.205 25.8602 49.1073 25.356 49.6492 24.8957C49.9139 24.6708 50.0528 24.4899 50.1205 24.3708C50.181 24.2644 50.1807 24.2161 50.1807 24.2087ZM36.427 29.8162C45.1977 29.8162 52.1593 27.3056 52.1593 24.2087C52.1593 21.1117 45.1977 18.6011 36.427 18.6011C27.6563 18.6011 20.6947 21.1117 20.6947 24.2087C20.6947 27.3056 27.6563 29.8162 36.427 29.8162Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M20.7954 52.6823L20.6952 24.0231L22.6625 24.0144L22.7627 52.6736L20.7954 52.6823Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M50.192 52.8756L50.192 24.3047L52.1593 24.3047L52.1593 52.8756L50.192 52.8756Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M26.4376 55.5798C28.9644 56.512 32.5206 57.1082 36.4967 57.1082C40.4729 57.1082 44.0291 56.512 46.5559 55.5798C47.8231 55.1123 48.7798 54.579 49.4016 54.0366C50.0257 53.4923 50.2203 53.0263 50.2203 52.6659H52.1877C52.1877 53.8038 51.5592 54.7652 50.6948 55.5192C49.8282 56.2751 48.6311 56.9111 47.2368 57.4255C44.4406 58.4571 40.6432 59.0755 36.4967 59.0755C32.3503 59.0755 28.5529 58.4571 25.7567 57.4255C24.3624 56.9111 23.1653 56.2751 22.2987 55.5192C21.4343 54.7652 20.8058 53.8038 20.8058 52.6659H22.7732C22.7732 53.0263 22.9678 53.4923 23.5919 54.0366C24.2137 54.579 25.1704 55.1123 26.4376 55.5798Z" fill="black"/>
+<path d="M26.8668 42.0924L28.2405 41.9589C28.3232 42.42 28.4901 42.7586 28.7413 42.9749C28.9957 43.1911 29.3376 43.2992 29.7669 43.2992C30.2216 43.2992 30.5635 43.2038 30.7924 43.013C31.0245 42.8191 31.1406 42.5933 31.1406 42.3357C31.1406 42.1704 31.0913 42.0304 30.9927 41.916C30.8973 41.7983 30.7288 41.6965 30.4871 41.6107C30.3218 41.5534 29.945 41.4517 29.3567 41.3054C28.5998 41.1178 28.0688 40.8872 27.7635 40.6138C27.3342 40.229 27.1196 39.7599 27.1196 39.2066C27.1196 38.8505 27.2197 38.5182 27.4201 38.2097C27.6236 37.8981 27.9146 37.6612 28.293 37.499C28.6746 37.3368 29.1341 37.2557 29.6715 37.2557C30.5491 37.2557 31.209 37.4481 31.651 37.8329C32.0962 38.2177 32.3299 38.7312 32.3522 39.3736L30.9403 39.4356C30.8799 39.0763 30.7495 38.8187 30.5491 38.6629C30.352 38.5039 30.0547 38.4244 29.6572 38.4244C29.247 38.4244 28.9258 38.5086 28.6936 38.6772C28.5442 38.7853 28.4695 38.93 28.4695 39.1112C28.4695 39.2766 28.5394 39.4181 28.6793 39.5358C28.8574 39.6852 29.2899 39.841 29.9768 40.0032C30.6636 40.1654 31.1708 40.3339 31.4984 40.5088C31.8291 40.6805 32.0866 40.9175 32.2711 41.2195C32.4587 41.5185 32.5525 41.8889 32.5525 42.3309C32.5525 42.7316 32.4412 43.1068 32.2186 43.4566C31.996 43.8064 31.6812 44.0672 31.2742 44.2389C30.8671 44.4074 30.3599 44.4917 29.7526 44.4917C28.8685 44.4917 28.1896 44.2882 27.7158 43.8812C27.242 43.471 26.959 42.8747 26.8668 42.0924Z" fill="black"/>
+<path d="M39.3687 43.4805C39.7154 43.7285 40.0922 43.9257 40.4992 44.072L39.9793 45.0689C39.7662 45.0053 39.5579 44.9178 39.3544 44.8065C39.3099 44.7843 38.9967 44.5776 38.4148 44.1864C37.9568 44.3868 37.4496 44.4869 36.8931 44.4869C35.8183 44.4869 34.9756 44.1705 34.3651 43.5377C33.7577 42.9049 33.454 42.0161 33.454 40.8713C33.454 39.7297 33.7593 38.8425 34.3699 38.2097C34.9804 37.5737 35.8088 37.2557 36.855 37.2557C37.8917 37.2557 38.7137 37.5737 39.321 38.2097C39.9284 38.8425 40.2321 39.7297 40.2321 40.8713C40.2321 41.4755 40.1478 42.0066 39.9793 42.4645C39.8521 42.8143 39.6486 43.153 39.3687 43.4805ZM38.2335 42.6839C38.4148 42.4709 38.5499 42.2133 38.6389 41.9112C38.7312 41.6091 38.7773 41.2625 38.7773 40.8713C38.7773 40.0636 38.5992 39.461 38.243 39.0635C37.8869 38.6629 37.421 38.4625 36.8454 38.4625C36.2699 38.4625 35.8024 38.6629 35.4431 39.0635C35.0869 39.4642 34.9089 40.0668 34.9089 40.8713C34.9089 41.6886 35.0869 42.3007 35.4431 42.7078C35.8024 43.1116 36.2556 43.3135 36.8025 43.3135C37.006 43.3135 37.1984 43.2802 37.3797 43.2134C37.0935 43.0258 36.8025 42.8795 36.5068 42.7745L36.9027 41.9684C37.367 42.1274 37.8106 42.3659 38.2335 42.6839Z" fill="black"/>
+<path d="M41.3816 44.3677V37.4322H42.7935V43.1895H46.3042V44.3677H41.3816Z" fill="black"/>
+<path d="M39.9131 58.9488L38.6013 56.5875L45.1604 55.3507L46.9595 57.5995C42.8741 58.6864 42.2369 58.7239 39.9131 58.9488Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M62.4877 53.1096C62.4877 57.4904 58.9377 61.1059 54.5419 61.1059L54.5419 59.4768C58.023 59.4768 60.8586 56.6056 60.8586 53.1096C60.8586 49.5572 57.9775 46.6398 54.4401 46.6398H54.2765L54.2765 45.0107H54.4401C58.8921 45.0107 62.4877 48.6725 62.4877 53.1096Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M54.8961 46.0542L58.1741 43.1056L57.0845 41.8944L52.5954 45.9325L56.6335 50.4217L57.8447 49.3321L54.8961 46.0542Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M39.2798 52.966C39.2798 48.5852 42.8298 44.9697 47.2256 44.9697L47.2256 46.5988C43.7445 46.5988 40.909 49.4699 40.909 52.966C40.909 56.5183 43.7901 59.4358 47.3275 59.4358H47.491V61.0649H47.3275C42.8754 61.0649 39.2798 57.4031 39.2798 52.966Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M46.876 60.0922L43.8967 56.8422L45.0976 55.7413L49.1778 60.1923L44.7269 64.2724L43.626 63.0715L46.876 60.0922Z" fill="#ED1C24"/>
+</g>
+<defs>
+<clipPath id="clip0_19:62">
+<rect width="48" height="48" fill="white" transform="translate(16 16.6011)"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/public/img/features/in-memory/03-user.svg b/public/img/features/in-memory/03-user.svg
new file mode 100644
index 0000000..0223adf
--- /dev/null
+++ b/public/img/features/in-memory/03-user.svg
@@ -0,0 +1,12 @@
+<svg width="81" height="81" viewBox="0 0 81 81" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="0.22406" y="0.601074" width="80" height="80" rx="10" fill="#F6F6F6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M40.9144 38.3665C30.6092 38.3665 22.2079 46.86 22.2079 57.3955H20.5563C20.5563 46.0165 29.6448 36.7448 40.9144 36.7448V38.3665Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M20.3499 57.3955C20.3499 45.9111 29.5242 36.5421 40.9144 36.5421H41.1208V38.5693H40.9144C30.7297 38.5693 22.4144 46.9655 22.4144 57.3955V57.5982H20.3499V57.3955ZM20.7637 57.1928H22.0025C22.1088 46.7158 30.443 38.2768 40.7079 38.165V36.9485C29.7212 37.0603 20.8702 46.0816 20.7637 57.1928Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M39.4448 36.8548C43.5346 36.8548 46.8913 33.5445 46.8913 29.4108C46.8913 25.277 43.5346 21.9667 39.4448 21.9667C35.355 21.9667 31.9983 25.277 31.9983 29.4108C31.9983 33.5445 35.355 36.8548 39.4448 36.8548ZM39.4448 38.4766C44.4695 38.4766 48.5429 34.4177 48.5429 29.4108C48.5429 24.4038 44.4695 20.3449 39.4448 20.3449C34.4201 20.3449 30.3467 24.4038 30.3467 29.4108C30.3467 34.4177 34.4201 38.4766 39.4448 38.4766Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M39.4448 20.5477C34.5369 20.5477 30.5532 24.513 30.5532 29.4108C30.5532 34.3086 34.5369 38.2739 39.4448 38.2739C44.3526 38.2739 48.3364 34.3086 48.3364 29.4108C48.3364 24.513 44.3526 20.5477 39.4448 20.5477ZM30.1403 29.4108C30.1403 24.2947 34.3032 20.1422 39.4448 20.1422C44.5864 20.1422 48.7493 24.2947 48.7493 29.4108C48.7493 34.5269 44.5864 38.6794 39.4448 38.6794C34.3032 38.6794 30.1403 34.5269 30.1403 29.4108ZM39.4448 22.1694C35.4716 22.1694 32.2048 25.3864 32.2048 29.4108C32.2048 33.4352 35.4716 36.6521 39.4448 36.6521C43.4179 36.6521 46.6848 33.4352 46.6848 29.4108C46.6848 25.3864 43.4179 22.1694 39.4448 22.1694ZM31.7919 29.4108C31.7919 25.1677 35.2383 21.764 39.4448 21.764C43.6513 21.764 47.0977 25.1677 47.0977 29.4108C47.0977 33.6539 43.6513 37.0576 39.4448 37.0576C35.2383 37.0576 31.7919 33.6539 31.7919 29.4108Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M40.0781 52.7345C40.1189 52.847 40.1617 52.9586 40.2064 53.0692C39.4554 54.3136 39.6247 55.945 40.7142 57.0149L41.1332 57.4264C42.1083 58.3839 43.5413 58.6176 44.74 58.1276C45.194 58.3726 45.6691 58.5837 46.162 58.7574C46.6438 59.9631 47.8394 60.8168 49.2381 60.8168H49.7719C51.1706 60.8168 52.3663 59.9631 52.8481 58.7574C53.0637 58.6814 53.276 58.5982 53.4846 58.5082C54.7727 59.3914 56.5588 59.2686 57.7084 58.1396L58.464 57.3977C59.6427 56.2401 59.7443 54.4253 58.7687 53.1544C58.8262 53.016 58.8806 52.876 58.9318 52.7345C60.1553 52.2594 61.0207 51.0875 61.0207 49.7172V48.9672C61.0207 47.5969 60.1553 46.4251 58.9319 45.9499C58.8065 45.6038 58.6624 45.2665 58.5008 44.9394C59.5819 43.665 59.5137 41.768 58.296 40.5723L57.877 40.1608C56.6115 38.918 54.5745 38.8945 53.2798 40.0903C53.1375 40.0326 52.9936 39.978 52.8481 39.9268C52.3665 38.721 51.1707 37.8672 49.7719 37.8672H49.2381C47.8394 37.8672 46.6436 38.7209 46.1619 39.9267C45.9465 40.0027 45.7344 40.0858 45.526 40.1757C44.2378 39.2918 42.4511 39.4144 41.3012 40.5436L40.5456 41.2855C39.3666 42.4433 39.2652 44.2586 40.2414 45.5295C40.1839 45.6681 40.1294 45.8083 40.078 45.95C38.8548 46.4252 37.9895 47.597 37.9895 48.9672L37.9895 49.7172C37.9895 51.0874 38.8548 52.2592 40.0781 52.7345Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M42.0406 53.211L41.6272 53.8959C41.2516 54.5185 41.3389 55.3347 41.8821 55.8681L42.3011 56.2796C42.7868 56.7566 43.5027 56.8767 44.1051 56.6304L44.8389 56.3304L45.5355 56.7063C45.9141 56.9106 46.3099 57.0865 46.7201 57.2311L47.4257 57.4798L47.6995 58.1651C47.9415 58.7707 48.5414 59.195 49.2381 59.195H49.7719C50.4687 59.195 51.0686 58.7707 51.3106 58.1651L51.5844 57.4798L52.29 57.231C52.4694 57.1678 52.6462 57.0985 52.8199 57.0235L53.6694 56.6568L54.4302 57.1785C55.0732 57.6194 55.9669 57.5561 56.5405 56.9929L57.2961 56.2509C57.8845 55.6731 57.9367 54.7649 57.4499 54.1306L56.8853 53.3953L57.2392 52.5425C57.2873 52.4265 57.3329 52.3092 57.3759 52.1907L57.6273 51.4972L58.3244 51.2264C58.939 50.9877 59.3691 50.3998 59.3691 49.7172V48.9672C59.3691 48.2846 58.939 47.6967 58.3244 47.458L57.6273 47.1872L57.376 46.4937C57.2708 46.2037 57.1501 45.9211 57.0147 45.647L56.5497 44.7054L57.2318 43.9013C57.7713 43.2654 57.7363 42.3163 57.1281 41.719L56.7091 41.3075L57.877 40.1608L58.296 40.5723C59.5137 41.768 59.5819 43.665 58.5008 44.9394C58.6624 45.2665 58.8065 45.6038 58.9319 45.9499C60.1553 46.4251 61.0207 47.5969 61.0207 48.9672V49.7172C61.0207 51.0875 60.1553 52.2594 58.9318 52.7345C58.8806 52.876 58.8262 53.016 58.7687 53.1544C59.7443 54.4253 59.6427 56.2401 58.464 57.3977L57.7084 58.1396C56.5588 59.2686 54.7727 59.3914 53.4846 58.5082C53.276 58.5982 53.0637 58.6814 52.8481 58.7574C52.3663 59.9631 51.1706 60.8168 49.7719 60.8168H49.2381C47.8394 60.8168 46.6438 59.9631 46.162 58.7574C45.6691 58.5837 45.194 58.3726 44.74 58.1276C43.5413 58.6176 42.1083 58.3839 41.1332 57.4264L40.7142 57.0149C39.6247 55.945 39.4554 54.3136 40.2064 53.0692C40.1617 52.9586 40.1189 52.847 40.0781 52.7345C38.8548 52.2592 37.9895 51.0874 37.9895 49.7172V48.9672C37.9895 47.597 38.8548 46.4252 40.078 45.95C40.1294 45.8083 40.1839 45.6681 40.2414 45.5295C39.2652 44.2586 39.3666 42.4433 40.5456 41.2855L41.3012 40.5436C42.4511 39.4144 44.2378 39.2918 45.526 40.1757C45.7344 40.0858 45.9465 40.0027 46.1619 39.9267C46.6436 38.7209 47.8394 37.8672 49.2381 37.8672H49.7719C50.7186 37.8672 51.5722 38.2582 52.1745 38.8848C52.2877 39.0025 52.392 39.1286 52.4863 39.2619C52.6318 39.4675 52.7537 39.6904 52.8481 39.9268C52.9936 39.978 53.1375 40.0326 53.2798 40.0903C54.5745 38.8945 56.6115 38.918 57.877 40.1608L56.7091 41.3075C56.0766 40.6864 55.0579 40.6744 54.4113 41.2716L53.6347 41.9889L52.6493 41.5893C52.5309 41.5412 52.4111 41.4958 52.29 41.4531L51.5844 41.2044L51.3106 40.519C51.0686 39.9133 50.4687 39.489 49.7719 39.489H49.2381C48.5414 39.489 47.9414 39.9133 47.6995 40.519L47.4257 41.2043L46.72 41.4531C46.5407 41.5163 46.3642 41.5855 46.1906 41.6604L45.3408 42.0272L44.5799 41.5051C43.9368 41.0638 43.0428 41.1269 42.4691 41.6903L41.7135 42.4323C41.125 43.0102 41.0728 43.9187 41.56 44.5529L42.1249 45.2884L41.7709 46.1415C41.7227 46.2576 41.6771 46.3751 41.634 46.4938L41.3827 47.1872L40.6857 47.458C40.0711 47.6968 39.6411 48.2846 39.6411 48.9672V49.7172C39.6411 50.3998 40.0711 50.9876 40.6857 51.2264L41.3827 51.4972L41.6341 52.1906C41.6683 52.2849 41.7041 52.3784 41.7416 52.4711L42.0406 53.211Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M46.0053 39.767C46.5386 38.5316 47.785 37.6644 49.2381 37.6644H49.7719C50.7777 37.6644 51.685 38.0802 52.3246 38.7456C52.4448 38.8707 52.5556 39.0045 52.6559 39.1462C52.7927 39.3396 52.91 39.5474 53.0047 39.767C53.0827 39.7953 53.1602 39.8245 53.2373 39.8546C54.616 38.6739 56.7101 38.7282 58.023 40.0174L58.442 40.4289C59.7036 41.6678 59.8039 43.6151 58.7429 44.9668C58.8721 45.237 58.9897 45.5138 59.0951 45.7966C60.3483 46.3222 61.2271 47.5437 61.2271 48.9672V49.7171C61.2271 51.1407 60.3483 52.3621 59.095 52.8878C59.0652 52.9676 59.0345 53.0469 59.0028 53.1258C59.9648 54.4705 59.8339 56.339 58.6099 57.541L57.8544 58.283C56.6613 59.4546 54.8232 59.6062 53.4629 58.7382C53.312 58.8014 53.1592 58.8611 53.0046 58.9171C52.4714 60.1524 51.225 61.0195 49.7719 61.0195H49.2381C47.7851 61.0195 46.5387 60.1524 46.0054 58.9172C45.5641 58.7571 45.137 58.5676 44.7266 58.3511C43.4728 58.8228 41.9984 58.5627 40.9873 57.5697L40.5682 57.1582C39.4356 56.0459 39.2392 54.363 39.9781 53.0526C39.9566 52.9979 39.9356 52.9429 39.915 52.8877C38.6618 52.362 37.7831 51.1406 37.7831 49.7171V48.9672C37.7831 47.5438 38.6618 46.3224 39.9149 45.7966C39.9447 45.7167 39.9755 45.6371 40.0073 45.5581C39.0447 44.2133 39.1754 42.3443 40.3996 41.1422L41.1552 40.4002C42.3486 39.2282 44.1873 39.0769 45.5477 39.9456C45.6984 39.8825 45.851 39.8229 46.0053 39.767ZM49.2381 38.0699C47.9271 38.0699 46.8059 38.87 46.3541 40.0007L46.3199 40.0864L46.2317 40.1175C46.0207 40.1919 45.8131 40.2732 45.6091 40.3613L45.5028 40.4071L45.4077 40.3419C44.2002 39.5132 42.525 39.6284 41.4472 40.6869L40.6916 41.4289C39.5864 42.5142 39.4911 44.2161 40.4062 45.4074L40.4768 45.4993L40.4326 45.606C40.3762 45.7418 40.3228 45.8791 40.2725 46.0179L40.2411 46.1046L40.154 46.1384C39.0068 46.5841 38.196 47.6829 38.196 48.9672V49.7171C38.196 51.0014 39.0069 52.1003 40.1541 52.5459L40.2412 52.5798L40.2726 52.6664C40.3126 52.7767 40.3545 52.886 40.3983 52.9944L40.4356 53.0869L40.384 53.1725C39.6799 54.3391 39.839 55.8686 40.8602 56.8715L41.2792 57.283C42.1931 58.1805 43.5365 58.4 44.6606 57.9404L44.7523 57.9029L44.8394 57.9499C45.284 58.1898 45.7492 58.3965 46.2318 58.5666L46.32 58.5977L46.3542 58.6834C46.806 59.814 47.9272 60.614 49.2381 60.614H49.7719C51.0829 60.614 52.2041 59.814 52.6559 58.6833L52.6901 58.5977L52.7783 58.5666C52.9894 58.4921 53.1973 58.4107 53.4015 58.3225L53.5077 58.2767L53.6028 58.3419C54.8103 59.1699 56.4848 59.0545 57.5624 57.9963L58.318 57.2543C59.423 56.1692 59.5184 54.4677 58.6039 53.2764L58.5333 53.1845L58.5775 53.0779C58.6338 52.9423 58.6871 52.8051 58.7373 52.6665L58.7688 52.5798L58.8559 52.546C60.0032 52.1004 60.8142 51.0015 60.8142 49.7171V48.9672C60.8142 47.6828 60.0033 46.584 58.856 46.1384L58.7689 46.1045L58.7374 46.0178C58.6145 45.6787 58.4733 45.3483 58.315 45.0278L58.2569 44.9101L58.3422 44.8096C59.3556 43.615 59.2915 41.8365 58.15 40.7156L57.877 40.4474L57.0011 41.3075L57.2741 41.5756C57.9583 42.2475 57.9978 43.3152 57.3905 44.0311L56.7936 44.7346L57.2005 45.5585C57.3391 45.8393 57.4628 46.1287 57.5704 46.4257L57.7904 47.0325L58.4004 47.2694C59.0915 47.5379 59.5755 48.199 59.5755 48.9672V49.7171C59.5755 50.4853 59.0914 51.1465 58.4003 51.4149L57.7903 51.6518L57.5704 52.2586C57.5264 52.38 57.4797 52.5002 57.4304 52.619L57.1208 53.3652L57.6147 54.0086C58.1629 54.7227 58.104 55.7442 57.442 56.3942L56.6865 57.1362C56.0412 57.7699 55.036 57.8411 54.312 57.3446L53.6463 56.8882L52.903 57.2091C52.7249 57.2859 52.5437 57.3569 52.3597 57.4218L51.7423 57.6395L51.5028 58.2391C51.2306 58.9202 50.556 59.3977 49.7719 59.3977H49.2381C48.4541 59.3977 47.7795 58.9202 47.5073 58.2391L47.2677 57.6395L46.6503 57.4218C46.2298 57.2736 45.8241 57.0933 45.436 56.8839L44.8265 56.555L44.1845 56.8175C43.5072 57.0944 42.7017 56.9597 42.1552 56.423L41.7361 56.0115C41.125 55.4113 41.0268 54.4932 41.4496 53.7926L41.8113 53.1933L41.5497 52.5458C41.5113 52.4509 41.4746 52.3551 41.4396 52.2586L41.2197 51.6518L40.6098 51.4149C39.9187 51.1464 39.4347 50.4853 39.4347 49.7171V48.9672C39.4347 48.1991 39.9187 47.5379 40.6097 47.2695L41.2196 47.0325L41.4395 46.4258C41.4836 46.3042 41.5303 46.1839 41.5797 46.0649L41.8894 45.3185L41.3951 44.6749C40.8466 43.9609 40.9054 42.9391 41.5675 42.2889L42.3231 41.5469C42.9685 40.9131 43.9741 40.842 44.6982 41.3389L45.3639 41.7957L46.1075 41.4748C46.2854 41.398 46.4664 41.3271 46.6503 41.2623L47.2677 41.0446L47.5073 40.4449C47.7794 39.7638 48.454 39.2862 49.2381 39.2862H49.7719C50.556 39.2862 51.2307 39.7638 51.5028 40.4449L51.7424 41.0446L52.3598 41.2623C52.4839 41.3061 52.6067 41.3526 52.7281 41.4018L53.5904 41.7515L54.2699 41.1239C54.9471 40.4984 55.9866 40.4668 56.7011 41.0287L57.5802 40.1654C56.3879 39.1391 54.5847 39.1633 53.4212 40.2379L53.3241 40.3276L53.201 40.2776C53.0617 40.2211 52.9208 40.1677 52.7784 40.1175L52.6902 40.0864L52.656 40.0008C52.5675 39.7792 52.4532 39.5703 52.3168 39.3776C52.2283 39.2525 52.1305 39.1343 52.0244 39.0239C51.4595 38.4362 50.6594 38.0699 49.7719 38.0699H49.2381ZM56.5631 41.4508C56.0096 40.9073 55.1183 40.8969 54.5528 41.4193L53.6791 42.2261L52.5705 41.7766C52.455 41.7298 52.3382 41.6855 52.2203 41.6439L51.4264 41.364L51.1184 40.593C50.9066 40.0627 50.3814 39.6917 49.7719 39.6917H49.2381C48.6287 39.6917 48.1035 40.0627 47.8917 40.593L47.5836 41.364L46.7898 41.6439C46.615 41.7055 46.4429 41.7729 46.2737 41.846L45.3176 42.2586L44.4616 41.6712C43.8995 41.2854 43.117 41.3407 42.6151 41.8336L41.8595 42.5756C41.3445 43.0813 41.299 43.8764 41.7248 44.4308L42.3603 45.2582L41.9621 46.2179C41.9151 46.3313 41.8705 46.4459 41.8285 46.5617L41.5458 47.3418L40.7616 47.6465C40.2236 47.8555 39.8476 48.3701 39.8476 48.9672V49.7171C39.8476 50.3142 40.2236 50.8288 40.7616 51.0378L41.5458 51.3425L41.8286 52.1226C41.862 52.2146 41.8969 52.3058 41.9335 52.3963L42.2698 53.2287L41.8049 53.9992C41.4763 54.5437 41.5529 55.2581 42.0281 55.7248L42.4471 56.1363C42.872 56.5534 43.4983 56.6589 44.0258 56.4432L44.8513 56.1057L45.6349 56.5286C46.0041 56.7279 46.39 56.8993 46.7899 57.0402L47.5836 57.3201L47.8917 58.091C48.1036 58.6212 48.6287 58.9922 49.2381 58.9922H49.7719C50.3814 58.9922 50.9065 58.6212 51.1184 58.091L51.4264 57.3201L52.2202 57.0402C52.3952 56.9785 52.5674 56.911 52.7368 56.8379L53.6925 56.4254L54.5484 57.0122C55.1105 57.3977 55.8927 57.3423 56.3945 56.8495L57.1501 56.1075C57.6649 55.6019 57.7106 54.807 57.285 54.2526L56.6499 53.4254L57.048 52.466C57.095 52.3528 57.1394 52.2383 57.1814 52.1227L57.4642 51.3425L58.2484 51.0379C58.7866 50.8289 59.1626 50.3142 59.1626 49.7171V48.9672C59.1626 48.3701 58.7866 47.8555 58.2485 47.6465L57.4642 47.3418L57.1815 46.5616C57.0789 46.2786 56.961 46.0029 56.8289 45.7354L56.3058 44.6761L57.0732 43.7716C57.5448 43.2157 57.5143 42.3849 56.9821 41.8623L56.5631 41.4508Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M49.505 51.9096C50.8923 51.9096 52.0582 50.7823 52.0582 49.3415C52.0582 47.9007 50.8923 46.7735 49.505 46.7735C48.1177 46.7735 46.9519 47.9007 46.9519 49.3415C46.9519 50.7823 48.1177 51.9096 49.505 51.9096ZM49.505 53.5314C51.8272 53.5314 53.7098 51.6555 53.7098 49.3415C53.7098 47.0275 51.8272 45.1517 49.505 45.1517C47.1828 45.1517 45.3003 47.0275 45.3003 49.3415C45.3003 51.6555 47.1828 53.5314 49.505 53.5314Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M49.505 45.3544C47.2997 45.3544 45.5067 47.1367 45.5067 49.3415C45.5067 51.5464 47.2997 53.3287 49.505 53.3287C51.7104 53.3287 53.5033 51.5464 53.5033 49.3415C53.5033 47.1367 51.7104 45.3544 49.505 45.3544ZM45.0938 49.3415C45.0938 46.9184 47.066 44.949 49.505 44.949C51.9441 44.949 53.9162 46.9184 53.9162 49.3415C53.9162 51.7647 51.9441 53.7341 49.505 53.7341C47.066 53.7341 45.0938 51.7647 45.0938 49.3415ZM49.505 46.9762C48.2341 46.9762 47.1584 48.0104 47.1584 49.3415C47.1584 50.6727 48.2341 51.7069 49.505 51.7069C50.776 51.7069 51.8517 50.6727 51.8517 49.3415C51.8517 48.0104 50.776 46.9762 49.505 46.9762ZM46.7454 49.3415C46.7454 47.791 48.0014 46.5708 49.505 46.5708C51.0086 46.5708 52.2646 47.791 52.2646 49.3415C52.2646 50.8921 51.0086 52.1123 49.505 52.1123C48.0014 52.1123 46.7454 50.8921 46.7454 49.3415Z" fill="#ED1C24"/>
+</svg>
diff --git a/public/img/features/in-memory/cache-aside-deployment-mob.svg b/public/img/features/in-memory/cache-aside-deployment-mob.svg
new file mode 100644
index 0000000..715e5be
--- /dev/null
+++ b/public/img/features/in-memory/cache-aside-deployment-mob.svg
@@ -0,0 +1,93 @@
+<svg width="613" height="321" viewBox="0 0 613 321" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M483.367 206.895V111.675C483.367 111.675 494.827 121.247 530.447 121.247C566.066 121.247 578.766 110.581 578.766 110.581V206.895C578.766 206.895 573.637 218.591 530.447 219.04C487.257 219.49 483.367 206.895 483.367 206.895Z" fill="white"/>
+<path d="M579.876 108.671C579.876 117.167 558.262 124.055 531.031 124.055C503.8 124.055 482.185 117.167 482.185 108.671C482.185 100.174 503.8 93.2858 531.031 93.2858C558.262 93.2858 579.876 100.174 579.876 108.671Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M574.873 113.074C577.107 111.398 577.883 109.89 577.883 108.671C577.883 107.452 577.107 105.943 574.873 104.267C572.672 102.614 569.354 101.04 565.062 99.6833C556.499 96.9767 544.502 95.2703 531.031 95.2703C517.56 95.2703 505.562 96.9767 497 99.6833C492.707 101.04 489.39 102.614 487.188 104.267C484.955 105.943 484.179 107.452 484.179 108.671C484.179 109.89 484.955 111.398 487.188 113.074C489.39 114.727 492.707 116.301 497 117.658C505.562 120.364 517.56 122.071 531.031 122.071C544.502 122.071 556.499 120.364 565.062 117.658C569.354 116.301 572.672 114.727 574.873 113.074ZM531.031 124.055C558.262 124.055 579.876 117.167 579.876 108.671C579.876 100.174 558.262 93.2858 531.031 93.2858C503.8 93.2858 482.185 100.174 482.185 108.671C482.185 117.167 503.8 124.055 531.031 124.055Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M482.121 204.501L482.121 109.495L484.114 109.495L484.114 204.501L482.121 204.501Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M577.957 204.599L578.067 108.1L580.06 108.103L579.95 204.602L577.957 204.599Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M497.445 214.001C505.995 216.638 517.869 218.284 531.027 218.284C544.186 218.284 556.059 216.638 564.609 214.001C568.891 212.68 572.283 211.128 574.583 209.451C576.904 207.759 577.94 206.074 577.94 204.501H579.933C579.933 207.007 578.288 209.209 575.761 211.052C573.212 212.911 569.588 214.543 565.199 215.896C556.41 218.607 544.328 220.268 531.027 220.268C517.726 220.268 505.644 218.607 496.855 215.896C492.466 214.543 488.842 212.911 486.294 211.052C483.766 209.209 482.121 207.007 482.121 204.501H484.114C484.114 206.074 485.151 207.759 487.471 209.451C489.771 211.128 493.164 212.68 497.445 214.001Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M497.445 149.511C505.995 152.148 517.869 153.794 531.027 153.794C544.186 153.794 556.059 152.148 564.609 149.511C568.891 148.191 572.283 146.639 574.583 144.962C576.904 143.27 577.94 141.585 577.94 140.011H579.933C579.933 142.518 578.288 144.72 575.761 146.563C573.212 148.421 569.588 150.053 565.199 151.407C556.41 154.117 544.328 155.779 531.027 155.779C517.726 155.779 505.644 154.117 496.855 151.407C492.466 150.053 488.842 148.421 486.294 146.563C483.766 144.72 482.121 142.518 482.121 140.011H484.114C484.114 141.585 485.151 143.27 487.471 144.962C489.771 146.639 493.164 148.191 497.445 149.511Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M497.445 181.978C505.995 184.615 517.869 186.262 531.027 186.262C544.186 186.262 556.059 184.615 564.609 181.978C568.891 180.658 572.283 179.106 574.583 177.429C576.904 175.737 577.94 174.052 577.94 172.478H579.933C579.933 174.985 578.288 177.187 575.761 179.03C573.212 180.889 569.588 182.521 565.199 183.874C556.41 186.585 544.328 188.246 531.027 188.246C517.726 188.246 505.644 186.585 496.855 183.874C492.466 182.521 488.842 180.889 486.294 179.03C483.766 177.187 482.121 174.985 482.121 172.478H484.114C484.114 174.052 485.151 175.737 487.471 177.429C489.771 179.106 493.164 180.658 497.445 181.978Z" fill="#ED1C24"/>
+<path d="M449 258.227V244H459.287V245.679H450.883V250.036H458.753V251.706H450.883V256.548H459.617V258.227H449Z" fill="#2D2D2D"/>
+<path d="M460.996 258.227L464.761 252.87L461.277 247.921H463.461L465.043 250.337C465.34 250.797 465.58 251.181 465.761 251.492C466.045 251.065 466.307 250.687 466.547 250.357L468.284 247.921H470.37L466.809 252.773L470.642 258.227H468.497L466.382 255.025L465.819 254.161L463.111 258.227H460.996Z" fill="#2D2D2D"/>
+<path d="M476.077 256.665L476.33 258.208C475.838 258.311 475.398 258.363 475.01 258.363C474.376 258.363 473.884 258.263 473.535 258.062C473.185 257.862 472.94 257.6 472.797 257.276C472.655 256.946 472.584 256.257 472.584 255.209V249.279H471.303V247.921H472.584V245.368L474.321 244.32V247.921H476.077V249.279H474.321V255.306C474.321 255.804 474.35 256.124 474.408 256.267C474.473 256.409 474.573 256.522 474.709 256.606C474.851 256.691 475.052 256.733 475.311 256.733C475.505 256.733 475.76 256.71 476.077 256.665Z" fill="#2D2D2D"/>
+<path d="M485.016 254.908L486.821 255.131C486.536 256.186 486.009 257.004 485.239 257.587C484.469 258.169 483.486 258.46 482.289 258.46C480.782 258.46 479.585 257.997 478.698 257.072C477.818 256.141 477.378 254.837 477.378 253.161C477.378 251.427 477.825 250.082 478.718 249.124C479.611 248.167 480.769 247.688 482.192 247.688C483.57 247.688 484.696 248.157 485.569 249.095C486.443 250.033 486.879 251.353 486.879 253.054C486.879 253.158 486.876 253.313 486.87 253.52H479.184C479.248 254.653 479.569 255.519 480.144 256.121C480.72 256.723 481.438 257.024 482.299 257.024C482.939 257.024 483.486 256.855 483.939 256.519C484.392 256.183 484.751 255.646 485.016 254.908ZM479.281 252.084H485.035C484.958 251.217 484.738 250.567 484.376 250.133C483.819 249.461 483.098 249.124 482.211 249.124C481.409 249.124 480.733 249.393 480.183 249.93C479.64 250.467 479.339 251.185 479.281 252.084Z" fill="#2D2D2D"/>
+<path d="M489.17 258.227V247.921H490.742V249.483C491.144 248.752 491.512 248.27 491.849 248.037C492.192 247.804 492.567 247.688 492.975 247.688C493.563 247.688 494.162 247.875 494.77 248.251L494.168 249.871C493.741 249.619 493.314 249.493 492.887 249.493C492.506 249.493 492.163 249.609 491.859 249.842C491.554 250.069 491.338 250.386 491.208 250.793C491.014 251.414 490.917 252.094 490.917 252.831V258.227H489.17Z" fill="#2D2D2D"/>
+<path d="M495.974 258.227V247.921H497.546V249.386C498.303 248.254 499.396 247.688 500.826 247.688C501.447 247.688 502.017 247.801 502.534 248.027C503.058 248.247 503.45 248.539 503.709 248.901C503.967 249.263 504.149 249.693 504.252 250.192C504.317 250.515 504.349 251.081 504.349 251.89V258.227H502.602V251.958C502.602 251.246 502.534 250.716 502.398 250.366C502.263 250.01 502.02 249.729 501.671 249.522C501.328 249.308 500.923 249.202 500.458 249.202C499.714 249.202 499.07 249.438 498.526 249.91C497.989 250.382 497.721 251.279 497.721 252.598V258.227H495.974Z" fill="#2D2D2D"/>
+<path d="M513.928 256.956C513.281 257.506 512.657 257.894 512.055 258.12C511.46 258.347 510.82 258.46 510.134 258.46C509.002 258.46 508.131 258.185 507.523 257.635C506.915 257.079 506.611 256.37 506.611 255.51C506.611 255.005 506.724 254.546 506.951 254.132C507.184 253.711 507.484 253.375 507.853 253.122C508.228 252.87 508.649 252.679 509.115 252.55C509.458 252.459 509.975 252.372 510.668 252.288C512.078 252.12 513.116 251.919 513.783 251.686C513.789 251.447 513.792 251.295 513.792 251.23C513.792 250.518 513.627 250.017 513.298 249.726C512.851 249.331 512.188 249.134 511.308 249.134C510.486 249.134 509.878 249.279 509.484 249.57C509.095 249.855 508.807 250.363 508.62 251.094L506.912 250.861C507.067 250.13 507.323 249.541 507.678 249.095C508.034 248.642 508.549 248.296 509.222 248.057C509.894 247.811 510.674 247.688 511.56 247.688C512.44 247.688 513.155 247.791 513.705 247.998C514.255 248.205 514.659 248.467 514.918 248.784C515.177 249.095 515.358 249.49 515.462 249.968C515.52 250.266 515.549 250.803 515.549 251.579V253.908C515.549 255.532 515.585 256.561 515.656 256.995C515.733 257.422 515.882 257.832 516.102 258.227H514.278C514.097 257.865 513.98 257.441 513.928 256.956ZM513.783 253.054C513.149 253.313 512.198 253.533 510.93 253.714C510.211 253.818 509.704 253.934 509.406 254.064C509.108 254.193 508.879 254.384 508.717 254.636C508.555 254.882 508.474 255.157 508.474 255.461C508.474 255.927 508.649 256.315 508.998 256.626C509.354 256.936 509.872 257.092 510.551 257.092C511.224 257.092 511.822 256.946 512.346 256.655C512.871 256.357 513.255 255.953 513.501 255.442C513.689 255.047 513.783 254.465 513.783 253.695V253.054Z" fill="#2D2D2D"/>
+<path d="M518.393 258.227V244H520.14V258.227H518.393Z" fill="#2D2D2D"/>
+<path d="M528.943 258.227V244H533.844C534.951 244 535.795 244.068 536.377 244.204C537.192 244.391 537.888 244.731 538.464 245.223C539.214 245.857 539.774 246.669 540.143 247.659C540.518 248.642 540.706 249.768 540.706 251.036C540.706 252.116 540.579 253.074 540.327 253.908C540.075 254.743 539.751 255.435 539.357 255.985C538.962 256.529 538.528 256.959 538.056 257.276C537.59 257.587 537.024 257.823 536.358 257.984C535.698 258.146 534.938 258.227 534.077 258.227H528.943ZM530.826 256.548H533.864C534.802 256.548 535.536 256.461 536.067 256.286C536.604 256.111 537.031 255.866 537.348 255.549C537.794 255.102 538.14 254.504 538.386 253.753C538.638 252.996 538.765 252.081 538.765 251.007C538.765 249.519 538.519 248.377 538.027 247.581C537.542 246.779 536.95 246.242 536.251 245.97C535.746 245.776 534.934 245.679 533.815 245.679H530.826V256.548Z" fill="#2D2D2D"/>
+<path d="M549.974 256.956C549.327 257.506 548.703 257.894 548.101 258.12C547.506 258.347 546.865 258.46 546.18 258.46C545.047 258.46 544.177 258.185 543.569 257.635C542.961 257.079 542.657 256.37 542.657 255.51C542.657 255.005 542.77 254.546 542.996 254.132C543.229 253.711 543.53 253.375 543.899 253.122C544.274 252.87 544.695 252.679 545.161 252.55C545.504 252.459 546.021 252.372 546.713 252.288C548.124 252.12 549.162 251.919 549.829 251.686C549.835 251.447 549.838 251.295 549.838 251.23C549.838 250.518 549.673 250.017 549.343 249.726C548.897 249.331 548.234 249.134 547.354 249.134C546.532 249.134 545.924 249.279 545.529 249.57C545.141 249.855 544.853 250.363 544.666 251.094L542.958 250.861C543.113 250.13 543.368 249.541 543.724 249.095C544.08 248.642 544.595 248.296 545.267 248.057C545.94 247.811 546.72 247.688 547.606 247.688C548.486 247.688 549.201 247.791 549.751 247.998C550.301 248.205 550.705 248.467 550.964 248.784C551.223 249.095 551.404 249.49 551.507 249.968C551.566 250.266 551.595 250.803 551.595 251.579V253.908C551.595 255.532 551.63 256.561 551.702 256.995C551.779 257.422 551.928 257.832 552.148 258.227H550.324C550.142 257.865 550.026 257.441 549.974 256.956ZM549.829 253.054C549.195 253.313 548.243 253.533 546.975 253.714C546.257 253.818 545.749 253.934 545.452 254.064C545.154 254.193 544.924 254.384 544.763 254.636C544.601 254.882 544.52 255.157 544.52 255.461C544.52 255.927 544.695 256.315 545.044 256.626C545.4 256.936 545.918 257.092 546.597 257.092C547.27 257.092 547.868 256.946 548.392 256.655C548.916 256.357 549.301 255.953 549.547 255.442C549.735 255.047 549.829 254.465 549.829 253.695V253.054Z" fill="#2D2D2D"/>
+<path d="M558.292 256.665L558.544 258.208C558.052 258.311 557.612 258.363 557.224 258.363C556.59 258.363 556.098 258.263 555.749 258.062C555.4 257.862 555.154 257.6 555.012 257.276C554.869 256.946 554.798 256.257 554.798 255.209V249.279H553.517V247.921H554.798V245.368L556.535 244.32V247.921H558.292V249.279H556.535V255.306C556.535 255.804 556.564 256.124 556.623 256.267C556.687 256.409 556.788 256.522 556.923 256.606C557.066 256.691 557.266 256.733 557.525 256.733C557.719 256.733 557.975 256.71 558.292 256.665Z" fill="#2D2D2D"/>
+<path d="M566.9 256.956C566.253 257.506 565.629 257.894 565.027 258.12C564.432 258.347 563.792 258.46 563.106 258.46C561.974 258.46 561.104 258.185 560.495 257.635C559.887 257.079 559.583 256.37 559.583 255.51C559.583 255.005 559.696 254.546 559.923 254.132C560.156 253.711 560.457 253.375 560.825 253.122C561.201 252.87 561.621 252.679 562.087 252.55C562.43 252.459 562.947 252.372 563.64 252.288C565.05 252.12 566.088 251.919 566.755 251.686C566.761 251.447 566.765 251.295 566.765 251.23C566.765 250.518 566.6 250.017 566.27 249.726C565.823 249.331 565.16 249.134 564.28 249.134C563.459 249.134 562.85 249.279 562.456 249.57C562.067 249.855 561.78 250.363 561.592 251.094L559.884 250.861C560.039 250.13 560.295 249.541 560.651 249.095C561.006 248.642 561.521 248.296 562.194 248.057C562.867 247.811 563.646 247.688 564.532 247.688C565.412 247.688 566.127 247.791 566.677 247.998C567.227 248.205 567.632 248.467 567.89 248.784C568.149 249.095 568.33 249.49 568.434 249.968C568.492 250.266 568.521 250.803 568.521 251.579V253.908C568.521 255.532 568.557 256.561 568.628 256.995C568.706 257.422 568.854 257.832 569.074 258.227H567.25C567.069 257.865 566.952 257.441 566.9 256.956ZM566.755 253.054C566.121 253.313 565.17 253.533 563.902 253.714C563.184 253.818 562.676 253.934 562.378 254.064C562.08 254.193 561.851 254.384 561.689 254.636C561.527 254.882 561.446 255.157 561.446 255.461C561.446 255.927 561.621 256.315 561.97 256.626C562.326 256.936 562.844 257.092 563.523 257.092C564.196 257.092 564.795 256.946 565.319 256.655C565.843 256.357 566.228 255.953 566.473 255.442C566.661 255.047 566.755 254.465 566.755 253.695V253.054Z" fill="#2D2D2D"/>
+<path d="M573.015 258.227H571.394V244H573.141V249.076C573.879 248.15 574.82 247.688 575.965 247.688C576.599 247.688 577.198 247.817 577.761 248.076C578.33 248.328 578.796 248.687 579.158 249.153C579.527 249.613 579.815 250.169 580.022 250.822C580.229 251.476 580.332 252.175 580.332 252.919C580.332 254.685 579.896 256.05 579.022 257.014C578.149 257.978 577.101 258.46 575.878 258.46C574.662 258.46 573.707 257.952 573.015 256.936V258.227ZM572.996 252.996C572.996 254.232 573.164 255.125 573.5 255.675C574.05 256.574 574.794 257.024 575.732 257.024C576.496 257.024 577.156 256.694 577.712 256.034C578.269 255.367 578.547 254.378 578.547 253.064C578.547 251.718 578.278 250.725 577.741 250.085C577.211 249.444 576.567 249.124 575.81 249.124C575.047 249.124 574.387 249.457 573.83 250.124C573.274 250.784 572.996 251.741 572.996 252.996Z" fill="#2D2D2D"/>
+<path d="M589.358 256.956C588.711 257.506 588.087 257.894 587.485 258.12C586.89 258.347 586.25 258.46 585.564 258.46C584.432 258.46 583.561 258.185 582.953 257.635C582.345 257.079 582.041 256.37 582.041 255.51C582.041 255.005 582.154 254.546 582.381 254.132C582.614 253.711 582.915 253.375 583.283 253.122C583.659 252.87 584.079 252.679 584.545 252.55C584.888 252.459 585.405 252.372 586.098 252.288C587.508 252.12 588.546 251.919 589.213 251.686C589.219 251.447 589.223 251.295 589.223 251.23C589.223 250.518 589.058 250.017 588.728 249.726C588.281 249.331 587.618 249.134 586.738 249.134C585.916 249.134 585.308 249.279 584.914 249.57C584.525 249.855 584.238 250.363 584.05 251.094L582.342 250.861C582.497 250.13 582.753 249.541 583.109 249.095C583.464 248.642 583.979 248.296 584.652 248.057C585.325 247.811 586.104 247.688 586.99 247.688C587.87 247.688 588.585 247.791 589.135 247.998C589.685 248.205 590.09 248.467 590.348 248.784C590.607 249.095 590.788 249.49 590.892 249.968C590.95 250.266 590.979 250.803 590.979 251.579V253.908C590.979 255.532 591.015 256.561 591.086 256.995C591.163 257.422 591.312 257.832 591.532 258.227H589.708C589.527 257.865 589.41 257.441 589.358 256.956ZM589.213 253.054C588.579 253.313 587.628 253.533 586.36 253.714C585.642 253.818 585.134 253.934 584.836 254.064C584.538 254.193 584.309 254.384 584.147 254.636C583.985 254.882 583.904 255.157 583.904 255.461C583.904 255.927 584.079 256.315 584.428 256.626C584.784 256.936 585.302 257.092 585.981 257.092C586.654 257.092 587.253 256.946 587.777 256.655C588.301 256.357 588.686 255.953 588.931 255.442C589.119 255.047 589.213 254.465 589.213 253.695V253.054Z" fill="#2D2D2D"/>
+<path d="M593.163 255.151L594.891 254.879C594.988 255.571 595.256 256.102 595.696 256.471C596.143 256.839 596.764 257.024 597.56 257.024C598.362 257.024 598.957 256.862 599.345 256.538C599.733 256.209 599.927 255.824 599.927 255.384C599.927 254.989 599.756 254.678 599.413 254.452C599.174 254.297 598.579 254.099 597.627 253.86C596.346 253.536 595.457 253.258 594.959 253.025C594.467 252.786 594.092 252.459 593.833 252.045C593.581 251.625 593.454 251.162 593.454 250.657C593.454 250.198 593.558 249.774 593.765 249.386C593.979 248.991 594.266 248.665 594.629 248.406C594.9 248.205 595.269 248.037 595.735 247.901C596.207 247.759 596.712 247.688 597.249 247.688C598.058 247.688 598.766 247.804 599.374 248.037C599.989 248.27 600.442 248.587 600.733 248.988C601.024 249.383 601.225 249.913 601.335 250.58L599.627 250.813C599.549 250.282 599.323 249.868 598.947 249.57C598.579 249.273 598.054 249.124 597.375 249.124C596.573 249.124 596 249.257 595.657 249.522C595.315 249.787 595.143 250.098 595.143 250.454C595.143 250.68 595.214 250.884 595.357 251.065C595.499 251.253 595.722 251.408 596.026 251.531C596.201 251.596 596.715 251.744 597.569 251.977C598.805 252.307 599.665 252.579 600.151 252.792C600.642 252.999 601.027 253.304 601.306 253.705C601.584 254.106 601.723 254.604 601.723 255.199C601.723 255.782 601.551 256.331 601.208 256.849C600.872 257.36 600.384 257.758 599.743 258.043C599.103 258.321 598.378 258.46 597.569 258.46C596.23 258.46 595.208 258.182 594.503 257.625C593.804 257.069 593.357 256.244 593.163 255.151Z" fill="#2D2D2D"/>
+<path d="M611.021 254.908L612.826 255.131C612.541 256.186 612.014 257.004 611.244 257.587C610.474 258.169 609.49 258.46 608.294 258.46C606.786 258.46 605.589 257.997 604.703 257.072C603.823 256.141 603.383 254.837 603.383 253.161C603.383 251.427 603.829 250.082 604.722 249.124C605.615 248.167 606.773 247.688 608.197 247.688C609.575 247.688 610.7 248.157 611.574 249.095C612.447 250.033 612.884 251.353 612.884 253.054C612.884 253.158 612.881 253.313 612.874 253.52H605.188C605.253 254.653 605.573 255.519 606.149 256.121C606.725 256.723 607.443 257.024 608.303 257.024C608.944 257.024 609.49 256.855 609.943 256.519C610.396 256.183 610.755 255.646 611.021 254.908ZM605.285 252.084H611.04C610.962 251.217 610.742 250.567 610.38 250.133C609.824 249.461 609.102 249.124 608.216 249.124C607.414 249.124 606.738 249.393 606.188 249.93C605.644 250.467 605.343 251.185 605.285 252.084Z" fill="#2D2D2D"/>
+<path d="M295.92 172.903L355.131 188.504L355.131 103.719L295.92 88.1181L237.748 106.145L237.748 190.578L295.92 172.903Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M236.751 191.918L236.751 105.415L295.898 87.0857L356.127 102.955L356.127 189.793L295.939 173.935L236.751 191.918ZM238.744 189.238L295.9 171.872L354.134 187.215L354.134 104.482L295.942 89.1503L238.744 106.875L238.744 189.238Z" fill="#2D2D2D"/>
+<path d="M296.959 122.39L237.748 106.789L237.748 210.177L296.959 225.778L355.131 207.75L355.131 104.715L296.959 122.39Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M356.127 103.375L356.128 208.481L296.981 226.81L236.751 210.941L236.751 105.501L296.939 121.358L356.127 103.375ZM354.134 106.055L296.978 123.421L238.744 108.078L238.744 209.414L296.936 224.745L354.134 207.02L354.134 106.055Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M295.095 224.049L295.095 122.223L297.089 122.223L297.089 224.049L295.095 224.049Z" fill="#2D2D2D"/>
+<path d="M0.0610352 158.693C0.0610352 121.651 30.2219 91.6223 67.4273 91.6223C104.633 91.6223 134.793 121.651 134.793 158.693C134.793 195.735 104.633 225.763 67.4273 225.763C30.2219 225.763 0.0610352 195.735 0.0610352 158.693Z" fill="#ED1C24"/>
+<path d="M55.3545 134.91C55.3545 134.91 24.4713 153.627 53.577 172.212C59.176 175.832 79.4833 185.897 78.9057 195.212C78.9057 195.212 91.2145 177.112 73.2178 165.723C54.7324 154.069 50.111 141.62 55.3545 134.91Z" fill="white"/>
+<path d="M44.6008 170.667C44.6008 170.667 33.5806 187.266 55.2655 190.665C57.3984 190.93 73.0844 192.563 77.1726 197.684C77.1726 197.684 76.8171 188.855 64.0194 183.646C51.2662 178.437 46.0228 177.156 44.6008 170.667Z" fill="white"/>
+<path d="M87.2598 153.23C74.0178 139.457 70.3296 130.937 76.0174 119.901C76.0174 119.901 36.5136 134.998 75.5286 161.794C89.4816 171.373 87.1709 181.173 87.1709 181.526C89.3483 179.275 100.502 167.003 87.2598 153.23Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M68.1582 250.468C67.769 250.08 67.138 250.08 66.7488 250.468L60.4064 256.782C60.0172 257.17 60.0172 257.798 60.4064 258.185C60.7956 258.573 61.4266 258.573 61.8158 258.185L66.4569 253.565V280.062C66.4569 302.53 84.7508 320.743 107.318 320.743H259.503C280.343 320.743 297.237 303.923 297.237 283.174H295.244C295.244 302.827 279.242 318.759 259.503 318.759H107.318C85.8516 318.759 68.4501 301.434 68.4501 280.062V253.565L73.0911 258.185C73.4803 258.573 74.1113 258.573 74.5005 258.185C74.8897 257.798 74.8897 257.17 74.5005 256.782L68.1582 250.468Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M68.1582 71.0192C67.769 71.4067 67.138 71.4067 66.7488 71.0192L60.4064 64.7047C60.0172 64.3172 60.0172 63.689 60.4064 63.3015C60.7956 62.914 61.4266 62.914 61.8158 63.3015L66.4569 67.9221L66.4569 41.4248C66.4569 18.9572 84.7508 0.743514 107.318 0.743509L256.377 0.743472C278.943 0.743466 297.237 18.9571 297.237 41.4248L297.237 69.7584C297.237 70.3064 296.791 70.7506 296.241 70.7506C295.69 70.7506 295.244 70.3064 295.244 69.7584L295.244 41.4248C295.244 20.0531 277.843 2.72793 256.377 2.72793L107.318 2.72797C85.8516 2.72797 68.4501 20.0532 68.4501 41.4248L68.4501 67.9221L73.0911 63.3015C73.4803 62.914 74.1113 62.914 74.5005 63.3015C74.8897 63.689 74.8897 64.3172 74.5005 64.7047L68.1582 71.0192Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M145.416 163.141C145.027 163.528 145.027 164.156 145.416 164.544L151.759 170.858C152.148 171.246 152.779 171.246 153.168 170.858C153.557 170.471 153.557 169.843 153.168 169.455L148.527 164.835L224.818 164.835C225.368 164.835 225.814 164.39 225.814 163.842C225.814 163.294 225.368 162.85 224.818 162.85L148.527 162.85L153.168 158.229C153.557 157.842 153.557 157.214 153.168 156.826C152.779 156.439 152.148 156.439 151.759 156.826L145.416 163.141Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M445.784 148.119L452.126 154.434C452.515 154.821 452.515 155.45 452.126 155.837L445.784 162.152C445.394 162.539 444.763 162.539 444.374 162.152C443.985 161.764 443.985 161.136 444.374 160.748L449.015 156.128H385.401C384.85 156.128 384.404 155.684 384.404 155.136C384.404 154.588 384.85 154.143 385.401 154.143H449.015L444.374 149.523C443.985 149.135 443.985 148.507 444.374 148.119C444.763 147.732 445.394 147.732 445.784 148.119Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M391.038 184.817L384.696 178.503C384.306 178.115 384.306 177.487 384.696 177.1L391.038 170.785C391.427 170.398 392.058 170.398 392.447 170.785C392.836 171.173 392.836 171.801 392.447 172.188L387.806 176.809L451.421 176.809C451.971 176.809 452.417 177.253 452.417 177.801C452.417 178.349 451.971 178.794 451.421 178.794L387.806 178.794L392.447 183.414C392.836 183.802 392.836 184.43 392.447 184.817C392.058 185.205 391.427 185.205 391.038 184.817Z" fill="black"/>
+<path d="M169.906 146.053L171.687 145.898C171.771 146.608 171.966 147.193 172.271 147.651C172.582 148.104 173.062 148.472 173.711 148.756C174.36 149.034 175.09 149.173 175.901 149.173C176.621 149.173 177.257 149.066 177.808 148.853C178.36 148.64 178.769 148.349 179.035 147.981C179.307 147.606 179.444 147.199 179.444 146.76C179.444 146.314 179.314 145.927 179.054 145.597C178.795 145.261 178.366 144.98 177.77 144.754C177.387 144.606 176.54 144.376 175.229 144.066C173.919 143.75 173.001 143.452 172.475 143.175C171.794 142.819 171.285 142.38 170.947 141.857C170.616 141.327 170.451 140.736 170.451 140.084C170.451 139.367 170.655 138.698 171.064 138.078C171.473 137.451 172.07 136.977 172.855 136.654C173.64 136.331 174.512 136.169 175.473 136.169C176.53 136.169 177.461 136.34 178.266 136.683C179.077 137.019 179.7 137.516 180.135 138.175C180.569 138.834 180.803 139.58 180.835 140.413L179.025 140.549C178.928 139.651 178.597 138.973 178.032 138.514C177.474 138.055 176.647 137.826 175.551 137.826C174.409 137.826 173.575 138.036 173.049 138.456C172.53 138.869 172.271 139.37 172.271 139.958C172.271 140.468 172.456 140.888 172.825 141.217C173.189 141.547 174.136 141.886 175.667 142.235C177.205 142.577 178.259 142.878 178.83 143.136C179.661 143.517 180.274 144.002 180.67 144.589C181.066 145.171 181.264 145.843 181.264 146.605C181.264 147.361 181.046 148.074 180.611 148.746C180.177 149.412 179.551 149.932 178.733 150.306C177.922 150.675 177.007 150.859 175.989 150.859C174.697 150.859 173.614 150.671 172.738 150.297C171.868 149.922 171.184 149.36 170.684 148.611C170.191 147.855 169.932 147.002 169.906 146.053Z" fill="#9C9C9C"/>
+<path d="M195.054 149.095C195.93 149.696 196.738 150.135 197.477 150.413L196.923 151.721C195.897 151.353 194.876 150.771 193.857 149.977C192.799 150.565 191.631 150.859 190.353 150.859C189.062 150.859 187.891 150.549 186.84 149.928C185.789 149.308 184.978 148.436 184.407 147.312C183.842 146.188 183.56 144.922 183.56 143.514C183.56 142.112 183.845 140.836 184.416 139.686C184.987 138.537 185.798 137.661 186.85 137.061C187.907 136.46 189.088 136.159 190.392 136.159C191.709 136.159 192.897 136.473 193.954 137.099C195.012 137.719 195.816 138.591 196.368 139.715C196.926 140.833 197.205 142.096 197.205 143.504C197.205 144.673 197.026 145.726 196.67 146.663C196.313 147.593 195.774 148.404 195.054 149.095ZM190.898 146.692C191.988 146.996 192.887 147.448 193.594 148.049C194.704 147.041 195.258 145.526 195.258 143.504C195.258 142.354 195.06 141.35 194.665 140.491C194.275 139.632 193.701 138.966 192.942 138.495C192.189 138.017 191.343 137.778 190.402 137.778C188.994 137.778 187.826 138.259 186.898 139.221C185.97 140.177 185.506 141.608 185.506 143.514C185.506 145.361 185.964 146.779 186.879 147.768C187.8 148.756 188.974 149.25 190.402 149.25C191.077 149.25 191.713 149.124 192.309 148.872C191.719 148.491 191.096 148.22 190.441 148.058L190.898 146.692Z" fill="#9C9C9C"/>
+<path d="M200.076 150.616V136.411H201.964V148.94H208.99V150.616H200.076Z" fill="#9C9C9C"/>
+<path d="M99.8641 36.2495L101.752 36.7243C101.356 38.2682 100.643 39.4471 99.611 40.2611C98.5859 41.0685 97.3304 41.4723 95.8446 41.4723C94.3068 41.4723 93.0546 41.1622 92.0878 40.5421C91.1276 39.9155 90.3944 39.0111 89.8883 37.8289C89.3887 36.6468 89.1389 35.3774 89.1389 34.0209C89.1389 32.5416 89.4212 31.2528 89.9856 30.1547C90.5566 29.05 91.3644 28.2135 92.409 27.645C93.4601 27.0701 94.615 26.7827 95.8738 26.7827C97.3012 26.7827 98.5015 27.1444 99.4748 27.8679C100.448 28.5914 101.126 29.6088 101.509 30.9202L99.6499 31.3562C99.319 30.3226 98.8389 29.5701 98.2095 29.0985C97.5802 28.6269 96.7886 28.3911 95.8348 28.3911C94.7383 28.3911 93.8202 28.6528 93.0806 29.176C92.3474 29.6993 91.8316 30.4034 91.5331 31.2884C91.2346 32.1669 91.0854 33.0745 91.0854 34.0112C91.0854 35.2192 91.2606 36.2754 91.611 37.1797C91.9678 38.0776 92.5193 38.7495 93.2655 39.1952C94.0116 39.6409 94.8194 39.8638 95.6888 39.8638C96.7464 39.8638 97.6418 39.5602 98.375 38.9529C99.1082 38.3457 99.6045 37.4446 99.8641 36.2495Z" fill="#9C9C9C"/>
+<path d="M103.611 36.0848C103.611 34.1791 104.143 32.7677 105.207 31.8504C106.096 31.0881 107.179 30.707 108.457 30.707C109.878 30.707 111.04 31.1721 111.942 32.1023C112.843 33.0261 113.294 34.3051 113.294 35.9394C113.294 37.2637 113.093 38.307 112.691 39.0692C112.295 39.825 111.715 40.4129 110.949 40.8327C110.19 41.2526 109.359 41.4626 108.457 41.4626C107.011 41.4626 105.839 41.0007 104.944 40.077C104.055 39.1532 103.611 37.8225 103.611 36.0848ZM105.411 36.0848C105.411 37.4026 105.7 38.3909 106.277 39.0498C106.855 39.7023 107.581 40.0285 108.457 40.0285C109.327 40.0285 110.05 39.6991 110.628 39.0402C111.205 38.3812 111.494 37.3767 111.494 36.0266C111.494 34.7541 111.202 33.7916 110.618 33.1391C110.041 32.4802 109.32 32.1508 108.457 32.1508C107.581 32.1508 106.855 32.477 106.277 33.1294C105.7 33.7819 105.411 34.767 105.411 36.0848Z" fill="#9C9C9C"/>
+<path d="M115.756 41.23V30.9395H117.323V32.3833C117.648 31.8794 118.079 31.4757 118.618 31.1721C119.156 30.862 119.769 30.707 120.457 30.707C121.223 30.707 121.849 30.8653 122.335 31.1818C122.829 31.4983 123.176 31.9408 123.377 32.5093C124.194 31.3078 125.258 30.707 126.569 30.707C127.594 30.707 128.383 30.9912 128.934 31.5597C129.486 32.1217 129.761 32.9905 129.761 34.1662V41.23H128.019V34.7476C128.019 34.0499 127.961 33.5493 127.844 33.2457C127.734 32.9356 127.529 32.6869 127.231 32.4996C126.932 32.3123 126.582 32.2186 126.18 32.2186C125.453 32.2186 124.85 32.4608 124.37 32.9453C123.889 33.4233 123.649 34.1921 123.649 35.2515V41.23H121.898V34.5441C121.898 33.7689 121.755 33.1876 121.469 32.8C121.184 32.4124 120.717 32.2186 120.068 32.2186C119.575 32.2186 119.117 32.3478 118.696 32.6062C118.28 32.8646 117.979 33.2425 117.79 33.7399C117.602 34.2373 117.508 34.9543 117.508 35.891V41.23H115.756Z" fill="#9C9C9C"/>
+<path d="M132.759 45.1737V30.9395H134.355V32.2767C134.731 31.7535 135.156 31.3627 135.63 31.1043C136.103 30.8394 136.677 30.707 137.352 30.707C138.235 30.707 139.013 30.9331 139.688 31.3853C140.363 31.8375 140.872 32.477 141.216 33.3038C141.56 34.1242 141.732 35.0254 141.732 36.0073C141.732 37.0602 141.54 38.0098 141.158 38.856C140.781 39.6958 140.23 40.3418 139.503 40.794C138.783 41.2397 138.024 41.4626 137.226 41.4626C136.642 41.4626 136.116 41.3398 135.649 41.0944C135.188 40.8489 134.809 40.5388 134.51 40.1642V45.1737H132.759ZM134.345 36.1429C134.345 37.4672 134.614 38.4458 135.153 39.0789C135.691 39.712 136.343 40.0285 137.109 40.0285C137.888 40.0285 138.553 39.7023 139.104 39.0498C139.662 38.3909 139.941 37.3735 139.941 35.9976C139.941 34.6862 139.669 33.7043 139.124 33.0519C138.585 32.3995 137.939 32.0732 137.187 32.0732C136.441 32.0732 135.779 32.4221 135.201 33.1197C134.63 33.8109 134.345 34.8187 134.345 36.1429Z" fill="#9C9C9C"/>
+<path d="M151.026 41.23V39.7184C150.221 40.8812 149.128 41.4626 147.746 41.4626C147.136 41.4626 146.565 41.3463 146.033 41.1138C145.508 40.8812 145.115 40.5905 144.856 40.2417C144.603 39.8864 144.424 39.4536 144.32 38.9433C144.249 38.6009 144.213 38.0583 144.213 37.3154V30.9395H145.965V36.6468C145.965 37.5576 146.001 38.1713 146.072 38.4878C146.182 38.9465 146.416 39.3082 146.773 39.5731C147.13 39.8315 147.571 39.9607 148.096 39.9607C148.622 39.9607 149.115 39.8282 149.576 39.5634C150.036 39.2921 150.361 38.9271 150.549 38.4685C150.744 38.0034 150.841 37.3315 150.841 36.453V30.9395H152.593V41.23H151.026Z" fill="#9C9C9C"/>
+<path d="M159.571 39.67L159.824 41.2106C159.331 41.314 158.889 41.3657 158.5 41.3657C157.864 41.3657 157.371 41.2656 157.021 41.0653C156.67 40.865 156.424 40.6034 156.281 40.2804C156.138 39.951 156.067 39.263 156.067 38.2165V32.2961H154.782V30.9395H156.067V28.3911L157.809 27.3447V30.9395H159.571V32.2961H157.809V38.3134C157.809 38.8108 157.838 39.1306 157.897 39.2727C157.962 39.4148 158.062 39.5279 158.198 39.6118C158.341 39.6958 158.542 39.7378 158.802 39.7378C158.996 39.7378 159.253 39.7152 159.571 39.67Z" fill="#9C9C9C"/>
+<path d="M168.767 37.9161L170.578 38.139C170.292 39.192 169.763 40.0091 168.991 40.5905C168.219 41.1719 167.233 41.4626 166.033 41.4626C164.521 41.4626 163.32 41.0007 162.432 40.077C161.549 39.1467 161.108 37.8451 161.108 36.172C161.108 34.4408 161.556 33.0971 162.451 32.1411C163.346 31.185 164.508 30.707 165.935 30.707C167.317 30.707 168.446 31.1753 169.322 32.112C170.198 33.0487 170.636 34.3665 170.636 36.0654C170.636 36.1688 170.633 36.3238 170.626 36.5305H162.918C162.983 37.661 163.304 38.5266 163.882 39.1274C164.459 39.7281 165.179 40.0285 166.042 40.0285C166.685 40.0285 167.233 39.8605 167.687 39.5246C168.141 39.1887 168.501 38.6526 168.767 37.9161ZM163.016 35.0964H168.787C168.709 34.2308 168.488 33.5816 168.125 33.1488C167.567 32.477 166.844 32.1411 165.955 32.1411C165.15 32.1411 164.472 32.4092 163.921 32.9453C163.376 33.4815 163.074 34.1985 163.016 35.0964Z" fill="#9C9C9C"/>
+<path d="M187.287 39.5537C186.71 40.1932 186.081 40.6745 185.399 40.9975C184.718 41.314 183.982 41.4723 183.19 41.4723C181.73 41.4723 180.572 40.9813 179.716 39.9994C179.021 39.1984 178.674 38.3037 178.674 37.3154C178.674 36.4368 178.956 35.6455 179.521 34.9414C180.092 34.2308 180.942 33.6074 182.071 33.0713C181.428 32.3349 181 31.7373 180.786 31.2787C180.572 30.82 180.465 30.3775 180.465 29.9512C180.465 29.0985 180.799 28.3588 181.467 27.7322C182.142 27.0992 182.989 26.7827 184.008 26.7827C184.981 26.7827 185.776 27.0798 186.392 27.6741C187.015 28.2684 187.326 28.9822 187.326 29.8155C187.326 31.1656 186.428 32.3187 184.63 33.2748L187.19 36.5208C187.482 35.9524 187.709 35.2935 187.871 34.5441L189.691 34.9317C189.38 36.172 188.958 37.1926 188.426 37.9937C189.081 38.8593 189.824 39.586 190.655 40.1738L189.477 41.5595C188.77 41.1073 188.04 40.4387 187.287 39.5537ZM183.725 32.1508C184.484 31.705 184.974 31.3142 185.195 30.9783C185.422 30.6424 185.536 30.271 185.536 29.864C185.536 29.3795 185.38 28.9855 185.068 28.6818C184.763 28.3718 184.381 28.2167 183.92 28.2167C183.446 28.2167 183.051 28.3685 182.733 28.6721C182.421 28.9758 182.265 29.3472 182.265 29.7865C182.265 30.0061 182.321 30.2387 182.431 30.4841C182.548 30.7231 182.72 30.9783 182.947 31.2496L183.725 32.1508ZM186.188 38.1778L182.976 34.2147C182.029 34.7767 181.39 35.2999 181.059 35.7844C180.728 36.2624 180.562 36.7372 180.562 37.2088C180.562 37.7837 180.793 38.3812 181.253 39.0014C181.714 39.6215 182.366 39.9316 183.21 39.9316C183.735 39.9316 184.277 39.7701 184.835 39.4471C185.399 39.1177 185.85 38.6946 186.188 38.1778Z" fill="#9C9C9C"/>
+<path d="M198.936 41.23V27.0249H201.778L205.155 37.0828C205.467 38.0195 205.694 38.7204 205.837 39.1855C205.999 38.6687 206.252 37.9097 206.596 36.9084L210.012 27.0249H212.552V41.23H210.732V29.3407L206.586 41.23H204.883L200.756 29.1373V41.23H198.936Z" fill="#9C9C9C"/>
+<path d="M222.518 39.9607C221.869 40.5098 221.243 40.8973 220.639 41.1234C220.042 41.3495 219.4 41.4626 218.712 41.4626C217.577 41.4626 216.704 41.188 216.094 40.639C215.484 40.0834 215.179 39.3761 215.179 38.5169C215.179 38.013 215.293 37.5544 215.52 37.141C215.754 36.7211 216.055 36.3852 216.425 36.1332C216.801 35.8813 217.223 35.6907 217.69 35.5615C218.034 35.4711 218.553 35.3839 219.248 35.2999C220.662 35.132 221.703 34.9317 222.372 34.6992C222.378 34.4601 222.381 34.3083 222.381 34.2437C222.381 33.5332 222.216 33.0325 221.885 32.7418C221.437 32.3478 220.772 32.1508 219.89 32.1508C219.066 32.1508 218.456 32.2961 218.06 32.5868C217.671 32.871 217.382 33.3781 217.194 34.1081L215.481 33.8755C215.637 33.1456 215.893 32.5577 216.25 32.112C216.607 31.6598 217.123 31.3142 217.797 31.0752C218.472 30.8297 219.254 30.707 220.143 30.707C221.025 30.707 221.742 30.8103 222.294 31.0171C222.845 31.2238 223.251 31.4854 223.51 31.8019C223.77 32.112 223.952 32.506 224.055 32.9841C224.114 33.2812 224.143 33.8174 224.143 34.5926V36.9181C224.143 38.5395 224.179 39.5666 224.25 39.9994C224.328 40.4258 224.477 40.836 224.698 41.23H222.868C222.686 40.8683 222.57 40.4452 222.518 39.9607ZM222.372 36.0654C221.736 36.3238 220.782 36.5434 219.51 36.7243C218.79 36.8277 218.281 36.9439 217.982 37.0731C217.684 37.2023 217.454 37.3929 217.291 37.6448C217.129 37.8903 217.048 38.1648 217.048 38.4685C217.048 38.9336 217.223 39.3212 217.574 39.6312C217.93 39.9413 218.449 40.0963 219.131 40.0963C219.806 40.0963 220.406 39.951 220.931 39.6603C221.457 39.3631 221.843 38.9594 222.089 38.4491C222.278 38.055 222.372 37.4736 222.372 36.7049V36.0654Z" fill="#9C9C9C"/>
+<path d="M234.011 37.4607L235.734 37.6836C235.546 38.8657 235.062 39.7927 234.284 40.4645C233.512 41.1299 232.561 41.4626 231.432 41.4626C230.018 41.4626 228.879 41.0039 228.016 40.0866C227.16 39.1629 226.731 37.8419 226.731 36.1235C226.731 35.0125 226.916 34.0403 227.286 33.2069C227.656 32.3736 228.217 31.7503 228.97 31.3368C229.729 30.9169 230.553 30.707 231.442 30.707C232.564 30.707 233.482 30.9912 234.196 31.5597C234.91 32.1217 235.367 32.9227 235.568 33.9627L233.865 34.2244C233.703 33.5332 233.414 33.0131 232.999 32.6643C232.59 32.3155 232.094 32.1411 231.51 32.1411C230.628 32.1411 229.911 32.4576 229.359 33.0907C228.808 33.7173 228.532 34.7121 228.532 36.0751C228.532 37.4575 228.798 38.462 229.33 39.0886C229.862 39.7152 230.556 40.0285 231.413 40.0285C232.1 40.0285 232.675 39.8186 233.135 39.3987C233.596 38.9788 233.888 38.3328 234.011 37.4607Z" fill="#9C9C9C"/>
+<path d="M237.631 41.23V27.0249H239.383V32.1217C240.201 31.1786 241.232 30.707 242.478 30.707C243.244 30.707 243.909 30.8588 244.473 31.1624C245.038 31.4596 245.44 31.873 245.68 32.4027C245.927 32.9324 246.05 33.7011 246.05 34.7088V41.23H244.298V34.7088C244.298 33.8368 244.107 33.2037 243.724 32.8097C243.348 32.4092 242.812 32.2089 242.118 32.2089C241.599 32.2089 241.109 32.3446 240.648 32.6159C240.194 32.8807 239.87 33.2425 239.675 33.7011C239.48 34.1598 239.383 34.7928 239.383 35.6003V41.23H237.631Z" fill="#9C9C9C"/>
+<path d="M249.135 29.0307V27.0249H250.887V29.0307H249.135ZM249.135 41.23V30.9395H250.887V41.23H249.135Z" fill="#9C9C9C"/>
+<path d="M253.962 41.23V30.9395H255.538V32.4027C256.297 31.2722 257.394 30.707 258.828 30.707C259.451 30.707 260.022 30.82 260.541 31.0461C261.066 31.2658 261.459 31.5565 261.718 31.9182C261.978 32.28 262.16 32.7095 262.263 33.2069C262.328 33.5299 262.361 34.0952 262.361 34.9026V41.23H260.609V34.9705C260.609 34.2599 260.541 33.7302 260.404 33.3814C260.268 33.0261 260.025 32.7451 259.675 32.5383C259.331 32.3252 258.925 32.2186 258.458 32.2186C257.712 32.2186 257.066 32.4544 256.521 32.9259C255.983 33.3975 255.713 34.2922 255.713 35.61V41.23H253.962Z" fill="#9C9C9C"/>
+<path d="M272.531 37.9161L274.341 38.139C274.055 39.192 273.527 40.0091 272.755 40.5905C271.982 41.1719 270.996 41.4626 269.796 41.4626C268.284 41.4626 267.084 41.0007 266.195 40.077C265.312 39.1467 264.871 37.8451 264.871 36.172C264.871 34.4408 265.319 33.0971 266.214 32.1411C267.11 31.185 268.271 30.707 269.699 30.707C271.081 30.707 272.21 31.1753 273.085 32.112C273.961 33.0487 274.399 34.3665 274.399 36.0654C274.399 36.1688 274.396 36.3238 274.39 36.5305H266.682C266.746 37.661 267.068 38.5266 267.645 39.1274C268.222 39.7281 268.943 40.0285 269.806 40.0285C270.448 40.0285 270.996 39.8605 271.45 39.5246C271.905 39.1887 272.265 38.6526 272.531 37.9161ZM266.779 35.0964H272.55C272.472 34.2308 272.252 33.5816 271.888 33.1488C271.33 32.477 270.607 32.1411 269.718 32.1411C268.913 32.1411 268.235 32.4092 267.684 32.9453C267.139 33.4815 266.837 34.1985 266.779 35.0964Z" fill="#9C9C9C"/>
+<path d="M143.133 63.059V48.8539H145.021V61.3827H152.047V63.059H143.133Z" fill="#9C9C9C"/>
+<path d="M161.556 59.7451L163.366 59.968C163.08 61.021 162.552 61.8381 161.779 62.4195C161.007 63.0009 160.021 63.2916 158.821 63.2916C157.309 63.2916 156.109 62.8297 155.22 61.906C154.337 60.9757 153.896 59.6741 153.896 58.001C153.896 56.2698 154.344 54.9261 155.239 53.9701C156.135 53.014 157.296 52.536 158.723 52.536C160.105 52.536 161.234 53.0043 162.11 53.941C162.986 54.8777 163.424 56.1955 163.424 57.8944C163.424 57.9978 163.421 58.1528 163.415 58.3595H155.706C155.771 59.49 156.092 60.3556 156.67 60.9564C157.247 61.5571 157.968 61.8575 158.831 61.8575C159.473 61.8575 160.021 61.6896 160.475 61.3536C160.93 61.0177 161.29 60.4816 161.556 59.7451ZM155.804 56.9254H161.575C161.497 56.0598 161.277 55.4106 160.913 54.9778C160.355 54.306 159.632 53.9701 158.743 53.9701C157.938 53.9701 157.26 54.2382 156.709 54.7743C156.164 55.3105 155.862 56.0275 155.804 56.9254Z" fill="#9C9C9C"/>
+<path d="M172.718 61.7897C172.07 62.3388 171.443 62.7264 170.84 62.9524C170.243 63.1785 169.601 63.2916 168.913 63.2916C167.778 63.2916 166.905 63.017 166.295 62.468C165.685 61.9124 165.38 61.2051 165.38 60.3459C165.38 59.842 165.494 59.3834 165.721 58.97C165.954 58.5501 166.256 58.2142 166.626 57.9622C167.002 57.7103 167.424 57.5197 167.891 57.3905C168.235 57.3001 168.754 57.2129 169.448 57.1289C170.863 56.961 171.904 56.7607 172.572 56.5282C172.579 56.2891 172.582 56.1373 172.582 56.0727C172.582 55.3622 172.417 54.8615 172.086 54.5708C171.638 54.1768 170.973 53.9798 170.091 53.9798C169.267 53.9798 168.657 54.1251 168.261 54.4158C167.872 54.7 167.583 55.2071 167.395 55.9371L165.682 55.7045C165.838 54.9746 166.094 54.3867 166.451 53.941C166.808 53.4888 167.323 53.1432 167.998 52.9042C168.673 52.6587 169.455 52.536 170.344 52.536C171.226 52.536 171.943 52.6394 172.494 52.8461C173.046 53.0528 173.452 53.3144 173.711 53.6309C173.971 53.941 174.152 54.3351 174.256 54.8131C174.314 55.1102 174.344 55.6464 174.344 56.4216V58.7471C174.344 60.3685 174.379 61.3956 174.451 61.8284C174.529 62.2548 174.678 62.665 174.898 63.059H173.069C172.887 62.6973 172.77 62.2742 172.718 61.7897ZM172.572 57.8944C171.937 58.1528 170.983 58.3724 169.711 58.5533C168.991 58.6567 168.481 58.7729 168.183 58.9021C167.885 59.0313 167.654 59.2219 167.492 59.4738C167.33 59.7193 167.249 59.9939 167.249 60.2975C167.249 60.7626 167.424 61.1502 167.774 61.4602C168.131 61.7703 168.65 61.9253 169.331 61.9253C170.006 61.9253 170.606 61.78 171.132 61.4893C171.658 61.1921 172.044 60.7884 172.29 60.2781C172.478 59.884 172.572 59.3027 172.572 58.5339V57.8944Z" fill="#9C9C9C"/>
+<path d="M177.448 63.059V52.7685H179.025V54.3286C179.427 53.5986 179.797 53.1174 180.134 52.8848C180.478 52.6523 180.854 52.536 181.263 52.536C181.853 52.536 182.454 52.7233 183.064 53.098L182.46 54.7162C182.032 54.4642 181.604 54.3383 181.175 54.3383C180.793 54.3383 180.449 54.4546 180.144 54.6871C179.839 54.9132 179.622 55.2297 179.492 55.6367C179.297 56.2568 179.2 56.9351 179.2 57.6715V63.059H177.448Z" fill="#9C9C9C"/>
+<path d="M184.504 63.059V52.7685H186.08V54.2317C186.839 53.1012 187.936 52.536 189.37 52.536C189.993 52.536 190.564 52.649 191.083 52.8751C191.608 53.0948 192.001 53.3855 192.26 53.7472C192.52 54.109 192.701 54.5385 192.805 55.0359C192.87 55.3589 192.903 55.9242 192.903 56.7316V63.059H191.151V56.7995C191.151 56.0889 191.083 55.5592 190.946 55.2104C190.81 54.8551 190.567 54.5741 190.216 54.3674C189.873 54.1542 189.467 54.0476 189 54.0476C188.254 54.0476 187.608 54.2834 187.063 54.7549C186.525 55.2265 186.255 56.1212 186.255 57.439V63.059H184.504Z" fill="#9C9C9C"/>
+<path d="M196.007 50.8597V48.8539H197.759V50.8597H196.007ZM196.007 63.059V52.7685H197.759V63.059H196.007Z" fill="#9C9C9C"/>
+<path d="M200.834 63.059V52.7685H202.41V54.2317C203.17 53.1012 204.266 52.536 205.7 52.536C206.323 52.536 206.894 52.649 207.413 52.8751C207.938 53.0948 208.331 53.3855 208.591 53.7472C208.85 54.109 209.032 54.5385 209.136 55.0359C209.2 55.3589 209.233 55.9242 209.233 56.7316V63.059H207.481V56.7995C207.481 56.0889 207.413 55.5592 207.277 55.2104C207.14 54.8551 206.897 54.5741 206.547 54.3674C206.203 54.1542 205.797 54.0476 205.33 54.0476C204.584 54.0476 203.938 54.2834 203.393 54.7549C202.855 55.2265 202.586 56.1212 202.586 57.439V63.059H200.834Z" fill="#9C9C9C"/>
+<path d="M212.006 63.9117L213.709 64.1637C213.781 64.6869 213.979 65.068 214.303 65.307C214.738 65.63 215.331 65.7915 216.084 65.7915C216.895 65.7915 217.521 65.63 217.962 65.307C218.404 64.9841 218.702 64.5319 218.858 63.9505C218.949 63.5952 218.991 62.8491 218.984 61.7122C218.219 62.6101 217.265 63.059 216.123 63.059C214.702 63.059 213.602 62.5487 212.824 61.5281C212.045 60.5074 211.656 59.2833 211.656 57.8557C211.656 56.8738 211.834 55.9694 212.191 55.1425C212.548 54.3092 213.064 53.6665 213.739 53.2143C214.42 52.7621 215.218 52.536 216.133 52.536C217.353 52.536 218.358 53.0269 219.15 54.0088V52.7685H220.765V61.6637C220.765 63.2657 220.6 64.3994 220.269 65.0648C219.945 65.7366 219.426 66.2663 218.712 66.6539C218.005 67.0415 217.132 67.2353 216.094 67.2353C214.861 67.2353 213.865 66.9575 213.106 66.402C212.347 65.8529 211.98 65.0228 212.006 63.9117ZM213.456 57.7297C213.456 59.0798 213.726 60.0649 214.264 60.6851C214.803 61.3052 215.477 61.6153 216.289 61.6153C217.093 61.6153 217.768 61.3084 218.313 60.6947C218.858 60.0746 219.13 59.1056 219.13 57.7878C219.13 56.5282 218.848 55.5786 218.284 54.939C217.726 54.2995 217.051 53.9798 216.259 53.9798C215.481 53.9798 214.819 54.2963 214.274 54.9294C213.729 55.556 213.456 56.4894 213.456 57.7297Z" fill="#9C9C9C"/>
+<path d="M247.425 257.405L252.904 243.2H254.938L260.778 257.405H258.627L256.963 253.103H250.997L249.43 257.405H247.425ZM251.542 251.572H256.379L254.89 247.638C254.435 246.443 254.098 245.461 253.877 244.692C253.696 245.603 253.439 246.507 253.109 247.405L251.542 251.572Z" fill="#2D2D2D"/>
+<path d="M262.461 261.349V247.114H264.057V248.452C264.433 247.928 264.858 247.537 265.332 247.279C265.806 247.014 266.38 246.882 267.055 246.882C267.937 246.882 268.716 247.108 269.391 247.56C270.065 248.012 270.575 248.652 270.919 249.479C271.262 250.299 271.434 251.2 271.434 252.182C271.434 253.235 271.243 254.185 270.86 255.031C270.484 255.871 269.932 256.517 269.206 256.969C268.485 257.415 267.726 257.637 266.928 257.637C266.344 257.637 265.819 257.515 265.352 257.269C264.891 257.024 264.511 256.714 264.213 256.339V261.349H262.461ZM264.047 252.318C264.047 253.642 264.317 254.621 264.855 255.254C265.394 255.887 266.046 256.203 266.811 256.203C267.59 256.203 268.255 255.877 268.807 255.225C269.365 254.566 269.644 253.548 269.644 252.172C269.644 250.861 269.371 249.879 268.826 249.227C268.288 248.574 267.642 248.248 266.889 248.248C266.143 248.248 265.481 248.597 264.904 249.295C264.333 249.986 264.047 250.993 264.047 252.318Z" fill="#2D2D2D"/>
+<path d="M273.955 261.349V247.114H275.551V248.452C275.927 247.928 276.352 247.537 276.826 247.279C277.299 247.014 277.874 246.882 278.548 246.882C279.431 246.882 280.209 247.108 280.884 247.56C281.559 248.012 282.068 248.652 282.412 249.479C282.756 250.299 282.928 251.2 282.928 252.182C282.928 253.235 282.737 254.185 282.354 255.031C281.977 255.871 281.426 256.517 280.699 256.969C279.979 257.415 279.22 257.637 278.422 257.637C277.838 257.637 277.312 257.515 276.845 257.269C276.385 257.024 276.005 256.714 275.706 256.339V261.349H273.955ZM275.541 252.318C275.541 253.642 275.81 254.621 276.349 255.254C276.887 255.887 277.539 256.203 278.305 256.203C279.084 256.203 279.749 255.877 280.3 255.225C280.858 254.566 281.137 253.548 281.137 252.172C281.137 250.861 280.865 249.879 280.32 249.227C279.781 248.574 279.136 248.248 278.383 248.248C277.637 248.248 276.975 248.597 276.397 249.295C275.827 249.986 275.541 250.993 275.541 252.318Z" fill="#2D2D2D"/>
+<path d="M285.409 257.405V243.2H287.161V257.405H285.409Z" fill="#2D2D2D"/>
+<path d="M290.295 245.205V243.2H292.046V245.205H290.295ZM290.295 257.405V247.114H292.046V257.405H290.295Z" fill="#2D2D2D"/>
+<path d="M301.866 253.636L303.589 253.858C303.401 255.041 302.917 255.968 302.139 256.639C301.367 257.305 300.416 257.637 299.287 257.637C297.873 257.637 296.734 257.179 295.871 256.261C295.014 255.338 294.586 254.017 294.586 252.298C294.586 251.187 294.771 250.215 295.141 249.382C295.511 248.548 296.072 247.925 296.825 247.512C297.584 247.092 298.408 246.882 299.297 246.882C300.419 246.882 301.337 247.166 302.051 247.734C302.765 248.296 303.222 249.098 303.423 250.138L301.72 250.399C301.558 249.708 301.269 249.188 300.854 248.839C300.445 248.49 299.949 248.316 299.365 248.316C298.482 248.316 297.766 248.632 297.214 249.265C296.662 249.892 296.387 250.887 296.387 252.25C296.387 253.632 296.653 254.637 297.185 255.263C297.717 255.89 298.411 256.203 299.268 256.203C299.955 256.203 300.53 255.993 300.99 255.573C301.451 255.154 301.743 254.508 301.866 253.636Z" fill="#2D2D2D"/>
+<path d="M312.231 256.135C311.582 256.685 310.956 257.072 310.352 257.298C309.755 257.524 309.113 257.637 308.425 257.637C307.29 257.637 306.417 257.363 305.807 256.814C305.197 256.258 304.893 255.551 304.893 254.692C304.893 254.188 305.006 253.729 305.233 253.316C305.467 252.896 305.768 252.56 306.138 252.308C306.515 252.056 306.936 251.866 307.403 251.736C307.747 251.646 308.266 251.559 308.961 251.475C310.375 251.307 311.416 251.107 312.085 250.874C312.091 250.635 312.095 250.483 312.095 250.419C312.095 249.708 311.929 249.207 311.598 248.917C311.15 248.523 310.485 248.326 309.603 248.326C308.779 248.326 308.169 248.471 307.773 248.762C307.384 249.046 307.095 249.553 306.907 250.283L305.194 250.05C305.35 249.32 305.606 248.733 305.963 248.287C306.32 247.835 306.836 247.489 307.511 247.25C308.185 247.005 308.967 246.882 309.856 246.882C310.738 246.882 311.455 246.985 312.007 247.192C312.558 247.399 312.964 247.66 313.223 247.977C313.483 248.287 313.665 248.681 313.768 249.159C313.827 249.456 313.856 249.992 313.856 250.767V253.093C313.856 254.714 313.892 255.741 313.963 256.174C314.041 256.601 314.19 257.011 314.411 257.405H312.581C312.399 257.043 312.283 256.62 312.231 256.135ZM312.085 252.24C311.449 252.499 310.495 252.718 309.223 252.899C308.503 253.002 307.994 253.119 307.695 253.248C307.397 253.377 307.167 253.568 307.004 253.82C306.842 254.065 306.761 254.34 306.761 254.643C306.761 255.108 306.936 255.496 307.287 255.806C307.644 256.116 308.163 256.271 308.844 256.271C309.519 256.271 310.119 256.126 310.644 255.835C311.17 255.538 311.556 255.134 311.803 254.624C311.991 254.23 312.085 253.648 312.085 252.88V252.24Z" fill="#2D2D2D"/>
+<path d="M320.805 255.845L321.058 257.385C320.565 257.489 320.123 257.54 319.734 257.54C319.098 257.54 318.605 257.44 318.255 257.24C317.904 257.04 317.658 256.778 317.515 256.455C317.372 256.126 317.301 255.438 317.301 254.391V248.471H316.016V247.114H317.301V244.566L319.043 243.519V247.114H320.805V248.471H319.043V254.488C319.043 254.986 319.072 255.305 319.131 255.448C319.196 255.59 319.296 255.703 319.432 255.787C319.575 255.871 319.776 255.913 320.036 255.913C320.23 255.913 320.487 255.89 320.805 255.845Z" fill="#2D2D2D"/>
+<path d="M322.936 245.205V243.2H324.687V245.205H322.936ZM322.936 257.405V247.114H324.687V257.405H322.936Z" fill="#2D2D2D"/>
+<path d="M327.11 252.26C327.11 250.354 327.643 248.942 328.707 248.025C329.595 247.263 330.679 246.882 331.957 246.882C333.378 246.882 334.54 247.347 335.441 248.277C336.343 249.201 336.794 250.48 336.794 252.114C336.794 253.439 336.593 254.482 336.191 255.244C335.795 256 335.214 256.588 334.449 257.008C333.69 257.427 332.859 257.637 331.957 257.637C330.51 257.637 329.339 257.176 328.444 256.252C327.555 255.328 327.11 253.997 327.11 252.26ZM328.911 252.26C328.911 253.577 329.2 254.566 329.777 255.225C330.355 255.877 331.081 256.203 331.957 256.203C332.827 256.203 333.55 255.874 334.128 255.215C334.705 254.556 334.994 253.552 334.994 252.201C334.994 250.929 334.702 249.966 334.118 249.314C333.54 248.655 332.82 248.326 331.957 248.326C331.081 248.326 330.355 248.652 329.777 249.304C329.2 249.957 328.911 250.942 328.911 252.26Z" fill="#2D2D2D"/>
+<path d="M339.256 257.405V247.114H340.833V248.578C341.592 247.447 342.688 246.882 344.122 246.882C344.745 246.882 345.316 246.995 345.835 247.221C346.361 247.441 346.753 247.731 347.013 248.093C347.272 248.455 347.454 248.884 347.558 249.382C347.623 249.705 347.655 250.27 347.655 251.077V257.405H345.903V251.145C345.903 250.435 345.835 249.905 345.699 249.556C345.563 249.201 345.319 248.92 344.969 248.713C344.625 248.5 344.22 248.393 343.753 248.393C343.006 248.393 342.361 248.629 341.816 249.101C341.277 249.572 341.008 250.467 341.008 251.785V257.405H339.256Z" fill="#2D2D2D"/>
+<path d="M98.2947 297.692L103.774 283.487H105.808L111.648 297.692H109.497L107.832 293.39H101.866L100.3 297.692H98.2947ZM102.411 291.859H107.249L105.759 287.925C105.305 286.73 104.968 285.748 104.747 284.98C104.566 285.89 104.309 286.795 103.978 287.693L102.411 291.859Z" fill="#9C9C9C"/>
+<path d="M123.735 292.712L125.623 293.187C125.227 294.731 124.513 295.91 123.482 296.724C122.457 297.531 121.201 297.935 119.715 297.935C118.178 297.935 116.925 297.625 115.959 297.005C114.998 296.378 114.265 295.474 113.759 294.291C113.26 293.109 113.01 291.84 113.01 290.483C113.01 289.004 113.292 287.715 113.856 286.617C114.427 285.513 115.235 284.676 116.28 284.108C117.331 283.533 118.486 283.245 119.745 283.245C121.172 283.245 122.372 283.607 123.346 284.33C124.319 285.054 124.997 286.071 125.38 287.383L123.521 287.819C123.19 286.785 122.71 286.033 122.08 285.561C121.451 285.089 120.659 284.854 119.706 284.854C118.609 284.854 117.691 285.115 116.951 285.638C116.218 286.162 115.702 286.866 115.404 287.751C115.105 288.629 114.956 289.537 114.956 290.474C114.956 291.682 115.131 292.738 115.482 293.642C115.839 294.54 116.39 295.212 117.136 295.658C117.882 296.103 118.69 296.326 119.56 296.326C120.617 296.326 121.513 296.023 122.246 295.415C122.979 294.808 123.475 293.907 123.735 292.712Z" fill="#9C9C9C"/>
+<path d="M128.679 297.692V283.487H130.567V297.692H128.679Z" fill="#9C9C9C"/>
+<path d="M134.304 297.692V283.487H139.218C140.328 283.487 141.175 283.555 141.759 283.691C142.576 283.878 143.274 284.217 143.851 284.708C144.604 285.341 145.165 286.152 145.535 287.14C145.911 288.122 146.099 289.246 146.099 290.512C146.099 291.591 145.973 292.547 145.72 293.381C145.467 294.214 145.142 294.905 144.746 295.454C144.351 295.997 143.916 296.426 143.442 296.743C142.975 297.053 142.407 297.289 141.739 297.45C141.077 297.612 140.315 297.692 139.452 297.692H134.304ZM136.192 296.016H139.238C140.179 296.016 140.915 295.929 141.447 295.755C141.986 295.58 142.414 295.335 142.732 295.018C143.18 294.572 143.527 293.975 143.773 293.226C144.026 292.47 144.153 291.556 144.153 290.483C144.153 288.998 143.906 287.857 143.413 287.063C142.926 286.262 142.333 285.726 141.632 285.454C141.126 285.261 140.312 285.164 139.189 285.164H136.192V296.016Z" fill="#9C9C9C"/>
+<path d="M158.313 297.692V285.164H153.612V283.487H164.921V285.164H160.201V297.692H158.313Z" fill="#9C9C9C"/>
+<path d="M166.283 297.692V287.402H167.86V288.962C168.262 288.232 168.632 287.751 168.969 287.518C169.313 287.286 169.689 287.169 170.098 287.169C170.689 287.169 171.289 287.357 171.899 287.731L171.295 289.35C170.867 289.098 170.439 288.972 170.011 288.972C169.628 288.972 169.284 289.088 168.979 289.321C168.674 289.547 168.457 289.863 168.327 290.27C168.132 290.89 168.035 291.569 168.035 292.305V297.692H166.283Z" fill="#9C9C9C"/>
+<path d="M180.083 296.423C179.435 296.972 178.808 297.36 178.205 297.586C177.608 297.812 176.966 297.925 176.278 297.925C175.143 297.925 174.27 297.651 173.66 297.101C173.05 296.546 172.745 295.839 172.745 294.979C172.745 294.476 172.859 294.017 173.086 293.603C173.319 293.184 173.621 292.848 173.991 292.596C174.367 292.344 174.789 292.153 175.256 292.024C175.6 291.934 176.119 291.846 176.813 291.762C178.228 291.594 179.269 291.394 179.937 291.162C179.944 290.923 179.947 290.771 179.947 290.706C179.947 289.996 179.782 289.495 179.451 289.204C179.003 288.81 178.338 288.613 177.456 288.613C176.632 288.613 176.022 288.759 175.626 289.049C175.237 289.333 174.948 289.841 174.76 290.571L173.047 290.338C173.203 289.608 173.459 289.02 173.816 288.574C174.173 288.122 174.688 287.777 175.363 287.538C176.038 287.292 176.82 287.169 177.709 287.169C178.591 287.169 179.308 287.273 179.859 287.48C180.411 287.686 180.817 287.948 181.076 288.264C181.336 288.574 181.517 288.969 181.621 289.447C181.679 289.744 181.709 290.28 181.709 291.055V293.381C181.709 295.002 181.744 296.029 181.816 296.462C181.894 296.888 182.043 297.298 182.263 297.692H180.434C180.252 297.331 180.135 296.908 180.083 296.423ZM179.937 292.528C179.301 292.786 178.348 293.006 177.076 293.187C176.356 293.29 175.846 293.406 175.548 293.536C175.25 293.665 175.019 293.855 174.857 294.107C174.695 294.353 174.614 294.627 174.614 294.931C174.614 295.396 174.789 295.784 175.139 296.094C175.496 296.404 176.015 296.559 176.696 296.559C177.371 296.559 177.971 296.413 178.497 296.123C179.023 295.826 179.409 295.422 179.655 294.912C179.843 294.517 179.937 293.936 179.937 293.167V292.528Z" fill="#9C9C9C"/>
+<path d="M184.832 297.692V287.402H186.409V288.865C187.168 287.735 188.265 287.169 189.699 287.169C190.321 287.169 190.892 287.283 191.411 287.509C191.937 287.728 192.33 288.019 192.589 288.381C192.849 288.742 193.03 289.172 193.134 289.669C193.199 289.992 193.231 290.558 193.231 291.365V297.692H191.48V291.433C191.48 290.722 191.411 290.193 191.275 289.844C191.139 289.489 190.896 289.208 190.545 289.001C190.201 288.788 189.796 288.681 189.329 288.681C188.583 288.681 187.937 288.917 187.392 289.388C186.853 289.86 186.584 290.755 186.584 292.072V297.692H184.832Z" fill="#9C9C9C"/>
+<path d="M195.625 294.621L197.358 294.35C197.455 295.041 197.724 295.57 198.165 295.939C198.613 296.307 199.236 296.491 200.034 296.491C200.839 296.491 201.436 296.329 201.825 296.006C202.214 295.677 202.409 295.293 202.409 294.853C202.409 294.459 202.237 294.149 201.893 293.923C201.653 293.768 201.056 293.571 200.102 293.332C198.817 293.009 197.925 292.731 197.426 292.499C196.933 292.26 196.556 291.934 196.297 291.52C196.044 291.1 195.917 290.638 195.917 290.135C195.917 289.676 196.021 289.253 196.229 288.865C196.443 288.471 196.732 288.145 197.095 287.886C197.367 287.686 197.737 287.518 198.204 287.383C198.678 287.241 199.184 287.169 199.723 287.169C200.534 287.169 201.244 287.286 201.854 287.518C202.47 287.751 202.925 288.067 203.217 288.468C203.509 288.862 203.71 289.392 203.82 290.057L202.107 290.29C202.029 289.76 201.802 289.346 201.426 289.049C201.056 288.752 200.53 288.604 199.849 288.604C199.045 288.604 198.47 288.736 198.126 289.001C197.783 289.266 197.611 289.576 197.611 289.931C197.611 290.157 197.682 290.361 197.825 290.541C197.968 290.729 198.191 290.884 198.496 291.007C198.672 291.071 199.187 291.22 200.044 291.452C201.283 291.782 202.146 292.053 202.633 292.266C203.126 292.473 203.512 292.777 203.791 293.177C204.07 293.578 204.209 294.075 204.209 294.669C204.209 295.251 204.037 295.8 203.693 296.317C203.356 296.827 202.866 297.224 202.224 297.508C201.582 297.786 200.855 297.925 200.044 297.925C198.701 297.925 197.676 297.647 196.968 297.092C196.268 296.536 195.82 295.713 195.625 294.621Z" fill="#9C9C9C"/>
+<path d="M213.435 296.423C212.786 296.972 212.16 297.36 211.557 297.586C210.96 297.812 210.318 297.925 209.63 297.925C208.494 297.925 207.622 297.651 207.012 297.101C206.402 296.546 206.097 295.839 206.097 294.979C206.097 294.476 206.211 294.017 206.438 293.603C206.671 293.184 206.973 292.848 207.343 292.596C207.719 292.344 208.141 292.153 208.608 292.024C208.952 291.934 209.471 291.846 210.165 291.762C211.58 291.594 212.621 291.394 213.289 291.162C213.296 290.923 213.299 290.771 213.299 290.706C213.299 289.996 213.134 289.495 212.803 289.204C212.355 288.81 211.69 288.613 210.807 288.613C209.983 288.613 209.374 288.759 208.978 289.049C208.588 289.333 208.3 289.841 208.112 290.571L206.399 290.338C206.554 289.608 206.811 289.02 207.168 288.574C207.524 288.122 208.04 287.777 208.715 287.538C209.39 287.292 210.172 287.169 211.061 287.169C211.943 287.169 212.66 287.273 213.211 287.48C213.763 287.686 214.168 287.948 214.428 288.264C214.687 288.574 214.869 288.969 214.973 289.447C215.031 289.744 215.061 290.28 215.061 291.055V293.381C215.061 295.002 215.096 296.029 215.168 296.462C215.245 296.888 215.395 297.298 215.615 297.692H213.786C213.604 297.331 213.487 296.908 213.435 296.423ZM213.289 292.528C212.653 292.786 211.7 293.006 210.428 293.187C209.708 293.29 209.198 293.406 208.9 293.536C208.601 293.665 208.371 293.855 208.209 294.107C208.047 294.353 207.966 294.627 207.966 294.931C207.966 295.396 208.141 295.784 208.491 296.094C208.848 296.404 209.367 296.559 210.048 296.559C210.723 296.559 211.323 296.413 211.849 296.123C212.374 295.826 212.76 295.422 213.007 294.912C213.195 294.517 213.289 293.936 213.289 293.167V292.528Z" fill="#9C9C9C"/>
+<path d="M224.929 293.923L226.651 294.146C226.463 295.328 225.98 296.255 225.201 296.927C224.429 297.592 223.479 297.925 222.35 297.925C220.935 297.925 219.797 297.466 218.934 296.549C218.077 295.625 217.649 294.304 217.649 292.586C217.649 291.475 217.834 290.503 218.204 289.669C218.574 288.836 219.135 288.213 219.887 287.799C220.647 287.379 221.471 287.169 222.359 287.169C223.482 287.169 224.4 287.454 225.114 288.022C225.827 288.584 226.285 289.385 226.486 290.425L224.783 290.687C224.621 289.996 224.332 289.476 223.917 289.127C223.508 288.778 223.012 288.604 222.428 288.604C221.545 288.604 220.828 288.92 220.277 289.553C219.725 290.18 219.449 291.175 219.449 292.538C219.449 293.92 219.715 294.924 220.248 295.551C220.78 296.178 221.474 296.491 222.33 296.491C223.018 296.491 223.592 296.281 224.053 295.861C224.514 295.441 224.806 294.795 224.929 293.923Z" fill="#9C9C9C"/>
+<path d="M232.374 296.132L232.627 297.673C232.134 297.776 231.692 297.828 231.303 297.828C230.667 297.828 230.174 297.728 229.824 297.528C229.473 297.328 229.227 297.066 229.084 296.743C228.941 296.413 228.87 295.725 228.87 294.679V288.759H227.585V287.402H228.87V284.854L230.612 283.807V287.402H232.374V288.759H230.612V294.776C230.612 295.273 230.641 295.593 230.7 295.735C230.765 295.877 230.865 295.99 231.001 296.074C231.144 296.158 231.345 296.2 231.605 296.2C231.8 296.2 232.056 296.178 232.374 296.132Z" fill="#9C9C9C"/>
+<path d="M234.505 285.493V283.487H236.257V285.493H234.505ZM234.505 297.692V287.402H236.257V297.692H234.505Z" fill="#9C9C9C"/>
+<path d="M238.68 292.547C238.68 290.642 239.212 289.23 240.276 288.313C241.165 287.551 242.248 287.169 243.526 287.169C244.947 287.169 246.109 287.635 247.011 288.565C247.912 289.489 248.363 290.768 248.363 292.402C248.363 293.726 248.162 294.769 247.76 295.532C247.364 296.287 246.783 296.875 246.018 297.295C245.259 297.715 244.428 297.925 243.526 297.925C242.079 297.925 240.908 297.463 240.013 296.539C239.124 295.616 238.68 294.285 238.68 292.547ZM240.48 292.547C240.48 293.865 240.769 294.853 241.346 295.512C241.924 296.165 242.65 296.491 243.526 296.491C244.396 296.491 245.119 296.162 245.697 295.503C246.274 294.844 246.563 293.839 246.563 292.489C246.563 291.217 246.271 290.254 245.687 289.602C245.109 288.943 244.389 288.613 243.526 288.613C242.65 288.613 241.924 288.939 241.346 289.592C240.769 290.244 240.48 291.229 240.48 292.547Z" fill="#9C9C9C"/>
+<path d="M250.825 297.692V287.402H252.402V288.865C253.161 287.735 254.258 287.169 255.692 287.169C256.314 287.169 256.885 287.283 257.404 287.509C257.93 287.728 258.323 288.019 258.582 288.381C258.842 288.742 259.023 289.172 259.127 289.669C259.192 289.992 259.224 290.558 259.224 291.365V297.692H257.473V291.433C257.473 290.722 257.404 290.193 257.268 289.844C257.132 289.489 256.889 289.208 256.538 289.001C256.194 288.788 255.789 288.681 255.322 288.681C254.576 288.681 253.93 288.917 253.385 289.388C252.846 289.86 252.577 290.755 252.577 292.072V297.692H250.825Z" fill="#9C9C9C"/>
+<path d="M261.618 294.621L263.351 294.35C263.448 295.041 263.717 295.57 264.158 295.939C264.606 296.307 265.229 296.491 266.027 296.491C266.832 296.491 267.428 296.329 267.818 296.006C268.207 295.677 268.402 295.293 268.402 294.853C268.402 294.459 268.23 294.149 267.886 293.923C267.646 293.768 267.049 293.571 266.095 293.332C264.81 293.009 263.918 292.731 263.419 292.499C262.926 292.26 262.549 291.934 262.29 291.52C262.037 291.1 261.91 290.638 261.91 290.135C261.91 289.676 262.014 289.253 262.222 288.865C262.436 288.471 262.724 288.145 263.088 287.886C263.36 287.686 263.73 287.518 264.197 287.383C264.671 287.241 265.177 287.169 265.716 287.169C266.527 287.169 267.237 287.286 267.847 287.518C268.463 287.751 268.917 288.067 269.209 288.468C269.501 288.862 269.703 289.392 269.813 290.057L268.1 290.29C268.022 289.76 267.795 289.346 267.419 289.049C267.049 288.752 266.523 288.604 265.842 288.604C265.037 288.604 264.463 288.736 264.119 289.001C263.776 289.266 263.604 289.576 263.604 289.931C263.604 290.157 263.675 290.361 263.818 290.541C263.96 290.729 264.184 290.884 264.489 291.007C264.664 291.071 265.18 291.22 266.037 291.452C267.276 291.782 268.139 292.053 268.626 292.266C269.119 292.473 269.505 292.777 269.784 293.177C270.063 293.578 270.202 294.075 270.202 294.669C270.202 295.251 270.03 295.8 269.686 296.317C269.349 296.827 268.859 297.224 268.217 297.508C267.574 297.786 266.848 297.925 266.037 297.925C264.694 297.925 263.668 297.647 262.961 297.092C262.261 296.536 261.813 295.713 261.618 294.621Z" fill="#9C9C9C"/>
+</svg>
diff --git a/public/img/features/in-memory/cache-aside-deployment.svg b/public/img/features/in-memory/cache-aside-deployment.svg
new file mode 100644
index 0000000..409e84a
--- /dev/null
+++ b/public/img/features/in-memory/cache-aside-deployment.svg
@@ -0,0 +1,26 @@
+<svg width="986" height="295" viewBox="0 0 986 295" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M824.533 203.015V82.0565C824.533 82.0565 839.055 94.216 884.193 94.216C929.33 94.216 945.423 80.6668 945.423 80.6668V203.015C945.423 203.015 938.923 217.873 884.193 218.444C829.462 219.015 824.533 203.015 824.533 203.015Z" fill="white"/>
+<path d="M945.829 78.2392C945.829 80.4805 944.407 82.7914 941.409 85.0473C938.428 87.291 934.044 89.3545 928.519 91.1052C917.481 94.6029 902.114 96.7826 884.932 96.7826C867.751 96.7826 852.383 94.6029 841.345 91.1052C835.821 89.3545 831.437 87.291 828.455 85.0473C825.457 82.7914 824.035 80.4805 824.035 78.2392C824.035 75.9978 825.457 73.6869 828.455 71.431C831.437 69.1873 835.821 67.1238 841.345 65.3731C852.383 61.8754 867.751 59.6957 884.932 59.6957C902.114 59.6957 917.481 61.8754 928.519 65.3731C934.044 67.1238 938.428 69.1873 941.409 71.431C944.407 73.6869 945.829 75.9978 945.829 78.2392Z" fill="white" stroke="#ED1C24" stroke-width="2"/>
+<path d="M824.217 79.2861L824.217 199.974" stroke="#ED1C24" stroke-width="2"/>
+<path d="M945.801 77.5161L945.661 200.101" stroke="#ED1C24" stroke-width="2"/>
+<path d="M945.64 199.974C945.64 210.34 918.458 218.743 884.928 218.743C851.398 218.743 824.217 210.34 824.217 199.974" stroke="#ED1C24" stroke-width="2"/>
+<path d="M945.64 118.052C945.64 128.418 918.458 136.821 884.928 136.821C851.398 136.821 824.217 128.418 824.217 118.052" stroke="#ED1C24" stroke-width="2"/>
+<path d="M945.64 159.295C945.64 169.661 918.458 178.065 884.928 178.065C851.398 178.065 824.217 169.661 824.217 159.295" stroke="#ED1C24" stroke-width="2"/>
+<path d="M511.725 157.39L580.842 175.645L580.842 76.4322L511.725 58.1771L443.821 79.2719L443.821 178.073L511.725 157.39Z" fill="white" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M512.938 98.2809L443.821 80.0258L443.821 201.007L512.938 219.262L580.842 198.167L580.842 77.5981L512.938 98.2809Z" fill="white" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M511.926 98.0856L511.926 217.239" stroke="#2D2D2D" stroke-width="2"/>
+<rect y="81.7343" width="127.873" height="127.624" rx="63.8121" fill="#ED1C24"/>
+<path d="M52.4784 122.919C52.4784 122.919 23.1675 140.727 50.7914 158.409C56.1054 161.853 75.3789 171.429 74.8306 180.291C74.8306 180.291 86.5128 163.071 69.4323 152.235C51.888 141.147 47.5019 129.303 52.4784 122.919Z" fill="white"/>
+<path d="M42.2719 156.939C42.2719 156.939 31.8128 172.731 52.3937 175.965C54.418 176.217 69.3054 177.771 73.1855 182.643C73.1855 182.643 72.8481 174.243 60.702 169.287C48.598 164.331 43.6215 163.113 42.2719 156.939Z" fill="white"/>
+<path d="M82.7594 140.349C70.1916 127.245 66.6912 119.139 72.0894 108.639C72.0894 108.639 34.5968 123.003 71.6255 148.497C84.8681 157.611 82.6751 166.935 82.6751 167.271C84.7416 165.129 95.3273 153.453 82.7594 140.349Z" fill="white"/>
+<path d="M84.8553 243.234C85.2459 242.843 85.8791 242.843 86.2696 243.234L92.6335 249.598C93.024 249.988 93.024 250.621 92.6335 251.012C92.243 251.403 91.6098 251.403 91.2193 251.012L85.5625 245.355L79.9056 251.012C79.5151 251.403 78.8819 251.403 78.4914 251.012C78.1009 250.621 78.1009 249.988 78.4914 249.598L84.8553 243.234ZM478.646 295H115.562V293H478.646V295ZM84.5625 264V243.941H86.5625V264H84.5625ZM115.562 295C98.4417 295 84.5625 281.121 84.5625 264H86.5625C86.5625 280.016 99.5462 293 115.562 293V295ZM506.344 267.302C506.344 282.599 493.943 295 478.646 295V293C492.839 293 504.344 281.495 504.344 267.302H506.344Z" fill="black"/>
+<path d="M84.8553 51.7662C85.2459 52.1568 85.8791 52.1568 86.2696 51.7662L92.6335 45.4023C93.024 45.0118 93.024 44.3786 92.6335 43.9881C92.243 43.5975 91.6098 43.5975 91.2193 43.9881L85.5625 49.6449L79.9056 43.9881C79.5151 43.5975 78.8819 43.5975 78.4914 43.9881C78.1009 44.3786 78.1009 45.0118 78.4914 45.4023L84.8553 51.7662ZM478.646 3.03382e-06L115.562 4.42928e-05L115.562 2.00004L478.646 2L478.646 3.03382e-06ZM84.5625 31L84.5625 51.0591L86.5625 51.0591L86.5625 31L84.5625 31ZM115.562 4.42928e-05C98.4416 4.62383e-05 84.5625 13.8792 84.5625 31L86.5625 31C86.5625 14.9838 99.5462 2.00005 115.562 2.00004L115.562 4.42928e-05ZM506.344 27.698C506.344 12.4008 493.943 1.29553e-06 478.646 3.03382e-06L478.646 2C492.838 2 504.344 13.5054 504.344 27.698L506.344 27.698Z" fill="black"/>
+<path d="M412.975 144.271C413.527 144.271 413.975 144.719 413.975 145.271C413.975 145.824 413.527 146.271 412.975 146.271L412.975 144.271ZM155.233 145.978C154.843 145.588 154.843 144.955 155.233 144.564L161.597 138.2C161.988 137.81 162.621 137.81 163.011 138.2C163.402 138.591 163.402 139.224 163.011 139.614L157.355 145.271L163.011 150.928C163.402 151.319 163.402 151.952 163.011 152.342C162.621 152.733 161.988 152.733 161.597 152.342L155.233 145.978ZM412.975 146.271L155.94 146.271L155.94 144.271L412.975 144.271L412.975 146.271Z" fill="black"/>
+<path d="M620.396 134.922C619.843 134.922 619.396 135.37 619.396 135.922C619.396 136.475 619.843 136.922 620.396 136.922V134.922ZM793.571 136.629C793.962 136.239 793.962 135.606 793.571 135.215L787.208 128.851C786.817 128.461 786.184 128.461 785.793 128.851C785.403 129.242 785.403 129.875 785.793 130.265L791.45 135.922L785.793 141.579C785.403 141.97 785.403 142.603 785.793 142.993C786.184 143.384 786.817 143.384 787.208 142.993L793.571 136.629ZM620.396 136.922H792.864V134.922H620.396V136.922Z" fill="black"/>
+<path d="M792.864 153.466C793.417 153.466 793.864 153.019 793.864 152.466C793.864 151.914 793.417 151.466 792.864 151.466L792.864 153.466ZM619.689 151.759C619.298 152.15 619.298 152.783 619.689 153.174L626.053 159.537C626.443 159.928 627.076 159.928 627.467 159.537C627.857 159.147 627.857 158.514 627.467 158.123L621.81 152.466L627.467 146.81C627.857 146.419 627.857 145.786 627.467 145.395C627.076 145.005 626.443 145.005 626.053 145.395L619.689 151.759ZM792.864 151.466L620.396 151.466L620.396 153.466L792.864 153.466L792.864 151.466Z" fill="black"/>
+<path d="M265.748 129.016L267.536 128.86C267.62 129.576 267.816 130.165 268.122 130.627C268.434 131.083 268.916 131.454 269.567 131.74C270.218 132.02 270.95 132.16 271.764 132.16C272.487 132.16 273.125 132.053 273.678 131.838C274.232 131.623 274.642 131.33 274.909 130.959C275.182 130.582 275.319 130.171 275.319 129.729C275.319 129.28 275.189 128.889 274.928 128.557C274.668 128.218 274.238 127.935 273.639 127.707C273.255 127.558 272.405 127.326 271.09 127.014C269.775 126.695 268.854 126.395 268.327 126.115C267.643 125.757 267.132 125.315 266.793 124.787C266.461 124.253 266.295 123.658 266.295 123C266.295 122.278 266.5 121.604 266.911 120.979C267.321 120.347 267.92 119.869 268.707 119.543C269.495 119.218 270.371 119.055 271.334 119.055C272.396 119.055 273.33 119.227 274.137 119.573C274.951 119.911 275.576 120.412 276.012 121.076C276.448 121.74 276.683 122.492 276.715 123.332L274.899 123.469C274.801 122.564 274.469 121.88 273.903 121.418C273.343 120.956 272.513 120.725 271.413 120.725C270.267 120.725 269.43 120.936 268.903 121.36C268.382 121.776 268.122 122.281 268.122 122.873C268.122 123.388 268.307 123.811 268.678 124.143C269.043 124.475 269.993 124.817 271.53 125.168C273.073 125.513 274.131 125.816 274.704 126.076C275.537 126.461 276.152 126.949 276.549 127.541C276.946 128.127 277.145 128.804 277.145 129.573C277.145 130.334 276.927 131.054 276.491 131.731C276.054 132.401 275.426 132.925 274.606 133.303C273.792 133.674 272.874 133.86 271.852 133.86C270.556 133.86 269.469 133.671 268.59 133.293C267.718 132.916 267.031 132.349 266.53 131.594C266.035 130.832 265.775 129.973 265.748 129.016ZM290.782 132.082C291.661 132.688 292.472 133.13 293.214 133.41L292.657 134.729C291.629 134.358 290.603 133.772 289.581 132.971C288.52 133.563 287.348 133.86 286.066 133.86C284.77 133.86 283.595 133.547 282.54 132.922C281.486 132.297 280.672 131.418 280.099 130.285C279.532 129.153 279.249 127.877 279.249 126.457C279.249 125.045 279.536 123.759 280.109 122.6C280.682 121.441 281.495 120.559 282.55 119.953C283.611 119.348 284.796 119.045 286.105 119.045C287.426 119.045 288.618 119.361 289.679 119.992C290.74 120.617 291.547 121.496 292.101 122.629C292.661 123.755 292.941 125.028 292.941 126.448C292.941 127.626 292.762 128.687 292.404 129.631C292.045 130.569 291.505 131.386 290.782 132.082ZM286.613 129.66C287.706 129.966 288.608 130.422 289.318 131.028C290.431 130.012 290.988 128.485 290.988 126.448C290.988 125.289 290.789 124.276 290.392 123.41C290.001 122.545 289.425 121.874 288.663 121.399C287.908 120.917 287.058 120.676 286.114 120.676C284.702 120.676 283.53 121.161 282.599 122.131C281.668 123.095 281.202 124.537 281.202 126.457C281.202 128.319 281.661 129.748 282.579 130.744C283.504 131.74 284.682 132.239 286.114 132.239C286.792 132.239 287.43 132.112 288.029 131.858C287.436 131.474 286.811 131.2 286.154 131.037L286.613 129.66ZM295.621 133.615V119.299H297.516V131.926H304.566V133.615H295.621Z" fill="#9C9C9C"/>
+<path d="M170.586 33.62L172.48 34.0985C172.083 35.6545 171.367 36.8427 170.332 37.663C169.303 38.4768 168.043 38.8837 166.553 38.8837C165.01 38.8837 163.753 38.5712 162.783 37.9462C161.82 37.3147 161.084 36.4032 160.576 35.2118C160.075 34.0204 159.824 32.7411 159.824 31.3739C159.824 29.883 160.107 28.5842 160.674 27.4774C161.247 26.3641 162.057 25.521 163.105 24.9481C164.16 24.3687 165.319 24.079 166.582 24.079C168.014 24.079 169.219 24.4436 170.195 25.1727C171.172 25.9019 171.852 26.9273 172.236 28.2489L170.371 28.6884C170.039 27.6467 169.557 26.8882 168.926 26.413C168.294 25.9377 167.5 25.7001 166.543 25.7001C165.443 25.7001 164.521 25.9637 163.779 26.4911C163.043 27.0184 162.526 27.7281 162.226 28.62C161.927 29.5054 161.777 30.4201 161.777 31.3641C161.777 32.5816 161.953 33.646 162.305 34.5575C162.663 35.4624 163.216 36.1395 163.965 36.5887C164.713 37.038 165.524 37.2626 166.396 37.2626C167.458 37.2626 168.356 36.9566 169.092 36.3446C169.827 35.7326 170.325 34.8244 170.586 33.62ZM174.145 33.454C174.145 31.5334 174.679 30.1109 175.747 29.1864C176.639 28.4182 177.726 28.0341 179.008 28.0341C180.434 28.0341 181.6 28.5028 182.505 29.4403C183.41 30.3713 183.862 31.6604 183.862 33.3075C183.862 34.6421 183.66 35.6936 183.257 36.4618C182.859 37.2235 182.277 37.816 181.508 38.2391C180.747 38.6623 179.913 38.8739 179.008 38.8739C177.557 38.8739 176.382 38.4084 175.483 37.4774C174.591 36.5464 174.145 35.2053 174.145 33.454ZM175.952 33.454C175.952 34.7821 176.242 35.7782 176.821 36.4423C177.4 37.0998 178.13 37.4286 179.008 37.4286C179.881 37.4286 180.607 37.0966 181.186 36.4325C181.766 35.7684 182.055 34.7561 182.055 33.3954C182.055 32.1128 181.762 31.1428 181.176 30.4852C180.597 29.8212 179.874 29.4891 179.008 29.4891C178.13 29.4891 177.4 29.8179 176.821 30.4755C176.242 31.133 175.952 32.1259 175.952 33.454ZM186.132 38.6395V28.2684H187.705V29.7235C188.03 29.2157 188.463 28.8088 189.003 28.5028C189.544 28.1903 190.159 28.0341 190.849 28.0341C191.617 28.0341 192.246 28.1936 192.734 28.5126C193.229 28.8316 193.577 29.2775 193.779 29.8505C194.599 28.6395 195.667 28.0341 196.982 28.0341C198.011 28.0341 198.802 28.3205 199.355 28.8934C199.908 29.4598 200.185 30.3355 200.185 31.5204V38.6395H198.437V32.1063C198.437 31.4032 198.378 30.8986 198.261 30.5927C198.151 30.2802 197.945 30.0295 197.646 29.8407C197.346 29.6519 196.995 29.5575 196.591 29.5575C195.862 29.5575 195.257 29.8016 194.775 30.2899C194.293 30.7717 194.052 31.5464 194.052 32.6141V38.6395H192.294V31.9012C192.294 31.12 192.151 30.5341 191.865 30.1434C191.578 29.7528 191.11 29.5575 190.458 29.5575C189.964 29.5575 189.505 29.6877 189.082 29.9481C188.665 30.2085 188.362 30.5894 188.173 31.0907C187.985 31.592 187.89 32.3147 187.89 33.2587V38.6395H186.132ZM202.992 42.6141V28.2684H204.594V29.6161C204.972 29.0887 205.398 28.6949 205.873 28.4344C206.349 28.1675 206.925 28.0341 207.602 28.0341C208.487 28.0341 209.268 28.2619 209.946 28.7177C210.623 29.1734 211.134 29.8179 211.479 30.6512C211.824 31.4781 211.996 32.3863 211.996 33.3759C211.996 34.4371 211.804 35.3941 211.42 36.2469C211.043 37.0933 210.489 37.7443 209.76 38.2001C209.037 38.6493 208.276 38.8739 207.475 38.8739C206.889 38.8739 206.362 38.7502 205.893 38.5028C205.431 38.2554 205.05 37.9429 204.75 37.5653V42.6141H202.992ZM204.584 33.5126C204.584 34.8472 204.854 35.8335 205.395 36.4716C205.935 37.1096 206.589 37.4286 207.358 37.4286C208.139 37.4286 208.806 37.0998 209.36 36.4423C209.92 35.7782 210.199 34.7528 210.199 33.3661C210.199 32.0445 209.926 31.0549 209.379 30.3973C208.839 29.7398 208.191 29.411 207.436 29.411C206.687 29.411 206.023 29.7626 205.444 30.4657C204.871 31.1623 204.584 32.1779 204.584 33.5126ZM221.122 38.6395V37.1161C220.315 38.288 219.218 38.8739 217.831 38.8739C217.219 38.8739 216.646 38.7567 216.112 38.5223C215.585 38.288 215.191 37.995 214.931 37.6434C214.677 37.2854 214.498 36.8492 214.394 36.3348C214.322 35.9898 214.286 35.4429 214.286 34.6942V28.2684H216.044V34.0204C216.044 34.9384 216.08 35.5568 216.151 35.8759C216.262 36.3381 216.496 36.7027 216.855 36.9696C217.213 37.23 217.655 37.3602 218.183 37.3602C218.71 37.3602 219.205 37.2268 219.667 36.9598C220.129 36.6864 220.455 36.3186 220.644 35.8563C220.839 35.3876 220.937 34.7105 220.937 33.8251V28.2684H222.694V38.6395H221.122ZM229.496 37.0673L229.75 38.62C229.255 38.7242 228.812 38.7762 228.422 38.7762C227.784 38.7762 227.289 38.6753 226.937 38.4735C226.586 38.2717 226.338 38.008 226.195 37.6825C226.052 37.3505 225.98 36.6571 225.98 35.6024V29.6356H224.691V28.2684H225.98V25.7001L227.728 24.6454V28.2684H229.496V29.6356H227.728V35.7001C227.728 36.2014 227.758 36.5236 227.816 36.6669C227.881 36.8101 227.982 36.924 228.119 37.0087C228.262 37.0933 228.464 37.1356 228.724 37.1356C228.92 37.1356 229.177 37.1128 229.496 37.0673ZM238.524 35.2997L240.34 35.5243C240.054 36.5855 239.523 37.4091 238.749 37.995C237.974 38.5809 236.984 38.8739 235.78 38.8739C234.263 38.8739 233.059 38.4084 232.167 37.4774C231.281 36.5399 230.839 35.2281 230.839 33.5419C230.839 31.7971 231.288 30.4429 232.186 29.4794C233.085 28.5158 234.25 28.0341 235.682 28.0341C237.069 28.0341 238.202 28.5061 239.081 29.4501C239.96 30.3941 240.399 31.7222 240.399 33.4344C240.399 33.5386 240.396 33.6949 240.389 33.9032H232.655C232.72 35.0425 233.042 35.9149 233.622 36.5204C234.201 37.1259 234.924 37.4286 235.79 37.4286C236.434 37.4286 236.984 37.2593 237.44 36.9208C237.896 36.5822 238.257 36.0419 238.524 35.2997ZM232.753 32.4579H238.544C238.465 31.5855 238.244 30.9312 237.88 30.495C237.32 29.8179 236.594 29.4794 235.702 29.4794C234.895 29.4794 234.214 29.7496 233.661 30.2899C233.114 30.8303 232.811 31.5529 232.753 32.4579ZM256.707 36.9501C256.128 37.5946 255.496 38.0796 254.813 38.4052C254.129 38.7242 253.39 38.8837 252.596 38.8837C251.131 38.8837 249.969 38.3889 249.11 37.3993C248.413 36.592 248.065 35.6903 248.065 34.6942C248.065 33.8088 248.348 33.0113 248.914 32.3016C249.487 31.5855 250.34 30.9572 251.473 30.4169C250.828 29.6747 250.399 29.0725 250.184 28.6102C249.969 28.148 249.862 27.702 249.862 27.2723C249.862 26.413 250.197 25.6675 250.867 25.036C251.545 24.398 252.394 24.079 253.416 24.079C254.393 24.079 255.19 24.3785 255.809 24.9774C256.434 25.5764 256.746 26.2958 256.746 27.1356C256.746 28.4963 255.845 29.6584 254.041 30.6219L256.61 33.8934C256.903 33.3205 257.13 32.6565 257.293 31.9012L259.119 32.2919C258.807 33.5419 258.384 34.5705 257.85 35.3778C258.507 36.2502 259.253 36.9826 260.086 37.5751L258.905 38.9716C258.195 38.5158 257.463 37.842 256.707 36.9501ZM253.133 29.4891C253.895 29.0399 254.386 28.646 254.608 28.3075C254.836 27.969 254.949 27.5946 254.949 27.1844C254.949 26.6962 254.793 26.299 254.481 25.993C254.175 25.6805 253.791 25.5243 253.328 25.5243C252.853 25.5243 252.456 25.6773 252.137 25.9833C251.824 26.2893 251.668 26.6636 251.668 27.1063C251.668 27.3277 251.724 27.5621 251.834 27.8094C251.951 28.0503 252.124 28.3075 252.352 28.5809L253.133 29.4891ZM255.604 35.5634L252.381 31.5692C251.431 32.1356 250.789 32.663 250.457 33.1512C250.125 33.633 249.959 34.1115 249.959 34.5868C249.959 35.1662 250.19 35.7684 250.653 36.3934C251.115 37.0184 251.769 37.3309 252.616 37.3309C253.143 37.3309 253.686 37.1682 254.246 36.8427C254.813 36.5106 255.265 36.0842 255.604 35.5634ZM267.996 38.6395V24.3231H270.848L274.236 34.4598C274.549 35.4038 274.777 36.1102 274.92 36.579C275.083 36.0581 275.336 35.2932 275.682 34.2841L279.109 24.3231H281.658V38.6395H279.832V26.6571L275.672 38.6395H273.963L269.822 26.452V38.6395H267.996ZM291.458 37.3602C290.807 37.9136 290.178 38.3042 289.573 38.5321C288.974 38.76 288.329 38.8739 287.639 38.8739C286.5 38.8739 285.624 38.5972 285.012 38.0438C284.4 37.4839 284.094 36.771 284.094 35.9052C284.094 35.3973 284.208 34.9351 284.436 34.5184C284.671 34.0953 284.973 33.7567 285.344 33.5028C285.722 33.2489 286.145 33.0568 286.614 32.9266C286.959 32.8355 287.48 32.7476 288.176 32.663C289.596 32.4937 290.641 32.2919 291.311 32.0575C291.318 31.8166 291.321 31.6636 291.321 31.5985C291.321 30.8824 291.155 30.3778 290.823 30.0848C290.374 29.6877 289.706 29.4891 288.821 29.4891C287.994 29.4891 287.382 29.6356 286.985 29.9286C286.594 30.215 286.305 30.7261 286.116 31.4618L284.397 31.2274C284.553 30.4917 284.811 29.8993 285.169 29.4501C285.527 28.9943 286.044 28.646 286.721 28.4052C287.398 28.1578 288.183 28.0341 289.075 28.0341C289.96 28.0341 290.68 28.1382 291.233 28.3466C291.786 28.5549 292.193 28.8186 292.454 29.1376C292.714 29.4501 292.896 29.8472 293.001 30.329C293.059 30.6285 293.089 31.1688 293.089 31.9501V34.2938C293.089 35.9279 293.124 36.9631 293.196 37.3993C293.274 37.829 293.424 38.2424 293.645 38.6395H291.809C291.627 38.2749 291.51 37.8485 291.458 37.3602ZM291.311 33.4344C290.673 33.6949 289.716 33.9162 288.44 34.0985C287.717 34.2027 287.206 34.3199 286.907 34.4501C286.607 34.5803 286.376 34.7723 286.214 35.0262C286.051 35.2736 285.969 35.5503 285.969 35.8563C285.969 36.3251 286.145 36.7157 286.497 37.0282C286.855 37.3407 287.376 37.4969 288.059 37.4969C288.736 37.4969 289.339 37.3505 289.866 37.0575C290.393 36.758 290.781 36.3511 291.028 35.8368C291.217 35.4397 291.311 34.8537 291.311 34.079V33.4344ZM302.79 34.8407L304.519 35.0653C304.33 36.2567 303.845 37.191 303.064 37.868C302.289 38.5386 301.335 38.8739 300.203 38.8739C298.783 38.8739 297.641 38.4117 296.775 37.4872C295.915 36.5562 295.486 35.2248 295.486 33.493C295.486 32.3733 295.671 31.3934 296.042 30.5536C296.414 29.7137 296.977 29.0855 297.732 28.6688C298.494 28.2456 299.32 28.0341 300.212 28.0341C301.339 28.0341 302.26 28.3205 302.976 28.8934C303.692 29.4598 304.151 30.2671 304.353 31.3153L302.644 31.579C302.481 30.8824 302.192 30.3583 301.775 30.0067C301.365 29.6552 300.867 29.4794 300.281 29.4794C299.395 29.4794 298.676 29.7984 298.123 30.4364C297.569 31.0679 297.292 32.0705 297.292 33.4442C297.292 34.8374 297.559 35.8498 298.093 36.4813C298.627 37.1128 299.324 37.4286 300.183 37.4286C300.873 37.4286 301.449 37.217 301.912 36.7938C302.374 36.3706 302.667 35.7196 302.79 34.8407ZM306.223 38.6395V24.3231H307.981V29.4598C308.801 28.5093 309.836 28.0341 311.086 28.0341C311.854 28.0341 312.522 28.1871 313.088 28.493C313.655 28.7925 314.058 29.2092 314.299 29.743C314.546 30.2769 314.67 31.0516 314.67 32.0673V38.6395H312.912V32.0673C312.912 31.1884 312.72 30.5503 312.336 30.1532C311.959 29.7496 311.421 29.5477 310.725 29.5477C310.204 29.5477 309.713 29.6844 309.25 29.9579C308.795 30.2248 308.469 30.5894 308.274 31.0516C308.078 31.5139 307.981 32.1519 307.981 32.9657V38.6395H306.223ZM317.566 26.3446V24.3231H319.323V26.3446H317.566ZM317.566 38.6395V28.2684H319.323V38.6395H317.566ZM322.209 38.6395V28.2684H323.791V29.743C324.553 28.6037 325.653 28.0341 327.092 28.0341C327.717 28.0341 328.29 28.148 328.81 28.3759C329.338 28.5972 329.732 28.8902 329.992 29.2548C330.252 29.6193 330.435 30.0523 330.539 30.5536C330.604 30.8791 330.637 31.4488 330.637 32.2626V38.6395H328.879V32.3309C328.879 31.6148 328.81 31.0809 328.674 30.7294C328.537 30.3713 328.293 30.0881 327.941 29.8798C327.596 29.6649 327.189 29.5575 326.721 29.5575C325.972 29.5575 325.324 29.7951 324.777 30.2704C324.237 30.7456 323.967 31.6473 323.967 32.9755V38.6395H322.209ZM340.641 35.2997L342.458 35.5243C342.171 36.5855 341.641 37.4091 340.866 37.995C340.091 38.5809 339.102 38.8739 337.897 38.8739C336.38 38.8739 335.176 38.4084 334.284 37.4774C333.398 36.5399 332.956 35.2281 332.956 33.5419C332.956 31.7971 333.405 30.4429 334.303 29.4794C335.202 28.5158 336.367 28.0341 337.799 28.0341C339.186 28.0341 340.319 28.5061 341.198 29.4501C342.077 30.3941 342.516 31.7222 342.516 33.4344C342.516 33.5386 342.513 33.6949 342.507 33.9032H334.772C334.837 35.0425 335.16 35.9149 335.739 36.5204C336.318 37.1259 337.041 37.4286 337.907 37.4286C338.551 37.4286 339.102 37.2593 339.557 36.9208C340.013 36.5822 340.374 36.0419 340.641 35.2997ZM334.87 32.4579H340.661C340.583 31.5855 340.361 30.9312 339.997 30.495C339.437 29.8179 338.711 29.4794 337.819 29.4794C337.012 29.4794 336.331 29.7496 335.778 30.2899C335.231 30.8303 334.928 31.5529 334.87 32.4579ZM350.787 38.6395V24.3231H352.682V36.9501H359.733V38.6395H350.787ZM369.073 35.2997L370.89 35.5243C370.603 36.5855 370.073 37.4091 369.298 37.995C368.523 38.5809 367.534 38.8739 366.329 38.8739C364.812 38.8739 363.608 38.4084 362.716 37.4774C361.83 36.5399 361.388 35.2281 361.388 33.5419C361.388 31.7971 361.837 30.4429 362.735 29.4794C363.634 28.5158 364.799 28.0341 366.232 28.0341C367.618 28.0341 368.751 28.5061 369.63 29.4501C370.509 30.3941 370.948 31.7222 370.948 33.4344C370.948 33.5386 370.945 33.6949 370.939 33.9032H363.204C363.269 35.0425 363.592 35.9149 364.171 36.5204C364.75 37.1259 365.473 37.4286 366.339 37.4286C366.983 37.4286 367.534 37.2593 367.989 36.9208C368.445 36.5822 368.806 36.0419 369.073 35.2997ZM363.302 32.4579H369.093C369.015 31.5855 368.793 30.9312 368.429 30.495C367.869 29.8179 367.143 29.4794 366.251 29.4794C365.444 29.4794 364.763 29.7496 364.21 30.2899C363.663 30.8303 363.36 31.5529 363.302 32.4579ZM380.074 37.3602C379.423 37.9136 378.795 38.3042 378.189 38.5321C377.59 38.76 376.946 38.8739 376.256 38.8739C375.116 38.8739 374.241 38.5972 373.629 38.0438C373.017 37.4839 372.711 36.771 372.711 35.9052C372.711 35.3973 372.825 34.9351 373.053 34.5184C373.287 34.0953 373.59 33.7567 373.961 33.5028C374.338 33.2489 374.762 33.0568 375.23 32.9266C375.575 32.8355 376.096 32.7476 376.793 32.663C378.212 32.4937 379.257 32.2919 379.928 32.0575C379.934 31.8166 379.937 31.6636 379.937 31.5985C379.937 30.8824 379.771 30.3778 379.439 30.0848C378.99 29.6877 378.323 29.4891 377.437 29.4891C376.611 29.4891 375.999 29.6356 375.601 29.9286C375.211 30.215 374.921 30.7261 374.732 31.4618L373.014 31.2274C373.17 30.4917 373.427 29.8993 373.785 29.4501C374.143 28.9943 374.661 28.646 375.338 28.4052C376.015 28.1578 376.799 28.0341 377.691 28.0341C378.577 28.0341 379.296 28.1382 379.849 28.3466C380.403 28.5549 380.81 28.8186 381.07 29.1376C381.331 29.4501 381.513 29.8472 381.617 30.329C381.676 30.6285 381.705 31.1688 381.705 31.9501V34.2938C381.705 35.9279 381.741 36.9631 381.812 37.3993C381.891 37.829 382.04 38.2424 382.262 38.6395H380.426C380.243 38.2749 380.126 37.8485 380.074 37.3602ZM379.928 33.4344C379.29 33.6949 378.333 33.9162 377.057 34.0985C376.334 34.2027 375.823 34.3199 375.523 34.4501C375.224 34.5803 374.993 34.7723 374.83 35.0262C374.667 35.2736 374.586 35.5503 374.586 35.8563C374.586 36.3251 374.762 36.7157 375.113 37.0282C375.471 37.3407 375.992 37.4969 376.676 37.4969C377.353 37.4969 377.955 37.3505 378.482 37.0575C379.01 36.758 379.397 36.3511 379.644 35.8368C379.833 35.4397 379.928 34.8537 379.928 34.079V33.4344ZM384.62 38.6395V28.2684H386.202V29.8407C386.605 29.105 386.977 28.62 387.315 28.3856C387.66 28.1512 388.038 28.0341 388.448 28.0341C389.04 28.0341 389.643 28.2229 390.255 28.6005L389.649 30.2313C389.219 29.9774 388.79 29.8505 388.36 29.8505C387.976 29.8505 387.631 29.9677 387.325 30.202C387.019 30.4299 386.801 30.7489 386.671 31.1591C386.475 31.7841 386.378 32.4677 386.378 33.2098V38.6395H384.62ZM391.499 38.6395V28.2684H393.082V29.743C393.843 28.6037 394.943 28.0341 396.382 28.0341C397.007 28.0341 397.58 28.148 398.101 28.3759C398.628 28.5972 399.022 28.8902 399.283 29.2548C399.543 29.6193 399.725 30.0523 399.83 30.5536C399.895 30.8791 399.927 31.4488 399.927 32.2626V38.6395H398.169V32.3309C398.169 31.6148 398.101 31.0809 397.964 30.7294C397.828 30.3713 397.583 30.0881 397.232 29.8798C396.887 29.6649 396.48 29.5575 396.011 29.5575C395.263 29.5575 394.615 29.7951 394.068 30.2704C393.527 30.7456 393.257 31.6473 393.257 32.9755V38.6395H391.499ZM402.842 26.3446V24.3231H404.6V26.3446H402.842ZM402.842 38.6395V28.2684H404.6V38.6395H402.842ZM407.485 38.6395V28.2684H409.067V29.743C409.829 28.6037 410.929 28.0341 412.368 28.0341C412.993 28.0341 413.566 28.148 414.087 28.3759C414.614 28.5972 415.008 28.8902 415.269 29.2548C415.529 29.6193 415.711 30.0523 415.816 30.5536C415.881 30.8791 415.913 31.4488 415.913 32.2626V38.6395H414.155V32.3309C414.155 31.6148 414.087 31.0809 413.95 30.7294C413.814 30.3713 413.569 30.0881 413.218 29.8798C412.873 29.6649 412.466 29.5575 411.997 29.5575C411.248 29.5575 410.601 29.7951 410.054 30.2704C409.513 30.7456 409.243 31.6473 409.243 32.9755V38.6395H407.485ZM418.496 39.4989L420.205 39.7528C420.277 40.2802 420.475 40.6643 420.801 40.9052C421.237 41.2307 421.833 41.3934 422.588 41.3934C423.402 41.3934 424.03 41.2307 424.473 40.9052C424.915 40.5796 425.215 40.1239 425.371 39.538C425.462 39.1799 425.504 38.4279 425.498 37.2821C424.73 38.1871 423.773 38.6395 422.627 38.6395C421.201 38.6395 420.098 38.1252 419.316 37.0966C418.535 36.0679 418.144 34.8342 418.144 33.3954C418.144 32.4058 418.323 31.4943 418.682 30.661C419.04 29.8212 419.557 29.1734 420.234 28.7177C420.918 28.2619 421.719 28.0341 422.637 28.0341C423.861 28.0341 424.87 28.5288 425.664 29.5184V28.2684H427.285V37.2333C427.285 38.8479 427.119 39.9904 426.787 40.661C426.461 41.3381 425.941 41.8719 425.224 42.2626C424.515 42.6532 423.639 42.8485 422.598 42.8485C421.361 42.8485 420.361 42.5686 419.599 42.0087C418.838 41.4553 418.47 40.6187 418.496 39.4989ZM419.951 33.2684C419.951 34.6291 420.221 35.6219 420.762 36.2469C421.302 36.8719 421.979 37.1844 422.793 37.1844C423.6 37.1844 424.277 36.8752 424.824 36.2567C425.371 35.6317 425.644 34.6552 425.644 33.327C425.644 32.0575 425.361 31.1005 424.795 30.4559C424.235 29.8114 423.558 29.4891 422.764 29.4891C421.982 29.4891 421.318 29.8081 420.771 30.4462C420.224 31.0777 419.951 32.0184 419.951 33.2684Z" fill="#9C9C9C"/>
+<path d="M786.998 248V230.82H799.42V232.848H789.271V238.109H798.775V240.125H789.271V245.973H799.818V248H786.998ZM801.483 248L806.03 241.531L801.823 235.555H804.459L806.37 238.473C806.729 239.027 807.018 239.492 807.237 239.867C807.58 239.352 807.897 238.895 808.186 238.496L810.284 235.555H812.803L808.502 241.414L813.131 248H810.541L807.987 244.133L807.307 243.09L804.038 248H801.483ZM819.695 246.113L819.999 247.977C819.405 248.102 818.874 248.164 818.405 248.164C817.64 248.164 817.046 248.043 816.624 247.801C816.202 247.559 815.905 247.242 815.734 246.852C815.562 246.453 815.476 245.621 815.476 244.355V237.195H813.929V235.555H815.476V232.473L817.573 231.207V235.555H819.695V237.195H817.573V244.473C817.573 245.074 817.609 245.461 817.679 245.633C817.757 245.805 817.878 245.941 818.042 246.043C818.214 246.145 818.456 246.195 818.769 246.195C819.003 246.195 819.312 246.168 819.695 246.113ZM830.488 243.992L832.668 244.262C832.324 245.535 831.688 246.523 830.758 247.227C829.828 247.93 828.641 248.281 827.195 248.281C825.375 248.281 823.93 247.723 822.859 246.605C821.797 245.48 821.266 243.906 821.266 241.883C821.266 239.789 821.805 238.164 822.883 237.008C823.961 235.852 825.359 235.273 827.078 235.273C828.742 235.273 830.102 235.84 831.156 236.973C832.211 238.105 832.738 239.699 832.738 241.754C832.738 241.879 832.734 242.066 832.727 242.316H823.445C823.523 243.684 823.91 244.73 824.605 245.457C825.301 246.184 826.168 246.547 827.207 246.547C827.98 246.547 828.641 246.344 829.188 245.938C829.734 245.531 830.168 244.883 830.488 243.992ZM823.562 240.582H830.512C830.418 239.535 830.152 238.75 829.715 238.227C829.043 237.414 828.172 237.008 827.102 237.008C826.133 237.008 825.316 237.332 824.652 237.98C823.996 238.629 823.633 239.496 823.562 240.582ZM835.505 248V235.555H837.403V237.441C837.888 236.559 838.333 235.977 838.739 235.695C839.153 235.414 839.606 235.273 840.098 235.273C840.809 235.273 841.532 235.5 842.266 235.953L841.54 237.91C841.024 237.605 840.509 237.453 839.993 237.453C839.532 237.453 839.118 237.594 838.751 237.875C838.384 238.148 838.122 238.531 837.966 239.023C837.731 239.773 837.614 240.594 837.614 241.484V248H835.505ZM843.72 248V235.555H845.619V237.324C846.533 235.957 847.853 235.273 849.58 235.273C850.33 235.273 851.017 235.41 851.642 235.684C852.275 235.949 852.748 236.301 853.06 236.738C853.373 237.176 853.591 237.695 853.716 238.297C853.795 238.688 853.834 239.371 853.834 240.348V248H851.724V240.43C851.724 239.57 851.642 238.93 851.478 238.508C851.314 238.078 851.021 237.738 850.599 237.488C850.185 237.23 849.697 237.102 849.134 237.102C848.236 237.102 847.459 237.387 846.802 237.957C846.154 238.527 845.83 239.609 845.83 241.203V248H843.72ZM865.401 246.465C864.62 247.129 863.866 247.598 863.139 247.871C862.42 248.145 861.647 248.281 860.819 248.281C859.452 248.281 858.401 247.949 857.666 247.285C856.932 246.613 856.565 245.758 856.565 244.719C856.565 244.109 856.702 243.555 856.975 243.055C857.256 242.547 857.62 242.141 858.065 241.836C858.518 241.531 859.026 241.301 859.588 241.145C860.002 241.035 860.627 240.93 861.463 240.828C863.166 240.625 864.42 240.383 865.225 240.102C865.233 239.812 865.237 239.629 865.237 239.551C865.237 238.691 865.037 238.086 864.639 237.734C864.1 237.258 863.299 237.02 862.237 237.02C861.245 237.02 860.51 237.195 860.034 237.547C859.565 237.891 859.217 238.504 858.991 239.387L856.928 239.105C857.116 238.223 857.424 237.512 857.854 236.973C858.284 236.426 858.905 236.008 859.717 235.719C860.53 235.422 861.471 235.273 862.541 235.273C863.604 235.273 864.467 235.398 865.131 235.648C865.795 235.898 866.284 236.215 866.596 236.598C866.909 236.973 867.127 237.449 867.252 238.027C867.323 238.387 867.358 239.035 867.358 239.973V242.785C867.358 244.746 867.401 245.988 867.487 246.512C867.58 247.027 867.76 247.523 868.026 248H865.823C865.604 247.562 865.463 247.051 865.401 246.465ZM865.225 241.754C864.459 242.066 863.311 242.332 861.78 242.551C860.912 242.676 860.299 242.816 859.94 242.973C859.58 243.129 859.303 243.359 859.108 243.664C858.912 243.961 858.815 244.293 858.815 244.66C858.815 245.223 859.026 245.691 859.448 246.066C859.877 246.441 860.502 246.629 861.323 246.629C862.135 246.629 862.858 246.453 863.491 246.102C864.123 245.742 864.588 245.254 864.885 244.637C865.112 244.16 865.225 243.457 865.225 242.527V241.754ZM870.792 248V230.82H872.902V248H870.792ZM883.532 248V230.82H889.45C890.786 230.82 891.805 230.902 892.509 231.066C893.493 231.293 894.333 231.703 895.028 232.297C895.934 233.062 896.61 234.043 897.055 235.238C897.509 236.426 897.735 237.785 897.735 239.316C897.735 240.621 897.583 241.777 897.278 242.785C896.973 243.793 896.583 244.629 896.106 245.293C895.63 245.949 895.106 246.469 894.536 246.852C893.973 247.227 893.29 247.512 892.485 247.707C891.688 247.902 890.77 248 889.731 248H883.532ZM885.805 245.973H889.473C890.606 245.973 891.493 245.867 892.134 245.656C892.782 245.445 893.298 245.148 893.68 244.766C894.22 244.227 894.638 243.504 894.934 242.598C895.239 241.684 895.391 240.578 895.391 239.281C895.391 237.484 895.095 236.105 894.501 235.145C893.915 234.176 893.2 233.527 892.356 233.199C891.747 232.965 890.766 232.848 889.415 232.848H885.805V245.973ZM908.927 246.465C908.146 247.129 907.392 247.598 906.666 247.871C905.947 248.145 905.173 248.281 904.345 248.281C902.978 248.281 901.927 247.949 901.193 247.285C900.459 246.613 900.091 245.758 900.091 244.719C900.091 244.109 900.228 243.555 900.502 243.055C900.783 242.547 901.146 242.141 901.591 241.836C902.045 241.531 902.552 241.301 903.115 241.145C903.529 241.035 904.154 240.93 904.99 240.828C906.693 240.625 907.947 240.383 908.752 240.102C908.759 239.812 908.763 239.629 908.763 239.551C908.763 238.691 908.564 238.086 908.166 237.734C907.627 237.258 906.826 237.02 905.763 237.02C904.771 237.02 904.037 237.195 903.56 237.547C903.091 237.891 902.744 238.504 902.517 239.387L900.455 239.105C900.642 238.223 900.951 237.512 901.38 236.973C901.81 236.426 902.431 236.008 903.244 235.719C904.056 235.422 904.998 235.273 906.068 235.273C907.13 235.273 907.994 235.398 908.658 235.648C909.322 235.898 909.81 236.215 910.123 236.598C910.435 236.973 910.654 237.449 910.779 238.027C910.849 238.387 910.884 239.035 910.884 239.973V242.785C910.884 244.746 910.927 245.988 911.013 246.512C911.107 247.027 911.287 247.523 911.552 248H909.349C909.13 247.562 908.99 247.051 908.927 246.465ZM908.752 241.754C907.986 242.066 906.838 242.332 905.306 242.551C904.439 242.676 903.826 242.816 903.466 242.973C903.107 243.129 902.83 243.359 902.634 243.664C902.439 243.961 902.341 244.293 902.341 244.66C902.341 245.223 902.552 245.691 902.974 246.066C903.404 246.441 904.029 246.629 904.849 246.629C905.662 246.629 906.384 246.453 907.017 246.102C907.65 245.742 908.115 245.254 908.412 244.637C908.638 244.16 908.752 243.457 908.752 242.527V241.754ZM918.971 246.113L919.276 247.977C918.682 248.102 918.151 248.164 917.682 248.164C916.916 248.164 916.323 248.043 915.901 247.801C915.479 247.559 915.182 247.242 915.01 246.852C914.838 246.453 914.752 245.621 914.752 244.355V237.195H913.205V235.555H914.752V232.473L916.85 231.207V235.555H918.971V237.195H916.85V244.473C916.85 245.074 916.885 245.461 916.955 245.633C917.034 245.805 917.155 245.941 917.319 246.043C917.491 246.145 917.733 246.195 918.045 246.195C918.28 246.195 918.588 246.168 918.971 246.113ZM929.366 246.465C928.585 247.129 927.831 247.598 927.105 247.871C926.386 248.145 925.612 248.281 924.784 248.281C923.417 248.281 922.366 247.949 921.632 247.285C920.898 246.613 920.53 245.758 920.53 244.719C920.53 244.109 920.667 243.555 920.941 243.055C921.222 242.547 921.585 242.141 922.03 241.836C922.484 241.531 922.991 241.301 923.554 241.145C923.968 241.035 924.593 240.93 925.429 240.828C927.132 240.625 928.386 240.383 929.191 240.102C929.198 239.812 929.202 239.629 929.202 239.551C929.202 238.691 929.003 238.086 928.605 237.734C928.066 237.258 927.265 237.02 926.202 237.02C925.21 237.02 924.476 237.195 923.999 237.547C923.53 237.891 923.183 238.504 922.956 239.387L920.894 239.105C921.081 238.223 921.39 237.512 921.82 236.973C922.249 236.426 922.87 236.008 923.683 235.719C924.495 235.422 925.437 235.273 926.507 235.273C927.57 235.273 928.433 235.398 929.097 235.648C929.761 235.898 930.249 236.215 930.562 236.598C930.874 236.973 931.093 237.449 931.218 238.027C931.288 238.387 931.323 239.035 931.323 239.973V242.785C931.323 244.746 931.366 245.988 931.452 246.512C931.546 247.027 931.726 247.523 931.991 248H929.788C929.57 247.562 929.429 247.051 929.366 246.465ZM929.191 241.754C928.425 242.066 927.277 242.332 925.745 242.551C924.878 242.676 924.265 242.816 923.905 242.973C923.546 243.129 923.269 243.359 923.073 243.664C922.878 243.961 922.78 244.293 922.78 244.66C922.78 245.223 922.991 245.691 923.413 246.066C923.843 246.441 924.468 246.629 925.288 246.629C926.101 246.629 926.823 246.453 927.456 246.102C928.089 245.742 928.554 245.254 928.851 244.637C929.077 244.16 929.191 243.457 929.191 242.527V241.754ZM936.75 248H934.793V230.82H936.902V236.949C937.793 235.832 938.93 235.273 940.312 235.273C941.078 235.273 941.801 235.43 942.48 235.742C943.168 236.047 943.73 236.48 944.168 237.043C944.613 237.598 944.961 238.27 945.211 239.059C945.461 239.848 945.586 240.691 945.586 241.59C945.586 243.723 945.059 245.371 944.004 246.535C942.949 247.699 941.684 248.281 940.207 248.281C938.738 248.281 937.586 247.668 936.75 246.441V248ZM936.727 241.684C936.727 243.176 936.93 244.254 937.336 244.918C938 246.004 938.898 246.547 940.031 246.547C940.953 246.547 941.75 246.148 942.422 245.352C943.094 244.547 943.43 243.352 943.43 241.766C943.43 240.141 943.105 238.941 942.457 238.168C941.816 237.395 941.039 237.008 940.125 237.008C939.203 237.008 938.406 237.41 937.734 238.215C937.062 239.012 936.727 240.168 936.727 241.684ZM956.485 246.465C955.704 247.129 954.95 247.598 954.223 247.871C953.505 248.145 952.731 248.281 951.903 248.281C950.536 248.281 949.485 247.949 948.751 247.285C948.016 246.613 947.649 245.758 947.649 244.719C947.649 244.109 947.786 243.555 948.059 243.055C948.341 242.547 948.704 242.141 949.149 241.836C949.602 241.531 950.11 241.301 950.673 241.145C951.087 241.035 951.712 240.93 952.548 240.828C954.251 240.625 955.505 240.383 956.309 240.102C956.317 239.812 956.321 239.629 956.321 239.551C956.321 238.691 956.122 238.086 955.723 237.734C955.184 237.258 954.384 237.02 953.321 237.02C952.329 237.02 951.595 237.195 951.118 237.547C950.649 237.891 950.302 238.504 950.075 239.387L948.013 239.105C948.2 238.223 948.509 237.512 948.938 236.973C949.368 236.426 949.989 236.008 950.802 235.719C951.614 235.422 952.555 235.273 953.626 235.273C954.688 235.273 955.552 235.398 956.216 235.648C956.88 235.898 957.368 236.215 957.68 236.598C957.993 236.973 958.212 237.449 958.337 238.027C958.407 238.387 958.442 239.035 958.442 239.973V242.785C958.442 244.746 958.485 245.988 958.571 246.512C958.665 247.027 958.845 247.523 959.11 248H956.907C956.688 247.562 956.548 247.051 956.485 246.465ZM956.309 241.754C955.544 242.066 954.395 242.332 952.864 242.551C951.997 242.676 951.384 242.816 951.024 242.973C950.665 243.129 950.388 243.359 950.192 243.664C949.997 243.961 949.899 244.293 949.899 244.66C949.899 245.223 950.11 245.691 950.532 246.066C950.962 246.441 951.587 246.629 952.407 246.629C953.22 246.629 953.942 246.453 954.575 246.102C955.208 245.742 955.673 245.254 955.97 244.637C956.196 244.16 956.309 243.457 956.309 242.527V241.754ZM961.08 244.285L963.166 243.957C963.283 244.793 963.607 245.434 964.138 245.879C964.677 246.324 965.427 246.547 966.388 246.547C967.357 246.547 968.076 246.352 968.545 245.961C969.013 245.562 969.248 245.098 969.248 244.566C969.248 244.09 969.041 243.715 968.627 243.441C968.337 243.254 967.619 243.016 966.47 242.727C964.923 242.336 963.849 242 963.248 241.719C962.654 241.43 962.201 241.035 961.888 240.535C961.584 240.027 961.431 239.469 961.431 238.859C961.431 238.305 961.556 237.793 961.806 237.324C962.064 236.848 962.412 236.453 962.849 236.141C963.177 235.898 963.623 235.695 964.185 235.531C964.755 235.359 965.365 235.273 966.013 235.273C966.99 235.273 967.845 235.414 968.58 235.695C969.322 235.977 969.869 236.359 970.22 236.844C970.572 237.32 970.814 237.961 970.947 238.766L968.884 239.047C968.791 238.406 968.517 237.906 968.064 237.547C967.619 237.188 966.986 237.008 966.166 237.008C965.197 237.008 964.505 237.168 964.091 237.488C963.677 237.809 963.47 238.184 963.47 238.613C963.47 238.887 963.556 239.133 963.728 239.352C963.9 239.578 964.17 239.766 964.537 239.914C964.748 239.992 965.369 240.172 966.4 240.453C967.892 240.852 968.931 241.18 969.517 241.438C970.111 241.688 970.576 242.055 970.912 242.539C971.248 243.023 971.416 243.625 971.416 244.344C971.416 245.047 971.209 245.711 970.795 246.336C970.388 246.953 969.798 247.434 969.025 247.777C968.252 248.113 967.377 248.281 966.4 248.281C964.783 248.281 963.548 247.945 962.697 247.273C961.853 246.602 961.314 245.605 961.08 244.285ZM982.643 243.992L984.823 244.262C984.479 245.535 983.842 246.523 982.913 247.227C981.983 247.93 980.795 248.281 979.35 248.281C977.53 248.281 976.084 247.723 975.014 246.605C973.952 245.48 973.42 243.906 973.42 241.883C973.42 239.789 973.959 238.164 975.038 237.008C976.116 235.852 977.514 235.273 979.233 235.273C980.897 235.273 982.256 235.84 983.311 236.973C984.366 238.105 984.893 239.699 984.893 241.754C984.893 241.879 984.889 242.066 984.881 242.316H975.6C975.678 243.684 976.065 244.73 976.76 245.457C977.455 246.184 978.323 246.547 979.362 246.547C980.135 246.547 980.795 246.344 981.342 245.938C981.889 245.531 982.323 244.883 982.643 243.992ZM975.717 240.582H982.666C982.573 239.535 982.307 238.75 981.87 238.227C981.198 237.414 980.327 237.008 979.256 237.008C978.288 237.008 977.471 237.332 976.807 237.98C976.151 238.629 975.788 239.496 975.717 240.582Z" fill="#2D2D2D"/>
+<path d="M452.972 247L459.57 229.82H462.019L469.05 247H466.46L464.456 241.797H457.273L455.386 247H452.972ZM457.929 239.945H463.753L461.96 235.188C461.413 233.742 461.007 232.555 460.741 231.625C460.523 232.727 460.214 233.82 459.816 234.906L457.929 239.945ZM470.797 251.77V234.555H472.719V236.172C473.172 235.539 473.684 235.066 474.254 234.754C474.824 234.434 475.516 234.273 476.328 234.273C477.391 234.273 478.328 234.547 479.141 235.094C479.953 235.641 480.566 236.414 480.981 237.414C481.395 238.406 481.602 239.496 481.602 240.684C481.602 241.957 481.371 243.105 480.91 244.129C480.457 245.145 479.793 245.926 478.918 246.473C478.051 247.012 477.137 247.281 476.176 247.281C475.473 247.281 474.84 247.133 474.277 246.836C473.723 246.539 473.266 246.164 472.906 245.711V251.77H470.797ZM472.707 240.848C472.707 242.449 473.031 243.633 473.68 244.398C474.328 245.164 475.113 245.547 476.035 245.547C476.973 245.547 477.773 245.152 478.438 244.363C479.109 243.566 479.445 242.336 479.445 240.672C479.445 239.086 479.117 237.898 478.461 237.109C477.813 236.32 477.035 235.926 476.129 235.926C475.231 235.926 474.434 236.348 473.738 237.191C473.051 238.027 472.707 239.246 472.707 240.848ZM484.356 251.77V234.555H486.278V236.172C486.731 235.539 487.243 235.066 487.813 234.754C488.384 234.434 489.075 234.273 489.888 234.273C490.95 234.273 491.888 234.547 492.7 235.094C493.513 235.641 494.126 236.414 494.54 237.414C494.954 238.406 495.161 239.496 495.161 240.684C495.161 241.957 494.931 243.105 494.47 244.129C494.016 245.145 493.352 245.926 492.477 246.473C491.61 247.012 490.696 247.281 489.735 247.281C489.032 247.281 488.399 247.133 487.837 246.836C487.282 246.539 486.825 246.164 486.466 245.711V251.77H484.356ZM486.266 240.848C486.266 242.449 486.591 243.633 487.239 244.398C487.888 245.164 488.673 245.547 489.595 245.547C490.532 245.547 491.333 245.152 491.997 244.363C492.669 243.566 493.005 242.336 493.005 240.672C493.005 239.086 492.677 237.898 492.02 237.109C491.372 236.32 490.595 235.926 489.688 235.926C488.79 235.926 487.993 236.348 487.298 237.191C486.61 238.027 486.266 239.246 486.266 240.848ZM497.869 247V229.82H499.978V247H497.869ZM503.471 232.246V229.82H505.581V232.246H503.471ZM503.471 247V234.555H505.581V247H503.471ZM517.124 242.441L519.198 242.711C518.972 244.141 518.39 245.262 517.452 246.074C516.523 246.879 515.378 247.281 514.019 247.281C512.316 247.281 510.945 246.727 509.906 245.617C508.874 244.5 508.359 242.902 508.359 240.824C508.359 239.48 508.581 238.305 509.027 237.297C509.472 236.289 510.148 235.535 511.054 235.035C511.968 234.527 512.96 234.273 514.031 234.273C515.382 234.273 516.488 234.617 517.347 235.305C518.206 235.984 518.757 236.953 518.999 238.211L516.948 238.527C516.753 237.691 516.406 237.062 515.906 236.641C515.413 236.219 514.816 236.008 514.113 236.008C513.05 236.008 512.187 236.391 511.523 237.156C510.859 237.914 510.527 239.117 510.527 240.766C510.527 242.438 510.847 243.652 511.488 244.41C512.128 245.168 512.964 245.547 513.995 245.547C514.823 245.547 515.515 245.293 516.07 244.785C516.624 244.277 516.976 243.496 517.124 242.441ZM529.324 245.465C528.543 246.129 527.789 246.598 527.063 246.871C526.344 247.145 525.57 247.281 524.742 247.281C523.375 247.281 522.324 246.949 521.59 246.285C520.856 245.613 520.488 244.758 520.488 243.719C520.488 243.109 520.625 242.555 520.898 242.055C521.18 241.547 521.543 241.141 521.988 240.836C522.441 240.531 522.949 240.301 523.512 240.145C523.926 240.035 524.551 239.93 525.387 239.828C527.09 239.625 528.344 239.383 529.148 239.102C529.156 238.812 529.16 238.629 529.16 238.551C529.16 237.691 528.961 237.086 528.563 236.734C528.023 236.258 527.223 236.02 526.16 236.02C525.168 236.02 524.434 236.195 523.957 236.547C523.488 236.891 523.141 237.504 522.914 238.387L520.852 238.105C521.039 237.223 521.348 236.512 521.777 235.973C522.207 235.426 522.828 235.008 523.641 234.719C524.453 234.422 525.395 234.273 526.465 234.273C527.527 234.273 528.391 234.398 529.055 234.648C529.719 234.898 530.207 235.215 530.52 235.598C530.832 235.973 531.051 236.449 531.176 237.027C531.246 237.387 531.281 238.035 531.281 238.973V241.785C531.281 243.746 531.324 244.988 531.41 245.512C531.504 246.027 531.684 246.523 531.949 247H529.746C529.527 246.562 529.387 246.051 529.324 245.465ZM529.148 240.754C528.383 241.066 527.234 241.332 525.703 241.551C524.836 241.676 524.223 241.816 523.863 241.973C523.504 242.129 523.227 242.359 523.031 242.664C522.836 242.961 522.738 243.293 522.738 243.66C522.738 244.223 522.949 244.691 523.371 245.066C523.801 245.441 524.426 245.629 525.246 245.629C526.059 245.629 526.781 245.453 527.414 245.102C528.047 244.742 528.512 244.254 528.809 243.637C529.035 243.16 529.148 242.457 529.148 241.527V240.754ZM539.368 245.113L539.673 246.977C539.079 247.102 538.548 247.164 538.079 247.164C537.313 247.164 536.72 247.043 536.298 246.801C535.876 246.559 535.579 246.242 535.407 245.852C535.235 245.453 535.149 244.621 535.149 243.355V236.195H533.602V234.555H535.149V231.473L537.247 230.207V234.555H539.368V236.195H537.247V243.473C537.247 244.074 537.282 244.461 537.352 244.633C537.431 244.805 537.552 244.941 537.716 245.043C537.888 245.145 538.13 245.195 538.442 245.195C538.677 245.195 538.985 245.168 539.368 245.113ZM541.654 232.246V229.82H543.763V232.246H541.654ZM541.654 247V234.555H543.763V247H541.654ZM546.401 240.777C546.401 238.473 547.041 236.766 548.323 235.656C549.393 234.734 550.698 234.273 552.237 234.273C553.948 234.273 555.346 234.836 556.432 235.961C557.518 237.078 558.061 238.625 558.061 240.602C558.061 242.203 557.819 243.465 557.334 244.387C556.858 245.301 556.159 246.012 555.237 246.52C554.323 247.027 553.323 247.281 552.237 247.281C550.495 247.281 549.084 246.723 548.006 245.605C546.936 244.488 546.401 242.879 546.401 240.777ZM548.569 240.777C548.569 242.371 548.916 243.566 549.612 244.363C550.307 245.152 551.182 245.547 552.237 245.547C553.284 245.547 554.155 245.148 554.85 244.352C555.545 243.555 555.893 242.34 555.893 240.707C555.893 239.168 555.541 238.004 554.838 237.215C554.143 236.418 553.276 236.02 552.237 236.02C551.182 236.02 550.307 236.414 549.612 237.203C548.916 237.992 548.569 239.184 548.569 240.777ZM560.745 247V234.555H562.644V236.324C563.558 234.957 564.878 234.273 566.605 234.273C567.355 234.273 568.042 234.41 568.667 234.684C569.3 234.949 569.773 235.301 570.085 235.738C570.398 236.176 570.616 236.695 570.741 237.297C570.82 237.688 570.859 238.371 570.859 239.348V247H568.749V239.43C568.749 238.57 568.667 237.93 568.503 237.508C568.339 237.078 568.046 236.738 567.624 236.488C567.21 236.23 566.722 236.102 566.159 236.102C565.261 236.102 564.484 236.387 563.827 236.957C563.179 237.527 562.855 238.609 562.855 240.203V247H560.745Z" fill="#2D2D2D"/>
+<path d="M212.629 278.759L218.127 264.443H220.168L226.028 278.759H223.869L222.199 274.423H216.213L214.641 278.759H212.629ZM216.76 272.88H221.614L220.119 268.915C219.664 267.711 219.325 266.721 219.104 265.946C218.921 266.864 218.664 267.776 218.332 268.681L216.76 272.88ZM237.956 273.739L239.851 274.218C239.453 275.774 238.737 276.962 237.702 277.782C236.674 278.596 235.414 279.003 233.923 279.003C232.38 279.003 231.123 278.691 230.153 278.066C229.19 277.434 228.454 276.523 227.946 275.331C227.445 274.14 227.194 272.86 227.194 271.493C227.194 270.002 227.478 268.704 228.044 267.597C228.617 266.484 229.427 265.64 230.476 265.068C231.53 264.488 232.689 264.198 233.952 264.198C235.384 264.198 236.589 264.563 237.565 265.292C238.542 266.021 239.222 267.047 239.606 268.368L237.741 268.808C237.409 267.766 236.927 267.008 236.296 266.532C235.664 266.057 234.87 265.819 233.913 265.819C232.813 265.819 231.892 266.083 231.149 266.61C230.414 267.138 229.896 267.847 229.597 268.739C229.297 269.625 229.147 270.54 229.147 271.484C229.147 272.701 229.323 273.765 229.675 274.677C230.033 275.582 230.586 276.259 231.335 276.708C232.084 277.157 232.894 277.382 233.767 277.382C234.828 277.382 235.726 277.076 236.462 276.464C237.198 275.852 237.696 274.944 237.956 273.739ZM242.717 278.759V264.443H244.611V278.759H242.717ZM248.161 278.759V264.443H253.092C254.206 264.443 255.055 264.511 255.641 264.648C256.462 264.836 257.161 265.178 257.741 265.673C258.496 266.311 259.059 267.128 259.43 268.124C259.808 269.114 259.997 270.247 259.997 271.523C259.997 272.61 259.87 273.573 259.616 274.413C259.362 275.253 259.036 275.95 258.639 276.503C258.242 277.05 257.806 277.483 257.331 277.802C256.862 278.114 256.292 278.352 255.622 278.515C254.958 278.678 254.193 278.759 253.327 278.759H248.161ZM250.055 277.069H253.112C254.056 277.069 254.795 276.982 255.329 276.806C255.869 276.63 256.299 276.383 256.618 276.064C257.067 275.614 257.415 275.012 257.663 274.257C257.917 273.495 258.044 272.574 258.044 271.493C258.044 269.996 257.796 268.847 257.301 268.046C256.813 267.239 256.217 266.698 255.514 266.425C255.006 266.23 254.189 266.132 253.063 266.132H250.055V277.069ZM271.852 278.759V266.132H267.135V264.443H278.483V266.132H273.746V278.759H271.852ZM279.649 278.759V268.388H281.231V269.96C281.635 269.224 282.006 268.739 282.345 268.505C282.69 268.271 283.067 268.153 283.478 268.153C284.07 268.153 284.672 268.342 285.284 268.72L284.679 270.351C284.249 270.097 283.819 269.97 283.39 269.97C283.006 269.97 282.661 270.087 282.355 270.321C282.049 270.549 281.83 270.868 281.7 271.278C281.505 271.903 281.407 272.587 281.407 273.329V278.759H279.649ZM293.297 277.48C292.646 278.033 292.017 278.424 291.412 278.651C290.813 278.879 290.168 278.993 289.478 278.993C288.339 278.993 287.463 278.717 286.851 278.163C286.239 277.603 285.933 276.89 285.933 276.025C285.933 275.517 286.047 275.054 286.275 274.638C286.51 274.215 286.812 273.876 287.183 273.622C287.561 273.368 287.984 273.176 288.453 273.046C288.798 272.955 289.319 272.867 290.015 272.782C291.435 272.613 292.48 272.411 293.15 272.177C293.157 271.936 293.16 271.783 293.16 271.718C293.16 271.002 292.994 270.497 292.662 270.204C292.213 269.807 291.545 269.609 290.66 269.609C289.833 269.609 289.221 269.755 288.824 270.048C288.433 270.334 288.144 270.845 287.955 271.581L286.236 271.347C286.392 270.611 286.65 270.019 287.008 269.569C287.366 269.114 287.883 268.765 288.56 268.525C289.237 268.277 290.022 268.153 290.914 268.153C291.799 268.153 292.519 268.258 293.072 268.466C293.625 268.674 294.032 268.938 294.293 269.257C294.553 269.569 294.736 269.967 294.84 270.448C294.898 270.748 294.928 271.288 294.928 272.069V274.413C294.928 276.047 294.963 277.082 295.035 277.519C295.113 277.948 295.263 278.362 295.484 278.759H293.648C293.466 278.394 293.349 277.968 293.297 277.48ZM293.15 273.554C292.512 273.814 291.555 274.036 290.279 274.218C289.556 274.322 289.045 274.439 288.746 274.569C288.446 274.7 288.215 274.892 288.053 275.146C287.89 275.393 287.808 275.67 287.808 275.976C287.808 276.444 287.984 276.835 288.336 277.148C288.694 277.46 289.215 277.616 289.898 277.616C290.575 277.616 291.178 277.47 291.705 277.177C292.232 276.877 292.62 276.47 292.867 275.956C293.056 275.559 293.15 274.973 293.15 274.198V273.554ZM297.862 278.759V268.388H299.444V269.862C300.206 268.723 301.306 268.153 302.745 268.153C303.37 268.153 303.943 268.267 304.464 268.495C304.991 268.717 305.385 269.01 305.645 269.374C305.906 269.739 306.088 270.172 306.192 270.673C306.257 270.998 306.29 271.568 306.29 272.382V278.759H304.532V272.45C304.532 271.734 304.464 271.2 304.327 270.849C304.19 270.491 303.946 270.207 303.594 269.999C303.249 269.784 302.842 269.677 302.374 269.677C301.625 269.677 300.977 269.915 300.43 270.39C299.89 270.865 299.62 271.767 299.62 273.095V278.759H297.862ZM308.492 275.663L310.23 275.39C310.328 276.086 310.598 276.62 311.04 276.991C311.49 277.362 312.115 277.548 312.915 277.548C313.723 277.548 314.322 277.385 314.712 277.06C315.103 276.728 315.298 276.34 315.298 275.898C315.298 275.5 315.126 275.188 314.781 274.96C314.54 274.804 313.941 274.605 312.984 274.364C311.695 274.039 310.8 273.759 310.298 273.525C309.803 273.284 309.426 272.955 309.165 272.538C308.912 272.115 308.785 271.65 308.785 271.142C308.785 270.679 308.889 270.253 309.097 269.862C309.312 269.465 309.602 269.137 309.966 268.876C310.24 268.674 310.611 268.505 311.08 268.368C311.555 268.225 312.063 268.153 312.603 268.153C313.417 268.153 314.13 268.271 314.742 268.505C315.36 268.739 315.816 269.058 316.109 269.462C316.402 269.859 316.604 270.393 316.714 271.064L314.996 271.298C314.917 270.764 314.69 270.347 314.312 270.048C313.941 269.748 313.414 269.599 312.73 269.599C311.923 269.599 311.346 269.732 311.001 269.999C310.656 270.266 310.484 270.579 310.484 270.937C310.484 271.165 310.555 271.37 310.699 271.552C310.842 271.741 311.067 271.897 311.372 272.021C311.548 272.086 312.066 272.235 312.925 272.47C314.169 272.802 315.035 273.075 315.523 273.29C316.018 273.498 316.405 273.804 316.685 274.208C316.965 274.612 317.105 275.113 317.105 275.712C317.105 276.298 316.932 276.851 316.587 277.372C316.249 277.887 315.757 278.287 315.113 278.573C314.468 278.853 313.739 278.993 312.925 278.993C311.578 278.993 310.549 278.713 309.839 278.153C309.136 277.594 308.687 276.763 308.492 275.663ZM326.162 277.48C325.511 278.033 324.883 278.424 324.278 278.651C323.679 278.879 323.034 278.993 322.344 278.993C321.205 278.993 320.329 278.717 319.717 278.163C319.105 277.603 318.799 276.89 318.799 276.025C318.799 275.517 318.913 275.054 319.141 274.638C319.375 274.215 319.678 273.876 320.049 273.622C320.427 273.368 320.85 273.176 321.319 273.046C321.664 272.955 322.184 272.867 322.881 272.782C324.3 272.613 325.345 272.411 326.016 272.177C326.022 271.936 326.026 271.783 326.026 271.718C326.026 271.002 325.86 270.497 325.528 270.204C325.078 269.807 324.411 269.609 323.526 269.609C322.699 269.609 322.087 269.755 321.69 270.048C321.299 270.334 321.009 270.845 320.821 271.581L319.102 271.347C319.258 270.611 319.515 270.019 319.873 269.569C320.231 269.114 320.749 268.765 321.426 268.525C322.103 268.277 322.888 268.153 323.78 268.153C324.665 268.153 325.384 268.258 325.938 268.466C326.491 268.674 326.898 268.938 327.158 269.257C327.419 269.569 327.601 269.967 327.705 270.448C327.764 270.748 327.793 271.288 327.793 272.069V274.413C327.793 276.047 327.829 277.082 327.901 277.519C327.979 277.948 328.128 278.362 328.35 278.759H326.514C326.332 278.394 326.214 277.968 326.162 277.48ZM326.016 273.554C325.378 273.814 324.421 274.036 323.145 274.218C322.422 274.322 321.911 274.439 321.612 274.569C321.312 274.7 321.081 274.892 320.918 275.146C320.755 275.393 320.674 275.67 320.674 275.976C320.674 276.444 320.85 276.835 321.201 277.148C321.559 277.46 322.08 277.616 322.764 277.616C323.441 277.616 324.043 277.47 324.571 277.177C325.098 276.877 325.485 276.47 325.733 275.956C325.921 275.559 326.016 274.973 326.016 274.198V273.554ZM337.495 274.96L339.224 275.185C339.035 276.376 338.55 277.31 337.769 277.987C336.994 278.658 336.04 278.993 334.907 278.993C333.488 278.993 332.345 278.531 331.48 277.607C330.62 276.676 330.19 275.344 330.19 273.612C330.19 272.493 330.376 271.513 330.747 270.673C331.118 269.833 331.681 269.205 332.437 268.788C333.198 268.365 334.025 268.153 334.917 268.153C336.043 268.153 336.965 268.44 337.681 269.013C338.397 269.579 338.856 270.387 339.058 271.435L337.349 271.698C337.186 271.002 336.896 270.478 336.48 270.126C336.069 269.775 335.571 269.599 334.985 269.599C334.1 269.599 333.381 269.918 332.827 270.556C332.274 271.187 331.997 272.19 331.997 273.564C331.997 274.957 332.264 275.969 332.798 276.601C333.332 277.232 334.028 277.548 334.888 277.548C335.578 277.548 336.154 277.336 336.616 276.913C337.078 276.49 337.371 275.839 337.495 274.96ZM344.765 277.187L345.019 278.739C344.525 278.844 344.082 278.896 343.691 278.896C343.053 278.896 342.558 278.795 342.207 278.593C341.855 278.391 341.608 278.127 341.465 277.802C341.321 277.47 341.25 276.776 341.25 275.722V269.755H339.961V268.388H341.25V265.819L342.998 264.765V268.388H344.765V269.755H342.998V275.819C342.998 276.321 343.027 276.643 343.086 276.786C343.151 276.929 343.252 277.043 343.389 277.128C343.532 277.213 343.734 277.255 343.994 277.255C344.189 277.255 344.446 277.232 344.765 277.187ZM346.704 266.464V264.443H348.462V266.464H346.704ZM346.704 278.759V268.388H348.462V278.759H346.704ZM350.693 273.573C350.693 271.653 351.227 270.23 352.294 269.306C353.186 268.538 354.274 268.153 355.556 268.153C356.982 268.153 358.147 268.622 359.052 269.56C359.957 270.491 360.41 271.78 360.41 273.427C360.41 274.762 360.208 275.813 359.804 276.581C359.407 277.343 358.824 277.935 358.056 278.359C357.294 278.782 356.461 278.993 355.556 278.993C354.104 278.993 352.929 278.528 352.031 277.597C351.139 276.666 350.693 275.325 350.693 273.573ZM352.499 273.573C352.499 274.901 352.789 275.898 353.369 276.562C353.948 277.219 354.677 277.548 355.556 277.548C356.428 277.548 357.154 277.216 357.734 276.552C358.313 275.888 358.603 274.875 358.603 273.515C358.603 272.232 358.31 271.262 357.724 270.605C357.145 269.941 356.422 269.609 355.556 269.609C354.677 269.609 353.948 269.937 353.369 270.595C352.789 271.252 352.499 272.245 352.499 273.573ZM362.68 278.759V268.388H364.262V269.862C365.024 268.723 366.124 268.153 367.563 268.153C368.188 268.153 368.761 268.267 369.281 268.495C369.809 268.717 370.203 269.01 370.463 269.374C370.724 269.739 370.906 270.172 371.01 270.673C371.075 270.998 371.108 271.568 371.108 272.382V278.759H369.35V272.45C369.35 271.734 369.281 271.2 369.145 270.849C369.008 270.491 368.764 270.207 368.412 269.999C368.067 269.784 367.66 269.677 367.192 269.677C366.443 269.677 365.795 269.915 365.248 270.39C364.708 270.865 364.438 271.767 364.438 273.095V278.759H362.68ZM373.31 275.663L375.048 275.39C375.146 276.086 375.416 276.62 375.858 276.991C376.308 277.362 376.933 277.548 377.733 277.548C378.541 277.548 379.14 277.385 379.53 277.06C379.921 276.728 380.116 276.34 380.116 275.898C380.116 275.5 379.944 275.188 379.599 274.96C379.358 274.804 378.759 274.605 377.802 274.364C376.513 274.039 375.618 273.759 375.116 273.525C374.621 273.284 374.244 272.955 373.983 272.538C373.73 272.115 373.603 271.65 373.603 271.142C373.603 270.679 373.707 270.253 373.915 269.862C374.13 269.465 374.42 269.137 374.784 268.876C375.058 268.674 375.429 268.505 375.897 268.368C376.373 268.225 376.881 268.153 377.421 268.153C378.235 268.153 378.948 268.271 379.56 268.505C380.178 268.739 380.634 269.058 380.927 269.462C381.22 269.859 381.422 270.393 381.532 271.064L379.814 271.298C379.735 270.764 379.508 270.347 379.13 270.048C378.759 269.748 378.231 269.599 377.548 269.599C376.741 269.599 376.164 269.732 375.819 269.999C375.474 270.266 375.302 270.579 375.302 270.937C375.302 271.165 375.373 271.37 375.517 271.552C375.66 271.741 375.884 271.897 376.19 272.021C376.366 272.086 376.884 272.235 377.743 272.47C378.987 272.802 379.853 273.075 380.341 273.29C380.836 273.498 381.223 273.804 381.503 274.208C381.783 274.612 381.923 275.113 381.923 275.712C381.923 276.298 381.75 276.851 381.405 277.372C381.067 277.887 380.575 278.287 379.931 278.573C379.286 278.853 378.557 278.993 377.743 278.993C376.396 278.993 375.367 278.713 374.657 278.153C373.954 277.594 373.505 276.763 373.31 275.663Z" fill="#9C9C9C"/>
+</svg>
diff --git a/public/img/features/in-memory/icon-attention.svg b/public/img/features/in-memory/icon-attention.svg
new file mode 100644
index 0000000..4bff0a1
--- /dev/null
+++ b/public/img/features/in-memory/icon-attention.svg
@@ -0,0 +1,6 @@
+<svg width="48" height="49" viewBox="0 0 48 49" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M6.02291 28.4428C3.5719 25.9918 3.5719 22.0179 6.02291 19.5669L19.562 6.02775C22.013 3.57674 25.9869 3.57674 28.4379 6.02775L41.977 19.5669C44.4281 22.0179 44.4281 25.9918 41.977 28.4428L28.4379 41.9819C25.9869 44.4329 22.013 44.4329 19.562 41.9819L6.02291 28.4428Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M5.23044 29.2353C2.34175 26.3466 2.34175 21.6631 5.23044 18.7744L18.7696 5.23526C21.6583 2.34657 26.3417 2.34657 29.2304 5.23526L42.7696 18.7744C45.6583 21.6631 45.6583 26.3466 42.7696 29.2353L29.2304 42.7744C26.3417 45.6631 21.6583 45.6631 18.7696 42.7744L5.23044 29.2353ZM6.81542 20.3594C4.80209 22.3727 4.80209 25.6369 6.81542 27.6503L20.3545 41.1894C22.3679 43.2027 25.6321 43.2027 27.6455 41.1894L41.1846 27.6503C43.1979 25.6369 43.1979 22.3727 41.1846 20.3594L27.6455 6.82024C25.6321 4.80691 22.3679 4.80691 20.3545 6.82024L6.81542 20.3594Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M24 10.7594C24.619 10.7594 25.1208 11.2611 25.1208 11.8801V26.8399C25.1208 27.4589 24.619 27.9607 24 27.9607C23.381 27.9607 22.8793 27.4589 22.8793 26.8399V11.8801C22.8793 11.2611 23.381 10.7594 24 10.7594Z" fill="#ED1C24"/>
+<path d="M25.2274 33.3974C25.2274 34.0458 24.7017 34.5714 24.0533 34.5714C23.4049 34.5714 22.8793 34.0458 22.8793 33.3974C22.8793 32.7489 23.4049 32.2233 24.0533 32.2233C24.7017 32.2233 25.2274 32.7489 25.2274 33.3974Z" fill="#ED1C24"/>
+</svg>
diff --git a/public/img/features/in-memory/icon-check.svg b/public/img/features/in-memory/icon-check.svg
new file mode 100644
index 0000000..4c74b92
--- /dev/null
+++ b/public/img/features/in-memory/icon-check.svg
@@ -0,0 +1,4 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
+<circle cx="12" cy="12" r="12" fill="#0070CC"/>
+<path d="M6.66666 12.3335L10.4516 16.0002L17.3333 9.3335" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+</svg>
diff --git a/public/img/features/in-memory/write-through-caching-mob.svg b/public/img/features/in-memory/write-through-caching-mob.svg
new file mode 100644
index 0000000..c2994fe
--- /dev/null
+++ b/public/img/features/in-memory/write-through-caching-mob.svg
@@ -0,0 +1,93 @@
+<svg width="614" height="311" viewBox="0 0 614 311" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M450 245.227V231H460.287V232.679H451.883V237.036H459.753V238.706H451.883V243.548H460.617V245.227H450Z" fill="#2D2D2D"/>
+<path d="M461.996 245.227L465.761 239.87L462.277 234.921H464.461L466.043 237.337C466.34 237.797 466.58 238.181 466.761 238.492C467.045 238.065 467.307 237.687 467.547 237.357L469.284 234.921H471.37L467.809 239.773L471.642 245.227H469.497L467.382 242.025L466.819 241.161L464.111 245.227H461.996Z" fill="#2D2D2D"/>
+<path d="M477.077 243.665L477.33 245.208C476.838 245.311 476.398 245.363 476.01 245.363C475.376 245.363 474.884 245.263 474.535 245.062C474.185 244.862 473.94 244.6 473.797 244.276C473.655 243.946 473.584 243.257 473.584 242.209V236.279H472.303V234.921H473.584V232.368L475.321 231.32V234.921H477.077V236.279H475.321V242.306C475.321 242.804 475.35 243.124 475.408 243.267C475.473 243.409 475.573 243.522 475.709 243.606C475.851 243.691 476.052 243.733 476.311 243.733C476.505 243.733 476.76 243.71 477.077 243.665Z" fill="#2D2D2D"/>
+<path d="M486.016 241.908L487.821 242.131C487.536 243.186 487.009 244.004 486.239 244.587C485.469 245.169 484.486 245.46 483.289 245.46C481.782 245.46 480.585 244.997 479.698 244.072C478.818 243.141 478.378 241.837 478.378 240.161C478.378 238.427 478.825 237.082 479.718 236.124C480.611 235.167 481.769 234.688 483.192 234.688C484.57 234.688 485.696 235.157 486.569 236.095C487.443 237.033 487.879 238.353 487.879 240.054C487.879 240.158 487.876 240.313 487.87 240.52H480.184C480.248 241.653 480.569 242.519 481.144 243.121C481.72 243.723 482.438 244.024 483.299 244.024C483.939 244.024 484.486 243.855 484.939 243.519C485.392 243.183 485.751 242.646 486.016 241.908ZM480.281 239.084H486.035C485.958 238.217 485.738 237.567 485.376 237.133C484.819 236.461 484.098 236.124 483.211 236.124C482.409 236.124 481.733 236.393 481.183 236.93C480.64 237.467 480.339 238.185 480.281 239.084Z" fill="#2D2D2D"/>
+<path d="M490.17 245.227V234.921H491.742V236.483C492.144 235.752 492.512 235.27 492.849 235.037C493.192 234.804 493.567 234.688 493.975 234.688C494.563 234.688 495.162 234.875 495.77 235.251L495.168 236.871C494.741 236.619 494.314 236.493 493.887 236.493C493.506 236.493 493.163 236.609 492.859 236.842C492.554 237.069 492.338 237.386 492.208 237.793C492.014 238.414 491.917 239.094 491.917 239.831V245.227H490.17Z" fill="#2D2D2D"/>
+<path d="M496.974 245.227V234.921H498.546V236.386C499.303 235.254 500.396 234.688 501.826 234.688C502.447 234.688 503.017 234.801 503.534 235.027C504.058 235.247 504.45 235.539 504.709 235.901C504.967 236.263 505.149 236.693 505.252 237.192C505.317 237.515 505.349 238.081 505.349 238.89V245.227H503.602V238.958C503.602 238.246 503.534 237.716 503.398 237.366C503.263 237.01 503.02 236.729 502.671 236.522C502.328 236.308 501.923 236.202 501.458 236.202C500.714 236.202 500.07 236.438 499.526 236.91C498.989 237.382 498.721 238.279 498.721 239.598V245.227H496.974Z" fill="#2D2D2D"/>
+<path d="M514.928 243.956C514.281 244.506 513.657 244.894 513.055 245.12C512.46 245.347 511.82 245.46 511.134 245.46C510.002 245.46 509.131 245.185 508.523 244.635C507.915 244.079 507.611 243.37 507.611 242.51C507.611 242.005 507.724 241.546 507.951 241.132C508.184 240.711 508.484 240.375 508.853 240.122C509.228 239.87 509.649 239.679 510.115 239.55C510.458 239.459 510.975 239.372 511.668 239.288C513.078 239.12 514.116 238.919 514.783 238.686C514.789 238.447 514.792 238.295 514.792 238.23C514.792 237.518 514.627 237.017 514.298 236.726C513.851 236.331 513.188 236.134 512.308 236.134C511.486 236.134 510.878 236.279 510.484 236.57C510.095 236.855 509.807 237.363 509.62 238.094L507.912 237.861C508.067 237.13 508.323 236.541 508.678 236.095C509.034 235.642 509.549 235.296 510.222 235.057C510.894 234.811 511.674 234.688 512.56 234.688C513.44 234.688 514.155 234.791 514.705 234.998C515.255 235.205 515.659 235.467 515.918 235.784C516.177 236.095 516.358 236.49 516.462 236.968C516.52 237.266 516.549 237.803 516.549 238.579V240.908C516.549 242.532 516.585 243.561 516.656 243.995C516.733 244.422 516.882 244.832 517.102 245.227H515.278C515.097 244.865 514.98 244.441 514.928 243.956ZM514.783 240.054C514.149 240.313 513.198 240.533 511.93 240.714C511.211 240.818 510.704 240.934 510.406 241.064C510.108 241.193 509.879 241.384 509.717 241.636C509.555 241.882 509.474 242.157 509.474 242.461C509.474 242.927 509.649 243.315 509.998 243.626C510.354 243.936 510.872 244.092 511.551 244.092C512.224 244.092 512.822 243.946 513.346 243.655C513.871 243.357 514.255 242.953 514.501 242.442C514.689 242.047 514.783 241.465 514.783 240.695V240.054Z" fill="#2D2D2D"/>
+<path d="M519.393 245.227V231H521.14V245.227H519.393Z" fill="#2D2D2D"/>
+<path d="M529.943 245.227V231H534.844C535.951 231 536.795 231.068 537.377 231.204C538.192 231.391 538.888 231.731 539.464 232.223C540.214 232.857 540.774 233.669 541.143 234.659C541.518 235.642 541.706 236.768 541.706 238.036C541.706 239.116 541.579 240.074 541.327 240.908C541.075 241.743 540.751 242.435 540.357 242.985C539.962 243.529 539.528 243.959 539.056 244.276C538.59 244.587 538.024 244.823 537.358 244.984C536.698 245.146 535.938 245.227 535.077 245.227H529.943ZM531.826 243.548H534.864C535.802 243.548 536.536 243.461 537.067 243.286C537.604 243.111 538.031 242.866 538.348 242.549C538.794 242.102 539.14 241.504 539.386 240.753C539.638 239.996 539.765 239.081 539.765 238.007C539.765 236.519 539.519 235.377 539.027 234.581C538.542 233.779 537.95 233.242 537.251 232.97C536.746 232.776 535.934 232.679 534.815 232.679H531.826V243.548Z" fill="#2D2D2D"/>
+<path d="M550.974 243.956C550.327 244.506 549.703 244.894 549.101 245.12C548.506 245.347 547.865 245.46 547.18 245.46C546.047 245.46 545.177 245.185 544.569 244.635C543.961 244.079 543.657 243.37 543.657 242.51C543.657 242.005 543.77 241.546 543.996 241.132C544.229 240.711 544.53 240.375 544.899 240.122C545.274 239.87 545.695 239.679 546.161 239.55C546.504 239.459 547.021 239.372 547.713 239.288C549.124 239.12 550.162 238.919 550.829 238.686C550.835 238.447 550.838 238.295 550.838 238.23C550.838 237.518 550.673 237.017 550.343 236.726C549.897 236.331 549.234 236.134 548.354 236.134C547.532 236.134 546.924 236.279 546.529 236.57C546.141 236.855 545.853 237.363 545.666 238.094L543.958 237.861C544.113 237.13 544.368 236.541 544.724 236.095C545.08 235.642 545.595 235.296 546.267 235.057C546.94 234.811 547.72 234.688 548.606 234.688C549.486 234.688 550.201 234.791 550.751 234.998C551.301 235.205 551.705 235.467 551.964 235.784C552.223 236.095 552.404 236.49 552.507 236.968C552.566 237.266 552.595 237.803 552.595 238.579V240.908C552.595 242.532 552.63 243.561 552.702 243.995C552.779 244.422 552.928 244.832 553.148 245.227H551.324C551.142 244.865 551.026 244.441 550.974 243.956ZM550.829 240.054C550.195 240.313 549.243 240.533 547.975 240.714C547.257 240.818 546.749 240.934 546.452 241.064C546.154 241.193 545.924 241.384 545.763 241.636C545.601 241.882 545.52 242.157 545.52 242.461C545.52 242.927 545.695 243.315 546.044 243.626C546.4 243.936 546.918 244.092 547.597 244.092C548.27 244.092 548.868 243.946 549.392 243.655C549.916 243.357 550.301 242.953 550.547 242.442C550.735 242.047 550.829 241.465 550.829 240.695V240.054Z" fill="#2D2D2D"/>
+<path d="M559.292 243.665L559.544 245.208C559.052 245.311 558.612 245.363 558.224 245.363C557.59 245.363 557.098 245.263 556.749 245.062C556.4 244.862 556.154 244.6 556.012 244.276C555.869 243.946 555.798 243.257 555.798 242.209V236.279H554.517V234.921H555.798V232.368L557.535 231.32V234.921H559.292V236.279H557.535V242.306C557.535 242.804 557.564 243.124 557.623 243.267C557.687 243.409 557.788 243.522 557.923 243.606C558.066 243.691 558.266 243.733 558.525 243.733C558.719 243.733 558.975 243.71 559.292 243.665Z" fill="#2D2D2D"/>
+<path d="M567.9 243.956C567.253 244.506 566.629 244.894 566.027 245.12C565.432 245.347 564.792 245.46 564.106 245.46C562.974 245.46 562.104 245.185 561.495 244.635C560.887 244.079 560.583 243.37 560.583 242.51C560.583 242.005 560.696 241.546 560.923 241.132C561.156 240.711 561.457 240.375 561.825 240.122C562.201 239.87 562.621 239.679 563.087 239.55C563.43 239.459 563.947 239.372 564.64 239.288C566.05 239.12 567.088 238.919 567.755 238.686C567.761 238.447 567.765 238.295 567.765 238.23C567.765 237.518 567.6 237.017 567.27 236.726C566.823 236.331 566.16 236.134 565.28 236.134C564.459 236.134 563.85 236.279 563.456 236.57C563.067 236.855 562.78 237.363 562.592 238.094L560.884 237.861C561.039 237.13 561.295 236.541 561.651 236.095C562.006 235.642 562.521 235.296 563.194 235.057C563.867 234.811 564.646 234.688 565.532 234.688C566.412 234.688 567.127 234.791 567.677 234.998C568.227 235.205 568.632 235.467 568.89 235.784C569.149 236.095 569.33 236.49 569.434 236.968C569.492 237.266 569.521 237.803 569.521 238.579V240.908C569.521 242.532 569.557 243.561 569.628 243.995C569.706 244.422 569.854 244.832 570.074 245.227H568.25C568.069 244.865 567.952 244.441 567.9 243.956ZM567.755 240.054C567.121 240.313 566.17 240.533 564.902 240.714C564.184 240.818 563.676 240.934 563.378 241.064C563.08 241.193 562.851 241.384 562.689 241.636C562.527 241.882 562.446 242.157 562.446 242.461C562.446 242.927 562.621 243.315 562.97 243.626C563.326 243.936 563.844 244.092 564.523 244.092C565.196 244.092 565.795 243.946 566.319 243.655C566.843 243.357 567.228 242.953 567.473 242.442C567.661 242.047 567.755 241.465 567.755 240.695V240.054Z" fill="#2D2D2D"/>
+<path d="M574.015 245.227H572.394V231H574.141V236.076C574.879 235.15 575.82 234.688 576.965 234.688C577.599 234.688 578.198 234.817 578.761 235.076C579.33 235.328 579.796 235.687 580.158 236.153C580.527 236.613 580.815 237.169 581.022 237.822C581.229 238.476 581.332 239.175 581.332 239.919C581.332 241.685 580.896 243.05 580.022 244.014C579.149 244.978 578.101 245.46 576.878 245.46C575.662 245.46 574.707 244.952 574.015 243.936V245.227ZM573.996 239.996C573.996 241.232 574.164 242.125 574.5 242.675C575.05 243.574 575.794 244.024 576.732 244.024C577.496 244.024 578.156 243.694 578.712 243.034C579.269 242.367 579.547 241.378 579.547 240.064C579.547 238.718 579.278 237.725 578.741 237.085C578.211 236.444 577.567 236.124 576.81 236.124C576.047 236.124 575.387 236.457 574.83 237.124C574.274 237.784 573.996 238.741 573.996 239.996Z" fill="#2D2D2D"/>
+<path d="M590.358 243.956C589.711 244.506 589.087 244.894 588.485 245.12C587.89 245.347 587.25 245.46 586.564 245.46C585.432 245.46 584.561 245.185 583.953 244.635C583.345 244.079 583.041 243.37 583.041 242.51C583.041 242.005 583.154 241.546 583.381 241.132C583.614 240.711 583.915 240.375 584.283 240.122C584.659 239.87 585.079 239.679 585.545 239.55C585.888 239.459 586.405 239.372 587.098 239.288C588.508 239.12 589.546 238.919 590.213 238.686C590.219 238.447 590.223 238.295 590.223 238.23C590.223 237.518 590.058 237.017 589.728 236.726C589.281 236.331 588.618 236.134 587.738 236.134C586.916 236.134 586.308 236.279 585.914 236.57C585.525 236.855 585.238 237.363 585.05 238.094L583.342 237.861C583.497 237.13 583.753 236.541 584.109 236.095C584.464 235.642 584.979 235.296 585.652 235.057C586.325 234.811 587.104 234.688 587.99 234.688C588.87 234.688 589.585 234.791 590.135 234.998C590.685 235.205 591.09 235.467 591.348 235.784C591.607 236.095 591.788 236.49 591.892 236.968C591.95 237.266 591.979 237.803 591.979 238.579V240.908C591.979 242.532 592.015 243.561 592.086 243.995C592.163 244.422 592.312 244.832 592.532 245.227H590.708C590.527 244.865 590.41 244.441 590.358 243.956ZM590.213 240.054C589.579 240.313 588.628 240.533 587.36 240.714C586.642 240.818 586.134 240.934 585.836 241.064C585.538 241.193 585.309 241.384 585.147 241.636C584.985 241.882 584.904 242.157 584.904 242.461C584.904 242.927 585.079 243.315 585.428 243.626C585.784 243.936 586.302 244.092 586.981 244.092C587.654 244.092 588.253 243.946 588.777 243.655C589.301 243.357 589.686 242.953 589.931 242.442C590.119 242.047 590.213 241.465 590.213 240.695V240.054Z" fill="#2D2D2D"/>
+<path d="M594.163 242.151L595.891 241.879C595.988 242.571 596.256 243.102 596.696 243.471C597.143 243.839 597.764 244.024 598.56 244.024C599.362 244.024 599.957 243.862 600.345 243.538C600.733 243.209 600.927 242.824 600.927 242.384C600.927 241.989 600.756 241.678 600.413 241.452C600.174 241.297 599.579 241.099 598.627 240.86C597.346 240.536 596.457 240.258 595.959 240.025C595.467 239.786 595.092 239.459 594.833 239.045C594.581 238.625 594.454 238.162 594.454 237.657C594.454 237.198 594.558 236.774 594.765 236.386C594.979 235.991 595.266 235.665 595.629 235.406C595.9 235.205 596.269 235.037 596.735 234.901C597.207 234.759 597.712 234.688 598.249 234.688C599.058 234.688 599.766 234.804 600.374 235.037C600.989 235.27 601.442 235.587 601.733 235.988C602.024 236.383 602.225 236.913 602.335 237.58L600.627 237.813C600.549 237.282 600.323 236.868 599.947 236.57C599.579 236.273 599.054 236.124 598.375 236.124C597.573 236.124 597 236.257 596.657 236.522C596.315 236.787 596.143 237.098 596.143 237.454C596.143 237.68 596.214 237.884 596.357 238.065C596.499 238.253 596.722 238.408 597.026 238.531C597.201 238.596 597.715 238.744 598.569 238.977C599.805 239.307 600.665 239.579 601.151 239.792C601.642 239.999 602.027 240.304 602.306 240.705C602.584 241.106 602.723 241.604 602.723 242.199C602.723 242.782 602.551 243.331 602.208 243.849C601.872 244.36 601.384 244.758 600.743 245.043C600.103 245.321 599.378 245.46 598.569 245.46C597.23 245.46 596.208 245.182 595.503 244.625C594.804 244.069 594.357 243.244 594.163 242.151Z" fill="#2D2D2D"/>
+<path d="M612.021 241.908L613.826 242.131C613.541 243.186 613.014 244.004 612.244 244.587C611.474 245.169 610.49 245.46 609.294 245.46C607.786 245.46 606.589 244.997 605.703 244.072C604.823 243.141 604.383 241.837 604.383 240.161C604.383 238.427 604.829 237.082 605.722 236.124C606.615 235.167 607.773 234.688 609.197 234.688C610.575 234.688 611.7 235.157 612.574 236.095C613.447 237.033 613.884 238.353 613.884 240.054C613.884 240.158 613.881 240.313 613.874 240.52H606.188C606.253 241.653 606.573 242.519 607.149 243.121C607.725 243.723 608.443 244.024 609.303 244.024C609.944 244.024 610.49 243.855 610.943 243.519C611.396 243.183 611.755 242.646 612.021 241.908ZM606.285 239.084H612.04C611.962 238.217 611.742 237.567 611.38 237.133C610.824 236.461 610.102 236.124 609.216 236.124C608.414 236.124 607.738 236.393 607.188 236.93C606.644 237.467 606.343 238.185 606.285 239.084Z" fill="#2D2D2D"/>
+<path d="M484.467 202.334V107.67C484.467 107.67 495.865 117.186 531.291 117.186C566.718 117.186 579.348 106.582 579.348 106.582V202.334C579.348 202.334 574.247 213.962 531.291 214.409C488.336 214.856 484.467 202.334 484.467 202.334Z" fill="white"/>
+<path d="M580.451 104.682C580.451 113.13 558.954 119.977 531.871 119.977C504.788 119.977 483.29 113.13 483.29 104.682C483.29 96.2353 504.788 89.3875 531.871 89.3875C558.954 89.3875 580.451 96.2353 580.451 104.682Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M575.464 109.042C577.684 107.377 578.448 105.883 578.448 104.682C578.448 103.482 577.684 101.988 575.464 100.323C573.277 98.6818 569.98 97.1181 565.712 95.7694C557.198 93.0794 545.268 91.383 531.871 91.383C518.474 91.383 506.543 93.0794 498.03 95.7694C493.762 97.1181 490.465 98.6818 488.278 100.323C486.058 101.988 485.293 103.482 485.293 104.682C485.293 105.883 486.058 107.377 488.278 109.042C490.465 110.683 493.762 112.247 498.03 113.596C506.543 116.286 518.474 117.982 531.871 117.982C545.268 117.982 557.198 116.286 565.712 113.596C569.98 112.247 573.277 110.683 575.464 109.042ZM531.871 119.977C558.954 119.977 580.451 113.13 580.451 104.682C580.451 96.2353 558.954 89.3875 531.871 89.3875C504.788 89.3875 483.29 96.2353 483.29 104.682C483.29 113.13 504.788 119.977 531.871 119.977Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M483.217 199.953L483.217 105.502L485.22 105.502L485.22 199.953L483.217 199.953Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M578.533 200.052L578.643 104.116L580.646 104.118L580.536 200.054L578.533 200.052Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M498.471 209.387C506.974 212.009 518.782 213.645 531.869 213.645C544.955 213.645 556.763 212.009 565.266 209.387C569.524 208.075 572.896 206.532 575.183 204.866C577.49 203.184 578.517 201.512 578.517 199.954H580.52C580.52 202.451 578.88 204.644 576.365 206.477C573.829 208.325 570.223 209.948 565.858 211.294C557.115 213.989 545.098 215.641 531.869 215.641C518.639 215.641 506.622 213.989 497.879 211.294C493.514 209.948 489.908 208.325 487.372 206.477C484.857 204.644 483.217 202.451 483.217 199.954H485.22C485.22 201.512 486.247 203.184 488.555 204.866C490.841 206.532 494.213 208.075 498.471 209.387Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M498.471 145.274C506.974 147.895 518.782 149.532 531.869 149.532C544.955 149.532 556.763 147.895 565.266 145.274C569.524 143.962 572.896 142.419 575.183 140.753C577.49 139.071 578.517 137.399 578.517 135.841H580.52C580.52 138.338 578.88 140.53 576.365 142.364C573.829 144.212 570.223 145.835 565.858 147.181C557.115 149.876 545.098 151.527 531.869 151.527C518.639 151.527 506.622 149.876 497.879 147.181C493.514 145.835 489.908 144.212 487.372 142.364C484.857 140.53 483.217 138.338 483.217 135.841H485.22C485.22 137.399 486.247 139.071 488.555 140.753C490.841 142.419 494.213 143.962 498.471 145.274Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M498.471 177.552C506.974 180.173 518.782 181.81 531.869 181.81C544.955 181.81 556.763 180.173 565.266 177.552C569.524 176.239 572.896 174.697 575.183 173.031C577.49 171.349 578.517 169.677 578.517 168.118H580.52C580.52 170.616 578.88 172.808 576.365 174.641C573.829 176.49 570.223 178.112 565.858 179.458C557.115 182.153 545.098 183.805 531.869 183.805C518.639 183.805 506.622 182.153 497.879 179.458C493.514 178.112 489.908 176.49 487.372 174.641C484.857 172.808 483.217 170.616 483.217 168.118H485.22C485.22 169.677 486.247 171.349 488.555 173.031C490.841 174.697 494.213 176.239 498.471 177.552Z" fill="#ED1C24"/>
+<path d="M59.5049 168.541L118.395 184.05L118.395 99.7597L59.5049 84.2503L1.64818 102.172L1.64819 186.113L59.5049 168.541Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M0.646721 187.46L0.646706 101.438L59.4825 83.2124L119.396 98.9914L119.396 185.346L59.5244 169.578L0.646721 187.46ZM2.64966 184.765L59.4854 167.504L117.393 182.754L117.393 100.528L59.5273 85.2882L2.64964 102.907L2.64966 184.765Z" fill="#2D2D2D"/>
+<path d="M60.5383 118.322L1.64832 102.813L1.64836 205.597L60.5383 221.107L118.395 203.185L118.395 100.75L60.5383 118.322Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M119.396 99.4029L119.397 203.919L60.5607 222.145L0.646892 206.366L0.646851 101.517L60.5188 117.285L119.396 99.4029ZM117.394 102.097L60.5578 119.359L2.64979 104.108L2.64983 204.829L60.5159 220.069L117.394 202.45L117.394 102.097Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M58.675 219.388L58.6748 118.156L60.6777 118.156L60.6779 219.388L58.675 219.388Z" fill="#2D2D2D"/>
+<rect x="233.546" y="87.7338" width="134.002" height="133.359" rx="66.6793" fill="#ED1C24"/>
+<path d="M288.54 130.769C288.54 130.769 257.824 149.377 286.772 167.853C292.34 171.452 312.538 181.458 311.963 190.719C311.963 190.719 324.205 172.725 306.306 161.402C287.921 149.816 283.325 137.44 288.54 130.769Z" fill="white"/>
+<path d="M277.843 166.317C277.843 166.317 266.883 182.819 288.45 186.198C290.571 186.461 306.172 188.085 310.238 193.176C310.238 193.176 309.885 184.399 297.157 179.22C284.472 174.041 279.257 172.769 277.843 166.317Z" fill="white"/>
+<path d="M320.272 148.982C307.102 135.289 303.433 126.819 309.09 115.847C309.09 115.847 269.801 130.857 308.604 157.496C322.482 167.02 320.183 176.762 320.183 177.114C322.349 174.875 333.442 162.675 320.272 148.982Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M295.664 240.208C296.055 239.818 296.689 239.818 297.08 240.208L303.453 246.557C303.845 246.947 303.845 247.579 303.453 247.968C303.062 248.358 302.428 248.358 302.037 247.968L297.373 243.322V279.162C297.373 296.245 283.474 310.093 266.328 310.093H86.9747C69.8288 310.093 55.9292 296.245 55.9292 279.162V272.731C55.9292 272.18 56.3776 271.734 56.9307 271.734C57.4838 271.734 57.9321 272.18 57.9321 272.731V279.162C57.9321 295.142 70.935 308.097 86.9747 308.097H266.328C282.368 308.097 295.37 295.142 295.37 279.162V243.322L290.707 247.968C290.316 248.358 289.682 248.358 289.291 247.968C288.899 247.579 288.899 246.947 289.291 246.557L295.664 240.208Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M56.9307 73.7915C57.4838 73.7916 57.9321 73.3448 57.9321 72.7938L57.9321 31.0228C57.9321 15.0426 70.935 2.08804 86.9747 2.08804L266.328 2.08809C282.368 2.08809 295.371 15.0426 295.371 31.0228L295.37 66.8633L290.707 62.2169C290.316 61.8273 289.682 61.8273 289.291 62.2169C288.899 62.6065 288.899 63.2383 289.291 63.6279L295.664 69.9776C296.055 70.3672 296.689 70.3672 297.08 69.9776L303.453 63.6279C303.845 63.2383 303.845 62.6065 303.453 62.2169C303.062 61.8273 302.428 61.8273 302.037 62.2169L297.373 66.8633L297.373 31.0228C297.373 13.9405 283.474 0.0925934 266.328 0.0925892L86.9747 0.0925446C69.8288 0.0925404 55.9292 13.9405 55.9292 31.0228L55.9292 72.7938C55.9292 73.3448 56.3776 73.7915 56.9307 73.7915Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M212.466 152.477L218.839 158.827C219.23 159.217 219.23 159.848 218.839 160.238L212.466 166.588C212.074 166.977 211.44 166.977 211.049 166.588C210.658 166.198 210.658 165.566 211.049 165.177L215.713 160.53L139.861 160.53C139.308 160.53 138.859 160.084 138.859 159.533C138.859 158.982 139.308 158.535 139.861 158.535L215.713 158.535L211.049 153.888C210.658 153.499 210.658 152.867 211.049 152.477C211.44 152.088 212.074 152.088 212.466 152.477Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M449.011 143.822L455.384 150.171C455.775 150.561 455.775 151.193 455.384 151.582L449.011 157.932C448.62 158.322 447.986 158.322 447.595 157.932C447.204 157.542 447.204 156.911 447.595 156.521L452.258 151.875H389.013C388.46 151.875 388.012 151.428 388.012 150.877C388.012 150.326 388.46 149.879 389.013 149.879H452.258L447.595 145.233C447.204 144.843 447.204 144.211 447.595 143.822C447.986 143.432 448.62 143.432 449.011 143.822Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M394.678 180.466L388.305 174.116C387.914 173.726 387.914 173.094 388.305 172.705L394.678 166.355C395.069 165.966 395.703 165.966 396.094 166.355C396.485 166.745 396.485 167.377 396.094 167.766L391.431 172.413L454.676 172.413C455.229 172.413 455.677 172.859 455.677 173.41C455.677 173.961 455.229 174.408 454.676 174.408L391.431 174.408L396.094 179.054C396.485 179.444 396.485 180.076 396.094 180.466C395.703 180.855 395.069 180.855 394.678 180.466Z" fill="black"/>
+<path d="M152.889 141L154.679 140.844C154.764 141.559 154.959 142.147 155.266 142.608C155.579 143.063 156.061 143.433 156.713 143.719C157.365 143.998 158.099 144.138 158.914 144.138C159.638 144.138 160.277 144.031 160.831 143.816C161.385 143.602 161.796 143.31 162.063 142.939C162.337 142.563 162.474 142.153 162.474 141.712C162.474 141.263 162.343 140.874 162.083 140.542C161.822 140.205 161.391 139.922 160.792 139.695C160.407 139.545 159.556 139.315 158.239 139.003C156.922 138.685 155.999 138.386 155.471 138.106C154.787 137.749 154.275 137.307 153.936 136.781C153.603 136.249 153.437 135.654 153.437 134.998C153.437 134.277 153.642 133.605 154.053 132.981C154.464 132.351 155.064 131.874 155.853 131.549C156.642 131.224 157.519 131.062 158.484 131.062C159.546 131.062 160.482 131.234 161.29 131.578C162.105 131.916 162.731 132.416 163.168 133.079C163.605 133.741 163.84 134.492 163.872 135.33L162.053 135.466C161.955 134.563 161.623 133.881 161.056 133.42C160.495 132.959 159.664 132.728 158.562 132.728C157.414 132.728 156.576 132.939 156.048 133.361C155.527 133.777 155.266 134.28 155.266 134.872C155.266 135.385 155.452 135.807 155.823 136.138C156.189 136.47 157.14 136.811 158.679 137.161C160.224 137.506 161.284 137.808 161.858 138.067C162.692 138.451 163.308 138.938 163.706 139.529C164.104 140.114 164.303 140.789 164.303 141.556C164.303 142.316 164.084 143.033 163.647 143.709C163.211 144.378 162.581 144.901 161.76 145.278C160.945 145.648 160.026 145.833 159.002 145.833C157.704 145.833 156.616 145.645 155.735 145.268C154.862 144.891 154.174 144.326 153.672 143.573C153.176 142.813 152.915 141.955 152.889 141Z" fill="#9C9C9C"/>
+<path d="M177.96 144.06C178.84 144.664 179.652 145.106 180.395 145.385L179.838 146.7C178.808 146.33 177.781 145.745 176.757 144.946C175.694 145.538 174.521 145.833 173.236 145.833C171.939 145.833 170.762 145.521 169.706 144.898C168.65 144.274 167.835 143.397 167.261 142.267C166.694 141.137 166.41 139.864 166.41 138.447C166.41 137.038 166.697 135.755 167.271 134.599C167.844 133.443 168.659 132.562 169.716 131.958C170.778 131.354 171.965 131.052 173.276 131.052C174.599 131.052 175.792 131.367 176.855 131.997C177.918 132.621 178.726 133.498 179.28 134.628C179.841 135.752 180.122 137.022 180.122 138.438C180.122 139.613 179.942 140.672 179.584 141.614C179.225 142.55 178.684 143.365 177.96 144.06ZM173.784 141.643C174.879 141.949 175.782 142.403 176.493 143.008C177.608 141.994 178.166 140.471 178.166 138.438C178.166 137.281 177.967 136.271 177.569 135.407C177.178 134.544 176.601 133.874 175.838 133.4C175.082 132.92 174.231 132.679 173.285 132.679C171.871 132.679 170.697 133.163 169.765 134.131C168.832 135.092 168.366 136.531 168.366 138.447C168.366 140.305 168.826 141.731 169.745 142.725C170.671 143.719 171.851 144.216 173.285 144.216C173.963 144.216 174.602 144.089 175.202 143.836C174.609 143.452 173.983 143.18 173.324 143.017L173.784 141.643Z" fill="#9C9C9C"/>
+<path d="M182.806 145.59V131.305H184.703V143.904H191.764V145.59H182.806Z" fill="#9C9C9C"/>
+<path d="M92.1603 35.4365L94.0577 35.9139C93.6599 37.4664 92.9427 38.6519 91.9061 39.4703C90.8759 40.2823 89.6143 40.6883 88.1212 40.6883C86.576 40.6883 85.3176 40.3765 84.3461 39.7529C83.3812 39.1228 82.6444 38.2134 82.1359 37.0247C81.6338 35.836 81.3828 34.5595 81.3828 33.1954C81.3828 31.7079 81.6664 30.412 82.2337 29.3077C82.8074 28.1969 83.6192 27.3557 84.6689 26.7841C85.7251 26.206 86.8857 25.9169 88.1506 25.9169C89.5849 25.9169 90.7911 26.2807 91.7691 27.0082C92.7471 27.7357 93.4285 28.7588 93.8132 30.0775L91.9452 30.5159C91.6127 29.4766 91.1302 28.7199 90.4977 28.2457C89.8653 27.7715 89.0699 27.5344 88.1114 27.5344C87.0096 27.5344 86.087 27.7975 85.3437 28.3236C84.6069 28.8498 84.0886 29.5578 83.7887 30.4477C83.4888 31.3311 83.3388 32.2438 83.3388 33.1857C83.3388 34.4004 83.5148 35.4625 83.8669 36.3719C84.2255 37.2748 84.7797 37.9503 85.5295 38.3985C86.2793 38.8467 87.0911 39.0708 87.9647 39.0708C89.0275 39.0708 89.9272 38.7655 90.664 38.1549C91.4008 37.5443 91.8995 36.6382 92.1603 35.4365Z" fill="#9C9C9C"/>
+<path d="M95.7249 35.2708C95.7249 33.3546 96.2596 31.9353 97.3289 31.0129C98.2221 30.2464 99.3109 29.8631 100.595 29.8631C102.023 29.8631 103.19 30.3308 104.097 31.2662C105.003 32.1951 105.456 33.4812 105.456 35.1247C105.456 36.4563 105.254 37.5054 104.85 38.2719C104.452 39.0319 103.868 39.623 103.099 40.0452C102.336 40.4674 101.502 40.6785 100.595 40.6785C99.1414 40.6785 97.9646 40.2141 97.0648 39.2852C96.1716 38.3563 95.7249 37.0182 95.7249 35.2708ZM97.5342 35.2708C97.5342 36.596 97.8244 37.5898 98.4047 38.2524C98.9849 38.9085 99.7152 39.2365 100.595 39.2365C101.469 39.2365 102.196 38.9052 102.776 38.2426C103.357 37.5801 103.647 36.57 103.647 35.2124C103.647 33.9327 103.353 32.9648 102.767 32.3088C102.186 31.6462 101.463 31.3149 100.595 31.3149C99.7152 31.3149 98.9849 31.6429 98.4047 32.299C97.8244 32.9551 97.5342 33.9457 97.5342 35.2708Z" fill="#9C9C9C"/>
+<path d="M107.73 40.4447V30.097H109.304V31.5488C109.63 31.0421 110.064 30.6361 110.605 30.3308C111.146 30.019 111.762 29.8631 112.453 29.8631C113.223 29.8631 113.852 30.0223 114.341 30.3405C114.836 30.6588 115.185 31.1038 115.387 31.6754C116.209 30.4672 117.278 29.8631 118.595 29.8631C119.625 29.8631 120.418 30.1489 120.972 30.7205C121.526 31.2857 121.803 32.1594 121.803 33.3416V40.4447H120.052V33.9262C120.052 33.2247 119.994 32.7212 119.876 32.4159C119.766 32.1041 119.56 31.8541 119.26 31.6657C118.96 31.4773 118.608 31.3831 118.204 31.3831C117.474 31.3831 116.867 31.6267 116.385 32.1139C115.902 32.5946 115.661 33.3676 115.661 34.4329V40.4447H113.901V33.7216C113.901 32.9421 113.757 32.3575 113.471 31.9677C113.184 31.578 112.714 31.3831 112.062 31.3831C111.567 31.3831 111.107 31.513 110.683 31.7729C110.266 32.0327 109.963 32.4127 109.774 32.9129C109.585 33.413 109.49 34.1341 109.49 35.076V40.4447H107.73Z" fill="#9C9C9C"/>
+<path d="M124.615 44.4104V30.097H126.218V31.4416C126.597 30.9154 127.024 30.5224 127.5 30.2626C127.976 29.9963 128.553 29.8631 129.231 29.8631C130.117 29.8631 130.9 30.0905 131.578 30.5452C132.256 30.9999 132.768 31.6429 133.113 32.4744C133.459 33.2994 133.632 34.2055 133.632 35.1929C133.632 36.2517 133.439 37.2066 133.055 38.0575C132.677 38.902 132.122 39.5515 131.392 40.0062C130.668 40.4544 129.906 40.6785 129.104 40.6785C128.517 40.6785 127.989 40.5551 127.519 40.3083C127.056 40.0615 126.675 39.7497 126.375 39.3729V44.4104H124.615ZM126.209 35.3293C126.209 36.6609 126.479 37.645 127.02 38.2816C127.562 38.9182 128.217 39.2365 128.986 39.2365C129.769 39.2365 130.437 38.9085 130.991 38.2524C131.552 37.5898 131.832 36.5667 131.832 35.1831C131.832 33.8645 131.558 32.8771 131.011 32.2211C130.47 31.565 129.821 31.237 129.064 31.237C128.315 31.237 127.65 31.5877 127.069 32.2893C126.496 32.9843 126.209 33.9977 126.209 35.3293Z" fill="#9C9C9C"/>
+<path d="M142.771 40.4447V38.9247C141.962 40.0939 140.864 40.6785 139.475 40.6785C138.862 40.6785 138.288 40.5616 137.754 40.3278C137.226 40.0939 136.831 39.8016 136.57 39.4509C136.316 39.0936 136.137 38.6584 136.033 38.1452C135.961 37.8009 135.925 37.2553 135.925 36.5083V30.097H137.685V35.836C137.685 36.7519 137.721 37.369 137.793 37.6873C137.904 38.1484 138.138 38.5122 138.497 38.7785C138.856 39.0384 139.299 39.1683 139.827 39.1683C140.355 39.1683 140.851 39.0351 141.314 38.7688C141.777 38.496 142.103 38.129 142.292 37.6678C142.487 37.2001 142.585 36.5245 142.585 35.6411V30.097H144.345V40.4447H142.771Z" fill="#9C9C9C"/>
+<path d="M151.157 38.876L151.411 40.4252C150.916 40.5291 150.472 40.5811 150.081 40.5811C149.442 40.5811 148.947 40.4804 148.595 40.2791C148.243 40.0777 147.995 39.8146 147.851 39.4898C147.708 39.1585 147.636 38.4667 147.636 37.4144V31.4611H146.345V30.097H147.636V27.5344L149.387 26.4821V30.097H151.157V31.4611H149.387V37.5119C149.387 38.012 149.416 38.3336 149.475 38.4765C149.54 38.6194 149.641 38.7331 149.778 38.8175C149.921 38.902 150.124 38.9442 150.384 38.9442C150.58 38.9442 150.838 38.9214 151.157 38.876Z" fill="#9C9C9C"/>
+<path d="M160.198 37.1124L162.017 37.3365C161.731 38.3953 161.199 39.217 160.423 39.8016C159.647 40.3862 158.656 40.6785 157.45 40.6785C155.931 40.6785 154.725 40.2141 153.832 39.2852C152.945 38.3498 152.502 37.0409 152.502 35.3585C152.502 33.6177 152.951 32.2665 153.851 31.3052C154.751 30.3438 155.918 29.8631 157.352 29.8631C158.741 29.8631 159.876 30.334 160.756 31.2759C161.636 32.2178 162.076 33.543 162.076 35.2513C162.076 35.3553 162.073 35.5112 162.066 35.719H154.321C154.386 36.8558 154.709 37.7262 155.289 38.3303C155.869 38.9344 156.593 39.2365 157.46 39.2365C158.105 39.2365 158.656 39.0676 159.113 38.7298C159.569 38.392 159.931 37.8529 160.198 37.1124ZM154.418 34.277H160.218C160.14 33.4065 159.918 32.7537 159.553 32.3185C158.992 31.6429 158.265 31.3052 157.372 31.3052C156.564 31.3052 155.882 31.5747 155.328 32.1139C154.78 32.653 154.477 33.3741 154.418 34.277Z" fill="#9C9C9C"/>
+<path d="M178.408 38.7591C177.828 39.4021 177.196 39.8861 176.511 40.2109C175.826 40.5291 175.086 40.6883 174.291 40.6883C172.824 40.6883 171.66 40.1946 170.8 39.2073C170.102 38.4018 169.753 37.5021 169.753 36.5083C169.753 35.6248 170.037 34.8291 170.604 34.1211C171.178 33.4065 172.032 32.7797 173.166 32.2406C172.521 31.5 172.09 30.8992 171.875 30.438C171.66 29.9768 171.553 29.5318 171.553 29.1031C171.553 28.2457 171.888 27.5019 172.56 26.8718C173.238 26.2352 174.089 25.9169 175.112 25.9169C176.09 25.9169 176.889 26.2157 177.509 26.8133C178.134 27.411 178.447 28.1287 178.447 28.9667C178.447 30.3243 177.544 31.4838 175.738 32.4452L178.311 35.7093C178.604 35.1377 178.832 34.4751 178.995 33.7216L180.824 34.1113C180.511 35.3585 180.087 36.3849 179.553 37.1903C180.211 38.0608 180.958 38.7915 181.792 39.3826L180.609 40.776C179.898 40.3213 179.165 39.649 178.408 38.7591ZM174.829 31.3149C175.592 30.8667 176.084 30.4737 176.306 30.1359C176.534 29.7981 176.648 29.4246 176.648 29.0154C176.648 28.5282 176.491 28.132 176.178 27.8267C175.872 27.5149 175.487 27.359 175.024 27.359C174.549 27.359 174.151 27.5116 173.831 27.8169C173.518 28.1222 173.362 28.4957 173.362 28.9375C173.362 29.1583 173.417 29.3922 173.528 29.639C173.645 29.8793 173.818 30.1359 174.046 30.4088L174.829 31.3149ZM177.303 37.3755L174.076 33.3903C173.124 33.9554 172.482 34.4816 172.149 34.9688C171.817 35.4495 171.65 35.9269 171.65 36.4011C171.65 36.9792 171.882 37.5801 172.345 38.2037C172.808 38.8273 173.463 39.1391 174.311 39.1391C174.839 39.1391 175.383 38.9767 175.944 38.6519C176.511 38.3206 176.964 37.8951 177.303 37.3755Z" fill="#9C9C9C"/>
+<path d="M189.714 40.4447V26.1605H192.569L195.963 36.2744C196.276 37.2163 196.504 37.9211 196.648 38.3888C196.811 37.8691 197.065 37.1059 197.41 36.099L200.843 26.1605H203.396V40.4447H201.567V28.4893L197.401 40.4447H195.689L191.542 28.2846V40.4447H189.714Z" fill="#9C9C9C"/>
+<path d="M213.21 39.1683C212.558 39.7204 211.929 40.1102 211.322 40.3375C210.722 40.5649 210.077 40.6785 209.386 40.6785C208.245 40.6785 207.368 40.4025 206.755 39.8503C206.142 39.2917 205.836 38.5804 205.836 37.7165C205.836 37.2098 205.95 36.7486 206.178 36.3329C206.413 35.9107 206.716 35.5729 207.088 35.3195C207.466 35.0662 207.889 34.8746 208.359 34.7447C208.704 34.6537 209.226 34.566 209.924 34.4816C211.345 34.3127 212.391 34.1113 213.063 33.8775C213.07 33.6371 213.073 33.4845 213.073 33.4195C213.073 32.705 212.907 32.2016 212.574 31.9093C212.124 31.513 211.456 31.3149 210.569 31.3149C209.741 31.3149 209.128 31.4611 208.731 31.7534C208.339 32.0392 208.049 32.5491 207.86 33.2831L206.139 33.0493C206.295 32.3153 206.553 31.7241 206.911 31.2759C207.27 30.8212 207.788 30.4737 208.466 30.2334C209.145 29.9865 209.93 29.8631 210.823 29.8631C211.71 29.8631 212.431 29.967 212.985 30.1749C213.539 30.3828 213.947 30.6458 214.207 30.9641C214.468 31.2759 214.651 31.6722 214.755 32.1529C214.814 32.4517 214.843 32.9908 214.843 33.7703V36.1088C214.843 37.7392 214.879 38.772 214.951 39.2073C215.029 39.636 215.179 40.0485 215.4 40.4447H213.562C213.379 40.0809 213.262 39.6555 213.21 39.1683ZM213.063 35.2513C212.424 35.5112 211.466 35.732 210.188 35.9139C209.464 36.0178 208.952 36.1348 208.652 36.2647C208.352 36.3946 208.121 36.5862 207.958 36.8396C207.795 37.0864 207.713 37.3625 207.713 37.6678C207.713 38.1355 207.889 38.5252 208.242 38.837C208.6 39.1488 209.122 39.3047 209.806 39.3047C210.484 39.3047 211.088 39.1585 211.616 38.8662C212.144 38.5674 212.532 38.1614 212.779 37.6483C212.969 37.252 213.063 36.6674 213.063 35.8944V35.2513Z" fill="#9C9C9C"/>
+<path d="M224.559 36.6544L226.29 36.8785C226.101 38.0673 225.615 38.9994 224.833 39.675C224.057 40.344 223.102 40.6785 221.968 40.6785C220.546 40.6785 219.402 40.2174 218.535 39.295C217.674 38.3661 217.244 37.0377 217.244 35.3098C217.244 34.1925 217.43 33.2149 217.801 32.377C218.173 31.539 218.737 30.9122 219.493 30.4964C220.256 30.0742 221.084 29.8631 221.977 29.8631C223.105 29.8631 224.028 30.1489 224.745 30.7205C225.462 31.2857 225.922 32.0912 226.124 33.137L224.413 33.4C224.25 32.705 223.959 32.1821 223.542 31.8313C223.131 31.4806 222.633 31.3052 222.046 31.3052C221.159 31.3052 220.439 31.6235 219.884 32.26C219.33 32.8901 219.053 33.8905 219.053 35.2611C219.053 36.6512 219.32 37.6613 219.855 38.2914C220.39 38.9214 221.087 39.2365 221.948 39.2365C222.639 39.2365 223.216 39.0254 223.679 38.6032C224.142 38.1809 224.435 37.5314 224.559 36.6544Z" fill="#9C9C9C"/>
+<path d="M227.997 40.4447V26.1605H229.757V31.2857C230.579 30.3373 231.615 29.8631 232.867 29.8631C233.636 29.8631 234.305 30.0158 234.872 30.3211C235.439 30.6199 235.843 31.0356 236.085 31.5682C236.332 32.1009 236.456 32.8739 236.456 33.8872V40.4447H234.696V33.8872C234.696 33.0103 234.504 32.3737 234.119 31.9775C233.741 31.5747 233.203 31.3734 232.505 31.3734C231.984 31.3734 231.491 31.5098 231.028 31.7826C230.572 32.0489 230.246 32.4127 230.05 32.8739C229.855 33.3351 229.757 33.9717 229.757 34.7836V40.4447H227.997Z" fill="#9C9C9C"/>
+<path d="M239.356 28.1775V26.1605H241.116V28.1775H239.356ZM239.356 40.4447V30.097H241.116V40.4447H239.356Z" fill="#9C9C9C"/>
+<path d="M244.006 40.4447V30.097H245.59V31.5682C246.353 30.4315 247.455 29.8631 248.896 29.8631C249.522 29.8631 250.096 29.9768 250.617 30.2041C251.145 30.425 251.54 30.7173 251.801 31.0811C252.062 31.4448 252.244 31.8768 252.348 32.377C252.414 32.7018 252.446 33.2701 252.446 34.0821V40.4447H250.686V34.1503C250.686 33.4358 250.617 32.9031 250.48 32.5524C250.344 32.1951 250.099 31.9125 249.747 31.7047C249.401 31.4903 248.994 31.3831 248.524 31.3831C247.775 31.3831 247.126 31.6202 246.578 32.0944C246.037 32.5686 245.766 33.4683 245.766 34.7934V40.4447H244.006Z" fill="#9C9C9C"/>
+<path d="M262.466 37.1124L264.285 37.3365C263.998 38.3953 263.466 39.217 262.691 39.8016C261.915 40.3862 260.924 40.6785 259.717 40.6785C258.198 40.6785 256.992 40.2141 256.099 39.2852C255.212 38.3498 254.769 37.0409 254.769 35.3585C254.769 33.6177 255.219 32.2665 256.118 31.3052C257.018 30.3438 258.185 29.8631 259.62 29.8631C261.008 29.8631 262.143 30.334 263.023 31.2759C263.903 32.2178 264.343 33.543 264.343 35.2513C264.343 35.3553 264.34 35.5112 264.334 35.719H256.588C256.653 36.8558 256.976 37.7262 257.556 38.3303C258.136 38.9344 258.86 39.2365 259.727 39.2365C260.373 39.2365 260.924 39.0676 261.38 38.7298C261.836 38.392 262.198 37.8529 262.466 37.1124ZM256.686 34.277H262.485C262.407 33.4065 262.185 32.7537 261.82 32.3185C261.259 31.6429 260.532 31.3052 259.639 31.3052C258.831 31.3052 258.149 31.5747 257.595 32.1139C257.048 32.653 256.744 33.3741 256.686 34.277Z" fill="#9C9C9C"/>
+<path d="M134.639 63.3929V49.1087H136.536V61.7073H143.597V63.3929H134.639Z" fill="#9C9C9C"/>
+<path d="M152.951 60.0606L154.771 60.2847C154.484 61.3435 153.952 62.1652 153.176 62.7498C152.401 63.3345 151.409 63.6268 150.203 63.6268C148.684 63.6268 147.478 63.1623 146.585 62.2334C145.698 61.298 145.255 59.9891 145.255 58.3067C145.255 56.5659 145.704 55.2148 146.604 54.2534C147.504 53.292 148.671 52.8113 150.105 52.8113C151.494 52.8113 152.629 53.2823 153.509 54.2242C154.389 55.166 154.829 56.4912 154.829 58.1996C154.829 58.3035 154.826 58.4594 154.819 58.6673H147.074C147.139 59.804 147.462 60.6745 148.042 61.2786C148.622 61.8827 149.346 62.1847 150.213 62.1847C150.859 62.1847 151.409 62.0158 151.866 61.678C152.322 61.3403 152.684 60.8011 152.951 60.0606ZM147.171 57.2252H152.971C152.893 56.3548 152.671 55.7019 152.306 55.2667C151.745 54.5912 151.018 54.2534 150.125 54.2534C149.317 54.2534 148.635 54.523 148.081 55.0621C147.533 55.6013 147.23 56.3223 147.171 57.2252Z" fill="#9C9C9C"/>
+<path d="M163.968 62.1165C163.316 62.6687 162.687 63.0584 162.081 63.2857C161.481 63.5131 160.836 63.6268 160.144 63.6268C159.003 63.6268 158.126 63.3507 157.514 62.7986C156.901 62.2399 156.594 61.5286 156.594 60.6647C156.594 60.158 156.708 59.6968 156.937 59.2811C157.171 58.8589 157.475 58.5211 157.846 58.2678C158.224 58.0144 158.648 57.8228 159.118 57.6929C159.463 57.602 159.985 57.5143 160.682 57.4298C162.104 57.2609 163.15 57.0596 163.822 56.8257C163.828 56.5854 163.831 56.4327 163.831 56.3678C163.831 55.6532 163.665 55.1498 163.333 54.8575C162.883 54.4613 162.215 54.2631 161.328 54.2631C160.5 54.2631 159.887 54.4093 159.489 54.7016C159.098 54.9874 158.808 55.4973 158.619 56.2314L156.897 55.9975C157.054 55.2635 157.312 54.6724 157.67 54.2242C158.029 53.7695 158.547 53.4219 159.225 53.1816C159.903 52.9348 160.689 52.8113 161.582 52.8113C162.469 52.8113 163.189 52.9153 163.743 53.1231C164.298 53.331 164.705 53.5941 164.966 53.9124C165.227 54.2242 165.409 54.6204 165.514 55.1011C165.572 55.3999 165.602 55.939 165.602 56.7185V59.057C165.602 60.6874 165.638 61.7203 165.709 62.1555C165.787 62.5842 165.937 62.9967 166.159 63.3929H164.32C164.138 63.0292 164.021 62.6037 163.968 62.1165ZM163.822 58.1996C163.183 58.4594 162.224 58.6803 160.946 58.8621C160.223 58.9661 159.711 59.083 159.411 59.2129C159.111 59.3428 158.88 59.5344 158.717 59.7878C158.554 60.0346 158.472 60.3107 158.472 60.616C158.472 61.0837 158.648 61.4734 159 61.7852C159.359 62.097 159.88 62.2529 160.565 62.2529C161.243 62.2529 161.846 62.1068 162.374 61.8145C162.902 61.5157 163.29 61.1097 163.538 60.5965C163.727 60.2003 163.822 59.6156 163.822 58.8426V58.1996Z" fill="#9C9C9C"/>
+<path d="M168.521 63.3929V53.0452H170.105V54.6139C170.509 53.8799 170.881 53.396 171.22 53.1621C171.566 52.9283 171.944 52.8113 172.355 52.8113C172.948 52.8113 173.551 52.9997 174.164 53.3765L173.557 55.0037C173.127 54.7503 172.697 54.6236 172.267 54.6236C171.882 54.6236 171.536 54.7406 171.23 54.9744C170.923 55.2018 170.705 55.5201 170.575 55.9293C170.379 56.5529 170.281 57.2349 170.281 57.9755V63.3929H168.521Z" fill="#9C9C9C"/>
+<path d="M175.411 63.3929V53.0452H176.995V54.5165C177.758 53.3797 178.86 52.8113 180.301 52.8113C180.926 52.8113 181.5 52.925 182.022 53.1524C182.55 53.3732 182.944 53.6655 183.205 54.0293C183.466 54.3931 183.649 54.825 183.753 55.3252C183.818 55.65 183.851 56.2184 183.851 57.0303V63.3929H182.09V57.0985C182.09 56.384 182.022 55.8513 181.885 55.5006C181.748 55.1433 181.503 54.8607 181.151 54.6529C180.806 54.4385 180.398 54.3313 179.929 54.3313C179.179 54.3313 178.53 54.5684 177.983 55.0426C177.442 55.5168 177.171 56.4165 177.171 57.7416V63.3929H175.411Z" fill="#9C9C9C"/>
+<path d="M186.77 51.1257V49.1087H188.53V51.1257H186.77ZM186.77 63.3929V53.0452H188.53V63.3929H186.77Z" fill="#9C9C9C"/>
+<path d="M191.42 63.3929V53.0452H193.004V54.5165C193.767 53.3797 194.869 52.8113 196.31 52.8113C196.936 52.8113 197.51 52.925 198.031 53.1524C198.559 53.3732 198.954 53.6655 199.215 54.0293C199.475 54.3931 199.658 54.825 199.762 55.3252C199.827 55.65 199.86 56.2184 199.86 57.0303V63.3929H198.1V57.0985C198.1 56.384 198.031 55.8513 197.894 55.5006C197.757 55.1433 197.513 54.8607 197.161 54.6529C196.815 54.4385 196.408 54.3313 195.938 54.3313C195.189 54.3313 194.54 54.5684 193.992 55.0426C193.451 55.5168 193.18 56.4165 193.18 57.7416V63.3929H191.42Z" fill="#9C9C9C"/>
+<path d="M202.447 64.2504L204.158 64.5037C204.23 65.0299 204.429 65.4131 204.755 65.6535C205.192 65.9782 205.788 66.1406 206.545 66.1406C207.36 66.1406 207.989 65.9782 208.432 65.6535C208.875 65.3287 209.175 64.874 209.332 64.2893C209.423 63.9321 209.465 63.1818 209.459 62.0386C208.69 62.9415 207.731 63.3929 206.584 63.3929C205.156 63.3929 204.051 62.8798 203.268 61.8534C202.486 60.8271 202.095 59.5962 202.095 58.1606C202.095 57.1732 202.274 56.2638 202.633 55.4324C202.991 54.5944 203.509 53.9481 204.188 53.4934C204.872 53.0387 205.674 52.8113 206.593 52.8113C207.819 52.8113 208.83 53.305 209.625 54.2924V53.0452H211.249V61.9898C211.249 63.6008 211.082 64.7408 210.75 65.4099C210.424 66.0854 209.902 66.6181 209.185 67.0078C208.474 67.3976 207.598 67.5924 206.554 67.5924C205.316 67.5924 204.315 67.3131 203.552 66.7545C202.789 66.2023 202.421 65.3676 202.447 64.2504ZM203.904 58.0339C203.904 59.3915 204.175 60.3821 204.716 61.0057C205.257 61.6293 205.935 61.9411 206.75 61.9411C207.558 61.9411 208.236 61.6326 208.784 61.0155C209.332 60.3919 209.606 59.4175 209.606 58.0924C209.606 56.8257 209.322 55.8708 208.755 55.2278C208.194 54.5847 207.516 54.2631 206.721 54.2631C205.938 54.2631 205.273 54.5814 204.725 55.218C204.178 55.8481 203.904 56.7867 203.904 58.0339Z" fill="#9C9C9C"/>
+<path d="M11.6229 249.805L17.129 235.521H19.1731L25.041 249.805H22.8797L21.2073 245.479H15.2122L13.6376 249.805H11.6229ZM15.7599 243.939H20.6205L19.1242 239.983C18.6678 238.782 18.3287 237.794 18.107 237.021C17.9245 237.937 17.6669 238.847 17.3344 239.75L15.7599 243.939Z" fill="#2D2D2D"/>
+<path d="M26.5323 253.771V239.457H28.1362V240.802C28.5144 240.276 28.9414 239.883 29.4174 239.623C29.8933 239.357 30.4704 239.223 31.1484 239.223C32.0352 239.223 32.8176 239.451 33.4956 239.905C34.1737 240.36 34.6855 241.003 35.0311 241.835C35.3766 242.66 35.5494 243.566 35.5494 244.553C35.5494 245.612 35.3571 246.567 34.9724 247.418C34.5942 248.262 34.0401 248.912 33.3098 249.366C32.5861 249.815 31.8233 250.039 31.0213 250.039C30.4345 250.039 29.9064 249.915 29.4369 249.669C28.974 249.422 28.5926 249.11 28.2927 248.733V253.771H26.5323ZM28.1264 244.69C28.1264 246.021 28.397 247.005 28.9382 247.642C29.4793 248.278 30.1346 248.597 30.9039 248.597C31.6863 248.597 32.3546 248.269 32.9088 247.613C33.4696 246.95 33.7499 245.927 33.7499 244.543C33.7499 243.225 33.4761 242.237 32.9284 241.581C32.3872 240.925 31.7385 240.597 30.9822 240.597C30.2324 240.597 29.5673 240.948 28.9871 241.65C28.4133 242.345 28.1264 243.358 28.1264 244.69Z" fill="#2D2D2D"/>
+<path d="M37.8818 253.771V239.457H39.4857V240.802C39.8638 240.276 40.2909 239.883 40.7668 239.623C41.2428 239.357 41.8198 239.223 42.4979 239.223C43.3846 239.223 44.167 239.451 44.8451 239.905C45.5232 240.36 46.035 241.003 46.3805 241.835C46.7261 242.66 46.8989 243.566 46.8989 244.553C46.8989 245.612 46.7065 246.567 46.3219 247.418C45.9437 248.262 45.3895 248.912 44.6593 249.366C43.9356 249.815 43.1727 250.039 42.3708 250.039C41.784 250.039 41.2558 249.915 40.7864 249.669C40.3235 249.422 39.9421 249.11 39.6421 248.733V253.771H37.8818ZM39.4759 244.69C39.4759 246.021 39.7465 247.005 40.2876 247.642C40.8288 248.278 41.484 248.597 42.2534 248.597C43.0358 248.597 43.7041 248.269 44.2583 247.613C44.819 246.95 45.0994 245.927 45.0994 244.543C45.0994 243.225 44.8255 242.237 44.2779 241.581C43.7367 240.925 43.088 240.597 42.3316 240.597C41.5818 240.597 40.9168 240.948 40.3365 241.65C39.7628 242.345 39.4759 243.358 39.4759 244.69Z" fill="#2D2D2D"/>
+<path d="M49.1921 249.805V235.521H50.9525V249.805H49.1921Z" fill="#2D2D2D"/>
+<path d="M53.901 237.538V235.521H55.6613V237.538H53.901ZM53.901 249.805V239.457H55.6613V249.805H53.901Z" fill="#2D2D2D"/>
+<path d="M65.3287 246.015L67.0597 246.239C66.8706 247.428 66.3849 248.36 65.6025 249.035C64.8266 249.704 63.8714 250.039 62.737 250.039C61.3156 250.039 60.1713 249.578 59.3042 248.655C58.4436 247.726 58.0132 246.398 58.0132 244.67C58.0132 243.553 58.1991 242.575 58.5707 241.737C58.9423 240.899 59.5063 240.272 60.2626 239.857C61.0255 239.434 61.8535 239.223 62.7467 239.223C63.8747 239.223 64.7973 239.509 65.5145 240.081C66.2317 240.646 66.6913 241.451 66.8934 242.497L65.1819 242.76C65.019 242.065 64.7288 241.542 64.3115 241.192C63.9008 240.841 63.402 240.665 62.8152 240.665C61.9285 240.665 61.208 240.984 60.6538 241.62C60.0996 242.25 59.8225 243.251 59.8225 244.621C59.8225 246.011 60.0898 247.022 60.6245 247.652C61.1591 248.282 61.8568 248.597 62.7174 248.597C63.4085 248.597 63.9855 248.386 64.4485 247.963C64.9114 247.541 65.2048 246.892 65.3287 246.015Z" fill="#2D2D2D"/>
+<path d="M75.5436 248.529C74.8916 249.081 74.2625 249.47 73.6561 249.698C73.0563 249.925 72.4108 250.039 71.7197 250.039C70.5787 250.039 69.7017 249.763 69.0889 249.211C68.476 248.652 68.1695 247.941 68.1695 247.077C68.1695 246.57 68.2836 246.109 68.5118 245.693C68.7466 245.271 69.0497 244.933 69.4214 244.68C69.7995 244.426 70.2233 244.235 70.6928 244.105C71.0383 244.014 71.5599 243.926 72.2576 243.842C73.6789 243.673 74.7254 243.472 75.3969 243.238C75.4035 242.997 75.4067 242.845 75.4067 242.78C75.4067 242.065 75.2405 241.562 74.9079 241.27C74.4581 240.873 73.7898 240.675 72.903 240.675C72.075 240.675 71.4621 240.821 71.0644 241.114C70.6732 241.399 70.3831 241.909 70.194 242.643L68.4727 242.41C68.6292 241.676 68.8867 241.084 69.2453 240.636C69.6039 240.181 70.1223 239.834 70.8004 239.594C71.4784 239.347 72.2641 239.223 73.1573 239.223C74.044 239.223 74.7645 239.327 75.3187 239.535C75.8729 239.743 76.2804 240.006 76.5412 240.324C76.802 240.636 76.9845 241.032 77.0889 241.513C77.1475 241.812 77.1769 242.351 77.1769 243.131V245.469C77.1769 247.099 77.2127 248.132 77.2845 248.568C77.3627 248.996 77.5127 249.409 77.7343 249.805H75.8957C75.7132 249.441 75.5958 249.016 75.5436 248.529ZM75.3969 244.612C74.758 244.871 73.7995 245.092 72.5216 245.274C71.7979 245.378 71.2861 245.495 70.9862 245.625C70.6862 245.755 70.4548 245.946 70.2918 246.2C70.1288 246.447 70.0473 246.723 70.0473 247.028C70.0473 247.496 70.2233 247.885 70.5754 248.197C70.934 248.509 71.4556 248.665 72.1402 248.665C72.8183 248.665 73.4214 248.519 73.9495 248.226C74.4776 247.928 74.8656 247.522 75.1133 247.009C75.3024 246.612 75.3969 246.028 75.3969 245.255V244.612Z" fill="#2D2D2D"/>
+<path d="M83.9591 248.236L84.2134 249.785C83.7179 249.889 83.2745 249.941 82.8833 249.941C82.2443 249.941 81.7488 249.841 81.3968 249.639C81.0447 249.438 80.7969 249.175 80.6535 248.85C80.51 248.519 80.4383 247.827 80.4383 246.775V240.821H79.1474V239.457H80.4383V236.895L82.1889 235.842V239.457H83.9591V240.821H82.1889V246.872C82.1889 247.372 82.2183 247.694 82.2769 247.837C82.3421 247.98 82.4432 248.093 82.5801 248.178C82.7236 248.262 82.9257 248.304 83.1865 248.304C83.3821 248.304 83.6396 248.282 83.9591 248.236Z" fill="#2D2D2D"/>
+<path d="M85.9002 237.538V235.521H87.6606V237.538H85.9002ZM85.9002 249.805V239.457H87.6606V249.805H85.9002Z" fill="#2D2D2D"/>
+<path d="M89.8952 244.631C89.8952 242.715 90.4298 241.296 91.4991 240.373C92.3923 239.607 93.4811 239.223 94.7656 239.223C96.1935 239.223 97.3605 239.691 98.2668 240.626C99.1731 241.555 99.6262 242.842 99.6262 244.485C99.6262 245.817 99.4241 246.866 99.0199 247.632C98.6221 248.392 98.0386 248.983 97.2692 249.405C96.5064 249.828 95.6719 250.039 94.7656 250.039C93.3116 250.039 92.1348 249.574 91.235 248.645C90.3418 247.717 89.8952 246.378 89.8952 244.631ZM91.7045 244.631C91.7045 245.956 91.9946 246.95 92.5749 247.613C93.1551 248.269 93.8854 248.597 94.7656 248.597C95.6393 248.597 96.3662 248.265 96.9465 247.603C97.5268 246.94 97.8169 245.93 97.8169 244.573C97.8169 243.293 97.5235 242.325 96.9367 241.669C96.3565 241.006 95.6327 240.675 94.7656 240.675C93.8854 240.675 93.1551 241.003 92.5749 241.659C91.9946 242.315 91.7045 243.306 91.7045 244.631Z" fill="#2D2D2D"/>
+<path d="M101.9 249.805V239.457H103.484V240.929C104.247 239.792 105.349 239.223 106.79 239.223C107.416 239.223 107.99 239.337 108.511 239.564C109.039 239.785 109.434 240.078 109.695 240.441C109.955 240.805 110.138 241.237 110.242 241.737C110.307 242.062 110.34 242.63 110.34 243.442V249.805H108.58V243.511C108.58 242.796 108.511 242.263 108.374 241.913C108.237 241.555 107.993 241.273 107.641 241.065C107.295 240.851 106.888 240.743 106.418 240.743C105.668 240.743 105.02 240.98 104.472 241.455C103.931 241.929 103.66 242.829 103.66 244.154V249.805H101.9Z" fill="#2D2D2D"/>
+<path d="M94.5325 291.359L100.039 277.075H102.083L107.951 291.359H105.789L104.117 287.033H98.1217L96.5471 291.359H94.5325ZM98.6694 285.494H103.53L102.034 281.538C101.577 280.336 101.238 279.349 101.017 278.576C100.834 279.491 100.576 280.401 100.244 281.304L98.6694 285.494Z" fill="#9C9C9C"/>
+<path d="M119.897 286.351L121.794 286.828C121.396 288.381 120.679 289.566 119.642 290.385C118.612 291.197 117.351 291.603 115.858 291.603C114.312 291.603 113.054 291.291 112.082 290.667C111.117 290.037 110.381 289.128 109.872 287.939C109.37 286.75 109.119 285.474 109.119 284.11C109.119 282.622 109.403 281.326 109.97 280.222C110.544 279.111 111.355 278.27 112.405 277.699C113.461 277.12 114.622 276.831 115.887 276.831C117.321 276.831 118.527 277.195 119.505 277.923C120.483 278.65 121.165 279.673 121.549 280.992L119.681 281.43C119.349 280.391 118.866 279.634 118.234 279.16C117.602 278.686 116.806 278.449 115.848 278.449C114.746 278.449 113.823 278.712 113.08 279.238C112.343 279.764 111.825 280.472 111.525 281.362C111.225 282.246 111.075 283.158 111.075 284.1C111.075 285.315 111.251 286.377 111.603 287.286C111.962 288.189 112.516 288.865 113.266 289.313C114.016 289.761 114.827 289.985 115.701 289.985C116.764 289.985 117.664 289.68 118.4 289.069C119.137 288.459 119.636 287.553 119.897 286.351Z" fill="#9C9C9C"/>
+<path d="M124.664 291.359V277.075H126.561V291.359H124.664Z" fill="#9C9C9C"/>
+<path d="M130.116 291.359V277.075H135.055C136.17 277.075 137.021 277.143 137.608 277.28C138.429 277.468 139.13 277.809 139.71 278.303C140.467 278.939 141.031 279.755 141.402 280.748C141.781 281.736 141.97 282.866 141.97 284.139C141.97 285.224 141.842 286.185 141.588 287.023C141.334 287.861 141.008 288.556 140.61 289.108C140.212 289.654 139.776 290.086 139.3 290.404C138.83 290.716 138.26 290.953 137.588 291.116C136.923 291.278 136.157 291.359 135.29 291.359H130.116ZM132.014 289.674H135.075C136.02 289.674 136.76 289.586 137.295 289.41C137.836 289.235 138.266 288.988 138.586 288.67C139.036 288.222 139.384 287.621 139.632 286.867C139.886 286.107 140.014 285.188 140.014 284.11C140.014 282.616 139.766 281.469 139.27 280.67C138.781 279.865 138.185 279.326 137.481 279.053C136.972 278.858 136.154 278.761 135.026 278.761H132.014V289.674Z" fill="#9C9C9C"/>
+<path d="M153.842 291.359V278.761H149.118V277.075H160.483V278.761H155.739V291.359H153.842Z" fill="#9C9C9C"/>
+<path d="M161.651 291.359V281.011H163.236V282.58C163.64 281.846 164.011 281.362 164.35 281.128C164.696 280.895 165.074 280.778 165.485 280.778C166.078 280.778 166.681 280.966 167.294 281.343L166.688 282.97C166.258 282.717 165.827 282.59 165.397 282.59C165.012 282.59 164.667 282.707 164.36 282.941C164.054 283.168 163.835 283.486 163.705 283.896C163.509 284.519 163.412 285.201 163.412 285.942V291.359H161.651Z" fill="#9C9C9C"/>
+<path d="M175.319 290.083C174.667 290.635 174.037 291.025 173.431 291.252C172.831 291.479 172.186 291.593 171.495 291.593C170.354 291.593 169.477 291.317 168.864 290.765C168.251 290.206 167.944 289.495 167.944 288.631C167.944 288.124 168.059 287.663 168.287 287.247C168.521 286.825 168.825 286.487 169.196 286.234C169.574 285.981 169.998 285.789 170.468 285.659C170.813 285.568 171.335 285.481 172.032 285.396C173.454 285.227 174.5 285.026 175.172 284.792C175.178 284.552 175.182 284.399 175.182 284.334C175.182 283.619 175.015 283.116 174.683 282.824C174.233 282.428 173.565 282.229 172.678 282.229C171.85 282.229 171.237 282.376 170.839 282.668C170.448 282.954 170.158 283.464 169.969 284.198L168.248 283.964C168.404 283.23 168.662 282.639 169.02 282.19C169.379 281.736 169.897 281.388 170.575 281.148C171.253 280.901 172.039 280.778 172.932 280.778C173.819 280.778 174.539 280.882 175.094 281.089C175.648 281.297 176.055 281.56 176.316 281.879C176.577 282.19 176.759 282.587 176.864 283.067C176.922 283.366 176.952 283.905 176.952 284.685V287.023C176.952 288.654 176.988 289.687 177.059 290.122C177.138 290.55 177.288 290.963 177.509 291.359H175.671C175.488 290.995 175.371 290.57 175.319 290.083ZM175.172 286.166C174.533 286.426 173.574 286.647 172.297 286.828C171.573 286.932 171.061 287.049 170.761 287.179C170.461 287.309 170.23 287.501 170.067 287.754C169.904 288.001 169.822 288.277 169.822 288.582C169.822 289.05 169.998 289.44 170.35 289.751C170.709 290.063 171.231 290.219 171.915 290.219C172.593 290.219 173.196 290.073 173.724 289.781C174.253 289.482 174.64 289.076 174.888 288.563C175.077 288.167 175.172 287.582 175.172 286.809V286.166Z" fill="#9C9C9C"/>
+<path d="M179.89 291.359V281.011H181.475V282.483C182.238 281.346 183.34 280.778 184.78 280.778C185.406 280.778 185.98 280.891 186.502 281.119C187.03 281.339 187.424 281.632 187.685 281.996C187.946 282.359 188.128 282.791 188.233 283.291C188.298 283.616 188.331 284.185 188.331 284.997V291.359H186.57V285.065C186.57 284.35 186.502 283.818 186.365 283.467C186.228 283.11 185.983 282.827 185.631 282.619C185.286 282.405 184.878 282.298 184.409 282.298C183.659 282.298 183.01 282.535 182.463 283.009C181.921 283.483 181.651 284.383 181.651 285.708V291.359H179.89Z" fill="#9C9C9C"/>
+<path d="M190.536 288.27L192.277 287.998C192.374 288.693 192.645 289.225 193.088 289.596C193.538 289.966 194.164 290.151 194.966 290.151C195.775 290.151 196.374 289.989 196.766 289.664C197.157 289.333 197.352 288.946 197.352 288.504C197.352 288.108 197.18 287.796 196.834 287.569C196.593 287.413 195.993 287.215 195.035 286.975C193.744 286.65 192.847 286.37 192.345 286.137C191.85 285.896 191.471 285.568 191.211 285.152C190.956 284.73 190.829 284.266 190.829 283.759C190.829 283.298 190.934 282.872 191.142 282.483C191.357 282.086 191.647 281.758 192.013 281.499C192.286 281.297 192.658 281.128 193.127 280.992C193.603 280.849 194.112 280.778 194.653 280.778C195.468 280.778 196.182 280.895 196.795 281.128C197.414 281.362 197.871 281.681 198.164 282.083C198.458 282.479 198.66 283.012 198.771 283.681L197.049 283.915C196.971 283.382 196.743 282.967 196.365 282.668C195.993 282.369 195.465 282.22 194.78 282.22C193.972 282.22 193.395 282.353 193.049 282.619C192.704 282.885 192.531 283.197 192.531 283.555C192.531 283.782 192.603 283.987 192.746 284.168C192.889 284.357 193.114 284.513 193.421 284.636C193.597 284.701 194.115 284.85 194.976 285.084C196.221 285.416 197.088 285.688 197.577 285.903C198.073 286.111 198.461 286.416 198.741 286.819C199.022 287.221 199.162 287.722 199.162 288.319C199.162 288.904 198.989 289.456 198.643 289.976C198.304 290.489 197.812 290.888 197.167 291.174C196.521 291.453 195.791 291.593 194.976 291.593C193.626 291.593 192.596 291.314 191.885 290.755C191.181 290.196 190.731 289.368 190.536 288.27Z" fill="#9C9C9C"/>
+<path d="M208.232 290.083C207.58 290.635 206.951 291.025 206.345 291.252C205.745 291.479 205.1 291.593 204.408 291.593C203.267 291.593 202.391 291.317 201.778 290.765C201.165 290.206 200.858 289.495 200.858 288.631C200.858 288.124 200.972 287.663 201.201 287.247C201.435 286.825 201.739 286.487 202.11 286.234C202.488 285.981 202.912 285.789 203.382 285.659C203.727 285.568 204.249 285.481 204.946 285.396C206.368 285.227 207.414 285.026 208.086 284.792C208.092 284.552 208.096 284.399 208.096 284.334C208.096 283.619 207.929 283.116 207.597 282.824C207.147 282.428 206.479 282.229 205.592 282.229C204.764 282.229 204.151 282.376 203.753 282.668C203.362 282.954 203.072 283.464 202.883 284.198L201.162 283.964C201.318 283.23 201.576 282.639 201.934 282.19C202.293 281.736 202.811 281.388 203.489 281.148C204.167 280.901 204.953 280.778 205.846 280.778C206.733 280.778 207.453 280.882 208.007 281.089C208.562 281.297 208.969 281.56 209.23 281.879C209.491 282.19 209.673 282.587 209.778 283.067C209.836 283.366 209.866 283.905 209.866 284.685V287.023C209.866 288.654 209.902 289.687 209.973 290.122C210.052 290.55 210.201 290.963 210.423 291.359H208.585C208.402 290.995 208.285 290.57 208.232 290.083ZM208.086 286.166C207.447 286.426 206.488 286.647 205.21 286.828C204.487 286.932 203.975 287.049 203.675 287.179C203.375 287.309 203.144 287.501 202.981 287.754C202.818 288.001 202.736 288.277 202.736 288.582C202.736 289.05 202.912 289.44 203.264 289.751C203.623 290.063 204.144 290.219 204.829 290.219C205.507 290.219 206.11 290.073 206.638 289.781C207.166 289.482 207.554 289.076 207.802 288.563C207.991 288.167 208.086 287.582 208.086 286.809V286.166Z" fill="#9C9C9C"/>
+<path d="M219.582 287.569L221.313 287.793C221.124 288.982 220.638 289.914 219.856 290.589C219.08 291.259 218.125 291.593 216.99 291.593C215.569 291.593 214.425 291.132 213.557 290.209C212.697 289.281 212.266 287.952 212.266 286.224C212.266 285.107 212.452 284.129 212.824 283.291C213.196 282.454 213.76 281.827 214.516 281.411C215.279 280.989 216.107 280.778 217 280.778C218.128 280.778 219.051 281.063 219.768 281.635C220.485 282.2 220.945 283.006 221.147 284.051L219.435 284.315C219.272 283.619 218.982 283.097 218.565 282.746C218.154 282.395 217.655 282.22 217.068 282.22C216.182 282.22 215.461 282.538 214.907 283.175C214.353 283.805 214.076 284.805 214.076 286.176C214.076 287.566 214.343 288.576 214.878 289.206C215.412 289.836 216.11 290.151 216.971 290.151C217.662 290.151 218.239 289.94 218.702 289.518C219.165 289.095 219.458 288.446 219.582 287.569Z" fill="#9C9C9C"/>
+<path d="M226.863 289.79L227.117 291.34C226.622 291.444 226.178 291.496 225.787 291.496C225.148 291.496 224.653 291.395 224.301 291.194C223.948 290.992 223.701 290.729 223.557 290.404C223.414 290.073 223.342 289.381 223.342 288.329V282.376H222.051V281.011H223.342V278.449L225.093 277.397V281.011H226.863V282.376H225.093V288.426C225.093 288.927 225.122 289.248 225.181 289.391C225.246 289.534 225.347 289.648 225.484 289.732C225.627 289.816 225.829 289.859 226.09 289.859C226.286 289.859 226.543 289.836 226.863 289.79Z" fill="#9C9C9C"/>
+<path d="M228.804 279.092V277.075H230.564V279.092H228.804ZM228.804 291.359V281.011H230.564V291.359H228.804Z" fill="#9C9C9C"/>
+<path d="M232.799 286.185C232.799 284.269 233.334 282.85 234.403 281.927C235.296 281.161 236.385 280.778 237.669 280.778C239.097 280.778 240.264 281.245 241.171 282.181C242.077 283.11 242.53 284.396 242.53 286.039C242.53 287.371 242.328 288.42 241.924 289.186C241.526 289.946 240.942 290.537 240.173 290.96C239.41 291.382 238.576 291.593 237.669 291.593C236.215 291.593 235.039 291.129 234.139 290.2C233.246 289.271 232.799 287.933 232.799 286.185ZM234.608 286.185C234.608 287.51 234.898 288.504 235.479 289.167C236.059 289.823 236.789 290.151 237.669 290.151C238.543 290.151 239.27 289.82 239.85 289.157C240.431 288.495 240.721 287.484 240.721 286.127C240.721 284.847 240.427 283.879 239.841 283.223C239.26 282.561 238.537 282.229 237.669 282.229C236.789 282.229 236.059 282.557 235.479 283.214C234.898 283.87 234.608 284.86 234.608 286.185Z" fill="#9C9C9C"/>
+<path d="M244.804 291.359V281.011H246.388V282.483C247.151 281.346 248.253 280.778 249.694 280.778C250.32 280.778 250.893 280.891 251.415 281.119C251.943 281.339 252.337 281.632 252.598 281.996C252.859 282.359 253.042 282.791 253.146 283.291C253.211 283.616 253.244 284.185 253.244 284.997V291.359H251.483V285.065C251.483 284.35 251.415 283.818 251.278 283.467C251.141 283.11 250.897 282.827 250.545 282.619C250.199 282.405 249.791 282.298 249.322 282.298C248.572 282.298 247.923 282.535 247.376 283.009C246.835 283.483 246.564 284.383 246.564 285.708V291.359H244.804Z" fill="#9C9C9C"/>
+<path d="M255.449 288.27L257.19 287.998C257.288 288.693 257.558 289.225 258.002 289.596C258.451 289.966 259.077 290.151 259.879 290.151C260.688 290.151 261.288 289.989 261.679 289.664C262.07 289.333 262.266 288.946 262.266 288.504C262.266 288.108 262.093 287.796 261.747 287.569C261.506 287.413 260.906 287.215 259.948 286.975C258.657 286.65 257.76 286.37 257.258 286.137C256.763 285.896 256.385 285.568 256.124 285.152C255.869 284.73 255.742 284.266 255.742 283.759C255.742 283.298 255.847 282.872 256.055 282.483C256.27 282.086 256.561 281.758 256.926 281.499C257.2 281.297 257.571 281.128 258.041 280.992C258.517 280.849 259.025 280.778 259.566 280.778C260.381 280.778 261.095 280.895 261.708 281.128C262.328 281.362 262.784 281.681 263.077 282.083C263.371 282.479 263.573 283.012 263.684 283.681L261.962 283.915C261.884 283.382 261.656 282.967 261.278 282.668C260.906 282.369 260.378 282.22 259.693 282.22C258.885 282.22 258.308 282.353 257.962 282.619C257.617 282.885 257.444 283.197 257.444 283.555C257.444 283.782 257.516 283.987 257.659 284.168C257.803 284.357 258.028 284.513 258.334 284.636C258.51 284.701 259.028 284.85 259.889 285.084C261.134 285.416 262.002 285.688 262.491 285.903C262.986 286.111 263.374 286.416 263.654 286.819C263.935 287.221 264.075 287.722 264.075 288.319C264.075 288.904 263.902 289.456 263.557 289.976C263.218 290.489 262.725 290.888 262.08 291.174C261.434 291.453 260.704 291.593 259.889 291.593C258.539 291.593 257.509 291.314 256.799 290.755C256.094 290.196 255.645 289.368 255.449 288.27Z" fill="#9C9C9C"/>
+</svg>
diff --git a/public/img/features/in-memory/write-through-caching.svg b/public/img/features/in-memory/write-through-caching.svg
new file mode 100644
index 0000000..7867d0b
--- /dev/null
+++ b/public/img/features/in-memory/write-through-caching.svg
@@ -0,0 +1,25 @@
+<svg width="957" height="296" viewBox="0 0 957 296" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M833.876 198.615V77.4087C833.876 77.4087 848.4 89.5931 893.542 89.5931C938.684 89.5931 954.778 76.0162 954.778 76.0162V198.615C954.778 198.615 948.278 213.504 893.542 214.076C838.806 214.649 833.876 198.615 833.876 198.615Z" fill="white"/>
+<path d="M955.185 73.5836C955.185 75.8313 953.761 78.1476 950.764 80.4079C947.782 82.6562 943.398 84.7238 937.872 86.4781C926.833 89.983 911.465 92.1671 894.282 92.1671C877.099 92.1671 861.73 89.983 850.691 86.4781C845.166 84.7238 840.781 82.6562 837.8 80.4079C834.802 78.1476 833.378 75.8313 833.378 73.5836C833.378 71.3358 834.802 69.0195 837.8 66.7592C840.781 64.5109 845.166 62.4433 850.691 60.689C861.73 57.1841 877.099 55 894.282 55C911.465 55 926.833 57.1841 937.872 60.689C943.398 62.4433 947.782 64.5109 950.764 66.7592C953.761 69.0195 955.185 71.3358 955.185 73.5836Z" fill="white" stroke="#ED1C24" stroke-width="2"/>
+<path d="M833.56 74.6326L833.56 195.568" stroke="#ED1C24" stroke-width="2"/>
+<path d="M955.156 72.859L955.017 195.695" stroke="#ED1C24" stroke-width="2"/>
+<path d="M954.995 195.568C954.995 205.955 927.811 214.376 894.278 214.376C860.744 214.376 833.56 205.955 833.56 195.568" stroke="#ED1C24" stroke-width="2"/>
+<path d="M954.995 113.478C954.995 123.865 927.811 132.286 894.278 132.286C860.744 132.286 833.56 123.865 833.56 113.478" stroke="#ED1C24" stroke-width="2"/>
+<path d="M954.995 154.806C954.995 165.193 927.811 173.614 894.278 173.614C860.744 173.614 833.56 165.193 833.56 154.806" stroke="#ED1C24" stroke-width="2"/>
+<path d="M91.0372 153.416L160.161 171.709L160.161 72.2925L91.0372 54L23.1258 75.138L23.1258 174.142L91.0372 153.416Z" fill="white" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M92.25 94.1861L23.1258 75.8935L23.1258 197.123L92.25 215.415L160.161 194.277L160.161 73.4609L92.25 94.1861Z" fill="white" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M91.2382 93.9903L91.2382 213.388" stroke="#2D2D2D" stroke-width="2"/>
+<rect x="472.943" y="87.8188" width="125.813" height="125.813" rx="62.9065" fill="#ED1C24"/>
+<path d="M524.576 128.419C524.576 128.419 495.737 145.974 522.916 163.405C528.144 166.8 547.107 176.241 546.568 184.977C546.568 184.977 558.062 168.001 541.256 157.319C523.995 146.388 519.679 134.712 524.576 128.419Z" fill="white"/>
+<path d="M514.533 161.956C514.533 161.956 504.243 177.524 524.492 180.712C526.484 180.961 541.131 182.493 544.949 187.295C544.949 187.295 544.617 179.015 532.667 174.129C520.758 169.243 515.861 168.043 514.533 161.956Z" fill="white"/>
+<path d="M554.369 145.602C542.003 132.684 538.559 124.693 543.871 114.342C543.871 114.342 506.982 128.502 543.414 153.634C556.443 162.619 554.286 171.81 554.286 172.142C556.319 170.03 566.734 158.52 554.369 145.602Z" fill="white"/>
+<path d="M536.522 243.949C536.132 243.558 535.499 243.558 535.108 243.949L528.744 250.313C528.354 250.703 528.354 251.336 528.744 251.727C529.135 252.117 529.768 252.117 530.159 251.727L535.815 246.07L541.472 251.727C541.863 252.117 542.496 252.117 542.886 251.727C543.277 251.336 543.277 250.703 542.886 250.313L536.522 243.949ZM121.585 295.818H505.815V293.818H121.585V295.818ZM536.815 264.818V244.656H534.815V264.818H536.815ZM505.815 295.818C522.936 295.818 536.815 281.938 536.815 264.818H534.815C534.815 280.834 521.832 293.818 505.815 293.818V295.818ZM93.8318 268.065C93.8318 283.392 106.257 295.818 121.585 295.818V293.818C107.362 293.818 95.8318 282.288 95.8318 268.065H93.8318Z" fill="black"/>
+<path d="M536.522 52.0856C536.132 52.4761 535.499 52.4761 535.108 52.0856L528.744 45.7216C528.354 45.3311 528.354 44.6979 528.744 44.3074C529.135 43.9169 529.768 43.9169 530.159 44.3074L535.815 49.9643L541.472 44.3074C541.863 43.9169 542.496 43.9169 542.886 44.3074C543.277 44.6979 543.277 45.3311 542.886 45.7216L536.522 52.0856ZM121.585 0.216666L505.815 0.21671L505.815 2.21671L121.585 2.21667L121.585 0.216666ZM536.815 31.2167L536.815 51.3785L534.815 51.3785L534.815 31.2167L536.815 31.2167ZM505.815 0.21671C522.936 0.216712 536.815 14.0959 536.815 31.2167L534.815 31.2167C534.815 15.2005 521.832 2.21671 505.815 2.21671L505.815 0.21671ZM93.8318 27.9694C93.8318 12.642 106.257 0.216665 121.585 0.216666L121.585 2.21667C107.362 2.21666 95.8318 13.7466 95.8318 27.9694L93.8318 27.9694Z" fill="black"/>
+<path d="M197.21 150.784C196.658 150.784 196.21 151.232 196.21 151.784C196.21 152.336 196.658 152.784 197.21 152.784L197.21 150.784ZM454.977 152.491C455.368 152.1 455.368 151.467 454.977 151.077L448.613 144.713C448.223 144.322 447.59 144.322 447.199 144.713C446.809 145.103 446.809 145.736 447.199 146.127L452.856 151.784L447.199 157.441C446.809 157.831 446.809 158.464 447.199 158.855C447.59 159.245 448.223 159.245 448.613 158.855L454.977 152.491ZM197.21 152.784L454.27 152.784L454.27 150.784L197.21 150.784L197.21 152.784Z" fill="black"/>
+<path d="M629.719 144.416C629.166 144.416 628.719 144.863 628.719 145.416C628.719 145.968 629.166 146.416 629.719 146.416V144.416ZM802.912 146.123C803.302 145.732 803.302 145.099 802.912 144.709L796.548 138.345C796.157 137.954 795.524 137.954 795.134 138.345C794.743 138.735 794.743 139.368 795.134 139.759L800.79 145.416L795.134 151.073C794.743 151.463 794.743 152.096 795.134 152.487C795.524 152.877 796.157 152.877 796.548 152.487L802.912 146.123ZM629.719 146.416H802.205V144.416H629.719V146.416Z" fill="black"/>
+<path d="M802.205 162.994C802.757 162.994 803.205 162.546 803.205 161.994C803.205 161.441 802.757 160.994 802.205 160.994L802.205 162.994ZM629.012 161.287C628.621 161.677 628.621 162.31 629.012 162.701L635.375 169.065C635.766 169.455 636.399 169.455 636.79 169.065C637.18 168.674 637.18 168.041 636.79 167.651L631.133 161.994L636.79 156.337C637.18 155.946 637.18 155.313 636.79 154.923C636.399 154.532 635.766 154.532 635.375 154.923L629.012 161.287ZM802.205 160.994L629.719 160.994L629.719 162.994L802.205 162.994L802.205 160.994Z" fill="black"/>
+<path d="M295.036 135.476L296.823 135.32C296.908 136.036 297.103 136.625 297.409 137.087C297.721 137.543 298.203 137.914 298.854 138.2C299.505 138.48 300.238 138.62 301.051 138.62C301.774 138.62 302.412 138.513 302.965 138.298C303.519 138.083 303.929 137.79 304.196 137.419C304.469 137.042 304.606 136.631 304.606 136.189C304.606 135.739 304.476 135.349 304.215 135.017C303.955 134.678 303.525 134.395 302.926 134.167C302.542 134.017 301.693 133.786 300.378 133.474C299.062 133.155 298.141 132.855 297.614 132.575C296.93 132.217 296.419 131.775 296.081 131.247C295.749 130.713 295.583 130.118 295.583 129.46C295.583 128.738 295.788 128.064 296.198 127.439C296.608 126.807 297.207 126.329 297.995 126.003C298.783 125.678 299.658 125.515 300.622 125.515C301.683 125.515 302.617 125.687 303.424 126.032C304.238 126.371 304.863 126.872 305.299 127.536C305.736 128.2 305.97 128.952 306.003 129.792L304.186 129.929C304.089 129.024 303.756 128.34 303.19 127.878C302.63 127.416 301.8 127.185 300.7 127.185C299.554 127.185 298.717 127.396 298.19 127.82C297.669 128.236 297.409 128.741 297.409 129.333C297.409 129.848 297.594 130.271 297.965 130.603C298.33 130.935 299.281 131.277 300.817 131.628C302.36 131.973 303.418 132.276 303.991 132.536C304.824 132.92 305.439 133.409 305.837 134.001C306.234 134.587 306.432 135.264 306.432 136.032C306.432 136.794 306.214 137.514 305.778 138.191C305.342 138.861 304.714 139.385 303.893 139.763C303.079 140.134 302.161 140.32 301.139 140.32C299.844 140.32 298.756 140.131 297.878 139.753C297.005 139.376 296.318 138.809 295.817 138.054C295.322 137.292 295.062 136.433 295.036 135.476ZM320.07 138.542C320.949 139.148 321.759 139.59 322.501 139.87L321.945 141.189C320.916 140.818 319.891 140.232 318.869 139.431C317.807 140.023 316.636 140.32 315.353 140.32C314.057 140.32 312.882 140.007 311.828 139.382C310.773 138.757 309.959 137.878 309.386 136.745C308.82 135.613 308.537 134.336 308.537 132.917C308.537 131.504 308.823 130.219 309.396 129.06C309.969 127.901 310.783 127.019 311.837 126.413C312.899 125.808 314.083 125.505 315.392 125.505C316.714 125.505 317.905 125.821 318.966 126.452C320.027 127.077 320.835 127.956 321.388 129.089C321.948 130.215 322.228 131.488 322.228 132.907C322.228 134.086 322.049 135.147 321.691 136.091C321.333 137.029 320.792 137.846 320.07 138.542ZM315.9 136.12C316.994 136.426 317.895 136.882 318.605 137.488C319.718 136.472 320.275 134.945 320.275 132.907C320.275 131.749 320.076 130.736 319.679 129.87C319.289 129.004 318.712 128.334 317.951 127.859C317.195 127.377 316.346 127.136 315.402 127.136C313.989 127.136 312.817 127.621 311.886 128.591C310.955 129.555 310.49 130.997 310.49 132.917C310.49 134.779 310.949 136.208 311.867 137.204C312.791 138.2 313.969 138.698 315.402 138.698C316.079 138.698 316.717 138.572 317.316 138.318C316.723 137.933 316.098 137.66 315.441 137.497L315.9 136.12ZM324.908 140.075V125.759H326.803V138.386H333.854V140.075H324.908Z" fill="#9C9C9C"/>
+<path d="M195.876 33.881L197.771 34.3595C197.373 35.9155 196.657 37.1037 195.622 37.924C194.593 38.7378 193.334 39.1447 191.843 39.1447C190.3 39.1447 189.043 38.8322 188.073 38.2072C187.11 37.5757 186.374 36.6642 185.866 35.4728C185.365 34.2814 185.114 33.0021 185.114 31.6349C185.114 30.144 185.398 28.8452 185.964 27.7384C186.537 26.6252 187.347 25.7821 188.396 25.2091C189.45 24.6297 190.609 24.34 191.872 24.34C193.304 24.34 194.509 24.7046 195.485 25.4337C196.462 26.1629 197.142 27.1883 197.526 28.5099L195.661 28.9494C195.329 27.9077 194.847 27.1492 194.216 26.674C193.584 26.1987 192.79 25.9611 191.833 25.9611C190.733 25.9611 189.812 26.2248 189.069 26.7521C188.334 27.2794 187.816 27.9891 187.517 28.881C187.217 29.7664 187.067 30.6811 187.067 31.6252C187.067 32.8426 187.243 33.9071 187.595 34.8185C187.953 35.7235 188.506 36.4005 189.255 36.8498C190.004 37.299 190.814 37.5236 191.687 37.5236C192.748 37.5236 193.646 37.2176 194.382 36.6056C195.118 35.9936 195.616 35.0854 195.876 33.881ZM199.435 33.715C199.435 31.7944 199.969 30.3719 201.037 29.4474C201.929 28.6792 203.016 28.2951 204.299 28.2951C205.724 28.2951 206.89 28.7638 207.795 29.7013C208.7 30.6323 209.152 31.9214 209.152 33.5685C209.152 34.9031 208.95 35.9546 208.547 36.7228C208.15 37.4845 207.567 38.077 206.799 38.5002C206.037 38.9233 205.204 39.1349 204.299 39.1349C202.847 39.1349 201.672 38.6694 200.773 37.7384C199.881 36.8074 199.435 35.4663 199.435 33.715ZM201.242 33.715C201.242 35.0431 201.532 36.0392 202.111 36.7033C202.691 37.3608 203.42 37.6896 204.299 37.6896C205.171 37.6896 205.897 37.3576 206.476 36.6935C207.056 36.0294 207.346 35.0171 207.346 33.6564C207.346 32.3739 207.053 31.4038 206.467 30.7462C205.887 30.0822 205.165 29.7502 204.299 29.7502C203.42 29.7502 202.691 30.0789 202.111 30.7365C201.532 31.394 201.242 32.3869 201.242 33.715ZM211.423 38.9005V28.5294H212.995V29.9845C213.32 29.4767 213.753 29.0698 214.294 28.7638C214.834 28.4513 215.449 28.2951 216.139 28.2951C216.908 28.2951 217.536 28.4546 218.024 28.7736C218.519 29.0926 218.867 29.5386 219.069 30.1115C219.889 28.9005 220.957 28.2951 222.272 28.2951C223.301 28.2951 224.092 28.5815 224.645 29.1544C225.199 29.7209 225.475 30.5965 225.475 31.7814V38.9005H223.727V32.3673C223.727 31.6642 223.669 31.1597 223.551 30.8537C223.441 30.5412 223.236 30.2905 222.936 30.1017C222.637 29.9129 222.285 29.8185 221.882 29.8185C221.152 29.8185 220.547 30.0627 220.065 30.5509C219.583 31.0327 219.342 31.8074 219.342 32.8752V38.9005H217.585V32.1623C217.585 31.381 217.441 30.7951 217.155 30.4044C216.868 30.0138 216.4 29.8185 215.749 29.8185C215.254 29.8185 214.795 29.9487 214.372 30.2091C213.955 30.4696 213.652 30.8504 213.464 31.3517C213.275 31.853 213.18 32.5757 213.18 33.5197V38.9005H211.423ZM228.283 42.8752V28.5294H229.884V29.8771C230.262 29.3498 230.688 28.9559 231.164 28.6955C231.639 28.4285 232.215 28.2951 232.892 28.2951C233.777 28.2951 234.559 28.5229 235.236 28.9787C235.913 29.4344 236.424 30.0789 236.769 30.9123C237.114 31.7391 237.287 32.6473 237.287 33.6369C237.287 34.6981 237.095 35.6551 236.71 36.508C236.333 37.3543 235.779 38.0054 235.05 38.4611C234.328 38.9103 233.566 39.1349 232.765 39.1349C232.179 39.1349 231.652 39.0112 231.183 38.7638C230.721 38.5164 230.34 38.2039 230.04 37.8263V42.8752H228.283ZM229.874 33.7736C229.874 35.1082 230.145 36.0946 230.685 36.7326C231.225 37.3706 231.88 37.6896 232.648 37.6896C233.429 37.6896 234.096 37.3608 234.65 36.7033C235.21 36.0392 235.49 35.0138 235.49 33.6271C235.49 32.3055 235.216 31.3159 234.669 30.6584C234.129 30.0008 233.481 29.672 232.726 29.672C231.977 29.672 231.313 30.0236 230.734 30.7267C230.161 31.4233 229.874 32.439 229.874 33.7736ZM246.412 38.9005V37.3771C245.605 38.549 244.508 39.1349 243.121 39.1349C242.509 39.1349 241.936 39.0177 241.403 38.7834C240.875 38.549 240.481 38.256 240.221 37.9044C239.967 37.5464 239.788 37.1102 239.684 36.5959C239.612 36.2508 239.576 35.7039 239.576 34.9552V28.5294H241.334V34.2814C241.334 35.1994 241.37 35.8179 241.442 36.1369C241.552 36.5991 241.787 36.9637 242.145 37.2306C242.503 37.491 242.946 37.6212 243.473 37.6212C244 37.6212 244.495 37.4878 244.957 37.2209C245.42 36.9474 245.745 36.5796 245.934 36.1173C246.129 35.6486 246.227 34.9715 246.227 34.0861V28.5294H247.985V38.9005H246.412ZM254.786 37.3283L255.04 38.881C254.545 38.9852 254.103 39.0373 253.712 39.0373C253.074 39.0373 252.579 38.9364 252.228 38.7345C251.876 38.5327 251.629 38.269 251.485 37.9435C251.342 37.6115 251.271 36.9181 251.271 35.8634V29.8966H249.982V28.5294H251.271V25.9611L253.019 24.9064V28.5294H254.786V29.8966H253.019V35.9611C253.019 36.4624 253.048 36.7847 253.107 36.9279C253.172 37.0711 253.273 37.185 253.409 37.2697C253.552 37.3543 253.754 37.3966 254.015 37.3966C254.21 37.3966 254.467 37.3739 254.786 37.3283ZM263.814 35.5607L265.631 35.7853C265.344 36.8465 264.814 37.6701 264.039 38.256C263.264 38.8419 262.275 39.1349 261.07 39.1349C259.553 39.1349 258.349 38.6694 257.457 37.7384C256.571 36.8009 256.129 35.4891 256.129 33.8029C256.129 32.0581 256.578 30.7039 257.476 29.7404C258.375 28.7768 259.54 28.2951 260.973 28.2951C262.359 28.2951 263.492 28.7671 264.371 29.7111C265.25 30.6551 265.689 31.9832 265.689 33.6955C265.689 33.7996 265.686 33.9559 265.68 34.1642H257.945C258.01 35.3035 258.333 36.1759 258.912 36.7814C259.491 37.3869 260.214 37.6896 261.08 37.6896C261.724 37.6896 262.275 37.5203 262.73 37.1818C263.186 36.8433 263.547 36.3029 263.814 35.5607ZM258.043 32.7189H263.834C263.756 31.8465 263.534 31.1922 263.17 30.756C262.61 30.0789 261.884 29.7404 260.992 29.7404C260.185 29.7404 259.504 30.0106 258.951 30.5509C258.404 31.0913 258.101 31.814 258.043 32.7189ZM281.998 37.2111C281.418 37.8556 280.787 38.3406 280.103 38.6662C279.419 38.9852 278.68 39.1447 277.886 39.1447C276.421 39.1447 275.259 38.6499 274.4 37.6603C273.703 36.853 273.355 35.9513 273.355 34.9552C273.355 34.0698 273.638 33.2723 274.205 32.5627C274.777 31.8465 275.63 31.2183 276.763 30.6779C276.119 29.9357 275.689 29.3335 275.474 28.8712C275.259 28.409 275.152 27.963 275.152 27.5334C275.152 26.674 275.487 25.9285 276.158 25.297C276.835 24.659 277.684 24.34 278.707 24.34C279.683 24.34 280.481 24.6395 281.099 25.2384C281.724 25.8374 282.037 26.5568 282.037 27.3966C282.037 28.7573 281.135 29.9194 279.332 30.883L281.9 34.1544C282.193 33.5815 282.421 32.9175 282.583 32.1623L284.41 32.5529C284.097 33.8029 283.674 34.8315 283.14 35.6388C283.798 36.5112 284.543 37.2436 285.376 37.8361L284.195 39.2326C283.485 38.7768 282.753 38.103 281.998 37.2111ZM278.423 29.7502C279.185 29.3009 279.677 28.9071 279.898 28.5685C280.126 28.23 280.24 27.8556 280.24 27.4455C280.24 26.9572 280.083 26.56 279.771 26.2541C279.465 25.9416 279.081 25.7853 278.619 25.7853C278.143 25.7853 277.746 25.9383 277.427 26.2443C277.115 26.5503 276.958 26.9246 276.958 27.3673C276.958 27.5887 277.014 27.8231 277.124 28.0705C277.242 28.3114 277.414 28.5685 277.642 28.8419L278.423 29.7502ZM280.894 35.8244L277.671 31.8302C276.721 32.3966 276.08 32.924 275.748 33.4123C275.415 33.894 275.249 34.3725 275.249 34.8478C275.249 35.4272 275.481 36.0294 275.943 36.6544C276.405 37.2794 277.059 37.5919 277.906 37.5919C278.433 37.5919 278.977 37.4292 279.537 37.1037C280.103 36.7716 280.555 36.3452 280.894 35.8244ZM293.286 38.9005V24.5841H296.138L299.526 34.7209C299.839 35.6649 300.067 36.3712 300.21 36.84C300.373 36.3192 300.627 35.5542 300.972 34.5451L304.399 24.5841H306.948V38.9005H305.122V26.9181L300.962 38.9005H299.253L295.112 26.713V38.9005H293.286ZM316.748 37.6212C316.097 38.1746 315.469 38.5653 314.863 38.7931C314.264 39.021 313.62 39.1349 312.93 39.1349C311.79 39.1349 310.915 38.8582 310.303 38.3048C309.691 37.7449 309.385 37.0321 309.385 36.1662C309.385 35.6584 309.499 35.1961 309.726 34.7794C309.961 34.3563 310.264 34.0177 310.635 33.7638C311.012 33.5099 311.435 33.3179 311.904 33.1877C312.249 33.0965 312.77 33.0086 313.467 32.924C314.886 32.7547 315.931 32.5529 316.601 32.3185C316.608 32.0776 316.611 31.9246 316.611 31.8595C316.611 31.1434 316.445 30.6388 316.113 30.3459C315.664 29.9487 314.997 29.7502 314.111 29.7502C313.284 29.7502 312.672 29.8966 312.275 30.1896C311.885 30.4761 311.595 30.9871 311.406 31.7228L309.687 31.4884C309.844 30.7528 310.101 30.1603 310.459 29.7111C310.817 29.2554 311.334 28.9071 312.012 28.6662C312.689 28.4188 313.473 28.2951 314.365 28.2951C315.251 28.2951 315.97 28.3992 316.523 28.6076C317.077 28.8159 317.484 29.0796 317.744 29.3986C318.004 29.7111 318.187 30.1082 318.291 30.59C318.349 30.8895 318.379 31.4298 318.379 32.2111V34.5548C318.379 36.189 318.415 37.2241 318.486 37.6603C318.564 38.09 318.714 38.5034 318.935 38.9005H317.099C316.917 38.536 316.8 38.1095 316.748 37.6212ZM316.601 33.6955C315.963 33.9559 315.006 34.1772 313.73 34.3595C313.008 34.4637 312.497 34.5809 312.197 34.7111C311.898 34.8413 311.667 35.0334 311.504 35.2873C311.341 35.5347 311.26 35.8114 311.26 36.1173C311.26 36.5861 311.435 36.9767 311.787 37.2892C312.145 37.6017 312.666 37.758 313.349 37.758C314.027 37.758 314.629 37.6115 315.156 37.3185C315.683 37.019 316.071 36.6121 316.318 36.0978C316.507 35.7007 316.601 35.1147 316.601 34.34V33.6955ZM328.081 35.1017L329.809 35.3263C329.62 36.5177 329.135 37.452 328.354 38.1291C327.579 38.7996 326.626 39.1349 325.493 39.1349C324.074 39.1349 322.931 38.6727 322.065 37.7482C321.206 36.8172 320.776 35.4858 320.776 33.7541C320.776 32.6343 320.962 31.6544 321.333 30.8146C321.704 29.9748 322.267 29.3465 323.022 28.9298C323.784 28.5067 324.611 28.2951 325.503 28.2951C326.629 28.2951 327.55 28.5815 328.266 29.1544C328.982 29.7209 329.441 30.5281 329.643 31.5763L327.934 31.84C327.771 31.1434 327.482 30.6193 327.065 30.2677C326.655 29.9162 326.157 29.7404 325.571 29.7404C324.686 29.7404 323.966 30.0594 323.413 30.6974C322.859 31.3289 322.583 32.3315 322.583 33.7052C322.583 35.0985 322.85 36.1108 323.383 36.7423C323.917 37.3739 324.614 37.6896 325.473 37.6896C326.163 37.6896 326.74 37.478 327.202 37.0548C327.664 36.6317 327.957 35.9806 328.081 35.1017ZM331.513 38.9005V24.5841H333.271V29.7209C334.091 28.7703 335.126 28.2951 336.376 28.2951C337.145 28.2951 337.812 28.4481 338.378 28.7541C338.945 29.0535 339.348 29.4702 339.589 30.0041C339.837 30.5379 339.96 31.3127 339.96 32.3283V38.9005H338.203V32.3283C338.203 31.4494 338.011 30.8114 337.626 30.4142C337.249 30.0106 336.712 29.8087 336.015 29.8087C335.494 29.8087 335.003 29.9455 334.54 30.2189C334.085 30.4858 333.759 30.8504 333.564 31.3127C333.369 31.7749 333.271 32.4129 333.271 33.2267V38.9005H331.513ZM342.856 26.6056V24.5841H344.614V26.6056H342.856ZM342.856 38.9005V28.5294H344.614V38.9005H342.856ZM347.499 38.9005V28.5294H349.081V30.0041C349.843 28.8647 350.943 28.2951 352.382 28.2951C353.007 28.2951 353.58 28.409 354.101 28.6369C354.628 28.8582 355.022 29.1512 355.282 29.5158C355.543 29.8804 355.725 30.3133 355.829 30.8146C355.894 31.1401 355.927 31.7098 355.927 32.5236V38.9005H354.169V32.5919C354.169 31.8758 354.101 31.3419 353.964 30.9904C353.827 30.6323 353.583 30.3491 353.232 30.1408C352.886 29.9259 352.48 29.8185 352.011 29.8185C351.262 29.8185 350.614 30.0561 350.067 30.5314C349.527 31.0067 349.257 31.9084 349.257 33.2365V38.9005H347.499ZM365.932 35.5607L367.748 35.7853C367.461 36.8465 366.931 37.6701 366.156 38.256C365.381 38.8419 364.392 39.1349 363.187 39.1349C361.67 39.1349 360.466 38.6694 359.574 37.7384C358.689 36.8009 358.246 35.4891 358.246 33.8029C358.246 32.0581 358.695 30.7039 359.594 29.7404C360.492 28.7768 361.657 28.2951 363.09 28.2951C364.476 28.2951 365.609 28.7671 366.488 29.7111C367.367 30.6551 367.807 31.9832 367.807 33.6955C367.807 33.7996 367.803 33.9559 367.797 34.1642H360.062C360.127 35.3035 360.45 36.1759 361.029 36.7814C361.609 37.3869 362.331 37.6896 363.197 37.6896C363.842 37.6896 364.392 37.5203 364.848 37.1818C365.303 36.8433 365.665 36.3029 365.932 35.5607ZM360.16 32.7189H365.951C365.873 31.8465 365.652 31.1922 365.287 30.756C364.727 30.0789 364.001 29.7404 363.109 29.7404C362.302 29.7404 361.622 30.0106 361.068 30.5509C360.521 31.0913 360.219 31.814 360.16 32.7189ZM376.078 38.9005V24.5841H377.972V37.2111H385.023V38.9005H376.078ZM394.364 35.5607L396.18 35.7853C395.893 36.8465 395.363 37.6701 394.588 38.256C393.813 38.8419 392.824 39.1349 391.619 39.1349C390.102 39.1349 388.898 38.6694 388.006 37.7384C387.121 36.8009 386.678 35.4891 386.678 33.8029C386.678 32.0581 387.127 30.7039 388.026 29.7404C388.924 28.7768 390.089 28.2951 391.522 28.2951C392.908 28.2951 394.041 28.7671 394.92 29.7111C395.799 30.6551 396.239 31.9832 396.239 33.6955C396.239 33.7996 396.235 33.9559 396.229 34.1642H388.494C388.56 35.3035 388.882 36.1759 389.461 36.7814C390.041 37.3869 390.763 37.6896 391.629 37.6896C392.274 37.6896 392.824 37.5203 393.28 37.1818C393.735 36.8433 394.097 36.3029 394.364 35.5607ZM388.592 32.7189H394.383C394.305 31.8465 394.084 31.1922 393.719 30.756C393.159 30.0789 392.433 29.7404 391.541 29.7404C390.734 29.7404 390.054 30.0106 389.5 30.5509C388.953 31.0913 388.651 31.814 388.592 32.7189ZM405.364 37.6212C404.713 38.1746 404.085 38.5653 403.48 38.7931C402.881 39.021 402.236 39.1349 401.546 39.1349C400.407 39.1349 399.531 38.8582 398.919 38.3048C398.307 37.7449 398.001 37.0321 398.001 36.1662C398.001 35.6584 398.115 35.1961 398.343 34.7794C398.577 34.3563 398.88 34.0177 399.251 33.7638C399.629 33.5099 400.052 33.3179 400.521 33.1877C400.866 33.0965 401.386 33.0086 402.083 32.924C403.502 32.7547 404.547 32.5529 405.218 32.3185C405.224 32.0776 405.228 31.9246 405.228 31.8595C405.228 31.1434 405.062 30.6388 404.73 30.3459C404.28 29.9487 403.613 29.7502 402.728 29.7502C401.901 29.7502 401.289 29.8966 400.892 30.1896C400.501 30.4761 400.211 30.9871 400.023 31.7228L398.304 31.4884C398.46 30.7528 398.717 30.1603 399.075 29.7111C399.433 29.2554 399.951 28.9071 400.628 28.6662C401.305 28.4188 402.09 28.2951 402.982 28.2951C403.867 28.2951 404.586 28.3992 405.14 28.6076C405.693 28.8159 406.1 29.0796 406.36 29.3986C406.621 29.7111 406.803 30.1082 406.907 30.59C406.966 30.8895 406.995 31.4298 406.995 32.2111V34.5548C406.995 36.189 407.031 37.2241 407.103 37.6603C407.181 38.09 407.33 38.5034 407.552 38.9005H405.716C405.534 38.536 405.416 38.1095 405.364 37.6212ZM405.218 33.6955C404.58 33.9559 403.623 34.1772 402.347 34.3595C401.624 34.4637 401.113 34.5809 400.814 34.7111C400.514 34.8413 400.283 35.0334 400.12 35.2873C399.957 35.5347 399.876 35.8114 399.876 36.1173C399.876 36.5861 400.052 36.9767 400.403 37.2892C400.761 37.6017 401.282 37.758 401.966 37.758C402.643 37.758 403.245 37.6115 403.773 37.3185C404.3 37.019 404.687 36.6121 404.935 36.0978C405.123 35.7007 405.218 35.1147 405.218 34.34V33.6955ZM409.91 38.9005V28.5294H411.492V30.1017C411.896 29.366 412.267 28.881 412.605 28.6466C412.95 28.4123 413.328 28.2951 413.738 28.2951C414.331 28.2951 414.933 28.4839 415.545 28.8615L414.939 30.4923C414.51 30.2384 414.08 30.1115 413.65 30.1115C413.266 30.1115 412.921 30.2287 412.615 30.463C412.309 30.6909 412.091 31.0099 411.961 31.4201C411.765 32.0451 411.668 32.7287 411.668 33.4709V38.9005H409.91ZM416.79 38.9005V28.5294H418.372V30.0041C419.133 28.8647 420.234 28.2951 421.673 28.2951C422.298 28.2951 422.87 28.409 423.391 28.6369C423.919 28.8582 424.312 29.1512 424.573 29.5158C424.833 29.8804 425.016 30.3133 425.12 30.8146C425.185 31.1401 425.217 31.7098 425.217 32.5236V38.9005H423.46V32.5919C423.46 31.8758 423.391 31.3419 423.255 30.9904C423.118 30.6323 422.874 30.3491 422.522 30.1408C422.177 29.9259 421.77 29.8185 421.301 29.8185C420.553 29.8185 419.905 30.0561 419.358 30.5314C418.818 31.0067 418.548 31.9084 418.548 33.2365V38.9005H416.79ZM428.132 26.6056V24.5841H429.89V26.6056H428.132ZM428.132 38.9005V28.5294H429.89V38.9005H428.132ZM432.776 38.9005V28.5294H434.358V30.0041C435.119 28.8647 436.22 28.2951 437.658 28.2951C438.283 28.2951 438.856 28.409 439.377 28.6369C439.905 28.8582 440.298 29.1512 440.559 29.5158C440.819 29.8804 441.002 30.3133 441.106 30.8146C441.171 31.1401 441.203 31.7098 441.203 32.5236V38.9005H439.446V32.5919C439.446 31.8758 439.377 31.3419 439.24 30.9904C439.104 30.6323 438.86 30.3491 438.508 30.1408C438.163 29.9259 437.756 29.8185 437.287 29.8185C436.539 29.8185 435.891 30.0561 435.344 30.5314C434.804 31.0067 434.533 31.9084 434.533 33.2365V38.9005H432.776ZM443.786 39.7599L445.495 40.0138C445.567 40.5412 445.765 40.9253 446.091 41.1662C446.527 41.4917 447.123 41.6544 447.878 41.6544C448.692 41.6544 449.32 41.4917 449.763 41.1662C450.205 40.8406 450.505 40.3849 450.661 39.799C450.752 39.4409 450.795 38.689 450.788 37.5431C450.02 38.4481 449.063 38.9005 447.917 38.9005C446.491 38.9005 445.388 38.3862 444.607 37.3576C443.825 36.3289 443.435 35.0952 443.435 33.6564C443.435 32.6668 443.614 31.7554 443.972 30.922C444.33 30.0822 444.847 29.4344 445.524 28.9787C446.208 28.5229 447.009 28.2951 447.927 28.2951C449.151 28.2951 450.16 28.7899 450.954 29.7794V28.5294H452.575V37.4943C452.575 39.1089 452.409 40.2515 452.077 40.922C451.752 41.5991 451.231 42.133 450.515 42.5236C449.805 42.9142 448.929 43.1095 447.888 43.1095C446.651 43.1095 445.651 42.8296 444.89 42.2697C444.128 41.7163 443.76 40.8797 443.786 39.7599ZM445.241 33.5294C445.241 34.8901 445.511 35.883 446.052 36.508C446.592 37.133 447.269 37.4455 448.083 37.4455C448.89 37.4455 449.567 37.1362 450.114 36.5177C450.661 35.8927 450.935 34.9162 450.935 33.588C450.935 32.3185 450.651 31.3615 450.085 30.7169C449.525 30.0724 448.848 29.7502 448.054 29.7502C447.273 29.7502 446.608 30.0692 446.062 30.7072C445.515 31.3387 445.241 32.2794 445.241 33.5294Z" fill="#9C9C9C"/>
+<path d="M32.2841 251L38.8817 233.82H41.3309L48.3622 251H45.7724L43.7684 245.797H36.5849L34.6981 251H32.2841ZM37.2411 243.945H43.0653L41.2724 239.188C40.7255 237.742 40.3192 236.555 40.0536 235.625C39.8349 236.727 39.5263 237.82 39.1278 238.906L37.2411 243.945ZM50.1091 255.77V238.555H52.0309V240.172C52.4841 239.539 52.9958 239.066 53.5661 238.754C54.1364 238.434 54.8278 238.273 55.6403 238.273C56.7028 238.273 57.6403 238.547 58.4528 239.094C59.2653 239.641 59.8786 240.414 60.2927 241.414C60.7067 242.406 60.9138 243.496 60.9138 244.684C60.9138 245.957 60.6833 247.105 60.2224 248.129C59.7692 249.145 59.1052 249.926 58.2302 250.473C57.363 251.012 56.4489 251.281 55.488 251.281C54.7849 251.281 54.152 251.133 53.5895 250.836C53.0349 250.539 52.5778 250.164 52.2184 249.711V255.77H50.1091ZM52.0192 244.848C52.0192 246.449 52.3434 247.633 52.9919 248.398C53.6403 249.164 54.4255 249.547 55.3474 249.547C56.2849 249.547 57.0856 249.152 57.7497 248.363C58.4216 247.566 58.7575 246.336 58.7575 244.672C58.7575 243.086 58.4294 241.898 57.7731 241.109C57.1247 240.32 56.3474 239.926 55.4411 239.926C54.5427 239.926 53.7458 240.348 53.0505 241.191C52.363 242.027 52.0192 243.246 52.0192 244.848ZM63.6684 255.77V238.555H65.5903V240.172C66.0434 239.539 66.5552 239.066 67.1255 238.754C67.6958 238.434 68.3872 238.273 69.1997 238.273C70.2622 238.273 71.1997 238.547 72.0122 239.094C72.8247 239.641 73.438 240.414 73.852 241.414C74.2661 242.406 74.4731 243.496 74.4731 244.684C74.4731 245.957 74.2427 247.105 73.7817 248.129C73.3286 249.145 72.6645 249.926 71.7895 250.473C70.9224 251.012 70.0083 251.281 69.0474 251.281C68.3442 251.281 67.7114 251.133 67.1489 250.836C66.5942 250.539 66.1372 250.164 65.7778 249.711V255.77H63.6684ZM65.5786 244.848C65.5786 246.449 65.9028 247.633 66.5513 248.398C67.1997 249.164 67.9849 249.547 68.9067 249.547C69.8442 249.547 70.645 249.152 71.3091 248.363C71.9809 247.566 72.3169 246.336 72.3169 244.672C72.3169 243.086 71.9888 241.898 71.3325 241.109C70.6841 240.32 69.9067 239.926 69.0005 239.926C68.102 239.926 67.3052 240.348 66.6099 241.191C65.9224 242.027 65.5786 243.246 65.5786 244.848ZM77.1809 251V233.82H79.2903V251H77.1809ZM82.7833 236.246V233.82H84.8927V236.246H82.7833ZM82.7833 251V238.555H84.8927V251H82.7833ZM96.4364 246.441L98.5106 246.711C98.2841 248.141 97.702 249.262 96.7645 250.074C95.8349 250.879 94.6903 251.281 93.3309 251.281C91.6278 251.281 90.2567 250.727 89.2177 249.617C88.1864 248.5 87.6708 246.902 87.6708 244.824C87.6708 243.48 87.8934 242.305 88.3388 241.297C88.7841 240.289 89.4599 239.535 90.3661 239.035C91.2802 238.527 92.2724 238.273 93.3427 238.273C94.6942 238.273 95.7997 238.617 96.6591 239.305C97.5184 239.984 98.0692 240.953 98.3114 242.211L96.2606 242.527C96.0653 241.691 95.7177 241.062 95.2177 240.641C94.7255 240.219 94.1278 240.008 93.4247 240.008C92.3622 240.008 91.4989 240.391 90.8349 241.156C90.1708 241.914 89.8388 243.117 89.8388 244.766C89.8388 246.438 90.1591 247.652 90.7997 248.41C91.4403 249.168 92.2763 249.547 93.3075 249.547C94.1356 249.547 94.827 249.293 95.3817 248.785C95.9364 248.277 96.288 247.496 96.4364 246.441ZM108.636 249.465C107.855 250.129 107.101 250.598 106.375 250.871C105.656 251.145 104.883 251.281 104.054 251.281C102.687 251.281 101.636 250.949 100.902 250.285C100.168 249.613 99.8005 248.758 99.8005 247.719C99.8005 247.109 99.9372 246.555 100.211 246.055C100.492 245.547 100.855 245.141 101.3 244.836C101.754 244.531 102.261 244.301 102.824 244.145C103.238 244.035 103.863 243.93 104.699 243.828C106.402 243.625 107.656 243.383 108.461 243.102C108.468 242.812 108.472 242.629 108.472 242.551C108.472 241.691 108.273 241.086 107.875 240.734C107.336 240.258 106.535 240.02 105.472 240.02C104.48 240.02 103.746 240.195 103.269 240.547C102.8 240.891 102.453 241.504 102.226 242.387L100.164 242.105C100.351 241.223 100.66 240.512 101.09 239.973C101.519 239.426 102.14 239.008 102.953 238.719C103.765 238.422 104.707 238.273 105.777 238.273C106.84 238.273 107.703 238.398 108.367 238.648C109.031 238.898 109.519 239.215 109.832 239.598C110.144 239.973 110.363 240.449 110.488 241.027C110.558 241.387 110.593 242.035 110.593 242.973V245.785C110.593 247.746 110.636 248.988 110.722 249.512C110.816 250.027 110.996 250.523 111.261 251H109.058C108.84 250.562 108.699 250.051 108.636 249.465ZM108.461 244.754C107.695 245.066 106.547 245.332 105.015 245.551C104.148 245.676 103.535 245.816 103.175 245.973C102.816 246.129 102.539 246.359 102.343 246.664C102.148 246.961 102.05 247.293 102.05 247.66C102.05 248.223 102.261 248.691 102.683 249.066C103.113 249.441 103.738 249.629 104.558 249.629C105.371 249.629 106.093 249.453 106.726 249.102C107.359 248.742 107.824 248.254 108.121 247.637C108.347 247.16 108.461 246.457 108.461 245.527V244.754ZM118.68 249.113L118.985 250.977C118.391 251.102 117.86 251.164 117.391 251.164C116.625 251.164 116.032 251.043 115.61 250.801C115.188 250.559 114.891 250.242 114.719 249.852C114.547 249.453 114.461 248.621 114.461 247.355V240.195H112.915V238.555H114.461V235.473L116.559 234.207V238.555H118.68V240.195H116.559V247.473C116.559 248.074 116.594 248.461 116.665 248.633C116.743 248.805 116.864 248.941 117.028 249.043C117.2 249.145 117.442 249.195 117.754 249.195C117.989 249.195 118.297 249.168 118.68 249.113ZM120.966 236.246V233.82H123.075V236.246H120.966ZM120.966 251V238.555H123.075V251H120.966ZM125.713 244.777C125.713 242.473 126.354 240.766 127.635 239.656C128.705 238.734 130.01 238.273 131.549 238.273C133.26 238.273 134.658 238.836 135.744 239.961C136.83 241.078 137.373 242.625 137.373 244.602C137.373 246.203 137.131 247.465 136.647 248.387C136.17 249.301 135.471 250.012 134.549 250.52C133.635 251.027 132.635 251.281 131.549 251.281C129.807 251.281 128.397 250.723 127.318 249.605C126.248 248.488 125.713 246.879 125.713 244.777ZM127.881 244.777C127.881 246.371 128.229 247.566 128.924 248.363C129.619 249.152 130.494 249.547 131.549 249.547C132.596 249.547 133.467 249.148 134.162 248.352C134.858 247.555 135.205 246.34 135.205 244.707C135.205 243.168 134.854 242.004 134.15 241.215C133.455 240.418 132.588 240.02 131.549 240.02C130.494 240.02 129.619 240.414 128.924 241.203C128.229 241.992 127.881 243.184 127.881 244.777ZM140.058 251V238.555H141.956V240.324C142.87 238.957 144.19 238.273 145.917 238.273C146.667 238.273 147.354 238.41 147.979 238.684C148.612 238.949 149.085 239.301 149.397 239.738C149.71 240.176 149.929 240.695 150.054 241.297C150.132 241.688 150.171 242.371 150.171 243.348V251H148.061V243.43C148.061 242.57 147.979 241.93 147.815 241.508C147.651 241.078 147.358 240.738 146.936 240.488C146.522 240.23 146.034 240.102 145.472 240.102C144.573 240.102 143.796 240.387 143.14 240.957C142.491 241.527 142.167 242.609 142.167 244.203V251H140.058Z" fill="#2D2D2D"/>
+<path d="M221.911 279.512L227.409 265.196H229.45L235.31 279.512H233.151L231.482 275.176H225.495L223.923 279.512H221.911ZM226.042 273.634H230.896L229.401 269.669C228.946 268.464 228.607 267.475 228.386 266.7C228.204 267.618 227.946 268.529 227.614 269.434L226.042 273.634ZM247.238 274.493L249.133 274.971C248.736 276.527 248.019 277.716 246.984 278.536C245.956 279.35 244.696 279.757 243.205 279.757C241.662 279.757 240.405 279.444 239.435 278.819C238.472 278.188 237.736 277.276 237.228 276.085C236.727 274.893 236.476 273.614 236.476 272.247C236.476 270.756 236.76 269.457 237.326 268.35C237.899 267.237 238.71 266.394 239.758 265.821C240.812 265.242 241.971 264.952 243.234 264.952C244.667 264.952 245.871 265.316 246.848 266.046C247.824 266.775 248.504 267.8 248.889 269.122L247.023 269.561C246.691 268.52 246.21 267.761 245.578 267.286C244.946 266.811 244.152 266.573 243.195 266.573C242.095 266.573 241.174 266.837 240.432 267.364C239.696 267.891 239.178 268.601 238.879 269.493C238.579 270.378 238.43 271.293 238.43 272.237C238.43 273.454 238.605 274.519 238.957 275.43C239.315 276.335 239.868 277.012 240.617 277.462C241.366 277.911 242.176 278.135 243.049 278.135C244.11 278.135 245.008 277.829 245.744 277.217C246.48 276.606 246.978 275.697 247.238 274.493ZM251.999 279.512V265.196H253.893V279.512H251.999ZM257.443 279.512V265.196H262.374C263.488 265.196 264.337 265.264 264.923 265.401C265.744 265.59 266.443 265.932 267.023 266.426C267.778 267.065 268.341 267.882 268.712 268.878C269.09 269.867 269.279 271 269.279 272.276C269.279 273.363 269.152 274.327 268.898 275.167C268.644 276.007 268.318 276.703 267.921 277.257C267.524 277.803 267.088 278.236 266.613 278.555C266.144 278.868 265.574 279.106 264.904 279.268C264.24 279.431 263.475 279.512 262.609 279.512H257.443ZM259.337 277.823H262.394C263.338 277.823 264.077 277.735 264.611 277.559C265.151 277.384 265.581 277.136 265.9 276.817C266.349 276.368 266.697 275.766 266.945 275.01C267.199 274.249 267.326 273.328 267.326 272.247C267.326 270.749 267.078 269.6 266.583 268.8C266.095 267.992 265.499 267.452 264.796 267.178C264.289 266.983 263.471 266.885 262.345 266.885H259.337V277.823ZM281.134 279.512V266.885H276.417V265.196H287.765V266.885H283.028V279.512H281.134ZM288.932 279.512V269.141H290.514V270.714C290.917 269.978 291.288 269.493 291.627 269.259C291.972 269.024 292.349 268.907 292.76 268.907C293.352 268.907 293.954 269.096 294.566 269.473L293.961 271.104C293.531 270.85 293.101 270.723 292.672 270.723C292.288 270.723 291.943 270.841 291.637 271.075C291.331 271.303 291.112 271.622 290.982 272.032C290.787 272.657 290.689 273.341 290.689 274.083V279.512H288.932ZM302.579 278.233C301.928 278.787 301.299 279.177 300.694 279.405C300.095 279.633 299.451 279.747 298.76 279.747C297.621 279.747 296.745 279.47 296.133 278.917C295.521 278.357 295.215 277.644 295.215 276.778C295.215 276.27 295.329 275.808 295.557 275.391C295.792 274.968 296.094 274.63 296.465 274.376C296.843 274.122 297.266 273.93 297.735 273.8C298.08 273.708 298.601 273.62 299.298 273.536C300.717 273.367 301.762 273.165 302.432 272.93C302.439 272.69 302.442 272.537 302.442 272.471C302.442 271.755 302.276 271.251 301.944 270.958C301.495 270.561 300.827 270.362 299.942 270.362C299.115 270.362 298.503 270.509 298.106 270.801C297.715 271.088 297.426 271.599 297.237 272.335L295.518 272.1C295.674 271.365 295.932 270.772 296.29 270.323C296.648 269.867 297.165 269.519 297.842 269.278C298.52 269.031 299.304 268.907 300.196 268.907C301.081 268.907 301.801 269.011 302.354 269.219C302.908 269.428 303.314 269.691 303.575 270.01C303.835 270.323 304.018 270.72 304.122 271.202C304.18 271.501 304.21 272.042 304.21 272.823V275.167C304.21 276.801 304.245 277.836 304.317 278.272C304.395 278.702 304.545 279.115 304.766 279.512H302.93C302.748 279.148 302.631 278.721 302.579 278.233ZM302.432 274.307C301.794 274.568 300.837 274.789 299.561 274.971C298.839 275.076 298.327 275.193 298.028 275.323C297.729 275.453 297.497 275.645 297.335 275.899C297.172 276.147 297.09 276.423 297.09 276.729C297.09 277.198 297.266 277.589 297.618 277.901C297.976 278.214 298.497 278.37 299.18 278.37C299.857 278.37 300.46 278.223 300.987 277.93C301.514 277.631 301.902 277.224 302.149 276.71C302.338 276.313 302.432 275.727 302.432 274.952V274.307ZM307.144 279.512V269.141H308.726V270.616C309.488 269.477 310.588 268.907 312.027 268.907C312.652 268.907 313.225 269.021 313.746 269.249C314.273 269.47 314.667 269.763 314.927 270.128C315.188 270.492 315.37 270.925 315.474 271.426C315.539 271.752 315.572 272.322 315.572 273.135V279.512H313.814V273.204C313.814 272.488 313.746 271.954 313.609 271.602C313.472 271.244 313.228 270.961 312.876 270.753C312.531 270.538 312.124 270.43 311.656 270.43C310.907 270.43 310.259 270.668 309.712 271.143C309.172 271.619 308.902 272.52 308.902 273.848V279.512H307.144ZM317.774 276.417L319.512 276.143C319.61 276.84 319.88 277.374 320.323 277.745C320.772 278.116 321.397 278.301 322.198 278.301C323.005 278.301 323.604 278.139 323.994 277.813C324.385 277.481 324.58 277.094 324.58 276.651C324.58 276.254 324.408 275.941 324.063 275.714C323.822 275.557 323.223 275.359 322.266 275.118C320.977 274.792 320.082 274.512 319.58 274.278C319.086 274.037 318.708 273.708 318.448 273.292C318.194 272.869 318.067 272.403 318.067 271.895C318.067 271.433 318.171 271.007 318.379 270.616C318.594 270.219 318.884 269.89 319.248 269.63C319.522 269.428 319.893 269.259 320.362 269.122C320.837 268.979 321.345 268.907 321.885 268.907C322.699 268.907 323.412 269.024 324.024 269.259C324.642 269.493 325.098 269.812 325.391 270.216C325.684 270.613 325.886 271.147 325.996 271.817L324.278 272.051C324.199 271.518 323.972 271.101 323.594 270.801C323.223 270.502 322.696 270.352 322.012 270.352C321.205 270.352 320.629 270.486 320.283 270.753C319.938 271.02 319.766 271.332 319.766 271.69C319.766 271.918 319.837 272.123 319.981 272.305C320.124 272.494 320.349 272.65 320.655 272.774C320.83 272.839 321.348 272.989 322.207 273.223C323.451 273.555 324.317 273.829 324.805 274.044C325.3 274.252 325.687 274.558 325.967 274.962C326.247 275.365 326.387 275.867 326.387 276.466C326.387 277.051 326.214 277.605 325.869 278.126C325.531 278.64 325.039 279.04 324.395 279.327C323.75 279.607 323.021 279.747 322.207 279.747C320.86 279.747 319.831 279.467 319.121 278.907C318.418 278.347 317.969 277.517 317.774 276.417ZM335.444 278.233C334.793 278.787 334.165 279.177 333.56 279.405C332.961 279.633 332.316 279.747 331.626 279.747C330.487 279.747 329.611 279.47 328.999 278.917C328.387 278.357 328.081 277.644 328.081 276.778C328.081 276.27 328.195 275.808 328.423 275.391C328.657 274.968 328.96 274.63 329.331 274.376C329.709 274.122 330.132 273.93 330.601 273.8C330.946 273.708 331.467 273.62 332.163 273.536C333.582 273.367 334.627 273.165 335.298 272.93C335.304 272.69 335.308 272.537 335.308 272.471C335.308 271.755 335.142 271.251 334.81 270.958C334.36 270.561 333.693 270.362 332.808 270.362C331.981 270.362 331.369 270.509 330.972 270.801C330.581 271.088 330.291 271.599 330.103 272.335L328.384 272.1C328.54 271.365 328.797 270.772 329.155 270.323C329.513 269.867 330.031 269.519 330.708 269.278C331.385 269.031 332.17 268.907 333.062 268.907C333.947 268.907 334.666 269.011 335.22 269.219C335.773 269.428 336.18 269.691 336.44 270.01C336.701 270.323 336.883 270.72 336.987 271.202C337.046 271.501 337.075 272.042 337.075 272.823V275.167C337.075 276.801 337.111 277.836 337.183 278.272C337.261 278.702 337.411 279.115 337.632 279.512H335.796C335.614 279.148 335.496 278.721 335.444 278.233ZM335.298 274.307C334.66 274.568 333.703 274.789 332.427 274.971C331.704 275.076 331.193 275.193 330.894 275.323C330.594 275.453 330.363 275.645 330.2 275.899C330.037 276.147 329.956 276.423 329.956 276.729C329.956 277.198 330.132 277.589 330.483 277.901C330.842 278.214 331.362 278.37 332.046 278.37C332.723 278.37 333.325 278.223 333.853 277.93C334.38 277.631 334.767 277.224 335.015 276.71C335.204 276.313 335.298 275.727 335.298 274.952V274.307ZM346.777 275.714L348.506 275.938C348.317 277.13 347.832 278.064 347.051 278.741C346.276 279.412 345.322 279.747 344.189 279.747C342.77 279.747 341.627 279.285 340.762 278.36C339.902 277.429 339.473 276.098 339.473 274.366C339.473 273.246 339.658 272.266 340.029 271.426C340.4 270.587 340.963 269.958 341.719 269.542C342.48 269.119 343.307 268.907 344.199 268.907C345.325 268.907 346.247 269.193 346.963 269.766C347.679 270.333 348.138 271.14 348.34 272.188L346.631 272.452C346.468 271.755 346.178 271.231 345.762 270.88C345.351 270.528 344.853 270.352 344.267 270.352C343.382 270.352 342.663 270.671 342.109 271.309C341.556 271.941 341.279 272.943 341.279 274.317C341.279 275.71 341.546 276.723 342.08 277.354C342.614 277.986 343.31 278.301 344.17 278.301C344.86 278.301 345.436 278.09 345.898 277.667C346.361 277.244 346.654 276.592 346.777 275.714ZM354.048 277.94L354.301 279.493C353.807 279.597 353.364 279.649 352.973 279.649C352.335 279.649 351.84 279.548 351.489 279.346C351.137 279.145 350.89 278.881 350.747 278.555C350.604 278.223 350.532 277.53 350.532 276.475V270.509H349.243V269.141H350.532V266.573L352.28 265.518V269.141H354.048V270.509H352.28V276.573C352.28 277.074 352.309 277.397 352.368 277.54C352.433 277.683 352.534 277.797 352.671 277.882C352.814 277.966 353.016 278.009 353.276 278.009C353.471 278.009 353.729 277.986 354.048 277.94ZM355.986 267.217V265.196H357.744V267.217H355.986ZM355.986 279.512V269.141H357.744V279.512H355.986ZM359.975 274.327C359.975 272.406 360.509 270.984 361.576 270.059C362.468 269.291 363.556 268.907 364.838 268.907C366.264 268.907 367.429 269.376 368.334 270.313C369.239 271.244 369.692 272.533 369.692 274.18C369.692 275.515 369.49 276.566 369.086 277.335C368.689 278.096 368.106 278.689 367.338 279.112C366.576 279.535 365.743 279.747 364.838 279.747C363.386 279.747 362.211 279.281 361.313 278.35C360.421 277.419 359.975 276.078 359.975 274.327ZM361.782 274.327C361.782 275.655 362.071 276.651 362.651 277.315C363.23 277.973 363.959 278.301 364.838 278.301C365.711 278.301 366.436 277.969 367.016 277.305C367.595 276.641 367.885 275.629 367.885 274.268C367.885 272.986 367.592 272.016 367.006 271.358C366.427 270.694 365.704 270.362 364.838 270.362C363.959 270.362 363.23 270.691 362.651 271.348C362.071 272.006 361.782 272.999 361.782 274.327ZM371.962 279.512V269.141H373.544V270.616C374.306 269.477 375.406 268.907 376.845 268.907C377.47 268.907 378.043 269.021 378.564 269.249C379.091 269.47 379.485 269.763 379.745 270.128C380.006 270.492 380.188 270.925 380.292 271.426C380.357 271.752 380.39 272.322 380.39 273.135V279.512H378.632V273.204C378.632 272.488 378.564 271.954 378.427 271.602C378.29 271.244 378.046 270.961 377.694 270.753C377.349 270.538 376.942 270.43 376.474 270.43C375.725 270.43 375.077 270.668 374.53 271.143C373.99 271.619 373.72 272.52 373.72 273.848V279.512H371.962ZM382.592 276.417L384.33 276.143C384.428 276.84 384.698 277.374 385.14 277.745C385.59 278.116 386.215 278.301 387.015 278.301C387.823 278.301 388.422 278.139 388.812 277.813C389.203 277.481 389.398 277.094 389.398 276.651C389.398 276.254 389.226 275.941 388.881 275.714C388.64 275.557 388.041 275.359 387.084 275.118C385.795 274.792 384.9 274.512 384.398 274.278C383.904 274.037 383.526 273.708 383.265 273.292C383.012 272.869 382.885 272.403 382.885 271.895C382.885 271.433 382.989 271.007 383.197 270.616C383.412 270.219 383.702 269.89 384.066 269.63C384.34 269.428 384.711 269.259 385.18 269.122C385.655 268.979 386.163 268.907 386.703 268.907C387.517 268.907 388.23 269.024 388.842 269.259C389.46 269.493 389.916 269.812 390.209 270.216C390.502 270.613 390.704 271.147 390.814 271.817L389.096 272.051C389.017 271.518 388.79 271.101 388.412 270.801C388.041 270.502 387.514 270.352 386.83 270.352C386.023 270.352 385.446 270.486 385.101 270.753C384.756 271.02 384.584 271.332 384.584 271.69C384.584 271.918 384.655 272.123 384.799 272.305C384.942 272.494 385.167 272.65 385.473 272.774C385.648 272.839 386.166 272.989 387.025 273.223C388.269 273.555 389.135 273.829 389.623 274.044C390.118 274.252 390.505 274.558 390.785 274.962C391.065 275.365 391.205 275.867 391.205 276.466C391.205 277.051 391.032 277.605 390.687 278.126C390.349 278.64 389.857 279.04 389.213 279.327C388.568 279.607 387.839 279.747 387.025 279.747C385.678 279.747 384.649 279.467 383.939 278.907C383.236 278.347 382.787 277.517 382.592 276.417Z" fill="#9C9C9C"/>
+</svg>
diff --git a/public/img/features/key-value/hero.svg b/public/img/features/key-value/hero.svg
new file mode 100644
index 0000000..b236333
--- /dev/null
+++ b/public/img/features/key-value/hero.svg
@@ -0,0 +1,54 @@
+<svg width="592" height="687" viewBox="0 0 592 687" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M572.381 268.222L590.323 257.863L590.323 629.531L572.381 639.889L572.381 268.222Z" fill="#0070CC" stroke="white"/>
+<path d="M145.232 0.889877L590.323 257.863L572.381 268.222L127.291 11.2484L145.232 0.889877Z" fill="#0070CC" stroke="white"/>
+<path d="M127.291 11.2495L572.381 268.223L572.381 639.89L127.291 382.917L127.291 11.2495Z" fill="#0070CC" stroke="white"/>
+<path d="M150.346 80C150.346 78.8954 151.122 78.4477 152.078 79L543.327 304.888C544.284 305.44 545.059 306.783 545.059 307.888L545.059 593.927C545.059 595.031 544.284 595.479 543.327 594.927L152.078 369.039C151.122 368.487 150.346 367.143 150.346 366.039L150.346 80Z" fill="#0070CC" stroke="white"/>
+<mask id="path-5-inside-1_3:159" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M164.7 59.873C164.7 64.4497 161.487 66.3048 157.523 64.0165C153.56 61.7281 150.346 56.1629 150.346 51.5862C150.346 47.0095 153.56 45.1545 157.523 47.4428C161.487 49.7311 164.7 55.2964 164.7 59.873ZM185.935 72.3032C185.935 76.8798 182.722 78.7349 178.758 76.4466C174.795 74.1582 171.581 68.593 171.581 64.0163C171.581 59.4397 174.795 57.5846 178.758 59.8729C182.722 62.1613 185.935 67.7265 185.935 72.3032ZM199.734 88.8769C203.698 91.1653 206.911 89.3102 206.911 84.7335C206.911 80.1568 203.698 74.5916 199.734 72.3033C195.771 70.0149 192.557 71.87 192.557 76.4467C192.557 81.0234 195.771 86.5886 199.734 88.8769Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M164.7 59.873C164.7 64.4497 161.487 66.3048 157.523 64.0165C153.56 61.7281 150.346 56.1629 150.346 51.5862C150.346 47.0095 153.56 45.1545 157.523 47.4428C161.487 49.7311 164.7 55.2964 164.7 59.873ZM185.935 72.3032C185.935 76.8798 182.722 78.7349 178.758 76.4466C174.795 74.1582 171.581 68.593 171.581 64.0163C171.581 59.4397 174.795 57.5846 178.758 59.8729C182.722 62.1613 185.935 67.7265 185.935 72.3032ZM199.734 88.8769C203.698 91.1653 206.911 89.3102 206.911 84.7335C206.911 80.1568 203.698 74.5916 199.734 72.3033C195.771 70.0149 192.557 71.87 192.557 76.4467C192.557 81.0234 195.771 86.5886 199.734 88.8769Z" fill="#0070CC"/>
+<path d="M157.523 64.0165L157.023 64.8825L157.523 64.0165ZM178.758 76.4466L179.258 75.5805L178.758 76.4466ZM178.758 59.8729L178.258 60.739V60.739L178.758 59.8729ZM199.734 88.8769L199.234 89.7429L199.734 88.8769ZM199.734 72.3033L199.234 73.1693L199.734 72.3033ZM157.023 64.8825C159.187 66.1318 161.381 66.3766 163.098 65.3852C164.815 64.3938 165.7 62.3718 165.7 59.873H163.7C163.7 61.951 162.978 63.1449 162.098 63.6531C161.217 64.1613 159.823 64.1894 158.023 63.1504L157.023 64.8825ZM149.346 51.5862C149.346 54.0914 150.219 56.7983 151.582 59.1595C152.946 61.5206 154.854 63.6299 157.023 64.8825L158.023 63.1504C156.229 62.1147 154.549 60.2972 153.314 58.1595C152.08 56.0218 151.346 53.6577 151.346 51.5862H149.346ZM158.023 46.5768C155.859 45.3274 153.666 45.0827 151.948 46.0741C150.231 47.0655 149.346 49.0875 149.346 51.5862H151.346C151.346 49.5082 152.068 48.3144 152.948 47.8061C153.829 47.2979 155.223 47.2698 157.023 48.3088L158.023 46.5768ZM165.7 59.873C165.7 57.3679 164.827 54.661 163.464 52.2998C162.101 49.9386 160.193 47.8294 158.023 46.5768L157.023 48.3088C158.817 49.3446 160.497 51.1621 161.732 53.2998C162.966 55.4375 163.7 57.8015 163.7 59.873H165.7ZM178.258 77.3126C180.422 78.562 182.616 78.8067 184.333 77.8153C186.05 76.8239 186.935 74.8019 186.935 72.3032H184.935C184.935 74.3811 184.213 75.575 183.333 76.0832C182.452 76.5914 181.058 76.6195 179.258 75.5805L178.258 77.3126ZM170.581 64.0163C170.581 66.5215 171.454 69.2284 172.817 71.5896C174.181 73.9508 176.088 76.06 178.258 77.3126L179.258 75.5805C177.464 74.5448 175.784 72.7273 174.549 70.5896C173.315 68.4519 172.581 66.0878 172.581 64.0163H170.581ZM179.258 59.0069C177.094 57.7575 174.901 57.5128 173.183 58.5042C171.466 59.4956 170.581 61.5176 170.581 64.0163H172.581C172.581 61.9384 173.303 60.7445 174.183 60.2363C175.064 59.7281 176.458 59.7 178.258 60.739L179.258 59.0069ZM186.935 72.3032C186.935 69.798 186.062 67.0911 184.699 64.7299C183.335 62.3688 181.428 60.2595 179.258 59.0069L178.258 60.739C180.052 61.7747 181.732 63.5922 182.967 65.7299C184.201 67.8676 184.935 70.2317 184.935 72.3032H186.935ZM205.911 84.7335C205.911 86.8115 205.189 88.0053 204.309 88.5136C203.428 89.0218 202.034 89.0499 200.234 88.0109L199.234 89.7429C201.398 90.9923 203.592 91.237 205.309 90.2456C207.026 89.2542 207.911 87.2322 207.911 84.7335H205.911ZM199.234 73.1693C201.028 74.205 202.708 76.0226 203.943 78.1602C205.177 80.2979 205.911 82.662 205.911 84.7335H207.911C207.911 82.2283 207.038 79.5214 205.675 77.1602C204.312 74.7991 202.404 72.6898 200.234 71.4372L199.234 73.1693ZM193.557 76.4467C193.557 74.3687 194.279 73.1748 195.159 72.6666C196.04 72.1584 197.435 72.1303 199.234 73.1693L200.234 71.4372C198.07 70.1879 195.877 69.9431 194.159 70.9346C192.442 71.926 191.557 73.948 191.557 76.4467H193.557ZM200.234 88.0109C198.44 86.9751 196.76 85.1576 195.525 83.0199C194.291 80.8822 193.557 78.5182 193.557 76.4467H191.557C191.557 78.9519 192.43 81.6588 193.793 84.0199C195.157 86.3811 197.065 88.4903 199.234 89.7429L200.234 88.0109Z" fill="white" mask="url(#path-5-inside-1_3:159)"/>
+<rect width="72.9525" height="12.195" transform="matrix(-0.866025 -0.5 -2.20305e-08 1 365.101 368.756)" fill="#0070CC" stroke="white"/>
+<rect width="72.9525" height="12.195" transform="matrix(-0.866025 -0.5 -2.20305e-08 1 244.009 298.844)" fill="#0070CC" stroke="white"/>
+<rect width="48.635" height="12.195" transform="matrix(-0.866025 -0.5 -2.20305e-08 1 423.015 402.193)" fill="#0070CC" stroke="white"/>
+<rect width="30.3969" height="12.1949" transform="matrix(-0.866025 -0.499998 -2.20306e-08 1 286.128 323.162)" fill="#0070CC" stroke="white"/>
+<rect width="48.6351" height="12.195" transform="matrix(0.866025 0.499999 -2.20305e-08 1 180.83 213.589)" fill="#0070CC" stroke="white"/>
+<rect width="42.5557" height="12.195" transform="matrix(-0.866025 -0.5 -2.20305e-08 1 217.684 308.037)" fill="#0070CC" stroke="white"/>
+<rect width="48.635" height="12.195" transform="matrix(-0.866025 -0.5 -2.20305e-08 1 449.34 441.782)" fill="#0070CC" stroke="white"/>
+<rect width="109.429" height="12.195" transform="matrix(-0.866025 -0.5 -2.20305e-08 1 391.426 408.346)" fill="#0070CC" stroke="white"/>
+<rect width="54.7144" height="12.195" transform="matrix(-0.866025 -0.5 -2.20305e-08 1 280.863 344.512)" fill="#0070CC" stroke="white"/>
+<rect width="42.5557" height="12.195" transform="matrix(0.866025 0.500001 -2.20305e-08 1 354.571 338.288)" fill="#0070CC" stroke="white"/>
+<rect width="109.429" height="12.195" transform="matrix(0.866025 0.5 -2.20305e-08 1 180.83 237.978)" fill="#0070CC" stroke="white"/>
+<rect width="54.7144" height="12.195" transform="matrix(0.866025 0.5 -2.20305e-08 1 291.393 301.811)" fill="#0070CC" stroke="white"/>
+<rect width="72.9525" height="12.195" transform="matrix(0.866025 0.5 -2.20305e-08 1 238.744 167.993)" fill="#0070CC" stroke="white"/>
+<rect width="48.6351" height="12.195" transform="matrix(0.866025 0.5 -2.20305e-08 1 180.83 134.556)" fill="#0070CC" stroke="white"/>
+<rect width="55.9361" height="12.195" transform="matrix(0.866025 0.5 -2.20305e-08 1 317.717 213.588)" fill="#0070CC" stroke="white"/>
+<rect width="109.429" height="12.195" transform="matrix(0.866025 0.5 -2.20305e-08 1 180.83 158.947)" fill="#0070CC" stroke="white"/>
+<rect width="54.7144" height="12.195" transform="matrix(0.866025 0.5 -2.20305e-08 1 291.393 222.779)" fill="#0070CC" stroke="white"/>
+<path d="M446.381 314.222L464.323 303.863L464.323 675.531L446.381 685.889L446.381 314.222Z" fill="#0070CC" stroke="white"/>
+<path d="M19.2321 46.8899L464.323 303.863L446.381 314.222L1.29056 57.2484L19.2321 46.8899Z" fill="#0070CC" stroke="white"/>
+<path d="M1.29053 57.2495L446.381 314.223L446.381 685.89L1.29052 428.917L1.29053 57.2495Z" fill="#0070CC" stroke="white"/>
+<path d="M24.3463 126C24.3463 124.895 25.1218 124.448 26.0784 125L417.327 350.888C418.284 351.44 419.059 352.783 419.059 353.888L419.059 639.927C419.059 641.031 418.284 641.479 417.327 640.927L26.0784 415.039C25.1218 414.487 24.3463 413.143 24.3463 412.039L24.3463 126Z" fill="#0070CC" stroke="white"/>
+<mask id="path-28-inside-2_3:159" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M38.6997 105.873C38.6997 110.45 35.4866 112.305 31.5231 110.016C27.5595 107.728 24.3465 102.163 24.3465 97.5862C24.3465 93.0095 27.5595 91.1545 31.5231 93.4428C35.4866 95.7311 38.6997 101.296 38.6997 105.873ZM59.9346 118.303C59.9346 122.88 56.7216 124.735 52.758 122.447C48.7945 120.158 45.5814 114.593 45.5814 110.016C45.5814 105.44 48.7945 103.585 52.758 105.873C56.7216 108.161 59.9346 113.726 59.9346 118.303ZM73.7341 134.877C77.6976 137.165 80.9107 135.31 80.9107 130.733C80.9107 126.157 77.6976 120.592 73.7341 118.303C69.7706 116.015 66.5575 117.87 66.5575 122.447C66.5575 127.023 69.7706 132.589 73.7341 134.877Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M38.6997 105.873C38.6997 110.45 35.4866 112.305 31.5231 110.016C27.5595 107.728 24.3465 102.163 24.3465 97.5862C24.3465 93.0095 27.5595 91.1545 31.5231 93.4428C35.4866 95.7311 38.6997 101.296 38.6997 105.873ZM59.9346 118.303C59.9346 122.88 56.7216 124.735 52.758 122.447C48.7945 120.158 45.5814 114.593 45.5814 110.016C45.5814 105.44 48.7945 103.585 52.758 105.873C56.7216 108.161 59.9346 113.726 59.9346 118.303ZM73.7341 134.877C77.6976 137.165 80.9107 135.31 80.9107 130.733C80.9107 126.157 77.6976 120.592 73.7341 118.303C69.7706 116.015 66.5575 117.87 66.5575 122.447C66.5575 127.023 69.7706 132.589 73.7341 134.877Z" fill="#0070CC"/>
+<path d="M31.5231 110.016L31.0231 110.882L31.5231 110.016ZM52.758 122.447L53.258 121.581L52.758 122.447ZM52.758 105.873L52.258 106.739L52.758 105.873ZM73.7341 134.877L73.2341 135.743L73.7341 134.877ZM73.7341 118.303L73.2341 119.169L73.7341 118.303ZM31.0231 110.882C33.187 112.132 35.3805 112.377 37.0977 111.385C38.8149 110.394 39.6997 108.372 39.6997 105.873H37.6997C37.6997 107.951 36.978 109.145 36.0977 109.653C35.2174 110.161 33.8227 110.189 32.0231 109.15L31.0231 110.882ZM23.3465 97.5862C23.3465 100.091 24.2192 102.798 25.5824 105.159C26.9456 107.521 28.8535 109.63 31.0231 110.882L32.0231 109.15C30.2291 108.115 28.5487 106.297 27.3145 104.159C26.0803 102.022 25.3465 99.6577 25.3465 97.5862H23.3465ZM32.0231 92.5768C29.8591 91.3274 27.6656 91.0827 25.9484 92.0741C24.2313 93.0655 23.3465 95.0875 23.3465 97.5862H25.3465C25.3465 95.5082 26.0682 94.3144 26.9484 93.8061C27.8287 93.2979 29.2235 93.2698 31.0231 94.3088L32.0231 92.5768ZM39.6997 105.873C39.6997 103.368 38.8269 100.661 37.4637 98.2998C36.1005 95.9386 34.1926 93.8294 32.0231 92.5768L31.0231 94.3088C32.817 95.3446 34.4975 97.1621 35.7317 99.2998C36.9659 101.437 37.6997 103.802 37.6997 105.873H39.6997ZM52.258 123.313C54.422 124.562 56.6155 124.807 58.3327 123.815C60.0498 122.824 60.9346 120.802 60.9346 118.303H58.9346C58.9346 120.381 58.2129 121.575 57.3327 122.083C56.4524 122.591 55.0576 122.62 53.258 121.581L52.258 123.313ZM44.5814 110.016C44.5814 112.522 45.4542 115.228 46.8174 117.59C48.1806 119.951 50.0885 122.06 52.258 123.313L53.258 121.581C51.4641 120.545 49.7836 118.727 48.5494 116.59C47.3153 114.452 46.5814 112.088 46.5814 110.016H44.5814ZM53.258 105.007C51.0941 103.758 48.9006 103.513 47.1834 104.504C45.4663 105.496 44.5814 107.518 44.5814 110.016H46.5814C46.5814 107.938 47.3032 106.744 48.1834 106.236C49.0637 105.728 50.4585 105.7 52.258 106.739L53.258 105.007ZM60.9346 118.303C60.9346 115.798 60.0619 113.091 58.6987 110.73C57.3355 108.369 55.4276 106.259 53.258 105.007L52.258 106.739C54.052 107.775 55.7324 109.592 56.9666 111.73C58.2008 113.868 58.9346 116.232 58.9346 118.303H60.9346ZM79.9107 130.733C79.9107 132.811 79.1889 134.005 78.3087 134.514C77.4284 135.022 76.0337 135.05 74.2341 134.011L73.2341 135.743C75.398 136.992 77.5915 137.237 79.3087 136.246C81.0259 135.254 81.9107 133.232 81.9107 130.733H79.9107ZM73.2341 119.169C75.0281 120.205 76.7085 122.023 77.9427 124.16C79.1769 126.298 79.9107 128.662 79.9107 130.733H81.9107C81.9107 128.228 81.0379 125.521 79.6747 123.16C78.3115 120.799 76.4036 118.69 74.2341 117.437L73.2341 119.169ZM67.5575 122.447C67.5575 120.369 68.2792 119.175 69.1595 118.667C70.0397 118.158 71.4345 118.13 73.2341 119.169L74.2341 117.437C72.0701 116.188 69.8766 115.943 68.1595 116.935C66.4423 117.926 65.5575 119.948 65.5575 122.447H67.5575ZM74.2341 134.011C72.4401 132.975 70.7597 131.158 69.5255 129.02C68.2913 126.882 67.5575 124.518 67.5575 122.447H65.5575C65.5575 124.952 66.4302 127.659 67.7934 130.02C69.1567 132.381 71.0645 134.49 73.2341 135.743L74.2341 134.011Z" fill="white" mask="url(#path-28-inside-2_3:159)"/>
+<rect width="72.9525" height="12.195" transform="matrix(-0.866025 -0.5 -2.20305e-08 1 239.101 414.756)" fill="#0070CC" stroke="white"/>
+<rect width="72.9525" height="12.195" transform="matrix(-0.866025 -0.5 -2.20305e-08 1 118.009 344.844)" fill="#0070CC" stroke="white"/>
+<rect width="48.635" height="12.195" transform="matrix(-0.866025 -0.5 -2.20305e-08 1 297.015 448.193)" fill="#0070CC" stroke="white"/>
+<rect width="30.3969" height="12.1949" transform="matrix(-0.866025 -0.499998 -2.20306e-08 1 160.128 369.162)" fill="#0070CC" stroke="white"/>
+<rect width="48.6351" height="12.195" transform="matrix(0.866025 0.499999 -2.20305e-08 1 54.8298 259.589)" fill="#0070CC" stroke="white"/>
+<rect width="42.5557" height="12.195" transform="matrix(-0.866025 -0.5 -2.20305e-08 1 91.6841 354.037)" fill="#0070CC" stroke="white"/>
+<rect width="48.635" height="12.195" transform="matrix(-0.866025 -0.5 -2.20305e-08 1 323.34 487.782)" fill="#0070CC" stroke="white"/>
+<rect width="109.429" height="12.195" transform="matrix(-0.866025 -0.5 -2.20305e-08 1 265.426 454.346)" fill="#0070CC" stroke="white"/>
+<rect width="54.7144" height="12.195" transform="matrix(-0.866025 -0.5 -2.20305e-08 1 154.863 390.512)" fill="#0070CC" stroke="white"/>
+<rect width="42.5557" height="12.195" transform="matrix(0.866025 0.500001 -2.20305e-08 1 228.571 384.288)" fill="#0070CC" stroke="white"/>
+<rect width="109.429" height="12.195" transform="matrix(0.866025 0.5 -2.20305e-08 1 54.8298 283.978)" fill="#0070CC" stroke="white"/>
+<rect width="54.7144" height="12.195" transform="matrix(0.866025 0.5 -2.20305e-08 1 165.393 347.811)" fill="#0070CC" stroke="white"/>
+<rect width="72.9525" height="12.195" transform="matrix(0.866025 0.5 -2.20305e-08 1 112.744 213.993)" fill="#0070CC" stroke="white"/>
+<rect width="48.6351" height="12.195" transform="matrix(0.866025 0.5 -2.20305e-08 1 54.8298 180.556)" fill="#0070CC" stroke="white"/>
+<rect width="55.9361" height="12.195" transform="matrix(0.866025 0.5 -2.20305e-08 1 191.717 259.588)" fill="#0070CC" stroke="white"/>
+<rect width="109.429" height="12.195" transform="matrix(0.866025 0.5 -2.20305e-08 1 54.8298 204.947)" fill="#0070CC" stroke="white"/>
+<rect width="54.7144" height="12.195" transform="matrix(0.866025 0.5 -2.20305e-08 1 165.393 268.779)" fill="#0070CC" stroke="white"/>
+</svg>
diff --git a/public/img/features/key-value/icon-library.svg b/public/img/features/key-value/icon-library.svg
new file mode 100644
index 0000000..85ac60f
--- /dev/null
+++ b/public/img/features/key-value/icon-library.svg
@@ -0,0 +1,4 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M7 3H9V21H7V3ZM4 3H6V21H4V3ZM10 3H12V21H10V3ZM19.062 20.792L12.839 3.902L14.716 3.21L20.939 20.1L19.062 20.792Z" fill="#0070CC"/>
+<path d="M7 3H9V21H7V3ZM4 3H6V21H4V3ZM10 3H12V21H10V3ZM19.062 20.792L12.839 3.902L14.716 3.21L20.939 20.1L19.062 20.792Z" fill="#0070CC"/>
+</svg>
diff --git a/public/img/features/key-value/key-value-api-2.svg b/public/img/features/key-value/key-value-api-2.svg
new file mode 100644
index 0000000..94322c1
--- /dev/null
+++ b/public/img/features/key-value/key-value-api-2.svg
@@ -0,0 +1,50 @@
+<svg width="443" height="123" viewBox="0 0 443 123" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M349.51 85.9055V17.6377C349.51 17.6377 357.744 24.5004 383.336 24.5004C408.928 24.5004 418.052 16.8534 418.052 16.8534V85.9055C418.052 85.9055 414.367 94.291 383.336 94.6134C352.305 94.9359 349.51 85.9055 349.51 85.9055Z" fill="white"/>
+<path d="M418.848 15.4835C418.848 21.5753 403.319 26.5136 383.754 26.5136C364.189 26.5136 348.66 21.5753 348.66 15.4835C348.66 9.39173 364.189 4.45337 383.754 4.45337C403.319 4.45337 418.848 9.39173 418.848 15.4835Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M415.246 18.6274C416.849 17.4264 417.402 16.3493 417.402 15.4835C417.402 14.6177 416.849 13.5406 415.246 12.3396C413.666 11.156 411.284 10.0284 408.201 9.05576C402.051 7.11579 393.432 5.89244 383.754 5.89244C374.076 5.89244 365.458 7.11579 359.308 9.05576C356.224 10.0284 353.842 11.156 352.263 12.3396C350.659 13.5406 350.107 14.6177 350.107 15.4835C350.107 16.3493 350.659 17.4264 352.263 18.6274C353.842 19.811 356.224 20.9386 359.308 21.9112C365.458 23.8512 374.076 25.0746 383.754 25.0746C393.432 25.0746 402.051 23.8512 408.201 21.9112C411.284 20.9386 413.666 19.811 415.246 18.6274ZM383.754 26.5136C403.319 26.5136 418.848 21.5753 418.848 15.4835C418.848 9.39173 403.319 4.45337 383.754 4.45337C364.189 4.45337 348.66 9.39173 348.66 15.4835C348.66 21.5753 364.189 26.5136 383.754 26.5136Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M348.607 84.1889L348.607 16.0741L350.054 16.0741L350.054 84.1889L348.607 84.1889Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M417.463 84.2598L417.542 15.0744L418.989 15.076L418.91 84.2614L417.463 84.2598Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M359.626 90.9926C365.769 92.8829 374.299 94.0631 383.752 94.0631C393.206 94.0631 401.736 92.8829 407.879 90.9926C410.954 90.046 413.391 88.9337 415.042 87.732C416.709 86.5193 417.451 85.3133 417.451 84.1894H418.898C418.898 85.9907 417.713 87.5716 415.897 88.8935C414.064 90.2265 411.46 91.3969 408.306 92.3673C401.991 94.311 393.31 95.5022 383.752 95.5022C374.195 95.5022 365.514 94.311 359.199 92.3673C356.045 91.3969 353.44 90.2265 351.608 88.8935C349.791 87.5716 348.607 85.9907 348.607 84.1894H350.054C350.054 85.3133 350.796 86.5193 352.463 87.732C354.114 88.9337 356.551 90.046 359.626 90.9926Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M359.626 44.7566C365.769 46.6469 374.299 47.8271 383.752 47.8271C393.206 47.8271 401.736 46.6469 407.879 44.7566C410.954 43.81 413.391 42.6977 415.042 41.496C416.709 40.2832 417.451 39.0773 417.451 37.9534H418.898C418.898 39.7547 417.713 41.3355 415.897 42.6575C414.064 43.9905 411.46 45.1608 408.306 46.1313C401.991 48.075 393.31 49.2662 383.752 49.2662C374.195 49.2662 365.514 48.075 359.199 46.1313C356.045 45.1608 353.44 43.9905 351.608 42.6575C349.791 41.3355 348.607 39.7547 348.607 37.9534H350.054C350.054 39.0773 350.796 40.2832 352.463 41.496C354.114 42.6977 356.551 43.81 359.626 44.7566Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M359.626 68.0339C365.769 69.9243 374.299 71.1044 383.752 71.1044C393.206 71.1044 401.736 69.9243 407.879 68.0339C410.954 67.0874 413.391 65.9751 415.042 64.7734C416.709 63.5606 417.451 62.3546 417.451 61.2307H418.898C418.898 63.032 417.713 64.6129 415.897 65.9348C414.064 67.2678 411.46 68.4382 408.306 69.4087C401.991 71.3523 393.31 72.5435 383.752 72.5435C374.195 72.5435 365.514 71.3523 359.199 69.4087C356.045 68.4382 353.44 67.2678 351.608 65.9348C349.791 64.6129 348.607 63.032 348.607 61.2307H350.054C350.054 62.3546 350.796 63.5606 352.463 64.7734C354.114 65.9751 356.551 67.0874 359.626 68.0339Z" fill="#ED1C24"/>
+<path d="M42.5189 61.5355L85.0608 72.7202L85.0608 11.9332L42.5189 0.748455L0.723447 13.6731L0.723457 74.2076L42.5189 61.5355Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M0 75.1793L-1.74293e-05 13.1433L42.5027 -1.13886e-05L85.7842 11.3792L85.7842 73.6547L42.533 62.2835L0 75.1793ZM1.44691 73.2361L42.5048 60.7876L84.3373 71.7858L84.3373 12.4873L42.5351 1.497L1.4469 14.2029L1.44691 73.2361Z" fill="#2D2D2D"/>
+<path d="M43.2654 25.3197L0.723541 14.135L0.72357 88.2592L43.2654 99.444L85.0609 86.5194L85.0609 12.6476L43.2654 25.3197Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M85.7843 11.676L85.7844 87.0492L43.2816 100.193L0.000121306 88.8133L9.15527e-05 13.2006L43.2513 24.5718L85.7843 11.676ZM84.3374 13.6192L43.2795 26.0677L1.44701 15.0695L1.44703 87.7052L43.2492 98.6955L84.3374 85.9896L84.3374 13.6192Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M41.9194 98.2045L41.9192 25.2001L43.3662 25.2001L43.3663 98.2045L41.9194 98.2045Z" fill="#2D2D2D"/>
+<rect x="168.245" y="3.26074" width="96.8025" height="96.173" rx="48.0865" fill="#ED1C24"/>
+<path d="M207.973 34.2959C207.973 34.2959 185.784 47.7154 206.696 61.0399C210.718 63.6351 225.309 70.8513 224.894 77.5293C224.894 77.5293 233.737 64.553 220.807 56.3874C207.526 48.0318 204.205 39.1066 207.973 34.2959Z" fill="white"/>
+<path d="M200.246 59.9321C200.246 59.9321 192.328 71.8323 207.908 74.2694C209.44 74.4593 220.71 75.6303 223.648 79.3017C223.648 79.3017 223.392 72.9717 214.197 69.2371C205.035 65.5024 201.267 64.5846 200.246 59.9321Z" fill="white"/>
+<path d="M230.896 47.4305C221.382 37.5558 218.732 31.4474 222.818 23.535C222.818 23.535 194.436 34.3592 222.467 53.5706C232.492 60.4385 230.832 67.4648 230.832 67.718C232.396 66.1038 240.41 57.3052 230.896 47.4305Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M153.017 42.7397L157.621 47.3188C157.904 47.5998 157.904 48.0554 157.621 48.3364L153.017 52.9155C152.735 53.1965 152.276 53.1965 151.994 52.9155C151.711 52.6345 151.711 52.1789 151.994 51.8979L155.363 48.5471L100.568 48.5471C100.168 48.5471 99.8443 48.225 99.8443 47.8276C99.8443 47.4302 100.168 47.108 100.568 47.108L155.363 47.1081L151.994 43.7573C151.711 43.4763 151.711 43.0207 151.994 42.7397C152.276 42.4587 152.735 42.4587 153.017 42.7397Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M104.66 69.5022L100.056 64.9231C99.7736 64.6421 99.7736 64.1865 100.056 63.9055L104.66 59.3264C104.943 59.0454 105.401 59.0454 105.683 59.3264C105.966 59.6074 105.966 60.063 105.683 60.344L102.314 63.6948L157.11 63.6948C157.509 63.6948 157.833 64.0169 157.833 64.4143C157.833 64.8117 157.509 65.1338 157.11 65.1338L102.314 65.1338L105.683 68.4846C105.966 68.7656 105.966 69.2212 105.683 69.5022C105.401 69.7832 104.943 69.7832 104.66 69.5022Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M323.897 43.7091L328.501 48.2882C328.783 48.5692 328.783 49.0248 328.501 49.3058L323.897 53.8849C323.614 54.1659 323.156 54.1659 322.873 53.8849C322.591 53.6039 322.591 53.1483 322.873 52.8673L326.242 49.5165H280.555C280.155 49.5165 279.831 49.1944 279.831 48.797C279.831 48.3996 280.155 48.0775 280.555 48.0775H326.242L322.873 44.7267C322.591 44.4457 322.591 43.9901 322.873 43.7091C323.156 43.4281 323.614 43.4281 323.897 43.7091Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M284.647 70.1351L280.042 65.556C279.76 65.275 279.76 64.8194 280.042 64.5384L284.647 59.9593C284.929 59.6783 285.387 59.6783 285.67 59.9593C285.952 60.2403 285.952 60.6959 285.67 60.9769L282.301 64.3277L327.989 64.3277C328.388 64.3277 328.712 64.6498 328.712 65.0472C328.712 65.4446 328.388 65.7668 327.989 65.7668L282.301 65.7668L285.67 69.1175C285.952 69.3985 285.952 69.8541 285.67 70.1351C285.387 70.4161 284.929 70.4161 284.647 70.1351Z" fill="black"/>
+<path d="M7.92917 120.14L11.9068 109.839H13.3834L17.6224 120.14H16.061L14.8529 117.02H10.522L9.38456 120.14H7.92917ZM10.9177 115.91H14.429L13.348 113.057C13.0183 112.191 12.7734 111.479 12.6133 110.921C12.4814 111.582 12.2953 112.237 12.0551 112.889L10.9177 115.91Z" fill="#2D2D2D"/>
+<path d="M18.6996 123V112.678H19.8583V113.647C20.1315 113.268 20.44 112.985 20.7838 112.797C21.1276 112.605 21.5445 112.509 22.0343 112.509C22.6749 112.509 23.2401 112.673 23.7299 113.001C24.2198 113.329 24.5895 113.793 24.8391 114.392C25.0888 114.987 25.2136 115.641 25.2136 116.353C25.2136 117.116 25.0746 117.805 24.7967 118.419C24.5236 119.028 24.1232 119.496 23.5957 119.824C23.0729 120.147 22.5218 120.309 21.9425 120.309C21.5186 120.309 21.1371 120.22 20.7979 120.042C20.4635 119.864 20.188 119.639 19.9713 119.367V123H18.6996ZM19.8512 116.451C19.8512 117.411 20.0467 118.121 20.4376 118.58C20.8286 119.039 21.3019 119.269 21.8577 119.269C22.4229 119.269 22.9057 119.032 23.306 118.559C23.7111 118.081 23.9136 117.344 23.9136 116.346C23.9136 115.395 23.7158 114.683 23.3202 114.21C22.9292 113.736 22.4606 113.5 21.9142 113.5C21.3726 113.5 20.8921 113.753 20.473 114.259C20.0585 114.76 19.8512 115.491 19.8512 116.451Z" fill="#2D2D2D"/>
+<path d="M26.8984 123V112.678H28.0571V113.647C28.3303 113.268 28.6388 112.985 28.9826 112.797C29.3264 112.605 29.7433 112.509 30.2331 112.509C30.8737 112.509 31.4389 112.673 31.9287 113.001C32.4186 113.329 32.7883 113.793 33.0379 114.392C33.2876 114.987 33.4124 115.641 33.4124 116.353C33.4124 117.116 33.2734 117.805 32.9955 118.419C32.7224 119.028 32.322 119.496 31.7945 119.824C31.2717 120.147 30.7206 120.309 30.1413 120.309C29.7174 120.309 29.3359 120.22 28.9967 120.042C28.6623 119.864 28.3868 119.639 28.1701 119.367V123H26.8984ZM28.05 116.451C28.05 117.411 28.2455 118.121 28.6364 118.58C29.0274 119.039 29.5007 119.269 30.0565 119.269C30.6217 119.269 31.1045 119.032 31.5048 118.559C31.9099 118.081 32.1124 117.344 32.1124 116.346C32.1124 115.395 31.9146 114.683 31.519 114.21C31.128 113.736 30.6594 113.5 30.113 113.5C29.5714 113.5 29.0909 113.753 28.6718 114.259C28.2573 114.76 28.05 115.491 28.05 116.451Z" fill="#2D2D2D"/>
+<path d="M35.069 120.14V109.839H36.3407V120.14H35.069Z" fill="#2D2D2D"/>
+<path d="M38.4706 111.294V109.839H39.7423V111.294H38.4706ZM38.4706 120.14V112.678H39.7423V120.14H38.4706Z" fill="#2D2D2D"/>
+<path d="M46.726 117.407L47.9765 117.568C47.8399 118.426 47.489 119.098 46.9238 119.585C46.3633 120.068 45.6733 120.309 44.8537 120.309C43.827 120.309 43.0004 119.976 42.3739 119.311C41.7522 118.641 41.4413 117.683 41.4413 116.437C41.4413 115.631 41.5756 114.926 41.844 114.322C42.1125 113.718 42.5199 113.266 43.0663 112.966C43.6174 112.661 44.2155 112.509 44.8608 112.509C45.6756 112.509 46.3421 112.715 46.8602 113.128C47.3783 113.535 47.7104 114.116 47.8564 114.87L46.62 115.06C46.5022 114.559 46.2926 114.182 45.9912 113.929C45.6945 113.676 45.3342 113.549 44.9103 113.549C44.2697 113.549 43.7492 113.779 43.3489 114.238C42.9485 114.692 42.7484 115.414 42.7484 116.402C42.7484 117.404 42.9415 118.133 43.3277 118.587C43.7139 119.042 44.2179 119.269 44.8396 119.269C45.3389 119.269 45.7557 119.117 46.0901 118.812C46.4245 118.508 46.6365 118.039 46.726 117.407Z" fill="#2D2D2D"/>
+<path d="M54.1052 119.22C53.6342 119.618 53.1797 119.899 52.7417 120.063C52.3084 120.227 51.8421 120.309 51.3428 120.309C50.5186 120.309 49.8851 120.11 49.4423 119.712C48.9996 119.309 48.7782 118.796 48.7782 118.173C48.7782 117.807 48.8606 117.475 49.0255 117.175C49.195 116.87 49.4141 116.627 49.6825 116.444C49.9557 116.261 50.2619 116.123 50.601 116.03C50.8506 115.964 51.2274 115.901 51.7314 115.84C52.7582 115.718 53.5141 115.573 53.9993 115.404C54.004 115.231 54.0063 115.121 54.0063 115.074C54.0063 114.559 53.8862 114.196 53.646 113.985C53.321 113.699 52.8382 113.556 52.1977 113.556C51.5995 113.556 51.1568 113.662 50.8695 113.872C50.5869 114.078 50.3773 114.446 50.2407 114.976L48.9972 114.807C49.1103 114.278 49.2963 113.851 49.5554 113.528C49.8144 113.2 50.1889 112.949 50.6787 112.776C51.1685 112.598 51.7361 112.509 52.3814 112.509C53.0219 112.509 53.5424 112.584 53.9427 112.734C54.3431 112.884 54.6375 113.074 54.8259 113.303C55.0143 113.528 55.1461 113.814 55.2215 114.16C55.2639 114.376 55.2851 114.765 55.2851 115.327V117.013C55.2851 118.189 55.311 118.934 55.3628 119.248C55.4193 119.557 55.5276 119.854 55.6878 120.14H54.3596C54.2277 119.878 54.1429 119.571 54.1052 119.22ZM53.9993 116.395C53.5377 116.582 52.8453 116.742 51.9221 116.873C51.3993 116.948 51.0296 117.032 50.8129 117.126C50.5963 117.219 50.4291 117.358 50.3113 117.54C50.1936 117.718 50.1347 117.917 50.1347 118.138C50.1347 118.475 50.2619 118.756 50.5162 118.981C50.7753 119.206 51.1521 119.318 51.6466 119.318C52.1364 119.318 52.5721 119.213 52.9536 119.002C53.3351 118.786 53.6154 118.494 53.7944 118.124C53.931 117.838 53.9993 117.416 53.9993 116.859V116.395Z" fill="#2D2D2D"/>
+<path d="M60.1845 119.009L60.3682 120.126C60.0103 120.201 59.69 120.239 59.4074 120.239C58.9458 120.239 58.5878 120.166 58.3335 120.021C58.0792 119.876 57.9002 119.686 57.7966 119.452C57.6929 119.213 57.6411 118.714 57.6411 117.955V113.662H56.7085V112.678H57.6411V110.83L58.9058 110.071V112.678H60.1845V113.662H58.9058V118.025C58.9058 118.386 58.927 118.618 58.9693 118.721C59.0164 118.824 59.0895 118.906 59.1884 118.967C59.292 119.028 59.438 119.058 59.6264 119.058C59.7677 119.058 59.9537 119.042 60.1845 119.009Z" fill="#2D2D2D"/>
+<path d="M61.5868 111.294V109.839H62.8585V111.294H61.5868ZM61.5868 120.14V112.678H62.8585V120.14H61.5868Z" fill="#2D2D2D"/>
+<path d="M64.4727 116.409C64.4727 115.027 64.8589 114.004 65.6314 113.338C66.2766 112.786 67.0632 112.509 67.9911 112.509C69.0226 112.509 69.8657 112.846 70.5204 113.521C71.175 114.191 71.5024 115.118 71.5024 116.304C71.5024 117.264 71.3564 118.02 71.0644 118.573C70.7771 119.121 70.3555 119.548 69.7997 119.852C69.2487 120.157 68.6458 120.309 67.9911 120.309C66.9408 120.309 66.0906 119.974 65.4406 119.304C64.7953 118.634 64.4727 117.669 64.4727 116.409ZM65.7797 116.409C65.7797 117.365 65.9893 118.081 66.4085 118.559C66.8277 119.032 67.3552 119.269 67.9911 119.269C68.6222 119.269 69.1474 119.03 69.5666 118.552C69.9858 118.074 70.1954 117.346 70.1954 116.367C70.1954 115.444 69.9834 114.746 69.5595 114.273C69.1403 113.795 68.6175 113.556 67.9911 113.556C67.3552 113.556 66.8277 113.793 66.4085 114.266C65.9893 114.739 65.7797 115.453 65.7797 116.409Z" fill="#2D2D2D"/>
+<path d="M73.1449 120.14V112.678H74.2894V113.739C74.8405 112.919 75.6365 112.509 76.6774 112.509C77.1295 112.509 77.544 112.591 77.9208 112.755C78.3023 112.914 78.5873 113.125 78.7757 113.387C78.9641 113.65 79.096 113.961 79.1713 114.322C79.2184 114.556 79.242 114.966 79.242 115.552V120.14H77.9703V115.601C77.9703 115.086 77.9208 114.701 77.8219 114.449C77.723 114.191 77.5464 113.987 77.292 113.837C77.0424 113.683 76.748 113.605 76.4089 113.605C75.8672 113.605 75.3986 113.776 75.003 114.118C74.612 114.46 74.4166 115.109 74.4166 116.065V120.14H73.1449Z" fill="#2D2D2D"/>
+<path d="M324.574 117.178V106.839H332.008V108.059H325.935V111.226H331.622V112.439H325.935V115.958H332.246V117.178H324.574Z" fill="#2D2D2D"/>
+<path d="M333.243 117.178L335.964 113.285L333.446 109.688H335.024L336.167 111.444C336.382 111.778 336.555 112.058 336.686 112.284C336.892 111.973 337.081 111.698 337.254 111.458L338.509 109.688H340.017L337.443 113.215L340.213 117.178H338.663L337.135 114.851L336.728 114.223L334.771 117.178H333.243Z" fill="#2D2D2D"/>
+<path d="M344.141 116.043L344.323 117.164C343.968 117.239 343.65 117.277 343.37 117.277C342.911 117.277 342.556 117.204 342.304 117.058C342.051 116.913 341.873 116.722 341.771 116.487C341.668 116.247 341.616 115.747 341.616 114.985V110.676H340.691V109.688H341.616V107.833L342.872 107.072V109.688H344.141V110.676H342.872V115.055C342.872 115.417 342.893 115.65 342.935 115.754C342.981 115.857 343.054 115.939 343.152 116.001C343.255 116.062 343.4 116.092 343.587 116.092C343.727 116.092 343.912 116.076 344.141 116.043Z" fill="#2D2D2D"/>
+<path d="M350.6 114.766L351.905 114.928C351.699 115.695 351.318 116.29 350.761 116.713C350.205 117.136 349.494 117.348 348.63 117.348C347.54 117.348 346.675 117.011 346.035 116.339C345.399 115.662 345.081 114.715 345.081 113.497C345.081 112.237 345.404 111.259 346.049 110.563C346.694 109.867 347.531 109.519 348.559 109.519C349.555 109.519 350.369 109.86 351 110.542C351.631 111.223 351.947 112.183 351.947 113.419C351.947 113.494 351.944 113.607 351.94 113.758H346.385C346.432 114.581 346.664 115.211 347.08 115.648C347.496 116.085 348.015 116.304 348.637 116.304C349.099 116.304 349.494 116.182 349.822 115.937C350.149 115.693 350.408 115.302 350.6 114.766ZM346.456 112.714H350.614C350.558 112.084 350.399 111.611 350.137 111.296C349.735 110.807 349.214 110.563 348.573 110.563C347.994 110.563 347.505 110.758 347.108 111.148C346.715 111.538 346.498 112.06 346.456 112.714Z" fill="#2D2D2D"/>
+<path d="M353.602 117.178V109.688H354.738V110.824C355.028 110.292 355.295 109.942 355.538 109.773C355.785 109.604 356.057 109.519 356.351 109.519C356.777 109.519 357.209 109.655 357.649 109.928L357.214 111.106C356.905 110.922 356.597 110.831 356.288 110.831C356.012 110.831 355.764 110.915 355.545 111.085C355.325 111.249 355.168 111.48 355.075 111.776C354.935 112.227 354.864 112.721 354.864 113.257V117.178H353.602Z" fill="#2D2D2D"/>
+<path d="M358.519 117.178V109.688H359.655V110.753C360.202 109.93 360.992 109.519 362.025 109.519C362.474 109.519 362.885 109.601 363.259 109.766C363.638 109.926 363.921 110.137 364.108 110.401C364.295 110.664 364.426 110.977 364.5 111.339C364.547 111.574 364.571 111.985 364.571 112.573V117.178H363.308V112.622C363.308 112.105 363.259 111.719 363.161 111.466C363.063 111.207 362.888 111.002 362.635 110.852C362.387 110.697 362.095 110.619 361.758 110.619C361.221 110.619 360.756 110.791 360.363 111.134C359.975 111.477 359.781 112.129 359.781 113.088V117.178H358.519Z" fill="#2D2D2D"/>
+<path d="M371.493 116.254C371.025 116.654 370.574 116.936 370.139 117.101C369.709 117.265 369.246 117.348 368.751 117.348C367.933 117.348 367.304 117.148 366.864 116.748C366.425 116.344 366.205 115.829 366.205 115.204C366.205 114.837 366.287 114.503 366.451 114.202C366.619 113.896 366.836 113.652 367.103 113.469C367.374 113.285 367.678 113.146 368.014 113.052C368.262 112.987 368.636 112.923 369.136 112.862C370.156 112.74 370.906 112.594 371.388 112.425C371.392 112.251 371.395 112.14 371.395 112.093C371.395 111.576 371.275 111.212 371.037 111C370.714 110.713 370.235 110.57 369.599 110.57C369.006 110.57 368.566 110.676 368.281 110.887C368 111.094 367.792 111.463 367.657 111.994L366.422 111.825C366.535 111.294 366.719 110.866 366.976 110.542C367.234 110.212 367.605 109.961 368.092 109.787C368.578 109.608 369.141 109.519 369.782 109.519C370.417 109.519 370.934 109.594 371.331 109.745C371.729 109.895 372.021 110.086 372.208 110.316C372.395 110.542 372.526 110.828 372.601 111.176C372.643 111.393 372.664 111.783 372.664 112.347V114.04C372.664 115.22 372.69 115.968 372.741 116.283C372.797 116.593 372.905 116.892 373.064 117.178H371.745C371.614 116.915 371.53 116.607 371.493 116.254ZM371.388 113.419C370.929 113.607 370.242 113.767 369.326 113.899C368.807 113.974 368.44 114.059 368.225 114.153C368.01 114.247 367.844 114.385 367.727 114.569C367.61 114.747 367.552 114.947 367.552 115.168C367.552 115.507 367.678 115.789 367.93 116.015C368.187 116.24 368.561 116.353 369.052 116.353C369.538 116.353 369.971 116.247 370.35 116.036C370.728 115.819 371.007 115.526 371.184 115.154C371.32 114.867 371.388 114.444 371.388 113.885V113.419Z" fill="#2D2D2D"/>
+<path d="M374.719 117.178V106.839H375.981V117.178H374.719Z" fill="#2D2D2D"/>
+<path d="M382.343 117.178V106.839H385.884C386.684 106.839 387.294 106.888 387.715 106.987C388.304 107.123 388.806 107.37 389.223 107.728C389.765 108.188 390.169 108.778 390.436 109.498C390.707 110.212 390.842 111.031 390.842 111.952C390.842 112.737 390.751 113.433 390.569 114.04C390.387 114.646 390.153 115.149 389.868 115.549C389.583 115.944 389.269 116.257 388.928 116.487C388.591 116.713 388.182 116.884 387.701 117.002C387.224 117.12 386.675 117.178 386.053 117.178H382.343ZM383.703 115.958H385.898C386.576 115.958 387.107 115.895 387.49 115.768C387.878 115.641 388.187 115.462 388.416 115.232C388.739 114.907 388.989 114.472 389.166 113.927C389.349 113.377 389.44 112.712 389.44 111.931C389.44 110.85 389.262 110.02 388.907 109.441C388.556 108.858 388.129 108.468 387.624 108.271C387.259 108.13 386.672 108.059 385.863 108.059H383.703V115.958Z" fill="#2D2D2D"/>
+<path d="M397.54 116.254C397.073 116.654 396.621 116.936 396.187 117.101C395.757 117.265 395.294 117.348 394.798 117.348C393.98 117.348 393.351 117.148 392.912 116.748C392.472 116.344 392.253 115.829 392.253 115.204C392.253 114.837 392.334 114.503 392.498 114.202C392.666 113.896 392.884 113.652 393.15 113.469C393.421 113.285 393.725 113.146 394.062 113.052C394.31 112.987 394.684 112.923 395.184 112.862C396.203 112.74 396.953 112.594 397.435 112.425C397.44 112.251 397.442 112.14 397.442 112.093C397.442 111.576 397.323 111.212 397.084 111C396.762 110.713 396.283 110.57 395.647 110.57C395.053 110.57 394.613 110.676 394.328 110.887C394.048 111.094 393.84 111.463 393.704 111.994L392.47 111.825C392.582 111.294 392.767 110.866 393.024 110.542C393.281 110.212 393.653 109.961 394.139 109.787C394.625 109.608 395.189 109.519 395.829 109.519C396.465 109.519 396.981 109.594 397.379 109.745C397.776 109.895 398.068 110.086 398.255 110.316C398.442 110.542 398.573 110.828 398.648 111.176C398.69 111.393 398.711 111.783 398.711 112.347V114.04C398.711 115.22 398.737 115.968 398.788 116.283C398.845 116.593 398.952 116.892 399.111 117.178H397.793C397.662 116.915 397.578 116.607 397.54 116.254ZM397.435 113.419C396.977 113.607 396.29 113.767 395.373 113.899C394.854 113.974 394.487 114.059 394.272 114.153C394.057 114.247 393.891 114.385 393.774 114.569C393.657 114.747 393.599 114.947 393.599 115.168C393.599 115.507 393.725 115.789 393.978 116.015C394.235 116.24 394.609 116.353 395.1 116.353C395.586 116.353 396.018 116.247 396.397 116.036C396.776 115.819 397.054 115.526 397.232 115.154C397.367 114.867 397.435 114.444 397.435 113.885V113.419Z" fill="#2D2D2D"/>
+<path d="M403.551 116.043L403.733 117.164C403.378 117.239 403.06 117.277 402.779 117.277C402.321 117.277 401.966 117.204 401.713 117.058C401.461 116.913 401.283 116.722 401.18 116.487C401.077 116.247 401.026 115.747 401.026 114.985V110.676H400.1V109.688H401.026V107.833L402.281 107.072V109.688H403.551V110.676H402.281V115.055C402.281 115.417 402.302 115.65 402.344 115.754C402.391 115.857 402.464 115.939 402.562 116.001C402.665 116.062 402.81 116.092 402.997 116.092C403.137 116.092 403.322 116.076 403.551 116.043Z" fill="#2D2D2D"/>
+<path d="M409.771 116.254C409.304 116.654 408.853 116.936 408.418 117.101C407.988 117.265 407.525 117.348 407.029 117.348C406.211 117.348 405.582 117.148 405.143 116.748C404.704 116.344 404.484 115.829 404.484 115.204C404.484 114.837 404.566 114.503 404.729 114.202C404.898 113.896 405.115 113.652 405.381 113.469C405.653 113.285 405.956 113.146 406.293 113.052C406.541 112.987 406.915 112.923 407.415 112.862C408.434 112.74 409.185 112.594 409.666 112.425C409.671 112.251 409.673 112.14 409.673 112.093C409.673 111.576 409.554 111.212 409.316 111C408.993 110.713 408.514 110.57 407.878 110.57C407.284 110.57 406.845 110.676 406.56 110.887C406.279 111.094 406.071 111.463 405.935 111.994L404.701 111.825C404.813 111.294 404.998 110.866 405.255 110.542C405.512 110.212 405.884 109.961 406.37 109.787C406.856 109.608 407.42 109.519 408.06 109.519C408.696 109.519 409.213 109.594 409.61 109.745C410.008 109.895 410.3 110.086 410.487 110.316C410.674 110.542 410.805 110.828 410.879 111.176C410.922 111.393 410.943 111.783 410.943 112.347V114.04C410.943 115.22 410.968 115.968 411.02 116.283C411.076 116.593 411.183 116.892 411.342 117.178H410.024C409.893 116.915 409.809 116.607 409.771 116.254ZM409.666 113.419C409.208 113.607 408.521 113.767 407.604 113.899C407.086 113.974 406.719 114.059 406.503 114.153C406.288 114.247 406.122 114.385 406.006 114.569C405.889 114.747 405.83 114.947 405.83 115.168C405.83 115.507 405.956 115.789 406.209 116.015C406.466 116.24 406.84 116.353 407.331 116.353C407.817 116.353 408.25 116.247 408.628 116.036C409.007 115.819 409.285 115.526 409.463 115.154C409.598 114.867 409.666 114.444 409.666 113.885V113.419Z" fill="#2D2D2D"/>
+<path d="M414.19 117.178H413.019V106.839H414.281V110.528C414.814 109.855 415.494 109.519 416.322 109.519C416.78 109.519 417.212 109.613 417.619 109.801C418.031 109.984 418.367 110.245 418.629 110.584C418.896 110.918 419.104 111.322 419.253 111.797C419.403 112.272 419.478 112.78 419.478 113.32C419.478 114.604 419.162 115.596 418.531 116.297C417.9 116.997 417.142 117.348 416.259 117.348C415.38 117.348 414.69 116.979 414.19 116.24V117.178ZM414.176 113.377C414.176 114.275 414.298 114.924 414.541 115.323C414.938 115.977 415.476 116.304 416.154 116.304C416.705 116.304 417.182 116.064 417.584 115.584C417.986 115.1 418.187 114.381 418.187 113.426C418.187 112.448 417.993 111.726 417.605 111.261C417.222 110.796 416.757 110.563 416.21 110.563C415.658 110.563 415.181 110.805 414.779 111.289C414.377 111.769 414.176 112.465 414.176 113.377Z" fill="#2D2D2D"/>
+<path d="M426 116.254C425.532 116.654 425.081 116.936 424.647 117.101C424.216 117.265 423.754 117.348 423.258 117.348C422.44 117.348 421.811 117.148 421.372 116.748C420.932 116.344 420.712 115.829 420.712 115.204C420.712 114.837 420.794 114.503 420.958 114.202C421.126 113.896 421.344 113.652 421.61 113.469C421.881 113.285 422.185 113.146 422.522 113.052C422.769 112.987 423.143 112.923 423.644 112.862C424.663 112.74 425.413 112.594 425.895 112.425C425.899 112.251 425.902 112.14 425.902 112.093C425.902 111.576 425.783 111.212 425.544 111C425.222 110.713 424.742 110.57 424.107 110.57C423.513 110.57 423.073 110.676 422.788 110.887C422.508 111.094 422.3 111.463 422.164 111.994L420.93 111.825C421.042 111.294 421.227 110.866 421.484 110.542C421.741 110.212 422.113 109.961 422.599 109.787C423.085 109.608 423.648 109.519 424.289 109.519C424.925 109.519 425.441 109.594 425.839 109.745C426.236 109.895 426.528 110.086 426.715 110.316C426.902 110.542 427.033 110.828 427.108 111.176C427.15 111.393 427.171 111.783 427.171 112.347V114.04C427.171 115.22 427.197 115.968 427.248 116.283C427.304 116.593 427.412 116.892 427.571 117.178H426.252C426.122 116.915 426.037 116.607 426 116.254ZM425.895 113.419C425.437 113.607 424.749 113.767 423.833 113.899C423.314 113.974 422.947 114.059 422.732 114.153C422.517 114.247 422.351 114.385 422.234 114.569C422.117 114.747 422.059 114.947 422.059 115.168C422.059 115.507 422.185 115.789 422.438 116.015C422.695 116.24 423.069 116.353 423.56 116.353C424.046 116.353 424.478 116.247 424.857 116.036C425.236 115.819 425.514 115.526 425.691 115.154C425.827 114.867 425.895 114.444 425.895 113.885V113.419Z" fill="#2D2D2D"/>
+<path d="M428.749 114.943L429.998 114.745C430.068 115.248 430.262 115.634 430.58 115.902C430.902 116.17 431.351 116.304 431.926 116.304C432.506 116.304 432.936 116.186 433.217 115.951C433.497 115.711 433.637 115.432 433.637 115.112C433.637 114.825 433.514 114.599 433.266 114.435C433.093 114.322 432.663 114.179 431.975 114.005C431.05 113.769 430.407 113.567 430.047 113.398C429.692 113.224 429.42 112.987 429.233 112.686C429.051 112.38 428.96 112.044 428.96 111.677C428.96 111.343 429.035 111.035 429.184 110.753C429.339 110.466 429.547 110.229 429.808 110.041C430.005 109.895 430.271 109.773 430.608 109.674C430.949 109.571 431.314 109.519 431.702 109.519C432.286 109.519 432.798 109.604 433.238 109.773C433.682 109.942 434.009 110.173 434.219 110.464C434.43 110.751 434.575 111.136 434.654 111.621L433.42 111.79C433.364 111.404 433.2 111.103 432.929 110.887C432.663 110.671 432.284 110.563 431.793 110.563C431.213 110.563 430.8 110.659 430.552 110.852C430.304 111.045 430.18 111.27 430.18 111.529C430.18 111.694 430.232 111.842 430.334 111.973C430.437 112.11 430.599 112.223 430.818 112.312C430.944 112.359 431.316 112.467 431.933 112.636C432.826 112.876 433.448 113.074 433.799 113.229C434.154 113.379 434.432 113.6 434.633 113.892C434.834 114.183 434.935 114.545 434.935 114.978C434.935 115.401 434.811 115.801 434.563 116.177C434.32 116.548 433.967 116.837 433.504 117.044C433.041 117.247 432.518 117.348 431.933 117.348C430.966 117.348 430.227 117.145 429.717 116.741C429.212 116.337 428.89 115.737 428.749 114.943Z" fill="#2D2D2D"/>
+<path d="M441.654 114.766L442.958 114.928C442.752 115.695 442.371 116.29 441.815 116.713C441.258 117.136 440.548 117.348 439.683 117.348C438.594 117.348 437.729 117.011 437.088 116.339C436.452 115.662 436.134 114.715 436.134 113.497C436.134 112.237 436.457 111.259 437.102 110.563C437.747 109.867 438.584 109.519 439.613 109.519C440.609 109.519 441.422 109.86 442.053 110.542C442.684 111.223 443 112.183 443 113.419C443 113.494 442.998 113.607 442.993 113.758H437.439C437.486 114.581 437.717 115.211 438.133 115.648C438.549 116.085 439.068 116.304 439.69 116.304C440.153 116.304 440.548 116.182 440.875 115.937C441.202 115.693 441.462 115.302 441.654 114.766ZM437.509 112.714H441.668C441.611 112.084 441.452 111.611 441.191 111.296C440.789 110.807 440.267 110.563 439.627 110.563C439.047 110.563 438.559 110.758 438.161 111.148C437.768 111.538 437.551 112.06 437.509 112.714Z" fill="#2D2D2D"/>
+</svg>
diff --git a/public/img/features/key-value/key-value-api-3.svg b/public/img/features/key-value/key-value-api-3.svg
new file mode 100644
index 0000000..0bb98c5
--- /dev/null
+++ b/public/img/features/key-value/key-value-api-3.svg
@@ -0,0 +1,62 @@
+<svg width="443" height="123" viewBox="0 0 443 123" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M359.51 85.9057V17.6379C359.51 17.6379 367.743 24.5006 393.335 24.5006C418.928 24.5006 428.052 16.8536 428.052 16.8536V85.9057C428.052 85.9057 424.367 94.2911 393.335 94.6136C362.304 94.936 359.51 85.9057 359.51 85.9057Z" fill="white"/>
+<path d="M428.849 15.4834C428.849 21.5752 413.32 26.5136 393.755 26.5136C374.19 26.5136 358.661 21.5752 358.661 15.4834C358.661 9.39166 374.19 4.45331 393.755 4.45331C413.32 4.45331 428.849 9.39166 428.849 15.4834Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M425.246 18.6274C426.85 17.4263 427.402 16.3493 427.402 15.4834C427.402 14.6176 426.85 13.5405 425.246 12.3395C423.667 11.156 421.285 10.0283 418.201 9.0557C412.051 7.11573 403.433 5.89238 393.755 5.89238C384.077 5.89238 375.458 7.11573 369.308 9.0557C366.225 10.0283 363.843 11.156 362.263 12.3395C360.66 13.5405 360.107 14.6176 360.107 15.4834C360.107 16.3493 360.66 17.4263 362.263 18.6274C363.843 19.8109 366.225 20.9386 369.308 21.9112C375.458 23.8511 384.077 25.0745 393.755 25.0745C403.433 25.0745 412.051 23.8511 418.201 21.9112C421.285 20.9386 423.667 19.8109 425.246 18.6274ZM393.755 26.5136C413.32 26.5136 428.849 21.5752 428.849 15.4834C428.849 9.39166 413.32 4.45331 393.755 4.45331C374.19 4.45331 358.661 9.39166 358.661 15.4834C358.661 21.5752 374.19 26.5136 393.755 26.5136Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M358.607 84.1891L358.607 16.0743L360.054 16.0743L360.054 84.1891L358.607 84.1891Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M427.463 84.2599L427.542 15.0746L428.989 15.0762L428.91 84.2616L427.463 84.2599Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M369.626 90.9925C375.769 92.8828 384.299 94.063 393.752 94.063C403.206 94.063 411.736 92.8828 417.879 90.9925C420.954 90.0459 423.391 88.9336 425.042 87.7319C426.709 86.5191 427.451 85.3132 427.451 84.1893H428.898C428.898 85.9906 427.713 87.5714 425.897 88.8934C424.064 90.2264 421.46 91.3967 418.306 92.3672C411.991 94.3109 403.31 95.5021 393.752 95.5021C384.195 95.5021 375.514 94.3109 369.199 92.3672C366.045 91.3967 363.44 90.2264 361.608 88.8934C359.791 87.5714 358.607 85.9906 358.607 84.1893H360.054C360.054 85.3132 360.796 86.5191 362.463 87.7319C364.114 88.9336 366.551 90.0459 369.626 90.9925Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M369.626 44.7566C375.769 46.6469 384.299 47.8271 393.752 47.8271C403.206 47.8271 411.736 46.6469 417.879 44.7566C420.954 43.81 423.391 42.6977 425.042 41.496C426.709 40.2832 427.451 39.0773 427.451 37.9534H428.898C428.898 39.7547 427.713 41.3355 425.897 42.6575C424.064 43.9905 421.46 45.1608 418.306 46.1313C411.991 48.075 403.31 49.2662 393.752 49.2662C384.195 49.2662 375.514 48.075 369.199 46.1313C366.045 45.1608 363.44 43.9905 361.608 42.6575C359.791 41.3355 358.607 39.7547 358.607 37.9534H360.054C360.054 39.0773 360.796 40.2832 362.463 41.496C364.114 42.6977 366.551 43.81 369.626 44.7566Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M369.626 68.0339C375.769 69.9243 384.299 71.1044 393.752 71.1044C403.206 71.1044 411.736 69.9243 417.879 68.0339C420.954 67.0874 423.391 65.9751 425.042 64.7734C426.709 63.5606 427.451 62.3546 427.451 61.2307H428.898C428.898 63.032 427.713 64.6129 425.897 65.9348C424.064 67.2678 421.46 68.4382 418.306 69.4087C411.991 71.3523 403.31 72.5435 393.752 72.5435C384.195 72.5435 375.514 71.3523 369.199 69.4087C366.045 68.4382 363.44 67.2678 361.608 65.9348C359.791 64.6129 358.607 63.032 358.607 61.2307H360.054C360.054 62.3546 360.796 63.5606 362.463 64.7734C364.114 65.9751 366.551 67.0874 369.626 68.0339Z" fill="#ED1C24"/>
+<path d="M42.5189 61.5355L85.0608 72.7203L85.0608 11.9333L42.5189 0.748509L0.723447 13.6731L0.723457 74.2077L42.5189 61.5355Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M0 75.1792L-9.79993e-06 13.1433L42.5027 -1.9018e-05L85.7842 11.3792L85.7842 73.6547L42.533 62.2834L0 75.1792ZM1.44691 73.2361L42.5048 60.7875L84.3373 71.7858L84.3373 12.4873L42.5351 1.49699L1.4469 14.2029L1.44691 73.2361Z" fill="#2D2D2D"/>
+<path d="M43.2654 25.3197L0.723572 14.135L0.723601 88.2592L43.2654 99.444L85.0609 86.5194L85.0609 12.6476L43.2654 25.3197Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M85.7844 11.676L85.7844 87.0491L43.2816 100.192L0.000151824 88.8132L0.00012207 13.2005L43.2513 24.5717L85.7844 11.676ZM84.3374 13.6191L43.2795 26.0677L1.44704 15.0694L1.44707 87.7051L43.2492 98.6954L84.3375 85.9895L84.3374 13.6191Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M41.9193 98.2045L41.9192 25.2002L43.3661 25.2002L43.3662 98.2045L41.9193 98.2045Z" fill="#2D2D2D"/>
+<rect x="191.245" y="3.26062" width="96.8025" height="96.1729" rx="48.0865" fill="#ED1C24"/>
+<path d="M230.973 34.2958C230.973 34.2958 208.784 47.7153 229.696 61.0398C233.718 63.6351 248.309 70.8512 247.894 77.5293C247.894 77.5293 256.737 64.5529 243.807 56.3873C230.526 48.0318 227.205 39.1066 230.973 34.2958Z" fill="white"/>
+<path d="M223.246 59.932C223.246 59.932 215.329 71.8323 230.909 74.2693C232.441 74.4592 243.711 75.6303 246.649 79.3016C246.649 79.3016 246.393 72.9717 237.198 69.237C228.035 65.5024 224.268 64.5845 223.246 59.932Z" fill="white"/>
+<path d="M253.896 47.4305C244.382 37.5558 241.732 31.4474 245.818 23.535C245.818 23.535 217.436 34.3592 245.467 53.5705C255.492 60.4385 253.832 67.4647 253.832 67.7179C255.396 66.1037 263.41 57.3051 253.896 47.4305Z" fill="white"/>
+<rect x="68.6693" y="79.8" width="28.9485" height="28.7602" rx="14.3801" fill="#ED1C24"/>
+<path d="M80.5497 89.081C80.5497 89.081 73.9141 93.094 80.1678 97.0787C81.3708 97.8548 85.734 100.013 85.6099 102.01C85.6099 102.01 88.2545 98.1293 84.3878 95.6874C80.416 93.1887 79.4231 90.5196 80.5497 89.081Z" fill="white"/>
+<path d="M78.2391 96.7474C78.2391 96.7474 75.8713 100.306 80.5305 101.035C80.9888 101.092 84.3591 101.442 85.2375 102.54C85.2375 102.54 85.1611 100.647 82.4114 99.53C79.6713 98.4132 78.5446 98.1387 78.2391 96.7474Z" fill="white"/>
+<path d="M87.4048 93.0088C84.5596 90.0559 83.7672 88.2292 84.9893 85.863C84.9893 85.863 76.5015 89.0999 84.8842 94.845C87.8822 96.8989 87.3857 99 87.3857 99.0757C87.8535 98.593 90.2499 95.9618 87.4048 93.0088Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M176.017 44.1325L180.621 48.7117C180.904 48.9927 180.904 49.4482 180.621 49.7292L176.017 54.3083C175.734 54.5893 175.276 54.5893 174.994 54.3083C174.711 54.0273 174.711 53.5718 174.994 53.2908L178.363 49.94L93.5677 49.94C93.1681 49.94 92.8442 49.6178 92.8442 49.2204C92.8442 48.823 93.1681 48.5009 93.5677 48.5009L178.363 48.5009L174.994 45.1501C174.711 44.8691 174.711 44.4135 174.994 44.1325C175.276 43.8515 175.734 43.8515 176.017 44.1325Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M340.896 45.102L345.501 49.6811C345.783 49.9621 345.783 50.4177 345.501 50.6987L340.896 55.2778C340.614 55.5588 340.156 55.5588 339.873 55.2778C339.591 54.9968 339.591 54.5412 339.873 54.2602L343.242 50.9094H297.554C297.155 50.9094 296.831 50.5873 296.831 50.1899C296.831 49.7925 297.155 49.4703 297.554 49.4703H343.242L339.873 46.1196C339.591 45.8386 339.591 45.383 339.873 45.102C340.156 44.821 340.614 44.821 340.896 45.102Z" fill="black"/>
+<path d="M7.92914 120.14L11.9067 109.839H13.3833L17.6223 120.14H16.061L14.8528 117.02H10.522L9.38453 120.14H7.92914ZM10.9176 115.91H14.4289L13.348 113.057C13.0183 112.191 12.7734 111.478 12.6132 110.921C12.4814 111.582 12.2953 112.237 12.0551 112.889L10.9176 115.91Z" fill="#2D2D2D"/>
+<path d="M18.6996 123V112.678H19.8583V113.647C20.1314 113.268 20.44 112.985 20.7838 112.797C21.1276 112.605 21.5444 112.509 22.0343 112.509C22.6749 112.509 23.2401 112.673 23.7299 113.001C24.2197 113.329 24.5895 113.793 24.8391 114.392C25.0887 114.987 25.2135 115.641 25.2135 116.353C25.2135 117.116 25.0746 117.805 24.7967 118.419C24.5235 119.028 24.1232 119.496 23.5957 119.824C23.0728 120.147 22.5218 120.309 21.9424 120.309C21.5185 120.309 21.137 120.22 20.7979 120.042C20.4635 119.864 20.188 119.639 19.9713 119.367V123H18.6996ZM19.8512 116.451C19.8512 117.411 20.0467 118.121 20.4376 118.58C20.8285 119.039 21.3019 119.269 21.8577 119.269C22.4229 119.269 22.9056 119.032 23.306 118.559C23.7111 118.081 23.9136 117.343 23.9136 116.346C23.9136 115.395 23.7158 114.683 23.3201 114.21C22.9292 113.736 22.4605 113.5 21.9142 113.5C21.3725 113.5 20.8921 113.753 20.4729 114.259C20.0584 114.76 19.8512 115.491 19.8512 116.451Z" fill="#2D2D2D"/>
+<path d="M26.8984 123V112.678H28.0571V113.647C28.3302 113.268 28.6388 112.985 28.9826 112.797C29.3264 112.605 29.7433 112.509 30.2331 112.509C30.8737 112.509 31.4389 112.673 31.9287 113.001C32.4185 113.329 32.7883 113.793 33.0379 114.392C33.2875 114.987 33.4123 115.641 33.4123 116.353C33.4123 117.116 33.2734 117.805 32.9955 118.419C32.7223 119.028 32.322 119.496 31.7945 119.824C31.2717 120.147 30.7206 120.309 30.1412 120.309C29.7173 120.309 29.3358 120.22 28.9967 120.042C28.6623 119.864 28.3868 119.639 28.1701 119.367V123H26.8984ZM28.05 116.451C28.05 117.411 28.2455 118.121 28.6364 118.58C29.0273 119.039 29.5007 119.269 30.0565 119.269C30.6217 119.269 31.1044 119.032 31.5048 118.559C31.9099 118.081 32.1124 117.343 32.1124 116.346C32.1124 115.395 31.9146 114.683 31.5189 114.21C31.128 113.736 30.6593 113.5 30.113 113.5C29.5713 113.5 29.0909 113.753 28.6717 114.259C28.2572 114.76 28.05 115.491 28.05 116.451Z" fill="#2D2D2D"/>
+<path d="M35.0689 120.14V109.839H36.3407V120.14H35.0689Z" fill="#2D2D2D"/>
+<path d="M38.4706 111.293V109.839H39.7423V111.293H38.4706ZM38.4706 120.14V112.678H39.7423V120.14H38.4706Z" fill="#2D2D2D"/>
+<path d="M46.7259 117.407L47.9764 117.568C47.8399 118.426 47.489 119.098 46.9238 119.585C46.3633 120.068 45.6732 120.309 44.8537 120.309C43.8269 120.309 43.0003 119.976 42.3739 119.311C41.7522 118.641 41.4413 117.683 41.4413 116.437C41.4413 115.631 41.5755 114.926 41.844 114.322C42.1125 113.718 42.5199 113.266 43.0663 112.966C43.6173 112.661 44.2155 112.509 44.8608 112.509C45.6756 112.509 46.3421 112.715 46.8602 113.127C47.3783 113.535 47.7103 114.116 47.8563 114.87L46.62 115.06C46.5022 114.559 46.2926 114.181 45.9912 113.928C45.6944 113.676 45.3341 113.549 44.9102 113.549C44.2697 113.549 43.7492 113.779 43.3489 114.238C42.9485 114.692 42.7483 115.413 42.7483 116.402C42.7483 117.404 42.9414 118.133 43.3277 118.587C43.7139 119.042 44.2179 119.269 44.8396 119.269C45.3388 119.269 45.7557 119.117 46.0901 118.812C46.4245 118.508 46.6364 118.039 46.7259 117.407Z" fill="#2D2D2D"/>
+<path d="M54.1052 119.22C53.6342 119.618 53.1797 119.899 52.7416 120.063C52.3083 120.227 51.842 120.309 51.3428 120.309C50.5185 120.309 49.885 120.11 49.4423 119.711C48.9995 119.309 48.7782 118.796 48.7782 118.173C48.7782 117.807 48.8606 117.475 49.0255 117.175C49.195 116.87 49.414 116.627 49.6825 116.444C49.9557 116.261 50.2618 116.123 50.601 116.029C50.8506 115.964 51.2274 115.901 51.7314 115.84C52.7581 115.718 53.5141 115.573 53.9992 115.404C54.0039 115.231 54.0063 115.121 54.0063 115.074C54.0063 114.559 53.8862 114.196 53.646 113.985C53.321 113.699 52.8382 113.556 52.1976 113.556C51.5995 113.556 51.1567 113.661 50.8694 113.872C50.5868 114.078 50.3772 114.446 50.2406 114.975L48.9972 114.807C49.1102 114.277 49.2963 113.851 49.5553 113.528C49.8144 113.2 50.1888 112.949 50.6787 112.776C51.1685 112.598 51.7361 112.509 52.3813 112.509C53.0219 112.509 53.5424 112.584 53.9427 112.734C54.3431 112.884 54.6374 113.074 54.8258 113.303C55.0142 113.528 55.1461 113.814 55.2215 114.16C55.2639 114.376 55.285 114.765 55.285 115.327V117.013C55.285 118.189 55.311 118.934 55.3628 119.248C55.4193 119.557 55.5276 119.854 55.6878 120.14H54.3595C54.2277 119.878 54.1429 119.571 54.1052 119.22ZM53.9992 116.395C53.5376 116.582 52.8453 116.742 51.9221 116.873C51.3993 116.948 51.0296 117.032 50.8129 117.126C50.5962 117.219 50.429 117.358 50.3113 117.54C50.1935 117.718 50.1347 117.917 50.1347 118.137C50.1347 118.475 50.2618 118.756 50.5162 118.981C50.7752 119.206 51.152 119.318 51.6466 119.318C52.1364 119.318 52.5721 119.213 52.9536 119.002C53.3351 118.786 53.6154 118.494 53.7943 118.123C53.9309 117.838 53.9992 117.416 53.9992 116.859V116.395Z" fill="#2D2D2D"/>
+<path d="M60.1845 119.009L60.3682 120.126C60.0102 120.201 59.6899 120.238 59.4073 120.238C58.9458 120.238 58.5878 120.166 58.3335 120.021C58.0791 119.875 57.9001 119.686 57.7965 119.451C57.6929 119.213 57.6411 118.714 57.6411 117.955V113.661H56.7085V112.678H57.6411V110.83L58.9057 110.071V112.678H60.1845V113.661H58.9057V118.025C58.9057 118.386 58.9269 118.618 58.9693 118.721C59.0164 118.824 59.0894 118.906 59.1883 118.967C59.292 119.028 59.438 119.058 59.6264 119.058C59.7677 119.058 59.9537 119.042 60.1845 119.009Z" fill="#2D2D2D"/>
+<path d="M61.5868 111.293V109.839H62.8585V111.293H61.5868ZM61.5868 120.14V112.678H62.8585V120.14H61.5868Z" fill="#2D2D2D"/>
+<path d="M64.4727 116.409C64.4727 115.027 64.8589 114.003 65.6313 113.338C66.2766 112.785 67.0632 112.509 67.9911 112.509C69.0225 112.509 69.8656 112.846 70.5203 113.521C71.175 114.191 71.5024 115.118 71.5024 116.304C71.5024 117.264 71.3564 118.02 71.0643 118.573C70.777 119.121 70.3555 119.548 69.7997 119.852C69.2486 120.157 68.6457 120.309 67.9911 120.309C66.9407 120.309 66.0906 119.974 65.4406 119.304C64.7953 118.634 64.4727 117.669 64.4727 116.409ZM65.7797 116.409C65.7797 117.365 65.9893 118.081 66.4085 118.559C66.8277 119.032 67.3552 119.269 67.9911 119.269C68.6222 119.269 69.1474 119.03 69.5666 118.552C69.9857 118.074 70.1953 117.346 70.1953 116.367C70.1953 115.444 69.9834 114.746 69.5595 114.273C69.1403 113.795 68.6175 113.556 67.9911 113.556C67.3552 113.556 66.8277 113.793 66.4085 114.266C65.9893 114.739 65.7797 115.453 65.7797 116.409Z" fill="#2D2D2D"/>
+<path d="M73.1448 120.14V112.678H74.2894V113.739C74.8404 112.919 75.6364 112.509 76.6773 112.509C77.1295 112.509 77.544 112.591 77.9208 112.755C78.3023 112.914 78.5872 113.125 78.7757 113.387C78.9641 113.65 79.0959 113.961 79.1713 114.322C79.2184 114.556 79.2419 114.966 79.2419 115.552V120.14H77.9702V115.601C77.9702 115.086 77.9208 114.701 77.8219 114.448C77.723 114.191 77.5463 113.987 77.292 113.837C77.0424 113.683 76.748 113.605 76.4089 113.605C75.8672 113.605 75.3986 113.776 75.0029 114.118C74.612 114.46 74.4165 115.109 74.4165 116.065V120.14H73.1448Z" fill="#2D2D2D"/>
+<path d="M55.9141 78.0873V68.5042H57.2129L62.2386 76.0282V68.5042H63.4527V78.0873H62.1538L57.1281 70.5568V78.0873H55.9141Z" fill="#2D2D2D"/>
+<path d="M70.1819 75.8517L71.3959 76.0021C71.2045 76.7124 70.8498 77.2637 70.332 77.6559C69.8142 78.0481 69.1528 78.2442 68.3478 78.2442C67.334 78.2442 66.529 77.9326 65.9329 77.3094C65.3411 76.6819 65.0452 75.8038 65.0452 74.6751C65.0452 73.5071 65.3455 72.6007 65.9459 71.9557C66.5464 71.3107 67.3253 70.9882 68.2826 70.9882C69.2094 70.9882 69.9665 71.3042 70.5539 71.9361C71.1414 72.568 71.4351 73.457 71.4351 74.6032C71.4351 74.6729 71.4329 74.7775 71.4285 74.9169H66.2592C66.3027 75.6796 66.5181 76.2635 66.9054 76.6688C67.2927 77.0741 67.7756 77.2767 68.3544 77.2767C68.7851 77.2767 69.1528 77.1634 69.4574 76.9368C69.762 76.7102 70.0035 76.3485 70.1819 75.8517ZM66.3245 73.9495H70.195C70.1427 73.3655 69.9948 72.9275 69.7511 72.6355C69.3769 72.1823 68.8918 71.9557 68.2956 71.9557C67.7561 71.9557 67.3014 72.1366 66.9315 72.4983C66.566 72.86 66.3637 73.3437 66.3245 73.9495Z" fill="#2D2D2D"/>
+<path d="M77.4007 77.231C76.9655 77.6014 76.5456 77.8629 76.141 78.0154C75.7407 78.1679 75.3099 78.2442 74.8486 78.2442C74.0872 78.2442 73.5019 78.059 73.0929 77.6886C72.6839 77.3138 72.4794 76.8366 72.4794 76.257C72.4794 75.9171 72.5555 75.6077 72.7078 75.3287C72.8645 75.0455 73.0668 74.8189 73.3148 74.6489C73.5672 74.479 73.85 74.3504 74.1633 74.2632C74.3939 74.2022 74.742 74.1434 75.2076 74.0867C76.1562 73.9734 76.8546 73.8383 77.3028 73.6814C77.3071 73.5202 77.3093 73.4178 77.3093 73.3742C77.3093 72.8948 77.1983 72.5571 76.9764 72.361C76.6762 72.0952 76.2302 71.9622 75.6384 71.9622C75.0858 71.9622 74.6768 72.0603 74.4113 72.2564C74.1503 72.4481 73.9566 72.7902 73.8305 73.2827L72.6817 73.1258C72.7861 72.6334 72.958 72.2368 73.1973 71.9361C73.4367 71.631 73.7826 71.3979 74.2351 71.2366C74.6877 71.071 75.212 70.9882 75.8081 70.9882C76.3999 70.9882 76.8807 71.058 77.2506 71.1974C77.6204 71.3369 77.8924 71.5134 78.0664 71.7269C78.2405 71.9361 78.3623 72.2019 78.4319 72.5244C78.4711 72.7249 78.4907 73.0866 78.4907 73.6095V75.1784C78.4907 76.2722 78.5146 76.9652 78.5625 77.2571C78.6147 77.5448 78.7148 77.8215 78.8627 78.0873H77.6356C77.5138 77.8433 77.4355 77.5578 77.4007 77.231ZM77.3028 74.6032C76.8763 74.7775 76.2367 74.9256 75.3839 75.0477C74.9009 75.1174 74.5593 75.1958 74.3591 75.283C74.159 75.3701 74.0045 75.4987 73.8957 75.6687C73.7869 75.8343 73.7325 76.0195 73.7325 76.2243C73.7325 76.5381 73.85 76.7996 74.085 77.0087C74.3243 77.2179 74.6724 77.3225 75.1293 77.3225C75.5818 77.3225 75.9843 77.2245 76.3368 77.0283C76.6892 76.8279 76.9481 76.5555 77.1135 76.2112C77.2397 75.9454 77.3028 75.5532 77.3028 75.0346V74.6032Z" fill="#2D2D2D"/>
+<path d="M80.3052 78.0873V71.1451H81.3625V72.1976C81.6323 71.7051 81.8803 71.3805 82.1066 71.2236C82.3372 71.0667 82.5896 70.9882 82.8637 70.9882C83.2597 70.9882 83.6622 71.1146 84.0712 71.3674L83.6665 72.459C83.3793 72.2891 83.0921 72.2041 82.805 72.2041C82.5482 72.2041 82.3176 72.2825 82.1131 72.4394C81.9086 72.592 81.7628 72.8055 81.6758 73.0801C81.5453 73.4984 81.48 73.956 81.48 74.4528V78.0873H80.3052Z" fill="#2D2D2D"/>
+<path d="M93.0131 75.5445L94.1683 75.6948C94.0421 76.4923 93.718 77.1177 93.1958 77.5709C92.678 78.0198 92.0406 78.2442 91.2834 78.2442C90.3349 78.2442 89.5712 77.9348 88.9925 77.316C88.4181 76.6928 88.1309 75.8016 88.1309 74.6424C88.1309 73.8928 88.2549 73.2369 88.503 72.6748C88.751 72.1126 89.1274 71.692 89.6321 71.4131C90.1412 71.1299 90.6938 70.9882 91.29 70.9882C92.0427 70.9882 92.6584 71.18 93.1371 71.5635C93.6157 71.9426 93.9225 72.483 94.0574 73.1846L92.9152 73.3611C92.8064 72.8948 92.6127 72.544 92.3343 72.3087C92.0601 72.0734 91.7273 71.9557 91.3356 71.9557C90.7439 71.9557 90.2631 72.1692 89.8932 72.5963C89.5233 73.019 89.3384 73.6902 89.3384 74.6097C89.3384 75.5423 89.5168 76.2199 89.8736 76.6427C90.2304 77.0654 90.696 77.2767 91.2704 77.2767C91.7316 77.2767 92.1167 77.1351 92.4256 76.8518C92.7346 76.5686 92.9304 76.1328 93.0131 75.5445Z" fill="#2D2D2D"/>
+<path d="M99.6966 77.231C99.2615 77.6014 98.8416 77.8629 98.4369 78.0154C98.0366 78.1679 97.6058 78.2442 97.1446 78.2442C96.3831 78.2442 95.7979 78.059 95.3889 77.6886C94.9798 77.3138 94.7753 76.8366 94.7753 76.257C94.7753 75.9171 94.8515 75.6077 95.0038 75.3287C95.1604 75.0455 95.3628 74.8189 95.6108 74.6489C95.8631 74.479 96.146 74.3504 96.4593 74.2632C96.6899 74.2022 97.038 74.1434 97.5036 74.0867C98.4522 73.9734 99.1505 73.8383 99.5987 73.6814C99.6031 73.5202 99.6052 73.4178 99.6052 73.3742C99.6052 72.8948 99.4943 72.5571 99.2724 72.361C98.9721 72.0952 98.5261 71.9622 97.9344 71.9622C97.3817 71.9622 96.9727 72.0603 96.7073 72.2564C96.4462 72.4481 96.2526 72.7902 96.1264 73.2827L94.9777 73.1258C95.0821 72.6334 95.254 72.2368 95.4933 71.9361C95.7326 71.631 96.0785 71.3979 96.5311 71.2366C96.9836 71.071 97.5079 70.9882 98.1041 70.9882C98.6958 70.9882 99.1766 71.058 99.5465 71.1974C99.9164 71.3369 100.188 71.5134 100.362 71.7269C100.536 71.9361 100.658 72.2019 100.728 72.5244C100.767 72.7249 100.787 73.0866 100.787 73.6095V75.1784C100.787 76.2722 100.811 76.9652 100.858 77.2571C100.911 77.5448 101.011 77.8215 101.159 78.0873H99.9316C99.8098 77.8433 99.7314 77.5578 99.6966 77.231ZM99.5987 74.6032C99.1723 74.7775 98.5327 74.9256 97.6798 75.0477C97.1968 75.1174 96.8552 75.1958 96.6551 75.283C96.4549 75.3701 96.3005 75.4987 96.1917 75.6687C96.0829 75.8343 96.0285 76.0195 96.0285 76.2243C96.0285 76.5381 96.146 76.7996 96.381 77.0087C96.6203 77.2179 96.9684 77.3225 97.4253 77.3225C97.8778 77.3225 98.2803 77.2245 98.6327 77.0283C98.9852 76.8279 99.2441 76.5555 99.4094 76.2112C99.5356 75.9454 99.5987 75.5532 99.5987 75.0346V74.6032Z" fill="#2D2D2D"/>
+<path d="M102.144 76.0151L103.306 75.8321C103.371 76.2984 103.552 76.6557 103.848 76.9041C104.148 77.1525 104.566 77.2767 105.101 77.2767C105.64 77.2767 106.041 77.1678 106.302 76.9499C106.563 76.7276 106.693 76.4684 106.693 76.172C106.693 75.9062 106.578 75.697 106.348 75.5445C106.187 75.4399 105.786 75.307 105.147 75.1457C104.285 74.9278 103.687 74.7404 103.352 74.5835C103.021 74.4223 102.769 74.2022 102.595 73.9233C102.425 73.64 102.34 73.3285 102.34 72.9885C102.34 72.6791 102.41 72.3937 102.549 72.1322C102.692 71.8664 102.886 71.6463 103.13 71.472C103.313 71.3369 103.561 71.2236 103.874 71.1321C104.191 71.0362 104.531 70.9882 104.892 70.9882C105.436 70.9882 105.912 71.0667 106.321 71.2236C106.735 71.3805 107.039 71.594 107.235 71.8642C107.431 72.13 107.566 72.4874 107.64 72.9362L106.491 73.0931C106.439 72.7358 106.287 72.4569 106.034 72.2564C105.786 72.0559 105.434 71.9557 104.977 71.9557C104.437 71.9557 104.052 72.045 103.822 72.2237C103.591 72.4024 103.476 72.6116 103.476 72.8513C103.476 73.0038 103.524 73.1411 103.619 73.2631C103.715 73.3895 103.865 73.4941 104.07 73.5769C104.187 73.6204 104.533 73.7207 105.107 73.8776C105.939 74.0998 106.517 74.2828 106.844 74.4267C107.174 74.5661 107.433 74.7709 107.62 75.0411C107.807 75.3113 107.901 75.6469 107.901 76.0478C107.901 76.44 107.786 76.8104 107.555 77.1591C107.329 77.5034 107 77.7714 106.569 77.9631C106.139 78.1505 105.651 78.2442 105.107 78.2442C104.207 78.2442 103.519 78.0568 103.045 77.682C102.575 77.3073 102.275 76.7516 102.144 76.0151Z" fill="#2D2D2D"/>
+<path d="M109.298 78.0873V68.5042H110.473V71.9426C111.021 71.3064 111.713 70.9882 112.548 70.9882C113.062 70.9882 113.508 71.0906 113.886 71.2955C114.265 71.4959 114.534 71.7748 114.695 72.1322C114.861 72.4895 114.944 73.0081 114.944 73.688V78.0873H113.769V73.688C113.769 73.0997 113.64 72.6726 113.384 72.4067C113.131 72.1366 112.772 72.0015 112.307 72.0015C111.959 72.0015 111.63 72.093 111.321 72.276C111.016 72.4547 110.799 72.6987 110.668 73.0081C110.538 73.3176 110.473 73.7446 110.473 74.2894V78.0873H109.298Z" fill="#2D2D2D"/>
+<path d="M121.483 75.8517L122.697 76.0021C122.506 76.7124 122.151 77.2637 121.634 77.6559C121.116 78.0481 120.454 78.2442 119.649 78.2442C118.636 78.2442 117.831 77.9326 117.234 77.3094C116.643 76.6819 116.347 75.8038 116.347 74.6751C116.347 73.5071 116.647 72.6007 117.248 71.9557C117.848 71.3107 118.627 70.9882 119.584 70.9882C120.511 70.9882 121.268 71.3042 121.856 71.9361C122.443 72.568 122.737 73.457 122.737 74.6032C122.737 74.6729 122.734 74.7775 122.73 74.9169H117.561C117.604 75.6796 117.82 76.2635 118.207 76.6688C118.594 77.0741 119.077 77.2767 119.656 77.2767C120.087 77.2767 120.454 77.1634 120.759 76.9368C121.064 76.7102 121.305 76.3485 121.483 75.8517ZM117.626 73.9495H121.497C121.444 73.3655 121.296 72.9275 121.053 72.6355C120.678 72.1823 120.193 71.9557 119.597 71.9557C119.058 71.9557 118.603 72.1366 118.233 72.4983C117.868 72.86 117.665 73.3437 117.626 73.9495Z" fill="#2D2D2D"/>
+<path d="M324.574 117.178V106.839H332.008V108.059H325.935V111.226H331.622V112.439H325.935V115.958H332.246V117.178H324.574Z" fill="#2D2D2D"/>
+<path d="M333.243 117.178L335.964 113.285L333.446 109.688H335.024L336.167 111.444C336.382 111.778 336.555 112.058 336.686 112.284C336.892 111.973 337.081 111.698 337.254 111.458L338.509 109.688H340.017L337.443 113.215L340.213 117.178H338.663L337.135 114.851L336.728 114.223L334.771 117.178H333.243Z" fill="#2D2D2D"/>
+<path d="M344.141 116.043L344.323 117.164C343.968 117.239 343.65 117.277 343.37 117.277C342.911 117.277 342.556 117.204 342.304 117.058C342.051 116.913 341.873 116.722 341.771 116.487C341.668 116.247 341.616 115.747 341.616 114.985V110.676H340.691V109.688H341.616V107.833L342.872 107.072V109.688H344.141V110.676H342.872V115.055C342.872 115.417 342.893 115.65 342.935 115.754C342.981 115.857 343.054 115.939 343.152 116C343.255 116.062 343.4 116.092 343.587 116.092C343.727 116.092 343.912 116.076 344.141 116.043Z" fill="#2D2D2D"/>
+<path d="M350.6 114.766L351.905 114.928C351.699 115.695 351.318 116.29 350.761 116.713C350.205 117.136 349.494 117.348 348.63 117.348C347.54 117.348 346.675 117.011 346.035 116.339C345.399 115.662 345.081 114.714 345.081 113.497C345.081 112.237 345.404 111.259 346.049 110.563C346.694 109.867 347.531 109.519 348.559 109.519C349.555 109.519 350.369 109.86 351 110.542C351.631 111.223 351.947 112.183 351.947 113.419C351.947 113.494 351.944 113.607 351.94 113.758H346.385C346.432 114.58 346.664 115.211 347.08 115.648C347.496 116.085 348.015 116.304 348.637 116.304C349.099 116.304 349.494 116.181 349.822 115.937C350.149 115.692 350.408 115.302 350.6 114.766ZM346.456 112.714H350.614C350.558 112.084 350.399 111.611 350.137 111.296C349.735 110.807 349.214 110.563 348.573 110.563C347.994 110.563 347.505 110.758 347.108 111.148C346.715 111.538 346.498 112.06 346.456 112.714Z" fill="#2D2D2D"/>
+<path d="M353.602 117.178V109.688H354.738V110.824C355.028 110.292 355.295 109.942 355.538 109.773C355.785 109.604 356.057 109.519 356.351 109.519C356.777 109.519 357.209 109.655 357.649 109.928L357.214 111.106C356.905 110.922 356.597 110.831 356.288 110.831C356.012 110.831 355.764 110.915 355.545 111.085C355.325 111.249 355.168 111.48 355.075 111.776C354.935 112.227 354.864 112.721 354.864 113.257V117.178H353.602Z" fill="#2D2D2D"/>
+<path d="M358.519 117.178V109.688H359.655V110.753C360.202 109.93 360.992 109.519 362.025 109.519C362.474 109.519 362.885 109.601 363.259 109.766C363.638 109.926 363.921 110.137 364.108 110.4C364.295 110.664 364.426 110.976 364.5 111.339C364.547 111.574 364.571 111.985 364.571 112.573V117.178H363.308V112.622C363.308 112.105 363.259 111.719 363.161 111.465C363.063 111.207 362.888 111.002 362.635 110.852C362.387 110.697 362.095 110.619 361.758 110.619C361.221 110.619 360.756 110.791 360.363 111.134C359.975 111.477 359.781 112.128 359.781 113.088V117.178H358.519Z" fill="#2D2D2D"/>
+<path d="M371.493 116.254C371.025 116.654 370.574 116.936 370.139 117.101C369.709 117.265 369.246 117.348 368.751 117.348C367.933 117.348 367.304 117.148 366.864 116.748C366.425 116.344 366.205 115.829 366.205 115.203C366.205 114.837 366.287 114.503 366.451 114.202C366.619 113.896 366.836 113.652 367.103 113.468C367.374 113.285 367.678 113.146 368.014 113.052C368.262 112.987 368.636 112.923 369.136 112.862C370.156 112.74 370.906 112.594 371.388 112.425C371.392 112.251 371.395 112.14 371.395 112.093C371.395 111.576 371.275 111.212 371.037 111C370.714 110.713 370.235 110.57 369.599 110.57C369.006 110.57 368.566 110.676 368.281 110.887C368 111.094 367.792 111.463 367.657 111.994L366.422 111.825C366.535 111.294 366.719 110.866 366.976 110.542C367.234 110.212 367.605 109.961 368.092 109.787C368.578 109.608 369.141 109.519 369.782 109.519C370.417 109.519 370.934 109.594 371.331 109.745C371.729 109.895 372.021 110.085 372.208 110.316C372.395 110.542 372.526 110.828 372.601 111.176C372.643 111.393 372.664 111.783 372.664 112.347V114.04C372.664 115.22 372.69 115.968 372.741 116.283C372.797 116.593 372.905 116.891 373.064 117.178H371.745C371.614 116.915 371.53 116.607 371.493 116.254ZM371.388 113.419C370.929 113.607 370.242 113.767 369.326 113.899C368.807 113.974 368.44 114.059 368.225 114.153C368.01 114.247 367.844 114.385 367.727 114.569C367.61 114.747 367.552 114.947 367.552 115.168C367.552 115.507 367.678 115.789 367.93 116.015C368.187 116.24 368.561 116.353 369.052 116.353C369.538 116.353 369.971 116.247 370.35 116.036C370.728 115.819 371.007 115.526 371.184 115.154C371.32 114.867 371.388 114.444 371.388 113.885V113.419Z" fill="#2D2D2D"/>
+<path d="M374.719 117.178V106.839H375.981V117.178H374.719Z" fill="#2D2D2D"/>
+<path d="M382.343 117.178V106.839H385.884C386.684 106.839 387.294 106.888 387.715 106.987C388.304 107.123 388.806 107.37 389.223 107.727C389.765 108.188 390.169 108.778 390.436 109.498C390.707 110.212 390.842 111.031 390.842 111.952C390.842 112.737 390.751 113.433 390.569 114.04C390.387 114.646 390.153 115.149 389.868 115.549C389.583 115.944 389.269 116.257 388.928 116.487C388.591 116.713 388.182 116.884 387.701 117.002C387.224 117.12 386.675 117.178 386.053 117.178H382.343ZM383.703 115.958H385.898C386.576 115.958 387.107 115.895 387.49 115.768C387.878 115.641 388.187 115.462 388.416 115.232C388.739 114.907 388.989 114.472 389.166 113.927C389.349 113.377 389.44 112.711 389.44 111.931C389.44 110.85 389.262 110.02 388.907 109.441C388.556 108.858 388.129 108.468 387.624 108.271C387.259 108.129 386.672 108.059 385.863 108.059H383.703V115.958Z" fill="#2D2D2D"/>
+<path d="M397.54 116.254C397.073 116.654 396.621 116.936 396.187 117.101C395.757 117.265 395.294 117.348 394.798 117.348C393.98 117.348 393.351 117.148 392.912 116.748C392.472 116.344 392.253 115.829 392.253 115.203C392.253 114.837 392.334 114.503 392.498 114.202C392.666 113.896 392.884 113.652 393.15 113.468C393.421 113.285 393.725 113.146 394.062 113.052C394.31 112.987 394.684 112.923 395.184 112.862C396.203 112.74 396.953 112.594 397.435 112.425C397.44 112.251 397.442 112.14 397.442 112.093C397.442 111.576 397.323 111.212 397.084 111C396.762 110.713 396.283 110.57 395.647 110.57C395.053 110.57 394.613 110.676 394.328 110.887C394.048 111.094 393.84 111.463 393.704 111.994L392.47 111.825C392.582 111.294 392.767 110.866 393.024 110.542C393.281 110.212 393.653 109.961 394.139 109.787C394.625 109.608 395.189 109.519 395.829 109.519C396.465 109.519 396.981 109.594 397.379 109.745C397.776 109.895 398.068 110.085 398.255 110.316C398.442 110.542 398.573 110.828 398.648 111.176C398.69 111.393 398.711 111.783 398.711 112.347V114.04C398.711 115.22 398.737 115.968 398.788 116.283C398.845 116.593 398.952 116.891 399.111 117.178H397.793C397.662 116.915 397.578 116.607 397.54 116.254ZM397.435 113.419C396.977 113.607 396.29 113.767 395.373 113.899C394.854 113.974 394.487 114.059 394.272 114.153C394.057 114.247 393.891 114.385 393.774 114.569C393.657 114.747 393.599 114.947 393.599 115.168C393.599 115.507 393.725 115.789 393.978 116.015C394.235 116.24 394.609 116.353 395.1 116.353C395.586 116.353 396.018 116.247 396.397 116.036C396.776 115.819 397.054 115.526 397.232 115.154C397.367 114.867 397.435 114.444 397.435 113.885V113.419Z" fill="#2D2D2D"/>
+<path d="M403.551 116.043L403.733 117.164C403.378 117.239 403.06 117.277 402.779 117.277C402.321 117.277 401.966 117.204 401.713 117.058C401.461 116.913 401.283 116.722 401.18 116.487C401.077 116.247 401.026 115.747 401.026 114.985V110.676H400.1V109.688H401.026V107.833L402.281 107.072V109.688H403.551V110.676H402.281V115.055C402.281 115.417 402.302 115.65 402.344 115.754C402.391 115.857 402.464 115.939 402.562 116C402.665 116.062 402.81 116.092 402.997 116.092C403.137 116.092 403.322 116.076 403.551 116.043Z" fill="#2D2D2D"/>
+<path d="M409.771 116.254C409.304 116.654 408.853 116.936 408.418 117.101C407.988 117.265 407.525 117.348 407.029 117.348C406.211 117.348 405.582 117.148 405.143 116.748C404.704 116.344 404.484 115.829 404.484 115.203C404.484 114.837 404.566 114.503 404.729 114.202C404.898 113.896 405.115 113.652 405.381 113.468C405.653 113.285 405.956 113.146 406.293 113.052C406.541 112.987 406.915 112.923 407.415 112.862C408.434 112.74 409.185 112.594 409.666 112.425C409.671 112.251 409.673 112.14 409.673 112.093C409.673 111.576 409.554 111.212 409.316 111C408.993 110.713 408.514 110.57 407.878 110.57C407.284 110.57 406.845 110.676 406.56 110.887C406.279 111.094 406.071 111.463 405.935 111.994L404.701 111.825C404.813 111.294 404.998 110.866 405.255 110.542C405.512 110.212 405.884 109.961 406.37 109.787C406.856 109.608 407.42 109.519 408.06 109.519C408.696 109.519 409.213 109.594 409.61 109.745C410.008 109.895 410.3 110.085 410.487 110.316C410.674 110.542 410.805 110.828 410.879 111.176C410.922 111.393 410.943 111.783 410.943 112.347V114.04C410.943 115.22 410.968 115.968 411.02 116.283C411.076 116.593 411.183 116.891 411.342 117.178H410.024C409.893 116.915 409.809 116.607 409.771 116.254ZM409.666 113.419C409.208 113.607 408.521 113.767 407.604 113.899C407.086 113.974 406.719 114.059 406.503 114.153C406.288 114.247 406.122 114.385 406.006 114.569C405.889 114.747 405.83 114.947 405.83 115.168C405.83 115.507 405.956 115.789 406.209 116.015C406.466 116.24 406.84 116.353 407.331 116.353C407.817 116.353 408.25 116.247 408.628 116.036C409.007 115.819 409.285 115.526 409.463 115.154C409.598 114.867 409.666 114.444 409.666 113.885V113.419Z" fill="#2D2D2D"/>
+<path d="M414.19 117.178H413.019V106.839H414.281V110.527C414.814 109.855 415.494 109.519 416.322 109.519C416.78 109.519 417.212 109.613 417.619 109.801C418.031 109.984 418.367 110.245 418.629 110.584C418.896 110.918 419.104 111.322 419.253 111.797C419.403 112.272 419.478 112.78 419.478 113.32C419.478 114.604 419.162 115.596 418.531 116.297C417.9 116.997 417.142 117.348 416.259 117.348C415.38 117.348 414.69 116.978 414.19 116.24V117.178ZM414.176 113.377C414.176 114.275 414.298 114.924 414.541 115.323C414.938 115.977 415.476 116.304 416.154 116.304C416.705 116.304 417.182 116.064 417.584 115.584C417.986 115.1 418.187 114.381 418.187 113.426C418.187 112.448 417.993 111.726 417.605 111.261C417.222 110.795 416.757 110.563 416.21 110.563C415.658 110.563 415.181 110.805 414.779 111.289C414.377 111.769 414.176 112.465 414.176 113.377Z" fill="#2D2D2D"/>
+<path d="M426 116.254C425.532 116.654 425.081 116.936 424.647 117.101C424.216 117.265 423.754 117.348 423.258 117.348C422.44 117.348 421.811 117.148 421.372 116.748C420.932 116.344 420.712 115.829 420.712 115.203C420.712 114.837 420.794 114.503 420.958 114.202C421.126 113.896 421.344 113.652 421.61 113.468C421.881 113.285 422.185 113.146 422.522 113.052C422.769 112.987 423.143 112.923 423.644 112.862C424.663 112.74 425.413 112.594 425.895 112.425C425.899 112.251 425.902 112.14 425.902 112.093C425.902 111.576 425.783 111.212 425.544 111C425.222 110.713 424.742 110.57 424.107 110.57C423.513 110.57 423.073 110.676 422.788 110.887C422.508 111.094 422.3 111.463 422.164 111.994L420.93 111.825C421.042 111.294 421.227 110.866 421.484 110.542C421.741 110.212 422.113 109.961 422.599 109.787C423.085 109.608 423.648 109.519 424.289 109.519C424.925 109.519 425.441 109.594 425.839 109.745C426.236 109.895 426.528 110.085 426.715 110.316C426.902 110.542 427.033 110.828 427.108 111.176C427.15 111.393 427.171 111.783 427.171 112.347V114.04C427.171 115.22 427.197 115.968 427.248 116.283C427.304 116.593 427.412 116.891 427.571 117.178H426.252C426.122 116.915 426.037 116.607 426 116.254ZM425.895 113.419C425.437 113.607 424.749 113.767 423.833 113.899C423.314 113.974 422.947 114.059 422.732 114.153C422.517 114.247 422.351 114.385 422.234 114.569C422.117 114.747 422.059 114.947 422.059 115.168C422.059 115.507 422.185 115.789 422.438 116.015C422.695 116.24 423.069 116.353 423.56 116.353C424.046 116.353 424.478 116.247 424.857 116.036C425.236 115.819 425.514 115.526 425.691 115.154C425.827 114.867 425.895 114.444 425.895 113.885V113.419Z" fill="#2D2D2D"/>
+<path d="M428.749 114.943L429.998 114.745C430.068 115.248 430.262 115.634 430.58 115.902C430.902 116.17 431.351 116.304 431.926 116.304C432.506 116.304 432.936 116.186 433.217 115.951C433.497 115.711 433.637 115.432 433.637 115.112C433.637 114.825 433.514 114.599 433.266 114.435C433.093 114.322 432.663 114.178 431.975 114.004C431.05 113.769 430.407 113.567 430.047 113.398C429.692 113.224 429.42 112.987 429.233 112.686C429.051 112.38 428.96 112.044 428.96 111.677C428.96 111.343 429.035 111.035 429.184 110.753C429.339 110.466 429.547 110.229 429.808 110.041C430.005 109.895 430.271 109.773 430.608 109.674C430.949 109.571 431.314 109.519 431.702 109.519C432.286 109.519 432.798 109.604 433.238 109.773C433.682 109.942 434.009 110.172 434.219 110.464C434.43 110.751 434.575 111.136 434.654 111.621L433.42 111.79C433.364 111.404 433.2 111.103 432.929 110.887C432.663 110.671 432.284 110.563 431.793 110.563C431.213 110.563 430.8 110.659 430.552 110.852C430.304 111.045 430.18 111.27 430.18 111.529C430.18 111.694 430.232 111.842 430.334 111.973C430.437 112.11 430.599 112.222 430.818 112.312C430.944 112.359 431.316 112.467 431.933 112.636C432.826 112.876 433.448 113.074 433.799 113.229C434.154 113.379 434.432 113.6 434.633 113.892C434.834 114.183 434.935 114.545 434.935 114.978C434.935 115.401 434.811 115.801 434.563 116.177C434.32 116.548 433.967 116.837 433.504 117.044C433.041 117.246 432.518 117.348 431.933 117.348C430.966 117.348 430.227 117.145 429.717 116.741C429.212 116.337 428.89 115.737 428.749 114.943Z" fill="#2D2D2D"/>
+<path d="M441.654 114.766L442.958 114.928C442.752 115.695 442.371 116.29 441.815 116.713C441.258 117.136 440.548 117.348 439.683 117.348C438.594 117.348 437.729 117.011 437.088 116.339C436.452 115.662 436.134 114.714 436.134 113.497C436.134 112.237 436.457 111.259 437.102 110.563C437.747 109.867 438.584 109.519 439.613 109.519C440.609 109.519 441.422 109.86 442.053 110.542C442.684 111.223 443 112.183 443 113.419C443 113.494 442.998 113.607 442.993 113.758H437.439C437.486 114.58 437.717 115.211 438.133 115.648C438.549 116.085 439.068 116.304 439.69 116.304C440.153 116.304 440.548 116.181 440.875 115.937C441.202 115.692 441.462 115.302 441.654 114.766ZM437.509 112.714H441.668C441.611 112.084 441.452 111.611 441.191 111.296C440.789 110.807 440.267 110.563 439.627 110.563C439.047 110.563 438.559 110.758 438.161 111.148C437.768 111.538 437.551 112.06 437.509 112.714Z" fill="#2D2D2D"/>
+<path d="M99.9343 88.4343C99.6219 88.7467 99.6219 89.2533 99.9343 89.5657L105.025 94.6569C105.338 94.9693 105.844 94.9693 106.157 94.6569C106.469 94.3444 106.469 93.8379 106.157 93.5255L101.631 89L106.157 84.4745C106.469 84.1621 106.469 83.6556 106.157 83.3431C105.844 83.0307 105.338 83.0307 105.025 83.3431L99.9343 88.4343ZM94 57.3H120V55.7H94V57.3ZM132.2 69.5V76H133.8V69.5H132.2ZM120 88.2H100.5V89.8H120V88.2ZM132.2 76C132.2 82.7379 126.738 88.2 120 88.2V89.8C127.622 89.8 133.8 83.6215 133.8 76H132.2ZM120 57.3C126.738 57.3 132.2 62.7621 132.2 69.5H133.8C133.8 61.8785 127.622 55.7 120 55.7V57.3Z" fill="#2D2D2D"/>
+</svg>
diff --git a/public/img/features/key-value/key-value-api-4.svg b/public/img/features/key-value/key-value-api-4.svg
new file mode 100644
index 0000000..3345c52
--- /dev/null
+++ b/public/img/features/key-value/key-value-api-4.svg
@@ -0,0 +1,163 @@
+<svg width="329" height="499" viewBox="0 0 329 499" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M25.2066 8.65572C25.2066 3.8753 29.0819 0 33.8623 0H317.63C322.411 0 326.286 3.87529 326.286 8.65571V138.113C326.286 142.894 322.411 146.769 317.63 146.769H33.8623C29.0819 146.769 25.2066 142.894 25.2066 138.113V8.65572Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M317.63 1.73114H33.8623C30.038 1.73114 26.9378 4.83138 26.9378 8.65572V138.113C26.9378 141.937 30.038 145.038 33.8623 145.038H317.63C321.455 145.038 324.555 141.937 324.555 138.113V8.65571C324.555 4.83137 321.455 1.73114 317.63 1.73114ZM33.8623 0C29.0819 0 25.2066 3.8753 25.2066 8.65572V138.113C25.2066 142.894 29.0819 146.769 33.8623 146.769H317.63C322.411 146.769 326.286 142.894 326.286 138.113V8.65571C326.286 3.87529 322.411 0 317.63 0H33.8623Z" fill="black"/>
+<path d="M14.265 21.2978C14.265 16.5174 18.1402 12.6421 22.9207 12.6421H305.501C310.282 12.6421 314.157 16.5174 314.157 21.2978V158.622C314.157 163.402 310.282 167.278 305.501 167.278H22.9207C18.1403 167.278 14.265 163.402 14.265 158.622V21.2978Z" fill="#2D2D2D"/>
+<path d="M33.5948 45.2328H35.2428V43.8618L36.3231 43.5571V45.2328H40.0208V46.1607H36.3231V49.4291C36.3231 50.1031 36.4847 50.6017 36.8078 50.9248C37.1402 51.248 37.6111 51.4096 38.2204 51.4096C38.6359 51.4096 38.996 51.3311 39.3006 51.1741C39.6146 51.0172 39.8962 50.8464 40.1454 50.6617L40.5055 51.4788C40.1824 51.7373 39.7946 51.9451 39.3422 52.102C38.899 52.259 38.442 52.3374 37.9711 52.3374C37.6018 52.3374 37.251 52.282 36.9186 52.1713C36.5954 52.0697 36.3092 51.9081 36.0599 51.6865C35.8107 51.4649 35.6122 51.1833 35.4644 50.8417C35.3167 50.4909 35.2428 50.0754 35.2428 49.5953V46.1607H33.5948V45.2328Z" fill="white"/>
+<path d="M45.4927 48.612L42.8198 45.2328H44.2048L46.199 47.8365L48.2487 45.2328H49.4951L46.8222 48.5566L49.6613 52.1574H48.3318L46.1298 49.3183L43.8862 52.1574H42.6259L45.4927 48.612Z" fill="white"/>
+<path d="M54.0391 51.3957C54.0391 51.1003 54.1222 50.8741 54.2884 50.7171C54.4546 50.5509 54.6762 50.4678 54.9532 50.4678C55.2486 50.4678 55.4795 50.5509 55.6456 50.7171C55.8118 50.8741 55.8949 51.1003 55.8949 51.3957C55.8949 51.6635 55.8118 51.885 55.6456 52.0605C55.4795 52.2359 55.2486 52.3236 54.9532 52.3236C54.6762 52.3236 54.4546 52.2359 54.2884 52.0605C54.1222 51.885 54.0391 51.6635 54.0391 51.3957Z" fill="white"/>
+<path d="M65.7016 50.2878C65.7016 49.9923 65.5862 49.7661 65.3554 49.6092C65.1246 49.443 64.8384 49.3137 64.4968 49.2214C64.1551 49.1198 63.7812 49.0275 63.375 48.9444C62.978 48.8613 62.6087 48.7505 62.267 48.612C61.9254 48.4735 61.6392 48.2889 61.4084 48.0581C61.1776 47.818 61.0622 47.4856 61.0622 47.0609C61.0622 46.7101 61.136 46.41 61.2838 46.1607C61.4407 45.9114 61.6438 45.7083 61.8931 45.5514C62.1424 45.3852 62.4332 45.2652 62.7656 45.1913C63.098 45.1082 63.4442 45.0666 63.8043 45.0666C64.4506 45.0666 65.0046 45.1497 65.4662 45.3159C65.9371 45.4729 66.311 45.6391 66.588 45.8145L66.1448 46.687C65.8401 46.5208 65.5077 46.3639 65.1477 46.2161C64.7968 46.0592 64.3536 45.9807 63.8181 45.9807C63.615 45.9807 63.4119 46.0038 63.2088 46.0499C63.0149 46.0869 62.8349 46.1469 62.6687 46.23C62.5117 46.3131 62.3825 46.4239 62.2809 46.5624C62.1886 46.6916 62.1424 46.8532 62.1424 47.0471C62.1424 47.2871 62.2578 47.4718 62.4886 47.601C62.7194 47.7303 63.0057 47.8411 63.3473 47.9334C63.6889 48.0165 64.0582 48.0996 64.4552 48.1827C64.8614 48.2566 65.2354 48.3674 65.577 48.5151C65.9186 48.6628 66.2048 48.8613 66.4356 49.1106C66.6665 49.3599 66.7819 49.6969 66.7819 50.1216C66.7819 50.7586 66.528 51.2849 66.0202 51.7004C65.5216 52.1159 64.7691 52.3236 63.7628 52.3236C63.4581 52.3236 63.158 52.2959 62.8626 52.2405C62.5671 52.1851 62.2901 52.1112 62.0316 52.0189C61.7731 51.9266 61.5377 51.825 61.3253 51.7142C61.1129 51.5942 60.9375 51.4742 60.799 51.3542L61.353 50.454C61.4638 50.5648 61.6115 50.6802 61.7962 50.8002C61.9808 50.911 62.184 51.0125 62.4055 51.1049C62.6271 51.1972 62.8626 51.2711 63.1118 51.3265C63.3704 51.3819 63.6289 51.4096 63.8874 51.4096C64.1367 51.4096 64.3675 51.3911 64.5799 51.3542C64.8014 51.308 64.9953 51.2434 65.1615 51.1603C65.3277 51.0679 65.457 50.9525 65.5493 50.814C65.6508 50.6663 65.7016 50.4909 65.7016 50.2878Z" fill="white"/>
+<path d="M68.8884 45.2328H70.5365V43.8618L71.6167 43.5571V45.2328H75.3144V46.1607H71.6167V49.4291C71.6167 50.1031 71.7783 50.6017 72.1014 50.9248C72.4338 51.248 72.9047 51.4096 73.5141 51.4096C73.9295 51.4096 74.2896 51.3311 74.5943 51.1741C74.9082 51.0172 75.1898 50.8464 75.4391 50.6617L75.7992 51.4788C75.476 51.7373 75.0882 51.9451 74.6358 52.102C74.1927 52.259 73.7356 52.3374 73.2648 52.3374C72.8955 52.3374 72.5446 52.282 72.2122 52.1713C71.8891 52.0697 71.6029 51.9081 71.3536 51.6865C71.1043 51.4649 70.9058 51.1833 70.7581 50.8417C70.6104 50.4909 70.5365 50.0754 70.5365 49.5953V46.1607H68.8884V45.2328Z" fill="white"/>
+<path d="M78.7782 45.773C79.1752 45.5421 79.623 45.3759 80.1216 45.2744C80.6202 45.1728 81.1095 45.122 81.5896 45.122C82.0605 45.122 82.4436 45.1959 82.7391 45.3436C83.0438 45.4914 83.2792 45.6852 83.4454 45.9253C83.6208 46.1561 83.7362 46.4239 83.7916 46.7285C83.8563 47.024 83.8886 47.3241 83.8886 47.6287C83.8886 47.9796 83.8793 48.3535 83.8609 48.7505C83.8424 49.1475 83.8286 49.5445 83.8193 49.9415C83.8193 50.4032 83.847 50.8417 83.9024 51.2572H84.8303V52.1574H82.9884L82.8637 51.1187H82.7945C82.7391 51.2018 82.656 51.308 82.5452 51.4372C82.4344 51.5665 82.2867 51.6958 82.102 51.825C81.9266 51.9451 81.7096 52.0512 81.4511 52.1436C81.1926 52.2359 80.8879 52.282 80.5371 52.282C79.8539 52.282 79.3137 52.1066 78.9167 51.7558C78.5197 51.4049 78.3212 50.9248 78.3212 50.3155C78.3212 49.8446 78.4228 49.4522 78.6259 49.1383C78.8382 48.8244 79.1383 48.5843 79.5261 48.4181C79.9139 48.2519 80.3801 48.155 80.9249 48.1273C81.4788 48.0996 82.0974 48.1365 82.7806 48.2381C82.8268 47.8134 82.8314 47.4625 82.7945 47.1856C82.7668 46.8994 82.6929 46.6731 82.5729 46.507C82.4621 46.3408 82.3005 46.2254 82.0882 46.1607C81.8851 46.0869 81.6312 46.0499 81.3265 46.0499C80.911 46.0499 80.514 46.11 80.1355 46.23C79.7569 46.3408 79.4199 46.4562 79.1245 46.5762L78.7782 45.773ZM80.8141 51.3542C81.0726 51.3542 81.3126 51.3126 81.5342 51.2295C81.7558 51.1464 81.9497 51.0402 82.1159 50.911C82.2821 50.7817 82.4206 50.6432 82.5313 50.4955C82.6421 50.3386 82.7252 50.1908 82.7806 50.0523V49.0829C82.3005 48.9998 81.8574 48.9583 81.4511 48.9583C81.0449 48.9583 80.694 49.0044 80.3986 49.0967C80.1031 49.1798 79.8723 49.3137 79.7061 49.4984C79.5399 49.683 79.4568 49.9231 79.4568 50.2185C79.4568 50.5232 79.5584 50.791 79.7615 51.0218C79.9739 51.2434 80.3247 51.3542 80.8141 51.3542Z" fill="white"/>
+<path d="M87.02 52.1574V51.2295H88.8896V46.1607H87.02V45.2328H89.6098L89.8314 46.133H89.9006C90.2145 45.8468 90.5654 45.6021 90.9531 45.399C91.3409 45.1959 91.8025 45.0943 92.338 45.0943C92.652 45.0943 92.9012 45.1544 93.0859 45.2744C93.2798 45.3944 93.4275 45.5698 93.5291 45.8007C93.6399 46.0315 93.7137 46.3131 93.7507 46.6454C93.7876 46.9686 93.8061 47.3379 93.8061 47.7534L92.8366 47.7672C92.8366 47.1763 92.7766 46.7424 92.6566 46.4654C92.5458 46.1884 92.338 46.0499 92.0334 46.0499C91.7471 46.0499 91.4886 46.0915 91.2578 46.1746C91.027 46.2577 90.8239 46.3592 90.6484 46.4793C90.4823 46.5993 90.3391 46.7193 90.2191 46.8393C90.0991 46.9594 90.0114 47.0609 89.956 47.144V51.2295H92.615V52.1574H87.02Z" fill="white"/>
+<path d="M95.3587 45.2328H97.0067V43.8618L98.0869 43.5571V45.2328H101.785V46.1607H98.0869V49.4291C98.0869 50.1031 98.2485 50.6017 98.5717 50.9248C98.904 51.248 99.3749 51.4096 99.9843 51.4096C100.4 51.4096 100.76 51.3311 101.065 51.1741C101.378 51.0172 101.66 50.8464 101.909 50.6617L102.269 51.4788C101.946 51.7373 101.558 51.9451 101.106 52.102C100.663 52.259 100.206 52.3374 99.735 52.3374C99.3657 52.3374 99.0148 52.282 98.6825 52.1713C98.3593 52.0697 98.0731 51.9081 97.8238 51.6865C97.5745 51.4649 97.376 51.1833 97.2283 50.8417C97.0806 50.4909 97.0067 50.0754 97.0067 49.5953V46.1607H95.3587V45.2328Z" fill="white"/>
+<path d="M109.736 55.0934C109.117 54.9365 108.535 54.701 107.991 54.3871C107.455 54.0824 106.984 53.6808 106.578 53.1822C106.181 52.6837 105.862 52.0743 105.622 51.3542C105.392 50.634 105.276 49.78 105.276 48.7921C105.276 47.8134 105.396 46.9594 105.636 46.23C105.876 45.4914 106.199 44.8681 106.606 44.3603C107.012 43.8433 107.483 43.4325 108.018 43.1278C108.563 42.8139 109.135 42.5923 109.736 42.463L110.082 43.3355C109.537 43.4925 109.039 43.7002 108.586 43.9587C108.134 44.208 107.741 44.545 107.409 44.9697C107.086 45.3852 106.832 45.9068 106.647 46.5347C106.472 47.1533 106.384 47.9057 106.384 48.7921C106.384 49.6876 106.49 50.454 106.703 51.091C106.924 51.7188 107.21 52.2405 107.561 52.656C107.921 53.0807 108.318 53.4084 108.752 53.6393C109.195 53.8793 109.639 54.0455 110.082 54.1378L109.736 55.0934Z" fill="white"/>
+<path d="M114.557 54.1378C115 54.0455 115.438 53.8793 115.872 53.6393C116.315 53.4084 116.712 53.0807 117.063 52.656C117.423 52.2405 117.71 51.7188 117.922 51.091C118.144 50.454 118.254 49.6876 118.254 48.7921C118.254 47.9057 118.162 47.1533 117.977 46.5347C117.802 45.9068 117.548 45.3852 117.216 44.9697C116.892 44.545 116.505 44.208 116.052 43.9587C115.6 43.7002 115.101 43.4925 114.557 43.3355L114.903 42.463C115.503 42.5923 116.071 42.8139 116.606 43.1278C117.151 43.4325 117.626 43.8433 118.033 44.3603C118.439 44.8681 118.762 45.4914 119.002 46.23C119.242 46.9594 119.362 47.8134 119.362 48.7921C119.362 49.78 119.242 50.634 119.002 51.3542C118.771 52.0743 118.453 52.6837 118.047 53.1822C117.65 53.6808 117.179 54.0824 116.634 54.3871C116.098 54.701 115.521 54.9365 114.903 55.0934L114.557 54.1378Z" fill="white"/>
+<path d="M124.571 51.3957C124.571 51.1187 124.659 50.8971 124.834 50.7309C125.019 50.5555 125.254 50.4678 125.54 50.4678C125.891 50.4678 126.164 50.5925 126.358 50.8417C126.551 51.0818 126.648 51.4234 126.648 51.8666C126.648 52.2266 126.588 52.5406 126.468 52.8083C126.348 53.0853 126.196 53.3161 126.011 53.5008C125.836 53.6947 125.642 53.847 125.43 53.9578C125.227 54.0778 125.037 54.1655 124.862 54.2209L124.516 53.6808C124.848 53.5515 125.134 53.3669 125.374 53.1268C125.614 52.8868 125.734 52.596 125.734 52.2543C125.605 52.282 125.504 52.2959 125.43 52.2959C125.162 52.2959 124.95 52.222 124.793 52.0743C124.645 51.9174 124.571 51.6911 124.571 51.3957ZM124.696 45.953C124.696 45.6575 124.779 45.4313 124.945 45.2744C125.111 45.1082 125.333 45.0251 125.61 45.0251C125.905 45.0251 126.136 45.1082 126.302 45.2744C126.468 45.4313 126.551 45.6575 126.551 45.953C126.551 46.2207 126.468 46.4423 126.302 46.6178C126.136 46.7932 125.905 46.8809 125.61 46.8809C125.333 46.8809 125.111 46.7932 124.945 46.6178C124.779 46.4423 124.696 46.2207 124.696 45.953Z" fill="white"/>
+<path d="M34.495 71.5932C34.495 71.5101 34.4904 71.4039 34.4812 71.2747C34.4812 71.1362 34.4765 70.9977 34.4673 70.8592C34.4581 70.7115 34.4442 70.5684 34.4258 70.4299C34.4165 70.2914 34.4027 70.1714 34.3842 70.0698H33.4563V69.1696H35.2983L35.4368 70.139H35.506C35.7553 69.8159 36.0692 69.5481 36.4477 69.3358C36.8355 69.1142 37.3064 69.0034 37.8604 69.0034C38.8483 69.0034 39.5915 69.2758 40.0901 69.8205C40.5886 70.3652 40.8379 71.2562 40.8379 72.4934C40.8379 73.0751 40.7502 73.6013 40.5748 74.0722C40.4086 74.5338 40.1685 74.9262 39.8546 75.2494C39.5407 75.5725 39.1622 75.8218 38.719 75.9972C38.2758 76.1726 37.7865 76.2604 37.251 76.2604C37.0571 76.2604 36.8817 76.2511 36.7247 76.2327C36.577 76.2234 36.4385 76.205 36.3093 76.1773C36.1892 76.1588 36.0692 76.1311 35.9492 76.0942C35.8291 76.0572 35.6999 76.0111 35.5614 75.9557V78.864H34.495V71.5932ZM37.6803 70.0144C37.4033 70.0144 37.1402 70.0652 36.8909 70.1667C36.6509 70.2683 36.4339 70.4022 36.24 70.5684C36.0553 70.7345 35.903 70.9192 35.783 71.1223C35.663 71.3254 35.5891 71.5286 35.5614 71.7317V74.8893C35.7645 75.0278 35.9907 75.1386 36.24 75.2217C36.4985 75.2955 36.8355 75.3325 37.251 75.3325C37.9896 75.3325 38.5805 75.0924 39.0237 74.6123C39.4669 74.123 39.6884 73.412 39.6884 72.4795C39.6884 71.6948 39.5315 71.09 39.2176 70.6653C38.9129 70.2314 38.4005 70.0144 37.6803 70.0144Z" fill="white"/>
+<path d="M47.0161 69.1696H48.9827V73.8921C48.9827 74.3446 49.0104 74.7785 49.0658 75.194H49.9937V76.0942H48.1518L48.1102 74.917H48.0548C47.8148 75.314 47.4962 75.6371 47.0992 75.8864C46.7022 76.1357 46.2221 76.2604 45.6589 76.2604C45.2342 76.2604 44.8695 76.2096 44.5648 76.108C44.2694 76.0157 44.0247 75.8495 43.8308 75.6094C43.637 75.3694 43.4938 75.0509 43.4015 74.6539C43.3092 74.2476 43.263 73.7444 43.263 73.1443V70.0975H42.3351V69.1696H44.3433V72.9227C44.3433 73.3013 44.3571 73.6429 44.3848 73.9475C44.4217 74.243 44.491 74.4969 44.5925 74.7092C44.6941 74.9124 44.8418 75.0693 45.0357 75.1801C45.2388 75.2817 45.5066 75.3325 45.839 75.3325C46.3191 75.3325 46.7345 75.1755 47.0854 74.8616C47.4455 74.5477 47.7178 74.1553 47.9025 73.6844V70.0975H47.0161V69.1696Z" fill="white"/>
+<path d="M51.2416 69.1696H52.8897V67.7985L53.9699 67.4939V69.1696H57.6676V70.0975H53.9699V73.3659C53.9699 74.0399 54.1315 74.5384 54.4546 74.8616C54.787 75.1847 55.2579 75.3463 55.8673 75.3463C56.2827 75.3463 56.6428 75.2678 56.9475 75.1109C57.2614 74.9539 57.543 74.7831 57.7923 74.5985L58.1524 75.4156C57.8292 75.6741 57.4414 75.8818 56.989 76.0388C56.5459 76.1957 56.0888 76.2742 55.618 76.2742C55.2487 76.2742 54.8978 76.2188 54.5654 76.108C54.2423 76.0064 53.9561 75.8449 53.7068 75.6233C53.4575 75.4017 53.259 75.1201 53.1113 74.7785C52.9635 74.4276 52.8897 74.0122 52.8897 73.5321V70.0975H51.2416V69.1696Z" fill="white"/>
+<path d="M74.442 79.0302C73.8234 78.8732 73.2417 78.6378 72.697 78.3239C72.1615 78.0192 71.6906 77.6176 71.2844 77.119C70.8874 76.6204 70.5688 76.0111 70.3288 75.2909C70.098 74.5708 69.9825 73.7167 69.9825 72.7288C69.9825 71.7502 70.1026 70.8961 70.3426 70.1667C70.5827 69.4281 70.9058 68.8049 71.3121 68.2971C71.7183 67.7801 72.1892 67.3692 72.7247 67.0645C73.2694 66.7506 73.8418 66.529 74.442 66.3998L74.7882 67.2723C74.2435 67.4292 73.7449 67.637 73.2925 67.8955C72.8401 68.1448 72.4477 68.4818 72.1153 68.9065C71.7922 69.3219 71.5383 69.8436 71.3536 70.4714C71.1782 71.09 71.0905 71.8425 71.0905 72.7288C71.0905 73.6244 71.1967 74.3907 71.409 75.0278C71.6306 75.6556 71.9168 76.1773 72.2677 76.5927C72.6277 77.0174 73.0247 77.3452 73.4587 77.576C73.9018 77.8161 74.345 77.9823 74.7882 78.0746L74.442 79.0302Z" fill="white"/>
+<path d="M78.7783 69.7097C79.1753 69.4789 79.6231 69.3127 80.1216 69.2111C80.6202 69.1096 81.1095 69.0588 81.5896 69.0588C82.0605 69.0588 82.4437 69.1327 82.7391 69.2804C83.0438 69.4281 83.2792 69.622 83.4454 69.8621C83.6208 70.0929 83.7362 70.3606 83.7916 70.6653C83.8563 70.9608 83.8886 71.2608 83.8886 71.5655C83.8886 71.9163 83.8793 72.2903 83.8609 72.6873C83.8424 73.0843 83.8286 73.4813 83.8193 73.8783C83.8193 74.3399 83.847 74.7785 83.9024 75.194H84.8303V76.0942H82.9884L82.8637 75.0555H82.7945C82.7391 75.1386 82.656 75.2447 82.5452 75.374C82.4344 75.5033 82.2867 75.6325 82.102 75.7618C81.9266 75.8818 81.7097 75.988 81.4511 76.0803C81.1926 76.1726 80.8879 76.2188 80.5371 76.2188C79.8539 76.2188 79.3138 76.0434 78.9167 75.6925C78.5197 75.3417 78.3212 74.8616 78.3212 74.2522C78.3212 73.7814 78.4228 73.389 78.6259 73.0751C78.8383 72.7611 79.1383 72.5211 79.5261 72.3549C79.9139 72.1887 80.3801 72.0918 80.9249 72.0641C81.4788 72.0364 82.0974 72.0733 82.7807 72.1749C82.8268 71.7502 82.8314 71.3993 82.7945 71.1223C82.7668 70.8361 82.6929 70.6099 82.5729 70.4437C82.4621 70.2775 82.3005 70.1621 82.0882 70.0975C81.8851 70.0236 81.6312 69.9867 81.3265 69.9867C80.911 69.9867 80.514 70.0467 80.1355 70.1667C79.7569 70.2775 79.4199 70.3929 79.1245 70.513L78.7783 69.7097ZM80.8141 75.2909C81.0726 75.2909 81.3126 75.2494 81.5342 75.1663C81.7558 75.0832 81.9497 74.977 82.1159 74.8477C82.2821 74.7185 82.4206 74.58 82.5314 74.4323C82.6422 74.2753 82.7253 74.1276 82.7807 73.9891V73.0197C82.3005 72.9366 81.8574 72.895 81.4511 72.895C81.0449 72.895 80.694 72.9412 80.3986 73.0335C80.1032 73.1166 79.8723 73.2505 79.7061 73.4351C79.54 73.6198 79.4569 73.8598 79.4569 74.1553C79.4569 74.46 79.5584 74.7277 79.7615 74.9585C79.9739 75.1801 80.3247 75.2909 80.8141 75.2909Z" fill="white"/>
+<path d="M92.1857 70.236C91.9734 70.1621 91.7425 70.1021 91.4933 70.0559C91.2532 70.0005 91.0132 69.9728 90.7731 69.9728C89.8683 69.9728 89.1943 70.1852 88.7511 70.6099C88.308 71.0346 88.0864 71.7086 88.0864 72.6319C88.0864 73.0381 88.151 73.4028 88.2803 73.726C88.4095 74.0399 88.5942 74.3076 88.8342 74.5292C89.0743 74.7508 89.3605 74.9216 89.6929 75.0416C90.0345 75.1617 90.4084 75.2217 90.8147 75.2217C91.2486 75.2217 91.6687 75.1478 92.0749 75.0001C92.4904 74.8524 92.8366 74.6585 93.1136 74.4184L93.5983 75.2217C93.4691 75.3325 93.3075 75.4479 93.1136 75.5679C92.9197 75.6879 92.6935 75.8033 92.435 75.9141C92.1857 76.0157 91.9041 76.0988 91.5902 76.1634C91.2855 76.228 90.9531 76.2604 90.5931 76.2604C89.9929 76.2604 89.4621 76.1773 89.0004 76.0111C88.548 75.8356 88.1695 75.591 87.8648 75.2771C87.5601 74.9539 87.3293 74.5708 87.1723 74.1276C87.0154 73.6752 86.9369 73.1766 86.9369 72.6319C86.9369 72.0502 87.0154 71.5332 87.1723 71.0808C87.3385 70.6284 87.574 70.2498 87.8786 69.9451C88.1833 69.6405 88.5526 69.4096 88.9866 69.2527C89.4205 69.0865 89.9052 69.0034 90.4407 69.0034C91.124 69.0034 91.6779 69.0634 92.1026 69.1834C92.5366 69.3035 92.9013 69.4373 93.1967 69.5851L93.1829 69.6266V71.5516H92.1857V70.236Z" fill="white"/>
+<path d="M101.009 70.236C100.797 70.1621 100.566 70.1021 100.317 70.0559C100.077 70.0005 99.8366 69.9728 99.5965 69.9728C98.6917 69.9728 98.0177 70.1852 97.5745 70.6099C97.1314 71.0346 96.9098 71.7086 96.9098 72.6319C96.9098 73.0381 96.9744 73.4028 97.1037 73.726C97.2329 74.0399 97.4176 74.3076 97.6576 74.5292C97.8977 74.7508 98.1839 74.9216 98.5163 75.0416C98.8579 75.1617 99.2318 75.2217 99.6381 75.2217C100.072 75.2217 100.492 75.1478 100.898 75.0001C101.314 74.8524 101.66 74.6585 101.937 74.4184L102.422 75.2217C102.292 75.3325 102.131 75.4479 101.937 75.5679C101.743 75.6879 101.517 75.8033 101.258 75.9141C101.009 76.0157 100.728 76.0988 100.414 76.1634C100.109 76.228 99.7766 76.2604 99.4165 76.2604C98.8164 76.2604 98.2855 76.1773 97.8238 76.0111C97.3714 75.8356 96.9929 75.591 96.6882 75.2771C96.3835 74.9539 96.1527 74.5708 95.9958 74.1276C95.8388 73.6752 95.7603 73.1766 95.7603 72.6319C95.7603 72.0502 95.8388 71.5332 95.9958 71.0808C96.1619 70.6284 96.3974 70.2498 96.702 69.9451C97.0067 69.6405 97.376 69.4096 97.81 69.2527C98.2439 69.0865 98.7286 69.0034 99.2641 69.0034C99.9474 69.0034 100.501 69.0634 100.926 69.1834C101.36 69.3035 101.725 69.4373 102.02 69.5851L102.006 69.6266V71.5516H101.009V70.236Z" fill="white"/>
+<path d="M104.542 72.6319C104.542 71.5147 104.833 70.633 105.415 69.9867C105.996 69.3312 106.827 69.0034 107.908 69.0034C108.489 69.0034 108.988 69.1004 109.403 69.2942C109.828 69.4789 110.179 69.7328 110.456 70.0559C110.733 70.3791 110.936 70.7622 111.065 71.2054C111.204 71.6486 111.273 72.1241 111.273 72.6319C111.273 73.1858 111.199 73.689 111.051 74.1414C110.904 74.5846 110.687 74.9631 110.4 75.2771C110.114 75.591 109.759 75.8356 109.334 76.0111C108.919 76.1773 108.443 76.2604 107.908 76.2604C107.335 76.2604 106.837 76.168 106.412 75.9834C105.987 75.7895 105.636 75.531 105.359 75.2078C105.082 74.8847 104.875 74.5015 104.736 74.0583C104.607 73.6152 104.542 73.1397 104.542 72.6319ZM105.692 72.6319C105.692 72.955 105.729 73.2782 105.802 73.6013C105.886 73.9245 106.015 74.2153 106.19 74.4738C106.366 74.7323 106.592 74.9401 106.869 75.097C107.155 75.254 107.501 75.3325 107.908 75.3325C108.646 75.3325 109.2 75.1063 109.569 74.6539C109.948 74.1922 110.137 73.5182 110.137 72.6319C110.137 72.2995 110.096 71.9764 110.013 71.6624C109.939 71.3393 109.809 71.0485 109.625 70.7899C109.449 70.5314 109.219 70.3237 108.932 70.1667C108.655 70.0098 108.314 69.9313 107.908 69.9313C107.169 69.9313 106.615 70.1575 106.246 70.6099C105.876 71.0623 105.692 71.7363 105.692 72.6319Z" fill="white"/>
+<path d="M117.603 69.1696H119.57V73.8921C119.57 74.3446 119.598 74.7785 119.653 75.194H120.581V76.0942H118.739L118.698 74.917H118.642C118.402 75.314 118.084 75.6371 117.687 75.8864C117.29 76.1357 116.809 76.2604 116.246 76.2604C115.821 76.2604 115.457 76.2096 115.152 76.108C114.857 76.0157 114.612 75.8495 114.418 75.6094C114.224 75.3694 114.081 75.0509 113.989 74.6539C113.896 74.2476 113.85 73.7444 113.85 73.1443V70.0975H112.922V69.1696H114.931V72.9227C114.931 73.3013 114.944 73.6429 114.972 73.9475C115.009 74.243 115.078 74.4969 115.18 74.7092C115.281 74.9124 115.429 75.0693 115.623 75.1801C115.826 75.2817 116.094 75.3325 116.426 75.3325C116.906 75.3325 117.322 75.1755 117.673 74.8616C118.033 74.5477 118.305 74.1553 118.49 73.6844V70.0975H117.603V69.1696Z" fill="white"/>
+<path d="M122.688 71.5932C122.688 71.5101 122.683 71.4039 122.674 71.2747C122.674 71.1362 122.669 70.9977 122.66 70.8592C122.651 70.7115 122.637 70.5684 122.618 70.4299C122.609 70.2914 122.595 70.1714 122.577 70.0698H121.649V69.1696H123.505L123.629 70.2914H123.699C123.791 70.1344 123.911 69.9821 124.059 69.8344C124.216 69.6774 124.396 69.5389 124.599 69.4189C124.802 69.2896 125.028 69.1881 125.277 69.1142C125.527 69.0403 125.79 69.0034 126.067 69.0034C126.491 69.0034 126.865 69.0496 127.189 69.1419C127.521 69.2342 127.793 69.4004 128.006 69.6405C128.227 69.8713 128.393 70.1898 128.504 70.5961C128.615 70.9931 128.67 71.5009 128.67 72.1195V76.0942H127.59V72.3272C127.59 71.5609 127.466 70.9838 127.216 70.5961C126.967 70.2083 126.515 70.0144 125.859 70.0144C125.619 70.0144 125.384 70.0652 125.153 70.1667C124.931 70.2591 124.728 70.3837 124.543 70.5407C124.359 70.6976 124.197 70.8823 124.059 71.0946C123.92 71.2977 123.819 71.5147 123.754 71.7455V76.0942H122.688V71.5932Z" fill="white"/>
+<path d="M130.652 69.1696H132.3V67.7985L133.381 67.4939V69.1696H137.078V70.0975H133.381V73.3659C133.381 74.0399 133.542 74.5384 133.865 74.8616C134.198 75.1847 134.669 75.3463 135.278 75.3463C135.693 75.3463 136.053 75.2678 136.358 75.1109C136.672 74.9539 136.954 74.7831 137.203 74.5985L137.563 75.4156C137.24 75.6741 136.852 75.8818 136.4 76.0388C135.957 76.1957 135.5 76.2742 135.029 76.2742C134.659 76.2742 134.308 76.2188 133.976 76.108C133.653 76.0064 133.367 75.8449 133.117 75.6233C132.868 75.4017 132.67 75.1201 132.522 74.7785C132.374 74.4276 132.3 74.0122 132.3 73.5321V70.0975H130.652V69.1696Z" fill="white"/>
+<path d="M140.805 75.097H142.98V67.8124L140.764 69.3635L140.224 68.5741L143.27 66.3998H144.046V75.097H146.179V76.0942H140.805V75.097Z" fill="white"/>
+<path d="M151.041 75.3325C151.041 75.0555 151.129 74.8339 151.304 74.6677C151.489 74.4923 151.725 74.4046 152.011 74.4046C152.362 74.4046 152.634 74.5292 152.828 74.7785C153.022 75.0185 153.119 75.3602 153.119 75.8033C153.119 76.1634 153.059 76.4773 152.939 76.7451C152.819 77.0221 152.666 77.2529 152.482 77.4375C152.306 77.6314 152.112 77.7838 151.9 77.8945C151.697 78.0146 151.508 78.1023 151.332 78.1577L150.986 77.6176C151.318 77.4883 151.604 77.3037 151.845 77.0636C152.085 76.8235 152.205 76.5327 152.205 76.1911C152.075 76.2188 151.974 76.2327 151.9 76.2327C151.632 76.2327 151.42 76.1588 151.263 76.0111C151.115 75.8541 151.041 75.6279 151.041 75.3325Z" fill="white"/>
+<path d="M165.544 66.3998H167.76V69.959H167.829C168.07 69.6543 168.379 69.4189 168.757 69.2527C169.136 69.0865 169.547 69.0034 169.99 69.0034C172.021 69.0034 173.037 70.176 173.037 72.5211C173.037 73.7121 172.709 74.6262 172.053 75.2632C171.398 75.891 170.465 76.205 169.256 76.205C168.683 76.205 168.166 76.1496 167.705 76.0388C167.243 75.928 166.906 75.7987 166.694 75.651V67.3277H165.544V66.3998ZM169.851 69.9313C169.297 69.9313 168.85 70.0883 168.508 70.4022C168.166 70.7161 167.917 71.1593 167.76 71.7317V74.917C167.973 75.0278 168.226 75.1155 168.522 75.1801C168.817 75.2447 169.127 75.2771 169.45 75.2771C169.819 75.2771 170.151 75.2263 170.447 75.1247C170.752 75.0139 171.01 74.8477 171.222 74.6262C171.435 74.3953 171.596 74.1045 171.707 73.7537C171.827 73.4028 171.887 72.9873 171.887 72.5072C171.887 72.1564 171.85 71.824 171.776 71.5101C171.703 71.1962 171.583 70.9238 171.416 70.693C171.259 70.4529 171.052 70.2683 170.793 70.139C170.535 70.0005 170.221 69.9313 169.851 69.9313Z" fill="white"/>
+<path d="M175.836 69.7097C176.233 69.4789 176.681 69.3127 177.179 69.2111C177.678 69.1096 178.167 69.0588 178.647 69.0588C179.118 69.0588 179.501 69.1327 179.797 69.2804C180.101 69.4281 180.337 69.622 180.503 69.8621C180.678 70.0929 180.794 70.3606 180.849 70.6653C180.914 70.9608 180.946 71.2608 180.946 71.5655C180.946 71.9163 180.937 72.2903 180.918 72.6873C180.9 73.0843 180.886 73.4813 180.877 73.8783C180.877 74.3399 180.905 74.7785 180.96 75.194H181.888V76.0942H180.046L179.921 75.0555H179.852C179.797 75.1386 179.714 75.2447 179.603 75.374C179.492 75.5033 179.344 75.6325 179.16 75.7618C178.984 75.8818 178.767 75.988 178.509 76.0803C178.25 76.1726 177.945 76.2188 177.595 76.2188C176.911 76.2188 176.371 76.0434 175.974 75.6925C175.577 75.3417 175.379 74.8616 175.379 74.2522C175.379 73.7814 175.48 73.389 175.683 73.0751C175.896 72.7611 176.196 72.5211 176.584 72.3549C176.971 72.1887 177.438 72.0918 177.982 72.0641C178.536 72.0364 179.155 72.0733 179.838 72.1749C179.884 71.7502 179.889 71.3993 179.852 71.1223C179.824 70.8361 179.75 70.6099 179.63 70.4437C179.52 70.2775 179.358 70.1621 179.146 70.0975C178.943 70.0236 178.689 69.9867 178.384 69.9867C177.969 69.9867 177.572 70.0467 177.193 70.1667C176.814 70.2775 176.477 70.3929 176.182 70.513L175.836 69.7097ZM177.872 75.2909C178.13 75.2909 178.37 75.2494 178.592 75.1663C178.813 75.0832 179.007 74.977 179.173 74.8477C179.34 74.7185 179.478 74.58 179.589 74.4323C179.7 74.2753 179.783 74.1276 179.838 73.9891V73.0197C179.358 72.9366 178.915 72.895 178.509 72.895C178.102 72.895 177.752 72.9412 177.456 73.0335C177.161 73.1166 176.93 73.2505 176.764 73.4351C176.597 73.6198 176.514 73.8598 176.514 74.1553C176.514 74.46 176.616 74.7277 176.819 74.9585C177.031 75.1801 177.382 75.2909 177.872 75.2909Z" fill="white"/>
+<path d="M184.812 66.3998H187.11V73.7675C187.11 74.3307 187.203 74.7277 187.387 74.9585C187.581 75.1894 187.863 75.3048 188.232 75.3048C188.491 75.3048 188.735 75.2586 188.966 75.1663C189.206 75.0739 189.469 74.917 189.756 74.6954L190.254 75.4571C190.106 75.5864 189.945 75.7018 189.77 75.8033C189.594 75.9049 189.414 75.9926 189.229 76.0665C189.045 76.1311 188.86 76.1819 188.675 76.2188C188.491 76.2557 188.32 76.2742 188.163 76.2742C187.821 76.2742 187.517 76.228 187.249 76.1357C186.981 76.0526 186.755 75.9141 186.57 75.7202C186.395 75.5263 186.261 75.2724 186.169 74.9585C186.076 74.6354 186.03 74.2384 186.03 73.7675V67.3277H184.812V66.3998Z" fill="white"/>
+<path d="M193.483 69.7097C193.88 69.4789 194.327 69.3127 194.826 69.2111C195.325 69.1096 195.814 69.0588 196.294 69.0588C196.765 69.0588 197.148 69.1327 197.443 69.2804C197.748 69.4281 197.984 69.622 198.15 69.8621C198.325 70.0929 198.441 70.3606 198.496 70.6653C198.561 70.9608 198.593 71.2608 198.593 71.5655C198.593 71.9163 198.584 72.2903 198.565 72.6873C198.547 73.0843 198.533 73.4813 198.524 73.8783C198.524 74.3399 198.551 74.7785 198.607 75.194H199.535V76.0942H197.693L197.568 75.0555H197.499C197.443 75.1386 197.36 75.2447 197.25 75.374C197.139 75.5033 196.991 75.6325 196.806 75.7618C196.631 75.8818 196.414 75.988 196.155 76.0803C195.897 76.1726 195.592 76.2188 195.241 76.2188C194.558 76.2188 194.018 76.0434 193.621 75.6925C193.224 75.3417 193.026 74.8616 193.026 74.2522C193.026 73.7814 193.127 73.389 193.33 73.0751C193.543 72.7611 193.843 72.5211 194.23 72.3549C194.618 72.1887 195.084 72.0918 195.629 72.0641C196.183 72.0364 196.802 72.0733 197.485 72.1749C197.531 71.7502 197.536 71.3993 197.499 71.1223C197.471 70.8361 197.397 70.6099 197.277 70.4437C197.166 70.2775 197.005 70.1621 196.793 70.0975C196.589 70.0236 196.335 69.9867 196.031 69.9867C195.615 69.9867 195.218 70.0467 194.84 70.1667C194.461 70.2775 194.124 70.3929 193.829 70.513L193.483 69.7097ZM195.518 75.2909C195.777 75.2909 196.017 75.2494 196.239 75.1663C196.46 75.0832 196.654 74.977 196.82 74.8477C196.986 74.7185 197.125 74.58 197.236 74.4323C197.346 74.2753 197.43 74.1276 197.485 73.9891V73.0197C197.005 72.9366 196.562 72.895 196.155 72.895C195.749 72.895 195.398 72.9412 195.103 73.0335C194.807 73.1166 194.577 73.2505 194.41 73.4351C194.244 73.6198 194.161 73.8598 194.161 74.1553C194.161 74.46 194.263 74.7277 194.466 74.9585C194.678 75.1801 195.029 75.2909 195.518 75.2909Z" fill="white"/>
+<path d="M202.098 71.5932C202.098 71.5101 202.094 71.4039 202.084 71.2747C202.084 71.1362 202.08 70.9977 202.071 70.8592C202.061 70.7115 202.047 70.5684 202.029 70.4299C202.02 70.2914 202.006 70.1714 201.987 70.0698H201.06V69.1696H202.915L203.04 70.2914H203.109C203.202 70.1344 203.322 69.9821 203.469 69.8344C203.626 69.6774 203.806 69.5389 204.009 69.4189C204.213 69.2896 204.439 69.1881 204.688 69.1142C204.937 69.0403 205.2 69.0034 205.477 69.0034C205.902 69.0034 206.276 69.0496 206.599 69.1419C206.932 69.2342 207.204 69.4004 207.416 69.6405C207.638 69.8713 207.804 70.1898 207.915 70.5961C208.026 70.9931 208.081 71.5009 208.081 72.1195V76.0942H207.001V72.3272C207.001 71.5609 206.876 70.9838 206.627 70.5961C206.378 70.2083 205.925 70.0144 205.27 70.0144C205.03 70.0144 204.794 70.0652 204.563 70.1667C204.342 70.2591 204.139 70.3837 203.954 70.5407C203.769 70.6976 203.608 70.8823 203.469 71.0946C203.331 71.2977 203.229 71.5147 203.165 71.7455V76.0942H202.098V71.5932Z" fill="white"/>
+<path d="M215.713 70.236C215.501 70.1621 215.27 70.1021 215.021 70.0559C214.781 70.0005 214.541 69.9728 214.301 69.9728C213.396 69.9728 212.722 70.1852 212.279 70.6099C211.836 71.0346 211.614 71.7086 211.614 72.6319C211.614 73.0381 211.679 73.4028 211.808 73.726C211.937 74.0399 212.122 74.3076 212.362 74.5292C212.602 74.7508 212.888 74.9216 213.221 75.0416C213.562 75.1617 213.936 75.2217 214.342 75.2217C214.776 75.2217 215.196 75.1478 215.603 75.0001C216.018 74.8524 216.364 74.6585 216.641 74.4184L217.126 75.2217C216.997 75.3325 216.835 75.4479 216.641 75.5679C216.447 75.6879 216.221 75.8033 215.963 75.9141C215.713 76.0157 215.432 76.0988 215.118 76.1634C214.813 76.228 214.481 76.2604 214.121 76.2604C213.521 76.2604 212.99 76.1773 212.528 76.0111C212.076 75.8356 211.697 75.591 211.393 75.2771C211.088 74.9539 210.857 74.5708 210.7 74.1276C210.543 73.6752 210.465 73.1766 210.465 72.6319C210.465 72.0502 210.543 71.5332 210.7 71.0808C210.866 70.6284 211.102 70.2498 211.406 69.9451C211.711 69.6405 212.08 69.4096 212.514 69.2527C212.948 69.0865 213.433 69.0034 213.968 69.0034C214.652 69.0034 215.206 69.0634 215.63 69.1834C216.064 69.3035 216.429 69.4373 216.724 69.5851L216.711 69.6266V71.5516H215.713V70.236Z" fill="white"/>
+<path d="M225.783 75.2217C225.617 75.3694 225.419 75.5079 225.188 75.6371C224.966 75.7664 224.722 75.8772 224.454 75.9695C224.186 76.0618 223.904 76.1311 223.609 76.1773C223.323 76.2327 223.032 76.2604 222.736 76.2604C222.183 76.2604 221.693 76.1773 221.268 76.0111C220.844 75.8356 220.488 75.591 220.202 75.2771C219.916 74.9539 219.699 74.5708 219.551 74.1276C219.403 73.6844 219.33 73.1858 219.33 72.6319C219.33 72.0502 219.408 71.5332 219.565 71.0808C219.731 70.6284 219.967 70.2498 220.271 69.9451C220.576 69.6405 220.945 69.4096 221.379 69.2527C221.813 69.0865 222.298 69.0034 222.833 69.0034C223.221 69.0034 223.604 69.0542 223.983 69.1557C224.361 69.2573 224.694 69.4512 224.98 69.7374C225.275 70.0144 225.502 70.4022 225.659 70.9007C225.816 71.3901 225.871 72.0271 225.825 72.8119H220.465C220.465 73.6429 220.687 74.2661 221.13 74.6816C221.582 75.0878 222.183 75.2909 222.93 75.2909C223.18 75.2909 223.424 75.2632 223.664 75.2078C223.914 75.1432 224.149 75.0693 224.371 74.9862C224.592 74.9031 224.786 74.8108 224.952 74.7092C225.128 74.6077 225.262 74.5154 225.354 74.4323L225.783 75.2217ZM222.861 69.9174C222.556 69.9174 222.266 69.9498 221.989 70.0144C221.721 70.079 221.481 70.1898 221.268 70.3468C221.065 70.4945 220.895 70.693 220.756 70.9423C220.627 71.1823 220.544 71.4824 220.507 71.8425H224.814C224.768 71.2331 224.569 70.7622 224.218 70.4299C223.877 70.0883 223.424 69.9174 222.861 69.9174Z" fill="white"/>
+<path d="M229.039 75.097H231.214V67.8124L228.998 69.3635L228.458 68.5741L231.505 66.3998H232.28V75.097H234.413V76.0942H229.039V75.097Z" fill="white"/>
+<path d="M237.89 71.5932H242.627V72.618H237.89V71.5932Z" fill="white"/>
+<path d="M246.686 75.097H248.86V67.8124L246.645 69.3635L246.105 68.5741L249.151 66.3998H249.927V75.097H252.06V76.0942H246.686V75.097Z" fill="white"/>
+<path d="M254.512 71.247C254.512 70.4622 254.582 69.7605 254.72 69.1419C254.859 68.5141 255.066 67.9878 255.343 67.5631C255.62 67.1292 255.971 66.8014 256.396 66.5798C256.821 66.349 257.324 66.2336 257.905 66.2336C258.524 66.2336 259.046 66.3444 259.47 66.566C259.904 66.7875 260.255 67.1107 260.523 67.5354C260.791 67.9601 260.985 68.4864 261.105 69.1142C261.225 69.7328 261.285 70.4437 261.285 71.247C261.285 72.0318 261.215 72.7381 261.077 73.3659C260.938 73.9845 260.731 74.5107 260.454 74.9447C260.177 75.3694 259.826 75.6972 259.401 75.928C258.976 76.1496 258.473 76.2604 257.892 76.2604C257.282 76.2604 256.761 76.1403 256.327 75.9003C255.902 75.651 255.551 75.3048 255.274 74.8616C255.006 74.4184 254.812 73.8921 254.692 73.2828C254.572 72.6642 254.512 71.9856 254.512 71.247ZM260.149 71.247C260.149 70.7576 260.121 70.2914 260.066 69.8482L255.953 73.6013C256.11 74.1276 256.345 74.5477 256.659 74.8616C256.973 75.1755 257.384 75.3325 257.892 75.3325C258.704 75.3325 259.281 74.9955 259.623 74.3215C259.974 73.6475 260.149 72.6226 260.149 71.247ZM255.662 71.247C255.662 71.4778 255.667 71.6994 255.676 71.9117C255.694 72.1241 255.713 72.3318 255.731 72.5349L259.858 68.7957C259.701 68.2971 259.466 67.9001 259.152 67.6046C258.847 67.3092 258.432 67.1615 257.905 67.1615C257.084 67.1615 256.502 67.5031 256.16 68.1863C255.828 68.8603 255.662 69.8805 255.662 71.247Z" fill="white"/>
+<path d="M263.336 71.247C263.336 70.4622 263.405 69.7605 263.544 69.1419C263.682 68.5141 263.89 67.9878 264.167 67.5631C264.444 67.1292 264.795 66.8014 265.219 66.5798C265.644 66.349 266.147 66.2336 266.729 66.2336C267.347 66.2336 267.869 66.3444 268.294 66.566C268.728 66.7875 269.079 67.1107 269.346 67.5354C269.614 67.9601 269.808 68.4864 269.928 69.1142C270.048 69.7328 270.108 70.4437 270.108 71.247C270.108 72.0318 270.039 72.7381 269.9 73.3659C269.762 73.9845 269.554 74.5107 269.277 74.9447C269 75.3694 268.649 75.6972 268.225 75.928C267.8 76.1496 267.297 76.2604 266.715 76.2604C266.106 76.2604 265.584 76.1403 265.15 75.9003C264.725 75.651 264.375 75.3048 264.098 74.8616C263.83 74.4184 263.636 73.8921 263.516 73.2828C263.396 72.6642 263.336 71.9856 263.336 71.247ZM268.972 71.247C268.972 70.7576 268.945 70.2914 268.889 69.8482L264.776 73.6013C264.933 74.1276 265.169 74.5477 265.482 74.8616C265.796 75.1755 266.207 75.3325 266.715 75.3325C267.528 75.3325 268.105 74.9955 268.446 74.3215C268.797 73.6475 268.972 72.6226 268.972 71.247ZM264.485 71.247C264.485 71.4778 264.49 71.6994 264.499 71.9117C264.518 72.1241 264.536 72.3318 264.555 72.5349L268.682 68.7957C268.525 68.2971 268.289 67.9001 267.975 67.6046C267.671 67.3092 267.255 67.1615 266.729 67.1615C265.907 67.1615 265.326 67.5031 264.984 68.1863C264.652 68.8603 264.485 69.8805 264.485 71.247Z" fill="white"/>
+<path d="M273.378 78.0746C273.821 77.9823 274.26 77.8161 274.694 77.576C275.137 77.3452 275.534 77.0174 275.885 76.5927C276.245 76.1773 276.531 75.6556 276.743 75.0278C276.965 74.3907 277.076 73.6244 277.076 72.7288C277.076 71.8425 276.983 71.09 276.799 70.4714C276.623 69.8436 276.369 69.3219 276.037 68.9065C275.714 68.4818 275.326 68.1448 274.874 67.8955C274.421 67.637 273.923 67.4292 273.378 67.2723L273.724 66.3998C274.324 66.529 274.892 66.7506 275.428 67.0645C275.972 67.3692 276.448 67.7801 276.854 68.2971C277.26 68.8049 277.584 69.4281 277.824 70.1667C278.064 70.8961 278.184 71.7502 278.184 72.7288C278.184 73.7167 278.064 74.5708 277.824 75.2909C277.593 76.0111 277.274 76.6204 276.868 77.119C276.471 77.6176 276 78.0192 275.455 78.3239C274.92 78.6378 274.343 78.8732 273.724 79.0302L273.378 78.0746Z" fill="white"/>
+<path d="M283.392 75.3325C283.392 75.0555 283.48 74.8339 283.656 74.6677C283.84 74.4923 284.076 74.4046 284.362 74.4046C284.713 74.4046 284.985 74.5292 285.179 74.7785C285.373 75.0185 285.47 75.3602 285.47 75.8033C285.47 76.1634 285.41 76.4773 285.29 76.7451C285.17 77.0221 285.017 77.2529 284.833 77.4375C284.657 77.6314 284.463 77.7838 284.251 77.8945C284.048 78.0146 283.859 78.1023 283.683 78.1577L283.337 77.6176C283.669 77.4883 283.956 77.3037 284.196 77.0636C284.436 76.8235 284.556 76.5327 284.556 76.1911C284.426 76.2188 284.325 76.2327 284.251 76.2327C283.983 76.2327 283.771 76.1588 283.614 76.0111C283.466 75.8541 283.392 75.6279 283.392 75.3325ZM283.517 69.8898C283.517 69.5943 283.6 69.3681 283.766 69.2111C283.933 69.045 284.154 68.9619 284.431 68.9619C284.727 68.9619 284.957 69.045 285.124 69.2111C285.29 69.3681 285.373 69.5943 285.373 69.8898C285.373 70.1575 285.29 70.3791 285.124 70.5545C284.957 70.7299 284.727 70.8176 284.431 70.8176C284.154 70.8176 283.933 70.7299 283.766 70.5545C283.6 70.3791 283.517 70.1575 283.517 69.8898Z" fill="white"/>
+<path d="M34.495 95.5283C34.495 95.4452 34.4904 95.339 34.4812 95.2097C34.4812 95.0712 34.4765 94.9327 34.4673 94.7942C34.4581 94.6465 34.4442 94.5034 34.4258 94.3649C34.4165 94.2264 34.4027 94.1064 34.3842 94.0048H33.4563V93.1047H35.2983L35.4368 94.0741H35.506C35.7553 93.7509 36.0692 93.4832 36.4477 93.2708C36.8355 93.0493 37.3064 92.9385 37.8604 92.9385C38.8483 92.9385 39.5915 93.2108 40.0901 93.7556C40.5886 94.3003 40.8379 95.1913 40.8379 96.4284C40.8379 97.0101 40.7502 97.5364 40.5748 98.0072C40.4086 98.4689 40.1685 98.8613 39.8546 99.1844C39.5407 99.5076 39.1622 99.7569 38.719 99.9323C38.2758 100.108 37.7865 100.195 37.251 100.195C37.0571 100.195 36.8817 100.186 36.7247 100.168C36.577 100.158 36.4385 100.14 36.3093 100.112C36.1892 100.094 36.0692 100.066 35.9492 100.029C35.8291 99.9923 35.6999 99.9461 35.5614 99.8907V102.799H34.495V95.5283ZM37.6803 93.9495C37.4033 93.9495 37.1402 94.0002 36.8909 94.1018C36.6509 94.2034 36.4339 94.3372 36.24 94.5034C36.0553 94.6696 35.903 94.8543 35.783 95.0574C35.663 95.2605 35.5891 95.4636 35.5614 95.6667V98.8243C35.7645 98.9628 35.9907 99.0736 36.24 99.1567C36.4985 99.2306 36.8355 99.2675 37.251 99.2675C37.9896 99.2675 38.5805 99.0275 39.0237 98.5474C39.4669 98.058 39.6884 97.3471 39.6884 96.4146C39.6884 95.6298 39.5315 95.0251 39.2176 94.6004C38.9129 94.1664 38.4005 93.9495 37.6803 93.9495Z" fill="white"/>
+<path d="M47.0161 93.1047H48.9827V97.8272C48.9827 98.2796 49.0104 98.7136 49.0658 99.129H49.9937V100.029H48.1518L48.1102 98.852H48.0548C47.8148 99.2491 47.4962 99.5722 47.0992 99.8215C46.7022 100.071 46.2221 100.195 45.6589 100.195C45.2342 100.195 44.8695 100.145 44.5648 100.043C44.2694 99.9507 44.0247 99.7846 43.8308 99.5445C43.637 99.3044 43.4938 98.9859 43.4015 98.5889C43.3092 98.1827 43.263 97.6795 43.263 97.0794V94.0325H42.3351V93.1047H44.3433V96.8578C44.3433 97.2363 44.3571 97.5779 44.3848 97.8826C44.4217 98.1781 44.491 98.432 44.5925 98.6443C44.6941 98.8474 44.8418 99.0044 45.0357 99.1152C45.2388 99.2167 45.5066 99.2675 45.839 99.2675C46.3191 99.2675 46.7345 99.1106 47.0854 98.7966C47.4455 98.4827 47.7178 98.0903 47.9025 97.6195V94.0325H47.0161V93.1047Z" fill="white"/>
+<path d="M51.2416 93.1047H52.8897V91.7336L53.9699 91.4289V93.1047H57.6676V94.0325H53.9699V97.3009C53.9699 97.9749 54.1315 98.4735 54.4546 98.7966C54.787 99.1198 55.2579 99.2814 55.8673 99.2814C56.2827 99.2814 56.6428 99.2029 56.9475 99.0459C57.2614 98.889 57.543 98.7182 57.7923 98.5335L58.1524 99.3506C57.8292 99.6091 57.4414 99.8169 56.989 99.9738C56.5459 100.131 56.0888 100.209 55.618 100.209C55.2487 100.209 54.8978 100.154 54.5654 100.043C54.2423 99.9415 53.9561 99.7799 53.7068 99.5583C53.4575 99.3368 53.259 99.0552 53.1113 98.7136C52.9635 98.3627 52.8897 97.9472 52.8897 97.4671V94.0325H51.2416V93.1047Z" fill="white"/>
+<path d="M74.442 102.965C73.8234 102.808 73.2417 102.573 72.697 102.259C72.1615 101.954 71.6906 101.553 71.2844 101.054C70.8874 100.555 70.5688 99.9461 70.3288 99.226C70.098 98.5058 69.9825 97.6518 69.9825 96.6639C69.9825 95.6852 70.1026 94.8312 70.3426 94.1018C70.5827 93.3632 70.9058 92.74 71.3121 92.2322C71.7183 91.7151 72.1892 91.3043 72.7247 90.9996C73.2694 90.6857 73.8418 90.4641 74.442 90.3348L74.7882 91.2073C74.2435 91.3643 73.7449 91.572 73.2925 91.8305C72.8401 92.0798 72.4477 92.4168 72.1153 92.8415C71.7922 93.257 71.5383 93.7786 71.3536 94.4065C71.1782 95.0251 71.0905 95.7775 71.0905 96.6639C71.0905 97.5595 71.1967 98.3258 71.409 98.9628C71.6306 99.5907 71.9168 100.112 72.2677 100.528C72.6277 100.952 73.0247 101.28 73.4587 101.511C73.9018 101.751 74.345 101.917 74.7882 102.01L74.442 102.965Z" fill="white"/>
+<path d="M78.7783 93.6448C79.1753 93.414 79.6231 93.2478 80.1216 93.1462C80.6202 93.0446 81.1095 92.9939 81.5896 92.9939C82.0605 92.9939 82.4437 93.0677 82.7391 93.2154C83.0438 93.3632 83.2792 93.5571 83.4454 93.7971C83.6208 94.0279 83.7362 94.2957 83.7916 94.6004C83.8563 94.8958 83.8886 95.1959 83.8886 95.5006C83.8886 95.8514 83.8793 96.2253 83.8609 96.6223C83.8424 97.0193 83.8286 97.4164 83.8193 97.8134C83.8193 98.275 83.847 98.7136 83.9024 99.129H84.8303V100.029H82.9884L82.8637 98.9905H82.7945C82.7391 99.0736 82.656 99.1798 82.5452 99.3091C82.4344 99.4383 82.2867 99.5676 82.102 99.6968C81.9266 99.8169 81.7097 99.923 81.4511 100.015C81.1926 100.108 80.8879 100.154 80.5371 100.154C79.8539 100.154 79.3138 99.9784 78.9167 99.6276C78.5197 99.2768 78.3212 98.7966 78.3212 98.1873C78.3212 97.7164 78.4228 97.324 78.6259 97.0101C78.8383 96.6962 79.1383 96.4561 79.5261 96.29C79.9139 96.1238 80.3801 96.0268 80.9249 95.9991C81.4788 95.9714 82.0974 96.0084 82.7807 96.1099C82.8268 95.6852 82.8314 95.3344 82.7945 95.0574C82.7668 94.7712 82.6929 94.545 82.5729 94.3788C82.4621 94.2126 82.3005 94.0972 82.0882 94.0325C81.8851 93.9587 81.6312 93.9218 81.3265 93.9218C80.911 93.9218 80.514 93.9818 80.1355 94.1018C79.7569 94.2126 79.4199 94.328 79.1245 94.448L78.7783 93.6448ZM80.8141 99.226C81.0726 99.226 81.3126 99.1844 81.5342 99.1013C81.7558 99.0182 81.9497 98.9121 82.1159 98.7828C82.2821 98.6535 82.4206 98.515 82.5314 98.3673C82.6422 98.2104 82.7253 98.0626 82.7807 97.9242V96.9547C82.3005 96.8716 81.8574 96.8301 81.4511 96.8301C81.0449 96.8301 80.694 96.8762 80.3986 96.9686C80.1032 97.0517 79.8723 97.1855 79.7061 97.3702C79.54 97.5548 79.4569 97.7949 79.4569 98.0903C79.4569 98.395 79.5584 98.6628 79.7615 98.8936C79.9739 99.1152 80.3247 99.226 80.8141 99.226Z" fill="white"/>
+<path d="M92.1857 94.171C91.9734 94.0972 91.7425 94.0372 91.4933 93.991C91.2532 93.9356 91.0132 93.9079 90.7731 93.9079C89.8683 93.9079 89.1943 94.1203 88.7511 94.545C88.308 94.9697 88.0864 95.6437 88.0864 96.5669C88.0864 96.9732 88.151 97.3379 88.2803 97.661C88.4095 97.9749 88.5942 98.2427 88.8342 98.4643C89.0743 98.6859 89.3605 98.8567 89.6929 98.9767C90.0345 99.0967 90.4084 99.1567 90.8147 99.1567C91.2486 99.1567 91.6687 99.0829 92.0749 98.9351C92.4904 98.7874 92.8366 98.5935 93.1136 98.3535L93.5983 99.1567C93.4691 99.2675 93.3075 99.3829 93.1136 99.503C92.9197 99.623 92.6935 99.7384 92.435 99.8492C92.1857 99.9507 91.9041 100.034 91.5902 100.098C91.2855 100.163 90.9531 100.195 90.5931 100.195C89.9929 100.195 89.4621 100.112 89.0004 99.9461C88.548 99.7707 88.1695 99.526 87.8648 99.2121C87.5601 98.889 87.3293 98.5058 87.1723 98.0626C87.0154 97.6102 86.9369 97.1117 86.9369 96.5669C86.9369 95.9853 87.0154 95.4682 87.1723 95.0158C87.3385 94.5634 87.574 94.1849 87.8786 93.8802C88.1833 93.5755 88.5526 93.3447 88.9866 93.1878C89.4205 93.0216 89.9052 92.9385 90.4407 92.9385C91.124 92.9385 91.6779 92.9985 92.1026 93.1185C92.5366 93.2385 92.9013 93.3724 93.1967 93.5201L93.1829 93.5617V95.4867H92.1857V94.171Z" fill="white"/>
+<path d="M101.009 94.171C100.797 94.0972 100.566 94.0372 100.317 93.991C100.077 93.9356 99.8366 93.9079 99.5965 93.9079C98.6917 93.9079 98.0177 94.1203 97.5745 94.545C97.1314 94.9697 96.9098 95.6437 96.9098 96.5669C96.9098 96.9732 96.9744 97.3379 97.1037 97.661C97.2329 97.9749 97.4176 98.2427 97.6576 98.4643C97.8977 98.6859 98.1839 98.8567 98.5163 98.9767C98.8579 99.0967 99.2318 99.1567 99.6381 99.1567C100.072 99.1567 100.492 99.0829 100.898 98.9351C101.314 98.7874 101.66 98.5935 101.937 98.3535L102.422 99.1567C102.292 99.2675 102.131 99.3829 101.937 99.503C101.743 99.623 101.517 99.7384 101.258 99.8492C101.009 99.9507 100.728 100.034 100.414 100.098C100.109 100.163 99.7766 100.195 99.4165 100.195C98.8164 100.195 98.2855 100.112 97.8238 99.9461C97.3714 99.7707 96.9929 99.526 96.6882 99.2121C96.3835 98.889 96.1527 98.5058 95.9958 98.0626C95.8388 97.6102 95.7603 97.1117 95.7603 96.5669C95.7603 95.9853 95.8388 95.4682 95.9958 95.0158C96.1619 94.5634 96.3974 94.1849 96.702 93.8802C97.0067 93.5755 97.376 93.3447 97.81 93.1878C98.2439 93.0216 98.7286 92.9385 99.2641 92.9385C99.9474 92.9385 100.501 92.9985 100.926 93.1185C101.36 93.2385 101.725 93.3724 102.02 93.5201L102.006 93.5617V95.4867H101.009V94.171Z" fill="white"/>
+<path d="M104.542 96.5669C104.542 95.4498 104.833 94.568 105.415 93.9218C105.996 93.2662 106.827 92.9385 107.908 92.9385C108.489 92.9385 108.988 93.0354 109.403 93.2293C109.828 93.414 110.179 93.6679 110.456 93.991C110.733 94.3141 110.936 94.6973 111.065 95.1405C111.204 95.5836 111.273 96.0591 111.273 96.5669C111.273 97.1209 111.199 97.6241 111.051 98.0765C110.904 98.5197 110.687 98.8982 110.4 99.2121C110.114 99.526 109.759 99.7707 109.334 99.9461C108.919 100.112 108.443 100.195 107.908 100.195C107.335 100.195 106.837 100.103 106.412 99.9184C105.987 99.7245 105.636 99.466 105.359 99.1429C105.082 98.8197 104.875 98.4366 104.736 97.9934C104.607 97.5502 104.542 97.0747 104.542 96.5669ZM105.692 96.5669C105.692 96.8901 105.729 97.2132 105.802 97.5364C105.886 97.8595 106.015 98.1504 106.19 98.4089C106.366 98.6674 106.592 98.8751 106.869 99.0321C107.155 99.189 107.501 99.2675 107.908 99.2675C108.646 99.2675 109.2 99.0413 109.569 98.5889C109.948 98.1273 110.137 97.4533 110.137 96.5669C110.137 96.2346 110.096 95.9114 110.013 95.5975C109.939 95.2744 109.809 94.9835 109.625 94.725C109.449 94.4665 109.219 94.2587 108.932 94.1018C108.655 93.9448 108.314 93.8664 107.908 93.8664C107.169 93.8664 106.615 94.0926 106.246 94.545C105.876 94.9974 105.692 95.6714 105.692 96.5669Z" fill="white"/>
+<path d="M117.603 93.1047H119.57V97.8272C119.57 98.2796 119.598 98.7136 119.653 99.129H120.581V100.029H118.739L118.698 98.852H118.642C118.402 99.2491 118.084 99.5722 117.687 99.8215C117.29 100.071 116.809 100.195 116.246 100.195C115.821 100.195 115.457 100.145 115.152 100.043C114.857 99.9507 114.612 99.7846 114.418 99.5445C114.224 99.3044 114.081 98.9859 113.989 98.5889C113.896 98.1827 113.85 97.6795 113.85 97.0794V94.0325H112.922V93.1047H114.931V96.8578C114.931 97.2363 114.944 97.5779 114.972 97.8826C115.009 98.1781 115.078 98.432 115.18 98.6443C115.281 98.8474 115.429 99.0044 115.623 99.1152C115.826 99.2167 116.094 99.2675 116.426 99.2675C116.906 99.2675 117.322 99.1106 117.673 98.7966C118.033 98.4827 118.305 98.0903 118.49 97.6195V94.0325H117.603V93.1047Z" fill="white"/>
+<path d="M122.688 95.5283C122.688 95.4452 122.683 95.339 122.674 95.2097C122.674 95.0712 122.669 94.9327 122.66 94.7942C122.651 94.6465 122.637 94.5034 122.618 94.3649C122.609 94.2264 122.595 94.1064 122.577 94.0048H121.649V93.1047H123.505L123.629 94.2264H123.699C123.791 94.0695 123.911 93.9171 124.059 93.7694C124.216 93.6125 124.396 93.474 124.599 93.3539C124.802 93.2247 125.028 93.1231 125.277 93.0493C125.527 92.9754 125.79 92.9385 126.067 92.9385C126.491 92.9385 126.865 92.9846 127.189 93.077C127.521 93.1693 127.793 93.3355 128.006 93.5755C128.227 93.8063 128.393 94.1249 128.504 94.5311C128.615 94.9281 128.67 95.4359 128.67 96.0545V100.029H127.59V96.2623C127.59 95.4959 127.466 94.9189 127.216 94.5311C126.967 94.1433 126.515 93.9495 125.859 93.9495C125.619 93.9495 125.384 94.0002 125.153 94.1018C124.931 94.1941 124.728 94.3188 124.543 94.4757C124.359 94.6327 124.197 94.8173 124.059 95.0297C123.92 95.2328 123.819 95.4498 123.754 95.6806V100.029H122.688V95.5283Z" fill="white"/>
+<path d="M130.652 93.1047H132.3V91.7336L133.381 91.4289V93.1047H137.078V94.0325H133.381V97.3009C133.381 97.9749 133.542 98.4735 133.865 98.7966C134.198 99.1198 134.669 99.2814 135.278 99.2814C135.693 99.2814 136.053 99.2029 136.358 99.0459C136.672 98.889 136.954 98.7182 137.203 98.5335L137.563 99.3506C137.24 99.6091 136.852 99.8169 136.4 99.9738C135.957 100.131 135.5 100.209 135.029 100.209C134.659 100.209 134.308 100.154 133.976 100.043C133.653 99.9415 133.367 99.7799 133.117 99.5583C132.868 99.3368 132.67 99.0552 132.522 98.7136C132.374 98.3627 132.3 97.9472 132.3 97.4671V94.0325H130.652V93.1047Z" fill="white"/>
+<path d="M145.971 92.7861C145.971 93.6355 145.569 94.5819 144.766 95.6252C143.963 96.6685 142.841 97.8041 141.401 99.0321H146.276V100.029H140.127V99.0321C140.302 98.8659 140.542 98.6489 140.847 98.3812C141.151 98.1134 141.479 97.818 141.83 97.4948C142.181 97.1624 142.536 96.807 142.896 96.4284C143.266 96.0499 143.598 95.6621 143.894 95.2651C144.189 94.8681 144.429 94.4711 144.614 94.0741C144.798 93.6771 144.891 93.2939 144.891 92.9246C144.891 92.3707 144.743 91.9367 144.448 91.6228C144.161 91.2997 143.727 91.1381 143.146 91.1381C142.647 91.1381 142.227 91.1935 141.885 91.3043C141.544 91.4151 141.235 91.5766 140.958 91.789L140.487 91.0273C140.902 90.7318 141.341 90.5149 141.802 90.3764C142.273 90.2379 142.786 90.1686 143.34 90.1686C144.208 90.1686 144.863 90.4041 145.306 90.8749C145.749 91.3458 145.971 91.9829 145.971 92.7861Z" fill="white"/>
+<path d="M151.041 99.2675C151.041 98.9905 151.129 98.7689 151.304 98.6028C151.489 98.4273 151.725 98.3396 152.011 98.3396C152.362 98.3396 152.634 98.4643 152.828 98.7136C153.022 98.9536 153.119 99.2952 153.119 99.7384C153.119 100.098 153.059 100.412 152.939 100.68C152.819 100.957 152.666 101.188 152.482 101.373C152.306 101.566 152.112 101.719 151.9 101.83C151.697 101.95 151.508 102.037 151.332 102.093L150.986 101.553C151.318 101.423 151.604 101.239 151.845 100.999C152.085 100.759 152.205 100.468 152.205 100.126C152.075 100.154 151.974 100.168 151.9 100.168C151.632 100.168 151.42 100.094 151.263 99.9461C151.115 99.7892 151.041 99.563 151.041 99.2675Z" fill="white"/>
+<path d="M165.544 90.3348H167.76V93.8941H167.829C168.07 93.5894 168.379 93.3539 168.757 93.1878C169.136 93.0216 169.547 92.9385 169.99 92.9385C172.021 92.9385 173.037 94.111 173.037 96.4561C173.037 97.6472 172.709 98.5612 172.053 99.1983C171.398 99.8261 170.465 100.14 169.256 100.14C168.683 100.14 168.166 100.085 167.705 99.9738C167.243 99.863 166.906 99.7338 166.694 99.586V91.2627H165.544V90.3348ZM169.851 93.8664C169.297 93.8664 168.85 94.0233 168.508 94.3372C168.166 94.6511 167.917 95.0943 167.76 95.6667V98.852C167.973 98.9628 168.226 99.0505 168.522 99.1152C168.817 99.1798 169.127 99.2121 169.45 99.2121C169.819 99.2121 170.151 99.1613 170.447 99.0598C170.752 98.949 171.01 98.7828 171.222 98.5612C171.435 98.3304 171.596 98.0396 171.707 97.6887C171.827 97.3379 171.887 96.9224 171.887 96.4423C171.887 96.0915 171.85 95.7591 171.776 95.4452C171.703 95.1312 171.583 94.8589 171.416 94.6281C171.259 94.388 171.052 94.2034 170.793 94.0741C170.535 93.9356 170.221 93.8664 169.851 93.8664Z" fill="white"/>
+<path d="M175.836 93.6448C176.233 93.414 176.681 93.2478 177.179 93.1462C177.678 93.0446 178.167 92.9939 178.647 92.9939C179.118 92.9939 179.501 93.0677 179.797 93.2154C180.101 93.3632 180.337 93.5571 180.503 93.7971C180.678 94.0279 180.794 94.2957 180.849 94.6004C180.914 94.8958 180.946 95.1959 180.946 95.5006C180.946 95.8514 180.937 96.2253 180.918 96.6223C180.9 97.0193 180.886 97.4164 180.877 97.8134C180.877 98.275 180.905 98.7136 180.96 99.129H181.888V100.029H180.046L179.921 98.9905H179.852C179.797 99.0736 179.714 99.1798 179.603 99.3091C179.492 99.4383 179.344 99.5676 179.16 99.6968C178.984 99.8169 178.767 99.923 178.509 100.015C178.25 100.108 177.945 100.154 177.595 100.154C176.911 100.154 176.371 99.9784 175.974 99.6276C175.577 99.2768 175.379 98.7966 175.379 98.1873C175.379 97.7164 175.48 97.324 175.683 97.0101C175.896 96.6962 176.196 96.4561 176.584 96.29C176.971 96.1238 177.438 96.0268 177.982 95.9991C178.536 95.9714 179.155 96.0084 179.838 96.1099C179.884 95.6852 179.889 95.3344 179.852 95.0574C179.824 94.7712 179.75 94.545 179.63 94.3788C179.52 94.2126 179.358 94.0972 179.146 94.0325C178.943 93.9587 178.689 93.9218 178.384 93.9218C177.969 93.9218 177.572 93.9818 177.193 94.1018C176.814 94.2126 176.477 94.328 176.182 94.448L175.836 93.6448ZM177.872 99.226C178.13 99.226 178.37 99.1844 178.592 99.1013C178.813 99.0182 179.007 98.9121 179.173 98.7828C179.34 98.6535 179.478 98.515 179.589 98.3673C179.7 98.2104 179.783 98.0626 179.838 97.9242V96.9547C179.358 96.8716 178.915 96.8301 178.509 96.8301C178.102 96.8301 177.752 96.8762 177.456 96.9686C177.161 97.0517 176.93 97.1855 176.764 97.3702C176.597 97.5548 176.514 97.7949 176.514 98.0903C176.514 98.395 176.616 98.6628 176.819 98.8936C177.031 99.1152 177.382 99.226 177.872 99.226Z" fill="white"/>
+<path d="M184.812 90.3348H187.11V97.7026C187.11 98.2658 187.203 98.6628 187.387 98.8936C187.581 99.1244 187.863 99.2398 188.232 99.2398C188.491 99.2398 188.735 99.1937 188.966 99.1013C189.206 99.009 189.469 98.852 189.756 98.6305L190.254 99.3922C190.106 99.5214 189.945 99.6368 189.77 99.7384C189.594 99.8399 189.414 99.9277 189.229 100.002C189.045 100.066 188.86 100.117 188.675 100.154C188.491 100.191 188.32 100.209 188.163 100.209C187.821 100.209 187.517 100.163 187.249 100.071C186.981 99.9877 186.755 99.8492 186.57 99.6553C186.395 99.4614 186.261 99.2075 186.169 98.8936C186.076 98.5704 186.03 98.1734 186.03 97.7026V91.2627H184.812V90.3348Z" fill="white"/>
+<path d="M193.483 93.6448C193.88 93.414 194.327 93.2478 194.826 93.1462C195.325 93.0446 195.814 92.9939 196.294 92.9939C196.765 92.9939 197.148 93.0677 197.443 93.2154C197.748 93.3632 197.984 93.5571 198.15 93.7971C198.325 94.0279 198.441 94.2957 198.496 94.6004C198.561 94.8958 198.593 95.1959 198.593 95.5006C198.593 95.8514 198.584 96.2253 198.565 96.6223C198.547 97.0193 198.533 97.4164 198.524 97.8134C198.524 98.275 198.551 98.7136 198.607 99.129H199.535V100.029H197.693L197.568 98.9905H197.499C197.443 99.0736 197.36 99.1798 197.25 99.3091C197.139 99.4383 196.991 99.5676 196.806 99.6968C196.631 99.8169 196.414 99.923 196.155 100.015C195.897 100.108 195.592 100.154 195.241 100.154C194.558 100.154 194.018 99.9784 193.621 99.6276C193.224 99.2768 193.026 98.7966 193.026 98.1873C193.026 97.7164 193.127 97.324 193.33 97.0101C193.543 96.6962 193.843 96.4561 194.23 96.29C194.618 96.1238 195.084 96.0268 195.629 95.9991C196.183 95.9714 196.802 96.0084 197.485 96.1099C197.531 95.6852 197.536 95.3344 197.499 95.0574C197.471 94.7712 197.397 94.545 197.277 94.3788C197.166 94.2126 197.005 94.0972 196.793 94.0325C196.589 93.9587 196.335 93.9218 196.031 93.9218C195.615 93.9218 195.218 93.9818 194.84 94.1018C194.461 94.2126 194.124 94.328 193.829 94.448L193.483 93.6448ZM195.518 99.226C195.777 99.226 196.017 99.1844 196.239 99.1013C196.46 99.0182 196.654 98.9121 196.82 98.7828C196.986 98.6535 197.125 98.515 197.236 98.3673C197.346 98.2104 197.43 98.0626 197.485 97.9242V96.9547C197.005 96.8716 196.562 96.8301 196.155 96.8301C195.749 96.8301 195.398 96.8762 195.103 96.9686C194.807 97.0517 194.577 97.1855 194.41 97.3702C194.244 97.5548 194.161 97.7949 194.161 98.0903C194.161 98.395 194.263 98.6628 194.466 98.8936C194.678 99.1152 195.029 99.226 195.518 99.226Z" fill="white"/>
+<path d="M202.098 95.5283C202.098 95.4452 202.094 95.339 202.084 95.2097C202.084 95.0712 202.08 94.9327 202.071 94.7942C202.061 94.6465 202.047 94.5034 202.029 94.3649C202.02 94.2264 202.006 94.1064 201.987 94.0048H201.06V93.1047H202.915L203.04 94.2264H203.109C203.202 94.0695 203.322 93.9171 203.469 93.7694C203.626 93.6125 203.806 93.474 204.009 93.3539C204.213 93.2247 204.439 93.1231 204.688 93.0493C204.937 92.9754 205.2 92.9385 205.477 92.9385C205.902 92.9385 206.276 92.9846 206.599 93.077C206.932 93.1693 207.204 93.3355 207.416 93.5755C207.638 93.8063 207.804 94.1249 207.915 94.5311C208.026 94.9281 208.081 95.4359 208.081 96.0545V100.029H207.001V96.2623C207.001 95.4959 206.876 94.9189 206.627 94.5311C206.378 94.1433 205.925 93.9495 205.27 93.9495C205.03 93.9495 204.794 94.0002 204.563 94.1018C204.342 94.1941 204.139 94.3188 203.954 94.4757C203.769 94.6327 203.608 94.8173 203.469 95.0297C203.331 95.2328 203.229 95.4498 203.165 95.6806V100.029H202.098V95.5283Z" fill="white"/>
+<path d="M215.713 94.171C215.501 94.0972 215.27 94.0372 215.021 93.991C214.781 93.9356 214.541 93.9079 214.301 93.9079C213.396 93.9079 212.722 94.1203 212.279 94.545C211.836 94.9697 211.614 95.6437 211.614 96.5669C211.614 96.9732 211.679 97.3379 211.808 97.661C211.937 97.9749 212.122 98.2427 212.362 98.4643C212.602 98.6859 212.888 98.8567 213.221 98.9767C213.562 99.0967 213.936 99.1567 214.342 99.1567C214.776 99.1567 215.196 99.0829 215.603 98.9351C216.018 98.7874 216.364 98.5935 216.641 98.3535L217.126 99.1567C216.997 99.2675 216.835 99.3829 216.641 99.503C216.447 99.623 216.221 99.7384 215.963 99.8492C215.713 99.9507 215.432 100.034 215.118 100.098C214.813 100.163 214.481 100.195 214.121 100.195C213.521 100.195 212.99 100.112 212.528 99.9461C212.076 99.7707 211.697 99.526 211.393 99.2121C211.088 98.889 210.857 98.5058 210.7 98.0626C210.543 97.6102 210.465 97.1117 210.465 96.5669C210.465 95.9853 210.543 95.4682 210.7 95.0158C210.866 94.5634 211.102 94.1849 211.406 93.8802C211.711 93.5755 212.08 93.3447 212.514 93.1878C212.948 93.0216 213.433 92.9385 213.968 92.9385C214.652 92.9385 215.206 92.9985 215.63 93.1185C216.064 93.2385 216.429 93.3724 216.724 93.5201L216.711 93.5617V95.4867H215.713V94.171Z" fill="white"/>
+<path d="M225.783 99.1567C225.617 99.3044 225.419 99.4429 225.188 99.5722C224.966 99.7015 224.722 99.8123 224.454 99.9046C224.186 99.9969 223.904 100.066 223.609 100.112C223.323 100.168 223.032 100.195 222.736 100.195C222.183 100.195 221.693 100.112 221.268 99.9461C220.844 99.7707 220.488 99.526 220.202 99.2121C219.916 98.889 219.699 98.5058 219.551 98.0626C219.403 97.6195 219.33 97.1209 219.33 96.5669C219.33 95.9853 219.408 95.4682 219.565 95.0158C219.731 94.5634 219.967 94.1849 220.271 93.8802C220.576 93.5755 220.945 93.3447 221.379 93.1878C221.813 93.0216 222.298 92.9385 222.833 92.9385C223.221 92.9385 223.604 92.9892 223.983 93.0908C224.361 93.1924 224.694 93.3863 224.98 93.6725C225.275 93.9495 225.502 94.3372 225.659 94.8358C225.816 95.3251 225.871 95.9622 225.825 96.747H220.465C220.465 97.5779 220.687 98.2011 221.13 98.6166C221.582 99.0229 222.183 99.226 222.93 99.226C223.18 99.226 223.424 99.1983 223.664 99.1429C223.914 99.0782 224.149 99.0044 224.371 98.9213C224.592 98.8382 224.786 98.7459 224.952 98.6443C225.128 98.5427 225.262 98.4504 225.354 98.3673L225.783 99.1567ZM222.861 93.8525C222.556 93.8525 222.266 93.8848 221.989 93.9495C221.721 94.0141 221.481 94.1249 221.268 94.2818C221.065 94.4296 220.895 94.6281 220.756 94.8773C220.627 95.1174 220.544 95.4175 220.507 95.7775H224.814C224.768 95.1682 224.569 94.6973 224.218 94.3649C223.877 94.0233 223.424 93.8525 222.861 93.8525Z" fill="white"/>
+<path d="M229.039 99.0321H231.214V91.7474L228.998 93.2985L228.458 92.5091L231.505 90.3348H232.28V99.0321H234.413V100.029H229.039V99.0321Z" fill="white"/>
+<path d="M236.769 94.8496H239.76V91.789H240.757V94.8496H243.749V95.8468H240.757V98.9074H239.76V95.8468H236.769V94.8496Z" fill="white"/>
+<path d="M246.686 99.0321H248.86V91.7474L246.645 93.2985L246.105 92.5091L249.151 90.3348H249.927V99.0321H252.06V100.029H246.686V99.0321Z" fill="white"/>
+<path d="M254.512 95.182C254.512 94.3972 254.582 93.6956 254.72 93.077C254.859 92.4491 255.066 91.9229 255.343 91.4982C255.62 91.0642 255.971 90.7365 256.396 90.5149C256.821 90.284 257.324 90.1686 257.905 90.1686C258.524 90.1686 259.046 90.2794 259.47 90.501C259.904 90.7226 260.255 91.0458 260.523 91.4705C260.791 91.8952 260.985 92.4214 261.105 93.0493C261.225 93.6679 261.285 94.3788 261.285 95.182C261.285 95.9668 261.215 96.6731 261.077 97.3009C260.938 97.9195 260.731 98.4458 260.454 98.8797C260.177 99.3044 259.826 99.6322 259.401 99.863C258.976 100.085 258.473 100.195 257.892 100.195C257.282 100.195 256.761 100.075 256.327 99.8353C255.902 99.586 255.551 99.2398 255.274 98.7966C255.006 98.3535 254.812 97.8272 254.692 97.2178C254.572 96.5993 254.512 95.9206 254.512 95.182ZM260.149 95.182C260.149 94.6927 260.121 94.2264 260.066 93.7833L255.953 97.5364C256.11 98.0626 256.345 98.4827 256.659 98.7966C256.973 99.1106 257.384 99.2675 257.892 99.2675C258.704 99.2675 259.281 98.9305 259.623 98.2565C259.974 97.5825 260.149 96.5577 260.149 95.182ZM255.662 95.182C255.662 95.4128 255.667 95.6344 255.676 95.8468C255.694 96.0591 255.713 96.2669 255.731 96.47L259.858 92.7307C259.701 92.2322 259.466 91.8352 259.152 91.5397C258.847 91.2443 258.432 91.0965 257.905 91.0965C257.084 91.0965 256.502 91.4381 256.16 92.1214C255.828 92.7954 255.662 93.8156 255.662 95.182Z" fill="white"/>
+<path d="M263.336 95.182C263.336 94.3972 263.405 93.6956 263.544 93.077C263.682 92.4491 263.89 91.9229 264.167 91.4982C264.444 91.0642 264.795 90.7365 265.219 90.5149C265.644 90.284 266.147 90.1686 266.729 90.1686C267.347 90.1686 267.869 90.2794 268.294 90.501C268.728 90.7226 269.079 91.0458 269.346 91.4705C269.614 91.8952 269.808 92.4214 269.928 93.0493C270.048 93.6679 270.108 94.3788 270.108 95.182C270.108 95.9668 270.039 96.6731 269.9 97.3009C269.762 97.9195 269.554 98.4458 269.277 98.8797C269 99.3044 268.649 99.6322 268.225 99.863C267.8 100.085 267.297 100.195 266.715 100.195C266.106 100.195 265.584 100.075 265.15 99.8353C264.725 99.586 264.375 99.2398 264.098 98.7966C263.83 98.3535 263.636 97.8272 263.516 97.2178C263.396 96.5993 263.336 95.9206 263.336 95.182ZM268.972 95.182C268.972 94.6927 268.945 94.2264 268.889 93.7833L264.776 97.5364C264.933 98.0626 265.169 98.4827 265.482 98.7966C265.796 99.1106 266.207 99.2675 266.715 99.2675C267.528 99.2675 268.105 98.9305 268.446 98.2565C268.797 97.5825 268.972 96.5577 268.972 95.182ZM264.485 95.182C264.485 95.4128 264.49 95.6344 264.499 95.8468C264.518 96.0591 264.536 96.2669 264.555 96.47L268.682 92.7307C268.525 92.2322 268.289 91.8352 267.975 91.5397C267.671 91.2443 267.255 91.0965 266.729 91.0965C265.907 91.0965 265.326 91.4381 264.984 92.1214C264.652 92.7954 264.485 93.8156 264.485 95.182Z" fill="white"/>
+<path d="M273.378 102.01C273.821 101.917 274.26 101.751 274.694 101.511C275.137 101.28 275.534 100.952 275.885 100.528C276.245 100.112 276.531 99.5907 276.743 98.9628C276.965 98.3258 277.076 97.5595 277.076 96.6639C277.076 95.7775 276.983 95.0251 276.799 94.4065C276.623 93.7786 276.369 93.257 276.037 92.8415C275.714 92.4168 275.326 92.0798 274.874 91.8305C274.421 91.572 273.923 91.3643 273.378 91.2073L273.724 90.3348C274.324 90.4641 274.892 90.6857 275.428 90.9996C275.972 91.3043 276.448 91.7151 276.854 92.2322C277.26 92.74 277.584 93.3632 277.824 94.1018C278.064 94.8312 278.184 95.6852 278.184 96.6639C278.184 97.6518 278.064 98.5058 277.824 99.226C277.593 99.9461 277.274 100.555 276.868 101.054C276.471 101.553 276 101.954 275.455 102.259C274.92 102.573 274.343 102.808 273.724 102.965L273.378 102.01Z" fill="white"/>
+<path d="M283.392 99.2675C283.392 98.9905 283.48 98.7689 283.656 98.6028C283.84 98.4273 284.076 98.3396 284.362 98.3396C284.713 98.3396 284.985 98.4643 285.179 98.7136C285.373 98.9536 285.47 99.2952 285.47 99.7384C285.47 100.098 285.41 100.412 285.29 100.68C285.17 100.957 285.017 101.188 284.833 101.373C284.657 101.566 284.463 101.719 284.251 101.83C284.048 101.95 283.859 102.037 283.683 102.093L283.337 101.553C283.669 101.423 283.956 101.239 284.196 100.999C284.436 100.759 284.556 100.468 284.556 100.126C284.426 100.154 284.325 100.168 284.251 100.168C283.983 100.168 283.771 100.094 283.614 99.9461C283.466 99.7892 283.392 99.563 283.392 99.2675ZM283.517 93.8248C283.517 93.5294 283.6 93.3032 283.766 93.1462C283.933 92.98 284.154 92.8969 284.431 92.8969C284.727 92.8969 284.957 92.98 285.124 93.1462C285.29 93.3032 285.373 93.5294 285.373 93.8248C285.373 94.0926 285.29 94.3141 285.124 94.4896C284.957 94.665 284.727 94.7527 284.431 94.7527C284.154 94.7527 283.933 94.665 283.766 94.4896C283.6 94.3141 283.517 94.0926 283.517 93.8248Z" fill="white"/>
+<path d="M33.5948 117.041H35.2428V115.67L36.3231 115.366V117.041H40.0208V117.969H36.3231V121.238C36.3231 121.912 36.4847 122.41 36.8078 122.733C37.1402 123.057 37.6111 123.218 38.2204 123.218C38.6359 123.218 38.996 123.14 39.3006 122.983C39.6146 122.826 39.8962 122.655 40.1454 122.47L40.5055 123.287C40.1824 123.546 39.7946 123.754 39.3422 123.911C38.899 124.068 38.442 124.146 37.9711 124.146C37.6018 124.146 37.251 124.091 36.9186 123.98C36.5954 123.878 36.3092 123.717 36.0599 123.495C35.8107 123.273 35.6122 122.992 35.4644 122.65C35.3167 122.299 35.2428 121.884 35.2428 121.404V117.969H33.5948V117.041Z" fill="white"/>
+<path d="M45.4927 120.421L42.8198 117.041H44.2048L46.199 119.645L48.2487 117.041H49.4951L46.8222 120.365L49.6613 123.966H48.3318L46.1298 121.127L43.8862 123.966H42.6259L45.4927 120.421Z" fill="white"/>
+<path d="M54.0391 123.204C54.0391 122.909 54.1222 122.683 54.2884 122.526C54.4546 122.359 54.6762 122.276 54.9532 122.276C55.2486 122.276 55.4795 122.359 55.6456 122.526C55.8118 122.683 55.8949 122.909 55.8949 123.204C55.8949 123.472 55.8118 123.694 55.6456 123.869C55.4795 124.044 55.2486 124.132 54.9532 124.132C54.6762 124.132 54.4546 124.044 54.2884 123.869C54.1222 123.694 54.0391 123.472 54.0391 123.204Z" fill="white"/>
+<path d="M65.7155 118.108C65.5031 118.034 65.2723 117.974 65.023 117.928C64.783 117.872 64.5429 117.845 64.3029 117.845C63.3981 117.845 62.7241 118.057 62.2809 118.482C61.8377 118.906 61.6161 119.58 61.6161 120.504C61.6161 120.91 61.6808 121.275 61.81 121.598C61.9393 121.912 62.1239 122.179 62.364 122.401C62.604 122.623 62.8903 122.793 63.2226 122.913C63.5642 123.033 63.9382 123.093 64.3444 123.093C64.7784 123.093 65.1984 123.02 65.6047 122.872C66.0202 122.724 66.3664 122.53 66.6434 122.29L67.1281 123.093C66.9988 123.204 66.8373 123.32 66.6434 123.44C66.4495 123.56 66.2233 123.675 65.9648 123.786C65.7155 123.887 65.4339 123.971 65.12 124.035C64.8153 124.1 64.4829 124.132 64.1228 124.132C63.5227 124.132 62.9918 124.049 62.5302 123.883C62.0778 123.707 61.6992 123.463 61.3946 123.149C61.0899 122.826 60.859 122.443 60.7021 121.999C60.5451 121.547 60.4667 121.048 60.4667 120.504C60.4667 119.922 60.5451 119.405 60.7021 118.953C60.8683 118.5 61.1037 118.122 61.4084 117.817C61.7131 117.512 62.0824 117.281 62.5163 117.124C62.9503 116.958 63.435 116.875 63.9705 116.875C64.6537 116.875 65.2077 116.935 65.6324 117.055C66.0663 117.175 66.431 117.309 66.7265 117.457L66.7126 117.498V119.423H65.7155V118.108Z" fill="white"/>
+<path d="M69.2485 120.504C69.2485 119.387 69.5394 118.505 70.121 117.858C70.7027 117.203 71.5336 116.875 72.6139 116.875C73.1955 116.875 73.6941 116.972 74.1096 117.166C74.5343 117.351 74.8851 117.605 75.1621 117.928C75.4391 118.251 75.6422 118.634 75.7715 119.077C75.91 119.52 75.9792 119.996 75.9792 120.504C75.9792 121.058 75.9053 121.561 75.7576 122.013C75.6099 122.456 75.3929 122.835 75.1067 123.149C74.8205 123.463 74.465 123.707 74.0403 123.883C73.6248 124.049 73.1494 124.132 72.6139 124.132C72.0414 124.132 71.5429 124.04 71.1182 123.855C70.6934 123.661 70.3426 123.403 70.0656 123.08C69.7886 122.756 69.5809 122.373 69.4424 121.93C69.3132 121.487 69.2485 121.011 69.2485 120.504ZM70.398 120.504C70.398 120.827 70.4349 121.15 70.5088 121.473C70.5919 121.796 70.7211 122.087 70.8966 122.346C71.072 122.604 71.2982 122.812 71.5752 122.969C71.8614 123.126 72.2076 123.204 72.6139 123.204C73.3525 123.204 73.9064 122.978 74.2758 122.526C74.6543 122.064 74.8436 121.39 74.8436 120.504C74.8436 120.171 74.802 119.848 74.7189 119.534C74.6451 119.211 74.5158 118.92 74.3312 118.662C74.1557 118.403 73.9249 118.195 73.6387 118.039C73.3617 117.882 73.0201 117.803 72.6139 117.803C71.8752 117.803 71.3213 118.029 70.952 118.482C70.5827 118.934 70.398 119.608 70.398 120.504Z" fill="white"/>
+<path d="M80.911 123.966V119.354C80.911 119.16 80.9018 118.976 80.8833 118.8C80.8741 118.616 80.8418 118.454 80.7864 118.316C80.7402 118.168 80.6663 118.052 80.5648 117.969C80.4724 117.886 80.3478 117.845 80.1908 117.845C79.8769 117.845 79.6092 117.974 79.3876 118.232C79.1752 118.491 79.0137 118.814 78.9029 119.202V123.966H77.8503V117.041H78.5705L78.7782 117.886H78.8336C78.926 117.748 79.0137 117.618 79.0968 117.498C79.1891 117.369 79.2907 117.258 79.4014 117.166C79.5215 117.074 79.66 117.004 79.8169 116.958C79.9739 116.903 80.1724 116.875 80.4124 116.875C80.5509 116.875 80.694 116.898 80.8418 116.944C80.9895 116.981 81.1234 117.046 81.2434 117.138C81.3726 117.221 81.4834 117.337 81.5758 117.485C81.6681 117.632 81.7281 117.812 81.7558 118.025C81.9682 117.665 82.2036 117.383 82.4621 117.18C82.7299 116.977 83.0945 116.875 83.5562 116.875C83.8609 116.875 84.1055 116.926 84.2902 117.028C84.4841 117.129 84.6318 117.277 84.7334 117.471C84.8442 117.655 84.918 117.882 84.9549 118.149C85.0011 118.408 85.0242 118.699 85.0242 119.022V123.966H83.9717V119.257C83.9717 119.063 83.9624 118.883 83.944 118.717C83.9255 118.542 83.8886 118.389 83.8332 118.26C83.787 118.131 83.7178 118.029 83.6254 117.955C83.5423 117.882 83.4269 117.845 83.2792 117.845C82.9561 117.845 82.6837 117.974 82.4621 118.232C82.2405 118.491 82.0743 118.86 81.9635 119.34V123.966H80.911Z" fill="white"/>
+<path d="M89.7344 123.966V119.354C89.7344 119.16 89.7252 118.976 89.7067 118.8C89.6975 118.616 89.6652 118.454 89.6098 118.316C89.5636 118.168 89.4897 118.052 89.3882 117.969C89.2959 117.886 89.1712 117.845 89.0143 117.845C88.7003 117.845 88.4326 117.974 88.211 118.232C87.9987 118.491 87.8371 118.814 87.7263 119.202V123.966H86.6738V117.041H87.3939L87.6016 117.886H87.657C87.7494 117.748 87.8371 117.618 87.9202 117.498C88.0125 117.369 88.1141 117.258 88.2249 117.166C88.3449 117.074 88.4834 117.004 88.6403 116.958C88.7973 116.903 88.9958 116.875 89.2358 116.875C89.3743 116.875 89.5174 116.898 89.6652 116.944C89.8129 116.981 89.9468 117.046 90.0668 117.138C90.196 117.221 90.3068 117.337 90.3992 117.485C90.4915 117.632 90.5515 117.812 90.5792 118.025C90.7916 117.665 91.027 117.383 91.2855 117.18C91.5533 116.977 91.918 116.875 92.3796 116.875C92.6843 116.875 92.9289 116.926 93.1136 117.028C93.3075 117.129 93.4552 117.277 93.5568 117.471C93.6676 117.655 93.7414 117.882 93.7784 118.149C93.8245 118.408 93.8476 118.699 93.8476 119.022V123.966H92.7951V119.257C92.7951 119.063 92.7858 118.883 92.7674 118.717C92.7489 118.542 92.712 118.389 92.6566 118.26C92.6104 118.131 92.5412 118.029 92.4488 117.955C92.3657 117.882 92.2503 117.845 92.1026 117.845C91.7795 117.845 91.5071 117.974 91.2855 118.232C91.0639 118.491 90.8977 118.86 90.7869 119.34V123.966H89.7344Z" fill="white"/>
+<path d="M96.3835 123.966V123.038H98.7933V117.969H96.3835V117.041H99.9012V123.038H102.256V123.966H96.3835ZM98.4193 115.075C98.4193 114.826 98.5024 114.613 98.6686 114.438C98.8348 114.253 99.0471 114.161 99.3057 114.161C99.5734 114.161 99.795 114.253 99.9704 114.438C100.155 114.613 100.247 114.826 100.247 115.075C100.247 115.315 100.155 115.518 99.9704 115.684C99.795 115.85 99.5734 115.933 99.3057 115.933C99.0471 115.933 98.8348 115.85 98.6686 115.684C98.5024 115.518 98.4193 115.315 98.4193 115.075Z" fill="white"/>
+<path d="M104.182 117.041H105.83V115.67L106.91 115.366V117.041H110.608V117.969H106.91V121.238C106.91 121.912 107.072 122.41 107.395 122.733C107.727 123.057 108.198 123.218 108.808 123.218C109.223 123.218 109.583 123.14 109.888 122.983C110.202 122.826 110.483 122.655 110.733 122.47L111.093 123.287C110.77 123.546 110.382 123.754 109.929 123.911C109.486 124.068 109.029 124.146 108.558 124.146C108.189 124.146 107.838 124.091 107.506 123.98C107.183 123.878 106.897 123.717 106.647 123.495C106.398 123.273 106.199 122.992 106.052 122.65C105.904 122.299 105.83 121.884 105.83 121.404V117.969H104.182V117.041Z" fill="white"/>
+<path d="M118.559 126.902C117.94 126.745 117.359 126.51 116.814 126.196C116.279 125.891 115.808 125.489 115.401 124.991C115.004 124.492 114.686 123.883 114.446 123.163C114.215 122.443 114.1 121.589 114.1 120.601C114.1 119.622 114.22 118.768 114.46 118.039C114.7 117.3 115.023 116.677 115.429 116.169C115.835 115.652 116.306 115.241 116.842 114.936C117.386 114.622 117.959 114.401 118.559 114.272L118.905 115.144C118.36 115.301 117.862 115.509 117.41 115.767C116.957 116.017 116.565 116.354 116.232 116.778C115.909 117.194 115.655 117.715 115.471 118.343C115.295 118.962 115.208 119.714 115.208 120.601C115.208 121.496 115.314 122.263 115.526 122.9C115.748 123.527 116.034 124.049 116.385 124.465C116.745 124.889 117.142 125.217 117.576 125.448C118.019 125.688 118.462 125.854 118.905 125.946L118.559 126.902Z" fill="white"/>
+<path d="M123.38 125.946C123.823 125.854 124.262 125.688 124.696 125.448C125.139 125.217 125.536 124.889 125.887 124.465C126.247 124.049 126.533 123.527 126.745 122.9C126.967 122.263 127.078 121.496 127.078 120.601C127.078 119.714 126.985 118.962 126.801 118.343C126.625 117.715 126.371 117.194 126.039 116.778C125.716 116.354 125.328 116.017 124.876 115.767C124.423 115.509 123.925 115.301 123.38 115.144L123.726 114.272C124.326 114.401 124.894 114.622 125.43 114.936C125.974 115.241 126.45 115.652 126.856 116.169C127.262 116.677 127.586 117.3 127.826 118.039C128.066 118.768 128.186 119.622 128.186 120.601C128.186 121.589 128.066 122.443 127.826 123.163C127.595 123.883 127.276 124.492 126.87 124.991C126.473 125.489 126.002 125.891 125.457 126.196C124.922 126.51 124.345 126.745 123.726 126.902L123.38 125.946Z" fill="white"/>
+<path d="M133.394 123.204C133.394 122.927 133.482 122.706 133.658 122.539C133.842 122.364 134.078 122.276 134.364 122.276C134.715 122.276 134.987 122.401 135.181 122.65C135.375 122.89 135.472 123.232 135.472 123.675C135.472 124.035 135.412 124.349 135.292 124.617C135.172 124.894 135.019 125.125 134.835 125.309C134.659 125.503 134.465 125.656 134.253 125.766C134.05 125.886 133.861 125.974 133.685 126.029L133.339 125.489C133.671 125.36 133.958 125.175 134.198 124.935C134.438 124.695 134.558 124.405 134.558 124.063C134.429 124.091 134.327 124.104 134.253 124.104C133.985 124.104 133.773 124.031 133.616 123.883C133.468 123.726 133.394 123.5 133.394 123.204ZM133.519 117.762C133.519 117.466 133.602 117.24 133.768 117.083C133.935 116.917 134.156 116.834 134.433 116.834C134.729 116.834 134.959 116.917 135.126 117.083C135.292 117.24 135.375 117.466 135.375 117.762C135.375 118.029 135.292 118.251 135.126 118.426C134.959 118.602 134.729 118.689 134.433 118.689C134.156 118.689 133.935 118.602 133.768 118.426C133.602 118.251 133.519 118.029 133.519 117.762Z" fill="white"/>
+<path d="M98.3372 177.869L119.961 183.591L119.96 152.492L98.3372 146.77L77.0933 153.382L77.0934 184.352L98.3372 177.869Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M76.2278 185.522L76.2278 152.745L98.3179 145.87L120.826 151.826L120.826 184.716L98.3541 178.769L76.2278 185.522ZM77.9589 183.183L98.3204 176.969L119.095 182.467L119.095 153.159L98.3566 147.671L77.9589 154.019L77.9589 183.183Z" fill="#2D2D2D"/>
+<path d="M98.7166 159.341L77.0934 153.619L77.0934 191.542L98.7166 197.264L119.961 190.652L119.961 152.858L98.7166 159.341Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M120.826 151.689L120.826 191.289L98.736 198.164L76.2278 192.208L76.2278 152.495L98.6997 158.441L120.826 151.689ZM119.095 154.027L98.7335 160.241L77.9589 154.743L77.9589 190.875L98.6972 196.363L119.095 190.014L119.095 154.027Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M97.5345 196.63L97.5345 159.28L99.2657 159.28L99.2657 196.63L97.5345 196.63Z" fill="#2D2D2D"/>
+<path d="M131.952 187.406L136.711 175.014H138.477L143.549 187.406H141.681L140.235 183.653H135.054L133.693 187.406H131.952ZM135.527 182.318H139.728L138.435 178.886C138.041 177.843 137.747 176.987 137.556 176.316C137.398 177.111 137.176 177.9 136.888 178.683L135.527 182.318Z" fill="#2D2D2D"/>
+<path d="M144.838 190.846V178.429H146.224V179.596C146.551 179.139 146.92 178.798 147.331 178.573C147.743 178.342 148.242 178.226 148.828 178.226C149.594 178.226 150.27 178.424 150.856 178.818C151.442 179.213 151.885 179.77 152.183 180.492C152.482 181.207 152.631 181.994 152.631 182.85C152.631 183.769 152.465 184.597 152.133 185.335C151.806 186.068 151.327 186.631 150.696 187.026C150.07 187.415 149.411 187.609 148.718 187.609C148.211 187.609 147.754 187.502 147.348 187.288C146.948 187.074 146.619 186.803 146.359 186.476V190.846H144.838ZM146.216 182.968C146.216 184.124 146.45 184.977 146.917 185.53C147.385 186.082 147.951 186.358 148.616 186.358C149.292 186.358 149.87 186.073 150.349 185.504C150.834 184.929 151.076 184.042 151.076 182.842C151.076 181.698 150.839 180.841 150.366 180.272C149.898 179.703 149.338 179.418 148.684 179.418C148.036 179.418 147.461 179.723 146.96 180.331C146.464 180.934 146.216 181.813 146.216 182.968Z" fill="#2D2D2D"/>
+<path d="M154.647 190.846V178.429H156.033V179.596C156.36 179.139 156.729 178.798 157.141 178.573C157.552 178.342 158.051 178.226 158.637 178.226C159.403 178.226 160.08 178.424 160.666 178.818C161.252 179.213 161.694 179.77 161.993 180.492C162.291 181.207 162.441 181.994 162.441 182.85C162.441 183.769 162.274 184.597 161.942 185.335C161.615 186.068 161.136 186.631 160.505 187.026C159.879 187.415 159.22 187.609 158.527 187.609C158.02 187.609 157.563 187.502 157.158 187.288C156.758 187.074 156.428 186.803 156.169 186.476V190.846H154.647ZM156.025 182.968C156.025 184.124 156.259 184.977 156.727 185.53C157.194 186.082 157.761 186.358 158.426 186.358C159.102 186.358 159.679 186.073 160.158 185.504C160.643 184.929 160.885 184.042 160.885 182.842C160.885 181.698 160.649 180.841 160.175 180.272C159.708 179.703 159.147 179.418 158.493 179.418C157.845 179.418 157.27 179.723 156.769 180.331C156.273 180.934 156.025 181.813 156.025 182.968Z" fill="#2D2D2D"/>
+<path d="M164.423 187.406V175.014H165.944V187.406H164.423Z" fill="#2D2D2D"/>
+<path d="M168.493 176.764V175.014H170.014V176.764H168.493ZM168.493 187.406V178.429H170.014V187.406H168.493Z" fill="#2D2D2D"/>
+<path d="M178.37 184.118L179.866 184.312C179.702 185.344 179.282 186.152 178.606 186.738C177.936 187.319 177.11 187.609 176.13 187.609C174.901 187.609 173.912 187.209 173.163 186.409C172.419 185.603 172.047 184.45 172.047 182.951C172.047 181.982 172.207 181.134 172.529 180.407C172.85 179.68 173.337 179.136 173.991 178.776C174.65 178.41 175.366 178.226 176.138 178.226C177.113 178.226 177.91 178.474 178.53 178.97C179.15 179.46 179.547 180.159 179.722 181.067L178.243 181.295C178.102 180.692 177.851 180.238 177.49 179.934C177.135 179.63 176.704 179.477 176.197 179.477C175.431 179.477 174.808 179.754 174.329 180.306C173.85 180.852 173.611 181.72 173.611 182.909C173.611 184.115 173.842 184.991 174.304 185.538C174.766 186.085 175.369 186.358 176.113 186.358C176.71 186.358 177.209 186.175 177.609 185.809C178.009 185.442 178.263 184.879 178.37 184.118Z" fill="#2D2D2D"/>
+<path d="M187.198 186.299C186.635 186.778 186.091 187.116 185.567 187.313C185.049 187.51 184.491 187.609 183.893 187.609C182.907 187.609 182.149 187.37 181.62 186.891C181.09 186.406 180.825 185.789 180.825 185.039C180.825 184.6 180.924 184.2 181.121 183.839C181.324 183.473 181.586 183.18 181.907 182.96C182.234 182.74 182.6 182.574 183.006 182.461C183.304 182.382 183.755 182.306 184.358 182.233C185.587 182.086 186.491 181.912 187.072 181.709C187.077 181.5 187.08 181.368 187.08 181.312C187.08 180.692 186.936 180.255 186.649 180.001C186.26 179.658 185.683 179.486 184.916 179.486C184.2 179.486 183.671 179.613 183.327 179.866C182.989 180.114 182.738 180.557 182.575 181.193L181.087 180.99C181.222 180.354 181.445 179.841 181.755 179.452C182.065 179.058 182.513 178.756 183.099 178.548C183.685 178.333 184.364 178.226 185.136 178.226C185.902 178.226 186.525 178.317 187.004 178.497C187.483 178.677 187.835 178.905 188.061 179.182C188.286 179.452 188.444 179.796 188.534 180.213C188.585 180.472 188.61 180.94 188.61 181.616V183.645C188.61 185.059 188.641 185.955 188.703 186.333C188.771 186.705 188.9 187.062 189.092 187.406H187.503C187.345 187.091 187.243 186.721 187.198 186.299ZM187.072 182.901C186.519 183.126 185.691 183.318 184.586 183.476C183.961 183.566 183.519 183.667 183.259 183.78C183 183.893 182.8 184.059 182.659 184.279C182.518 184.493 182.448 184.732 182.448 184.997C182.448 185.403 182.6 185.741 182.904 186.011C183.214 186.282 183.665 186.417 184.257 186.417C184.843 186.417 185.364 186.29 185.821 186.037C186.277 185.778 186.612 185.425 186.826 184.98C186.99 184.636 187.072 184.129 187.072 183.459V182.901Z" fill="#2D2D2D"/>
+<path d="M194.472 186.045L194.692 187.389C194.263 187.479 193.88 187.524 193.542 187.524C192.99 187.524 192.562 187.437 192.257 187.262C191.953 187.088 191.739 186.86 191.615 186.578C191.491 186.29 191.429 185.69 191.429 184.777V179.613H190.313V178.429H191.429V176.206L192.942 175.293V178.429H194.472V179.613H192.942V184.862C192.942 185.296 192.967 185.575 193.018 185.699C193.074 185.823 193.162 185.921 193.28 185.995C193.404 186.068 193.579 186.104 193.804 186.104C193.973 186.104 194.196 186.085 194.472 186.045Z" fill="#2D2D2D"/>
+<path d="M196.15 176.764V175.014H197.671V176.764H196.15ZM196.15 187.406V178.429H197.671V187.406H196.15Z" fill="#2D2D2D"/>
+<path d="M199.602 182.918C199.602 181.255 200.065 180.024 200.989 179.224C201.761 178.559 202.702 178.226 203.812 178.226C205.046 178.226 206.055 178.632 206.838 179.444C207.621 180.249 208.013 181.365 208.013 182.791C208.013 183.946 207.838 184.856 207.489 185.521C207.145 186.18 206.641 186.693 205.976 187.06C205.317 187.426 204.595 187.609 203.812 187.609C202.555 187.609 201.538 187.206 200.76 186.4C199.988 185.594 199.602 184.434 199.602 182.918ZM201.166 182.918C201.166 184.067 201.417 184.929 201.919 185.504C202.42 186.073 203.051 186.358 203.812 186.358C204.567 186.358 205.195 186.071 205.697 185.496C206.198 184.921 206.449 184.045 206.449 182.867C206.449 181.757 206.196 180.917 205.688 180.348C205.187 179.773 204.561 179.486 203.812 179.486C203.051 179.486 202.42 179.77 201.919 180.34C201.417 180.909 201.166 181.768 201.166 182.918Z" fill="#2D2D2D"/>
+<path d="M209.978 187.406V178.429H211.347V179.706C212.007 178.719 212.959 178.226 214.205 178.226C214.746 178.226 215.241 178.325 215.692 178.522C216.149 178.714 216.49 178.967 216.715 179.283C216.94 179.599 217.098 179.973 217.188 180.407C217.245 180.689 217.273 181.182 217.273 181.886V187.406H215.751V181.946C215.751 181.326 215.692 180.864 215.574 180.559C215.456 180.249 215.244 180.004 214.94 179.824C214.641 179.638 214.289 179.545 213.883 179.545C213.235 179.545 212.675 179.751 212.201 180.162C211.733 180.573 211.5 181.354 211.5 182.503V187.406H209.978Z" fill="#2D2D2D"/>
+<path d="M123.374 233.941V235.111H116.821C116.812 234.818 116.86 234.536 116.963 234.265C117.13 233.819 117.396 233.379 117.761 232.947C118.131 232.514 118.663 232.013 119.357 231.445C120.435 230.562 121.163 229.863 121.541 229.349C121.92 228.831 122.109 228.342 122.109 227.882C122.109 227.399 121.936 226.994 121.589 226.665C121.246 226.331 120.797 226.164 120.243 226.164C119.657 226.164 119.188 226.34 118.836 226.692C118.485 227.043 118.307 227.53 118.302 228.152L117.051 228.024C117.137 227.091 117.459 226.381 118.018 225.894C118.577 225.402 119.328 225.157 120.27 225.157C121.221 225.157 121.974 225.42 122.529 225.948C123.083 226.475 123.36 227.129 123.36 227.909C123.36 228.306 123.279 228.695 123.117 229.079C122.955 229.462 122.684 229.865 122.305 230.289C121.931 230.713 121.307 231.294 120.432 232.034C119.702 232.647 119.233 233.064 119.026 233.285C118.818 233.501 118.647 233.72 118.512 233.941H123.374Z" fill="#6E6E6E"/>
+<path d="M128.751 232.135V230.911H132.491V232.135H128.751Z" fill="#6E6E6E"/>
+<path d="M138.193 235.111V225.197H141.932C142.59 225.197 143.093 225.229 143.44 225.292C143.927 225.373 144.335 225.528 144.664 225.758C144.993 225.984 145.257 226.302 145.455 226.712C145.658 227.122 145.76 227.573 145.76 228.064C145.76 228.907 145.491 229.622 144.955 230.208C144.419 230.79 143.449 231.08 142.047 231.08H139.505V235.111H138.193ZM139.505 229.91H142.067C142.915 229.91 143.517 229.753 143.873 229.437C144.229 229.121 144.407 228.677 144.407 228.105C144.407 227.69 144.301 227.336 144.089 227.043C143.882 226.746 143.607 226.55 143.264 226.455C143.044 226.396 142.636 226.367 142.04 226.367H139.505V229.91Z" fill="#6E6E6E"/>
+<path d="M147.448 235.111V225.197H148.665V228.754C149.233 228.096 149.95 227.767 150.815 227.767C151.347 227.767 151.809 227.873 152.201 228.085C152.594 228.292 152.873 228.581 153.04 228.95C153.211 229.32 153.297 229.856 153.297 230.56V235.111H152.08V230.56C152.08 229.951 151.947 229.509 151.681 229.234C151.419 228.955 151.047 228.815 150.565 228.815C150.204 228.815 149.864 228.91 149.544 229.099C149.228 229.284 149.003 229.536 148.868 229.856C148.732 230.176 148.665 230.618 148.665 231.182V235.111H147.448Z" fill="#6E6E6E"/>
+<path d="M160.016 234.225C159.565 234.608 159.13 234.878 158.711 235.036C158.296 235.194 157.85 235.273 157.372 235.273C156.583 235.273 155.977 235.081 155.553 234.698C155.129 234.31 154.917 233.817 154.917 233.217C154.917 232.866 154.996 232.545 155.154 232.257C155.316 231.964 155.526 231.729 155.783 231.554C156.044 231.378 156.337 231.245 156.662 231.155C156.901 231.092 157.261 231.031 157.744 230.972C158.727 230.855 159.45 230.715 159.914 230.553C159.919 230.386 159.921 230.28 159.921 230.235C159.921 229.739 159.806 229.39 159.576 229.187C159.265 228.912 158.803 228.774 158.19 228.774C157.618 228.774 157.194 228.876 156.919 229.079C156.648 229.277 156.448 229.631 156.317 230.14L155.127 229.978C155.235 229.469 155.413 229.058 155.661 228.747C155.909 228.432 156.267 228.191 156.736 228.024C157.205 227.852 157.748 227.767 158.366 227.767C158.979 227.767 159.477 227.839 159.86 227.983C160.244 228.127 160.525 228.31 160.706 228.531C160.886 228.747 161.012 229.022 161.084 229.356C161.125 229.563 161.145 229.937 161.145 230.478V232.101C161.145 233.233 161.17 233.95 161.22 234.252C161.274 234.549 161.377 234.836 161.531 235.111H160.259C160.133 234.858 160.052 234.563 160.016 234.225ZM159.914 231.506C159.473 231.687 158.81 231.84 157.926 231.966C157.426 232.038 157.072 232.119 156.865 232.21C156.657 232.3 156.497 232.433 156.385 232.609C156.272 232.78 156.216 232.971 156.216 233.183C156.216 233.508 156.337 233.778 156.581 233.995C156.829 234.211 157.189 234.319 157.663 234.319C158.132 234.319 158.549 234.218 158.914 234.015C159.279 233.808 159.547 233.526 159.718 233.17C159.849 232.895 159.914 232.489 159.914 231.953V231.506Z" fill="#6E6E6E"/>
+<path d="M162.725 232.967L163.929 232.778C163.996 233.26 164.183 233.63 164.49 233.887C164.801 234.144 165.234 234.272 165.788 234.272C166.347 234.272 166.762 234.159 167.032 233.934C167.303 233.704 167.438 233.436 167.438 233.129C167.438 232.854 167.319 232.638 167.08 232.48C166.913 232.372 166.498 232.234 165.836 232.068C164.943 231.842 164.323 231.648 163.976 231.486C163.633 231.319 163.372 231.092 163.191 230.803C163.016 230.51 162.928 230.188 162.928 229.836C162.928 229.516 163 229.221 163.144 228.95C163.293 228.675 163.494 228.448 163.746 228.267C163.935 228.127 164.192 228.01 164.517 227.916C164.846 227.816 165.198 227.767 165.572 227.767C166.135 227.767 166.629 227.848 167.053 228.01C167.481 228.173 167.797 228.393 167.999 228.673C168.202 228.948 168.342 229.318 168.419 229.782L167.229 229.944C167.174 229.575 167.017 229.286 166.755 229.079C166.498 228.871 166.133 228.768 165.66 228.768C165.101 228.768 164.702 228.86 164.463 229.045C164.224 229.23 164.104 229.446 164.104 229.694C164.104 229.852 164.154 229.994 164.253 230.12C164.352 230.251 164.508 230.359 164.72 230.445C164.841 230.49 165.2 230.593 165.795 230.756C166.656 230.986 167.256 231.175 167.594 231.324C167.936 231.468 168.205 231.68 168.398 231.959C168.592 232.239 168.689 232.586 168.689 233.001C168.689 233.407 168.57 233.79 168.331 234.15C168.096 234.507 167.756 234.784 167.31 234.982C166.863 235.176 166.358 235.273 165.795 235.273C164.862 235.273 164.149 235.079 163.658 234.691C163.171 234.304 162.86 233.729 162.725 232.967Z" fill="#6E6E6E"/>
+<path d="M175.226 232.798L176.483 232.953C176.285 233.688 175.918 234.259 175.381 234.664C174.845 235.07 174.159 235.273 173.325 235.273C172.275 235.273 171.441 234.951 170.823 234.306C170.21 233.657 169.904 232.748 169.904 231.581C169.904 230.373 170.215 229.435 170.837 228.768C171.459 228.1 172.266 227.767 173.258 227.767C174.218 227.767 175.002 228.094 175.611 228.747C176.22 229.401 176.524 230.321 176.524 231.506C176.524 231.578 176.522 231.687 176.517 231.831H171.161C171.207 232.62 171.43 233.224 171.831 233.643C172.232 234.062 172.733 234.272 173.332 234.272C173.778 234.272 174.159 234.155 174.475 233.92C174.791 233.686 175.041 233.312 175.226 232.798ZM171.229 230.83H175.239C175.185 230.226 175.032 229.773 174.779 229.471C174.392 229.002 173.889 228.768 173.271 228.768C172.712 228.768 172.241 228.955 171.858 229.329C171.479 229.703 171.27 230.203 171.229 230.83Z" fill="#6E6E6E"/>
+<path d="M186.905 232.48L188.102 232.636C187.972 233.461 187.636 234.108 187.095 234.576C186.558 235.041 185.898 235.273 185.113 235.273C184.131 235.273 183.339 234.953 182.74 234.313C182.145 233.668 181.847 232.746 181.847 231.547C181.847 230.771 181.976 230.093 182.233 229.511C182.49 228.93 182.88 228.495 183.403 228.206C183.93 227.913 184.503 227.767 185.12 227.767C185.9 227.767 186.538 227.965 187.034 228.362C187.53 228.754 187.848 229.313 187.987 230.039L186.804 230.221C186.691 229.739 186.491 229.376 186.202 229.133C185.918 228.889 185.573 228.768 185.168 228.768C184.554 228.768 184.056 228.989 183.673 229.43C183.29 229.868 183.098 230.562 183.098 231.513C183.098 232.478 183.283 233.179 183.653 233.616C184.022 234.053 184.505 234.272 185.1 234.272C185.578 234.272 185.977 234.126 186.297 233.833C186.617 233.54 186.82 233.089 186.905 232.48Z" fill="#6E6E6E"/>
+<path d="M188.864 231.52C188.864 230.19 189.233 229.205 189.973 228.565C190.59 228.033 191.343 227.767 192.231 227.767C193.219 227.767 194.026 228.091 194.652 228.741C195.279 229.385 195.592 230.278 195.592 231.418C195.592 232.343 195.452 233.071 195.173 233.603C194.898 234.13 194.494 234.54 193.963 234.833C193.435 235.126 192.858 235.273 192.231 235.273C191.226 235.273 190.412 234.951 189.79 234.306C189.173 233.661 188.864 232.733 188.864 231.52ZM190.115 231.52C190.115 232.44 190.315 233.129 190.717 233.589C191.118 234.044 191.623 234.272 192.231 234.272C192.835 234.272 193.338 234.042 193.739 233.582C194.141 233.123 194.341 232.421 194.341 231.479C194.341 230.591 194.138 229.919 193.733 229.464C193.331 229.004 192.831 228.774 192.231 228.774C191.623 228.774 191.118 229.002 190.717 229.457C190.315 229.913 190.115 230.6 190.115 231.52Z" fill="#6E6E6E"/>
+<path d="M197.199 235.111V227.929H198.288V228.937C198.513 228.585 198.813 228.303 199.187 228.091C199.561 227.875 199.987 227.767 200.465 227.767C200.997 227.767 201.432 227.877 201.77 228.098C202.113 228.319 202.354 228.628 202.494 229.025C203.062 228.186 203.801 227.767 204.712 227.767C205.424 227.767 205.972 227.965 206.355 228.362C206.738 228.754 206.93 229.36 206.93 230.181V235.111H205.719V230.587C205.719 230.1 205.679 229.75 205.598 229.539C205.521 229.322 205.379 229.149 205.172 229.018C204.964 228.887 204.721 228.822 204.441 228.822C203.936 228.822 203.517 228.991 203.184 229.329C202.85 229.662 202.683 230.199 202.683 230.938V235.111H201.466V230.445C201.466 229.904 201.367 229.498 201.168 229.227C200.97 228.957 200.645 228.822 200.195 228.822C199.852 228.822 199.534 228.912 199.241 229.092C198.953 229.273 198.743 229.536 198.612 229.883C198.482 230.231 198.416 230.731 198.416 231.385V235.111H197.199Z" fill="#6E6E6E"/>
+<path d="M208.908 235.111V227.929H209.997V228.937C210.223 228.585 210.522 228.303 210.897 228.091C211.271 227.875 211.697 227.767 212.175 227.767C212.707 227.767 213.142 227.877 213.48 228.098C213.822 228.319 214.064 228.628 214.203 229.025C214.771 228.186 215.511 227.767 216.421 227.767C217.134 227.767 217.681 227.965 218.065 228.362C218.448 228.754 218.639 229.36 218.639 230.181V235.111H217.429V230.587C217.429 230.1 217.388 229.75 217.307 229.539C217.231 229.322 217.089 229.149 216.881 229.018C216.674 228.887 216.43 228.822 216.151 228.822C215.646 228.822 215.227 228.991 214.893 229.329C214.559 229.662 214.393 230.199 214.393 230.938V235.111H213.175V230.445C213.175 229.904 213.076 229.498 212.878 229.227C212.68 228.957 212.355 228.822 211.904 228.822C211.562 228.822 211.244 228.912 210.951 229.092C210.662 229.273 210.453 229.536 210.322 229.883C210.191 230.231 210.126 230.731 210.126 231.385V235.111H208.908Z" fill="#6E6E6E"/>
+<path d="M220.625 226.597V225.197H221.842V226.597H220.625ZM220.625 235.111V227.929H221.842V235.111H220.625Z" fill="#6E6E6E"/>
+<path d="M226.532 234.022L226.708 235.097C226.366 235.169 226.059 235.205 225.788 235.205C225.347 235.205 225.004 235.135 224.761 234.996C224.517 234.856 224.346 234.673 224.247 234.448C224.147 234.218 224.098 233.738 224.098 233.008V228.876H223.205V227.929H224.098V226.151L225.308 225.42V227.929H226.532V228.876H225.308V233.075C225.308 233.422 225.329 233.645 225.369 233.745C225.414 233.844 225.484 233.923 225.579 233.981C225.678 234.04 225.818 234.069 225.998 234.069C226.133 234.069 226.311 234.053 226.532 234.022Z" fill="#6E6E6E"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M175.627 219.205L175.627 204.232L177.358 204.232L177.358 219.205L175.627 219.205Z" fill="#2D2D2D"/>
+<path d="M2.57642 440.888V363.964C2.57642 363.964 10.8308 371.772 36.4863 371.772C62.1417 371.772 71.2885 363.071 71.2885 363.071V440.888C61.1469 456.431 5.8509 452.249 2.57642 440.888Z" fill="white"/>
+<path d="M72.1908 360.88C72.1908 367.082 56.361 372.147 36.5384 372.147C16.7158 372.147 0.981842 367.12 0.981842 360.919C0.981842 354.718 16.7158 349.69 36.5384 349.69C56.361 349.69 72.1908 354.679 72.1908 360.88Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M68.3682 363.873C69.9754 362.666 70.4597 361.636 70.4597 360.88C70.4597 360.126 69.9775 359.102 68.3718 357.903C66.7955 356.725 64.4013 355.593 61.2791 354.611C55.055 352.656 46.3256 351.422 36.5384 351.422C26.7523 351.422 18.0483 352.665 11.8497 354.629C8.74033 355.615 6.35849 356.752 4.79104 357.931C3.1955 359.132 2.71298 360.16 2.71298 360.919C2.71298 361.678 3.1955 362.705 4.79104 363.906C6.35849 365.086 8.74033 366.223 11.8497 367.208C18.0483 369.173 26.7523 370.416 36.5384 370.416C46.3232 370.416 55.0513 369.163 61.2746 367.189C64.3963 366.199 66.791 365.057 68.3682 363.873ZM36.5384 372.147C56.361 372.147 72.1908 367.082 72.1908 360.88C72.1908 354.679 56.361 349.69 36.5384 349.69C16.7158 349.69 0.981842 354.718 0.981842 360.919C0.981842 367.12 16.7158 372.147 36.5384 372.147Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M1.12725 440.467L0.864838 360.174L2.59596 360.166L2.85837 440.459L1.12725 440.467Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M70.4808 441.015L70.4808 361.036L72.212 361.036L72.212 441.015L70.4808 441.015Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M12.4159 446.648C18.5933 448.567 27.1801 449.767 36.7028 449.767C46.2254 449.767 54.8123 448.567 60.9896 446.648C64.0835 445.687 66.5242 444.56 68.1726 443.349C69.8387 442.125 70.5471 440.932 70.5471 439.849H72.2783C72.2783 441.744 71.0442 443.388 69.1974 444.744C67.333 446.114 64.6906 447.311 61.5032 448.301C55.118 450.285 46.3499 451.498 36.7028 451.498C27.0556 451.498 18.2875 450.285 11.9023 448.301C8.71492 447.311 6.07251 446.114 4.20808 444.744C2.36134 443.388 1.12724 441.744 1.12724 439.849H2.85838C2.85838 440.932 3.56681 442.125 5.2329 443.349C6.88131 444.56 9.32206 445.687 12.4159 446.648Z" fill="#ED1C24"/>
+<path d="M134.323 441.637V363.964C134.323 363.964 142.577 371.772 168.233 371.772C193.888 371.772 203.035 363.071 203.035 363.071V441.637C203.035 441.637 199.341 451.178 168.233 451.545C137.125 451.911 134.323 441.637 134.323 441.637Z" fill="white"/>
+<path d="M203.841 360.919C203.841 367.12 188.108 372.147 168.285 372.147C148.462 372.147 132.728 367.12 132.728 360.919C132.728 354.718 148.462 349.69 168.285 349.69C188.108 349.69 203.841 354.718 203.841 360.919Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M200.032 363.906C201.628 362.705 202.11 361.678 202.11 360.919C202.11 360.16 201.628 359.132 200.032 357.931C198.465 356.752 196.083 355.615 192.974 354.629C186.775 352.665 178.071 351.422 168.285 351.422C158.499 351.422 149.795 352.665 143.596 354.629C140.487 355.615 138.105 356.752 136.538 357.931C134.942 359.132 134.459 360.16 134.459 360.919C134.459 361.678 134.942 362.705 136.538 363.906C138.105 365.086 140.487 366.223 143.596 367.208C149.795 369.173 158.499 370.416 168.285 370.416C178.071 370.416 186.775 369.173 192.974 367.208C196.083 366.223 198.465 365.086 200.032 363.906ZM168.285 372.147C188.108 372.147 203.841 367.12 203.841 360.919C203.841 354.718 188.108 349.69 168.285 349.69C148.462 349.69 132.728 354.718 132.728 360.919C132.728 367.12 148.462 372.147 168.285 372.147Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M132.874 440.467L132.611 360.174L134.342 360.166L134.605 440.459L132.874 440.467Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M202.227 441.015L202.227 360.17L203.958 360.17L203.958 441.015L202.227 441.015Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M144.162 447.396C150.34 449.315 158.927 450.516 168.449 450.516C177.972 450.516 186.559 449.315 192.736 447.396C195.83 446.435 198.271 445.308 199.919 444.098C201.585 442.874 202.294 441.681 202.294 440.598H204.025C204.025 442.492 202.791 444.136 200.944 445.493C199.08 446.862 196.437 448.059 193.25 449.049C186.865 451.033 178.096 452.247 168.449 452.247C158.802 452.247 150.034 451.033 143.649 449.049C140.461 448.059 137.819 446.862 135.955 445.493C134.108 444.136 132.874 442.492 132.874 440.598H134.605C134.605 441.681 135.313 442.874 136.979 444.098C138.628 445.308 141.069 446.435 144.162 447.396Z" fill="#ED1C24"/>
+<path d="M68.6989 463.554V386.16C68.6989 386.16 76.9303 392.545 102.514 392.545C128.098 392.545 137.22 385.43 137.22 385.43V463.126C126.978 477.239 74.9713 475.421 68.6989 463.554Z" fill="white"/>
+<path d="M138.162 383.376C138.162 389.577 122.385 394.604 102.508 394.604C82.6319 394.604 66.8551 389.577 66.8551 383.376C66.8551 377.174 82.6319 372.147 102.508 372.147C122.385 372.147 138.162 377.174 138.162 383.376Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M134.347 386.362C135.948 385.16 136.431 384.133 136.431 383.376C136.431 382.618 135.948 381.591 134.347 380.39C132.775 379.209 130.385 378.072 127.267 377.087C121.051 375.122 112.322 373.878 102.508 373.878C92.695 373.878 83.9664 375.122 77.7498 377.087C74.6314 378.072 72.2424 379.209 70.67 380.39C69.0689 381.591 68.5862 382.618 68.5862 383.376C68.5862 384.133 69.0689 385.16 70.67 386.362C72.2424 387.542 74.6314 388.679 77.7498 389.665C83.9664 391.63 92.695 392.873 102.508 392.873C112.322 392.873 121.051 391.63 127.267 389.665C130.385 388.679 132.775 387.542 134.347 386.362ZM102.508 394.604C122.385 394.604 138.162 389.577 138.162 383.376C138.162 377.174 122.385 372.147 102.508 372.147C82.6319 372.147 66.8551 377.174 66.8551 383.376C66.8551 389.577 82.6319 394.604 102.508 394.604Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M67.0005 462.924L66.7381 382.631L68.4692 382.623L68.7316 462.916L67.0005 462.924Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M136.354 463.472L136.354 382.627L138.085 382.627L138.085 463.472L136.354 463.472Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M78.2892 469.105C84.4665 471.024 93.0534 472.224 102.576 472.224C112.099 472.224 120.686 471.024 126.863 469.105C129.957 468.143 132.397 467.017 134.046 465.806C135.712 464.582 136.42 463.389 136.42 462.306H138.152C138.152 464.201 136.917 465.845 135.071 467.201C133.206 468.57 130.564 469.767 127.376 470.758C120.991 472.741 112.223 473.955 102.576 473.955C92.9289 473.955 84.1608 472.741 77.7756 470.758C74.5882 469.767 71.9458 468.57 70.0813 467.201C68.2346 465.845 67.0005 464.201 67.0005 462.306H68.7316C68.7316 463.389 69.4401 464.582 71.1061 465.806C72.7546 467.017 75.1953 468.143 78.2892 469.105Z" fill="#ED1C24"/>
+<path d="M148.158 459.139C148.158 459.139 140.298 464.004 147.705 468.836C149.13 469.777 154.298 472.393 154.151 474.814C154.151 474.814 157.283 470.109 152.704 467.149C147.999 464.119 146.823 460.883 148.158 459.139Z" fill="#ED1C24"/>
+<path d="M145.421 468.434C145.421 468.434 142.617 472.749 148.135 473.632C148.678 473.701 152.67 474.126 153.71 475.457C153.71 475.457 153.62 473.162 150.363 471.808C147.117 470.454 145.783 470.121 145.421 468.434Z" fill="#ED1C24"/>
+<path d="M156.277 463.901C152.907 460.321 151.969 458.106 153.416 455.237C153.416 455.237 143.363 459.162 153.292 466.127C156.843 468.618 156.255 471.165 156.255 471.257C156.809 470.672 159.647 467.481 156.277 463.901Z" fill="#ED1C24"/>
+<path d="M161.994 473.189V463.275H163.34L168.547 471.059V463.275H169.805V473.189H168.459L163.252 465.399V473.189H161.994Z" fill="#2D2D2D"/>
+<path d="M171.79 468.361C171.79 466.715 172.232 465.428 173.116 464.499C173.999 463.566 175.14 463.099 176.537 463.099C177.453 463.099 178.278 463.318 179.012 463.755C179.747 464.193 180.306 464.804 180.689 465.588C181.077 466.368 181.271 467.254 181.271 468.246C181.271 469.251 181.068 470.15 180.662 470.944C180.257 471.737 179.682 472.339 178.938 472.749C178.194 473.155 177.392 473.358 176.531 473.358C175.597 473.358 174.763 473.132 174.029 472.682C173.294 472.231 172.737 471.615 172.358 470.835C171.98 470.056 171.79 469.231 171.79 468.361ZM173.143 468.381C173.143 469.575 173.463 470.518 174.103 471.207C174.748 471.893 175.555 472.235 176.524 472.235C177.511 472.235 178.323 471.888 178.958 471.194C179.598 470.5 179.919 469.515 179.919 468.239C179.919 467.432 179.781 466.729 179.506 466.129C179.236 465.525 178.837 465.058 178.309 464.729C177.786 464.396 177.198 464.229 176.544 464.229C175.615 464.229 174.815 464.549 174.144 465.189C173.476 465.825 173.143 466.889 173.143 468.381Z" fill="#2D2D2D"/>
+<path d="M183.141 473.189V463.275H186.556C187.327 463.275 187.916 463.323 188.321 463.417C188.889 463.548 189.374 463.785 189.775 464.127C190.298 464.569 190.688 465.135 190.945 465.825C191.207 466.51 191.337 467.294 191.337 468.178C191.337 468.931 191.249 469.598 191.074 470.18C190.898 470.761 190.672 471.243 190.397 471.627C190.122 472.005 189.82 472.305 189.491 472.526C189.167 472.742 188.772 472.907 188.308 473.02C187.848 473.132 187.318 473.189 186.719 473.189H183.141ZM184.453 472.019H186.57C187.224 472.019 187.735 471.958 188.105 471.836C188.479 471.715 188.777 471.543 188.998 471.322C189.309 471.011 189.55 470.594 189.721 470.071C189.897 469.544 189.985 468.906 189.985 468.158C189.985 467.121 189.814 466.325 189.471 465.771C189.133 465.212 188.72 464.837 188.233 464.648C187.882 464.513 187.316 464.445 186.536 464.445H184.453V472.019Z" fill="#2D2D2D"/>
+<path d="M193.35 473.189V463.275H200.518V464.445H194.662V467.481H200.146V468.645H194.662V472.019H200.748V473.189H193.35Z" fill="#2D2D2D"/>
+<path d="M7.37311 459.139C7.37311 459.139 -0.486275 464.004 6.92077 468.836C8.34564 469.777 13.5136 472.393 13.3666 474.814C13.3666 474.814 16.499 470.109 11.9191 467.149C7.21479 464.119 6.03871 460.883 7.37311 459.139Z" fill="#ED1C24"/>
+<path d="M4.63658 468.434C4.63658 468.434 1.83208 472.749 7.35061 473.632C7.89342 473.701 11.8853 474.126 12.9257 475.457C12.9257 475.457 12.8352 473.162 9.57838 471.808C6.33285 470.454 4.99845 470.121 4.63658 468.434Z" fill="#ED1C24"/>
+<path d="M15.4929 463.901C12.123 460.321 11.1844 458.106 12.6318 455.237C12.6318 455.237 2.57861 459.162 12.5074 466.127C16.0583 468.618 15.4703 471.165 15.4703 471.257C16.0244 470.672 18.8628 467.481 15.4929 463.901Z" fill="#ED1C24"/>
+<path d="M21.21 473.189V463.275H22.5557L27.7627 471.059V463.275H29.0205V473.189H27.6748L22.4678 465.399V473.189H21.21Z" fill="#2D2D2D"/>
+<path d="M31.0059 468.361C31.0059 466.715 31.4477 465.428 32.3313 464.499C33.2149 463.566 34.3554 463.099 35.753 463.099C36.6681 463.099 37.4931 463.318 38.228 463.755C38.9628 464.193 39.5218 464.804 39.905 465.588C40.2927 466.368 40.4866 467.254 40.4866 468.246C40.4866 469.251 40.2837 470.15 39.878 470.944C39.4722 471.737 38.8974 472.339 38.1536 472.749C37.4097 473.155 36.6073 473.358 35.7462 473.358C34.813 473.358 33.979 473.132 33.2442 472.682C32.5093 472.231 31.9526 471.615 31.5739 470.835C31.1952 470.056 31.0059 469.231 31.0059 468.361ZM32.3583 468.381C32.3583 469.575 32.6784 470.518 33.3186 471.207C33.9632 471.893 34.7702 472.235 35.7395 472.235C36.7267 472.235 37.5382 471.888 38.1739 471.194C38.814 470.5 39.1341 469.515 39.1341 468.239C39.1341 467.432 38.9966 466.729 38.7216 466.129C38.4511 465.525 38.0521 465.058 37.5247 464.729C37.0017 464.396 36.4134 464.229 35.7597 464.229C34.8311 464.229 34.0309 464.549 33.3591 465.189C32.6919 465.825 32.3583 466.889 32.3583 468.381Z" fill="#2D2D2D"/>
+<path d="M42.357 473.189V463.275H45.772C46.5429 463.275 47.1312 463.323 47.5369 463.417C48.1049 463.548 48.5896 463.785 48.9908 464.127C49.5137 464.569 49.9037 465.135 50.1607 465.825C50.4221 466.51 50.5529 467.294 50.5529 468.178C50.5529 468.931 50.465 469.598 50.2892 470.18C50.1133 470.761 49.8879 471.243 49.6129 471.627C49.3379 472.005 49.0359 472.305 48.7068 472.526C48.3822 472.742 47.9877 472.907 47.5234 473.02C47.0635 473.132 46.5338 473.189 45.9342 473.189H42.357ZM43.6689 472.019H45.7855C46.4392 472.019 46.9508 471.958 47.3205 471.836C47.6947 471.715 47.9922 471.543 48.2131 471.322C48.5242 471.011 48.7654 470.594 48.9367 470.071C49.1125 469.544 49.2004 468.906 49.2004 468.158C49.2004 467.121 49.0291 466.325 48.6865 465.771C48.3484 465.212 47.9359 464.837 47.449 464.648C47.0974 464.513 46.5316 464.445 45.7517 464.445H43.6689V472.019Z" fill="#2D2D2D"/>
+<path d="M52.5653 473.189V463.275H59.7333V464.445H53.8772V467.481H59.3614V468.645H53.8772V472.019H59.9633V473.189H52.5653Z" fill="#2D2D2D"/>
+<path d="M76.9891 482.344C76.9891 482.344 69.1298 487.21 76.5368 492.041C77.9617 492.982 83.1296 495.598 82.9826 498.019C82.9826 498.019 86.1151 493.315 81.5351 490.354C76.8308 487.325 75.6547 484.089 76.9891 482.344Z" fill="#ED1C24"/>
+<path d="M74.2526 491.639C74.2526 491.639 71.4481 495.954 76.9666 496.838C77.5094 496.906 81.5013 497.331 82.5417 498.662C82.5417 498.662 82.4512 496.367 79.1944 495.013C75.9489 493.659 74.6145 493.326 74.2526 491.639Z" fill="#ED1C24"/>
+<path d="M85.1089 487.107C81.739 483.526 80.8004 481.312 82.2479 478.443C82.2479 478.443 72.1946 482.367 82.1235 489.333C85.6743 491.823 85.0863 494.37 85.0863 494.462C85.6404 493.877 88.4788 490.687 85.1089 487.107Z" fill="#ED1C24"/>
+<path d="M90.826 496.394V486.481H92.1717L97.3787 494.264V486.481H98.6365V496.394H97.2908L92.0838 488.604V496.394H90.826Z" fill="#2D2D2D"/>
+<path d="M100.622 491.566C100.622 489.92 101.064 488.633 101.947 487.705C102.831 486.771 103.971 486.305 105.369 486.305C106.284 486.305 107.109 486.523 107.844 486.961C108.579 487.398 109.138 488.009 109.521 488.793C109.909 489.573 110.103 490.459 110.103 491.451C110.103 492.456 109.9 493.356 109.494 494.149C109.088 494.942 108.513 495.544 107.77 495.955C107.026 496.36 106.223 496.563 105.362 496.563C104.429 496.563 103.595 496.338 102.86 495.887C102.125 495.436 101.569 494.821 101.19 494.041C100.811 493.261 100.622 492.436 100.622 491.566ZM101.974 491.586C101.974 492.781 102.294 493.723 102.935 494.413C103.579 495.098 104.386 495.441 105.355 495.441C106.343 495.441 107.154 495.093 107.79 494.399C108.43 493.705 108.75 492.72 108.75 491.444C108.75 490.637 108.613 489.934 108.338 489.334C108.067 488.73 107.668 488.264 107.141 487.934C106.618 487.601 106.029 487.434 105.376 487.434C104.447 487.434 103.647 487.754 102.975 488.394C102.308 489.03 101.974 490.094 101.974 491.586Z" fill="#2D2D2D"/>
+<path d="M111.973 496.394V486.481H115.388C116.159 486.481 116.747 486.528 117.153 486.623C117.721 486.753 118.206 486.99 118.607 487.333C119.13 487.774 119.52 488.34 119.777 489.03C120.038 489.715 120.169 490.5 120.169 491.383C120.169 492.136 120.081 492.803 119.905 493.385C119.729 493.966 119.504 494.449 119.229 494.832C118.954 495.211 118.652 495.51 118.323 495.731C117.998 495.948 117.604 496.112 117.139 496.225C116.68 496.338 116.15 496.394 115.55 496.394H111.973ZM113.285 495.224H115.401C116.055 495.224 116.567 495.163 116.937 495.042C117.311 494.92 117.608 494.749 117.829 494.528C118.14 494.217 118.381 493.8 118.553 493.277C118.729 492.749 118.816 492.111 118.816 491.363C118.816 490.326 118.645 489.53 118.303 488.976C117.964 488.417 117.552 488.043 117.065 487.853C116.713 487.718 116.148 487.65 115.368 487.65H113.285V495.224Z" fill="#2D2D2D"/>
+<path d="M122.181 496.394V486.481H129.349V487.65H123.493V490.687H128.977V491.85H123.493V495.224H129.579V496.394H122.181Z" fill="#2D2D2D"/>
+<path d="M257.849 442.832V365.063C257.849 365.063 266.192 372.881 292.121 372.881C318.05 372.881 327.294 364.17 327.294 364.17V442.832C327.294 442.832 323.561 452.384 292.121 452.752C260.681 453.119 257.849 442.832 257.849 442.832Z" fill="white"/>
+<path d="M328.102 362.609C328.102 369.548 312.368 375.174 292.546 375.174C272.723 375.174 256.989 369.548 256.989 362.609C256.989 355.669 272.723 350.044 292.546 350.044C312.368 350.044 328.102 355.669 328.102 362.609Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M324.219 366.176C325.794 364.849 326.371 363.636 326.371 362.609C326.371 361.581 325.794 360.369 324.219 359.042C322.651 357.722 320.276 356.454 317.179 355.355C310.999 353.164 302.316 351.775 292.546 351.775C282.776 351.775 274.092 353.164 267.913 355.355C264.815 356.454 262.44 357.722 260.873 359.042C259.297 360.369 258.72 361.581 258.72 362.609C258.72 363.636 259.297 364.849 260.873 366.176C262.44 367.496 264.815 368.764 267.913 369.862C274.092 372.054 282.776 373.443 292.546 373.443C302.316 373.443 310.999 372.054 317.179 369.862C320.276 368.764 322.651 367.496 324.219 366.176ZM292.546 375.174C312.368 375.174 328.102 369.548 328.102 362.609C328.102 355.669 312.368 350.044 292.546 350.044C272.723 350.044 256.989 355.669 256.989 362.609C256.989 369.548 272.723 375.174 292.546 375.174Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M256.802 440.876L256.802 363.282L258.534 363.282L258.534 440.876L256.802 440.876Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M326.566 440.956L326.646 362.142L328.377 362.144L328.297 440.958L326.566 440.956Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M268.166 448.592C274.364 450.736 282.983 452.079 292.543 452.079C302.104 452.079 310.723 450.736 316.921 448.592C320.024 447.518 322.474 446.259 324.13 444.904C325.793 443.544 326.553 442.178 326.553 440.877H328.284C328.284 442.908 327.093 444.717 325.226 446.244C323.353 447.776 320.695 449.118 317.487 450.228C311.063 452.451 302.244 453.81 292.543 453.81C282.843 453.81 274.024 452.451 267.6 450.228C264.392 449.118 261.734 447.776 259.861 446.244C257.994 444.717 256.802 442.908 256.802 440.877H258.534C258.534 442.178 259.294 443.544 260.957 444.904C262.613 446.259 265.063 447.518 268.166 448.592Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M268.166 395.921C274.364 398.066 282.983 399.408 292.543 399.408C302.104 399.408 310.723 398.066 316.921 395.921C320.024 394.848 322.474 393.589 324.13 392.234C325.793 390.873 326.553 389.507 326.553 388.206H328.284C328.284 390.237 327.093 392.046 325.226 393.573C323.353 395.106 320.695 396.447 317.487 397.557C311.063 399.78 302.244 401.139 292.543 401.139C282.843 401.139 274.024 399.78 267.6 397.557C264.392 396.447 261.734 395.106 259.861 393.573C257.994 392.046 256.802 390.237 256.802 388.206H258.534C258.534 389.507 259.294 390.873 260.957 392.234C262.613 393.589 265.063 394.848 268.166 395.921Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M268.166 422.437C274.364 424.582 282.983 425.924 292.543 425.924C302.104 425.924 310.723 424.582 316.921 422.437C320.024 421.364 322.474 420.105 324.13 418.75C325.793 417.389 326.553 416.023 326.553 414.722H328.284C328.284 416.754 327.093 418.562 325.226 420.09C323.353 421.622 320.695 422.963 317.487 424.073C311.063 426.296 302.244 427.655 292.543 427.655C282.843 427.655 274.024 426.296 267.6 424.073C264.392 422.963 261.734 421.622 259.861 420.09C257.994 418.562 256.802 416.754 256.802 414.722H258.534C258.534 416.023 259.294 417.389 260.957 418.75C262.613 420.105 265.063 421.364 268.166 422.437Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M175.102 273.742V246.582H176.833V273.742C176.833 283.781 184.971 291.919 195.01 291.919H276.794C287.789 291.919 296.702 300.832 296.702 311.827V344.497H294.971V311.827C294.971 301.788 286.833 293.65 276.794 293.65H195.01C184.015 293.65 175.102 284.737 175.102 273.742Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M175.102 273.741V243.269H176.833V273.741C176.833 284.736 167.92 293.65 156.925 293.65H119.672C109.633 293.65 101.495 301.788 101.495 311.827V343.632H99.7635V311.827C99.7635 300.832 108.677 291.918 119.672 291.918H156.925C166.963 291.918 175.102 283.78 175.102 273.741Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M99.986 344.905L94.5927 339.023L95.8686 337.853L100.63 343.046L105.427 337.917L106.691 339.1L101.256 344.911C101.092 345.087 100.861 345.187 100.62 345.185C100.379 345.184 100.149 345.083 99.986 344.905Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M295.183 345.092L289.453 339.033L290.711 337.843L295.818 343.244L300.962 337.91L302.208 339.111L296.435 345.098C296.27 345.268 296.044 345.364 295.807 345.363C295.571 345.362 295.345 345.264 295.183 345.092Z" fill="#2D2D2D"/>
+</svg>
diff --git a/public/img/features/key-value/key-value-api-pic.svg b/public/img/features/key-value/key-value-api-pic.svg
new file mode 100644
index 0000000..41bad99
--- /dev/null
+++ b/public/img/features/key-value/key-value-api-pic.svg
@@ -0,0 +1,58 @@
+<svg width="357" height="432" viewBox="0 0 357 432" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="72" y="1" width="196" height="117" rx="9" fill="white" stroke="black" stroke-width="2"/>
+<rect x="62" y="7" width="217" height="51" rx="10" fill="#2D2D2D"/>
+<rect x="62" y="59" width="217" height="52" rx="10" fill="#2D2D2D"/>
+<path d="M85.256 34.7328C85.256 34.6308 85.2504 34.5005 85.239 34.3418C85.239 34.1718 85.2334 34.0018 85.222 33.8318C85.2107 33.6505 85.1937 33.4748 85.171 33.3048C85.1597 33.1348 85.1427 32.9875 85.12 32.8628H83.981V31.7578H86.242L86.412 32.9478H86.497C86.803 32.5511 87.1884 32.2225 87.653 31.9618C88.129 31.6898 88.707 31.5538 89.387 31.5538C90.5997 31.5538 91.512 31.8881 92.124 32.5568C92.736 33.2255 93.042 34.3191 93.042 35.8378C93.042 36.5518 92.9344 37.1978 92.719 37.7758C92.515 38.3425 92.2204 38.8241 91.835 39.2208C91.4497 39.6175 90.985 39.9235 90.441 40.1388C89.897 40.3541 89.2964 40.4618 88.639 40.4618C88.401 40.4618 88.1857 40.4505 87.993 40.4278C87.8117 40.4165 87.6417 40.3938 87.483 40.3598C87.3357 40.3371 87.1884 40.3031 87.041 40.2578C86.8937 40.2125 86.735 40.1558 86.565 40.0878V43.6578H85.256V34.7328ZM89.166 32.7948C88.826 32.7948 88.503 32.8571 88.197 32.9818C87.9024 33.1065 87.636 33.2708 87.398 33.4748C87.1714 33.6788 86.9844 33.9055 86.837 34.1548C86.6897 34.4041 86.599 34.6535 86.565 34.9028V38.7788C86.8144 38.9488 87.092 39.0848 87.398 39.1868C87.7154 39.2775 88.129 39.3228 88.639 39.3228C89.5457 39.3228 90.271 39.0281 90.815 38.4388C91.359 37.8381 91.631 36.9655 91.631 35.8208C91.631 34.8575 91.4384 34.1151 91.053 33.5938C90.679 33.0611 90.05 32.7948 89.166 32.7948ZM100.588 31.7578H103.002V37.5548C103.002 38.1101 103.036 38.6428 103.104 39.1528H104.243V40.2578H101.982L101.931 38.8128H101.863C101.569 39.3001 101.178 39.6968 100.69 40.0028C100.203 40.3088 99.6137 40.4618 98.9224 40.4618C98.4011 40.4618 97.9534 40.3995 97.5794 40.2748C97.2167 40.1615 96.9164 39.9575 96.6784 39.6628C96.4404 39.3681 96.2647 38.9771 96.1514 38.4898C96.038 37.9911 95.9814 37.3735 95.9814 36.6368V32.8968H94.8424V31.7578H97.3074V36.3648C97.3074 36.8295 97.3244 37.2488 97.3584 37.6228C97.4037 37.9855 97.4887 38.2971 97.6134 38.5578C97.7381 38.8071 97.9194 38.9998 98.1574 39.1358C98.4067 39.2605 98.7354 39.3228 99.1434 39.3228C99.7327 39.3228 100.243 39.1301 100.673 38.7448C101.115 38.3595 101.45 37.8778 101.676 37.2998V32.8968H100.588V31.7578ZM105.738 31.7578H107.761V30.0748L109.087 29.7008V31.7578H113.626V32.8968H109.087V36.9088C109.087 37.7361 109.285 38.3481 109.682 38.7448C110.09 39.1415 110.668 39.3398 111.416 39.3398C111.926 39.3398 112.368 39.2435 112.742 39.0508C113.127 38.8581 113.473 38.6485 113.779 38.4218L114.221 39.4248C113.824 39.7421 113.348 39.9971 112.793 40.1898C112.249 40.3825 111.688 40.4788 111.11 40.4788C110.656 40.4788 110.226 40.4108 109.818 40.2748C109.421 40.1501 109.07 39.9518 108.764 39.6798C108.458 39.4078 108.214 39.0621 108.033 38.6428C107.851 38.2121 107.761 37.7021 107.761 37.1128V32.8968H105.738V31.7578ZM134.141 43.8618C133.382 43.6691 132.668 43.3801 131.999 42.9948C131.342 42.6208 130.764 42.1278 130.265 41.5158C129.778 40.9038 129.387 40.1558 129.092 39.2718C128.809 38.3878 128.667 37.3395 128.667 36.1268C128.667 34.9255 128.815 33.8771 129.109 32.9818C129.404 32.0751 129.801 31.3101 130.299 30.6868C130.798 30.0521 131.376 29.5478 132.033 29.1738C132.702 28.7885 133.405 28.5165 134.141 28.3578L134.566 29.4288C133.898 29.6215 133.286 29.8765 132.73 30.1938C132.175 30.4998 131.693 30.9135 131.285 31.4348C130.889 31.9448 130.577 32.5851 130.35 33.3558C130.135 34.1151 130.027 35.0388 130.027 36.1268C130.027 37.2261 130.158 38.1668 130.418 38.9488C130.69 39.7195 131.042 40.3598 131.472 40.8698C131.914 41.3911 132.402 41.7935 132.934 42.0768C133.478 42.3715 134.022 42.5755 134.566 42.6888L134.141 43.8618ZM184.657 39.3228C184.657 38.9828 184.765 38.7108 184.98 38.5068C185.207 38.2915 185.496 38.1838 185.847 38.1838C186.278 38.1838 186.612 38.3368 186.85 38.6428C187.088 38.9375 187.207 39.3568 187.207 39.9008C187.207 40.3428 187.134 40.7281 186.986 41.0568C186.839 41.3968 186.652 41.6801 186.425 41.9068C186.21 42.1448 185.972 42.3318 185.711 42.4678C185.462 42.6151 185.23 42.7228 185.014 42.7908L184.589 42.1278C184.997 41.9691 185.349 41.7425 185.643 41.4478C185.938 41.1531 186.085 40.7961 186.085 40.3768C185.927 40.4108 185.802 40.4278 185.711 40.4278C185.383 40.4278 185.122 40.3371 184.929 40.1558C184.748 39.9631 184.657 39.6855 184.657 39.3228ZM247.955 42.6888C248.499 42.5755 249.038 42.3715 249.57 42.0768C250.114 41.7935 250.602 41.3911 251.032 40.8698C251.474 40.3598 251.826 39.7195 252.086 38.9488C252.358 38.1668 252.494 37.2261 252.494 36.1268C252.494 35.0388 252.381 34.1151 252.154 33.3558C251.939 32.5851 251.627 31.9448 251.219 31.4348C250.823 30.9135 250.347 30.4998 249.791 30.1938C249.236 29.8765 248.624 29.6215 247.955 29.4288L248.38 28.3578C249.117 28.5165 249.814 28.7885 250.471 29.1738C251.14 29.5478 251.724 30.0521 252.222 30.6868C252.721 31.3101 253.118 32.0751 253.412 32.9818C253.707 33.8771 253.854 34.9255 253.854 36.1268C253.854 37.3395 253.707 38.3878 253.412 39.2718C253.129 40.1558 252.738 40.9038 252.239 41.5158C251.752 42.1278 251.174 42.6208 250.505 42.9948C249.848 43.3801 249.14 43.6691 248.38 43.8618L247.955 42.6888Z" fill="white"/>
+<path d="M137.999 28.3578H140.753V35.3958H141.688L145.037 31.7578H146.635L142.878 35.7868L145.972 39.1188H147.077V40.2578H145.326L141.688 36.4158H140.753V40.2578H139.444V29.4968H137.999V28.3578ZM157.377 39.1868C157.173 39.3681 156.93 39.5381 156.646 39.6968C156.374 39.8555 156.074 39.9915 155.745 40.1048C155.417 40.2181 155.071 40.3031 154.708 40.3598C154.357 40.4278 154 40.4618 153.637 40.4618C152.957 40.4618 152.357 40.3598 151.835 40.1558C151.314 39.9405 150.878 39.6401 150.526 39.2548C150.175 38.8581 149.909 38.3878 149.727 37.8438C149.546 37.2998 149.455 36.6878 149.455 36.0078C149.455 35.2938 149.552 34.6591 149.744 34.1038C149.948 33.5485 150.237 33.0838 150.611 32.7098C150.985 32.3358 151.439 32.0525 151.971 31.8598C152.504 31.6558 153.099 31.5538 153.756 31.5538C154.232 31.5538 154.703 31.6161 155.167 31.7408C155.632 31.8655 156.04 32.1035 156.391 32.4548C156.754 32.7948 157.032 33.2708 157.224 33.8828C157.417 34.4835 157.485 35.2655 157.428 36.2288H150.849C150.849 37.2488 151.121 38.0138 151.665 38.5238C152.221 39.0225 152.957 39.2718 153.875 39.2718C154.181 39.2718 154.482 39.2378 154.776 39.1698C155.082 39.0905 155.371 38.9998 155.643 38.8978C155.915 38.7958 156.153 38.6825 156.357 38.5578C156.573 38.4331 156.737 38.3198 156.85 38.2178L157.377 39.1868ZM153.79 32.6758C153.416 32.6758 153.059 32.7155 152.719 32.7948C152.391 32.8741 152.096 33.0101 151.835 33.2028C151.586 33.3841 151.376 33.6278 151.206 33.9338C151.048 34.2285 150.946 34.5968 150.9 35.0388H156.187C156.131 34.2908 155.887 33.7128 155.456 33.3048C155.037 32.8855 154.482 32.6758 153.79 32.6758ZM164.465 38.9488H165.111L167.219 31.7578H168.596L166.233 39.3908C166.108 39.7875 165.978 40.2351 165.842 40.7338C165.717 41.2438 165.536 41.7198 165.298 42.1618C165.06 42.6038 164.737 42.9778 164.329 43.2838C163.921 43.5898 163.388 43.7428 162.731 43.7428C162.583 43.7428 162.425 43.7258 162.255 43.6918C162.096 43.6578 161.937 43.6125 161.779 43.5558C161.62 43.5105 161.473 43.4538 161.337 43.3858C161.201 43.3178 161.099 43.2498 161.031 43.1818L161.507 41.9578C161.575 42.0145 161.665 42.0711 161.779 42.1278C161.903 42.1845 162.034 42.2298 162.17 42.2638C162.317 42.3091 162.459 42.3431 162.595 42.3658C162.731 42.3998 162.844 42.4168 162.935 42.4168C163.785 42.4168 164.363 41.6971 164.669 40.2578H163.53L159.96 31.7578H161.49L164.465 38.9488ZM172.13 39.0338H174.799V30.0918L172.079 31.9958L171.416 31.0268L175.156 28.3578H176.108V39.0338H178.726V40.2578H172.13V39.0338Z" fill="#279EFF"/>
+<path d="M207.485 38.6088H207.672L210.341 31.7578H211.82L208.233 40.2578H206.737L203.082 31.7578H204.646L207.485 38.6088ZM214.98 32.4208C215.468 32.1375 216.017 31.9335 216.629 31.8088C217.241 31.6841 217.842 31.6218 218.431 31.6218C219.009 31.6218 219.48 31.7125 219.842 31.8938C220.216 32.0751 220.505 32.3131 220.709 32.6078C220.925 32.8911 221.066 33.2198 221.134 33.5938C221.214 33.9565 221.253 34.3248 221.253 34.6988C221.253 35.1295 221.242 35.5885 221.219 36.0758C221.197 36.5631 221.18 37.0505 221.168 37.5378C221.168 38.1045 221.202 38.6428 221.27 39.1528H222.409V40.2578H220.148L219.995 38.9828H219.91C219.842 39.0848 219.74 39.2151 219.604 39.3738C219.468 39.5325 219.287 39.6911 219.06 39.8498C218.845 39.9971 218.579 40.1275 218.261 40.2408C217.944 40.3541 217.57 40.4108 217.139 40.4108C216.301 40.4108 215.638 40.1955 215.15 39.7648C214.663 39.3341 214.419 38.7448 214.419 37.9968C214.419 37.4188 214.544 36.9371 214.793 36.5518C215.054 36.1665 215.422 35.8718 215.898 35.6678C216.374 35.4638 216.947 35.3448 217.615 35.3108C218.295 35.2768 219.055 35.3221 219.893 35.4468C219.95 34.9255 219.956 34.4948 219.91 34.1548C219.876 33.8035 219.786 33.5258 219.638 33.3218C219.502 33.1178 219.304 32.9761 219.043 32.8968C218.794 32.8061 218.482 32.7608 218.108 32.7608C217.598 32.7608 217.111 32.8345 216.646 32.9818C216.182 33.1178 215.768 33.2595 215.405 33.4068L214.98 32.4208ZM217.479 39.2718C217.797 39.2718 218.091 39.2208 218.363 39.1188C218.635 39.0168 218.873 38.8865 219.077 38.7278C219.281 38.5691 219.451 38.3991 219.587 38.2178C219.723 38.0251 219.825 37.8438 219.893 37.6738V36.4838C219.304 36.3818 218.76 36.3308 218.261 36.3308C217.763 36.3308 217.332 36.3875 216.969 36.5008C216.607 36.6028 216.323 36.7671 216.119 36.9938C215.915 37.2205 215.813 37.5151 215.813 37.8778C215.813 38.2518 215.938 38.5805 216.187 38.8638C216.448 39.1358 216.879 39.2718 217.479 39.2718ZM225.961 28.3578H228.783V37.4018C228.783 38.0931 228.896 38.5805 229.123 38.8638C229.361 39.1471 229.706 39.2888 230.16 39.2888C230.477 39.2888 230.777 39.2321 231.061 39.1188C231.355 39.0055 231.678 38.8128 232.03 38.5408L232.642 39.4758C232.46 39.6345 232.262 39.7761 232.047 39.9008C231.831 40.0255 231.61 40.1331 231.384 40.2238C231.157 40.3031 230.93 40.3655 230.704 40.4108C230.477 40.4561 230.267 40.4788 230.075 40.4788C229.655 40.4788 229.281 40.4221 228.953 40.3088C228.624 40.2068 228.346 40.0368 228.12 39.7988C227.904 39.5608 227.74 39.2491 227.627 38.8638C227.513 38.4671 227.457 37.9798 227.457 37.4018V29.4968H225.961V28.3578ZM236.89 39.0338H239.559V30.0918L236.839 31.9958L236.176 31.0268L239.916 28.3578H240.868V39.0338H243.486V40.2578H236.89V39.0338Z" fill="#FFC700"/>
+<path d="M85.256 83.6742C85.256 83.5722 85.2504 83.4419 85.239 83.2832C85.239 83.1132 85.2334 82.9432 85.222 82.7732C85.2107 82.5919 85.1937 82.4162 85.171 82.2462C85.1597 82.0762 85.1427 81.9289 85.12 81.8042H83.981V80.6992H86.242L86.412 81.8892H86.497C86.803 81.4926 87.1884 81.1639 87.653 80.9032C88.129 80.6312 88.707 80.4952 89.387 80.4952C90.5997 80.4952 91.512 80.8296 92.124 81.4982C92.736 82.1669 93.042 83.2606 93.042 84.7792C93.042 85.4932 92.9344 86.1392 92.719 86.7172C92.515 87.2839 92.2204 87.7656 91.835 88.1622C91.4497 88.5589 90.985 88.8649 90.441 89.0802C89.897 89.2956 89.2964 89.4032 88.639 89.4032C88.401 89.4032 88.1857 89.3919 87.993 89.3692C87.8117 89.3579 87.6417 89.3352 87.483 89.3012C87.3357 89.2786 87.1884 89.2446 87.041 89.1992C86.8937 89.1539 86.735 89.0972 86.565 89.0292V92.5992H85.256V83.6742ZM89.166 81.7362C88.826 81.7362 88.503 81.7986 88.197 81.9232C87.9024 82.0479 87.636 82.2122 87.398 82.4162C87.1714 82.6202 86.9844 82.8469 86.837 83.0962C86.6897 83.3456 86.599 83.5949 86.565 83.8442V87.7202C86.8144 87.8902 87.092 88.0262 87.398 88.1282C87.7154 88.2189 88.129 88.2642 88.639 88.2642C89.5457 88.2642 90.271 87.9696 90.815 87.3802C91.359 86.7796 91.631 85.9069 91.631 84.7622C91.631 83.7989 91.4384 83.0566 91.053 82.5352C90.679 82.0026 90.05 81.7362 89.166 81.7362ZM100.588 80.6992H103.002V86.4962C103.002 87.0516 103.036 87.5842 103.104 88.0942H104.243V89.1992H101.982L101.931 87.7542H101.863C101.569 88.2416 101.178 88.6382 100.69 88.9442C100.203 89.2502 99.6137 89.4032 98.9224 89.4032C98.4011 89.4032 97.9534 89.3409 97.5794 89.2162C97.2167 89.1029 96.9164 88.8989 96.6784 88.6042C96.4404 88.3096 96.2647 87.9186 96.1514 87.4312C96.038 86.9326 95.9814 86.3149 95.9814 85.5782V81.8382H94.8424V80.6992H97.3074V85.3062C97.3074 85.7709 97.3244 86.1902 97.3584 86.5642C97.4037 86.9269 97.4887 87.2386 97.6134 87.4992C97.7381 87.7486 97.9194 87.9412 98.1574 88.0772C98.4067 88.2019 98.7354 88.2642 99.1434 88.2642C99.7327 88.2642 100.243 88.0716 100.673 87.6862C101.115 87.3009 101.45 86.8192 101.676 86.2412V81.8382H100.588V80.6992ZM105.738 80.6992H107.761V79.0162L109.087 78.6422V80.6992H113.626V81.8382H109.087V85.8502C109.087 86.6776 109.285 87.2896 109.682 87.6862C110.09 88.0829 110.668 88.2812 111.416 88.2812C111.926 88.2812 112.368 88.1849 112.742 87.9922C113.127 87.7996 113.473 87.5899 113.779 87.3632L114.221 88.3662C113.824 88.6836 113.348 88.9386 112.793 89.1312C112.249 89.3239 111.688 89.4202 111.11 89.4202C110.656 89.4202 110.226 89.3522 109.818 89.2162C109.421 89.0916 109.07 88.8932 108.764 88.6212C108.458 88.3492 108.214 88.0036 108.033 87.5842C107.851 87.1536 107.761 86.6436 107.761 86.0542V81.8382H105.738V80.6992ZM134.141 92.8032C133.382 92.6106 132.668 92.3216 131.999 91.9362C131.342 91.5622 130.764 91.0692 130.265 90.4572C129.778 89.8452 129.387 89.0972 129.092 88.2132C128.809 87.3292 128.667 86.2809 128.667 85.0682C128.667 83.8669 128.815 82.8186 129.109 81.9232C129.404 81.0166 129.801 80.2516 130.299 79.6282C130.798 78.9936 131.376 78.4892 132.033 78.1152C132.702 77.7299 133.405 77.4579 134.141 77.2992L134.566 78.3702C133.898 78.5629 133.286 78.8179 132.73 79.1352C132.175 79.4412 131.693 79.8549 131.285 80.3762C130.889 80.8862 130.577 81.5266 130.35 82.2972C130.135 83.0566 130.027 83.9802 130.027 85.0682C130.027 86.1676 130.158 87.1082 130.418 87.8902C130.69 88.6609 131.042 89.3012 131.472 89.8112C131.914 90.3326 132.402 90.7349 132.934 91.0182C133.478 91.3129 134.022 91.5169 134.566 91.6302L134.141 92.8032ZM184.657 88.2642C184.657 87.9242 184.765 87.6522 184.98 87.4482C185.207 87.2329 185.496 87.1252 185.847 87.1252C186.278 87.1252 186.612 87.2782 186.85 87.5842C187.088 87.8789 187.207 88.2982 187.207 88.8422C187.207 89.2842 187.134 89.6696 186.986 89.9982C186.839 90.3382 186.652 90.6216 186.425 90.8482C186.21 91.0862 185.972 91.2732 185.711 91.4092C185.462 91.5566 185.23 91.6642 185.014 91.7322L184.589 91.0692C184.997 90.9106 185.349 90.6839 185.643 90.3892C185.938 90.0946 186.085 89.7376 186.085 89.3182C185.927 89.3522 185.802 89.3692 185.711 89.3692C185.383 89.3692 185.122 89.2786 184.929 89.0972C184.748 88.9046 184.657 88.6269 184.657 88.2642ZM237.162 91.6302C237.706 91.5169 238.244 91.3129 238.777 91.0182C239.321 90.7349 239.808 90.3326 240.239 89.8112C240.681 89.3012 241.032 88.6609 241.293 87.8902C241.565 87.1082 241.701 86.1676 241.701 85.0682C241.701 83.9802 241.588 83.0566 241.361 82.2972C241.146 81.5266 240.834 80.8862 240.426 80.3762C240.029 79.8549 239.553 79.4412 238.998 79.1352C238.443 78.8179 237.831 78.5629 237.162 78.3702L237.587 77.2992C238.324 77.4579 239.021 77.7299 239.678 78.1152C240.347 78.4892 240.93 78.9936 241.429 79.6282C241.928 80.2516 242.324 81.0166 242.619 81.9232C242.914 82.8186 243.061 83.8669 243.061 85.0682C243.061 86.2809 242.914 87.3292 242.619 88.2132C242.336 89.0972 241.945 89.8452 241.446 90.4572C240.959 91.0692 240.381 91.5622 239.712 91.9362C239.055 92.3216 238.346 92.6106 237.587 92.8032L237.162 91.6302Z" fill="white"/>
+<path d="M137.999 77.2992H140.753V84.3372H141.688L145.037 80.6992H146.635L142.878 84.7282L145.972 88.0602H147.077V89.1992H145.326L141.688 85.3572H140.753V89.1992H139.444V78.4382H137.999V77.2992ZM157.377 88.1282C157.173 88.3096 156.93 88.4796 156.646 88.6382C156.374 88.7969 156.074 88.9329 155.745 89.0462C155.417 89.1596 155.071 89.2446 154.708 89.3012C154.357 89.3692 154 89.4032 153.637 89.4032C152.957 89.4032 152.357 89.3012 151.835 89.0972C151.314 88.8819 150.878 88.5816 150.526 88.1962C150.175 87.7996 149.909 87.3292 149.727 86.7852C149.546 86.2412 149.455 85.6292 149.455 84.9492C149.455 84.2352 149.552 83.6006 149.744 83.0452C149.948 82.4899 150.237 82.0252 150.611 81.6512C150.985 81.2772 151.439 80.9939 151.971 80.8012C152.504 80.5972 153.099 80.4952 153.756 80.4952C154.232 80.4952 154.703 80.5576 155.167 80.6822C155.632 80.8069 156.04 81.0449 156.391 81.3962C156.754 81.7362 157.032 82.2122 157.224 82.8242C157.417 83.4249 157.485 84.2069 157.428 85.1702H150.849C150.849 86.1902 151.121 86.9552 151.665 87.4652C152.221 87.9639 152.957 88.2132 153.875 88.2132C154.181 88.2132 154.482 88.1792 154.776 88.1112C155.082 88.0319 155.371 87.9412 155.643 87.8392C155.915 87.7372 156.153 87.6239 156.357 87.4992C156.573 87.3746 156.737 87.2612 156.85 87.1592L157.377 88.1282ZM153.79 81.6172C153.416 81.6172 153.059 81.6569 152.719 81.7362C152.391 81.8156 152.096 81.9516 151.835 82.1442C151.586 82.3256 151.376 82.5692 151.206 82.8752C151.048 83.1699 150.946 83.5382 150.9 83.9802H156.187C156.131 83.2322 155.887 82.6542 155.456 82.2462C155.037 81.8269 154.482 81.6172 153.79 81.6172ZM164.465 87.8902H165.111L167.219 80.6992H168.596L166.233 88.3322C166.108 88.7289 165.978 89.1766 165.842 89.6752C165.717 90.1852 165.536 90.6612 165.298 91.1032C165.06 91.5452 164.737 91.9192 164.329 92.2252C163.921 92.5312 163.388 92.6842 162.731 92.6842C162.583 92.6842 162.425 92.6672 162.255 92.6332C162.096 92.5992 161.937 92.5539 161.779 92.4972C161.62 92.4519 161.473 92.3952 161.337 92.3272C161.201 92.2592 161.099 92.1912 161.031 92.1232L161.507 90.8992C161.575 90.9559 161.665 91.0126 161.779 91.0692C161.903 91.1259 162.034 91.1712 162.17 91.2052C162.317 91.2506 162.459 91.2846 162.595 91.3072C162.731 91.3412 162.844 91.3582 162.935 91.3582C163.785 91.3582 164.363 90.6386 164.669 89.1992H163.53L159.96 80.6992H161.49L164.465 87.8902ZM172.13 87.9752H174.799V79.0332L172.079 80.9372L171.416 79.9682L175.156 77.2992H176.108V87.9752H178.726V89.1992H172.13V87.9752Z" fill="#279EFF"/>
+<path d="M196.692 87.5502H196.879L199.548 80.6992H201.027L197.44 89.1992H195.944L192.289 80.6992H193.853L196.692 87.5502ZM204.187 81.3622C204.674 81.0789 205.224 80.8749 205.836 80.7502C206.448 80.6256 207.049 80.5632 207.638 80.5632C208.216 80.5632 208.686 80.6539 209.049 80.8352C209.423 81.0166 209.712 81.2546 209.916 81.5492C210.131 81.8326 210.273 82.1612 210.341 82.5352C210.42 82.8979 210.46 83.2662 210.46 83.6402C210.46 84.0709 210.449 84.5299 210.426 85.0172C210.403 85.5046 210.386 85.9919 210.375 86.4792C210.375 87.0459 210.409 87.5842 210.477 88.0942H211.616V89.1992H209.355L209.202 87.9242H209.117C209.049 88.0262 208.947 88.1566 208.811 88.3152C208.675 88.4739 208.494 88.6326 208.267 88.7912C208.052 88.9386 207.785 89.0689 207.468 89.1822C207.151 89.2956 206.777 89.3522 206.346 89.3522C205.507 89.3522 204.844 89.1369 204.357 88.7062C203.87 88.2756 203.626 87.6862 203.626 86.9382C203.626 86.3602 203.751 85.8786 204 85.4932C204.261 85.1079 204.629 84.8132 205.105 84.6092C205.581 84.4052 206.153 84.2862 206.822 84.2522C207.502 84.2182 208.261 84.2636 209.1 84.3882C209.157 83.8669 209.162 83.4362 209.117 83.0962C209.083 82.7449 208.992 82.4672 208.845 82.2632C208.709 82.0592 208.511 81.9176 208.25 81.8382C208.001 81.7476 207.689 81.7022 207.315 81.7022C206.805 81.7022 206.318 81.7759 205.853 81.9232C205.388 82.0592 204.975 82.2009 204.612 82.3482L204.187 81.3622ZM206.686 88.2132C207.003 88.2132 207.298 88.1622 207.57 88.0602C207.842 87.9582 208.08 87.8279 208.284 87.6692C208.488 87.5106 208.658 87.3406 208.794 87.1592C208.93 86.9666 209.032 86.7852 209.1 86.6152V85.4252C208.511 85.3232 207.967 85.2722 207.468 85.2722C206.969 85.2722 206.539 85.3289 206.176 85.4422C205.813 85.5442 205.53 85.7086 205.326 85.9352C205.122 86.1619 205.02 86.4566 205.02 86.8192C205.02 87.1932 205.145 87.5219 205.394 87.8052C205.655 88.0772 206.085 88.2132 206.686 88.2132ZM215.167 77.2992H217.989V86.3432C217.989 87.0346 218.103 87.5219 218.329 87.8052C218.567 88.0886 218.913 88.2302 219.366 88.2302C219.684 88.2302 219.984 88.1736 220.267 88.0602C220.562 87.9469 220.885 87.7542 221.236 87.4822L221.848 88.4172C221.667 88.5759 221.469 88.7176 221.253 88.8422C221.038 88.9669 220.817 89.0746 220.59 89.1652C220.364 89.2446 220.137 89.3069 219.91 89.3522C219.684 89.3976 219.474 89.4202 219.281 89.4202C218.862 89.4202 218.488 89.3636 218.159 89.2502C217.831 89.1482 217.553 88.9782 217.326 88.7402C217.111 88.5022 216.947 88.1906 216.833 87.8052C216.72 87.4086 216.663 86.9212 216.663 86.3432V78.4382H215.167V77.2992ZM232.438 80.3082C232.438 81.3509 231.945 82.5126 230.959 83.7932C229.973 85.0739 228.596 86.4679 226.828 87.9752H232.812V89.1992H225.264V87.9752C225.479 87.7712 225.774 87.5049 226.148 87.1762C226.522 86.8476 226.924 86.4849 227.355 86.0882C227.785 85.6802 228.222 85.2439 228.664 84.7792C229.117 84.3146 229.525 83.8386 229.888 83.3512C230.25 82.8639 230.545 82.3766 230.772 81.8892C230.998 81.4019 231.112 80.9316 231.112 80.4782C231.112 79.7982 230.93 79.2656 230.568 78.8802C230.216 78.4836 229.684 78.2852 228.97 78.2852C228.358 78.2852 227.842 78.3532 227.423 78.4892C227.003 78.6252 226.624 78.8236 226.284 79.0842L225.706 78.1492C226.216 77.7866 226.754 77.5202 227.321 77.3502C227.899 77.1802 228.528 77.0952 229.208 77.0952C230.273 77.0952 231.078 77.3842 231.622 77.9622C232.166 78.5402 232.438 79.3222 232.438 80.3082Z" fill="#FFC700"/>
+<path d="M62.098 36.7071C62.4885 36.3166 62.4885 35.6834 62.098 35.2929L55.734 28.9289C55.3435 28.5384 54.7103 28.5384 54.3198 28.9289C53.9293 29.3195 53.9293 29.9526 54.3198 30.3431L59.9766 36L54.3198 41.6569C53.9293 42.0474 53.9293 42.6805 54.3198 43.0711C54.7103 43.4616 55.3435 43.4616 55.734 43.0711L62.098 36.7071ZM61.3908 35L12 35L12 37L61.3908 37L61.3908 35ZM1.0296e-05 47L9.65994e-06 262L2.00001 262L2.00001 47L1.0296e-05 47ZM12 274L74 274L74 272L12 272L12 274ZM9.65994e-06 262C9.60867e-06 268.627 5.37261 274 12 274L12 272C6.47717 272 2.00001 267.523 2.00001 262L9.65994e-06 262ZM12 35C5.37259 35 1.03473e-05 40.3726 1.0296e-05 47L2.00001 47C2.00001 41.4772 6.47716 37 12 37L12 35Z" fill="#2D2D2D"/>
+<path d="M279.459 86.7071C279.068 86.3166 279.068 85.6834 279.459 85.2929L285.823 78.9289C286.213 78.5384 286.846 78.5384 287.237 78.9289C287.627 79.3195 287.627 79.9526 287.237 80.3431L281.58 86L287.237 91.6568C287.627 92.0474 287.627 92.6805 287.237 93.0711C286.846 93.4616 286.213 93.4616 285.823 93.0711L279.459 86.7071ZM280.166 85L345 85L345 87L280.166 87L280.166 85ZM357 97L357 327L355 327L355 97L357 97ZM345 339L274 339L274 337L345 337L345 339ZM357 327C357 333.627 351.627 339 345 339L345 337C350.523 337 355 332.523 355 327L357 327ZM345 85C351.627 85 357 90.3726 357 97L355 97C355 91.4771 350.523 87 345 87L345 85Z" fill="#2D2D2D"/>
+<path d="M109.231 141.049L134.213 147.66L134.213 111.731L109.231 105.12L84.688 112.759L84.688 148.539L109.231 141.049Z" fill="white" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M109.67 119.644L84.688 113.033L84.688 156.845L109.67 163.456L134.213 155.817L134.213 112.154L109.67 119.644Z" fill="white" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M109.304 119.573L109.304 162.723" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M148.066 159.067L153.564 144.751H155.605L161.465 159.067H159.306L157.636 154.731H151.65L150.078 159.067H148.066ZM152.197 153.188H157.051L155.556 149.224C155.101 148.019 154.762 147.03 154.541 146.255C154.358 147.173 154.101 148.084 153.769 148.989L152.197 153.188ZM162.954 163.042V148.696H164.555V150.044C164.933 149.517 165.359 149.123 165.835 148.862C166.31 148.595 166.886 148.462 167.563 148.462C168.448 148.462 169.23 148.69 169.907 149.146C170.584 149.601 171.095 150.246 171.44 151.079C171.785 151.906 171.958 152.814 171.958 153.804C171.958 154.865 171.766 155.822 171.381 156.675C171.004 157.521 170.45 158.172 169.721 158.628C168.999 159.077 168.237 159.302 167.436 159.302C166.85 159.302 166.323 159.178 165.854 158.931C165.392 158.683 165.011 158.371 164.711 157.993V163.042H162.954ZM164.545 153.94C164.545 155.275 164.816 156.261 165.356 156.899C165.896 157.537 166.551 157.856 167.319 157.856C168.1 157.856 168.767 157.528 169.321 156.87C169.881 156.206 170.161 155.181 170.161 153.794C170.161 152.472 169.887 151.483 169.34 150.825C168.8 150.168 168.152 149.839 167.397 149.839C166.648 149.839 165.984 150.19 165.405 150.894C164.832 151.59 164.545 152.606 164.545 153.94ZM174.286 163.042V148.696H175.888V150.044C176.266 149.517 176.692 149.123 177.167 148.862C177.643 148.595 178.219 148.462 178.896 148.462C179.781 148.462 180.563 148.69 181.24 149.146C181.917 149.601 182.428 150.246 182.773 151.079C183.118 151.906 183.29 152.814 183.29 153.804C183.29 154.865 183.098 155.822 182.714 156.675C182.337 157.521 181.783 158.172 181.054 158.628C180.331 159.077 179.57 159.302 178.769 159.302C178.183 159.302 177.656 159.178 177.187 158.931C176.725 158.683 176.344 158.371 176.044 157.993V163.042H174.286ZM175.878 153.94C175.878 155.275 176.148 156.261 176.689 156.899C177.229 157.537 177.883 157.856 178.652 157.856C179.433 157.856 180.1 157.528 180.654 156.87C181.214 156.206 181.494 155.181 181.494 153.794C181.494 152.472 181.22 151.483 180.673 150.825C180.133 150.168 179.485 149.839 178.73 149.839C177.981 149.839 177.317 150.19 176.738 150.894C176.165 151.59 175.878 152.606 175.878 153.94ZM185.58 159.067V144.751H187.338V159.067H185.58ZM190.282 146.772V144.751H192.04V146.772H190.282ZM190.282 159.067V148.696H192.04V159.067H190.282ZM201.693 155.269L203.422 155.493C203.233 156.685 202.748 157.619 201.967 158.296C201.192 158.966 200.238 159.302 199.105 159.302C197.686 159.302 196.543 158.84 195.677 157.915C194.818 156.984 194.388 155.653 194.388 153.921C194.388 152.801 194.574 151.821 194.945 150.981C195.316 150.142 195.879 149.513 196.635 149.097C197.396 148.674 198.223 148.462 199.115 148.462C200.241 148.462 201.163 148.748 201.879 149.321C202.595 149.888 203.054 150.695 203.256 151.743L201.547 152.007C201.384 151.31 201.094 150.786 200.677 150.435C200.267 150.083 199.769 149.907 199.183 149.907C198.298 149.907 197.579 150.226 197.025 150.864C196.472 151.496 196.195 152.498 196.195 153.872C196.195 155.265 196.462 156.278 196.996 156.909C197.53 157.541 198.226 157.856 199.086 157.856C199.776 157.856 200.352 157.645 200.814 157.222C201.276 156.799 201.569 156.147 201.693 155.269ZM211.893 157.788C211.242 158.341 210.614 158.732 210.008 158.96C209.409 159.188 208.765 159.302 208.075 159.302C206.935 159.302 206.06 159.025 205.448 158.472C204.836 157.912 204.53 157.199 204.53 156.333C204.53 155.825 204.644 155.363 204.872 154.946C205.106 154.523 205.409 154.185 205.78 153.931C206.157 153.677 206.581 153.485 207.049 153.354C207.394 153.263 207.915 153.175 208.612 153.091C210.031 152.922 211.076 152.72 211.747 152.485C211.753 152.244 211.756 152.091 211.756 152.026C211.756 151.31 211.59 150.806 211.258 150.513C210.809 150.116 210.142 149.917 209.256 149.917C208.43 149.917 207.818 150.063 207.42 150.356C207.03 150.643 206.74 151.154 206.551 151.89L204.833 151.655C204.989 150.92 205.246 150.327 205.604 149.878C205.962 149.422 206.48 149.074 207.157 148.833C207.834 148.586 208.618 148.462 209.51 148.462C210.396 148.462 211.115 148.566 211.669 148.774C212.222 148.983 212.629 149.246 212.889 149.565C213.15 149.878 213.332 150.275 213.436 150.757C213.495 151.056 213.524 151.597 213.524 152.378V154.722C213.524 156.356 213.56 157.391 213.631 157.827C213.71 158.257 213.859 158.67 214.081 159.067H212.245C212.062 158.703 211.945 158.276 211.893 157.788ZM211.747 153.862C211.109 154.123 210.152 154.344 208.876 154.526C208.153 154.631 207.642 154.748 207.342 154.878C207.043 155.008 206.812 155.2 206.649 155.454C206.486 155.701 206.405 155.978 206.405 156.284C206.405 156.753 206.581 157.144 206.932 157.456C207.29 157.769 207.811 157.925 208.495 157.925C209.172 157.925 209.774 157.778 210.301 157.485C210.829 157.186 211.216 156.779 211.463 156.265C211.652 155.868 211.747 155.282 211.747 154.507V153.862ZM220.296 157.495L220.55 159.048C220.055 159.152 219.613 159.204 219.222 159.204C218.584 159.204 218.089 159.103 217.738 158.901C217.386 158.7 217.139 158.436 216.995 158.11C216.852 157.778 216.781 157.085 216.781 156.03V150.063H215.492V148.696H216.781V146.128L218.529 145.073V148.696H220.296V150.063H218.529V156.128C218.529 156.629 218.558 156.951 218.617 157.095C218.682 157.238 218.783 157.352 218.919 157.437C219.063 157.521 219.264 157.563 219.525 157.563C219.72 157.563 219.977 157.541 220.296 157.495ZM222.235 146.772V144.751H223.992V146.772H222.235ZM222.235 159.067V148.696H223.992V159.067H222.235ZM226.224 153.882C226.224 151.961 226.757 150.539 227.825 149.614C228.717 148.846 229.804 148.462 231.087 148.462C232.513 148.462 233.678 148.931 234.583 149.868C235.488 150.799 235.94 152.088 235.94 153.735C235.94 155.07 235.739 156.121 235.335 156.89C234.938 157.651 234.355 158.244 233.587 158.667C232.825 159.09 231.992 159.302 231.087 159.302C229.635 159.302 228.46 158.836 227.561 157.905C226.67 156.974 226.224 155.633 226.224 153.882ZM228.03 153.882C228.03 155.21 228.32 156.206 228.899 156.87C229.479 157.528 230.208 157.856 231.087 157.856C231.959 157.856 232.685 157.524 233.265 156.86C233.844 156.196 234.134 155.184 234.134 153.823C234.134 152.541 233.841 151.571 233.255 150.913C232.675 150.249 231.953 149.917 231.087 149.917C230.208 149.917 229.479 150.246 228.899 150.903C228.32 151.561 228.03 152.554 228.03 153.882ZM238.211 159.067V148.696H239.793V150.171C240.554 149.032 241.655 148.462 243.094 148.462C243.719 148.462 244.291 148.576 244.812 148.804C245.34 149.025 245.733 149.318 245.994 149.683C246.254 150.047 246.437 150.48 246.541 150.981C246.606 151.307 246.638 151.877 246.638 152.69V159.067H244.881V152.759C244.881 152.043 244.812 151.509 244.676 151.157C244.539 150.799 244.295 150.516 243.943 150.308C243.598 150.093 243.191 149.985 242.722 149.985C241.974 149.985 241.326 150.223 240.779 150.698C240.239 151.174 239.969 152.075 239.969 153.403V159.067H238.211Z" fill="#2D2D2D"/>
+<path d="M57.7819 311.767V251.32C57.7819 251.32 69.441 261.458 103.714 261.458C137.987 261.458 149.574 250.379 149.574 250.379V311.767C135.276 332.773 64.2899 326.496 57.7819 311.767Z" fill="#E0454C"/>
+<path d="M56.7819 354.458V291.826C56.7819 291.826 68.6388 303.941 102.912 303.941C137.185 303.941 148.574 291.826 148.574 291.826L149.543 354.458C134.968 372.745 65.6526 369.316 56.7819 354.458Z" fill="#0070CC"/>
+<path d="M149.652 247.504C149.652 249.118 148.627 250.831 146.352 252.544C144.094 254.244 140.757 255.818 136.53 257.157C128.088 259.833 116.32 261.504 103.152 261.504C89.9834 261.504 78.2154 259.833 69.7734 257.157C65.5466 255.818 62.2097 254.244 59.951 252.544C57.676 250.831 56.6516 249.118 56.6516 247.504C56.6516 245.89 57.676 244.177 59.951 242.464C62.2097 240.764 65.5466 239.19 69.7734 237.851C78.2154 235.175 89.9834 233.504 103.152 233.504C116.32 233.504 128.088 235.175 136.53 237.851C140.757 239.19 144.094 240.764 146.352 242.464C148.627 244.177 149.652 245.89 149.652 247.504Z" fill="#E0454C" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M56.6516 246.504L57.0022 353.767" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M149.652 246.504L149.652 354.504" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M149.74 352.947C149.74 360.903 128.98 367.353 103.371 367.353C77.7623 367.353 57.0022 360.903 57.0022 352.947" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M149.74 288.947C149.74 296.903 128.98 303.353 103.371 303.353C77.7623 303.353 57.0022 296.903 57.0022 288.947" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M68.8391 286.504V275.051H71.1204L73.8313 283.16C74.0813 283.915 74.2636 284.48 74.3782 284.855C74.5084 284.439 74.7115 283.827 74.9875 283.02L77.7297 275.051H79.7688V286.504H78.3079V276.918L74.9797 286.504H73.6125L70.3 276.754V286.504H68.8391ZM82.4454 286.504V275.051H90.7266V276.402H83.961V279.91H90.2969V281.254H83.961V285.152H90.9922V286.504H82.4454ZM93.2391 286.504V275.051H95.5204L98.2313 283.16C98.4813 283.915 98.6636 284.48 98.7782 284.855C98.9084 284.439 99.1115 283.827 99.3875 283.02L102.13 275.051H104.169V286.504H102.708V276.918L99.3797 286.504H98.0125L94.7 276.754V286.504H93.2391ZM106.353 280.926C106.353 279.025 106.864 277.538 107.884 276.465C108.905 275.387 110.223 274.848 111.838 274.848C112.895 274.848 113.848 275.1 114.697 275.605C115.546 276.111 116.192 276.816 116.634 277.723C117.082 278.624 117.306 279.647 117.306 280.793C117.306 281.954 117.072 282.993 116.603 283.91C116.134 284.827 115.47 285.522 114.611 285.996C113.752 286.465 112.825 286.699 111.83 286.699C110.752 286.699 109.788 286.439 108.939 285.918C108.09 285.397 107.447 284.686 107.009 283.785C106.572 282.884 106.353 281.931 106.353 280.926ZM107.916 280.949C107.916 282.329 108.285 283.418 109.025 284.215C109.77 285.007 110.702 285.402 111.822 285.402C112.963 285.402 113.9 285.001 114.634 284.199C115.374 283.397 115.744 282.259 115.744 280.785C115.744 279.853 115.585 279.04 115.267 278.348C114.955 277.65 114.494 277.111 113.884 276.73C113.28 276.345 112.601 276.152 111.845 276.152C110.772 276.152 109.848 276.522 109.072 277.262C108.301 277.996 107.916 279.225 107.916 280.949ZM119.491 286.504V275.051H124.569C125.59 275.051 126.366 275.155 126.897 275.363C127.428 275.566 127.853 275.928 128.17 276.449C128.488 276.97 128.647 277.546 128.647 278.176C128.647 278.988 128.384 279.673 127.858 280.23C127.332 280.788 126.519 281.142 125.42 281.293C125.821 281.486 126.126 281.676 126.334 281.863C126.777 282.27 127.196 282.777 127.592 283.387L129.584 286.504H127.678L126.163 284.121C125.72 283.434 125.355 282.908 125.069 282.543C124.782 282.178 124.525 281.923 124.295 281.777C124.071 281.632 123.842 281.53 123.608 281.473C123.436 281.436 123.155 281.418 122.764 281.418H121.006V286.504H119.491ZM121.006 280.105H124.264C124.957 280.105 125.498 280.035 125.889 279.895C126.28 279.749 126.577 279.52 126.78 279.207C126.983 278.889 127.084 278.546 127.084 278.176C127.084 277.634 126.887 277.189 126.491 276.84C126.1 276.491 125.48 276.316 124.631 276.316H121.006V280.105ZM134.159 286.504V281.652L129.745 275.051H131.589L133.847 278.504C134.264 279.15 134.652 279.796 135.011 280.441C135.355 279.842 135.771 279.168 136.261 278.418L138.48 275.051H140.245L135.675 281.652V286.504H134.159Z" fill="white"/>
+<path d="M84.886 349.504V338.051H88.8313C89.7219 338.051 90.4016 338.105 90.8704 338.215C91.5266 338.366 92.0865 338.639 92.55 339.035C93.1542 339.546 93.6047 340.199 93.9016 340.996C94.2037 341.788 94.3547 342.694 94.3547 343.715C94.3547 344.585 94.2532 345.355 94.05 346.027C93.8469 346.699 93.5865 347.257 93.2688 347.699C92.9511 348.137 92.6021 348.483 92.2219 348.738C91.8469 348.988 91.3912 349.178 90.8547 349.309C90.3235 349.439 89.7115 349.504 89.0188 349.504H84.886ZM86.4016 348.152H88.8469C89.6021 348.152 90.1933 348.082 90.6204 347.941C91.0527 347.801 91.3964 347.603 91.6516 347.348C92.011 346.988 92.2896 346.507 92.4875 345.902C92.6907 345.293 92.7922 344.556 92.7922 343.691C92.7922 342.493 92.5943 341.574 92.1985 340.934C91.8079 340.288 91.3313 339.855 90.7688 339.637C90.3625 339.48 89.7089 339.402 88.8079 339.402H86.4016V348.152ZM96.9063 349.504V338.051H98.4219V349.504H96.9063ZM100.786 345.824L102.216 345.699C102.283 346.272 102.44 346.743 102.684 347.113C102.934 347.478 103.32 347.775 103.841 348.004C104.362 348.228 104.947 348.34 105.598 348.34C106.177 348.34 106.687 348.254 107.13 348.082C107.572 347.91 107.901 347.676 108.114 347.379C108.333 347.077 108.442 346.749 108.442 346.395C108.442 346.035 108.338 345.723 108.13 345.457C107.921 345.186 107.578 344.96 107.098 344.777C106.791 344.658 106.112 344.473 105.059 344.223C104.007 343.967 103.27 343.728 102.848 343.504C102.302 343.217 101.893 342.863 101.622 342.441C101.356 342.014 101.223 341.538 101.223 341.012C101.223 340.434 101.388 339.895 101.716 339.395C102.044 338.889 102.523 338.507 103.153 338.246C103.783 337.986 104.484 337.855 105.255 337.855C106.104 337.855 106.851 337.993 107.497 338.27C108.148 338.54 108.648 338.941 108.997 339.473C109.346 340.004 109.533 340.605 109.559 341.277L108.106 341.387C108.028 340.663 107.763 340.116 107.309 339.746C106.862 339.376 106.197 339.191 105.317 339.191C104.401 339.191 103.731 339.361 103.309 339.699C102.893 340.033 102.684 340.436 102.684 340.91C102.684 341.322 102.833 341.66 103.13 341.926C103.421 342.191 104.182 342.465 105.411 342.746C106.645 343.022 107.492 343.264 107.95 343.473C108.617 343.78 109.109 344.171 109.427 344.645C109.744 345.113 109.903 345.655 109.903 346.27C109.903 346.879 109.729 347.454 109.38 347.996C109.031 348.533 108.528 348.952 107.872 349.254C107.221 349.551 106.487 349.699 105.669 349.699C104.632 349.699 103.763 349.548 103.059 349.246C102.362 348.944 101.812 348.491 101.411 347.887C101.015 347.277 100.807 346.59 100.786 345.824ZM112.111 349.504V338.051H113.627V343.73L119.314 338.051H121.369L116.564 342.691L121.58 349.504H119.58L115.502 343.707L113.627 345.535V349.504H112.111Z" fill="white"/>
+<path d="M217.124 311.767V251.32C217.124 251.32 228.783 261.458 263.056 261.458C297.329 261.458 308.916 250.379 308.916 250.379V311.767C294.618 332.773 223.632 326.496 217.124 311.767Z" fill="#E0454C"/>
+<path d="M216.124 354.458V291.826C216.124 291.826 227.981 303.941 262.254 303.941C296.527 303.941 307.916 291.826 307.916 291.826L308.885 354.458C294.31 372.745 224.994 369.316 216.124 354.458Z" fill="#0070CC"/>
+<path d="M308.993 247.504C308.993 249.118 307.969 250.831 305.694 252.544C303.435 254.244 300.098 255.818 295.872 257.157C287.43 259.833 275.662 261.504 262.493 261.504C249.325 261.504 237.557 259.833 229.115 257.157C224.888 255.818 221.552 254.244 219.293 252.544C217.018 250.831 215.993 249.118 215.993 247.504C215.993 245.89 217.018 244.177 219.293 242.464C221.552 240.764 224.888 239.19 229.115 237.851C237.557 235.175 249.325 233.504 262.493 233.504C275.662 233.504 287.43 235.175 295.872 237.851C300.098 239.19 303.435 240.764 305.694 242.464C307.969 244.177 308.993 245.89 308.993 247.504Z" fill="#E0454C" stroke="black" stroke-width="2"/>
+<path d="M215.993 246.504L216.344 353.767" stroke="black" stroke-width="2"/>
+<path d="M308.993 246.504L308.993 354.504" stroke="black" stroke-width="2"/>
+<path d="M309.082 352.947C309.082 360.903 288.322 367.353 262.713 367.353C237.104 367.353 216.344 360.903 216.344 352.947" stroke="black" stroke-width="2"/>
+<path d="M309.082 288.947C309.082 296.903 288.322 303.353 262.713 303.353C237.104 303.353 216.344 296.903 216.344 288.947" stroke="black" stroke-width="2"/>
+<path d="M228.181 286.504V275.051H230.462L233.173 283.16C233.423 283.915 233.605 284.48 233.72 284.855C233.85 284.439 234.053 283.827 234.329 283.02L237.072 275.051H239.111V286.504H237.65V276.918L234.322 286.504H232.954L229.642 276.754V286.504H228.181ZM241.787 286.504V275.051H250.068V276.402H243.303V279.91H249.639V281.254H243.303V285.152H250.334V286.504H241.787ZM252.581 286.504V275.051H254.862L257.573 283.16C257.823 283.915 258.005 284.48 258.12 284.855C258.25 284.439 258.453 283.827 258.729 283.02L261.472 275.051H263.511V286.504H262.05V276.918L258.722 286.504H257.354L254.042 276.754V286.504H252.581ZM265.695 280.926C265.695 279.025 266.205 277.538 267.226 276.465C268.247 275.387 269.565 274.848 271.179 274.848C272.237 274.848 273.19 275.1 274.039 275.605C274.888 276.111 275.534 276.816 275.976 277.723C276.424 278.624 276.648 279.647 276.648 280.793C276.648 281.954 276.414 282.993 275.945 283.91C275.476 284.827 274.812 285.522 273.953 285.996C273.093 286.465 272.166 286.699 271.172 286.699C270.093 286.699 269.13 286.439 268.281 285.918C267.432 285.397 266.789 284.686 266.351 283.785C265.914 282.884 265.695 281.931 265.695 280.926ZM267.257 280.949C267.257 282.329 267.627 283.418 268.367 284.215C269.112 285.007 270.044 285.402 271.164 285.402C272.304 285.402 273.242 285.001 273.976 284.199C274.716 283.397 275.086 282.259 275.086 280.785C275.086 279.853 274.927 279.04 274.609 278.348C274.297 277.65 273.836 277.111 273.226 276.73C272.622 276.345 271.942 276.152 271.187 276.152C270.114 276.152 269.19 276.522 268.414 277.262C267.643 277.996 267.257 279.225 267.257 280.949ZM278.832 286.504V275.051H283.911C284.931 275.051 285.707 275.155 286.239 275.363C286.77 275.566 287.194 275.928 287.512 276.449C287.83 276.97 287.989 277.546 287.989 278.176C287.989 278.988 287.726 279.673 287.2 280.23C286.674 280.788 285.861 281.142 284.762 281.293C285.163 281.486 285.468 281.676 285.676 281.863C286.119 282.27 286.538 282.777 286.934 283.387L288.926 286.504H287.02L285.504 284.121C285.062 283.434 284.697 282.908 284.411 282.543C284.124 282.178 283.866 281.923 283.637 281.777C283.413 281.632 283.184 281.53 282.95 281.473C282.778 281.436 282.497 281.418 282.106 281.418H280.348V286.504H278.832ZM280.348 280.105H283.606C284.299 280.105 284.84 280.035 285.231 279.895C285.622 279.749 285.918 279.52 286.122 279.207C286.325 278.889 286.426 278.546 286.426 278.176C286.426 277.634 286.228 277.189 285.832 276.84C285.442 276.491 284.822 276.316 283.973 276.316H280.348V280.105ZM293.501 286.504V281.652L289.087 275.051H290.931L293.189 278.504C293.605 279.15 293.993 279.796 294.353 280.441C294.697 279.842 295.113 279.168 295.603 278.418L297.822 275.051H299.587L295.017 281.652V286.504H293.501Z" fill="white"/>
+<path d="M244.228 349.504V338.051H248.173C249.064 338.051 249.743 338.105 250.212 338.215C250.868 338.366 251.428 338.639 251.892 339.035C252.496 339.546 252.947 340.199 253.243 340.996C253.545 341.788 253.697 342.694 253.697 343.715C253.697 344.585 253.595 345.355 253.392 346.027C253.189 346.699 252.928 347.257 252.611 347.699C252.293 348.137 251.944 348.483 251.564 348.738C251.189 348.988 250.733 349.178 250.197 349.309C249.665 349.439 249.053 349.504 248.361 349.504H244.228ZM245.743 348.152H248.189C248.944 348.152 249.535 348.082 249.962 347.941C250.394 347.801 250.738 347.603 250.993 347.348C251.353 346.988 251.631 346.507 251.829 345.902C252.032 345.293 252.134 344.556 252.134 343.691C252.134 342.493 251.936 341.574 251.54 340.934C251.15 340.288 250.673 339.855 250.111 339.637C249.704 339.48 249.051 339.402 248.15 339.402H245.743V348.152ZM256.248 349.504V338.051H257.764V349.504H256.248ZM260.128 345.824L261.557 345.699C261.625 346.272 261.781 346.743 262.026 347.113C262.276 347.478 262.662 347.775 263.182 348.004C263.703 348.228 264.289 348.34 264.94 348.34C265.518 348.34 266.029 348.254 266.472 348.082C266.914 347.91 267.242 347.676 267.456 347.379C267.675 347.077 267.784 346.749 267.784 346.395C267.784 346.035 267.68 345.723 267.472 345.457C267.263 345.186 266.919 344.96 266.44 344.777C266.133 344.658 265.453 344.473 264.401 344.223C263.349 343.967 262.612 343.728 262.19 343.504C261.643 343.217 261.235 342.863 260.964 342.441C260.698 342.014 260.565 341.538 260.565 341.012C260.565 340.434 260.729 339.895 261.057 339.395C261.386 338.889 261.865 338.507 262.495 338.246C263.125 337.986 263.826 337.855 264.597 337.855C265.445 337.855 266.193 337.993 266.839 338.27C267.49 338.54 267.99 338.941 268.339 339.473C268.688 340.004 268.875 340.605 268.901 341.277L267.448 341.387C267.37 340.663 267.104 340.116 266.651 339.746C266.203 339.376 265.539 339.191 264.659 339.191C263.742 339.191 263.073 339.361 262.651 339.699C262.235 340.033 262.026 340.436 262.026 340.91C262.026 341.322 262.175 341.66 262.472 341.926C262.763 342.191 263.524 342.465 264.753 342.746C265.987 343.022 266.834 343.264 267.292 343.473C267.959 343.78 268.451 344.171 268.768 344.645C269.086 345.113 269.245 345.655 269.245 346.27C269.245 346.879 269.07 347.454 268.722 347.996C268.373 348.533 267.87 348.952 267.214 349.254C266.563 349.551 265.828 349.699 265.011 349.699C263.974 349.699 263.104 349.548 262.401 349.246C261.703 348.944 261.154 348.491 260.753 347.887C260.357 347.277 260.149 346.59 260.128 345.824ZM271.453 349.504V338.051H272.968V343.73L278.656 338.051H280.711L275.906 342.691L280.922 349.504H278.922L274.843 343.707L272.968 345.535V349.504H271.453Z" fill="white"/>
+<path d="M245.076 379.565C245.076 379.565 234.577 386.065 244.472 392.518C246.375 393.775 253.279 397.271 253.083 400.505C253.083 400.505 257.267 394.22 251.149 390.265C244.865 386.218 243.293 381.895 245.076 379.565Z" fill="#ED1C24"/>
+<path d="M241.42 391.982C241.42 391.982 237.674 397.746 245.046 398.926C245.771 399.018 251.104 399.586 252.494 401.364C252.494 401.364 252.373 398.298 248.022 396.489C243.686 394.68 241.904 394.235 241.42 391.982Z" fill="#ED1C24"/>
+<path d="M255.923 385.927C251.421 381.144 250.167 378.185 252.101 374.353C252.101 374.353 238.671 379.595 251.935 388.901C256.679 392.227 255.893 395.63 255.893 395.753C256.633 394.971 260.425 390.709 255.923 385.927Z" fill="#ED1C24"/>
+<path d="M263.37 397.458V386.005H264.925L270.941 394.997V386.005H272.394V397.458H270.839L264.823 388.458V397.458H263.37ZM274.687 391.88C274.687 389.979 275.198 388.492 276.219 387.419C277.24 386.341 278.557 385.802 280.172 385.802C281.229 385.802 282.182 386.054 283.031 386.56C283.88 387.065 284.526 387.771 284.969 388.677C285.417 389.578 285.641 390.601 285.641 391.747C285.641 392.909 285.406 393.948 284.937 394.864C284.469 395.781 283.805 396.476 282.945 396.95C282.086 397.419 281.159 397.653 280.164 397.653C279.086 397.653 278.122 397.393 277.273 396.872C276.424 396.351 275.781 395.64 275.344 394.739C274.906 393.838 274.687 392.885 274.687 391.88ZM276.25 391.903C276.25 393.284 276.62 394.372 277.359 395.169C278.104 395.961 279.036 396.356 280.156 396.356C281.297 396.356 282.234 395.955 282.969 395.153C283.708 394.351 284.078 393.213 284.078 391.739C284.078 390.807 283.919 389.994 283.602 389.302C283.289 388.604 282.828 388.065 282.219 387.685C281.615 387.299 280.935 387.106 280.18 387.106C279.107 387.106 278.182 387.476 277.406 388.216C276.635 388.95 276.25 390.179 276.25 391.903ZM287.802 397.458V386.005H291.747C292.637 386.005 293.317 386.06 293.786 386.169C294.442 386.32 295.002 386.593 295.466 386.989C296.07 387.5 296.52 388.153 296.817 388.95C297.119 389.742 297.27 390.648 297.27 391.669C297.27 392.539 297.169 393.31 296.966 393.981C296.762 394.653 296.502 395.211 296.184 395.653C295.867 396.091 295.518 396.437 295.137 396.692C294.762 396.942 294.307 397.132 293.77 397.263C293.239 397.393 292.627 397.458 291.934 397.458H287.802ZM289.317 396.106H291.762C292.518 396.106 293.109 396.036 293.536 395.896C293.968 395.755 294.312 395.557 294.567 395.302C294.927 394.942 295.205 394.461 295.403 393.856C295.606 393.247 295.708 392.51 295.708 391.646C295.708 390.448 295.51 389.528 295.114 388.888C294.723 388.242 294.247 387.81 293.684 387.591C293.278 387.435 292.624 387.356 291.723 387.356H289.317V396.106ZM299.595 397.458V386.005H307.877V387.356H301.111V390.864H307.447V392.208H301.111V396.106H308.142V397.458H299.595Z" fill="#2D2D2D"/>
+<path d="M61.0023 379.565C61.0023 379.565 50.503 386.065 60.398 392.518C62.3015 393.775 69.2054 397.271 69.009 400.505C69.009 400.505 73.1936 394.22 67.0753 390.265C60.7908 386.218 59.2197 381.895 61.0023 379.565Z" fill="#ED1C24"/>
+<path d="M57.3466 391.982C57.3466 391.982 53.6001 397.746 60.9723 398.926C61.6974 399.018 67.0302 399.586 68.42 401.364C68.42 401.364 68.2992 398.298 63.9484 396.489C59.6127 394.68 57.83 394.235 57.3466 391.982Z" fill="#ED1C24"/>
+<path d="M71.8495 385.927C67.3476 381.144 66.0938 378.185 68.0274 374.353C68.0274 374.353 54.5973 379.595 67.8613 388.901C72.6049 392.227 71.8193 395.63 71.8193 395.753C72.5595 394.971 76.3514 390.709 71.8495 385.927Z" fill="#ED1C24"/>
+<path d="M79.2966 397.458V386.005H80.8513L86.8669 394.997V386.005H88.32V397.458H86.7653L80.7497 388.458V397.458H79.2966ZM90.6138 391.88C90.6138 389.979 91.1242 388.492 92.145 387.419C93.1658 386.341 94.4835 385.802 96.0981 385.802C97.1554 385.802 98.1085 386.054 98.9575 386.56C99.8065 387.065 100.452 387.771 100.895 388.677C101.343 389.578 101.567 390.601 101.567 391.747C101.567 392.909 101.333 393.948 100.864 394.864C100.395 395.781 99.7309 396.476 98.8716 396.95C98.0122 397.419 97.0851 397.653 96.0903 397.653C95.0122 397.653 94.0487 397.393 93.1997 396.872C92.3507 396.351 91.7075 395.64 91.27 394.739C90.8325 393.838 90.6138 392.885 90.6138 391.88ZM92.1763 391.903C92.1763 393.284 92.546 394.372 93.2856 395.169C94.0304 395.961 94.9627 396.356 96.0825 396.356C97.2231 396.356 98.1606 395.955 98.895 395.153C99.6346 394.351 100.004 393.213 100.004 391.739C100.004 390.807 99.8455 389.994 99.5278 389.302C99.2153 388.604 98.7544 388.065 98.145 387.685C97.5408 387.299 96.8612 387.106 96.1059 387.106C95.033 387.106 94.1085 387.476 93.3325 388.216C92.5617 388.95 92.1763 390.179 92.1763 391.903ZM103.728 397.458V386.005H107.673C108.564 386.005 109.243 386.06 109.712 386.169C110.368 386.32 110.928 386.593 111.392 386.989C111.996 387.5 112.447 388.153 112.743 388.95C113.046 389.742 113.197 390.648 113.197 391.669C113.197 392.539 113.095 393.31 112.892 393.981C112.689 394.653 112.428 395.211 112.111 395.653C111.793 396.091 111.444 396.437 111.064 396.692C110.689 396.942 110.233 397.132 109.697 397.263C109.165 397.393 108.553 397.458 107.861 397.458H103.728ZM105.243 396.106H107.689C108.444 396.106 109.035 396.036 109.462 395.896C109.894 395.755 110.238 395.557 110.493 395.302C110.853 394.942 111.131 394.461 111.329 393.856C111.533 393.247 111.634 392.51 111.634 391.646C111.634 390.448 111.436 389.528 111.04 388.888C110.65 388.242 110.173 387.81 109.611 387.591C109.204 387.435 108.551 387.356 107.65 387.356H105.243V396.106ZM115.522 397.458V386.005H123.803V387.356H117.037V390.864H123.373V392.208H117.037V396.106H124.068V397.458H115.522Z" fill="#2D2D2D"/>
+<path d="M153.002 409.565C153.002 409.565 142.503 416.065 152.398 422.518C154.302 423.775 161.205 427.271 161.009 430.505C161.009 430.505 165.194 424.22 159.075 420.265C152.791 416.218 151.22 411.895 153.002 409.565Z" fill="#ED1C24"/>
+<path d="M149.347 421.982C149.347 421.982 145.6 427.746 152.972 428.926C153.697 429.018 159.03 429.586 160.42 431.364C160.42 431.364 160.299 428.298 155.948 426.489C151.613 424.68 149.83 424.235 149.347 421.982Z" fill="#ED1C24"/>
+<path d="M163.85 415.927C159.348 411.144 158.094 408.185 160.027 404.353C160.027 404.353 146.597 409.595 159.861 418.901C164.605 422.227 163.819 425.63 163.819 425.753C164.56 424.971 168.351 420.709 163.85 415.927Z" fill="#ED1C24"/>
+<path d="M171.297 427.458V416.005H172.851L178.867 424.997V416.005H180.32V427.458H178.765L172.75 418.458V427.458H171.297ZM182.614 421.88C182.614 419.979 183.124 418.492 184.145 417.419C185.166 416.341 186.484 415.802 188.098 415.802C189.155 415.802 190.109 416.054 190.958 416.56C191.806 417.065 192.452 417.771 192.895 418.677C193.343 419.578 193.567 420.601 193.567 421.747C193.567 422.909 193.333 423.948 192.864 424.864C192.395 425.781 191.731 426.476 190.872 426.95C190.012 427.419 189.085 427.653 188.09 427.653C187.012 427.653 186.049 427.393 185.2 426.872C184.351 426.351 183.708 425.64 183.27 424.739C182.833 423.838 182.614 422.885 182.614 421.88ZM184.176 421.903C184.176 423.284 184.546 424.372 185.286 425.169C186.03 425.961 186.963 426.356 188.083 426.356C189.223 426.356 190.161 425.955 190.895 425.153C191.635 424.351 192.004 423.213 192.004 421.739C192.004 420.807 191.846 419.994 191.528 419.302C191.215 418.604 190.754 418.065 190.145 417.685C189.541 417.299 188.861 417.106 188.106 417.106C187.033 417.106 186.109 417.476 185.333 418.216C184.562 418.95 184.176 420.179 184.176 421.903ZM195.728 427.458V416.005H199.673C200.564 416.005 201.243 416.06 201.712 416.169C202.368 416.32 202.928 416.593 203.392 416.989C203.996 417.5 204.447 418.153 204.743 418.95C205.046 419.742 205.197 420.648 205.197 421.669C205.197 422.539 205.095 423.31 204.892 423.981C204.689 424.653 204.428 425.211 204.111 425.653C203.793 426.091 203.444 426.437 203.064 426.692C202.689 426.942 202.233 427.132 201.697 427.263C201.165 427.393 200.553 427.458 199.861 427.458H195.728ZM197.243 426.106H199.689C200.444 426.106 201.035 426.036 201.462 425.896C201.894 425.755 202.238 425.557 202.493 425.302C202.853 424.942 203.131 424.461 203.329 423.856C203.533 423.247 203.634 422.51 203.634 421.646C203.634 420.448 203.436 419.528 203.04 418.888C202.65 418.242 202.173 417.81 201.611 417.591C201.204 417.435 200.551 417.356 199.65 417.356H197.243V426.106ZM207.522 427.458V416.005H215.803V417.356H209.037V420.864H215.373V422.208H209.037V426.106H216.068V427.458H207.522Z" fill="#2D2D2D"/>
+<path d="M137.453 346.166V285.719C137.453 285.719 149.112 295.856 183.385 295.856C217.658 295.856 229.245 284.778 229.245 284.778V346.166C214.947 367.172 143.961 360.894 137.453 346.166Z" fill="#E0454C"/>
+<path d="M136.453 388.857V326.224C136.453 326.224 148.31 338.339 182.583 338.339C216.856 338.339 228.245 326.224 228.245 326.224L229.214 388.857C214.639 407.143 145.323 403.715 136.453 388.857Z" fill="#0070CC"/>
+<path d="M229.323 281.902C229.323 283.516 228.298 285.23 226.023 286.942C223.764 288.642 220.428 290.216 216.201 291.556C207.759 294.231 195.991 295.902 182.823 295.902C169.654 295.902 157.886 294.231 149.444 291.556C145.217 290.216 141.881 288.642 139.622 286.942C137.347 285.23 136.323 283.516 136.323 281.902C136.323 280.288 137.347 278.575 139.622 276.863C141.881 275.163 145.217 273.589 149.444 272.249C157.886 269.573 169.654 267.902 182.823 267.902C195.991 267.902 207.759 269.573 216.201 272.249C220.428 273.589 223.764 275.163 226.023 276.863C228.298 278.575 229.323 280.288 229.323 281.902Z" fill="#E0454C" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M136.323 280.902L136.673 388.166" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M229.323 280.902L229.323 388.902" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M229.411 387.345C229.411 395.301 208.651 401.751 183.042 401.751C157.433 401.751 136.673 395.301 136.673 387.345" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M229.411 323.345C229.411 331.301 208.651 337.751 183.042 337.751C157.433 337.751 136.673 331.301 136.673 323.345" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M148.51 320.902V309.449H150.791L153.502 317.559C153.752 318.314 153.934 318.879 154.049 319.254C154.179 318.837 154.382 318.225 154.658 317.418L157.401 309.449H159.44V320.902H157.979V311.316L154.651 320.902H153.283L149.971 311.152V320.902H148.51ZM162.116 320.902V309.449H170.398V310.801H163.632V314.309H169.968V315.652H163.632V319.551H170.663V320.902H162.116ZM172.91 320.902V309.449H175.191L177.902 317.559C178.152 318.314 178.334 318.879 178.449 319.254C178.579 318.837 178.782 318.225 179.058 317.418L181.801 309.449H183.84V320.902H182.379V311.316L179.051 320.902H177.683L174.371 311.152V320.902H172.91ZM186.024 315.324C186.024 313.423 186.534 311.936 187.555 310.863C188.576 309.785 189.894 309.246 191.508 309.246C192.566 309.246 193.519 309.499 194.368 310.004C195.217 310.509 195.863 311.215 196.305 312.121C196.753 313.022 196.977 314.046 196.977 315.191C196.977 316.353 196.743 317.392 196.274 318.309C195.805 319.225 195.141 319.921 194.282 320.395C193.423 320.863 192.495 321.098 191.501 321.098C190.423 321.098 189.459 320.837 188.61 320.316C187.761 319.796 187.118 319.085 186.68 318.184C186.243 317.283 186.024 316.329 186.024 315.324ZM187.587 315.348C187.587 316.728 187.956 317.816 188.696 318.613C189.441 319.405 190.373 319.801 191.493 319.801C192.633 319.801 193.571 319.4 194.305 318.598C195.045 317.796 195.415 316.658 195.415 315.184C195.415 314.251 195.256 313.439 194.938 312.746C194.626 312.048 194.165 311.509 193.555 311.129C192.951 310.743 192.271 310.551 191.516 310.551C190.443 310.551 189.519 310.921 188.743 311.66C187.972 312.395 187.587 313.624 187.587 315.348ZM199.162 320.902V309.449H204.24C205.261 309.449 206.037 309.553 206.568 309.762C207.099 309.965 207.524 310.327 207.841 310.848C208.159 311.368 208.318 311.944 208.318 312.574C208.318 313.387 208.055 314.072 207.529 314.629C207.003 315.186 206.19 315.54 205.091 315.691C205.492 315.884 205.797 316.074 206.005 316.262C206.448 316.668 206.867 317.176 207.263 317.785L209.255 320.902H207.349L205.833 318.52C205.391 317.832 205.026 317.306 204.74 316.941C204.453 316.577 204.195 316.322 203.966 316.176C203.742 316.03 203.513 315.928 203.279 315.871C203.107 315.835 202.826 315.816 202.435 315.816H200.677V320.902H199.162ZM200.677 314.504H203.935C204.628 314.504 205.169 314.434 205.56 314.293C205.951 314.147 206.248 313.918 206.451 313.605C206.654 313.288 206.755 312.944 206.755 312.574C206.755 312.033 206.557 311.587 206.162 311.238C205.771 310.889 205.151 310.715 204.302 310.715H200.677V314.504ZM213.83 320.902V316.051L209.416 309.449H211.26L213.518 312.902C213.934 313.548 214.323 314.194 214.682 314.84C215.026 314.241 215.442 313.566 215.932 312.816L218.151 309.449H219.916L215.346 316.051V320.902H213.83Z" fill="white"/>
+<path d="M164.557 383.902V372.449H168.502C169.393 372.449 170.073 372.504 170.541 372.613C171.198 372.764 171.757 373.038 172.221 373.434C172.825 373.944 173.276 374.598 173.573 375.395C173.875 376.186 174.026 377.092 174.026 378.113C174.026 378.983 173.924 379.754 173.721 380.426C173.518 381.098 173.257 381.655 172.94 382.098C172.622 382.535 172.273 382.882 171.893 383.137C171.518 383.387 171.062 383.577 170.526 383.707C169.994 383.837 169.382 383.902 168.69 383.902H164.557ZM166.073 382.551H168.518C169.273 382.551 169.864 382.48 170.291 382.34C170.724 382.199 171.067 382.001 171.323 381.746C171.682 381.387 171.961 380.905 172.158 380.301C172.362 379.691 172.463 378.954 172.463 378.09C172.463 376.892 172.265 375.973 171.869 375.332C171.479 374.686 171.002 374.254 170.44 374.035C170.033 373.879 169.38 373.801 168.479 373.801H166.073V382.551ZM176.577 383.902V372.449H178.093V383.902H176.577ZM180.457 380.223L181.887 380.098C181.954 380.671 182.111 381.142 182.355 381.512C182.605 381.876 182.991 382.173 183.512 382.402C184.032 382.626 184.618 382.738 185.269 382.738C185.848 382.738 186.358 382.652 186.801 382.48C187.243 382.309 187.571 382.074 187.785 381.777C188.004 381.475 188.113 381.147 188.113 380.793C188.113 380.434 188.009 380.121 187.801 379.855C187.592 379.585 187.249 379.358 186.769 379.176C186.462 379.056 185.782 378.871 184.73 378.621C183.678 378.366 182.941 378.126 182.519 377.902C181.973 377.616 181.564 377.262 181.293 376.84C181.027 376.413 180.894 375.936 180.894 375.41C180.894 374.832 181.058 374.293 181.387 373.793C181.715 373.288 182.194 372.905 182.824 372.645C183.454 372.384 184.155 372.254 184.926 372.254C185.775 372.254 186.522 372.392 187.168 372.668C187.819 372.939 188.319 373.34 188.668 373.871C189.017 374.402 189.204 375.004 189.23 375.676L187.777 375.785C187.699 375.061 187.433 374.514 186.98 374.145C186.532 373.775 185.868 373.59 184.988 373.59C184.071 373.59 183.402 373.759 182.98 374.098C182.564 374.431 182.355 374.835 182.355 375.309C182.355 375.72 182.504 376.059 182.801 376.324C183.092 376.59 183.853 376.863 185.082 377.145C186.316 377.421 187.163 377.663 187.621 377.871C188.288 378.178 188.78 378.569 189.098 379.043C189.415 379.512 189.574 380.053 189.574 380.668C189.574 381.277 189.4 381.853 189.051 382.395C188.702 382.931 188.199 383.35 187.543 383.652C186.892 383.949 186.157 384.098 185.34 384.098C184.303 384.098 183.433 383.947 182.73 383.645C182.032 383.342 181.483 382.889 181.082 382.285C180.686 381.676 180.478 380.988 180.457 380.223ZM191.782 383.902V372.449H193.298V378.129L198.985 372.449H201.04L196.235 377.09L201.251 383.902H199.251L195.173 378.105L193.298 379.934V383.902H191.782Z" fill="white"/>
+<circle cx="55.3765" cy="272.504" r="6.41162" fill="#2D2D2D"/>
+<circle cx="308.885" cy="337.75" r="6.41162" fill="#2D2D2D"/>
+</svg>
diff --git a/public/img/features/machinelearning/image.svg b/public/img/features/machinelearning/image.svg
new file mode 100644
index 0000000..04f5f05
--- /dev/null
+++ b/public/img/features/machinelearning/image.svg
@@ -0,0 +1,53 @@
+<svg width="397" height="448" viewBox="0 0 397 448" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M149 61L67 61C60.9249 61 56 65.9249 56 72L56 178" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M81.7071 329.707C82.0976 329.317 82.0976 328.683 81.7071 328.293L75.3431 321.929C74.9526 321.538 74.3195 321.538 73.9289 321.929C73.5384 322.319 73.5384 322.953 73.9289 323.343L79.5858 329L73.9289 334.657C73.5384 335.047 73.5384 335.681 73.9289 336.071C74.3195 336.462 74.9526 336.462 75.3431 336.071L81.7071 329.707ZM55 203V319H57V203H55ZM66 330H81V328H66V330ZM55 319C55 325.075 59.9249 330 66 330V328C61.0294 328 57 323.971 57 319H55Z" fill="black"/>
+<path d="M211.115 65.4377L255 77.1102L255 13.6725L211.115 1.99997L168 15.4882L168 78.6625L211.115 65.4377Z" fill="white" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M211.885 27.6435L168 15.971L168 93.3275L211.885 105L255 91.5118L255 14.4187L211.885 27.6435Z" fill="white" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M211.243 27.5184L211.243 103.706" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M162.971 129L168.469 114.684H170.51L176.369 129H174.211L172.541 124.664H166.555L164.982 129H162.971ZM167.102 123.121H171.955L170.461 119.156C170.005 117.952 169.667 116.962 169.445 116.188C169.263 117.105 169.006 118.017 168.674 118.922L167.102 123.121ZM177.858 132.975V118.629H179.46V119.977C179.837 119.449 180.264 119.055 180.739 118.795C181.214 118.528 181.79 118.395 182.468 118.395C183.353 118.395 184.134 118.622 184.811 119.078C185.488 119.534 185.999 120.178 186.345 121.012C186.69 121.839 186.862 122.747 186.862 123.736C186.862 124.798 186.67 125.755 186.286 126.607C185.908 127.454 185.355 128.105 184.626 128.561C183.903 129.01 183.141 129.234 182.341 129.234C181.755 129.234 181.227 129.111 180.759 128.863C180.296 128.616 179.915 128.303 179.616 127.926V132.975H177.858ZM179.45 123.873C179.45 125.208 179.72 126.194 180.261 126.832C180.801 127.47 181.455 127.789 182.223 127.789C183.005 127.789 183.672 127.46 184.225 126.803C184.785 126.139 185.065 125.113 185.065 123.727C185.065 122.405 184.792 121.415 184.245 120.758C183.705 120.1 183.057 119.771 182.302 119.771C181.553 119.771 180.889 120.123 180.309 120.826C179.736 121.523 179.45 122.538 179.45 123.873ZM189.191 132.975V118.629H190.793V119.977C191.17 119.449 191.597 119.055 192.072 118.795C192.547 118.528 193.123 118.395 193.8 118.395C194.686 118.395 195.467 118.622 196.144 119.078C196.821 119.534 197.332 120.178 197.677 121.012C198.022 121.839 198.195 122.747 198.195 123.736C198.195 124.798 198.003 125.755 197.619 126.607C197.241 127.454 196.688 128.105 195.959 128.561C195.236 129.01 194.474 129.234 193.673 129.234C193.087 129.234 192.56 129.111 192.091 128.863C191.629 128.616 191.248 128.303 190.949 127.926V132.975H189.191ZM190.783 123.873C190.783 125.208 191.053 126.194 191.593 126.832C192.134 127.47 192.788 127.789 193.556 127.789C194.337 127.789 195.005 127.46 195.558 126.803C196.118 126.139 196.398 125.113 196.398 123.727C196.398 122.405 196.125 121.415 195.578 120.758C195.037 120.1 194.39 119.771 193.634 119.771C192.886 119.771 192.222 120.123 191.642 120.826C191.069 121.523 190.783 122.538 190.783 123.873ZM200.485 129V114.684H202.243V129H200.485ZM205.187 116.705V114.684H206.945V116.705H205.187ZM205.187 129V118.629H206.945V129H205.187ZM216.598 125.201L218.326 125.426C218.137 126.617 217.652 127.551 216.871 128.229C216.096 128.899 215.143 129.234 214.01 129.234C212.59 129.234 211.448 128.772 210.582 127.848C209.723 126.917 209.293 125.585 209.293 123.854C209.293 122.734 209.479 121.754 209.85 120.914C210.221 120.074 210.784 119.446 211.539 119.029C212.301 118.606 213.128 118.395 214.02 118.395C215.146 118.395 216.067 118.681 216.783 119.254C217.499 119.82 217.958 120.628 218.16 121.676L216.451 121.939C216.288 121.243 215.999 120.719 215.582 120.367C215.172 120.016 214.674 119.84 214.088 119.84C213.202 119.84 212.483 120.159 211.93 120.797C211.376 121.428 211.1 122.431 211.1 123.805C211.1 125.198 211.367 126.21 211.9 126.842C212.434 127.473 213.131 127.789 213.99 127.789C214.68 127.789 215.257 127.577 215.719 127.154C216.181 126.731 216.474 126.08 216.598 125.201ZM226.798 127.721C226.147 128.274 225.518 128.665 224.913 128.893C224.314 129.12 223.669 129.234 222.979 129.234C221.84 129.234 220.964 128.958 220.352 128.404C219.74 127.844 219.434 127.132 219.434 126.266C219.434 125.758 219.548 125.296 219.776 124.879C220.011 124.456 220.313 124.117 220.684 123.863C221.062 123.609 221.485 123.417 221.954 123.287C222.299 123.196 222.82 123.108 223.516 123.023C224.936 122.854 225.981 122.652 226.651 122.418C226.658 122.177 226.661 122.024 226.661 121.959C226.661 121.243 226.495 120.738 226.163 120.445C225.714 120.048 225.046 119.85 224.161 119.85C223.334 119.85 222.722 119.996 222.325 120.289C221.934 120.576 221.645 121.087 221.456 121.822L219.737 121.588C219.893 120.852 220.151 120.26 220.509 119.811C220.867 119.355 221.384 119.007 222.061 118.766C222.738 118.518 223.523 118.395 224.415 118.395C225.3 118.395 226.02 118.499 226.573 118.707C227.126 118.915 227.533 119.179 227.794 119.498C228.054 119.811 228.236 120.208 228.341 120.689C228.399 120.989 228.429 121.529 228.429 122.311V124.654C228.429 126.288 228.464 127.324 228.536 127.76C228.614 128.189 228.764 128.603 228.985 129H227.149C226.967 128.635 226.85 128.209 226.798 127.721ZM226.651 123.795C226.013 124.055 225.056 124.277 223.78 124.459C223.057 124.563 222.546 124.68 222.247 124.811C221.947 124.941 221.716 125.133 221.554 125.387C221.391 125.634 221.309 125.911 221.309 126.217C221.309 126.686 221.485 127.076 221.837 127.389C222.195 127.701 222.716 127.857 223.399 127.857C224.076 127.857 224.679 127.711 225.206 127.418C225.733 127.118 226.121 126.712 226.368 126.197C226.557 125.8 226.651 125.214 226.651 124.439V123.795ZM235.201 127.428L235.455 128.98C234.96 129.085 234.517 129.137 234.127 129.137C233.489 129.137 232.994 129.036 232.642 128.834C232.291 128.632 232.043 128.368 231.9 128.043C231.757 127.711 231.685 127.018 231.685 125.963V119.996H230.396V118.629H231.685V116.061L233.433 115.006V118.629H235.201V119.996H233.433V126.061C233.433 126.562 233.463 126.884 233.521 127.027C233.586 127.171 233.687 127.285 233.824 127.369C233.967 127.454 234.169 127.496 234.429 127.496C234.625 127.496 234.882 127.473 235.201 127.428ZM237.139 116.705V114.684H238.897V116.705H237.139ZM237.139 129V118.629H238.897V129H237.139ZM241.128 123.814C241.128 121.894 241.662 120.471 242.73 119.547C243.622 118.779 244.709 118.395 245.991 118.395C247.417 118.395 248.583 118.863 249.488 119.801C250.392 120.732 250.845 122.021 250.845 123.668C250.845 125.003 250.643 126.054 250.239 126.822C249.842 127.584 249.26 128.176 248.491 128.6C247.73 129.023 246.896 129.234 245.991 129.234C244.54 129.234 243.364 128.769 242.466 127.838C241.574 126.907 241.128 125.566 241.128 123.814ZM242.935 123.814C242.935 125.143 243.224 126.139 243.804 126.803C244.383 127.46 245.113 127.789 245.991 127.789C246.864 127.789 247.59 127.457 248.169 126.793C248.749 126.129 249.038 125.117 249.038 123.756C249.038 122.473 248.745 121.503 248.159 120.846C247.58 120.182 246.857 119.85 245.991 119.85C245.113 119.85 244.383 120.178 243.804 120.836C243.224 121.493 242.935 122.486 242.935 123.814ZM253.115 129V118.629H254.697V120.104C255.459 118.964 256.559 118.395 257.998 118.395C258.623 118.395 259.196 118.508 259.717 118.736C260.244 118.958 260.638 119.251 260.898 119.615C261.159 119.98 261.341 120.413 261.445 120.914C261.51 121.24 261.543 121.809 261.543 122.623V129H259.785V122.691C259.785 121.975 259.717 121.441 259.58 121.09C259.443 120.732 259.199 120.449 258.848 120.24C258.503 120.025 258.096 119.918 257.627 119.918C256.878 119.918 256.23 120.156 255.684 120.631C255.143 121.106 254.873 122.008 254.873 123.336V129H253.115Z" fill="#2D2D2D"/>
+<path d="M4.14844 196V185.898H0.375V184.547H9.45312V185.898H5.66406V196H4.14844ZM10.4266 196V187.703H11.6922V188.961C12.0151 188.372 12.312 187.984 12.5828 187.797C12.8589 187.609 13.1609 187.516 13.4891 187.516C13.963 187.516 14.4448 187.667 14.9344 187.969L14.45 189.273C14.1062 189.07 13.7625 188.969 13.4187 188.969C13.1115 188.969 12.8354 189.062 12.5906 189.25C12.3458 189.432 12.1714 189.688 12.0672 190.016C11.9109 190.516 11.8328 191.062 11.8328 191.656V196H10.4266ZM21.3844 194.977C20.8635 195.419 20.3609 195.732 19.8766 195.914C19.3974 196.096 18.8818 196.188 18.3297 196.188C17.4182 196.188 16.7177 195.966 16.2281 195.523C15.7385 195.076 15.4937 194.505 15.4937 193.812C15.4937 193.406 15.5849 193.036 15.7672 192.703C15.9547 192.365 16.1969 192.094 16.4937 191.891C16.7958 191.688 17.1344 191.534 17.5094 191.43C17.7854 191.357 18.2021 191.286 18.7594 191.219C19.8948 191.083 20.7307 190.922 21.2672 190.734C21.2724 190.542 21.275 190.419 21.275 190.367C21.275 189.794 21.1422 189.391 20.8766 189.156C20.5172 188.839 19.9833 188.68 19.275 188.68C18.6135 188.68 18.124 188.797 17.8062 189.031C17.4937 189.26 17.262 189.669 17.1109 190.258L15.7359 190.07C15.8609 189.482 16.0667 189.008 16.3531 188.648C16.6396 188.284 17.0536 188.005 17.5953 187.812C18.137 187.615 18.7646 187.516 19.4781 187.516C20.1865 187.516 20.762 187.599 21.2047 187.766C21.6474 187.932 21.9729 188.143 22.1812 188.398C22.3896 188.648 22.5354 188.966 22.6187 189.352C22.6656 189.591 22.6891 190.023 22.6891 190.648V192.523C22.6891 193.831 22.7177 194.659 22.775 195.008C22.8375 195.352 22.9573 195.682 23.1344 196H21.6656C21.5198 195.708 21.426 195.367 21.3844 194.977ZM21.2672 191.836C20.7568 192.044 19.9911 192.221 18.9703 192.367C18.3922 192.451 17.9833 192.544 17.7437 192.648C17.5042 192.753 17.3193 192.906 17.1891 193.109C17.0589 193.307 16.9937 193.529 16.9937 193.773C16.9937 194.148 17.1344 194.461 17.4156 194.711C17.7021 194.961 18.1187 195.086 18.6656 195.086C19.2073 195.086 19.6891 194.969 20.1109 194.734C20.5328 194.495 20.8427 194.169 21.0406 193.758C21.1917 193.44 21.2672 192.971 21.2672 192.352V191.836ZM25.0844 186.164V184.547H26.4906V186.164H25.0844ZM25.0844 196V187.703H26.4906V196H25.0844ZM28.8391 196V187.703H30.1047V188.883C30.7141 187.971 31.5943 187.516 32.7453 187.516C33.2453 187.516 33.7036 187.607 34.1203 187.789C34.5422 187.966 34.8573 188.201 35.0656 188.492C35.274 188.784 35.4198 189.13 35.5031 189.531C35.5552 189.792 35.5812 190.247 35.5812 190.898V196H34.175V190.953C34.175 190.38 34.1203 189.953 34.0109 189.672C33.9016 189.385 33.7062 189.159 33.425 188.992C33.149 188.82 32.8234 188.734 32.4484 188.734C31.8495 188.734 31.3312 188.924 30.8937 189.305C30.4615 189.685 30.2453 190.406 30.2453 191.469V196H28.8391ZM49.1453 194.648C48.6818 195.164 48.1766 195.552 47.6297 195.812C47.0828 196.068 46.4917 196.195 45.8563 196.195C44.6844 196.195 43.7547 195.799 43.0672 195.008C42.5099 194.362 42.2313 193.641 42.2313 192.844C42.2313 192.135 42.4578 191.497 42.9109 190.93C43.3693 190.357 44.0516 189.854 44.9578 189.422C44.4422 188.828 44.0984 188.346 43.9266 187.977C43.7547 187.607 43.6688 187.25 43.6688 186.906C43.6688 186.219 43.937 185.622 44.4734 185.117C45.0151 184.607 45.6948 184.352 46.5125 184.352C47.2938 184.352 47.9318 184.591 48.4266 185.07C48.9266 185.549 49.1766 186.125 49.1766 186.797C49.1766 187.885 48.4552 188.815 47.0125 189.586L49.0672 192.203C49.3016 191.745 49.4839 191.214 49.6141 190.609L51.075 190.922C50.825 191.922 50.4865 192.745 50.0594 193.391C50.5854 194.089 51.1818 194.674 51.8484 195.148L50.9031 196.266C50.3354 195.901 49.7495 195.362 49.1453 194.648ZM46.2859 188.68C46.8953 188.32 47.2885 188.005 47.4656 187.734C47.6479 187.464 47.7391 187.164 47.7391 186.836C47.7391 186.445 47.6141 186.128 47.3641 185.883C47.1193 185.633 46.812 185.508 46.4422 185.508C46.062 185.508 45.7443 185.63 45.4891 185.875C45.2391 186.12 45.1141 186.419 45.1141 186.773C45.1141 186.951 45.1583 187.138 45.2469 187.336C45.3406 187.529 45.4786 187.734 45.6609 187.953L46.2859 188.68ZM48.2625 193.539L45.6844 190.344C44.924 190.797 44.4109 191.219 44.1453 191.609C43.8797 191.995 43.7469 192.378 43.7469 192.758C43.7469 193.221 43.9318 193.703 44.3016 194.203C44.6714 194.703 45.1948 194.953 45.8719 194.953C46.2938 194.953 46.7286 194.823 47.1766 194.562C47.6297 194.297 47.9917 193.956 48.2625 193.539ZM63.5609 196V194.781C62.9151 195.719 62.0375 196.188 60.9281 196.188C60.4385 196.188 59.9802 196.094 59.5531 195.906C59.1312 195.719 58.8161 195.484 58.6078 195.203C58.4047 194.917 58.2615 194.568 58.1781 194.156C58.1208 193.88 58.0922 193.443 58.0922 192.844V187.703H59.4984V192.305C59.4984 193.039 59.5271 193.534 59.5844 193.789C59.6729 194.159 59.8604 194.451 60.1469 194.664C60.4333 194.872 60.7875 194.977 61.2094 194.977C61.6312 194.977 62.0271 194.87 62.3969 194.656C62.7667 194.438 63.0271 194.143 63.1781 193.773C63.3344 193.398 63.4125 192.857 63.4125 192.148V187.703H64.8187V196H63.5609ZM67.2297 199.18V187.703H68.5109V188.781C68.813 188.359 69.1542 188.044 69.5344 187.836C69.9146 187.622 70.3755 187.516 70.9172 187.516C71.6255 187.516 72.2505 187.698 72.7922 188.062C73.3339 188.427 73.7427 188.943 74.0188 189.609C74.2948 190.271 74.4328 190.997 74.4328 191.789C74.4328 192.638 74.2792 193.404 73.9719 194.086C73.6698 194.763 73.2271 195.284 72.6438 195.648C72.0656 196.008 71.4563 196.188 70.8156 196.188C70.3469 196.188 69.925 196.089 69.55 195.891C69.1802 195.693 68.8755 195.443 68.6359 195.141V199.18H67.2297ZM68.5031 191.898C68.5031 192.966 68.7193 193.755 69.1516 194.266C69.5839 194.776 70.1073 195.031 70.7219 195.031C71.3469 195.031 71.8807 194.768 72.3234 194.242C72.7714 193.711 72.9953 192.891 72.9953 191.781C72.9953 190.724 72.7766 189.932 72.3391 189.406C71.9068 188.88 71.3885 188.617 70.7844 188.617C70.1854 188.617 69.6542 188.898 69.1906 189.461C68.7323 190.018 68.5031 190.831 68.5031 191.898ZM81.7188 196V194.953C81.1927 195.776 80.4193 196.188 79.3984 196.188C78.737 196.188 78.1276 196.005 77.5703 195.641C77.0182 195.276 76.5885 194.768 76.2812 194.117C75.9792 193.461 75.8281 192.708 75.8281 191.859C75.8281 191.031 75.9661 190.281 76.2422 189.609C76.5182 188.932 76.9323 188.414 77.4844 188.055C78.0365 187.695 78.6536 187.516 79.3359 187.516C79.8359 187.516 80.2812 187.622 80.6719 187.836C81.0625 188.044 81.3802 188.318 81.625 188.656V184.547H83.0234V196H81.7188ZM77.2734 191.859C77.2734 192.922 77.4974 193.716 77.9453 194.242C78.3932 194.768 78.9219 195.031 79.5312 195.031C80.1458 195.031 80.6667 194.781 81.0938 194.281C81.526 193.776 81.7422 193.008 81.7422 191.977C81.7422 190.841 81.5234 190.008 81.0859 189.477C80.6484 188.945 80.1094 188.68 79.4688 188.68C78.8438 188.68 78.3203 188.935 77.8984 189.445C77.4818 189.956 77.2734 190.76 77.2734 191.859ZM90.8562 194.977C90.3354 195.419 89.8328 195.732 89.3484 195.914C88.8693 196.096 88.3536 196.188 87.8016 196.188C86.8901 196.188 86.1896 195.966 85.7 195.523C85.2104 195.076 84.9656 194.505 84.9656 193.812C84.9656 193.406 85.0568 193.036 85.2391 192.703C85.4266 192.365 85.6687 192.094 85.9656 191.891C86.2677 191.688 86.6062 191.534 86.9812 191.43C87.2573 191.357 87.674 191.286 88.2312 191.219C89.3667 191.083 90.2026 190.922 90.7391 190.734C90.7443 190.542 90.7469 190.419 90.7469 190.367C90.7469 189.794 90.6141 189.391 90.3484 189.156C89.9891 188.839 89.4552 188.68 88.7469 188.68C88.0854 188.68 87.5958 188.797 87.2781 189.031C86.9656 189.26 86.7339 189.669 86.5828 190.258L85.2078 190.07C85.3328 189.482 85.5385 189.008 85.825 188.648C86.1115 188.284 86.5255 188.005 87.0672 187.812C87.6089 187.615 88.2365 187.516 88.95 187.516C89.6583 187.516 90.2339 187.599 90.6766 187.766C91.1193 187.932 91.4448 188.143 91.6531 188.398C91.8615 188.648 92.0073 188.966 92.0906 189.352C92.1375 189.591 92.1609 190.023 92.1609 190.648V192.523C92.1609 193.831 92.1896 194.659 92.2469 195.008C92.3094 195.352 92.4292 195.682 92.6062 196H91.1375C90.9917 195.708 90.8979 195.367 90.8562 194.977ZM90.7391 191.836C90.2286 192.044 89.463 192.221 88.4422 192.367C87.8641 192.451 87.4552 192.544 87.2156 192.648C86.976 192.753 86.7911 192.906 86.6609 193.109C86.5307 193.307 86.4656 193.529 86.4656 193.773C86.4656 194.148 86.6062 194.461 86.8875 194.711C87.174 194.961 87.5906 195.086 88.1375 195.086C88.6792 195.086 89.1609 194.969 89.5828 194.734C90.0047 194.495 90.3146 194.169 90.5125 193.758C90.6635 193.44 90.7391 192.971 90.7391 192.352V191.836ZM97.6188 194.742L97.8219 195.984C97.426 196.068 97.0719 196.109 96.7594 196.109C96.249 196.109 95.8531 196.029 95.5719 195.867C95.2906 195.706 95.0927 195.495 94.9781 195.234C94.8635 194.969 94.8063 194.414 94.8063 193.57V188.797H93.775V187.703H94.8063V185.648L96.2047 184.805V187.703H97.6188V188.797H96.2047V193.648C96.2047 194.049 96.2281 194.307 96.275 194.422C96.3271 194.536 96.4078 194.628 96.5172 194.695C96.6318 194.763 96.7932 194.797 97.0016 194.797C97.1578 194.797 97.3635 194.779 97.6188 194.742ZM104.881 193.328L106.334 193.508C106.105 194.357 105.681 195.016 105.061 195.484C104.441 195.953 103.649 196.188 102.686 196.188C101.472 196.188 100.509 195.815 99.7953 195.07C99.087 194.32 98.7328 193.271 98.7328 191.922C98.7328 190.526 99.0922 189.443 99.8109 188.672C100.53 187.901 101.462 187.516 102.608 187.516C103.717 187.516 104.623 187.893 105.327 188.648C106.03 189.404 106.381 190.466 106.381 191.836C106.381 191.919 106.379 192.044 106.373 192.211H100.186C100.238 193.122 100.496 193.82 100.959 194.305C101.423 194.789 102.001 195.031 102.694 195.031C103.209 195.031 103.649 194.896 104.014 194.625C104.379 194.354 104.668 193.922 104.881 193.328ZM100.264 191.055H104.897C104.834 190.357 104.657 189.833 104.366 189.484C103.918 188.943 103.337 188.672 102.623 188.672C101.978 188.672 101.433 188.888 100.991 189.32C100.553 189.753 100.311 190.331 100.264 191.055Z" fill="#6E6E6E"/>
+<path d="M273 61L355 61C361.075 61 366 65.9249 366 72L366 178" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M335.293 329.707C334.902 329.317 334.902 328.683 335.293 328.293L341.657 321.929C342.047 321.538 342.681 321.538 343.071 321.929C343.462 322.319 343.462 322.953 343.071 323.343L337.414 329L343.071 334.657C343.462 335.047 343.462 335.681 343.071 336.071C342.681 336.462 342.047 336.462 341.657 336.071L335.293 329.707ZM367 203V319H365V203H367ZM356 330H336V328H356V330ZM367 319C367 325.075 362.075 330 356 330V328C360.971 328 365 323.971 365 319H367Z" fill="black"/>
+<path d="M332.266 196V184.547H340.547V185.898H333.781V189.406H340.117V190.75H333.781V194.648H340.812V196H332.266ZM345.231 196L342.075 187.703H343.559L345.341 192.672C345.533 193.208 345.71 193.766 345.872 194.344C345.997 193.906 346.171 193.38 346.395 192.766L348.239 187.703H349.684L346.544 196H345.231ZM356.541 194.977C356.02 195.419 355.517 195.732 355.033 195.914C354.554 196.096 354.038 196.188 353.486 196.188C352.574 196.188 351.874 195.966 351.384 195.523C350.895 195.076 350.65 194.505 350.65 193.812C350.65 193.406 350.741 193.036 350.923 192.703C351.111 192.365 351.353 192.094 351.65 191.891C351.952 191.688 352.291 191.534 352.666 191.43C352.942 191.357 353.358 191.286 353.916 191.219C355.051 191.083 355.887 190.922 356.423 190.734C356.429 190.542 356.431 190.419 356.431 190.367C356.431 189.794 356.298 189.391 356.033 189.156C355.673 188.839 355.14 188.68 354.431 188.68C353.77 188.68 353.28 188.797 352.962 189.031C352.65 189.26 352.418 189.669 352.267 190.258L350.892 190.07C351.017 189.482 351.223 189.008 351.509 188.648C351.796 188.284 352.21 188.005 352.752 187.812C353.293 187.615 353.921 187.516 354.634 187.516C355.343 187.516 355.918 187.599 356.361 187.766C356.804 187.932 357.129 188.143 357.337 188.398C357.546 188.648 357.692 188.966 357.775 189.352C357.822 189.591 357.845 190.023 357.845 190.648V192.523C357.845 193.831 357.874 194.659 357.931 195.008C357.994 195.352 358.114 195.682 358.291 196H356.822C356.676 195.708 356.582 195.367 356.541 194.977ZM356.423 191.836C355.913 192.044 355.147 192.221 354.127 192.367C353.548 192.451 353.14 192.544 352.9 192.648C352.66 192.753 352.476 192.906 352.345 193.109C352.215 193.307 352.15 193.529 352.15 193.773C352.15 194.148 352.291 194.461 352.572 194.711C352.858 194.961 353.275 195.086 353.822 195.086C354.364 195.086 354.845 194.969 355.267 194.734C355.689 194.495 355.999 194.169 356.197 193.758C356.348 193.44 356.423 192.971 356.423 192.352V191.836ZM360.202 196V184.547H361.608V196H360.202ZM369.433 196V194.781C368.787 195.719 367.909 196.188 366.8 196.188C366.31 196.188 365.852 196.094 365.425 195.906C365.003 195.719 364.688 195.484 364.48 195.203C364.277 194.917 364.133 194.568 364.05 194.156C363.993 193.88 363.964 193.443 363.964 192.844V187.703H365.37V192.305C365.37 193.039 365.399 193.534 365.456 193.789C365.545 194.159 365.732 194.451 366.019 194.664C366.305 194.872 366.659 194.977 367.081 194.977C367.503 194.977 367.899 194.87 368.269 194.656C368.639 194.438 368.899 194.143 369.05 193.773C369.206 193.398 369.284 192.857 369.284 192.148V187.703H370.691V196H369.433ZM378.516 194.977C377.995 195.419 377.492 195.732 377.008 195.914C376.529 196.096 376.013 196.188 375.461 196.188C374.549 196.188 373.849 195.966 373.359 195.523C372.87 195.076 372.625 194.505 372.625 193.812C372.625 193.406 372.716 193.036 372.898 192.703C373.086 192.365 373.328 192.094 373.625 191.891C373.927 191.688 374.266 191.534 374.641 191.43C374.917 191.357 375.333 191.286 375.891 191.219C377.026 191.083 377.862 190.922 378.398 190.734C378.404 190.542 378.406 190.419 378.406 190.367C378.406 189.794 378.273 189.391 378.008 189.156C377.648 188.839 377.115 188.68 376.406 188.68C375.745 188.68 375.255 188.797 374.938 189.031C374.625 189.26 374.393 189.669 374.242 190.258L372.867 190.07C372.992 189.482 373.198 189.008 373.484 188.648C373.771 188.284 374.185 188.005 374.727 187.812C375.268 187.615 375.896 187.516 376.609 187.516C377.318 187.516 377.893 187.599 378.336 187.766C378.779 187.932 379.104 188.143 379.312 188.398C379.521 188.648 379.667 188.966 379.75 189.352C379.797 189.591 379.82 190.023 379.82 190.648V192.523C379.82 193.831 379.849 194.659 379.906 195.008C379.969 195.352 380.089 195.682 380.266 196H378.797C378.651 195.708 378.557 195.367 378.516 194.977ZM378.398 191.836C377.888 192.044 377.122 192.221 376.102 192.367C375.523 192.451 375.115 192.544 374.875 192.648C374.635 192.753 374.451 192.906 374.32 193.109C374.19 193.307 374.125 193.529 374.125 193.773C374.125 194.148 374.266 194.461 374.547 194.711C374.833 194.961 375.25 195.086 375.797 195.086C376.339 195.086 376.82 194.969 377.242 194.734C377.664 194.495 377.974 194.169 378.172 193.758C378.323 193.44 378.398 192.971 378.398 192.352V191.836ZM385.278 194.742L385.481 195.984C385.085 196.068 384.731 196.109 384.419 196.109C383.908 196.109 383.513 196.029 383.231 195.867C382.95 195.706 382.752 195.495 382.638 195.234C382.523 194.969 382.466 194.414 382.466 193.57V188.797H381.434V187.703H382.466V185.648L383.864 184.805V187.703H385.278V188.797H383.864V193.648C383.864 194.049 383.888 194.307 383.934 194.422C383.986 194.536 384.067 194.628 384.177 194.695C384.291 194.763 384.453 194.797 384.661 194.797C384.817 194.797 385.023 194.779 385.278 194.742ZM392.541 193.328L393.994 193.508C393.765 194.357 393.34 195.016 392.72 195.484C392.101 195.953 391.309 196.188 390.345 196.188C389.132 196.188 388.168 195.815 387.455 195.07C386.746 194.32 386.392 193.271 386.392 191.922C386.392 190.526 386.752 189.443 387.47 188.672C388.189 187.901 389.121 187.516 390.267 187.516C391.377 187.516 392.283 187.893 392.986 188.648C393.689 189.404 394.041 190.466 394.041 191.836C394.041 191.919 394.038 192.044 394.033 192.211H387.845C387.897 193.122 388.155 193.82 388.619 194.305C389.082 194.789 389.66 195.031 390.353 195.031C390.869 195.031 391.309 194.896 391.673 194.625C392.038 194.354 392.327 193.922 392.541 193.328ZM387.923 191.055H392.556C392.494 190.357 392.317 189.833 392.025 189.484C391.577 188.943 390.996 188.672 390.283 188.672C389.637 188.672 389.093 188.888 388.65 189.32C388.213 189.753 387.97 190.331 387.923 191.055Z" fill="#6E6E6E"/>
+<path d="M83.7819 327.767V267.32C83.7819 267.32 95.441 277.458 129.714 277.458C163.987 277.458 175.574 266.379 175.574 266.379V327.767C161.276 348.773 90.2899 342.496 83.7819 327.767Z" fill="#E0454C"/>
+<path d="M82.7819 370.458V307.826C82.7819 307.826 94.6388 319.941 128.912 319.941C163.185 319.941 174.574 307.826 174.574 307.826L175.543 370.458C160.968 388.745 91.6526 385.316 82.7819 370.458Z" fill="#0070CC"/>
+<path d="M175.652 263.504C175.652 265.118 174.627 266.831 172.352 268.544C170.094 270.244 166.757 271.818 162.53 273.157C154.088 275.833 142.32 277.504 129.152 277.504C115.983 277.504 104.215 275.833 95.7734 273.157C91.5466 271.818 88.2097 270.244 85.951 268.544C83.676 266.831 82.6516 265.118 82.6516 263.504C82.6516 261.89 83.676 260.177 85.951 258.464C88.2097 256.764 91.5466 255.19 95.7734 253.851C104.215 251.175 115.983 249.504 129.152 249.504C142.32 249.504 154.088 251.175 162.53 253.851C166.757 255.19 170.094 256.764 172.352 258.464C174.627 260.177 175.652 261.89 175.652 263.504Z" fill="#E0454C" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M82.6516 262.504L83.0022 369.767" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M175.652 262.504L175.652 370.504" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M175.74 368.947C175.74 376.903 154.98 383.353 129.371 383.353C103.762 383.353 83.0022 376.903 83.0022 368.947" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M175.74 304.947C175.74 312.903 154.98 319.353 129.371 319.353C103.762 319.353 83.0022 312.903 83.0022 304.947" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M94.8391 302.504V291.051H97.1204L99.8313 299.16C100.081 299.915 100.264 300.48 100.378 300.855C100.508 300.439 100.712 299.827 100.988 299.02L103.73 291.051H105.769V302.504H104.308V292.918L100.98 302.504H99.6125L96.3 292.754V302.504H94.8391ZM108.445 302.504V291.051H116.727V292.402H109.961V295.91H116.297V297.254H109.961V301.152H116.992V302.504H108.445ZM119.239 302.504V291.051H121.52L124.231 299.16C124.481 299.915 124.664 300.48 124.778 300.855C124.908 300.439 125.112 299.827 125.388 299.02L128.13 291.051H130.169V302.504H128.708V292.918L125.38 302.504H124.013L120.7 292.754V302.504H119.239ZM132.353 296.926C132.353 295.025 132.864 293.538 133.884 292.465C134.905 291.387 136.223 290.848 137.838 290.848C138.895 290.848 139.848 291.1 140.697 291.605C141.546 292.111 142.192 292.816 142.634 293.723C143.082 294.624 143.306 295.647 143.306 296.793C143.306 297.954 143.072 298.993 142.603 299.91C142.134 300.827 141.47 301.522 140.611 301.996C139.752 302.465 138.825 302.699 137.83 302.699C136.752 302.699 135.788 302.439 134.939 301.918C134.09 301.397 133.447 300.686 133.009 299.785C132.572 298.884 132.353 297.931 132.353 296.926ZM133.916 296.949C133.916 298.329 134.285 299.418 135.025 300.215C135.77 301.007 136.702 301.402 137.822 301.402C138.963 301.402 139.9 301.001 140.634 300.199C141.374 299.397 141.744 298.259 141.744 296.785C141.744 295.853 141.585 295.04 141.267 294.348C140.955 293.65 140.494 293.111 139.884 292.73C139.28 292.345 138.601 292.152 137.845 292.152C136.772 292.152 135.848 292.522 135.072 293.262C134.301 293.996 133.916 295.225 133.916 296.949ZM145.491 302.504V291.051H150.569C151.59 291.051 152.366 291.155 152.897 291.363C153.428 291.566 153.853 291.928 154.17 292.449C154.488 292.97 154.647 293.546 154.647 294.176C154.647 294.988 154.384 295.673 153.858 296.23C153.332 296.788 152.519 297.142 151.42 297.293C151.821 297.486 152.126 297.676 152.334 297.863C152.777 298.27 153.196 298.777 153.592 299.387L155.584 302.504H153.678L152.163 300.121C151.72 299.434 151.355 298.908 151.069 298.543C150.782 298.178 150.525 297.923 150.295 297.777C150.071 297.632 149.842 297.53 149.608 297.473C149.436 297.436 149.155 297.418 148.764 297.418H147.006V302.504H145.491ZM147.006 296.105H150.264C150.957 296.105 151.498 296.035 151.889 295.895C152.28 295.749 152.577 295.52 152.78 295.207C152.983 294.889 153.084 294.546 153.084 294.176C153.084 293.634 152.887 293.189 152.491 292.84C152.1 292.491 151.48 292.316 150.631 292.316H147.006V296.105ZM160.159 302.504V297.652L155.745 291.051H157.589L159.847 294.504C160.264 295.15 160.652 295.796 161.011 296.441C161.355 295.842 161.771 295.168 162.261 294.418L164.48 291.051H166.245L161.675 297.652V302.504H160.159Z" fill="white"/>
+<path d="M110.886 365.504V354.051H114.831C115.722 354.051 116.402 354.105 116.87 354.215C117.527 354.366 118.087 354.639 118.55 355.035C119.154 355.546 119.605 356.199 119.902 356.996C120.204 357.788 120.355 358.694 120.355 359.715C120.355 360.585 120.253 361.355 120.05 362.027C119.847 362.699 119.587 363.257 119.269 363.699C118.951 364.137 118.602 364.483 118.222 364.738C117.847 364.988 117.391 365.178 116.855 365.309C116.323 365.439 115.712 365.504 115.019 365.504H110.886ZM112.402 364.152H114.847C115.602 364.152 116.193 364.082 116.62 363.941C117.053 363.801 117.396 363.603 117.652 363.348C118.011 362.988 118.29 362.507 118.488 361.902C118.691 361.293 118.792 360.556 118.792 359.691C118.792 358.493 118.594 357.574 118.198 356.934C117.808 356.288 117.331 355.855 116.769 355.637C116.363 355.48 115.709 355.402 114.808 355.402H112.402V364.152ZM122.906 365.504V354.051H124.422V365.504H122.906ZM126.786 361.824L128.216 361.699C128.283 362.272 128.44 362.743 128.684 363.113C128.934 363.478 129.32 363.775 129.841 364.004C130.362 364.228 130.947 364.34 131.598 364.34C132.177 364.34 132.687 364.254 133.13 364.082C133.572 363.91 133.901 363.676 134.114 363.379C134.333 363.077 134.442 362.749 134.442 362.395C134.442 362.035 134.338 361.723 134.13 361.457C133.921 361.186 133.578 360.96 133.098 360.777C132.791 360.658 132.112 360.473 131.059 360.223C130.007 359.967 129.27 359.728 128.848 359.504C128.302 359.217 127.893 358.863 127.622 358.441C127.356 358.014 127.223 357.538 127.223 357.012C127.223 356.434 127.388 355.895 127.716 355.395C128.044 354.889 128.523 354.507 129.153 354.246C129.783 353.986 130.484 353.855 131.255 353.855C132.104 353.855 132.851 353.993 133.497 354.27C134.148 354.54 134.648 354.941 134.997 355.473C135.346 356.004 135.533 356.605 135.559 357.277L134.106 357.387C134.028 356.663 133.763 356.116 133.309 355.746C132.862 355.376 132.197 355.191 131.317 355.191C130.401 355.191 129.731 355.361 129.309 355.699C128.893 356.033 128.684 356.436 128.684 356.91C128.684 357.322 128.833 357.66 129.13 357.926C129.421 358.191 130.182 358.465 131.411 358.746C132.645 359.022 133.492 359.264 133.95 359.473C134.617 359.78 135.109 360.171 135.427 360.645C135.744 361.113 135.903 361.655 135.903 362.27C135.903 362.879 135.729 363.454 135.38 363.996C135.031 364.533 134.528 364.952 133.872 365.254C133.221 365.551 132.487 365.699 131.669 365.699C130.632 365.699 129.763 365.548 129.059 365.246C128.362 364.944 127.812 364.491 127.411 363.887C127.015 363.277 126.807 362.59 126.786 361.824ZM138.111 365.504V354.051H139.627V359.73L145.314 354.051H147.369L142.564 358.691L147.58 365.504H145.58L141.502 359.707L139.627 361.535V365.504H138.111Z" fill="white"/>
+<path d="M243.124 327.767V267.32C243.124 267.32 254.783 277.458 289.056 277.458C323.329 277.458 334.916 266.379 334.916 266.379V327.767C320.618 348.773 249.632 342.496 243.124 327.767Z" fill="#E0454C"/>
+<path d="M242.124 370.458V307.826C242.124 307.826 253.981 319.941 288.254 319.941C322.527 319.941 333.916 307.826 333.916 307.826L334.885 370.458C320.31 388.745 250.994 385.316 242.124 370.458Z" fill="#0070CC"/>
+<path d="M334.993 263.504C334.993 265.118 333.969 266.831 331.694 268.544C329.435 270.244 326.098 271.818 321.872 273.157C313.43 275.833 301.662 277.504 288.493 277.504C275.325 277.504 263.557 275.833 255.115 273.157C250.888 271.818 247.552 270.244 245.293 268.544C243.018 266.831 241.993 265.118 241.993 263.504C241.993 261.89 243.018 260.177 245.293 258.464C247.552 256.764 250.888 255.19 255.115 253.851C263.557 251.175 275.325 249.504 288.493 249.504C301.662 249.504 313.43 251.175 321.872 253.851C326.098 255.19 329.435 256.764 331.694 258.464C333.969 260.177 334.993 261.89 334.993 263.504Z" fill="#E0454C" stroke="black" stroke-width="2"/>
+<path d="M241.993 262.504L242.344 369.767" stroke="black" stroke-width="2"/>
+<path d="M334.993 262.504L334.993 370.504" stroke="black" stroke-width="2"/>
+<path d="M335.082 368.947C335.082 376.903 314.322 383.353 288.713 383.353C263.104 383.353 242.344 376.903 242.344 368.947" stroke="black" stroke-width="2"/>
+<path d="M335.082 304.947C335.082 312.903 314.322 319.353 288.713 319.353C263.104 319.353 242.344 312.903 242.344 304.947" stroke="black" stroke-width="2"/>
+<path d="M254.181 302.504V291.051H256.462L259.173 299.16C259.423 299.915 259.605 300.48 259.72 300.855C259.85 300.439 260.053 299.827 260.329 299.02L263.072 291.051H265.111V302.504H263.65V292.918L260.322 302.504H258.954L255.642 292.754V302.504H254.181ZM267.787 302.504V291.051H276.068V292.402H269.303V295.91H275.639V297.254H269.303V301.152H276.334V302.504H267.787ZM278.581 302.504V291.051H280.862L283.573 299.16C283.823 299.915 284.005 300.48 284.12 300.855C284.25 300.439 284.453 299.827 284.729 299.02L287.472 291.051H289.511V302.504H288.05V292.918L284.722 302.504H283.354L280.042 292.754V302.504H278.581ZM291.695 296.926C291.695 295.025 292.205 293.538 293.226 292.465C294.247 291.387 295.565 290.848 297.179 290.848C298.237 290.848 299.19 291.1 300.039 291.605C300.888 292.111 301.534 292.816 301.976 293.723C302.424 294.624 302.648 295.647 302.648 296.793C302.648 297.954 302.414 298.993 301.945 299.91C301.476 300.827 300.812 301.522 299.953 301.996C299.093 302.465 298.166 302.699 297.172 302.699C296.093 302.699 295.13 302.439 294.281 301.918C293.432 301.397 292.789 300.686 292.351 299.785C291.914 298.884 291.695 297.931 291.695 296.926ZM293.257 296.949C293.257 298.329 293.627 299.418 294.367 300.215C295.112 301.007 296.044 301.402 297.164 301.402C298.304 301.402 299.242 301.001 299.976 300.199C300.716 299.397 301.086 298.259 301.086 296.785C301.086 295.853 300.927 295.04 300.609 294.348C300.297 293.65 299.836 293.111 299.226 292.73C298.622 292.345 297.942 292.152 297.187 292.152C296.114 292.152 295.19 292.522 294.414 293.262C293.643 293.996 293.257 295.225 293.257 296.949ZM304.832 302.504V291.051H309.911C310.931 291.051 311.707 291.155 312.239 291.363C312.77 291.566 313.194 291.928 313.512 292.449C313.83 292.97 313.989 293.546 313.989 294.176C313.989 294.988 313.726 295.673 313.2 296.23C312.674 296.788 311.861 297.142 310.762 297.293C311.163 297.486 311.468 297.676 311.676 297.863C312.119 298.27 312.538 298.777 312.934 299.387L314.926 302.504H313.02L311.504 300.121C311.062 299.434 310.697 298.908 310.411 298.543C310.124 298.178 309.866 297.923 309.637 297.777C309.413 297.632 309.184 297.53 308.95 297.473C308.778 297.436 308.497 297.418 308.106 297.418H306.348V302.504H304.832ZM306.348 296.105H309.606C310.299 296.105 310.84 296.035 311.231 295.895C311.622 295.749 311.918 295.52 312.122 295.207C312.325 294.889 312.426 294.546 312.426 294.176C312.426 293.634 312.228 293.189 311.832 292.84C311.442 292.491 310.822 292.316 309.973 292.316H306.348V296.105ZM319.501 302.504V297.652L315.087 291.051H316.931L319.189 294.504C319.605 295.15 319.993 295.796 320.353 296.441C320.697 295.842 321.113 295.168 321.603 294.418L323.822 291.051H325.587L321.017 297.652V302.504H319.501Z" fill="white"/>
+<path d="M270.228 365.504V354.051H274.173C275.064 354.051 275.743 354.105 276.212 354.215C276.868 354.366 277.428 354.639 277.892 355.035C278.496 355.546 278.947 356.199 279.243 356.996C279.545 357.788 279.697 358.694 279.697 359.715C279.697 360.585 279.595 361.355 279.392 362.027C279.189 362.699 278.928 363.257 278.611 363.699C278.293 364.137 277.944 364.483 277.564 364.738C277.189 364.988 276.733 365.178 276.197 365.309C275.665 365.439 275.053 365.504 274.361 365.504H270.228ZM271.743 364.152H274.189C274.944 364.152 275.535 364.082 275.962 363.941C276.394 363.801 276.738 363.603 276.993 363.348C277.353 362.988 277.631 362.507 277.829 361.902C278.032 361.293 278.134 360.556 278.134 359.691C278.134 358.493 277.936 357.574 277.54 356.934C277.15 356.288 276.673 355.855 276.111 355.637C275.704 355.48 275.051 355.402 274.15 355.402H271.743V364.152ZM282.248 365.504V354.051H283.764V365.504H282.248ZM286.128 361.824L287.557 361.699C287.625 362.272 287.781 362.743 288.026 363.113C288.276 363.478 288.662 363.775 289.182 364.004C289.703 364.228 290.289 364.34 290.94 364.34C291.518 364.34 292.029 364.254 292.472 364.082C292.914 363.91 293.242 363.676 293.456 363.379C293.675 363.077 293.784 362.749 293.784 362.395C293.784 362.035 293.68 361.723 293.472 361.457C293.263 361.186 292.919 360.96 292.44 360.777C292.133 360.658 291.453 360.473 290.401 360.223C289.349 359.967 288.612 359.728 288.19 359.504C287.643 359.217 287.235 358.863 286.964 358.441C286.698 358.014 286.565 357.538 286.565 357.012C286.565 356.434 286.729 355.895 287.057 355.395C287.386 354.889 287.865 354.507 288.495 354.246C289.125 353.986 289.826 353.855 290.597 353.855C291.445 353.855 292.193 353.993 292.839 354.27C293.49 354.54 293.99 354.941 294.339 355.473C294.688 356.004 294.875 356.605 294.901 357.277L293.448 357.387C293.37 356.663 293.104 356.116 292.651 355.746C292.203 355.376 291.539 355.191 290.659 355.191C289.742 355.191 289.073 355.361 288.651 355.699C288.235 356.033 288.026 356.436 288.026 356.91C288.026 357.322 288.175 357.66 288.472 357.926C288.763 358.191 289.524 358.465 290.753 358.746C291.987 359.022 292.834 359.264 293.292 359.473C293.959 359.78 294.451 360.171 294.768 360.645C295.086 361.113 295.245 361.655 295.245 362.27C295.245 362.879 295.07 363.454 294.722 363.996C294.373 364.533 293.87 364.952 293.214 365.254C292.563 365.551 291.828 365.699 291.011 365.699C289.974 365.699 289.104 365.548 288.401 365.246C287.703 364.944 287.154 364.491 286.753 363.887C286.357 363.277 286.149 362.59 286.128 361.824ZM297.453 365.504V354.051H298.968V359.73L304.656 354.051H306.711L301.906 358.691L306.922 365.504H304.922L300.843 359.707L298.968 361.535V365.504H297.453Z" fill="white"/>
+<path d="M271.076 395.565C271.076 395.565 260.577 402.064 270.472 408.518C272.375 409.775 279.279 413.271 279.083 416.505C279.083 416.505 283.267 410.22 277.149 406.265C270.865 402.218 269.293 397.895 271.076 395.565Z" fill="#ED1C24"/>
+<path d="M267.42 407.982C267.42 407.982 263.674 413.746 271.046 414.926C271.771 415.018 277.104 415.585 278.494 417.364C278.494 417.364 278.373 414.298 274.022 412.489C269.686 410.68 267.904 410.235 267.42 407.982Z" fill="#ED1C24"/>
+<path d="M281.923 401.927C277.421 397.144 276.167 394.185 278.101 390.353C278.101 390.353 264.671 395.595 277.935 404.901C282.679 408.227 281.893 411.63 281.893 411.753C282.633 410.971 286.425 406.709 281.923 401.927Z" fill="#ED1C24"/>
+<path d="M289.37 413.458V402.005H290.925L296.941 410.997V402.005H298.394V413.458H296.839L290.823 404.458V413.458H289.37ZM300.687 407.88C300.687 405.979 301.198 404.492 302.219 403.419C303.24 402.341 304.557 401.802 306.172 401.802C307.229 401.802 308.182 402.054 309.031 402.56C309.88 403.065 310.526 403.771 310.969 404.677C311.417 405.578 311.641 406.601 311.641 407.747C311.641 408.909 311.406 409.948 310.937 410.864C310.469 411.781 309.805 412.476 308.945 412.95C308.086 413.419 307.159 413.653 306.164 413.653C305.086 413.653 304.122 413.393 303.273 412.872C302.424 412.351 301.781 411.64 301.344 410.739C300.906 409.838 300.687 408.885 300.687 407.88ZM302.25 407.903C302.25 409.284 302.62 410.372 303.359 411.169C304.104 411.961 305.036 412.356 306.156 412.356C307.297 412.356 308.234 411.955 308.969 411.153C309.708 410.351 310.078 409.213 310.078 407.739C310.078 406.807 309.919 405.994 309.602 405.302C309.289 404.604 308.828 404.065 308.219 403.685C307.615 403.299 306.935 403.106 306.18 403.106C305.107 403.106 304.182 403.476 303.406 404.216C302.635 404.95 302.25 406.179 302.25 407.903ZM313.802 413.458V402.005H317.747C318.637 402.005 319.317 402.06 319.786 402.169C320.442 402.32 321.002 402.593 321.466 402.989C322.07 403.5 322.52 404.153 322.817 404.95C323.119 405.742 323.27 406.648 323.27 407.669C323.27 408.539 323.169 409.31 322.966 409.981C322.762 410.653 322.502 411.211 322.184 411.653C321.867 412.091 321.518 412.437 321.137 412.692C320.762 412.942 320.307 413.132 319.77 413.263C319.239 413.393 318.627 413.458 317.934 413.458H313.802ZM315.317 412.106H317.762C318.518 412.106 319.109 412.036 319.536 411.896C319.968 411.755 320.312 411.557 320.567 411.302C320.927 410.942 321.205 410.461 321.403 409.856C321.606 409.247 321.708 408.51 321.708 407.646C321.708 406.448 321.51 405.528 321.114 404.888C320.723 404.242 320.247 403.81 319.684 403.591C319.278 403.435 318.624 403.356 317.723 403.356H315.317V412.106ZM325.595 413.458V402.005H333.877V403.356H327.111V406.864H333.447V408.208H327.111V412.106H334.142V413.458H325.595Z" fill="#2D2D2D"/>
+<path d="M87.0023 395.565C87.0023 395.565 76.503 402.064 86.398 408.518C88.3015 409.775 95.2054 413.271 95.009 416.505C95.009 416.505 99.1936 410.22 93.0753 406.265C86.7908 402.218 85.2197 397.895 87.0023 395.565Z" fill="#ED1C24"/>
+<path d="M83.3466 407.982C83.3466 407.982 79.6001 413.746 86.9723 414.926C87.6974 415.018 93.0302 415.585 94.42 417.364C94.42 417.364 94.2992 414.298 89.9484 412.489C85.6127 410.68 83.83 410.235 83.3466 407.982Z" fill="#ED1C24"/>
+<path d="M97.8495 401.927C93.3476 397.144 92.0938 394.185 94.0274 390.353C94.0274 390.353 80.5973 395.595 93.8613 404.901C98.6049 408.227 97.8193 411.63 97.8193 411.753C98.5595 410.971 102.351 406.709 97.8495 401.927Z" fill="#ED1C24"/>
+<path d="M105.297 413.458V402.005H106.851L112.867 410.997V402.005H114.32V413.458H112.765L106.75 404.458V413.458H105.297ZM116.614 407.88C116.614 405.979 117.124 404.492 118.145 403.419C119.166 402.341 120.484 401.802 122.098 401.802C123.155 401.802 124.109 402.054 124.958 402.56C125.806 403.065 126.452 403.771 126.895 404.677C127.343 405.578 127.567 406.601 127.567 407.747C127.567 408.909 127.333 409.948 126.864 410.864C126.395 411.781 125.731 412.476 124.872 412.95C124.012 413.419 123.085 413.653 122.09 413.653C121.012 413.653 120.049 413.393 119.2 412.872C118.351 412.351 117.708 411.64 117.27 410.739C116.833 409.838 116.614 408.885 116.614 407.88ZM118.176 407.903C118.176 409.284 118.546 410.372 119.286 411.169C120.03 411.961 120.963 412.356 122.083 412.356C123.223 412.356 124.161 411.955 124.895 411.153C125.635 410.351 126.004 409.213 126.004 407.739C126.004 406.807 125.846 405.994 125.528 405.302C125.215 404.604 124.754 404.065 124.145 403.685C123.541 403.299 122.861 403.106 122.106 403.106C121.033 403.106 120.109 403.476 119.333 404.216C118.562 404.95 118.176 406.179 118.176 407.903ZM129.728 413.458V402.005H133.673C134.564 402.005 135.243 402.06 135.712 402.169C136.368 402.32 136.928 402.593 137.392 402.989C137.996 403.5 138.447 404.153 138.743 404.95C139.046 405.742 139.197 406.648 139.197 407.669C139.197 408.539 139.095 409.31 138.892 409.981C138.689 410.653 138.428 411.211 138.111 411.653C137.793 412.091 137.444 412.437 137.064 412.692C136.689 412.942 136.233 413.132 135.697 413.263C135.165 413.393 134.553 413.458 133.861 413.458H129.728ZM131.243 412.106H133.689C134.444 412.106 135.035 412.036 135.462 411.896C135.894 411.755 136.238 411.557 136.493 411.302C136.853 410.942 137.131 410.461 137.329 409.856C137.533 409.247 137.634 408.51 137.634 407.646C137.634 406.448 137.436 405.528 137.04 404.888C136.65 404.242 136.173 403.81 135.611 403.591C135.204 403.435 134.551 403.356 133.65 403.356H131.243V412.106ZM141.522 413.458V402.005H149.803V403.356H143.037V406.864H149.373V408.208H143.037V412.106H150.068V413.458H141.522Z" fill="#2D2D2D"/>
+<path d="M179.002 425.565C179.002 425.565 168.503 432.064 178.398 438.518C180.302 439.775 187.205 443.271 187.009 446.505C187.009 446.505 191.194 440.22 185.075 436.265C178.791 432.218 177.22 427.895 179.002 425.565Z" fill="#ED1C24"/>
+<path d="M175.347 437.982C175.347 437.982 171.6 443.746 178.972 444.926C179.697 445.018 185.03 445.585 186.42 447.364C186.42 447.364 186.299 444.298 181.948 442.489C177.613 440.68 175.83 440.235 175.347 437.982Z" fill="#ED1C24"/>
+<path d="M189.85 431.927C185.348 427.144 184.094 424.185 186.027 420.353C186.027 420.353 172.597 425.595 185.861 434.901C190.605 438.227 189.819 441.63 189.819 441.753C190.56 440.971 194.351 436.709 189.85 431.927Z" fill="#ED1C24"/>
+<path d="M197.297 443.458V432.005H198.851L204.867 440.997V432.005H206.32V443.458H204.765L198.75 434.458V443.458H197.297ZM208.614 437.88C208.614 435.979 209.124 434.492 210.145 433.419C211.166 432.341 212.484 431.802 214.098 431.802C215.155 431.802 216.109 432.054 216.958 432.56C217.806 433.065 218.452 433.771 218.895 434.677C219.343 435.578 219.567 436.601 219.567 437.747C219.567 438.909 219.333 439.948 218.864 440.864C218.395 441.781 217.731 442.476 216.872 442.95C216.012 443.419 215.085 443.653 214.09 443.653C213.012 443.653 212.049 443.393 211.2 442.872C210.351 442.351 209.708 441.64 209.27 440.739C208.833 439.838 208.614 438.885 208.614 437.88ZM210.176 437.903C210.176 439.284 210.546 440.372 211.286 441.169C212.03 441.961 212.963 442.356 214.083 442.356C215.223 442.356 216.161 441.955 216.895 441.153C217.635 440.351 218.004 439.213 218.004 437.739C218.004 436.807 217.846 435.994 217.528 435.302C217.215 434.604 216.754 434.065 216.145 433.685C215.541 433.299 214.861 433.106 214.106 433.106C213.033 433.106 212.109 433.476 211.333 434.216C210.562 434.95 210.176 436.179 210.176 437.903ZM221.728 443.458V432.005H225.673C226.564 432.005 227.243 432.06 227.712 432.169C228.368 432.32 228.928 432.593 229.392 432.989C229.996 433.5 230.447 434.153 230.743 434.95C231.046 435.742 231.197 436.648 231.197 437.669C231.197 438.539 231.095 439.31 230.892 439.981C230.689 440.653 230.428 441.211 230.111 441.653C229.793 442.091 229.444 442.437 229.064 442.692C228.689 442.942 228.233 443.132 227.697 443.263C227.165 443.393 226.553 443.458 225.861 443.458H221.728ZM223.243 442.106H225.689C226.444 442.106 227.035 442.036 227.462 441.896C227.894 441.755 228.238 441.557 228.493 441.302C228.853 440.942 229.131 440.461 229.329 439.856C229.533 439.247 229.634 438.51 229.634 437.646C229.634 436.448 229.436 435.528 229.04 434.888C228.65 434.242 228.173 433.81 227.611 433.591C227.204 433.435 226.551 433.356 225.65 433.356H223.243V442.106ZM233.522 443.458V432.005H241.803V433.356H235.037V436.864H241.373V438.208H235.037V442.106H242.068V443.458H233.522Z" fill="#2D2D2D"/>
+<path d="M163.453 362.166V301.719C163.453 301.719 175.112 311.856 209.385 311.856C243.658 311.856 255.245 300.778 255.245 300.778V362.166C240.947 383.172 169.961 376.894 163.453 362.166Z" fill="#E0454C"/>
+<path d="M162.453 404.857V342.224C162.453 342.224 174.31 354.339 208.583 354.339C242.856 354.339 254.245 342.224 254.245 342.224L255.214 404.857C240.639 423.143 171.323 419.715 162.453 404.857Z" fill="#0070CC"/>
+<path d="M255.323 297.902C255.323 299.516 254.298 301.23 252.023 302.942C249.764 304.642 246.428 306.216 242.201 307.556C233.759 310.231 221.991 311.902 208.823 311.902C195.654 311.902 183.886 310.231 175.444 307.556C171.217 306.216 167.881 304.642 165.622 302.942C163.347 301.23 162.323 299.516 162.323 297.902C162.323 296.288 163.347 294.575 165.622 292.863C167.881 291.163 171.217 289.589 175.444 288.249C183.886 285.573 195.654 283.902 208.823 283.902C221.991 283.902 233.759 285.573 242.201 288.249C246.428 289.589 249.764 291.163 252.023 292.863C254.298 294.575 255.323 296.288 255.323 297.902Z" fill="#E0454C" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M162.323 296.902L162.673 404.166" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M255.323 296.902L255.323 404.902" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M255.411 403.345C255.411 411.301 234.651 417.751 209.042 417.751C183.433 417.751 162.673 411.301 162.673 403.345" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M255.411 339.345C255.411 347.301 234.651 353.751 209.042 353.751C183.433 353.751 162.673 347.301 162.673 339.345" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M174.51 336.902V325.449H176.791L179.502 333.559C179.752 334.314 179.934 334.879 180.049 335.254C180.179 334.837 180.382 334.225 180.658 333.418L183.401 325.449H185.44V336.902H183.979V327.316L180.651 336.902H179.283L175.971 327.152V336.902H174.51ZM188.116 336.902V325.449H196.398V326.801H189.632V330.309H195.968V331.652H189.632V335.551H196.663V336.902H188.116ZM198.91 336.902V325.449H201.191L203.902 333.559C204.152 334.314 204.334 334.879 204.449 335.254C204.579 334.837 204.782 334.225 205.058 333.418L207.801 325.449H209.84V336.902H208.379V327.316L205.051 336.902H203.683L200.371 327.152V336.902H198.91ZM212.024 331.324C212.024 329.423 212.534 327.936 213.555 326.863C214.576 325.785 215.894 325.246 217.508 325.246C218.566 325.246 219.519 325.499 220.368 326.004C221.217 326.509 221.863 327.215 222.305 328.121C222.753 329.022 222.977 330.046 222.977 331.191C222.977 332.353 222.743 333.392 222.274 334.309C221.805 335.225 221.141 335.921 220.282 336.395C219.423 336.863 218.495 337.098 217.501 337.098C216.423 337.098 215.459 336.837 214.61 336.316C213.761 335.796 213.118 335.085 212.68 334.184C212.243 333.283 212.024 332.329 212.024 331.324ZM213.587 331.348C213.587 332.728 213.956 333.816 214.696 334.613C215.441 335.405 216.373 335.801 217.493 335.801C218.633 335.801 219.571 335.4 220.305 334.598C221.045 333.796 221.415 332.658 221.415 331.184C221.415 330.251 221.256 329.439 220.938 328.746C220.626 328.048 220.165 327.509 219.555 327.129C218.951 326.743 218.271 326.551 217.516 326.551C216.443 326.551 215.519 326.921 214.743 327.66C213.972 328.395 213.587 329.624 213.587 331.348ZM225.162 336.902V325.449H230.24C231.261 325.449 232.037 325.553 232.568 325.762C233.099 325.965 233.524 326.327 233.841 326.848C234.159 327.368 234.318 327.944 234.318 328.574C234.318 329.387 234.055 330.072 233.529 330.629C233.003 331.186 232.19 331.54 231.091 331.691C231.492 331.884 231.797 332.074 232.005 332.262C232.448 332.668 232.867 333.176 233.263 333.785L235.255 336.902H233.349L231.833 334.52C231.391 333.832 231.026 333.306 230.74 332.941C230.453 332.577 230.195 332.322 229.966 332.176C229.742 332.03 229.513 331.928 229.279 331.871C229.107 331.835 228.826 331.816 228.435 331.816H226.677V336.902H225.162ZM226.677 330.504H229.935C230.628 330.504 231.169 330.434 231.56 330.293C231.951 330.147 232.248 329.918 232.451 329.605C232.654 329.288 232.755 328.944 232.755 328.574C232.755 328.033 232.557 327.587 232.162 327.238C231.771 326.889 231.151 326.715 230.302 326.715H226.677V330.504ZM239.83 336.902V332.051L235.416 325.449H237.26L239.518 328.902C239.934 329.548 240.323 330.194 240.682 330.84C241.026 330.241 241.442 329.566 241.932 328.816L244.151 325.449H245.916L241.346 332.051V336.902H239.83Z" fill="white"/>
+<path d="M190.557 399.902V388.449H194.502C195.393 388.449 196.073 388.504 196.541 388.613C197.198 388.764 197.757 389.038 198.221 389.434C198.825 389.944 199.276 390.598 199.573 391.395C199.875 392.186 200.026 393.092 200.026 394.113C200.026 394.983 199.924 395.754 199.721 396.426C199.518 397.098 199.257 397.655 198.94 398.098C198.622 398.535 198.273 398.882 197.893 399.137C197.518 399.387 197.062 399.577 196.526 399.707C195.994 399.837 195.382 399.902 194.69 399.902H190.557ZM192.073 398.551H194.518C195.273 398.551 195.864 398.48 196.291 398.34C196.724 398.199 197.067 398.001 197.323 397.746C197.682 397.387 197.961 396.905 198.158 396.301C198.362 395.691 198.463 394.954 198.463 394.09C198.463 392.892 198.265 391.973 197.869 391.332C197.479 390.686 197.002 390.254 196.44 390.035C196.033 389.879 195.38 389.801 194.479 389.801H192.073V398.551ZM202.577 399.902V388.449H204.093V399.902H202.577ZM206.457 396.223L207.887 396.098C207.954 396.671 208.111 397.142 208.355 397.512C208.605 397.876 208.991 398.173 209.512 398.402C210.032 398.626 210.618 398.738 211.269 398.738C211.848 398.738 212.358 398.652 212.801 398.48C213.243 398.309 213.571 398.074 213.785 397.777C214.004 397.475 214.113 397.147 214.113 396.793C214.113 396.434 214.009 396.121 213.801 395.855C213.592 395.585 213.249 395.358 212.769 395.176C212.462 395.056 211.782 394.871 210.73 394.621C209.678 394.366 208.941 394.126 208.519 393.902C207.973 393.616 207.564 393.262 207.293 392.84C207.027 392.413 206.894 391.936 206.894 391.41C206.894 390.832 207.058 390.293 207.387 389.793C207.715 389.288 208.194 388.905 208.824 388.645C209.454 388.384 210.155 388.254 210.926 388.254C211.775 388.254 212.522 388.392 213.168 388.668C213.819 388.939 214.319 389.34 214.668 389.871C215.017 390.402 215.204 391.004 215.23 391.676L213.777 391.785C213.699 391.061 213.433 390.514 212.98 390.145C212.532 389.775 211.868 389.59 210.988 389.59C210.071 389.59 209.402 389.759 208.98 390.098C208.564 390.431 208.355 390.835 208.355 391.309C208.355 391.72 208.504 392.059 208.801 392.324C209.092 392.59 209.853 392.863 211.082 393.145C212.316 393.421 213.163 393.663 213.621 393.871C214.288 394.178 214.78 394.569 215.098 395.043C215.415 395.512 215.574 396.053 215.574 396.668C215.574 397.277 215.4 397.853 215.051 398.395C214.702 398.931 214.199 399.35 213.543 399.652C212.892 399.949 212.157 400.098 211.34 400.098C210.303 400.098 209.433 399.947 208.73 399.645C208.032 399.342 207.483 398.889 207.082 398.285C206.686 397.676 206.478 396.988 206.457 396.223ZM217.782 399.902V388.449H219.298V394.129L224.985 388.449H227.04L222.235 393.09L227.251 399.902H225.251L221.173 394.105L219.298 395.934V399.902H217.782Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M163.062 163.857C148.33 163.857 135.875 177.573 135.875 191C135.875 204.427 148.33 218.143 163.062 218.143C170.436 218.143 177.664 214.835 185.262 209.074C191.715 204.166 198.007 197.826 204.511 191C198.007 184.174 191.715 177.827 185.262 172.926C177.664 167.165 170.436 163.857 163.062 163.857ZM212 183.11C205.569 176.357 198.856 169.611 191.845 164.291C183.348 157.828 173.814 153 163.062 153C141.987 153 125 171.928 125 191C125 210.072 141.987 229 163.062 229C173.814 229 183.348 224.165 191.845 217.709C198.856 212.389 205.569 205.643 212 198.89C218.431 205.643 225.144 212.389 232.155 217.709C240.652 224.165 250.186 229 260.938 229C282.013 229 299 210.072 299 191C299 171.928 282.013 153 260.938 153C250.186 153 240.652 157.835 232.155 164.291C225.144 169.611 218.431 176.357 212 183.11ZM219.489 191C225.993 197.826 232.285 204.173 238.738 209.074C246.336 214.835 253.564 218.143 260.938 218.143C275.669 218.143 288.125 204.427 288.125 191C288.125 177.573 275.669 163.857 260.938 163.857C253.564 163.857 246.336 167.165 238.738 172.926C232.285 177.834 225.993 184.174 219.489 191Z" fill="#E6E6E6" fill-opacity="0.7"/>
+<path d="M185.952 180.984L187.467 181.367C187.149 182.612 186.577 183.562 185.748 184.219C184.926 184.87 183.918 185.195 182.725 185.195C181.491 185.195 180.485 184.945 179.709 184.445C178.939 183.94 178.35 183.211 177.944 182.258C177.543 181.305 177.342 180.281 177.342 179.188C177.342 177.995 177.569 176.956 178.022 176.07C178.48 175.18 179.129 174.505 179.967 174.047C180.811 173.583 181.738 173.352 182.748 173.352C183.894 173.352 184.858 173.643 185.639 174.227C186.42 174.81 186.965 175.63 187.272 176.688L185.78 177.039C185.514 176.206 185.129 175.599 184.623 175.219C184.118 174.839 183.483 174.648 182.717 174.648C181.837 174.648 181.1 174.859 180.506 175.281C179.918 175.703 179.504 176.271 179.264 176.984C179.024 177.693 178.905 178.424 178.905 179.18C178.905 180.154 179.045 181.005 179.327 181.734C179.613 182.458 180.056 183 180.655 183.359C181.254 183.719 181.902 183.898 182.6 183.898C183.449 183.898 184.168 183.654 184.756 183.164C185.345 182.674 185.743 181.948 185.952 180.984ZM188.839 180.852C188.839 179.315 189.266 178.177 190.12 177.438C190.834 176.823 191.704 176.516 192.73 176.516C193.87 176.516 194.803 176.891 195.527 177.641C196.251 178.385 196.612 179.417 196.612 180.734C196.612 181.802 196.451 182.643 196.128 183.258C195.81 183.867 195.344 184.341 194.73 184.68C194.12 185.018 193.454 185.188 192.73 185.188C191.568 185.188 190.628 184.815 189.909 184.07C189.196 183.326 188.839 182.253 188.839 180.852ZM190.284 180.852C190.284 181.914 190.516 182.711 190.98 183.242C191.443 183.768 192.027 184.031 192.73 184.031C193.428 184.031 194.008 183.766 194.472 183.234C194.935 182.703 195.167 181.893 195.167 180.805C195.167 179.779 194.933 179.003 194.464 178.477C194.001 177.945 193.422 177.68 192.73 177.68C192.027 177.68 191.443 177.943 190.98 178.469C190.516 178.995 190.284 179.789 190.284 180.852ZM198.469 185V176.703H199.734V177.883C200.344 176.971 201.224 176.516 202.375 176.516C202.875 176.516 203.333 176.607 203.75 176.789C204.172 176.966 204.487 177.201 204.695 177.492C204.904 177.784 205.049 178.13 205.133 178.531C205.185 178.792 205.211 179.247 205.211 179.898V185H203.805V179.953C203.805 179.38 203.75 178.953 203.641 178.672C203.531 178.385 203.336 178.159 203.055 177.992C202.779 177.82 202.453 177.734 202.078 177.734C201.479 177.734 200.961 177.924 200.523 178.305C200.091 178.685 199.875 179.406 199.875 180.469V185H198.469ZM210.645 183.742L210.848 184.984C210.453 185.068 210.098 185.109 209.786 185.109C209.276 185.109 208.88 185.029 208.598 184.867C208.317 184.706 208.119 184.495 208.005 184.234C207.89 183.969 207.833 183.414 207.833 182.57V177.797H206.802V176.703H207.833V174.648L209.231 173.805V176.703H210.645V177.797H209.231V182.648C209.231 183.049 209.255 183.307 209.302 183.422C209.354 183.536 209.434 183.628 209.544 183.695C209.658 183.763 209.82 183.797 210.028 183.797C210.184 183.797 210.39 183.779 210.645 183.742ZM212.236 175.164V173.547H213.642V175.164H212.236ZM212.236 185V176.703H213.642V185H212.236ZM215.991 185V176.703H217.256V177.883C217.866 176.971 218.746 176.516 219.897 176.516C220.397 176.516 220.855 176.607 221.272 176.789C221.694 176.966 222.009 177.201 222.217 177.492C222.426 177.784 222.571 178.13 222.655 178.531C222.707 178.792 222.733 179.247 222.733 179.898V185H221.327V179.953C221.327 179.38 221.272 178.953 221.162 178.672C221.053 178.385 220.858 178.159 220.577 177.992C220.301 177.82 219.975 177.734 219.6 177.734C219.001 177.734 218.483 177.924 218.045 178.305C217.613 178.685 217.397 179.406 217.397 180.469V185H215.991ZM224.573 180.852C224.573 179.315 225.001 178.177 225.855 177.438C226.568 176.823 227.438 176.516 228.464 176.516C229.605 176.516 230.537 176.891 231.261 177.641C231.985 178.385 232.347 179.417 232.347 180.734C232.347 181.802 232.185 182.643 231.862 183.258C231.545 183.867 231.079 184.341 230.464 184.68C229.855 185.018 229.188 185.188 228.464 185.188C227.303 185.188 226.362 184.815 225.644 184.07C224.93 183.326 224.573 182.253 224.573 180.852ZM226.019 180.852C226.019 181.914 226.251 182.711 226.714 183.242C227.178 183.768 227.761 184.031 228.464 184.031C229.162 184.031 229.743 183.766 230.206 183.234C230.67 182.703 230.902 181.893 230.902 180.805C230.902 179.779 230.667 179.003 230.198 178.477C229.735 177.945 229.157 177.68 228.464 177.68C227.761 177.68 227.178 177.943 226.714 178.469C226.251 178.995 226.019 179.789 226.019 180.852ZM239.641 185V183.781C238.995 184.719 238.117 185.188 237.008 185.188C236.518 185.188 236.06 185.094 235.633 184.906C235.211 184.719 234.896 184.484 234.688 184.203C234.484 183.917 234.341 183.568 234.258 183.156C234.201 182.88 234.172 182.443 234.172 181.844V176.703H235.578V181.305C235.578 182.039 235.607 182.534 235.664 182.789C235.753 183.159 235.94 183.451 236.227 183.664C236.513 183.872 236.867 183.977 237.289 183.977C237.711 183.977 238.107 183.87 238.477 183.656C238.846 183.438 239.107 183.143 239.258 182.773C239.414 182.398 239.492 181.857 239.492 181.148V176.703H240.898V185H239.641ZM242.747 182.523L244.137 182.305C244.216 182.862 244.432 183.289 244.786 183.586C245.145 183.883 245.645 184.031 246.286 184.031C246.932 184.031 247.411 183.901 247.723 183.641C248.036 183.375 248.192 183.065 248.192 182.711C248.192 182.393 248.054 182.143 247.778 181.961C247.585 181.836 247.106 181.677 246.341 181.484C245.309 181.224 244.593 181 244.192 180.812C243.796 180.62 243.494 180.357 243.286 180.023C243.083 179.685 242.981 179.312 242.981 178.906C242.981 178.536 243.065 178.195 243.231 177.883C243.403 177.565 243.635 177.302 243.927 177.094C244.145 176.932 244.442 176.797 244.817 176.688C245.197 176.573 245.604 176.516 246.036 176.516C246.687 176.516 247.257 176.609 247.747 176.797C248.242 176.984 248.606 177.24 248.841 177.562C249.075 177.88 249.236 178.307 249.325 178.844L247.95 179.031C247.887 178.604 247.705 178.271 247.403 178.031C247.106 177.792 246.684 177.672 246.137 177.672C245.492 177.672 245.031 177.779 244.755 177.992C244.479 178.206 244.341 178.456 244.341 178.742C244.341 178.924 244.398 179.089 244.512 179.234C244.627 179.385 244.807 179.51 245.052 179.609C245.192 179.661 245.606 179.781 246.294 179.969C247.289 180.234 247.981 180.453 248.372 180.625C248.768 180.792 249.078 181.036 249.302 181.359C249.526 181.682 249.637 182.083 249.637 182.562C249.637 183.031 249.499 183.474 249.223 183.891C248.953 184.302 248.559 184.622 248.044 184.852C247.528 185.076 246.945 185.188 246.294 185.188C245.216 185.188 244.393 184.964 243.825 184.516C243.262 184.068 242.903 183.404 242.747 182.523ZM185.331 203V191.547H186.737V203H185.331ZM194.805 200.328L196.258 200.508C196.029 201.357 195.604 202.016 194.984 202.484C194.365 202.953 193.573 203.188 192.609 203.188C191.396 203.188 190.432 202.815 189.719 202.07C189.01 201.32 188.656 200.271 188.656 198.922C188.656 197.526 189.016 196.443 189.734 195.672C190.453 194.901 191.385 194.516 192.531 194.516C193.641 194.516 194.547 194.893 195.25 195.648C195.953 196.404 196.305 197.466 196.305 198.836C196.305 198.919 196.302 199.044 196.297 199.211H190.109C190.161 200.122 190.419 200.82 190.883 201.305C191.346 201.789 191.924 202.031 192.617 202.031C193.133 202.031 193.573 201.896 193.938 201.625C194.302 201.354 194.591 200.922 194.805 200.328ZM190.188 198.055H194.82C194.758 197.357 194.581 196.833 194.289 196.484C193.841 195.943 193.26 195.672 192.547 195.672C191.901 195.672 191.357 195.888 190.914 196.32C190.477 196.753 190.234 197.331 190.188 198.055ZM203.645 201.977C203.124 202.419 202.622 202.732 202.137 202.914C201.658 203.096 201.143 203.188 200.591 203.188C199.679 203.188 198.979 202.966 198.489 202.523C197.999 202.076 197.755 201.505 197.755 200.812C197.755 200.406 197.846 200.036 198.028 199.703C198.216 199.365 198.458 199.094 198.755 198.891C199.057 198.688 199.395 198.534 199.77 198.43C200.046 198.357 200.463 198.286 201.02 198.219C202.156 198.083 202.992 197.922 203.528 197.734C203.533 197.542 203.536 197.419 203.536 197.367C203.536 196.794 203.403 196.391 203.137 196.156C202.778 195.839 202.244 195.68 201.536 195.68C200.874 195.68 200.385 195.797 200.067 196.031C199.755 196.26 199.523 196.669 199.372 197.258L197.997 197.07C198.122 196.482 198.328 196.008 198.614 195.648C198.901 195.284 199.315 195.005 199.856 194.812C200.398 194.615 201.026 194.516 201.739 194.516C202.447 194.516 203.023 194.599 203.466 194.766C203.908 194.932 204.234 195.143 204.442 195.398C204.651 195.648 204.796 195.966 204.88 196.352C204.927 196.591 204.95 197.023 204.95 197.648V199.523C204.95 200.831 204.979 201.659 205.036 202.008C205.098 202.352 205.218 202.682 205.395 203H203.927C203.781 202.708 203.687 202.367 203.645 201.977ZM203.528 198.836C203.018 199.044 202.252 199.221 201.231 199.367C200.653 199.451 200.244 199.544 200.005 199.648C199.765 199.753 199.58 199.906 199.45 200.109C199.32 200.307 199.255 200.529 199.255 200.773C199.255 201.148 199.395 201.461 199.677 201.711C199.963 201.961 200.38 202.086 200.927 202.086C201.468 202.086 201.95 201.969 202.372 201.734C202.794 201.495 203.104 201.169 203.302 200.758C203.453 200.44 203.528 199.971 203.528 199.352V198.836ZM207.322 203V194.703H208.588V195.961C208.91 195.372 209.207 194.984 209.478 194.797C209.754 194.609 210.056 194.516 210.384 194.516C210.858 194.516 211.34 194.667 211.83 194.969L211.345 196.273C211.002 196.07 210.658 195.969 210.314 195.969C210.007 195.969 209.731 196.062 209.486 196.25C209.241 196.432 209.067 196.688 208.963 197.016C208.806 197.516 208.728 198.062 208.728 198.656V203H207.322ZM212.866 203V194.703H214.131V195.883C214.741 194.971 215.621 194.516 216.772 194.516C217.272 194.516 217.73 194.607 218.147 194.789C218.569 194.966 218.884 195.201 219.092 195.492C219.301 195.784 219.446 196.13 219.53 196.531C219.582 196.792 219.608 197.247 219.608 197.898V203H218.202V197.953C218.202 197.38 218.147 196.953 218.037 196.672C217.928 196.385 217.733 196.159 217.452 195.992C217.176 195.82 216.85 195.734 216.475 195.734C215.876 195.734 215.358 195.924 214.92 196.305C214.488 196.685 214.272 197.406 214.272 198.469V203H212.866ZM221.98 193.164V191.547H223.386V193.164H221.98ZM221.98 203V194.703H223.386V203H221.98ZM225.734 203V194.703H227V195.883C227.609 194.971 228.49 194.516 229.641 194.516C230.141 194.516 230.599 194.607 231.016 194.789C231.438 194.966 231.753 195.201 231.961 195.492C232.169 195.784 232.315 196.13 232.398 196.531C232.451 196.792 232.477 197.247 232.477 197.898V203H231.07V197.953C231.07 197.38 231.016 196.953 230.906 196.672C230.797 196.385 230.602 196.159 230.32 195.992C230.044 195.82 229.719 195.734 229.344 195.734C228.745 195.734 228.227 195.924 227.789 196.305C227.357 196.685 227.141 197.406 227.141 198.469V203H225.734ZM234.583 203.688L235.95 203.891C236.007 204.312 236.166 204.62 236.427 204.812C236.776 205.073 237.252 205.203 237.856 205.203C238.507 205.203 239.01 205.073 239.364 204.812C239.718 204.552 239.958 204.188 240.083 203.719C240.156 203.432 240.19 202.831 240.184 201.914C239.57 202.638 238.804 203 237.888 203C236.747 203 235.864 202.589 235.239 201.766C234.614 200.943 234.302 199.956 234.302 198.805C234.302 198.013 234.445 197.284 234.731 196.617C235.018 195.945 235.432 195.427 235.973 195.062C236.52 194.698 237.161 194.516 237.895 194.516C238.874 194.516 239.682 194.911 240.317 195.703V194.703H241.614V201.875C241.614 203.167 241.481 204.081 241.216 204.617C240.955 205.159 240.539 205.586 239.966 205.898C239.398 206.211 238.697 206.367 237.864 206.367C236.874 206.367 236.075 206.143 235.466 205.695C234.856 205.253 234.562 204.583 234.583 203.688ZM235.747 198.703C235.747 199.792 235.963 200.586 236.395 201.086C236.828 201.586 237.369 201.836 238.02 201.836C238.666 201.836 239.208 201.589 239.645 201.094C240.083 200.594 240.302 199.812 240.302 198.75C240.302 197.734 240.075 196.969 239.622 196.453C239.174 195.938 238.632 195.68 237.997 195.68C237.372 195.68 236.841 195.935 236.403 196.445C235.966 196.951 235.747 197.703 235.747 198.703Z" fill="#6E6E6E"/>
+</svg>
diff --git a/public/img/features/machinelearning/machine.svg b/public/img/features/machinelearning/machine.svg
new file mode 100644
index 0000000..08f4e94
--- /dev/null
+++ b/public/img/features/machinelearning/machine.svg
@@ -0,0 +1,62 @@
+<svg width="577" height="653" viewBox="0 0 577 653" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M450 196.706L647.475 310.718L647.475 424.73L450 310.718L450 196.706Z" fill="#0070CC" stroke="white"/>
+<path d="M647.475 82.6936L844.95 196.706L647.475 310.718L450 196.706L647.475 82.6936Z" fill="#0070CC" stroke="white"/>
+<mask id="path-3-inside-1_4:343" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M489.659 276.514C489.659 284.07 484.354 287.133 477.81 283.355C471.266 279.577 465.962 270.389 465.962 262.833C465.962 255.277 471.266 252.214 477.81 255.992C484.354 259.77 489.659 268.958 489.659 276.514ZM521.582 294.756C521.582 302.312 516.277 305.375 509.734 301.597C503.19 297.819 497.885 288.631 497.885 281.075C497.885 273.519 503.19 270.456 509.734 274.234C516.277 278.012 521.582 287.2 521.582 294.756ZM553.669 306.158C549.307 303.639 545.77 305.681 545.77 310.718C545.77 315.755 549.307 321.881 553.669 324.399L620.811 363.164C625.173 365.682 628.71 363.64 628.71 358.603C628.71 353.566 625.173 347.44 620.811 344.922L553.669 306.158Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M489.659 276.514C489.659 284.07 484.354 287.133 477.81 283.355C471.266 279.577 465.962 270.389 465.962 262.833C465.962 255.277 471.266 252.214 477.81 255.992C484.354 259.77 489.659 268.958 489.659 276.514ZM521.582 294.756C521.582 302.312 516.277 305.375 509.734 301.597C503.19 297.819 497.885 288.631 497.885 281.075C497.885 273.519 503.19 270.456 509.734 274.234C516.277 278.012 521.582 287.2 521.582 294.756ZM553.669 306.158C549.307 303.639 545.77 305.681 545.77 310.718C545.77 315.755 549.307 321.881 553.669 324.399L620.811 363.164C625.173 365.682 628.71 363.64 628.71 358.603C628.71 353.566 625.173 347.44 620.811 344.922L553.669 306.158Z" fill="#0070CC"/>
+<path d="M477.81 283.355L478.31 282.489V282.489L477.81 283.355ZM489.659 276.514H490.659H489.659ZM465.962 262.833H466.962H465.962ZM477.81 255.992L477.31 256.858L477.81 255.992ZM509.734 301.597L510.234 300.731L509.734 301.597ZM509.734 274.234L509.234 275.1L509.734 274.234ZM553.669 306.158L553.169 307.024L553.669 306.158ZM553.669 324.399L553.169 325.265L553.669 324.399ZM620.811 363.164L621.311 362.298L620.811 363.164ZM620.811 344.922L621.311 344.056L620.811 344.922ZM477.31 284.221C480.764 286.215 484.126 286.531 486.688 285.051C489.251 283.571 490.659 280.503 490.659 276.514H488.659C488.659 280.082 487.414 282.323 485.688 283.319C483.963 284.315 481.4 284.273 478.31 282.489L477.31 284.221ZM464.962 262.833C464.962 266.828 466.357 271.185 468.566 275.011C470.775 278.836 473.851 282.224 477.31 284.221L478.31 282.489C475.226 280.708 472.378 277.613 470.298 274.011C468.218 270.409 466.962 266.394 466.962 262.833H464.962ZM478.31 255.126C474.856 253.132 471.495 252.817 468.932 254.296C466.369 255.776 464.962 258.844 464.962 262.833H466.962C466.962 259.265 468.206 257.025 469.932 256.028C471.658 255.032 474.221 255.074 477.31 256.858L478.31 255.126ZM490.659 276.514C490.659 272.519 489.263 268.162 487.054 264.336C484.846 260.511 481.77 257.124 478.31 255.126L477.31 256.858C480.394 258.639 483.243 261.734 485.322 265.336C487.402 268.939 488.659 272.953 488.659 276.514H490.659ZM509.234 302.463C512.688 304.457 516.049 304.773 518.612 303.293C521.174 301.813 522.582 298.745 522.582 294.756H520.582C520.582 298.324 519.337 300.565 517.612 301.561C515.886 302.557 513.323 302.515 510.234 300.731L509.234 302.463ZM496.885 281.075C496.885 285.07 498.281 289.427 500.489 293.253C502.698 297.078 505.774 300.466 509.234 302.463L510.234 300.731C507.15 298.95 504.301 295.855 502.222 292.253C500.142 288.651 498.885 284.636 498.885 281.075H496.885ZM510.234 273.368C506.78 271.374 503.418 271.059 500.855 272.538C498.293 274.018 496.885 277.086 496.885 281.075H498.885C498.885 277.507 500.13 275.267 501.855 274.27C503.581 273.274 506.144 273.316 509.234 275.1L510.234 273.368ZM522.582 294.756C522.582 290.761 521.186 286.404 518.978 282.578C516.769 278.753 513.693 275.366 510.234 273.368L509.234 275.1C512.318 276.881 515.166 279.976 517.246 283.578C519.325 287.18 520.582 291.195 520.582 294.756H522.582ZM546.77 310.718C546.77 308.41 547.573 307.054 548.584 306.47C549.595 305.887 551.17 305.869 553.169 307.024L554.169 305.291C551.806 303.927 549.432 303.671 547.584 304.738C545.736 305.805 544.77 307.989 544.77 310.718H546.77ZM554.169 323.533C552.176 322.383 550.315 320.367 548.95 318.003C547.585 315.639 546.77 313.02 546.77 310.718H544.77C544.77 313.454 545.724 316.416 547.218 319.003C548.712 321.591 550.8 323.898 553.169 325.265L554.169 323.533ZM621.311 362.298L554.169 323.533L553.169 325.265L620.311 364.03L621.311 362.298ZM627.71 358.603C627.71 360.911 626.907 362.267 625.896 362.851C624.885 363.435 623.31 363.452 621.311 362.298L620.311 364.03C622.674 365.394 625.048 365.65 626.896 364.583C628.744 363.516 629.71 361.332 629.71 358.603H627.71ZM620.311 345.788C622.304 346.939 624.165 348.954 625.53 351.318C626.895 353.682 627.71 356.301 627.71 358.603H629.71C629.71 355.868 628.756 352.905 627.262 350.318C625.768 347.73 623.68 345.423 621.311 344.056L620.311 345.788ZM553.169 307.024L620.311 345.788L621.311 344.056L554.169 305.291L553.169 307.024Z" fill="white" mask="url(#path-3-inside-1_4:343)"/>
+<path d="M450 69.0122L647.475 183.024L647.475 297.037L450 183.024L450 69.0122Z" fill="#0070CC" stroke="white"/>
+<path d="M647.475 -45L844.95 69.0122L647.475 183.024L450 69.0122L647.475 -45Z" fill="#0070CC" stroke="white"/>
+<mask id="path-7-inside-2_4:343" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M489.659 153.381C489.659 160.937 484.354 164 477.81 160.222C471.266 156.444 465.962 147.256 465.962 139.7C465.962 132.144 471.266 129.081 477.81 132.859C484.354 136.637 489.659 145.825 489.659 153.381ZM521.582 171.623C521.582 179.179 516.277 182.242 509.734 178.464C503.19 174.686 497.885 165.498 497.885 157.942C497.885 150.386 503.19 147.323 509.734 151.101C516.277 154.879 521.582 164.067 521.582 171.623ZM553.669 180.744C549.307 178.226 545.77 180.267 545.77 185.305C545.77 190.342 549.307 196.468 553.669 198.986L620.811 237.75C625.173 240.269 628.71 238.227 628.71 233.19C628.71 228.153 625.173 222.027 620.811 219.508L553.669 180.744Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M489.659 153.381C489.659 160.937 484.354 164 477.81 160.222C471.266 156.444 465.962 147.256 465.962 139.7C465.962 132.144 471.266 129.081 477.81 132.859C484.354 136.637 489.659 145.825 489.659 153.381ZM521.582 171.623C521.582 179.179 516.277 182.242 509.734 178.464C503.19 174.686 497.885 165.498 497.885 157.942C497.885 150.386 503.19 147.323 509.734 151.101C516.277 154.879 521.582 164.067 521.582 171.623ZM553.669 180.744C549.307 178.226 545.77 180.267 545.77 185.305C545.77 190.342 549.307 196.468 553.669 198.986L620.811 237.75C625.173 240.269 628.71 238.227 628.71 233.19C628.71 228.153 625.173 222.027 620.811 219.508L553.669 180.744Z" fill="#0070CC"/>
+<path d="M489.659 153.381H490.659H489.659ZM465.962 139.7H466.962H465.962ZM477.81 132.859L477.31 133.725L477.81 132.859ZM509.734 178.464L509.234 179.33L509.734 178.464ZM509.734 151.101L509.234 151.967L509.734 151.101ZM553.669 180.744L553.169 181.61L553.669 180.744ZM553.669 198.986L554.169 198.12L553.669 198.986ZM620.811 237.75L620.311 238.616L620.811 237.75ZM620.811 219.508L620.311 220.375L620.811 219.508ZM477.31 161.088C480.764 163.082 484.126 163.398 486.688 161.918C489.251 160.439 490.659 157.37 490.659 153.381H488.659C488.659 156.949 487.414 159.19 485.688 160.186C483.963 161.182 481.4 161.14 478.31 159.356L477.31 161.088ZM464.962 139.7C464.962 143.695 466.357 148.052 468.566 151.878C470.775 155.703 473.851 159.091 477.31 161.088L478.31 159.356C475.226 157.575 472.378 154.48 470.298 150.878C468.218 147.276 466.962 143.261 466.962 139.7H464.962ZM478.31 131.993C474.856 129.999 471.495 129.684 468.932 131.163C466.369 132.643 464.962 135.712 464.962 139.7H466.962C466.962 136.132 468.206 133.892 469.932 132.895C471.658 131.899 474.221 131.941 477.31 133.725L478.31 131.993ZM490.659 153.381C490.659 149.387 489.263 145.029 487.054 141.204C484.846 137.378 481.77 133.991 478.31 131.993L477.31 133.725C480.394 135.506 483.243 138.601 485.322 142.204C487.402 145.806 488.659 149.82 488.659 153.381H490.659ZM509.234 179.33C512.688 181.324 516.049 181.64 518.612 180.16C521.174 178.681 522.582 175.612 522.582 171.623H520.582C520.582 175.191 519.337 177.432 517.612 178.428C515.886 179.424 513.323 179.382 510.234 177.598L509.234 179.33ZM496.885 157.942C496.885 161.937 498.281 166.294 500.489 170.12C502.698 173.945 505.774 177.333 509.234 179.33L510.234 177.598C507.15 175.817 504.301 172.722 502.222 169.12C500.142 165.518 498.885 161.503 498.885 157.942H496.885ZM510.234 150.235C506.78 148.241 503.418 147.926 500.855 149.405C498.293 150.885 496.885 153.953 496.885 157.942H498.885C498.885 154.374 500.13 152.134 501.855 151.137C503.581 150.141 506.144 150.183 509.234 151.967L510.234 150.235ZM522.582 171.623C522.582 167.628 521.186 163.271 518.978 159.445C516.769 155.62 513.693 152.233 510.234 150.235L509.234 151.967C512.318 153.748 515.166 156.843 517.246 160.445C519.325 164.048 520.582 168.062 520.582 171.623H522.582ZM546.77 185.305C546.77 182.996 547.573 181.641 548.584 181.057C549.595 180.473 551.17 180.456 553.169 181.61L554.169 179.878C551.806 178.514 549.432 178.258 547.584 179.325C545.736 180.392 544.77 182.576 544.77 185.305H546.77ZM554.169 198.12C552.176 196.969 550.315 194.954 548.95 192.59C547.585 190.226 546.77 187.607 546.77 185.305H544.77C544.77 188.04 545.724 191.002 547.218 193.59C548.712 196.178 550.8 198.485 553.169 199.852L554.169 198.12ZM621.311 236.884L554.169 198.12L553.169 199.852L620.311 238.616L621.311 236.884ZM627.71 233.19C627.71 235.498 626.907 236.854 625.896 237.438C624.885 238.021 623.31 238.039 621.311 236.884L620.311 238.616C622.674 239.981 625.048 240.237 626.896 239.17C628.744 238.103 629.71 235.919 629.71 233.19H627.71ZM620.311 220.375C622.304 221.525 624.165 223.541 625.53 225.905C626.895 228.269 627.71 230.888 627.71 233.19H629.71C629.71 230.454 628.756 227.492 627.262 224.905C625.768 222.317 623.68 220.01 621.311 218.642L620.311 220.375ZM553.169 181.61L620.311 220.375L621.311 218.642L554.169 179.878L553.169 181.61Z" fill="white" mask="url(#path-7-inside-2_4:343)"/>
+<path d="M226 317.706L423.475 431.718L423.475 545.73L226 431.718L226 317.706Z" fill="#0070CC" stroke="white"/>
+<path d="M423.475 431.718L620.95 317.706L620.95 431.718L423.475 545.73L423.475 431.718Z" fill="#0070CC" stroke="white"/>
+<path d="M423.475 203.694L620.95 317.706L423.475 431.718L226 317.706L423.475 203.694Z" fill="#0070CC" stroke="white"/>
+<mask id="path-12-inside-3_4:343" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M265.659 397.514C265.659 405.07 260.354 408.133 253.81 404.355C247.266 400.577 241.962 391.389 241.962 383.833C241.962 376.277 247.266 373.214 253.81 376.992C260.354 380.77 265.659 389.958 265.659 397.514ZM297.582 415.756C297.582 423.312 292.277 426.375 285.734 422.597C279.19 418.819 273.885 409.631 273.885 402.075C273.885 394.519 279.19 391.456 285.734 395.234C292.277 399.012 297.582 408.2 297.582 415.756ZM329.669 427.158C325.307 424.639 321.77 426.681 321.77 431.718C321.77 436.755 325.307 442.881 329.669 445.399L396.811 484.164C401.173 486.682 404.71 484.64 404.71 479.603C404.71 474.566 401.173 468.44 396.811 465.922L329.669 427.158Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M265.659 397.514C265.659 405.07 260.354 408.133 253.81 404.355C247.266 400.577 241.962 391.389 241.962 383.833C241.962 376.277 247.266 373.214 253.81 376.992C260.354 380.77 265.659 389.958 265.659 397.514ZM297.582 415.756C297.582 423.312 292.277 426.375 285.734 422.597C279.19 418.819 273.885 409.631 273.885 402.075C273.885 394.519 279.19 391.456 285.734 395.234C292.277 399.012 297.582 408.2 297.582 415.756ZM329.669 427.158C325.307 424.639 321.77 426.681 321.77 431.718C321.77 436.755 325.307 442.881 329.669 445.399L396.811 484.164C401.173 486.682 404.71 484.64 404.71 479.603C404.71 474.566 401.173 468.44 396.811 465.922L329.669 427.158Z" fill="#0070CC"/>
+<path d="M253.81 404.355L254.31 403.489V403.489L253.81 404.355ZM265.659 397.514H266.659H265.659ZM241.962 383.833H242.962H241.962ZM253.81 376.992L253.31 377.858L253.81 376.992ZM285.734 422.597L286.234 421.731L285.734 422.597ZM285.734 395.234L285.234 396.1L285.734 395.234ZM329.669 427.158L329.169 428.024L329.669 427.158ZM329.669 445.399L329.169 446.265L329.669 445.399ZM396.811 484.164L397.311 483.298L396.811 484.164ZM396.811 465.922L397.311 465.056L396.811 465.922ZM253.31 405.221C256.764 407.215 260.126 407.531 262.688 406.051C265.251 404.571 266.659 401.503 266.659 397.514H264.659C264.659 401.082 263.414 403.323 261.688 404.319C259.963 405.315 257.4 405.273 254.31 403.489L253.31 405.221ZM240.962 383.833C240.962 387.828 242.357 392.185 244.566 396.011C246.775 399.836 249.851 403.224 253.31 405.221L254.31 403.489C251.226 401.708 248.378 398.613 246.298 395.011C244.218 391.409 242.962 387.394 242.962 383.833H240.962ZM254.31 376.126C250.856 374.132 247.495 373.817 244.932 375.296C242.369 376.776 240.962 379.844 240.962 383.833H242.962C242.962 380.265 244.206 378.025 245.932 377.028C247.658 376.032 250.221 376.074 253.31 377.858L254.31 376.126ZM266.659 397.514C266.659 393.519 265.263 389.162 263.054 385.336C260.846 381.511 257.77 378.124 254.31 376.126L253.31 377.858C256.394 379.639 259.243 382.734 261.322 386.336C263.402 389.939 264.659 393.953 264.659 397.514H266.659ZM285.234 423.463C288.688 425.457 292.049 425.773 294.612 424.293C297.174 422.813 298.582 419.745 298.582 415.756H296.582C296.582 419.324 295.337 421.565 293.612 422.561C291.886 423.557 289.323 423.515 286.234 421.731L285.234 423.463ZM272.885 402.075C272.885 406.07 274.281 410.427 276.489 414.253C278.698 418.078 281.774 421.466 285.234 423.463L286.234 421.731C283.15 419.95 280.301 416.855 278.221 413.253C276.142 409.651 274.885 405.636 274.885 402.075H272.885ZM286.234 394.368C282.78 392.374 279.418 392.059 276.855 393.538C274.293 395.018 272.885 398.086 272.885 402.075H274.885C274.885 398.507 276.13 396.267 277.855 395.27C279.581 394.274 282.144 394.316 285.234 396.1L286.234 394.368ZM298.582 415.756C298.582 411.761 297.186 407.404 294.978 403.578C292.769 399.753 289.693 396.366 286.234 394.368L285.234 396.1C288.318 397.881 291.166 400.976 293.246 404.578C295.325 408.18 296.582 412.195 296.582 415.756H298.582ZM322.77 431.718C322.77 429.41 323.573 428.054 324.584 427.47C325.595 426.887 327.17 426.869 329.169 428.024L330.169 426.291C327.806 424.927 325.432 424.671 323.584 425.738C321.736 426.805 320.77 428.989 320.77 431.718H322.77ZM330.169 444.533C328.176 443.383 326.315 441.367 324.95 439.003C323.585 436.639 322.77 434.02 322.77 431.718H320.77C320.77 434.454 321.724 437.416 323.218 440.003C324.712 442.591 326.8 444.898 329.169 446.265L330.169 444.533ZM397.311 483.298L330.169 444.533L329.169 446.265L396.311 485.03L397.311 483.298ZM403.71 479.603C403.71 481.911 402.907 483.267 401.896 483.851C400.885 484.435 399.31 484.452 397.311 483.298L396.311 485.03C398.674 486.394 401.048 486.65 402.896 485.583C404.744 484.516 405.71 482.332 405.71 479.603H403.71ZM396.311 466.788C398.304 467.939 400.165 469.954 401.53 472.318C402.895 474.682 403.71 477.301 403.71 479.603H405.71C405.71 476.868 404.756 473.905 403.262 471.318C401.768 468.73 399.68 466.423 397.311 465.056L396.311 466.788ZM329.169 428.024L396.311 466.788L397.311 465.056L330.169 426.291L329.169 428.024Z" fill="white" mask="url(#path-12-inside-3_4:343)"/>
+<path d="M226 190.012L423.475 304.024L423.475 418.037L226 304.024L226 190.012Z" fill="#0070CC" stroke="white"/>
+<path d="M423.475 304.024L620.95 190.012L620.95 304.024L423.475 418.037L423.475 304.024Z" fill="#0070CC" stroke="white"/>
+<path d="M423.475 76L620.95 190.012L423.475 304.024L226 190.012L423.475 76Z" fill="#0070CC" stroke="white"/>
+<mask id="path-17-inside-4_4:343" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M265.659 274.381C265.659 281.937 260.354 285 253.81 281.222C247.266 277.444 241.962 268.256 241.962 260.7C241.962 253.144 247.266 250.081 253.81 253.859C260.354 257.637 265.659 266.825 265.659 274.381ZM297.582 292.623C297.582 300.179 292.277 303.242 285.734 299.464C279.19 295.686 273.885 286.498 273.885 278.942C273.885 271.386 279.19 268.323 285.734 272.101C292.277 275.879 297.582 285.067 297.582 292.623ZM329.669 301.744C325.307 299.226 321.77 301.267 321.77 306.305C321.77 311.342 325.307 317.468 329.669 319.986L396.811 358.75C401.173 361.269 404.71 359.227 404.71 354.19C404.71 349.153 401.173 343.027 396.811 340.508L329.669 301.744Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M265.659 274.381C265.659 281.937 260.354 285 253.81 281.222C247.266 277.444 241.962 268.256 241.962 260.7C241.962 253.144 247.266 250.081 253.81 253.859C260.354 257.637 265.659 266.825 265.659 274.381ZM297.582 292.623C297.582 300.179 292.277 303.242 285.734 299.464C279.19 295.686 273.885 286.498 273.885 278.942C273.885 271.386 279.19 268.323 285.734 272.101C292.277 275.879 297.582 285.067 297.582 292.623ZM329.669 301.744C325.307 299.226 321.77 301.267 321.77 306.305C321.77 311.342 325.307 317.468 329.669 319.986L396.811 358.75C401.173 361.269 404.71 359.227 404.71 354.19C404.71 349.153 401.173 343.027 396.811 340.508L329.669 301.744Z" fill="#0070CC"/>
+<path d="M265.659 274.381H266.659H265.659ZM241.962 260.7H242.962H241.962ZM253.81 253.859L253.31 254.725L253.81 253.859ZM285.734 299.464L285.234 300.33L285.734 299.464ZM285.734 272.101L285.234 272.967L285.734 272.101ZM329.669 301.744L329.169 302.61L329.669 301.744ZM329.669 319.986L330.169 319.12L329.669 319.986ZM396.811 358.75L396.311 359.616L396.811 358.75ZM396.811 340.508L396.311 341.375L396.811 340.508ZM253.31 282.088C256.764 284.082 260.126 284.398 262.688 282.918C265.251 281.439 266.659 278.37 266.659 274.381H264.659C264.659 277.949 263.414 280.19 261.688 281.186C259.963 282.182 257.4 282.14 254.31 280.356L253.31 282.088ZM240.962 260.7C240.962 264.695 242.357 269.052 244.566 272.878C246.775 276.703 249.851 280.091 253.31 282.088L254.31 280.356C251.226 278.575 248.378 275.48 246.298 271.878C244.218 268.276 242.962 264.261 242.962 260.7H240.962ZM254.31 252.993C250.856 250.999 247.495 250.684 244.932 252.163C242.369 253.643 240.962 256.712 240.962 260.7H242.962C242.962 257.132 244.206 254.892 245.932 253.895C247.658 252.899 250.221 252.941 253.31 254.725L254.31 252.993ZM266.659 274.381C266.659 270.387 265.263 266.029 263.054 262.204C260.846 258.378 257.77 254.991 254.31 252.993L253.31 254.725C256.394 256.506 259.243 259.601 261.322 263.204C263.402 266.806 264.659 270.82 264.659 274.381H266.659ZM285.234 300.33C288.688 302.324 292.049 302.64 294.612 301.16C297.174 299.681 298.582 296.612 298.582 292.623H296.582C296.582 296.191 295.337 298.432 293.612 299.428C291.886 300.424 289.323 300.382 286.234 298.598L285.234 300.33ZM272.885 278.942C272.885 282.937 274.281 287.294 276.489 291.12C278.698 294.945 281.774 298.333 285.234 300.33L286.234 298.598C283.15 296.817 280.301 293.722 278.221 290.12C276.142 286.518 274.885 282.503 274.885 278.942H272.885ZM286.234 271.235C282.78 269.241 279.418 268.926 276.855 270.405C274.293 271.885 272.885 274.953 272.885 278.942H274.885C274.885 275.374 276.13 273.134 277.855 272.137C279.581 271.141 282.144 271.183 285.234 272.967L286.234 271.235ZM298.582 292.623C298.582 288.628 297.186 284.271 294.978 280.445C292.769 276.62 289.693 273.233 286.234 271.235L285.234 272.967C288.318 274.748 291.166 277.843 293.246 281.445C295.325 285.048 296.582 289.062 296.582 292.623H298.582ZM322.77 306.305C322.77 303.996 323.573 302.641 324.584 302.057C325.595 301.473 327.17 301.456 329.169 302.61L330.169 300.878C327.806 299.514 325.432 299.258 323.584 300.325C321.736 301.392 320.77 303.576 320.77 306.305H322.77ZM330.169 319.12C328.176 317.969 326.315 315.954 324.95 313.59C323.585 311.226 322.77 308.607 322.77 306.305H320.77C320.77 309.04 321.724 312.002 323.218 314.59C324.712 317.178 326.8 319.485 329.169 320.852L330.169 319.12ZM397.311 357.884L330.169 319.12L329.169 320.852L396.311 359.616L397.311 357.884ZM403.71 354.19C403.71 356.498 402.907 357.854 401.896 358.438C400.885 359.021 399.31 359.039 397.311 357.884L396.311 359.616C398.674 360.981 401.048 361.237 402.896 360.17C404.744 359.103 405.71 356.919 405.71 354.19H403.71ZM396.311 341.375C398.304 342.525 400.165 344.541 401.53 346.905C402.895 349.269 403.71 351.888 403.71 354.19H405.71C405.71 351.454 404.756 348.492 403.262 345.905C401.768 343.317 399.68 341.01 397.311 339.642L396.311 341.375ZM329.169 302.61L396.311 341.375L397.311 339.642L330.169 300.878L329.169 302.61Z" fill="white" mask="url(#path-17-inside-4_4:343)"/>
+<path d="M1 464.706L198.475 578.718L198.475 692.73L0.999997 578.718L1 464.706Z" fill="#0070CC" stroke="white"/>
+<path d="M198.475 578.718L395.95 464.706L395.95 578.718L198.475 692.73L198.475 578.718Z" fill="#0070CC" stroke="white"/>
+<path d="M198.475 350.694L395.95 464.706L198.475 578.718L1.00005 464.706L198.475 350.694Z" fill="#0070CC" stroke="white"/>
+<mask id="path-22-inside-5_4:343" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M40.6587 544.514C40.6587 552.07 35.3539 555.133 28.8102 551.355C22.2665 547.577 16.9617 538.389 16.9617 530.833C16.9617 523.277 22.2665 520.214 28.8102 523.992C35.3539 527.77 40.6587 536.958 40.6587 544.514ZM72.5821 562.756C72.5821 570.312 67.2773 573.375 60.7336 569.597C54.1899 565.819 48.8851 556.631 48.8851 549.075C48.8851 541.519 54.1899 538.456 60.7336 542.234C67.2773 546.012 72.5821 555.2 72.5821 562.756ZM104.669 574.158C100.307 571.639 96.7702 573.681 96.7702 578.718C96.7702 583.755 100.307 589.881 104.669 592.399L171.811 631.164C176.173 633.682 179.71 631.64 179.71 626.603C179.71 621.566 176.173 615.44 171.811 612.922L104.669 574.158Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M40.6587 544.514C40.6587 552.07 35.3539 555.133 28.8102 551.355C22.2665 547.577 16.9617 538.389 16.9617 530.833C16.9617 523.277 22.2665 520.214 28.8102 523.992C35.3539 527.77 40.6587 536.958 40.6587 544.514ZM72.5821 562.756C72.5821 570.312 67.2773 573.375 60.7336 569.597C54.1899 565.819 48.8851 556.631 48.8851 549.075C48.8851 541.519 54.1899 538.456 60.7336 542.234C67.2773 546.012 72.5821 555.2 72.5821 562.756ZM104.669 574.158C100.307 571.639 96.7702 573.681 96.7702 578.718C96.7702 583.755 100.307 589.881 104.669 592.399L171.811 631.164C176.173 633.682 179.71 631.64 179.71 626.603C179.71 621.566 176.173 615.44 171.811 612.922L104.669 574.158Z" fill="#0070CC"/>
+<path d="M28.8102 551.355L29.3102 550.489V550.489L28.8102 551.355ZM40.6587 544.514H41.6587H40.6587ZM16.9617 530.833H17.9617H16.9617ZM28.8102 523.992L28.3102 524.858L28.8102 523.992ZM60.7336 569.597L61.2336 568.731L60.7336 569.597ZM60.7336 542.234L60.2336 543.1L60.7336 542.234ZM104.669 574.158L104.169 575.024L104.669 574.158ZM104.669 592.399L104.169 593.265L104.669 592.399ZM171.811 631.164L172.311 630.298L171.811 631.164ZM171.811 612.922L172.311 612.056L171.811 612.922ZM28.3102 552.221C31.7642 554.215 35.1257 554.531 37.6883 553.051C40.251 551.571 41.6587 548.503 41.6587 544.514H39.6587C39.6587 548.082 38.414 550.323 36.6883 551.319C34.9626 552.315 32.3999 552.273 29.3102 550.489L28.3102 552.221ZM15.9617 530.833C15.9617 534.828 17.3574 539.185 19.566 543.011C21.7747 546.836 24.8505 550.224 28.3102 552.221L29.3102 550.489C26.2261 548.708 23.3777 545.613 21.2981 542.011C19.2184 538.409 17.9617 534.394 17.9617 530.833H15.9617ZM29.3102 523.126C25.8561 521.132 22.4947 520.817 19.932 522.296C17.3694 523.776 15.9617 526.844 15.9617 530.833H17.9617C17.9617 527.265 19.2063 525.025 20.932 524.028C22.6577 523.032 25.2205 523.074 28.3102 524.858L29.3102 523.126ZM41.6587 544.514C41.6587 540.519 40.263 536.162 38.0544 532.336C35.8457 528.511 32.7699 525.124 29.3102 523.126L28.3102 524.858C31.3943 526.639 34.2427 529.734 36.3223 533.336C38.402 536.939 39.6587 540.953 39.6587 544.514H41.6587ZM60.2336 570.463C63.6876 572.457 67.0491 572.773 69.6117 571.293C72.1744 569.813 73.5821 566.745 73.5821 562.756H71.5821C71.5821 566.324 70.3374 568.565 68.6117 569.561C66.886 570.557 64.3233 570.515 61.2336 568.731L60.2336 570.463ZM47.8851 549.075C47.8851 553.07 49.2808 557.427 51.4894 561.253C53.6981 565.078 56.7739 568.466 60.2336 570.463L61.2336 568.731C58.1495 566.95 55.3011 563.855 53.2215 560.253C51.1418 556.651 49.8851 552.636 49.8851 549.075H47.8851ZM61.2336 541.368C57.7795 539.374 54.4181 539.059 51.8554 540.538C49.2928 542.018 47.8851 545.086 47.8851 549.075H49.8851C49.8851 545.507 51.1297 543.267 52.8554 542.27C54.5811 541.274 57.1439 541.316 60.2336 543.1L61.2336 541.368ZM73.5821 562.756C73.5821 558.761 72.1864 554.404 69.9778 550.578C67.7691 546.753 64.6933 543.366 61.2336 541.368L60.2336 543.1C63.3177 544.881 66.1661 547.976 68.2457 551.578C70.3254 555.18 71.5821 559.195 71.5821 562.756H73.5821ZM97.7702 578.718C97.7702 576.41 98.5728 575.054 99.5838 574.47C100.595 573.887 102.17 573.869 104.169 575.024L105.169 573.291C102.806 571.927 100.432 571.671 98.5838 572.738C96.7359 573.805 95.7702 575.989 95.7702 578.718H97.7702ZM105.169 591.533C103.176 590.383 101.315 588.367 99.9498 586.003C98.5849 583.639 97.7702 581.02 97.7702 578.718H95.7702C95.7702 581.454 96.7238 584.416 98.2178 587.003C99.7117 589.591 101.8 591.898 104.169 593.265L105.169 591.533ZM172.311 630.298L105.169 591.533L104.169 593.265L171.311 632.03L172.311 630.298ZM178.71 626.603C178.71 628.911 177.907 630.267 176.896 630.851C175.885 631.435 174.31 631.452 172.311 630.298L171.311 632.03C173.674 633.394 176.048 633.65 177.896 632.583C179.744 631.516 180.71 629.332 180.71 626.603H178.71ZM171.311 613.788C173.304 614.939 175.165 616.954 176.53 619.318C177.895 621.682 178.71 624.301 178.71 626.603H180.71C180.71 623.868 179.756 620.905 178.262 618.318C176.768 615.73 174.68 613.423 172.311 612.056L171.311 613.788ZM104.169 575.024L171.311 613.788L172.311 612.056L105.169 573.291L104.169 575.024Z" fill="white" mask="url(#path-22-inside-5_4:343)"/>
+<path d="M1 337.012L198.475 451.024L198.475 565.037L0.999997 451.024L1 337.012Z" fill="#0070CC" stroke="white"/>
+<path d="M198.475 451.024L395.95 337.012L395.95 451.024L198.475 565.037L198.475 451.024Z" fill="#0070CC" stroke="white"/>
+<path d="M198.475 223L395.95 337.012L198.475 451.024L1.00005 337.012L198.475 223Z" fill="#0070CC" stroke="white"/>
+<mask id="path-27-inside-6_4:343" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M40.6587 421.381C40.6587 428.937 35.3539 432 28.8102 428.222C22.2665 424.444 16.9617 415.256 16.9617 407.7C16.9617 400.144 22.2665 397.081 28.8102 400.859C35.3539 404.637 40.6587 413.825 40.6587 421.381ZM72.5821 439.623C72.5821 447.179 67.2773 450.242 60.7336 446.464C54.1899 442.686 48.8851 433.498 48.8851 425.942C48.8851 418.386 54.1899 415.323 60.7336 419.101C67.2773 422.879 72.5821 432.067 72.5821 439.623ZM104.669 448.744C100.307 446.226 96.7702 448.267 96.7702 453.305C96.7702 458.342 100.307 464.468 104.669 466.986L171.811 505.75C176.173 508.269 179.71 506.227 179.71 501.19C179.71 496.153 176.173 490.027 171.811 487.508L104.669 448.744Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M40.6587 421.381C40.6587 428.937 35.3539 432 28.8102 428.222C22.2665 424.444 16.9617 415.256 16.9617 407.7C16.9617 400.144 22.2665 397.081 28.8102 400.859C35.3539 404.637 40.6587 413.825 40.6587 421.381ZM72.5821 439.623C72.5821 447.179 67.2773 450.242 60.7336 446.464C54.1899 442.686 48.8851 433.498 48.8851 425.942C48.8851 418.386 54.1899 415.323 60.7336 419.101C67.2773 422.879 72.5821 432.067 72.5821 439.623ZM104.669 448.744C100.307 446.226 96.7702 448.267 96.7702 453.305C96.7702 458.342 100.307 464.468 104.669 466.986L171.811 505.75C176.173 508.269 179.71 506.227 179.71 501.19C179.71 496.153 176.173 490.027 171.811 487.508L104.669 448.744Z" fill="#0070CC"/>
+<path d="M40.6587 421.381H41.6587H40.6587ZM16.9617 407.7H17.9617H16.9617ZM28.8102 400.859L28.3102 401.725L28.8102 400.859ZM60.7336 446.464L60.2336 447.33L60.7336 446.464ZM60.7336 419.101L60.2336 419.967L60.7336 419.101ZM104.669 448.744L104.169 449.61L104.669 448.744ZM104.669 466.986L105.169 466.12L104.669 466.986ZM171.811 505.75L171.311 506.616L171.811 505.75ZM171.811 487.508L171.311 488.375L171.811 487.508ZM28.3102 429.088C31.7642 431.082 35.1257 431.398 37.6883 429.918C40.251 428.439 41.6587 425.37 41.6587 421.381H39.6587C39.6587 424.949 38.414 427.19 36.6883 428.186C34.9626 429.182 32.3999 429.14 29.3102 427.356L28.3102 429.088ZM15.9617 407.7C15.9617 411.695 17.3574 416.052 19.566 419.878C21.7747 423.703 24.8505 427.091 28.3102 429.088L29.3102 427.356C26.2261 425.575 23.3777 422.48 21.2981 418.878C19.2184 415.276 17.9617 411.261 17.9617 407.7H15.9617ZM29.3102 399.993C25.8561 397.999 22.4947 397.684 19.932 399.163C17.3694 400.643 15.9617 403.712 15.9617 407.7H17.9617C17.9617 404.132 19.2063 401.892 20.932 400.895C22.6577 399.899 25.2205 399.941 28.3102 401.725L29.3102 399.993ZM41.6587 421.381C41.6587 417.387 40.263 413.029 38.0544 409.204C35.8457 405.378 32.7699 401.991 29.3102 399.993L28.3102 401.725C31.3943 403.506 34.2427 406.601 36.3223 410.204C38.402 413.806 39.6587 417.82 39.6587 421.381H41.6587ZM60.2336 447.33C63.6876 449.324 67.0491 449.64 69.6117 448.16C72.1744 446.681 73.5821 443.612 73.5821 439.623H71.5821C71.5821 443.191 70.3374 445.432 68.6117 446.428C66.886 447.424 64.3233 447.382 61.2336 445.598L60.2336 447.33ZM47.8851 425.942C47.8851 429.937 49.2808 434.294 51.4894 438.12C53.6981 441.945 56.7739 445.333 60.2336 447.33L61.2336 445.598C58.1495 443.817 55.3011 440.722 53.2215 437.12C51.1418 433.518 49.8851 429.503 49.8851 425.942H47.8851ZM61.2336 418.235C57.7795 416.241 54.4181 415.926 51.8554 417.405C49.2928 418.885 47.8851 421.953 47.8851 425.942H49.8851C49.8851 422.374 51.1297 420.134 52.8554 419.137C54.5811 418.141 57.1439 418.183 60.2336 419.967L61.2336 418.235ZM73.5821 439.623C73.5821 435.628 72.1864 431.271 69.9778 427.445C67.7691 423.62 64.6933 420.233 61.2336 418.235L60.2336 419.967C63.3177 421.748 66.1661 424.843 68.2457 428.445C70.3254 432.048 71.5821 436.062 71.5821 439.623H73.5821ZM97.7702 453.305C97.7702 450.996 98.5728 449.641 99.5838 449.057C100.595 448.473 102.17 448.456 104.169 449.61L105.169 447.878C102.806 446.514 100.432 446.258 98.5838 447.325C96.7359 448.392 95.7702 450.576 95.7702 453.305H97.7702ZM105.169 466.12C103.176 464.969 101.315 462.954 99.9498 460.59C98.5849 458.226 97.7702 455.607 97.7702 453.305H95.7702C95.7702 456.04 96.7238 459.002 98.2178 461.59C99.7117 464.178 101.8 466.485 104.169 467.852L105.169 466.12ZM172.311 504.884L105.169 466.12L104.169 467.852L171.311 506.616L172.311 504.884ZM178.71 501.19C178.71 503.498 177.907 504.854 176.896 505.438C175.885 506.021 174.31 506.039 172.311 504.884L171.311 506.616C173.674 507.981 176.048 508.237 177.896 507.17C179.744 506.103 180.71 503.919 180.71 501.19H178.71ZM171.311 488.375C173.304 489.525 175.165 491.541 176.53 493.905C177.895 496.269 178.71 498.888 178.71 501.19H180.71C180.71 498.454 179.756 495.492 178.262 492.905C176.768 490.317 174.68 488.01 172.311 486.642L171.311 488.375ZM104.169 449.61L171.311 488.375L172.311 486.642L105.169 447.878L104.169 449.61Z" fill="white" mask="url(#path-27-inside-6_4:343)"/>
+<path d="M447 447.706L644.475 561.718L644.475 675.73L447 561.718L447 447.706Z" fill="#0070CC" stroke="white"/>
+<path d="M644.475 333.694L841.95 447.706L644.475 561.718L447 447.706L644.475 333.694Z" fill="#0070CC" stroke="white"/>
+<mask id="path-31-inside-7_4:343" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M486.659 527.514C486.659 535.07 481.354 538.133 474.81 534.355C468.266 530.577 462.962 521.389 462.962 513.833C462.962 506.277 468.266 503.214 474.81 506.992C481.354 510.77 486.659 519.958 486.659 527.514ZM518.582 545.756C518.582 553.312 513.277 556.375 506.734 552.597C500.19 548.819 494.885 539.631 494.885 532.075C494.885 524.519 500.19 521.456 506.734 525.234C513.277 529.012 518.582 538.2 518.582 545.756ZM550.669 557.158C546.307 554.639 542.77 556.681 542.77 561.718C542.77 566.755 546.307 572.881 550.669 575.399L617.811 614.164C622.173 616.682 625.71 614.64 625.71 609.603C625.71 604.566 622.173 598.44 617.811 595.922L550.669 557.158Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M486.659 527.514C486.659 535.07 481.354 538.133 474.81 534.355C468.266 530.577 462.962 521.389 462.962 513.833C462.962 506.277 468.266 503.214 474.81 506.992C481.354 510.77 486.659 519.958 486.659 527.514ZM518.582 545.756C518.582 553.312 513.277 556.375 506.734 552.597C500.19 548.819 494.885 539.631 494.885 532.075C494.885 524.519 500.19 521.456 506.734 525.234C513.277 529.012 518.582 538.2 518.582 545.756ZM550.669 557.158C546.307 554.639 542.77 556.681 542.77 561.718C542.77 566.755 546.307 572.881 550.669 575.399L617.811 614.164C622.173 616.682 625.71 614.64 625.71 609.603C625.71 604.566 622.173 598.44 617.811 595.922L550.669 557.158Z" fill="#0070CC"/>
+<path d="M474.81 534.355L475.31 533.489V533.489L474.81 534.355ZM486.659 527.514H487.659H486.659ZM462.962 513.833H463.962H462.962ZM474.81 506.992L474.31 507.858L474.81 506.992ZM506.734 552.597L507.234 551.731L506.734 552.597ZM506.734 525.234L506.234 526.1L506.734 525.234ZM550.669 557.158L550.169 558.024L550.669 557.158ZM550.669 575.399L550.169 576.265L550.669 575.399ZM617.811 614.164L618.311 613.298L617.811 614.164ZM617.811 595.922L618.311 595.056L617.811 595.922ZM474.31 535.221C477.764 537.215 481.126 537.531 483.688 536.051C486.251 534.571 487.659 531.503 487.659 527.514H485.659C485.659 531.082 484.414 533.323 482.688 534.319C480.963 535.315 478.4 535.273 475.31 533.489L474.31 535.221ZM461.962 513.833C461.962 517.828 463.357 522.185 465.566 526.011C467.775 529.836 470.851 533.224 474.31 535.221L475.31 533.489C472.226 531.708 469.378 528.613 467.298 525.011C465.218 521.409 463.962 517.394 463.962 513.833H461.962ZM475.31 506.126C471.856 504.132 468.495 503.817 465.932 505.296C463.369 506.776 461.962 509.844 461.962 513.833H463.962C463.962 510.265 465.206 508.025 466.932 507.028C468.658 506.032 471.221 506.074 474.31 507.858L475.31 506.126ZM487.659 527.514C487.659 523.519 486.263 519.162 484.054 515.336C481.846 511.511 478.77 508.124 475.31 506.126L474.31 507.858C477.394 509.639 480.243 512.734 482.322 516.336C484.402 519.939 485.659 523.953 485.659 527.514H487.659ZM506.234 553.463C509.688 555.457 513.049 555.773 515.612 554.293C518.174 552.813 519.582 549.745 519.582 545.756H517.582C517.582 549.324 516.337 551.565 514.612 552.561C512.886 553.557 510.323 553.515 507.234 551.731L506.234 553.463ZM493.885 532.075C493.885 536.07 495.281 540.427 497.489 544.253C499.698 548.078 502.774 551.466 506.234 553.463L507.234 551.731C504.15 549.95 501.301 546.855 499.222 543.253C497.142 539.651 495.885 535.636 495.885 532.075H493.885ZM507.234 524.368C503.78 522.374 500.418 522.059 497.855 523.538C495.293 525.018 493.885 528.086 493.885 532.075H495.885C495.885 528.507 497.13 526.267 498.855 525.27C500.581 524.274 503.144 524.316 506.234 526.1L507.234 524.368ZM519.582 545.756C519.582 541.761 518.186 537.404 515.978 533.578C513.769 529.753 510.693 526.366 507.234 524.368L506.234 526.1C509.318 527.881 512.166 530.976 514.246 534.578C516.325 538.18 517.582 542.195 517.582 545.756H519.582ZM543.77 561.718C543.77 559.41 544.573 558.054 545.584 557.47C546.595 556.887 548.17 556.869 550.169 558.024L551.169 556.291C548.806 554.927 546.432 554.671 544.584 555.738C542.736 556.805 541.77 558.989 541.77 561.718H543.77ZM551.169 574.533C549.176 573.383 547.315 571.367 545.95 569.003C544.585 566.639 543.77 564.02 543.77 561.718H541.77C541.77 564.454 542.724 567.416 544.218 570.003C545.712 572.591 547.8 574.898 550.169 576.265L551.169 574.533ZM618.311 613.298L551.169 574.533L550.169 576.265L617.311 615.03L618.311 613.298ZM624.71 609.603C624.71 611.911 623.907 613.267 622.896 613.851C621.885 614.435 620.31 614.452 618.311 613.298L617.311 615.03C619.674 616.394 622.048 616.65 623.896 615.583C625.744 614.516 626.71 612.332 626.71 609.603H624.71ZM617.311 596.788C619.304 597.939 621.165 599.954 622.53 602.318C623.895 604.682 624.71 607.301 624.71 609.603H626.71C626.71 606.868 625.756 603.905 624.262 601.318C622.768 598.73 620.68 596.423 618.311 595.056L617.311 596.788ZM550.169 558.024L617.311 596.788L618.311 595.056L551.169 556.291L550.169 558.024Z" fill="white" mask="url(#path-31-inside-7_4:343)"/>
+<path d="M447 320.012L644.475 434.024L644.475 548.037L447 434.024L447 320.012Z" fill="#0070CC" stroke="white"/>
+<path d="M644.475 206L841.95 320.012L644.475 434.024L447 320.012L644.475 206Z" fill="#0070CC" stroke="white"/>
+<mask id="path-35-inside-8_4:343" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M486.659 404.381C486.659 411.937 481.354 415 474.81 411.222C468.266 407.444 462.962 398.256 462.962 390.7C462.962 383.144 468.266 380.081 474.81 383.859C481.354 387.637 486.659 396.825 486.659 404.381ZM518.582 422.623C518.582 430.179 513.277 433.242 506.734 429.464C500.19 425.686 494.885 416.498 494.885 408.942C494.885 401.386 500.19 398.323 506.734 402.101C513.277 405.879 518.582 415.067 518.582 422.623ZM550.669 431.744C546.307 429.226 542.77 431.267 542.77 436.305C542.77 441.342 546.307 447.468 550.669 449.986L617.811 488.75C622.173 491.269 625.71 489.227 625.71 484.19C625.71 479.153 622.173 473.027 617.811 470.508L550.669 431.744Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M486.659 404.381C486.659 411.937 481.354 415 474.81 411.222C468.266 407.444 462.962 398.256 462.962 390.7C462.962 383.144 468.266 380.081 474.81 383.859C481.354 387.637 486.659 396.825 486.659 404.381ZM518.582 422.623C518.582 430.179 513.277 433.242 506.734 429.464C500.19 425.686 494.885 416.498 494.885 408.942C494.885 401.386 500.19 398.323 506.734 402.101C513.277 405.879 518.582 415.067 518.582 422.623ZM550.669 431.744C546.307 429.226 542.77 431.267 542.77 436.305C542.77 441.342 546.307 447.468 550.669 449.986L617.811 488.75C622.173 491.269 625.71 489.227 625.71 484.19C625.71 479.153 622.173 473.027 617.811 470.508L550.669 431.744Z" fill="#0070CC"/>
+<path d="M486.659 404.381H487.659H486.659ZM462.962 390.7H463.962H462.962ZM474.81 383.859L474.31 384.725L474.81 383.859ZM506.734 429.464L506.234 430.33L506.734 429.464ZM506.734 402.101L506.234 402.967L506.734 402.101ZM550.669 431.744L550.169 432.61L550.669 431.744ZM550.669 449.986L551.169 449.12L550.669 449.986ZM617.811 488.75L617.311 489.616L617.811 488.75ZM617.811 470.508L617.311 471.375L617.811 470.508ZM474.31 412.088C477.764 414.082 481.126 414.398 483.688 412.918C486.251 411.439 487.659 408.37 487.659 404.381H485.659C485.659 407.949 484.414 410.19 482.688 411.186C480.963 412.182 478.4 412.14 475.31 410.356L474.31 412.088ZM461.962 390.7C461.962 394.695 463.357 399.052 465.566 402.878C467.775 406.703 470.851 410.091 474.31 412.088L475.31 410.356C472.226 408.575 469.378 405.48 467.298 401.878C465.218 398.276 463.962 394.261 463.962 390.7H461.962ZM475.31 382.993C471.856 380.999 468.495 380.684 465.932 382.163C463.369 383.643 461.962 386.712 461.962 390.7H463.962C463.962 387.132 465.206 384.892 466.932 383.895C468.658 382.899 471.221 382.941 474.31 384.725L475.31 382.993ZM487.659 404.381C487.659 400.387 486.263 396.029 484.054 392.204C481.846 388.378 478.77 384.991 475.31 382.993L474.31 384.725C477.394 386.506 480.243 389.601 482.322 393.204C484.402 396.806 485.659 400.82 485.659 404.381H487.659ZM506.234 430.33C509.688 432.324 513.049 432.64 515.612 431.16C518.174 429.681 519.582 426.612 519.582 422.623H517.582C517.582 426.191 516.337 428.432 514.612 429.428C512.886 430.424 510.323 430.382 507.234 428.598L506.234 430.33ZM493.885 408.942C493.885 412.937 495.281 417.294 497.489 421.12C499.698 424.945 502.774 428.333 506.234 430.33L507.234 428.598C504.15 426.817 501.301 423.722 499.222 420.12C497.142 416.518 495.885 412.503 495.885 408.942H493.885ZM507.234 401.235C503.78 399.241 500.418 398.926 497.855 400.405C495.293 401.885 493.885 404.953 493.885 408.942H495.885C495.885 405.374 497.13 403.134 498.855 402.137C500.581 401.141 503.144 401.183 506.234 402.967L507.234 401.235ZM519.582 422.623C519.582 418.628 518.186 414.271 515.978 410.445C513.769 406.62 510.693 403.233 507.234 401.235L506.234 402.967C509.318 404.748 512.166 407.843 514.246 411.445C516.325 415.048 517.582 419.062 517.582 422.623H519.582ZM543.77 436.305C543.77 433.996 544.573 432.641 545.584 432.057C546.595 431.473 548.17 431.456 550.169 432.61L551.169 430.878C548.806 429.514 546.432 429.258 544.584 430.325C542.736 431.392 541.77 433.576 541.77 436.305H543.77ZM551.169 449.12C549.176 447.969 547.315 445.954 545.95 443.59C544.585 441.226 543.77 438.607 543.77 436.305H541.77C541.77 439.04 542.724 442.002 544.218 444.59C545.712 447.178 547.8 449.485 550.169 450.852L551.169 449.12ZM618.311 487.884L551.169 449.12L550.169 450.852L617.311 489.616L618.311 487.884ZM624.71 484.19C624.71 486.498 623.907 487.854 622.896 488.438C621.885 489.021 620.31 489.039 618.311 487.884L617.311 489.616C619.674 490.981 622.048 491.237 623.896 490.17C625.744 489.103 626.71 486.919 626.71 484.19H624.71ZM617.311 471.375C619.304 472.525 621.165 474.541 622.53 476.905C623.895 479.269 624.71 481.888 624.71 484.19H626.71C626.71 481.454 625.756 478.492 624.262 475.905C622.768 473.317 620.68 471.01 618.311 469.642L617.311 471.375ZM550.169 432.61L617.311 471.375L618.311 469.642L551.169 430.878L550.169 432.61Z" fill="white" mask="url(#path-35-inside-8_4:343)"/>
+</svg>
diff --git a/public/img/features/more-learn-book.png b/public/img/features/more-learn-book.png
new file mode 100644
index 0000000..4c8732d
--- /dev/null
+++ b/public/img/features/more-learn-book.png
Binary files differ
diff --git a/public/img/features/more-learn-book.svg b/public/img/features/more-learn-book.svg
new file mode 100644
index 0000000..7685c48
--- /dev/null
+++ b/public/img/features/more-learn-book.svg
@@ -0,0 +1,41 @@
+<svg width="276" height="307" viewBox="0 0 276 307" fill="none" xmlns="http://www.w3.org/2000/svg">
+<mask id="mask0_86:14" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="276" height="307">
+<rect width="276" height="307" rx="10" fill="#CE2034"/>
+</mask>
+<g mask="url(#mask0_86:14)">
+<path d="M40 157.781C40 154.752 42.2586 152.197 45.2655 151.826L206 132V356H40V157.781Z" fill="url(#paint0_linear_86:14)"/>
+<path d="M58 170.27C58 167.467 59.9417 165.037 62.6763 164.418L206 132V356L58 369V170.27Z" fill="url(#paint1_linear_86:14)"/>
+<path d="M354 170.27C354 167.467 352.058 165.037 349.324 164.418L206 132V356L354 369V170.27Z" fill="url(#paint2_linear_86:14)"/>
+<path d="M361 361L206 361L206 132L355 132C358.314 132 361 134.686 361 138L361 361Z" fill="url(#paint3_linear_86:14)"/>
+<path d="M94.9717 182.611L84.3063 196.593C83.5785 197.547 83.5843 198.779 84.3194 199.374L94.9717 208.005" stroke="white" stroke-opacity="0.3"/>
+<path d="M114.426 203.334L125.091 189.353C125.819 188.399 125.813 187.167 125.078 186.571L114.426 177.941" stroke="white" stroke-opacity="0.3"/>
+<circle r="1.15424" transform="matrix(0.97237 -0.233445 0 1 97.5905 193.91)" fill="white"/>
+<circle r="1.15424" transform="matrix(0.97237 -0.233445 0 1 105.073 192.114)" fill="white"/>
+<circle r="1.15424" transform="matrix(0.97237 -0.233445 0 1 112.555 190.317)" fill="white"/>
+<path d="M89.5 231L177 208.5" stroke="white" stroke-opacity="0.2"/>
+<path d="M90 253.5L177.5 231" stroke="white" stroke-opacity="0.2"/>
+<path d="M90 276.5L177.5 254" stroke="white" stroke-opacity="0.2"/>
+</g>
+<defs>
+<linearGradient id="paint0_linear_86:14" x1="206" y1="226.66" x2="27.3889" y2="225.324" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0.1"/>
+<stop offset="0.505208" stop-color="white" stop-opacity="0.27"/>
+<stop offset="1" stop-color="white" stop-opacity="0.31"/>
+</linearGradient>
+<linearGradient id="paint1_linear_86:14" x1="206" y1="226.66" x2="27.3889" y2="225.324" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0.1"/>
+<stop offset="0.505208" stop-color="white" stop-opacity="0.27"/>
+<stop offset="1" stop-color="white" stop-opacity="0.31"/>
+</linearGradient>
+<linearGradient id="paint2_linear_86:14" x1="206" y1="226.66" x2="384.611" y2="225.324" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0.1"/>
+<stop offset="0.505208" stop-color="white" stop-opacity="0.27"/>
+<stop offset="1" stop-color="white" stop-opacity="0.31"/>
+</linearGradient>
+<linearGradient id="paint3_linear_86:14" x1="206" y1="264.82" x2="372.777" y2="265.954" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0.29"/>
+<stop offset="0.39232" stop-color="white" stop-opacity="0.31"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+</defs>
+</svg>
diff --git a/public/img/features/more-learn-planet.png b/public/img/features/more-learn-planet.png
new file mode 100644
index 0000000..d032dd5
--- /dev/null
+++ b/public/img/features/more-learn-planet.png
Binary files differ
diff --git a/public/img/features/more-learn-planet.svg b/public/img/features/more-learn-planet.svg
new file mode 100644
index 0000000..c8da634
--- /dev/null
+++ b/public/img/features/more-learn-planet.svg
@@ -0,0 +1,38 @@
+<svg width="301" height="280" viewBox="0 0 301 280" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="2.99479" height="139.98" transform="matrix(0.784262 0.62043 -0.550991 0.834511 269.296 72.6152)" fill="url(#paint0_linear_84:36)"/>
+<circle cx="270.5" cy="73.5" r="1.5" fill="white"/>
+<rect width="2.99479" height="98.1995" transform="matrix(0.784262 0.62043 -0.550991 0.834511 222.374 87.6152)" fill="url(#paint1_linear_84:36)"/>
+<circle cx="223.578" cy="88.5" r="1.5" fill="white"/>
+<rect width="2.99479" height="234.803" transform="matrix(0.784262 0.62043 -0.550991 0.834511 249.374 0.615234)" fill="url(#paint2_linear_84:36)"/>
+<circle cx="250.578" cy="1.5" r="1.5" fill="white"/>
+<rect width="2.99479" height="130.535" transform="matrix(0.784262 0.62043 -0.550991 0.834511 192.374 39.6152)" fill="url(#paint3_linear_84:36)"/>
+<circle cx="193.578" cy="40.5" r="1.5" fill="white"/>
+<circle cx="119.555" cy="284.555" r="153.405" transform="rotate(30 119.555 284.555)" fill="url(#paint4_linear_84:36)"/>
+<path d="M254.998 238.907C321.523 310.534 317.348 350.374 286.812 378.734C256.277 407.095 177.594 372.021 111.069 300.395C44.5432 228.769 7.00002 137 35 117.5C49.5 107.402 76 116 96.5 132" stroke="url(#paint5_linear_84:36)"/>
+<defs>
+<linearGradient id="paint0_linear_84:36" x1="1.49739" y1="0" x2="1.49739" y2="139.98" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0.48"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint1_linear_84:36" x1="1.49739" y1="0" x2="1.49739" y2="98.1995" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0.48"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint2_linear_84:36" x1="1.49739" y1="0" x2="1.49739" y2="234.803" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0.48"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint3_linear_84:36" x1="1.49739" y1="0" x2="1.49739" y2="130.535" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0.48"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint4_linear_84:36" x1="119.555" y1="131.15" x2="119.555" y2="437.96" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0.39"/>
+<stop offset="0.361637" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint5_linear_84:36" x1="35.0494" y1="215.416" x2="202.403" y2="150.446" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0.47"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+</defs>
+</svg>
diff --git a/public/img/features/multilanguage/four.png b/public/img/features/multilanguage/four.png
new file mode 100644
index 0000000..e945938
--- /dev/null
+++ b/public/img/features/multilanguage/four.png
Binary files differ
diff --git a/public/img/features/multilanguage/four.svg b/public/img/features/multilanguage/four.svg
new file mode 100644
index 0000000..d0e4fe8
--- /dev/null
+++ b/public/img/features/multilanguage/four.svg
@@ -0,0 +1,26 @@
+<svg width="283" height="82" viewBox="0 0 283 82" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M106.704 34.9103C106.704 26.245 104.229 21.7964 99.2795 21.5528C97.3101 21.46 95.3871 21.7732 93.5163 22.4982C92.0233 23.0318 91.0182 23.5596 90.4895 24.0932V44.7761C93.6558 46.7597 96.4677 47.6819 98.9193 47.5369C104.107 47.1947 106.704 42.9897 106.704 34.9103ZM112.81 35.2699C112.81 39.6721 111.776 43.3261 109.696 46.2319C107.378 49.5205 104.165 51.2141 100.058 51.3069C96.9615 51.4055 93.772 50.4369 90.4895 48.4069V67.2047L85.1795 65.3139V23.5886C86.051 22.5214 87.1722 21.605 88.5317 20.8278C91.6921 18.9892 95.5323 18.0438 100.052 17.9974L100.128 18.0728C104.258 18.0206 107.442 19.7142 109.679 23.1478C111.764 26.2972 112.81 30.3341 112.81 35.2699Z" fill="#646464"/>
+<path d="M145.263 47.6065C145.263 53.5109 144.67 57.5999 143.485 59.8735C142.294 62.1471 140.028 63.9625 136.682 65.3139C133.969 66.3811 131.035 66.9611 127.886 67.0597L127.009 63.7189C130.21 63.2839 132.464 62.8489 133.771 62.4139C136.345 61.5439 138.111 60.2099 139.081 58.4235C139.86 56.9677 140.243 54.1895 140.243 50.0773V48.6969C136.612 50.3441 132.807 51.1619 128.827 51.1619C126.213 51.1619 123.907 50.3441 121.92 48.6969C119.689 46.9047 118.573 44.6311 118.573 41.8761V19.8128L123.883 17.9974V40.2057C123.883 42.5779 124.65 44.4049 126.184 45.6867C127.718 46.9685 129.705 47.5833 132.139 47.5369C134.573 47.4847 137.182 46.5451 139.953 44.7065V18.7978H145.263V47.6065Z" fill="#646464"/>
+<path d="M165.992 51.0169C165.359 51.0691 164.778 51.0923 164.243 51.0923C161.239 51.0923 158.898 50.3789 157.225 48.9463C155.558 47.5137 154.721 45.5359 154.721 43.0129V22.1329H151.084V18.7979H154.721V9.94128L160.025 8.05627V18.7979H165.992V22.1329H160.025V42.8679C160.025 44.8573 160.56 46.2667 161.629 47.0903C162.547 47.7689 164.005 48.1575 165.992 48.2561V51.0169Z" fill="#646464"/>
+<path d="M198.142 50.5819H192.832V30.1194C192.832 28.0372 192.344 26.245 191.374 24.7486C190.253 23.055 188.696 22.2082 186.697 22.2082C184.263 22.2082 181.219 23.49 177.565 26.0536V50.5819H172.255V1.6704L177.565 0V22.2778C180.957 19.8128 184.664 18.5774 188.69 18.5774C191.502 18.5774 193.779 19.5228 195.522 21.4078C197.271 23.2928 198.142 25.6418 198.142 28.449V50.5819Z" fill="#646464"/>
+<path d="M226.366 34.0751C226.366 30.7459 225.732 27.9966 224.472 25.8216C222.973 23.171 220.643 21.7732 217.494 21.6282C211.673 21.9646 208.768 26.129 208.768 34.1099C208.768 37.7697 209.372 40.8263 210.592 43.2797C212.149 46.4059 214.485 47.9487 217.599 47.8965C223.443 47.8501 226.366 43.2449 226.366 34.0751ZM232.181 34.1099C232.181 38.8485 230.967 42.7925 228.544 45.9419C225.878 49.4683 222.194 51.2373 217.494 51.2373C212.835 51.2373 209.204 49.4683 206.584 45.9419C204.208 42.7925 203.023 38.8485 203.023 34.1099C203.023 29.6555 204.306 25.9086 206.874 22.8578C209.587 19.6214 213.155 17.9974 217.564 17.9974C221.974 17.9974 225.564 19.6214 228.329 22.8578C230.897 25.9086 232.181 29.6555 232.181 34.1099Z" fill="#646464"/>
+<path d="M262.624 50.5819H257.314V28.9594C257.314 26.5872 256.599 24.737 255.17 23.403C253.741 22.0748 251.835 21.431 249.459 21.4832C246.938 21.5296 244.538 22.3532 242.261 23.9482V50.5819H236.951V23.2928C240.007 21.0714 242.819 19.6214 245.386 18.9428C247.809 18.3106 249.947 17.9974 251.789 17.9974C253.049 17.9974 254.235 18.1192 255.35 18.3628C257.436 18.8442 259.132 19.7374 260.439 21.0482C261.898 22.4982 262.624 24.2382 262.624 26.274V50.5819Z" fill="#646464"/>
+<path d="M32.7338 1.86615C30.0017 1.87882 27.3927 2.11144 25.097 2.51698C18.3342 3.70976 17.1064 6.20635 17.1064 10.8105V16.8912H33.0877V18.9181H17.1064H11.1087C6.4641 18.9181 2.39714 21.7051 1.12505 27.007C-0.342296 33.0842 -0.407381 36.8765 1.12505 43.2221C2.26105 47.9456 4.974 51.3111 9.61861 51.3111H15.1134V44.0217C15.1134 38.7556 19.6773 34.1104 25.097 34.1104H41.0597C45.5032 34.1104 49.0504 30.4579 49.0504 26.0029V10.8105C49.0504 6.48666 45.3967 3.23861 41.0597 2.51698C38.3144 2.06074 35.4658 1.85347 32.7338 1.86615ZM24.0912 6.75672C25.742 6.75672 27.09 8.12453 27.09 9.80635C27.09 11.4822 25.742 12.8374 24.0912 12.8374C22.4345 12.8374 21.0924 11.4822 21.0924 9.80635C21.0924 8.12453 22.4345 6.75672 24.0912 6.75672Z" fill="url(#paint0_linear_1:426)"/>
+<path d="M51.0434 18.9182V26.003C51.0434 31.4958 46.3789 36.1189 41.0597 36.1189H25.097C20.7246 36.1189 17.1064 39.8549 17.1064 44.2264V59.4188C17.1064 63.7426 20.8725 66.2859 25.097 67.5264C30.1558 69.0114 35.0069 69.2798 41.0597 67.5264C45.0831 66.3634 49.0504 64.0229 49.0504 59.4188V53.3381H33.0877V51.3113H49.0504H57.041C61.6857 51.3113 63.4164 48.0769 65.0317 43.2223C66.7002 38.2245 66.6292 33.4184 65.0317 27.0072C63.8839 22.3911 61.6916 18.9182 57.041 18.9182H51.0434ZM42.0655 57.3919C43.7222 57.3919 45.0644 58.7471 45.0644 60.423C45.0644 62.1048 43.7222 63.4726 42.0655 63.4726C40.4148 63.4726 39.0667 62.1048 39.0667 60.423C39.0667 58.7471 40.4148 57.3919 42.0655 57.3919Z" fill="url(#paint1_linear_1:426)"/>
+<path d="M272.964 14.0717H273.895V8.24242H276.1V7.54761H270.759V8.24242H272.964V14.0717ZM276.926 14.0717H277.721V8.74775L279.448 14.071H280.333L282.132 8.76579V14.0717H283V7.54761H281.852L279.886 13.1368L278.209 7.54761H276.926V14.0717Z" fill="#646464"/>
+<path opacity="0.44382" d="M54.6853 77.8542C54.6853 78.3986 54.1314 78.9377 53.0551 79.4407C51.9788 79.9437 50.4013 80.4008 48.4126 80.7857C46.4239 81.1707 44.063 81.4761 41.4647 81.6845C38.8663 81.8928 36.0814 82.0001 33.269 82.0001C30.4566 82.0001 27.6717 81.8928 25.0734 81.6845C22.475 81.4761 20.1141 81.1707 18.1254 80.7857C16.1367 80.4008 14.5592 79.9437 13.4829 79.4407C12.4067 78.9377 11.8527 78.3986 11.8527 77.8542C11.8527 77.3097 12.4067 76.7706 13.4829 76.2676C14.5592 75.7646 16.1367 75.3075 18.1254 74.9226C20.1141 74.5376 22.475 74.2322 25.0734 74.0238C27.6717 73.8155 30.4566 73.7083 33.269 73.7083C36.0814 73.7083 38.8663 73.8155 41.4647 74.0238C44.063 74.2322 46.4239 74.5376 48.4126 74.9226C50.4013 75.3075 51.9788 75.7646 53.0551 76.2676C54.1314 76.7706 54.6853 77.3097 54.6853 77.8542V77.8542Z" fill="url(#paint2_radial_1:426)"/>
+<defs>
+<linearGradient id="paint0_linear_1:426" x1="5.21608e-08" y1="1.8656" x2="36.7996" y2="33.2761" gradientUnits="userSpaceOnUse">
+<stop stop-color="#5A9FD4"/>
+<stop offset="1" stop-color="#306998"/>
+</linearGradient>
+<linearGradient id="paint1_linear_1:426" x1="41.6815" y1="59.9117" x2="28.4898" y2="41.3955" gradientUnits="userSpaceOnUse">
+<stop stop-color="#FFD43B"/>
+<stop offset="1" stop-color="#FFE873"/>
+</linearGradient>
+<radialGradient id="paint2_radial_1:426" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(33.269 77.8542) rotate(-90) scale(4.1459 18.2533)">
+<stop stop-color="#B8B8B8" stop-opacity="0.498039"/>
+<stop offset="1" stop-color="#7F7F7F" stop-opacity="0"/>
+</radialGradient>
+</defs>
+</svg>
diff --git a/public/img/features/multilanguage/multi.svg b/public/img/features/multilanguage/multi.svg
new file mode 100644
index 0000000..3b73af5
--- /dev/null
+++ b/public/img/features/multilanguage/multi.svg
@@ -0,0 +1,37 @@
+<svg width="669" height="476" viewBox="0 0 669 476" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M273.821 53.5903C273.821 38.9383 284.179 33.0319 296.961 40.389L616.167 224.835C628.866 232.109 639.224 249.932 639.224 264.584L638.603 484.074C638.603 498.726 628.245 504.612 615.462 497.255L296.236 312.809C283.495 305.452 273.22 287.65 273.261 272.998L273.821 53.5903Z" stroke="white" stroke-miterlimit="10"/>
+<path d="M275.312 11.3129C266.259 6.0697 258.904 10.2767 258.863 20.6803L258.034 288.624C258.034 298.986 265.306 311.69 274.359 316.933L636.904 526.352C645.937 531.574 653.312 527.388 653.333 516.984L654.099 249.041C654.099 238.678 646.807 225.954 637.753 220.731L275.312 11.3129Z" fill="#0070CC" stroke="white" stroke-linejoin="round"/>
+<path d="M263.648 10.1524L277.508 2.11142C280.491 0.370587 284.614 0.619278 289.171 3.25126L651.654 212.67C660.708 217.892 668.021 230.575 668 240.979L667.233 508.923C667.233 514.083 665.39 517.73 662.448 519.43L648.609 527.491C651.551 525.771 653.374 522.145 653.374 516.984L654.14 249.041C654.14 238.679 646.848 225.954 637.795 220.731L275.25 11.313C272.899 9.81754 270.163 9.03977 267.377 9.07477C266.045 9.12375 264.745 9.49343 263.586 10.1524H263.648Z" fill="#0070CC" stroke="white" stroke-linejoin="round"/>
+<path d="M272.018 315.669C262.965 310.446 248.339 310.426 239.348 315.669L7.77502 450.376C-1.23676 455.599 -1.17468 464.096 7.8786 469.318L370.423 678.633C379.477 683.856 394.124 683.856 403.115 678.633L634.688 543.926C643.7 538.682 643.637 530.206 634.688 524.984L272.018 315.669Z" fill="#0070CC" stroke="white" stroke-linejoin="round"/>
+<path d="M121.717 419.124L264.664 335.999C267.197 334.703 270.001 334.026 272.847 334.026C275.692 334.026 278.497 334.703 281.03 335.999L599.531 519.906C604.047 522.518 604.068 526.766 599.531 529.377L456.584 612.523C454.049 613.81 451.245 614.481 448.401 614.481C445.558 614.481 442.754 613.81 440.218 612.523L121.8 428.616C117.263 425.984 117.222 421.756 121.8 419.124" stroke="white" stroke-linejoin="round"/>
+<path d="M145.956 565.044L7.81586 485.255C3.27887 482.623 1 479.183 1 475.722V459.702C1 463.143 3.25818 466.604 7.81586 469.236L370.361 678.55C379.414 683.773 394.061 683.773 403.052 678.55L634.625 543.843C636.599 542.757 638.316 541.258 639.659 539.449C640.721 537.99 641.307 536.239 641.337 534.434V550.475C641.337 553.873 639.1 557.272 634.625 559.863L403.052 694.57C394.061 699.813 379.414 699.813 370.361 694.57L208.314 601.042" fill="#0070CC"/>
+<path d="M145.956 565.044L7.81586 485.255C3.27887 482.623 1 479.183 1 475.722V459.702C1 463.143 3.25816 466.604 7.81586 469.236L370.361 678.55C379.414 683.773 394.061 683.773 403.052 678.55L634.625 543.843C636.599 542.757 638.316 541.258 639.659 539.449C640.721 537.99 641.307 536.239 641.337 534.434V534.434V550.475C641.337 553.873 639.1 557.272 634.625 559.863L403.052 694.57C394.061 699.813 379.414 699.813 370.361 694.57L208.314 601.042" stroke="white" stroke-linejoin="round"/>
+<path d="M651.924 212.297L638.168 220.172" stroke="white" stroke-linejoin="round"/>
+<path d="M667.648 241.787L653.892 249.662" stroke="white" stroke-linejoin="round"/>
+<path d="M559.799 232.714L570.486 226.544L570.486 447.924L559.799 454.094L559.799 232.714Z" fill="#0070CC" stroke="white"/>
+<path d="M305.372 73.48L570.486 226.544L559.799 232.714L294.685 79.6499L305.372 73.48Z" fill="#0070CC" stroke="white"/>
+<path d="M294.685 79.6506L559.799 232.714L559.799 454.094L294.685 301.031L294.685 79.6506Z" fill="#0070CC" stroke="white"/>
+<path d="M308.418 121.41C308.418 120.306 309.194 119.858 310.15 120.41L541.793 254.149C542.75 254.702 543.525 256.045 543.525 257.149L543.525 425.908C543.525 427.013 542.75 427.46 541.793 426.908L310.15 293.169C309.194 292.617 308.418 291.274 308.418 290.169L308.418 121.41Z" fill="#0070CC" stroke="white"/>
+<mask id="path-14-inside-1_4:2" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M316.968 108.613C316.968 111.339 315.054 112.444 312.693 111.081C310.332 109.717 308.418 106.403 308.418 103.677C308.418 100.951 310.332 99.8455 312.693 101.209C315.054 102.572 316.968 105.886 316.968 108.613ZM329.616 116.017C329.616 118.743 327.702 119.848 325.341 118.485C322.981 117.121 321.067 113.807 321.067 111.081C321.067 108.354 322.981 107.25 325.341 108.613C327.702 109.976 329.616 113.29 329.616 116.017ZM337.836 125.889C340.196 127.252 342.11 126.147 342.11 123.421C342.11 120.694 340.196 117.38 337.836 116.017C335.475 114.654 333.561 115.758 333.561 118.485C333.561 121.211 335.475 124.525 337.836 125.889Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M316.968 108.613C316.968 111.339 315.054 112.444 312.693 111.081C310.332 109.717 308.418 106.403 308.418 103.677C308.418 100.951 310.332 99.8455 312.693 101.209C315.054 102.572 316.968 105.886 316.968 108.613ZM329.616 116.017C329.616 118.743 327.702 119.848 325.341 118.485C322.981 117.121 321.067 113.807 321.067 111.081C321.067 108.354 322.981 107.25 325.341 108.613C327.702 109.976 329.616 113.29 329.616 116.017ZM337.836 125.889C340.196 127.252 342.11 126.147 342.11 123.421C342.11 120.694 340.196 117.38 337.836 116.017C335.475 114.654 333.561 115.758 333.561 118.485C333.561 121.211 335.475 124.525 337.836 125.889Z" fill="#0070CC"/>
+<path d="M312.693 111.081L312.193 111.947H312.193L312.693 111.081ZM312.693 101.209L313.193 100.343V100.343L312.693 101.209ZM325.341 108.613L325.841 107.747L325.341 108.613ZM337.836 116.017L338.336 115.151L337.836 116.017ZM312.193 111.947C313.556 112.733 315.024 112.934 316.216 112.246C317.408 111.558 317.968 110.186 317.968 108.613H315.968C315.968 109.765 315.571 110.309 315.216 110.514C314.861 110.719 314.191 110.791 313.193 110.214L312.193 111.947ZM307.418 103.677C307.418 105.256 307.966 106.938 308.804 108.39C309.642 109.841 310.825 111.157 312.193 111.947L313.193 110.214C312.2 109.641 311.245 108.618 310.536 107.39C309.827 106.162 309.418 104.823 309.418 103.677H307.418ZM313.193 100.343C311.83 99.5559 310.362 99.3549 309.17 100.043C307.978 100.731 307.418 102.103 307.418 103.677H309.418C309.418 102.524 309.815 101.98 310.17 101.775C310.525 101.57 311.195 101.498 312.193 102.075L313.193 100.343ZM317.968 108.613C317.968 107.033 317.42 105.351 316.582 103.899C315.744 102.448 314.561 101.132 313.193 100.343L312.193 102.075C313.186 102.648 314.141 103.671 314.85 104.899C315.559 106.128 315.968 107.466 315.968 108.613H317.968ZM324.841 119.351C326.204 120.137 327.672 120.338 328.864 119.65C330.056 118.962 330.616 117.59 330.616 116.017H328.616C328.616 117.169 328.219 117.713 327.864 117.918C327.509 118.123 326.84 118.195 325.841 117.618L324.841 119.351ZM320.067 111.081C320.067 112.66 320.615 114.342 321.453 115.794C322.291 117.245 323.473 118.561 324.841 119.351L325.841 117.618C324.849 117.045 323.894 116.022 323.185 114.794C322.476 113.566 322.067 112.227 322.067 111.081H320.067ZM325.841 107.747C324.479 106.96 323.011 106.759 321.819 107.447C320.627 108.135 320.067 109.507 320.067 111.081H322.067C322.067 109.928 322.464 109.384 322.819 109.179C323.174 108.974 323.843 108.902 324.841 109.479L325.841 107.747ZM330.616 116.017C330.616 114.437 330.068 112.755 329.23 111.303C328.392 109.852 327.21 108.536 325.841 107.747L324.841 109.479C325.834 110.052 326.789 111.075 327.498 112.303C328.207 113.532 328.616 114.87 328.616 116.017H330.616ZM341.11 123.421C341.11 124.573 340.713 125.117 340.358 125.322C340.003 125.527 339.334 125.599 338.336 125.022L337.336 126.755C338.698 127.541 340.166 127.742 341.358 127.054C342.55 126.366 343.11 124.994 343.11 123.421H341.11ZM337.336 116.883C338.328 117.456 339.283 118.479 339.992 119.707C340.701 120.936 341.11 122.274 341.11 123.421H343.11C343.11 121.841 342.562 120.159 341.724 118.707C340.886 117.256 339.704 115.94 338.336 115.151L337.336 116.883ZM334.561 118.485C334.561 117.332 334.958 116.788 335.313 116.583C335.668 116.378 336.337 116.306 337.336 116.883L338.336 115.151C336.973 114.364 335.505 114.163 334.313 114.851C333.121 115.539 332.561 116.911 332.561 118.485H334.561ZM338.336 125.022C337.343 124.449 336.388 123.426 335.679 122.198C334.97 120.97 334.561 119.631 334.561 118.485H332.561C332.561 120.064 333.109 121.746 333.947 123.198C334.785 124.649 335.967 125.965 337.336 126.755L338.336 125.022Z" fill="white" mask="url(#path-14-inside-1_4:2)"/>
+<rect width="43.4535" height="7.26381" transform="matrix(-0.866025 -0.5 -2.20305e-08 1 436.335 292.597)" fill="#0070CC" stroke="white"/>
+<rect width="43.4535" height="7.26382" transform="matrix(-0.866025 -0.5 -2.20305e-08 1 364.207 250.954)" fill="#0070CC" stroke="white"/>
+<rect width="28.969" height="7.26382" transform="matrix(-0.866025 -0.5 -2.20305e-08 1 470.831 312.513)" fill="#0070CC" stroke="white"/>
+<rect width="18.1056" height="7.26379" transform="matrix(-0.866025 -0.499998 -2.20306e-08 1 389.295 265.439)" fill="#0070CC" stroke="white"/>
+<rect width="28.969" height="7.26381" transform="matrix(0.866025 0.499999 -2.20305e-08 1 326.575 200.172)" fill="#0070CC" stroke="white"/>
+<rect width="25.3479" height="7.26382" transform="matrix(-0.866025 -0.5 -2.20305e-08 1 348.527 256.429)" fill="#0070CC" stroke="white"/>
+<rect width="28.969" height="7.26382" transform="matrix(-0.866025 -0.5 -2.20305e-08 1 486.511 336.094)" fill="#0070CC" stroke="white"/>
+<rect width="65.1803" height="7.26382" transform="matrix(-0.866025 -0.5 -2.20305e-08 1 452.015 316.178)" fill="#0070CC" stroke="white"/>
+<rect width="32.5901" height="7.26382" transform="matrix(-0.866025 -0.5 -2.20305e-08 1 386.159 278.156)" fill="#0070CC" stroke="white"/>
+<rect width="25.3479" height="7.26382" transform="matrix(0.866025 0.500001 -2.20305e-08 1 430.063 274.448)" fill="#0070CC" stroke="white"/>
+<rect width="65.1802" height="7.26381" transform="matrix(0.866025 0.5 -2.20305e-08 1 326.575 214.7)" fill="#0070CC" stroke="white"/>
+<rect width="32.5901" height="7.26381" transform="matrix(0.866025 0.5 -2.20305e-08 1 392.431 252.721)" fill="#0070CC" stroke="white"/>
+<rect width="43.4535" height="7.26381" transform="matrix(0.866025 0.5 -2.20305e-08 1 361.071 173.014)" fill="#0070CC" stroke="white"/>
+<rect width="28.969" height="7.26381" transform="matrix(0.866025 0.5 -2.20305e-08 1 326.576 153.098)" fill="#0070CC" stroke="white"/>
+<rect width="33.3178" height="7.26381" transform="matrix(0.866025 0.5 -2.20305e-08 1 408.111 200.172)" fill="#0070CC" stroke="white"/>
+<rect width="65.1802" height="7.26381" transform="matrix(0.866025 0.5 -2.20305e-08 1 326.575 167.625)" fill="#0070CC" stroke="white"/>
+<rect width="32.5901" height="7.26381" transform="matrix(0.866025 0.5 -2.20305e-08 1 392.431 205.646)" fill="#0070CC" stroke="white"/>
+</svg>
diff --git a/public/img/features/multilanguage/one.svg b/public/img/features/multilanguage/one.svg
new file mode 100644
index 0000000..8e014dd
--- /dev/null
+++ b/public/img/features/multilanguage/one.svg
@@ -0,0 +1,15 @@
+<svg width="123" height="138" viewBox="0 0 123 138" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g clip-path="url(#clip0_1:345)">
+<path d="M121.435 103.5C122.4 101.833 123 99.9552 123 98.2688V39.7309C123 38.0445 122.401 36.167 121.436 34.5002L61.5 69L121.435 103.5Z" fill="#00599C"/>
+<path d="M66.826 136.735L117.674 107.466C119.139 106.623 120.47 105.167 121.435 103.5L61.5 69L1.56483 103.5C2.52994 105.167 3.86164 106.623 5.32598 107.466L56.174 136.735C59.1031 138.421 63.8969 138.421 66.826 136.735Z" fill="#004482"/>
+<path d="M121.436 34.4998C120.47 32.8327 119.138 31.3767 117.674 30.5335L66.826 1.26478C63.8969 -0.421594 59.1031 -0.421594 56.174 1.26478L5.32598 30.5335C2.39649 32.2195 0 36.3585 0 39.7309V98.2687C0 99.9551 0.599323 101.833 1.56483 103.5L61.5 69L121.436 34.4998Z" fill="#659AD2"/>
+<path d="M61.5 109.877C38.8925 109.877 20.5 91.5397 20.5 69.0001C20.5 46.4604 38.8925 28.123 61.5 28.123C76.088 28.123 89.6931 35.9498 97.0056 48.5487L79.2618 58.7856C75.602 52.4793 68.7956 48.5616 61.5 48.5616C50.1961 48.5616 41 57.73 41 69.0001C41 80.2697 50.1961 89.4386 61.5 89.4386C68.7964 89.4386 75.6028 85.5208 79.263 79.2133L97.0068 89.4498C89.6943 102.05 76.0888 109.877 61.5 109.877Z" fill="white"/>
+<path d="M102.5 66.7289H97.9442V62.1871H93.3892V66.7289H88.8333V71.2706H93.3892V75.8128H97.9442V71.2706H102.5V66.7289Z" fill="white"/>
+<path d="M119.583 66.7289H115.027V62.1871H110.472V66.7289H105.917V71.2706H110.472V75.8128H115.027V71.2706H119.583V66.7289Z" fill="white"/>
+</g>
+<defs>
+<clipPath id="clip0_1:345">
+<rect width="123" height="138" fill="white"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/public/img/features/multilanguage/three.png b/public/img/features/multilanguage/three.png
new file mode 100644
index 0000000..7b84781
--- /dev/null
+++ b/public/img/features/multilanguage/three.png
Binary files differ
diff --git a/public/img/features/multilanguage/three.svg b/public/img/features/multilanguage/three.svg
new file mode 100644
index 0000000..bf577ae
--- /dev/null
+++ b/public/img/features/multilanguage/three.svg
@@ -0,0 +1,143 @@
+<svg width="126" height="119" viewBox="0 0 126 119" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M105.461 62.4288C105.461 62.2195 105.403 62.0698 105.283 61.972C105.151 61.8667 104.923 61.8105 104.605 61.8105H104.148V63.0551H104.7C105.209 63.0551 105.461 62.8458 105.461 62.4288ZM106.173 65.0238H105.545L105.145 64.1481C104.941 63.7093 104.724 63.4899 104.486 63.4899H104.148V65.0238H103.631V61.3736H104.667C105.129 61.3736 105.475 61.4726 105.712 61.6789C105.914 61.8563 106.014 62.0838 106.014 62.3671C106.014 62.6184 105.932 62.8298 105.767 63.0052C105.605 63.1828 105.374 63.3025 105.078 63.3644V63.3802C105.283 63.4281 105.489 63.6515 105.688 64.0543L106.173 65.0258V65.0238ZM107.32 63.2346C107.32 62.5166 107.073 61.9103 106.58 61.4295C106.085 60.9489 105.481 60.7076 104.768 60.7076C104.033 60.7076 103.422 60.9489 102.936 61.4337C102.451 61.9203 102.21 62.5225 102.21 63.2346C102.21 63.9627 102.461 64.571 102.961 65.0557C103.454 65.5403 104.058 65.7797 104.768 65.7797C105.475 65.7797 106.078 65.5384 106.576 65.0476C107.073 64.5649 107.32 63.9587 107.32 63.2346ZM107.669 63.2188C107.669 64.0248 107.389 64.7008 106.827 65.2453C106.266 65.7939 105.577 66.067 104.754 66.067C103.925 66.067 103.236 65.7978 102.689 65.2692C102.141 64.7328 101.87 64.0586 101.87 63.2409C101.87 62.441 102.147 61.7689 102.703 61.2165C103.258 60.666 103.951 60.3907 104.778 60.3907C105.589 60.3907 106.27 60.654 106.821 61.1785C107.387 61.717 107.669 62.3952 107.669 63.2188Z" fill="black"/>
+<path d="M28.9402 73.3969H27.1549V63.2726C27.1549 62.4729 27.208 61.4996 27.3031 60.3507H27.2628C27.0956 61.0228 26.9427 61.5095 26.8079 61.8108L21.6187 73.3969H20.7492L15.5498 61.8945C15.4033 61.5733 15.25 61.0567 15.0949 60.3507H15.0563C15.111 60.955 15.1416 61.9344 15.1416 63.2926V73.3969H13.4206V58.3203H15.7756L20.4435 68.8334C20.7957 69.6253 21.0232 70.2277 21.1339 70.6385H21.2079C21.5118 69.8148 21.7533 69.1964 21.9366 68.7895L26.705 58.3203H28.9393V73.3969H28.9402Z" fill="black"/>
+<path d="M34.4322 73.3964H32.6972V62.6299H34.4322V73.3964ZM34.7322 58.7704C34.7322 59.0876 34.6194 59.3528 34.3959 59.5703C34.1766 59.7876 33.905 59.8974 33.5868 59.8974C33.2768 59.8974 33.007 59.7921 32.7858 59.5823C32.5644 59.3709 32.4555 59.1015 32.4555 58.7704C32.4555 58.4593 32.565 58.1941 32.7858 57.9787C33.007 57.7633 33.2768 57.6595 33.5868 57.6595C33.9048 57.6595 34.1766 57.7633 34.3959 57.9787C34.6194 58.1941 34.7322 58.4593 34.7322 58.7704Z" fill="black"/>
+<path d="M45.2752 72.8982C44.4419 73.4048 43.4475 73.6561 42.2981 73.6561C40.7403 73.6561 39.4862 73.1436 38.5281 72.1203C37.5981 71.127 37.1292 69.8447 37.1292 68.2729C37.1292 66.5096 37.6384 65.0817 38.665 63.9967C39.6856 62.9096 41.0584 62.3671 42.7854 62.3671C43.7294 62.3671 44.5667 62.5506 45.2994 62.9136V64.6828C44.4883 64.1183 43.6308 63.839 42.7108 63.839C41.6038 63.839 40.7041 64.222 40.0055 64.986C39.2788 65.7678 38.9105 66.813 38.9105 68.1174C38.9105 69.3699 39.2468 70.3612 39.915 71.0932C40.5853 71.8212 41.477 72.1862 42.6021 72.1862C43.5522 72.1862 44.4419 71.877 45.2752 71.2608V72.8982Z" fill="black"/>
+<path d="M53.5743 64.3766C53.2684 64.1433 52.8277 64.0295 52.2459 64.0295C51.5394 64.0295 50.9456 64.3428 50.4646 64.9749C49.919 65.681 49.6473 66.6584 49.6473 67.9069V73.3959H47.9082V62.6294H49.6473V64.8494H49.6892C49.9449 64.0635 50.3395 63.4591 50.8668 63.0304C51.3599 62.6394 51.9175 62.4419 52.5314 62.4419C52.9943 62.4419 53.3386 62.4914 53.574 62.5887V64.3758L53.5743 64.3766Z" fill="black"/>
+<path d="M63.2672 68.0327C63.2672 66.6546 62.9532 65.6015 62.3252 64.8794C61.7154 64.1853 60.8638 63.8383 59.7669 63.8383C58.6859 63.8383 57.8185 64.1893 57.1702 64.8914C56.4838 65.6413 56.1417 66.7004 56.1417 68.0747C56.1417 69.3631 56.4678 70.3743 57.126 71.0963C57.7801 71.8223 58.6618 72.1853 59.7669 72.1853C60.9102 72.1853 61.7858 71.8164 62.3856 71.0824C62.9733 70.3644 63.2672 69.3491 63.2672 68.0327ZM65.0506 67.9721C65.0506 69.6874 64.5616 71.0657 63.5873 72.0988C62.6091 73.136 61.2927 73.6546 59.6381 73.6546C58.0077 73.6546 56.7093 73.136 55.7573 72.0988C54.8253 71.0995 54.3563 69.7791 54.3563 68.1377C54.3563 66.2648 54.8856 64.8207 55.9484 63.7955C56.9307 62.8442 58.245 62.3655 59.8917 62.3655C61.512 62.3655 62.7782 62.866 63.6899 63.8574C64.5938 64.8547 65.0506 66.2269 65.0506 67.9721Z" fill="black"/>
+<path d="M73.6755 70.516C73.6755 71.3976 73.3435 72.1276 72.6771 72.71C71.9506 73.3403 70.9522 73.6554 69.6962 73.6554C68.6675 73.6554 67.7657 73.442 67.0008 73.0072V71.1542C67.8524 71.8404 68.7923 72.1855 69.825 72.1855C71.2018 72.1855 71.8921 71.6829 71.8921 70.6816C71.8921 70.2607 71.7408 69.9117 71.4353 69.6424C71.1293 69.3672 70.5354 69.0381 69.6519 68.6531C68.742 68.2582 68.0939 67.8534 67.7115 67.4325C67.2525 66.9338 67.021 66.2857 67.021 65.4878C67.021 64.5943 67.3814 63.8503 68.0939 63.258C68.8084 62.6636 69.7263 62.3663 70.8535 62.3663C71.7171 62.3663 72.49 62.5339 73.1763 62.871V64.6062C72.4598 64.0936 71.6406 63.8383 70.7106 63.8383C70.135 63.8383 69.672 63.9803 69.3277 64.2571C68.9796 64.5403 68.8044 64.9015 68.8044 65.3422C68.8044 65.8189 68.9509 66.1899 69.2413 66.4551C69.4989 66.7005 70.0464 66.9997 70.8717 67.3487C71.7995 67.7337 72.4699 68.1326 72.8784 68.5414C73.4079 69.0581 73.6755 69.7163 73.6755 70.516Z" fill="black"/>
+<path d="M84.3041 68.0327C84.3041 66.6546 83.9901 65.6015 83.3602 64.8794C82.7523 64.1853 81.8988 63.8383 80.8038 63.8383C79.7228 63.8383 78.8553 64.1893 78.2032 64.8914C77.5188 65.6413 77.1785 66.7004 77.1785 68.0747C77.1785 69.3631 77.5046 70.3743 78.1568 71.0963C78.8191 71.8223 79.7008 72.1853 80.8038 72.1853C81.949 72.1853 82.8226 71.8164 83.4225 71.0824C84.0102 70.3644 84.3041 69.3491 84.3041 68.0327ZM86.0915 67.9721C86.0915 69.6874 85.5984 71.0657 84.6221 72.0988C83.6479 73.136 82.3315 73.6546 80.6769 73.6546C79.0446 73.6546 77.7462 73.136 76.7942 72.0988C75.8622 71.0995 75.3932 69.7791 75.3932 68.1377C75.3932 66.2648 75.9266 64.8207 76.9834 63.7955C77.9657 62.8442 79.2821 62.3655 80.9305 62.3655C82.551 62.3655 83.8151 62.866 84.7249 63.8574C85.6307 64.8547 86.0915 66.2269 86.0915 67.9721Z" fill="black"/>
+<path d="M93.7551 58.9716C93.4129 58.7841 93.0326 58.6884 92.5997 58.6884C91.3819 58.6884 90.778 59.4482 90.778 60.9702V62.6296H93.3243V64.0896H90.778V73.3961H89.0369V64.0896H87.1891V62.6296H89.0369V60.8845C89.0369 59.6996 89.4033 58.7701 90.148 58.1C90.7862 57.5175 91.567 57.2284 92.495 57.2284C93.0326 57.2284 93.4512 57.2922 93.7551 57.4159V58.9716Z" fill="black"/>
+<path d="M100.619 73.288C100.209 73.5214 99.6612 73.6371 98.9848 73.6371C97.0887 73.6371 96.1407 72.5779 96.1407 70.4597V64.0912H94.2768V62.6292H96.1407V60.0024C96.6963 59.8288 97.2739 59.6394 97.8839 59.444V62.6292H100.619V64.0912H97.8839V70.1666C97.8839 70.8886 98.003 71.4051 98.2522 71.7043C98.5038 72.0135 98.9145 72.1651 99.4942 72.1651C99.9269 72.1651 100.301 72.0502 100.619 71.8181V73.288Z" fill="black"/>
+<path d="M6.6024 115.417C6.6024 116.26 6.29853 116.99 5.68453 117.607C5.07261 118.221 4.32979 118.53 3.45829 118.53C2.60677 118.53 1.88214 118.221 1.28842 117.607C0.694548 116.99 0.398735 116.26 0.398735 115.417C0.398735 114.549 0.694548 113.817 1.28842 113.211C1.88214 112.602 2.60677 112.301 3.45829 112.301C4.32979 112.301 5.07261 112.607 5.68453 113.223C6.29853 113.839 6.6024 114.571 6.6024 115.417Z" fill="black"/>
+<path d="M45.5427 117.896H39.8704L19.2809 86.3886C18.7997 85.6307 18.3851 84.8069 18.0329 83.9074H17.8637C18.0102 84.751 18.0852 86.562 18.0852 89.3365V117.896H13.4093V78.3666H19.4781L39.4518 109.378C40.2469 110.608 40.7902 111.49 41.0661 112.02H41.1772C40.992 110.883 40.8956 108.945 40.8956 106.208V78.3666H45.5432V117.896H45.5427Z" fill="black"/>
+<path d="M75.5193 117.896H54.3761V78.3666H74.6014V82.5551H59.0481V95.705H73.4602V99.8956H59.0481V113.706H75.5193V117.896Z" fill="black"/>
+<path d="M107.59 82.5555H96.0984V117.897H91.4245V82.5555H79.9109V78.3651H107.59V82.5555Z" fill="black"/>
+<path d="M43.9571 10.0899C48.4679 23.7583 50.1768 48.1416 63.3671 48.1416C64.3715 48.1416 65.386 48.0443 66.4046 47.8523C54.4139 45.082 52.9928 20.9639 45.676 8.47412C45.1023 8.99076 44.5327 9.52928 43.9571 10.0899Z" fill="url(#paint0_linear_1:369)"/>
+<path d="M45.6761 8.47415C52.9928 20.9639 54.4139 45.082 66.4046 47.8523C67.3466 47.6808 68.2906 47.4215 69.2367 47.0944C58.4739 41.8687 55.4988 18.4489 47.1897 7.17371C46.6865 7.58872 46.1813 8.02353 45.6761 8.47415Z" fill="url(#paint1_linear_1:369)"/>
+<path d="M56.2183 1.04626C55.2159 1.04626 54.1993 1.14358 53.1789 1.33556C50.5098 1.83418 47.7986 2.97298 45.0651 4.69626C45.8118 5.42626 46.5223 6.2619 47.1905 7.17348C49.9704 4.88773 52.732 3.19843 55.4837 2.18313C56.5162 1.80419 57.5449 1.51904 58.5774 1.33157C57.8326 1.14389 57.0476 1.04626 56.2183 1.04626Z" fill="#14559A"/>
+<path d="M77.6384 42.2776C78.7394 41.4101 79.8425 40.4506 80.9475 39.4036C76.3642 25.7988 74.7238 1.06653 61.4408 1.06653C60.4907 1.06653 59.5326 1.15428 58.5765 1.32979C70.6759 4.3117 72.2258 30.3962 77.6384 42.2776Z" fill="url(#paint2_linear_1:369)"/>
+<path d="M58.5769 1.33064C57.8322 1.14316 57.0472 1.04553 56.2178 1.04553L61.4412 1.0645C60.4911 1.0645 59.533 1.15225 58.5769 1.32985" fill="#3092C4"/>
+<path d="M77.4064 45.1677C76.8871 44.677 76.394 44.1385 75.9088 43.5641C73.6745 45.1318 71.4483 46.3205 69.2363 47.0944C70.0232 47.4754 70.8485 47.7587 71.7242 47.9342C72.4024 48.0714 73.105 48.1416 73.8436 48.1416C76.3256 48.1416 78.2881 47.8504 79.9587 47.0566C79.0389 46.5639 78.1955 45.9256 77.4064 45.1677Z" fill="#1969BC"/>
+<path d="M55.4827 2.18547C66.32 7.80205 67.2621 33.2364 75.9093 43.5641C76.489 43.1593 77.0627 42.7304 77.6364 42.2775C72.2238 30.3962 70.6759 4.30954 58.5785 1.32971C57.5459 1.52118 56.5153 1.80459 55.4827 2.18547Z" fill="url(#paint3_linear_1:369)"/>
+<path d="M47.1897 7.1738C55.4988 18.449 58.4739 41.8688 69.2367 47.0945C71.4488 46.3206 73.675 45.1319 75.9093 43.5642C67.262 33.2365 66.32 7.80213 55.4827 2.18555C52.7311 3.19875 49.9695 4.88805 47.1897 7.1738Z" fill="url(#paint4_linear_1:369)"/>
+<path d="M38.6409 9.76065C37.3385 12.6788 36.008 16.5141 34.3997 21.5205C37.5982 17.0546 40.7866 13.2072 43.9568 10.0899C43.5201 8.75942 43.0511 7.53283 42.5458 6.4397C41.2495 7.42307 39.9432 8.53011 38.6409 9.76065Z" fill="url(#paint5_linear_1:369)"/>
+<path d="M43.7007 5.59839C43.3182 5.86963 42.9338 6.14695 42.5474 6.44008C43.0526 7.53309 43.5195 8.7598 43.9564 10.0901C44.5319 9.5316 45.1036 8.99114 45.6752 8.4745C45.0614 7.42933 44.4092 6.46398 43.7007 5.59839Z" fill="#2B74B1"/>
+<path d="M45.0651 4.69629C44.6102 4.98159 44.1574 5.28266 43.7004 5.5978C44.4089 6.46343 45.0611 7.42878 45.677 8.476C46.1823 8.02317 46.6875 7.58643 47.1907 7.1735C46.5224 6.26208 45.812 5.42628 45.0651 4.69629Z" fill="#125A9E"/>
+<path d="M118.985 0.00549193C112.856 23.4273 100.054 42.2397 89.3211 46.9827H89.3007C89.1055 47.0705 88.9122 47.1503 88.7211 47.228C88.6947 47.2438 88.6708 47.2458 88.6505 47.2552C88.5941 47.2778 88.5418 47.2951 88.4854 47.3175C88.4591 47.3333 88.4352 47.3384 88.4111 47.3479C88.3206 47.3799 88.2319 47.407 88.1434 47.442C88.1051 47.4578 88.069 47.4677 88.0326 47.4804C87.9923 47.4962 87.9459 47.5108 87.8997 47.5235C87.8595 47.5393 87.8173 47.5507 87.7709 47.5681C87.7326 47.5839 87.6923 47.5906 87.6562 47.6064C87.5776 47.629 87.5054 47.6479 87.4268 47.675C87.3945 47.675 87.3644 47.6924 87.3301 47.7007C87.2818 47.7165 87.2274 47.728 87.1751 47.7422C87.1388 47.758 87.1087 47.7631 87.0704 47.771C87.016 47.7868 86.9556 47.8015 86.9013 47.8141C86.8289 47.8299 86.7645 47.8446 86.696 47.8588C87.1811 48.0364 87.6863 48.1261 88.2318 48.1261C98.4089 48.1261 108.67 30.0537 125.649 0H118.982L118.985 0.00549193Z" fill="url(#paint6_linear_1:369)"/>
+<path d="M32.1896 1.99687C32.196 1.99687 32.204 1.98107 32.208 1.98107C32.216 1.98107 32.2283 1.98107 32.2323 1.96526H32.2451C32.3014 1.9463 32.3538 1.92378 32.4101 1.90303C32.4245 1.90303 32.432 1.90303 32.4424 1.88723C32.4567 1.88723 32.4707 1.87143 32.4847 1.86945C32.5451 1.85049 32.6055 1.82797 32.6619 1.80722H32.6715C32.8064 1.76736 32.9311 1.71789 33.0619 1.67162C33.0803 1.67162 33.0982 1.65582 33.1202 1.65582C33.1747 1.63843 33.2311 1.61907 33.2873 1.60635C33.3136 1.59055 33.3397 1.59055 33.3638 1.58225C33.4221 1.56487 33.4786 1.54551 33.5329 1.53278C33.5572 1.53278 33.5793 1.51698 33.5973 1.5154C33.7845 1.46435 33.9697 1.41647 34.1569 1.37178C34.1832 1.37178 34.2052 1.35598 34.2333 1.3544C34.2876 1.33859 34.3381 1.33029 34.3964 1.32239C34.4207 1.30659 34.4487 1.30659 34.4769 1.29829C34.5312 1.28249 34.5835 1.28091 34.642 1.26787H34.6802C34.793 1.24535 34.9077 1.22638 35.0204 1.20564H35.0889C35.1431 1.18983 35.1915 1.18825 35.2459 1.17838C35.2758 1.17838 35.3063 1.16257 35.3345 1.16257C35.3847 1.16257 35.4351 1.14677 35.4853 1.14005C35.5116 1.14005 35.5376 1.14005 35.568 1.12425C35.6866 1.10844 35.8095 1.10212 35.9343 1.09224C35.582 1.05866 35.2197 1.03638 34.8513 1.03638C23.3901 1.03638 7.59913 22.1086 0.485657 49.3978H1.85642C4.13297 45.3749 6.17805 41.5693 8.048 37.9971C13.0299 18.6681 23.1767 5.4861 32.1904 1.99375" fill="url(#paint7_linear_1:369)"/>
+<path d="M38.641 9.76069C39.9434 8.53015 41.2497 7.42311 42.546 6.43989C42.2501 5.79765 41.9442 5.20326 41.616 4.65869C40.5674 5.91923 39.6092 7.58269 38.641 9.76069Z" fill="#0D82CA"/>
+<path d="M39.5825 2.15661C40.3313 2.7789 41.0015 3.63461 41.6155 4.65982C41.8087 4.42446 42.0041 4.207 42.2073 4.00356C41.3559 3.21576 40.436 2.56953 39.4376 2.08289C39.4779 2.10501 39.5181 2.12279 39.56 2.14033C39.56 2.14033 39.5759 2.15614 39.5827 2.15614" fill="#0D82CA"/>
+<path d="M8.04749 37.9994C18.4983 18.044 23.45 5.4146 32.1898 1.99597C23.1782 5.49054 13.0293 18.6723 8.04749 37.9994Z" fill="url(#paint8_linear_1:369)"/>
+<path d="M42.2066 4.00305C42.0035 4.20858 41.8102 4.42399 41.6149 4.65936C41.943 5.20377 42.2489 5.79623 42.5469 6.4404C42.9334 6.14727 43.3178 5.86995 43.7002 5.59871C43.2273 5.02028 42.7281 4.48381 42.2066 4.00305Z" fill="#127BCA"/>
+<path d="M12.7918 49.3105C12.7274 49.3263 12.663 49.3263 12.6026 49.333H12.5664C12.5119 49.333 12.4556 49.3488 12.4053 49.3488H12.3791C12.2483 49.3646 12.1194 49.3646 11.9946 49.3745H11.9544C22.532 49.0812 27.3669 43.8335 29.7662 36.2223C31.5899 30.4522 33.0875 25.5915 34.3999 21.5127C29.9696 27.6918 25.5191 35.0575 21.0445 43.309C18.8867 47.2861 15.6057 48.9474 12.7917 49.3026" fill="url(#paint9_linear_1:369)"/>
+<path d="M12.7918 49.3065C15.6058 48.9513 18.8868 47.2918 21.0446 43.3128C25.5192 35.0634 29.9716 27.6956 34.3979 21.5165C36.0082 16.5082 37.3367 12.6748 38.6411 9.75671C29.8187 18.0779 20.962 31.9141 12.7918 49.3025" fill="url(#paint10_linear_1:369)"/>
+<path d="M8.04699 37.9999C6.17712 41.5722 4.13204 45.3777 1.85541 49.4006H5.84298C6.37035 45.4055 7.11914 41.5959 8.04699 38.0018" fill="#05A1E6"/>
+<path d="M35.5674 1.13448C35.5351 1.13448 35.511 1.15028 35.4829 1.15028C35.4346 1.16609 35.3842 1.16609 35.3339 1.17122C35.304 1.17122 35.2756 1.17122 35.2454 1.18703C35.1909 1.20283 35.1407 1.20441 35.0883 1.21429C35.064 1.21429 35.0401 1.21429 35.0199 1.23009C34.9051 1.24906 34.7925 1.27 34.6797 1.28912H34.6414C34.5832 1.30493 34.5307 1.31322 34.4764 1.32113C34.4481 1.33693 34.42 1.33693 34.3938 1.34325C34.3395 1.35906 34.2851 1.36577 34.2328 1.37526C34.2045 1.39106 34.1825 1.39106 34.1563 1.39264C33.9691 1.43733 33.7839 1.48521 33.5967 1.53626C33.5768 1.53626 33.5565 1.55206 33.5323 1.55522C33.476 1.57103 33.4215 1.58723 33.3632 1.60469C33.3389 1.6205 33.3109 1.6205 33.2867 1.62682C33.2304 1.64262 33.174 1.65882 33.1196 1.67628C33.0977 1.67628 33.0794 1.69209 33.0593 1.69209C32.9304 1.73994 32.8036 1.78782 32.6708 1.82773C32.6144 1.84511 32.554 1.86759 32.4937 1.88834C32.4693 1.90414 32.4473 1.9077 32.4193 1.91876C32.3629 1.93614 32.3065 1.95866 32.2542 1.97941C32.2343 1.99521 32.214 1.99679 32.1999 2.00509C23.4601 5.42372 18.5084 18.0531 8.0576 38.0085C7.12966 41.6027 6.37886 45.4123 5.85351 49.4073H6.41308C7.98916 49.4073 8.434 49.3915 10.2476 49.3915H10.3402H10.6099H10.7025H10.7287H10.8213H10.8737H10.9099H10.9824H11.2078H11.4333H11.6225H11.6727H12.0048C12.1296 49.3757 12.2585 49.3757 12.3893 49.3658H12.4135C12.4679 49.3658 12.5221 49.35 12.5745 49.35H12.6126C12.6709 49.35 12.7374 49.3342 12.8018 49.3275C20.9721 31.9391 29.8287 18.1029 38.6511 9.7817C39.6213 7.60369 40.5774 5.94023 41.6241 4.68175C41.0122 3.65658 40.3419 2.79893 39.5931 2.17648C39.5931 2.17648 39.5728 2.17648 39.5712 2.16068C39.5289 2.1433 39.4888 2.12236 39.4464 2.10165C39.404 2.07913 39.3678 2.06175 39.3237 2.03942C39.2854 2.02362 39.2411 2.00268 39.2029 1.98198C39.1506 1.96617 39.1083 1.94365 39.0621 1.92291C39.0238 1.9071 38.9896 1.8909 38.9512 1.87506C38.8727 1.84464 38.7943 1.81283 38.7198 1.77933C38.6855 1.76352 38.6534 1.75523 38.6211 1.74258C38.5668 1.72322 38.5043 1.6979 38.448 1.67395C38.4197 1.65815 38.3876 1.65499 38.3554 1.64353C38.2729 1.61627 38.1923 1.5877 38.1158 1.56214H38.0959C38.0033 1.53172 37.9127 1.50951 37.8181 1.48395C37.7962 1.46814 37.7778 1.46814 37.7558 1.46498C37.6731 1.44246 37.6007 1.4203 37.5223 1.39955C37.5023 1.39955 37.484 1.38375 37.468 1.38375C37.2788 1.33428 37.0835 1.29442 36.8863 1.25771C36.8659 1.25771 36.846 1.24191 36.8259 1.24191C36.7414 1.2261 36.6588 1.21149 36.5743 1.202C36.554 1.1862 36.542 1.1862 36.5241 1.1862C36.4234 1.17039 36.3248 1.15894 36.2261 1.14787H36.1738C36.0933 1.13207 36.0189 1.13049 35.9444 1.12219C35.8175 1.138 35.6968 1.14471 35.578 1.15578" fill="url(#paint11_linear_1:369)"/>
+<path d="M95.0437 12.9719C93.0328 19.3545 91.4044 24.62 89.9874 28.9522C95.5046 21.4288 100.939 11.9646 106.115 1.04272C100.078 2.9214 96.8573 7.22178 95.0437 12.9719Z" fill="url(#paint12_linear_1:369)"/>
+<path d="M90.1624 46.5838C89.8806 46.7258 89.5988 46.861 89.321 46.9827C100.054 42.2397 112.855 23.4273 118.985 0.00549316H117.743C103.661 24.9311 99.1318 41.6174 90.1624 46.5838Z" fill="url(#paint13_linear_1:369)"/>
+<path d="M83.1542 44.4897C85.4891 41.6655 87.3912 36.8647 89.9879 28.9523C86.9927 33.0291 83.9775 36.5336 80.9602 39.3917C80.9602 39.4075 80.9602 39.4075 80.9442 39.4174C81.6025 41.372 82.325 43.0972 83.1484 44.4894" fill="#079AE1"/>
+<path d="M83.1542 44.4897C82.359 45.4511 81.5178 46.1832 80.5817 46.7257C80.3764 46.8438 80.1692 46.955 79.9577 47.0568C80.9462 47.5853 82.0249 47.9384 83.2326 48.0799C83.4096 48.0973 83.5848 48.1135 83.768 48.1262H83.8003C83.8825 48.1262 83.9694 48.1262 84.058 48.142H84.0935H84.3573H84.6412H84.7298H84.931C84.9633 48.142 84.997 48.142 85.0292 48.1262C85.092 48.1262 85.1581 48.1262 85.2225 48.1104H85.2452H85.3176C85.3837 48.1104 85.4561 48.0946 85.527 48.0879H85.5429C85.5641 48.0879 85.5864 48.0721 85.6073 48.0721C85.6814 48.0563 85.7587 48.0495 85.8308 48.0385H85.8969C85.979 48.0227 86.0639 48.0128 86.1484 47.997H86.1644H86.1887C86.3578 47.965 86.5228 47.9332 86.6898 47.8917C85.305 47.389 84.1456 46.2043 83.1472 44.5169" fill="#1969BC"/>
+<path d="M63.3674 48.1419C64.3719 48.1419 65.3864 48.0446 66.4049 47.8508C67.3469 47.6813 68.2909 47.4218 69.2369 47.0947C70.024 47.4758 70.8493 47.759 71.7228 47.9345C72.4011 48.0717 73.1056 48.1419 73.8444 48.1419H63.3674Z" fill="#1E5CB3"/>
+<path d="M73.8446 48.142C76.3244 48.142 78.289 47.8508 79.9577 47.057C80.946 47.5855 82.0249 47.9386 83.2326 48.0803C83.4097 48.0977 83.585 48.1139 83.7681 48.1266H83.8003C83.8825 48.1266 83.9695 48.1266 84.058 48.1424H84.0951H84.3589H73.8375L73.8446 48.142Z" fill="#1E5CB3"/>
+<path d="M84.3651 48.1419H84.651H84.7395H84.9389C84.9728 48.1419 85.0049 48.1419 85.0371 48.1261C85.0999 48.1261 85.1659 48.1261 85.2324 48.1103H85.2536H85.3277C85.3936 48.1103 85.4661 48.0945 85.535 48.0882H85.5526C85.5737 48.0882 85.5944 48.0724 85.6154 48.0724C85.6895 48.0566 85.7668 48.0503 85.8388 48.0388C85.8631 48.0388 85.8822 48.0388 85.908 48.023C85.9901 48.0072 86.0751 47.9989 86.1597 47.9831H86.1756H86.2C86.3691 47.9511 86.5341 47.9193 86.7011 47.8778C87.1861 48.0552 87.6914 48.1451 88.2368 48.1451L84.3681 48.1609L84.3651 48.1419Z" fill="#1D60B5"/>
+<path d="M80.9507 39.4178V39.402C79.8456 40.449 78.7426 41.4085 77.6415 42.276C77.0658 42.7289 76.4922 43.1576 75.9125 43.5626C76.3976 44.137 76.8908 44.6755 77.4101 45.1662C78.1992 45.924 79.0424 46.5624 79.9624 47.055C80.1717 46.9528 80.3811 46.8414 80.5843 46.7239C81.5223 46.1813 82.3637 45.4494 83.1589 44.4881C82.3355 43.0959 81.613 41.3705 80.9547 39.4159" fill="#175FAB"/>
+<path d="M113.81 0.00549316H108.588H108.069H107.578H107.559C107.22 0.0212973 106.892 0.0327553 106.568 0.0533796C106.415 0.378589 106.258 0.703758 106.107 1.03086C100.932 11.9528 95.4975 21.4169 89.9803 28.9403C87.3857 36.8526 85.4815 41.6535 83.1466 44.4778C84.145 46.1651 85.3064 47.3518 86.6872 47.8544C86.7275 47.8386 86.7597 47.8386 86.7959 47.8303H86.8182C86.8426 47.8303 86.8685 47.8145 86.8948 47.8145C86.9511 47.7987 87.0115 47.7889 87.0678 47.7715C87.1041 47.7557 87.1342 47.7541 87.1706 47.7426C87.2229 47.7268 87.2772 47.7154 87.3255 47.7027C87.3578 47.6869 87.3899 47.6818 87.4221 47.6755C87.5026 47.6498 87.5751 47.6308 87.6516 47.6068C87.6879 47.591 87.7262 47.578 87.7664 47.5685C87.8107 47.5527 87.8549 47.5413 87.8952 47.5222C87.9416 47.5064 87.9878 47.4981 88.0281 47.4808C88.0644 47.465 88.1025 47.4551 88.1368 47.4409C88.2272 47.4089 88.3159 47.3818 88.4065 47.3467C88.4308 47.3467 88.4548 47.3246 88.481 47.3194C88.5353 47.2969 88.5917 47.2795 88.6461 47.2556C88.6661 47.2398 88.6904 47.2382 88.7165 47.2299C88.9057 47.1517 89.1009 47.0719 89.2962 46.9847H89.3165C89.5943 46.8634 89.8761 46.7273 90.1559 46.5858C99.1272 41.6194 103.656 24.9331 117.738 0.00742917H113.805L113.81 0.00549316Z" fill="url(#paint14_linear_1:369)"/>
+<path d="M35.9342 1.10078C35.9565 1.10078 35.9765 1.10078 35.9986 1.11659C36.0528 1.11659 36.1073 1.11659 36.1616 1.13397H36.216C36.3146 1.14977 36.4133 1.15807 36.5139 1.1723C36.5323 1.1723 36.5482 1.1723 36.5642 1.1881C36.6466 1.2039 36.7312 1.21694 36.8158 1.22959C36.8341 1.22959 36.8582 1.24539 36.8783 1.24539C37.0715 1.28371 37.2688 1.32358 37.458 1.37305C37.4759 1.37305 37.4943 1.38885 37.5103 1.38885C37.5908 1.40782 37.6633 1.43192 37.7438 1.45424C37.7681 1.45424 37.786 1.47004 37.8082 1.4736C37.9029 1.4977 37.9914 1.52149 38.084 1.55179C38.088 1.55179 38.0936 1.55179 38.1043 1.5676C38.1827 1.5913 38.2633 1.62184 38.3458 1.64895C38.3781 1.66475 38.4082 1.67147 38.4384 1.67937C38.4948 1.70347 38.5573 1.72722 38.6116 1.74958C38.6439 1.74958 38.676 1.77171 38.7101 1.78316C38.7845 1.81675 38.8631 1.84697 38.9396 1.8789C38.9798 1.8947 39.014 1.91248 39.0523 1.92674C39.0966 1.94926 39.1428 1.96985 39.1911 1.98581C39.2313 2.00478 39.2756 2.02568 39.3138 2.04322C39.3562 2.06574 39.3963 2.08313 39.4367 2.10545C40.4351 2.59214 41.3549 3.24042 42.2064 4.02628C42.5204 3.69918 42.8485 3.40589 43.1887 3.14263C41.3267 1.83421 39.2173 1.08826 36.7837 1.08826C36.5019 1.08826 36.2201 1.10406 35.9343 1.125" fill="#7DCBEC"/>
+<path d="M42.2067 4.00303C42.728 4.48363 43.2272 5.02026 43.7002 5.59869C44.1571 5.28356 44.6101 4.98036 45.065 4.69715C44.4691 4.10675 43.8411 3.5762 43.1869 3.11938C42.8468 3.38075 42.5207 3.67593 42.2067 4.00303Z" fill="#5EC5ED"/>
+<path d="M35.9337 1.10043C36.2195 1.07649 36.5013 1.06652 36.7831 1.06652C39.2167 1.06652 41.3262 1.81248 43.1881 3.1189C45.1526 1.5831 47.5278 1.04657 50.8269 1.04657H34.8508C35.2191 1.04657 35.5794 1.06851 35.9337 1.10043Z" fill="url(#paint15_linear_1:369)"/>
+<path d="M50.8269 1.04653C47.5278 1.04653 45.1526 1.58306 43.1881 3.11886C43.8402 3.5756 44.4683 4.10615 45.0641 4.69653C47.7996 2.97325 50.5089 1.83238 53.18 1.33375C54.1985 1.14426 55.215 1.04653 56.2174 1.04653H50.8269Z" fill="url(#paint16_linear_1:369)"/>
+<path d="M89.9873 28.9561C91.4064 24.62 93.0308 19.3565 95.0456 12.9719C96.8613 7.21967 100.076 2.91945 106.112 1.04267C106.272 0.721451 106.422 0.390355 106.577 0.0651855C96.7365 0.649661 92.1371 5.60998 89.8223 12.956C85.7744 25.7808 83.3227 34.094 80.9616 39.3915C83.9769 36.5353 86.9922 33.029 89.9873 28.9561Z" fill="url(#paint17_linear_1:369)"/>
+<path d="M104.425 44.7255H103.31V48.1601H102.855V44.7255H101.736V44.3168H104.425V44.7255Z" fill="black"/>
+<path d="M108.991 48.1595H108.538V45.5786C108.538 45.3752 108.554 45.1259 108.575 44.8326C108.529 45.0082 108.49 45.1299 108.454 45.2076L107.134 48.1595H106.913L105.588 45.2296C105.549 45.1482 105.511 45.0162 105.469 44.8326H105.453C105.469 44.9874 105.474 45.2376 105.474 45.5847V48.1595H105.039V44.3162H105.639L106.829 46.9987C106.919 47.2003 106.975 47.3558 107.004 47.4595H107.022C107.1 47.2481 107.165 47.0905 107.209 46.9867L108.422 44.3162H108.994V48.1595H108.991Z" fill="black"/>
+<defs>
+<linearGradient id="paint0_linear_1:369" x1="55.1802" y1="0.732597" x2="55.1802" y2="59.8931" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0994DC"/>
+<stop offset="0.350006" stop-color="#66CEF5"/>
+<stop offset="0.846161" stop-color="#127BCA"/>
+<stop offset="1" stop-color="#127BCA"/>
+</linearGradient>
+<linearGradient id="paint1_linear_1:369" x1="57.4565" y1="-0.765211" x2="57.4565" y2="59.903" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0E76BC"/>
+<stop offset="0.360001" stop-color="#36AEE8"/>
+<stop offset="0.846161" stop-color="#00ADEF"/>
+<stop offset="1" stop-color="#00ADEF"/>
+</linearGradient>
+<linearGradient id="paint2_linear_1:369" x1="69.7618" y1="46.7786" x2="69.7618" y2="-1.49431" gradientUnits="userSpaceOnUse">
+<stop stop-color="#1C63B7"/>
+<stop offset="0.5" stop-color="#33BDF2"/>
+<stop offset="1" stop-color="#33BDF2" stop-opacity="0.419608"/>
+</linearGradient>
+<linearGradient id="paint3_linear_1:369" x1="66.5598" y1="-6.91233" x2="66.5598" y2="56.077" gradientUnits="userSpaceOnUse">
+<stop stop-color="#166AB8"/>
+<stop offset="0.399994" stop-color="#36AEE8"/>
+<stop offset="0.846161" stop-color="#0798DD"/>
+<stop offset="1" stop-color="#0798DD"/>
+</linearGradient>
+<linearGradient id="paint4_linear_1:369" x1="61.5491" y1="-6.58119" x2="61.5491" y2="60.3996" gradientUnits="userSpaceOnUse">
+<stop stop-color="#124379"/>
+<stop offset="0.389999" stop-color="#1487CB"/>
+<stop offset="0.780228" stop-color="#165197"/>
+<stop offset="1" stop-color="#165197"/>
+</linearGradient>
+<linearGradient id="paint5_linear_1:369" x1="34.3998" y1="13.9802" x2="43.9569" y2="13.9802" gradientUnits="userSpaceOnUse">
+<stop stop-color="#33BDF2" stop-opacity="0.698039"/>
+<stop offset="1" stop-color="#1DACD8"/>
+</linearGradient>
+<linearGradient id="paint6_linear_1:369" x1="106.176" y1="45.5689" x2="106.176" y2="-1.45561" gradientUnits="userSpaceOnUse">
+<stop stop-color="#136AB4"/>
+<stop offset="0.6" stop-color="#59CAF5" stop-opacity="0.54902"/>
+<stop offset="1" stop-color="#59CAF5" stop-opacity="0.235294"/>
+</linearGradient>
+<linearGradient id="paint7_linear_1:369" x1="0.485387" y1="25.217" x2="35.934" y2="25.217" gradientUnits="userSpaceOnUse">
+<stop stop-color="#05A1E6" stop-opacity="0.247059"/>
+<stop offset="1" stop-color="#05A1E6"/>
+</linearGradient>
+<linearGradient id="paint8_linear_1:369" x1="20.1183" y1="46.7532" x2="20.1183" y2="-1.39605" gradientUnits="userSpaceOnUse">
+<stop stop-color="#318ED5"/>
+<stop offset="1" stop-color="#38A7E4"/>
+</linearGradient>
+<linearGradient id="paint9_linear_1:369" x1="23.1768" y1="46.9226" x2="23.1768" y2="0.11892" gradientUnits="userSpaceOnUse">
+<stop stop-color="#05A1E6"/>
+<stop offset="1" stop-color="#05A1E6" stop-opacity="0.54902"/>
+</linearGradient>
+<linearGradient id="paint10_linear_1:369" x1="25.7165" y1="49.3106" x2="25.7165" y2="9.76074" gradientUnits="userSpaceOnUse">
+<stop stop-color="#1959A6"/>
+<stop offset="0.5" stop-color="#05A1E6"/>
+<stop offset="0.917587" stop-color="#7EC5EA"/>
+<stop offset="1" stop-color="#7EC5EA"/>
+</linearGradient>
+<linearGradient id="paint11_linear_1:369" x1="27.2458" y1="46.7843" x2="13.9382" y2="5.74165" gradientUnits="userSpaceOnUse">
+<stop stop-color="#165096"/>
+<stop offset="1" stop-color="#0D82CA"/>
+</linearGradient>
+<linearGradient id="paint12_linear_1:369" x1="98.0501" y1="22.5325" x2="98.0501" y2="0.122009" gradientUnits="userSpaceOnUse">
+<stop stop-color="#05A1E6"/>
+<stop offset="0.873627" stop-color="#0495D6"/>
+<stop offset="1" stop-color="#0495D6"/>
+</linearGradient>
+<linearGradient id="paint13_linear_1:369" x1="108.681" y1="-1.94944" x2="87.9207" y2="44.567" gradientUnits="userSpaceOnUse">
+<stop stop-color="#38A7E4" stop-opacity="0.329412"/>
+<stop offset="0.961533" stop-color="#0E88D3"/>
+<stop offset="1" stop-color="#0E88D3"/>
+</linearGradient>
+<linearGradient id="paint14_linear_1:369" x1="100.448" y1="-0.136033" x2="100.448" y2="48.7549" gradientUnits="userSpaceOnUse">
+<stop stop-color="#168CD4"/>
+<stop offset="0.5" stop-color="#1C87CC"/>
+<stop offset="1" stop-color="#154B8D"/>
+</linearGradient>
+<linearGradient id="paint15_linear_1:369" x1="37.5146" y1="-1.14107" x2="37.7245" y2="3.98665" gradientUnits="userSpaceOnUse">
+<stop stop-color="#97D6EE"/>
+<stop offset="0.703293" stop-color="#55C1EA"/>
+<stop offset="1" stop-color="#55C1EA"/>
+</linearGradient>
+<linearGradient id="paint16_linear_1:369" x1="44.0858" y1="4.46657" x2="45.0352" y2="-0.967906" gradientUnits="userSpaceOnUse">
+<stop stop-color="#7ACCEC"/>
+<stop offset="1" stop-color="#3FB7ED"/>
+</linearGradient>
+<linearGradient id="paint17_linear_1:369" x1="93.7687" y1="2.56745" x2="93.7687" y2="50.3877" gradientUnits="userSpaceOnUse">
+<stop stop-color="#1DA7E7"/>
+<stop offset="1" stop-color="#37ABE7" stop-opacity="0"/>
+</linearGradient>
+</defs>
+</svg>
diff --git a/public/img/features/multilanguage/two.svg b/public/img/features/multilanguage/two.svg
new file mode 100644
index 0000000..2fe09b7
--- /dev/null
+++ b/public/img/features/multilanguage/two.svg
@@ -0,0 +1,15 @@
+<svg width="102" height="187" viewBox="0 0 102 187" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M96.9353 146.521H96.2424V146.134H98.1077V146.521H97.4195V148.455H96.9353V146.521ZM100.656 146.622H100.645L99.9583 148.456H99.6441L98.9621 146.622H98.9536V148.456H98.4973V146.134H99.1688L99.8012 147.778L100.432 146.134H101.101V148.456H100.655V146.622H100.656Z" fill="#E76F00"/>
+<path d="M34.9115 99.0502C34.9115 99.0502 30.091 101.853 38.3421 102.802C48.3381 103.942 53.447 103.779 64.4626 101.694C64.4626 101.694 67.3587 103.51 71.4034 105.083C46.7092 115.666 15.5156 104.47 34.9115 99.0502Z" fill="#5382A1"/>
+<path d="M31.894 85.2394C31.894 85.2394 26.4874 89.2415 34.7446 90.0956C45.4226 91.1972 53.8553 91.2873 68.4471 88.4775C68.4471 88.4775 70.4653 90.5237 73.6389 91.6426C43.7821 100.373 10.5271 92.3311 31.894 85.2394Z" fill="#5382A1"/>
+<path d="M57.3325 61.8116C63.4171 68.817 55.7338 75.1209 55.7338 75.1209C55.7338 75.1209 71.1838 67.1452 64.0883 57.1577C57.4614 47.8437 52.3794 43.216 79.8912 27.2601C79.8912 27.2601 36.7067 38.0456 57.3325 61.8116Z" fill="#E76F00"/>
+<path d="M89.9926 109.265C89.9926 109.265 93.5599 112.205 86.0639 114.479C71.8101 118.797 26.7379 120.101 14.2171 114.651C9.71619 112.693 18.1567 109.975 20.8117 109.405C23.5807 108.805 25.1631 108.917 25.1631 108.917C20.1576 105.39 -7.19031 115.84 11.2717 118.833C61.6203 126.998 103.052 115.156 89.9926 109.265Z" fill="#5382A1"/>
+<path d="M37.2297 70.9297C37.2297 70.9297 14.3031 76.3752 29.1108 78.3526C35.3631 79.1897 47.8268 79.0003 59.4364 78.0276C68.9245 77.2272 78.4516 75.5255 78.4516 75.5255C78.4516 75.5255 75.106 76.9583 72.6856 78.611C49.404 84.7341 4.4285 81.8855 17.3764 75.6224C28.3264 70.3293 37.2297 70.9297 37.2297 70.9297Z" fill="#5382A1"/>
+<path d="M78.3571 93.9185C102.024 81.6204 91.0813 69.802 83.4435 71.3942C81.5715 71.7838 80.7368 72.1215 80.7368 72.1215C80.7368 72.1215 81.4317 71.0328 82.7591 70.5615C97.869 65.2494 109.49 86.2291 77.8814 94.5383C77.8814 94.5387 78.2476 94.2113 78.3571 93.9185Z" fill="#5382A1"/>
+<path d="M64.0883 1.49573C64.0883 1.49573 77.1953 14.6071 51.6569 34.7688C31.1777 50.9419 46.987 60.1634 51.6484 70.6993C39.6943 59.9138 30.9217 50.4193 36.8071 41.5827C45.4454 28.6114 69.3767 22.3224 64.0883 1.49573Z" fill="#E76F00"/>
+<path d="M39.5553 127.244C62.2724 128.698 97.1571 126.437 97.9832 115.688C97.9832 115.688 96.3951 119.763 79.2088 122.999C59.8193 126.648 35.905 126.222 21.7213 123.883C21.7216 123.883 24.6249 126.286 39.5553 127.244Z" fill="#5382A1"/>
+<path d="M35.8323 168.316C33.6892 170.175 31.4259 171.219 29.3947 171.219C26.4955 171.219 24.9291 169.48 24.9291 166.692C24.9291 163.676 26.6074 161.47 33.3404 161.47H35.8319V168.316H35.8323ZM41.7455 174.988V154.336C41.7455 149.06 38.7365 145.579 31.4816 145.579C27.2462 145.579 23.5362 146.625 20.5207 147.959L21.3911 151.614C23.7653 150.743 26.8386 149.932 29.8551 149.932C34.0343 149.932 35.8323 151.614 35.8323 155.093V157.703H33.7464C23.5923 157.703 19.0118 161.645 19.0118 167.561C19.0118 172.667 22.0303 175.569 27.7137 175.569C31.367 175.569 34.0942 174.061 36.6435 171.854L37.1062 174.988H41.7455V174.988Z" fill="#E76F00"/>
+<path d="M61.4805 174.988H54.1052L45.2292 146.102H51.6698L57.1775 163.85L58.4018 169.187C61.1881 161.47 63.1588 153.641 64.1444 146.102H70.4096C68.731 155.614 65.7105 166.055 61.4805 174.988Z" fill="#E76F00"/>
+<path d="M89.7729 168.316C87.6258 170.175 85.3584 171.219 83.3272 171.219C80.4331 171.219 78.8627 169.48 78.8627 166.692C78.8627 163.676 80.545 161.47 87.2773 161.47H89.7729V168.316ZM95.6855 174.988V154.336C95.6855 149.06 92.6691 145.579 85.4226 145.579C81.1842 145.579 77.4728 146.625 74.4587 147.959L75.3277 151.614C77.7029 150.743 80.782 149.932 83.7961 149.932C87.9723 149.932 89.7729 151.614 89.7729 155.093V157.703H87.6836C77.5265 157.703 72.948 161.645 72.948 167.561C72.948 172.667 75.9642 175.569 81.6466 175.569C85.3019 175.569 88.0281 174.061 90.5818 171.854L91.0462 174.988H95.6855V174.988Z" fill="#E76F00"/>
+<path d="M12.528 179.894C10.8423 182.355 8.11954 184.302 5.13876 185.404L2.21918 181.968C4.488 180.804 6.43382 178.924 7.33788 177.172C8.11988 175.615 8.44356 173.607 8.44356 168.807V135.829H14.7261V168.355C14.7257 174.773 14.2127 177.365 12.528 179.894Z" fill="#E76F00"/>
+</svg>
diff --git a/public/img/features/multitier/01-bd.svg b/public/img/features/multitier/01-bd.svg
new file mode 100644
index 0000000..281d22c
--- /dev/null
+++ b/public/img/features/multitier/01-bd.svg
@@ -0,0 +1,56 @@
+<svg width="350" height="261" viewBox="0 0 350 261" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M224.256 164.324V24.7773C224.256 24.7773 239.133 40.1004 285.373 40.1004C331.612 40.1004 348.098 24.6304 348.098 24.6304V164.324C348.098 164.324 341.439 181.288 285.373 181.94C229.306 182.593 224.256 164.324 224.256 164.324Z" fill="#E0454C"/>
+<path d="M348 20.8032C348 23.1046 346.546 25.471 343.495 27.7765C340.46 30.0701 335.998 32.1787 330.377 33.9674C319.146 37.5411 303.511 39.7678 286.032 39.7678C268.552 39.7678 252.918 37.5411 241.687 33.9674C236.066 32.1787 231.604 30.0701 228.569 27.7765C225.518 25.471 224.064 23.1046 224.064 20.8032C224.064 18.5018 225.518 16.1353 228.569 13.8298C231.604 11.5362 236.066 9.42761 241.687 7.63895C252.918 4.06526 268.552 1.83852 286.032 1.83852C303.511 1.83852 319.146 4.06526 330.377 7.63895C335.998 9.42761 340.46 11.5362 343.495 13.8298C346.546 16.1353 348 18.5018 348 20.8032Z" fill="#E0454C" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M223.904 21.1676L224.373 162.26" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M348.098 21.1856L348.098 163.258" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M348.098 162.476C348.098 173.066 320.375 181.65 286.177 181.65C251.979 181.65 224.256 173.066 224.256 162.476" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M242.671 88.9492V73.9776H245.669L249.23 84.5783C249.559 85.5655 249.798 86.3042 249.949 86.7944C250.12 86.2497 250.387 85.4497 250.75 84.3944L254.353 73.9776H257.032V88.9492H255.112V76.4184L250.739 88.9492H248.943L244.591 76.204V88.9492H242.671Z" fill="white"/>
+<path d="M260.454 88.9492V73.9776H271.335V75.7444H262.445V80.3298H270.77V82.0864H262.445V87.1825H271.684V88.9492H260.454Z" fill="white"/>
+<path d="M274.541 88.9492V73.9776H277.538L281.1 84.5783C281.429 85.5655 281.668 86.3042 281.819 86.7944C281.99 86.2497 282.257 85.4497 282.619 84.3944L286.222 73.9776H288.902V88.9492H286.982V76.4184L282.609 88.9492H280.813L276.461 76.204V88.9492H274.541Z" fill="white"/>
+<path d="M291.677 81.6575C291.677 79.1724 292.348 77.2286 293.689 75.8261C295.03 74.4168 296.761 73.7121 298.883 73.7121C300.272 73.7121 301.524 74.0423 302.64 74.7027C303.755 75.3631 304.604 76.2857 305.185 77.4703C305.774 78.6482 306.068 79.986 306.068 81.4839C306.068 83.0021 305.76 84.3604 305.144 85.5587C304.529 86.7569 303.656 87.6659 302.527 88.2854C301.398 88.8982 300.18 89.2046 298.873 89.2046C297.456 89.2046 296.19 88.8641 295.075 88.1833C293.959 87.5025 293.114 86.5731 292.539 85.3953C291.964 84.2174 291.677 82.9715 291.677 81.6575ZM293.73 81.6881C293.73 83.4923 294.216 84.9153 295.188 85.957C296.166 86.9918 297.391 87.5093 298.862 87.5093C300.361 87.5093 301.593 86.985 302.558 85.9365C303.529 84.888 304.015 83.4004 304.015 81.4736C304.015 80.2549 303.807 79.1928 303.389 78.2873C302.979 77.375 302.373 76.6703 301.572 76.1733C300.778 75.6695 299.885 75.4176 298.893 75.4176C297.483 75.4176 296.269 75.901 295.249 76.8678C294.236 77.8278 293.73 79.4345 293.73 81.6881Z" fill="white"/>
+<path d="M308.844 88.9492V73.9776H315.516C316.857 73.9776 317.877 74.1138 318.575 74.3861C319.273 74.6517 319.83 75.1248 320.248 75.8057C320.665 76.4865 320.874 77.2388 320.874 78.0627C320.874 79.1248 320.528 80.0201 319.837 80.7486C319.146 81.4771 318.079 81.94 316.635 82.1375C317.162 82.3894 317.562 82.6379 317.836 82.883C318.417 83.414 318.968 84.0779 319.488 84.8744L322.106 88.9492H319.601L317.61 85.8344C317.028 84.9357 316.549 84.2481 316.173 83.7715C315.796 83.2949 315.458 82.9613 315.157 82.7706C314.862 82.58 314.561 82.4472 314.253 82.3724C314.027 82.3247 313.658 82.3009 313.145 82.3009H310.835V88.9492H308.844ZM310.835 80.5852H315.115C316.026 80.5852 316.737 80.4932 317.251 80.3094C317.764 80.1188 318.154 79.8192 318.421 79.4107C318.688 78.9954 318.821 78.546 318.821 78.0627C318.821 77.3546 318.561 76.7725 318.041 76.3163C317.528 75.8601 316.713 75.6321 315.598 75.6321H310.835V80.5852Z" fill="white"/>
+<path d="M328.022 88.9492V82.6072L322.223 73.9776H324.645L327.612 78.4916C328.159 79.3358 328.669 80.1801 329.141 81.0243C329.593 80.2413 330.14 79.3596 330.784 78.3792L333.699 73.9776H336.019L330.014 82.6072V88.9492H328.022Z" fill="white"/>
+<path d="M2.33984 163.567V22.7635C2.33984 22.7635 16.5728 39.1778 62.7321 39.1778C108.891 39.1778 125.966 22.8497 125.966 22.8497V163.567C125.966 163.567 119.32 180.453 63.3504 181.102C7.38098 181.751 2.33984 163.567 2.33984 163.567Z" fill="#E0454C"/>
+<path d="M125.936 19.8729C125.936 22.1595 124.484 24.5137 121.433 26.8091C118.398 29.0922 113.936 31.1912 108.314 32.9718C97.0831 36.5292 81.448 38.7457 63.9681 38.7457C46.4882 38.7457 30.8531 36.5292 19.6219 32.9718C14.0005 31.1912 9.53853 29.0922 6.50334 26.8091C3.45185 24.5137 2 22.1595 2 19.8729C2 17.5862 3.45185 15.232 6.50334 12.9366C9.53853 10.6535 14.0005 8.55447 19.6219 6.77395C30.8531 3.21655 46.4882 1 63.9681 1C81.448 1 97.0831 3.21655 108.314 6.77395C113.936 8.55447 118.398 10.6535 121.433 12.9366C124.484 15.232 125.936 17.5862 125.936 19.8729Z" fill="#E0454C" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M1.87164 19.3808L2.33988 162.322" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M126.07 19.3808L126.07 162.465" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M126.188 161.727C126.188 172.268 98.4638 180.813 64.264 180.813C30.0642 180.813 2.33984 172.268 2.33984 161.727" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M16.3887 88.5383V73.6355H19.3808L22.9365 84.1874C23.2644 85.1701 23.5035 85.9054 23.6538 86.3933C23.8246 85.8512 24.091 85.0549 24.4531 84.0044L28.0498 73.6355H30.7242V88.5383H28.808V76.0651L24.4428 88.5383H22.6496L18.3049 75.8516V88.5383H16.3887Z" fill="white"/>
+<path d="M34.1404 88.5383V73.6355H45.0022V75.3942H36.1283V79.9585H44.4387V81.707H36.1283V86.7796H45.3506V88.5383H34.1404Z" fill="white"/>
+<path d="M48.2032 88.5383V73.6355H51.1954L54.7511 84.1874C55.079 85.1701 55.3181 85.9054 55.4684 86.3933C55.6392 85.8512 55.9056 85.0549 56.2676 84.0044L59.8643 73.6355H62.5388V88.5383H60.6226V76.0651L56.2574 88.5383H54.4642L50.1194 75.8516V88.5383H48.2032Z" fill="white"/>
+<path d="M65.3094 81.28C65.3094 78.8064 65.9789 76.8716 67.3178 75.4755C68.6568 74.0726 70.3851 73.3712 72.5028 73.3712C73.8896 73.3712 75.1397 73.6999 76.2532 74.3573C77.3667 75.0146 78.2138 75.9329 78.7945 77.1121C79.382 78.2846 79.6757 79.6163 79.6757 81.1072C79.6757 82.6185 79.3683 83.9705 78.7535 85.1633C78.1387 86.3561 77.2677 87.2608 76.1405 87.8775C75.0133 88.4875 73.7974 88.7924 72.4926 88.7924C71.0785 88.7924 69.8147 88.4536 68.7012 87.7759C67.5877 87.0982 66.744 86.1731 66.1702 85.0007C65.5963 83.8282 65.3094 82.588 65.3094 81.28ZM67.3588 81.3105C67.3588 83.1065 67.8439 84.5229 68.8139 85.5598C69.7908 86.5899 71.0136 87.1049 72.4823 87.1049C73.9784 87.1049 75.208 86.5831 76.1713 85.5394C77.1413 84.4958 77.6263 83.015 77.6263 81.0971C77.6263 79.884 77.418 78.8267 77.0013 77.9254C76.5914 77.0173 75.9868 76.3158 75.1875 75.8211C74.3951 75.3196 73.5036 75.0689 72.5131 75.0689C71.1058 75.0689 69.8933 75.55 68.8754 76.5124C67.8643 77.4679 67.3588 79.0673 67.3588 81.3105Z" fill="white"/>
+<path d="M82.4464 88.5383V73.6355H89.1069C90.4459 73.6355 91.4637 73.771 92.1605 74.0421C92.8573 74.3064 93.4141 74.7774 93.8308 75.4552C94.2475 76.1329 94.4558 76.8817 94.4558 77.7017C94.4558 78.759 94.1109 79.6502 93.4209 80.3753C92.7309 81.1005 91.6652 81.5613 90.2238 81.7578C90.7498 82.0086 91.1495 82.2559 91.4227 82.4999C92.0034 83.0285 92.5533 83.6893 93.0725 84.4822L95.6855 88.5383H93.1852L91.1973 85.4378C90.6166 84.5432 90.1384 83.8587 89.7627 83.3843C89.387 82.9099 89.0488 82.5779 88.7483 82.3881C88.4545 82.1983 88.1539 82.0662 87.8465 81.9916C87.6211 81.9442 87.2522 81.9205 86.7399 81.9205H84.4343V88.5383H82.4464ZM84.4343 80.2127H88.7073C89.6158 80.2127 90.3263 80.1212 90.8387 79.9382C91.351 79.7484 91.7404 79.4502 92.0068 79.0436C92.2732 78.6302 92.4064 78.1829 92.4064 77.7017C92.4064 76.9969 92.1469 76.4175 91.6277 75.9634C91.1153 75.5094 90.3024 75.2823 89.1889 75.2823H84.4343V80.2127Z" fill="white"/>
+<path d="M101.592 88.5383V82.2254L95.8021 73.6355H98.2204L101.182 78.1287C101.728 78.9691 102.237 79.8094 102.709 80.6498C103.159 79.8704 103.706 78.9928 104.348 78.0169L107.258 73.6355H109.574L103.58 82.2254V88.5383H101.592Z" fill="white"/>
+<path d="M142.101 237.855C142.101 237.855 130.94 244.756 141.459 251.608C143.483 252.943 150.822 256.654 150.613 260.088C150.613 260.088 155.062 253.415 148.558 249.216C141.877 244.919 140.206 240.329 142.101 237.855Z" fill="#ED1C24"/>
+<path d="M138.215 251.039C138.215 251.039 134.232 257.159 142.069 258.412C142.84 258.51 148.509 259.112 149.987 261C149.987 261 149.858 257.745 145.233 255.824C140.624 253.904 138.729 253.432 138.215 251.039Z" fill="#ED1C24"/>
+<path d="M153.633 244.61C148.847 239.532 147.514 236.39 149.57 232.321C149.57 232.321 135.293 237.888 149.393 247.767C154.436 251.299 153.601 254.913 153.601 255.043C154.388 254.213 158.419 249.688 153.633 244.61Z" fill="#ED1C24"/>
+<path d="M162.297 256.398V243.5H164.05L170.833 253.627V243.5H172.472V256.398H170.718L163.935 246.262V256.398H162.297Z" fill="#2D2D2D"/>
+<path d="M174.966 250.116C174.966 247.975 175.542 246.3 176.693 245.092C177.844 243.878 179.33 243.271 181.15 243.271C182.343 243.271 183.417 243.555 184.375 244.124C185.332 244.693 186.06 245.488 186.559 246.509C187.065 247.523 187.317 248.676 187.317 249.966C187.317 251.275 187.053 252.445 186.524 253.477C185.996 254.509 185.247 255.292 184.278 255.826C183.309 256.354 182.263 256.618 181.142 256.618C179.926 256.618 178.839 256.325 177.882 255.738C176.925 255.152 176.199 254.351 175.706 253.336C175.213 252.322 174.966 251.248 174.966 250.116ZM176.728 250.142C176.728 251.697 177.145 252.923 177.979 253.82C178.819 254.712 179.87 255.158 181.133 255.158C182.419 255.158 183.476 254.706 184.304 253.803C185.138 252.899 185.555 251.618 185.555 249.958C185.555 248.908 185.376 247.993 185.018 247.213C184.665 246.427 184.146 245.82 183.458 245.391C182.777 244.957 182.011 244.74 181.159 244.74C179.949 244.74 178.907 245.157 178.032 245.99C177.163 246.817 176.728 248.201 176.728 250.142Z" fill="#2D2D2D"/>
+<path d="M189.662 256.398V243.5H194.111C195.115 243.5 195.881 243.561 196.41 243.684C197.15 243.855 197.781 244.162 198.304 244.608C198.985 245.183 199.493 245.919 199.828 246.817C200.169 247.708 200.339 248.729 200.339 249.879C200.339 250.858 200.224 251.726 199.995 252.483C199.766 253.239 199.473 253.867 199.115 254.366C198.756 254.858 198.363 255.248 197.934 255.536C197.511 255.817 196.997 256.032 196.392 256.178C195.793 256.325 195.103 256.398 194.322 256.398H189.662ZM191.371 254.876H194.128C194.98 254.876 195.646 254.797 196.128 254.638C196.616 254.48 197.003 254.257 197.291 253.97C197.696 253.565 198.01 253.022 198.234 252.342C198.463 251.656 198.577 250.826 198.577 249.852C198.577 248.503 198.354 247.468 197.908 246.746C197.467 246.019 196.93 245.532 196.295 245.286C195.837 245.11 195.1 245.022 194.084 245.022H191.371V254.876Z" fill="#2D2D2D"/>
+<path d="M202.869 256.398V243.5H212.207V245.022H204.578V248.972H211.722V250.486H204.578V254.876H212.506V256.398H202.869Z" fill="#2D2D2D"/>
+<path d="M262.161 195.975C262.161 195.975 250.999 202.877 261.518 209.729C263.542 211.063 270.881 214.774 270.672 218.209C270.672 218.209 275.121 211.535 268.617 207.336C261.936 203.039 260.266 198.449 262.161 195.975Z" fill="#ED1C24"/>
+<path d="M258.275 209.16C258.275 209.16 254.292 215.279 262.129 216.533C262.9 216.63 268.569 217.232 270.046 219.12C270.046 219.12 269.918 215.865 265.293 213.945C260.684 212.024 258.788 211.552 258.275 209.16Z" fill="#ED1C24"/>
+<path d="M273.692 202.73C268.906 197.652 267.573 194.511 269.629 190.442C269.629 190.442 255.352 196.008 269.452 205.888C274.495 209.42 273.66 213.033 273.66 213.163C274.447 212.333 278.478 207.808 273.692 202.73Z" fill="#ED1C24"/>
+<path d="M282.356 214.519V201.62H284.109L290.892 211.747V201.62H292.531V214.519H290.778L283.994 204.383V214.519H282.356Z" fill="#2D2D2D"/>
+<path d="M295.025 208.237C295.025 206.096 295.601 204.421 296.752 203.213C297.903 201.998 299.389 201.391 301.21 201.391C302.402 201.391 303.477 201.676 304.434 202.245C305.391 202.814 306.12 203.609 306.619 204.629C307.124 205.644 307.376 206.797 307.376 208.087C307.376 209.395 307.112 210.565 306.584 211.598C306.055 212.63 305.306 213.413 304.337 213.947C303.368 214.475 302.323 214.739 301.201 214.739C299.985 214.739 298.899 214.445 297.941 213.859C296.984 213.272 296.259 212.471 295.765 211.457C295.272 210.442 295.025 209.369 295.025 208.237ZM296.787 208.263C296.787 209.817 297.204 211.043 298.038 211.941C298.878 212.832 299.929 213.278 301.192 213.278C302.478 213.278 303.535 212.826 304.364 211.923C305.197 211.02 305.614 209.738 305.614 208.078C305.614 207.028 305.435 206.113 305.077 205.333C304.725 204.547 304.205 203.94 303.518 203.512C302.837 203.078 302.07 202.861 301.219 202.861C300.009 202.861 298.966 203.277 298.091 204.11C297.222 204.937 296.787 206.321 296.787 208.263Z" fill="#2D2D2D"/>
+<path d="M309.721 214.519V201.62H314.17C315.174 201.62 315.941 201.682 316.469 201.805C317.209 201.975 317.841 202.283 318.363 202.729C319.045 203.304 319.553 204.04 319.887 204.937C320.228 205.829 320.398 206.849 320.398 207.999C320.398 208.979 320.284 209.847 320.055 210.603C319.826 211.36 319.532 211.988 319.174 212.486C318.816 212.979 318.422 213.369 317.993 213.656C317.57 213.938 317.057 214.152 316.452 214.299C315.853 214.445 315.163 214.519 314.381 214.519H309.721ZM311.43 212.996H314.188C315.039 212.996 315.706 212.917 316.187 212.759C316.675 212.601 317.062 212.378 317.35 212.09C317.755 211.686 318.07 211.143 318.293 210.463C318.522 209.776 318.636 208.946 318.636 207.973C318.636 206.623 318.413 205.588 317.967 204.867C317.526 204.139 316.989 203.653 316.355 203.406C315.897 203.23 315.16 203.142 314.144 203.142H311.43V212.996Z" fill="#2D2D2D"/>
+<path d="M322.928 214.519V201.62H332.266V203.142H324.637V207.093H331.782V208.606H324.637V212.996H332.566V214.519H322.928Z" fill="#2D2D2D"/>
+<path d="M22.0424 196.814C22.0424 196.814 10.8808 203.715 21.4 210.567C23.4236 211.902 30.7629 215.613 30.5541 219.047C30.5541 219.047 35.0027 212.374 28.4985 208.175C21.8176 203.878 20.1474 199.288 22.0424 196.814Z" fill="#ED1C24"/>
+<path d="M18.1563 209.998C18.1563 209.998 14.1734 216.118 22.0106 217.371C22.7815 217.469 28.4506 218.071 29.9281 219.959C29.9281 219.959 29.7997 216.704 25.1744 214.783C20.5652 212.863 18.6702 212.391 18.1563 209.998Z" fill="#ED1C24"/>
+<path d="M33.5735 203.569C28.7877 198.491 27.4547 195.349 29.5104 191.28C29.5104 191.28 15.2332 196.847 29.3337 206.726C34.3765 210.258 33.5414 213.872 33.5414 214.002C34.3284 213.172 38.3594 208.647 33.5735 203.569Z" fill="#ED1C24"/>
+<path d="M42.2375 215.357V202.459H43.9906L50.774 212.586V202.459H52.4125V215.357H50.6595L43.8761 205.221V215.357H42.2375Z" fill="#2D2D2D"/>
+<path d="M54.9071 209.075C54.9071 206.934 55.4827 205.259 56.6338 204.051C57.7849 202.837 59.2708 202.23 61.0914 202.23C62.2836 202.23 63.3584 202.514 64.3157 203.083C65.273 203.652 66.0013 204.447 66.5005 205.468C67.0056 206.482 67.2581 207.635 67.2581 208.925C67.2581 210.234 66.9938 211.404 66.4652 212.436C65.9367 213.468 65.1879 214.251 64.2188 214.785C63.2498 215.313 62.2044 215.577 61.0826 215.577C59.8669 215.577 58.7804 215.284 57.8231 214.697C56.8658 214.111 56.1405 213.31 55.6471 212.295C55.1538 211.281 54.9071 210.207 54.9071 209.075ZM56.669 209.101C56.669 210.656 57.086 211.882 57.92 212.779C58.7598 213.671 59.8111 214.117 61.0738 214.117C62.36 214.117 63.4171 213.665 64.2452 212.762C65.0792 211.858 65.4962 210.577 65.4962 208.917C65.4962 207.867 65.3171 206.952 64.9588 206.172C64.6064 205.386 64.0867 204.779 63.3995 204.35C62.7183 203.916 61.9518 203.699 61.1002 203.699C59.8904 203.699 58.8479 204.116 57.9729 204.949C57.1036 205.776 56.669 207.16 56.669 209.101Z" fill="#2D2D2D"/>
+<path d="M69.6029 215.357V202.459H74.0517C75.056 202.459 75.8224 202.52 76.351 202.643C77.091 202.814 77.7224 203.121 78.2451 203.567C78.9263 204.142 79.4343 204.878 79.7691 205.776C80.1097 206.667 80.2801 207.688 80.2801 208.837C80.2801 209.817 80.1655 210.685 79.9365 211.442C79.7074 212.198 79.4138 212.826 79.0555 213.325C78.6973 213.817 78.3038 214.207 77.8751 214.495C77.4522 214.776 76.9383 214.99 76.3334 215.137C75.7344 215.284 75.0443 215.357 74.2632 215.357H69.6029ZM71.312 213.835H74.0694C74.9209 213.835 75.5875 213.756 76.0691 213.597C76.5566 213.439 76.9442 213.216 77.232 212.929C77.6372 212.524 77.9514 211.981 78.1746 211.301C78.4036 210.615 78.5182 209.785 78.5182 208.811C78.5182 207.462 78.295 206.427 77.8486 205.705C77.4082 204.978 76.8708 204.491 76.2365 204.245C75.7784 204.069 75.0413 203.981 74.0253 203.981H71.312V213.835Z" fill="#2D2D2D"/>
+<path d="M82.8099 215.357V202.459H92.148V203.981H84.5189V207.931H91.6635V209.445H84.5189V213.835H92.4475V215.357H82.8099Z" fill="#2D2D2D"/>
+<path d="M113.146 204.825V66.7177C113.146 66.7177 127.98 80.6011 174.083 80.6011C220.187 80.6011 236.623 65.1311 236.623 65.1311V204.825C236.623 204.825 229.985 221.789 174.083 222.441C118.181 223.093 113.146 204.825 113.146 204.825Z" fill="#E0454C"/>
+<path d="M236.694 61.3039C236.694 63.6053 235.239 65.9717 232.189 68.2772C229.154 70.5709 224.692 72.6795 219.071 74.4681C207.84 78.0418 192.205 80.2685 174.726 80.2685C157.246 80.2685 141.611 78.0418 130.381 74.4681C124.76 72.6795 120.298 70.5709 117.263 68.2772C114.212 65.9717 112.758 63.6053 112.758 61.3039C112.758 59.0025 114.212 56.6361 117.263 54.3306C120.298 52.0369 124.76 49.9283 130.381 48.1397C141.611 44.566 157.246 42.3392 174.726 42.3392C192.205 42.3392 207.84 44.566 219.071 48.1397C224.692 49.9283 229.154 52.0369 232.189 54.3306C235.239 56.6361 236.694 59.0025 236.694 61.3039Z" fill="#E0454C" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M112.679 62.4827L113.146 203.575" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M236.727 62.7356L236.727 203.246" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M236.727 202.977C236.727 213.566 209.062 222.151 174.937 222.151C140.811 222.151 113.146 213.566 113.146 202.977" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M128.812 129.919V114.947H131.8L135.351 125.548C135.679 126.535 135.918 127.274 136.068 127.764C136.238 127.219 136.505 126.419 136.866 125.364L140.459 114.947H143.13V129.919H141.216V117.388L136.856 129.919H135.065L130.725 117.173V129.919H128.812Z" fill="white"/>
+<path d="M146.542 129.919V114.947H157.39V116.714H148.527V121.299H156.828V123.056H148.527V128.152H157.738V129.919H146.542Z" fill="white"/>
+<path d="M160.588 129.919V114.947H163.576L167.128 125.548C167.455 126.535 167.694 127.274 167.844 127.764C168.015 127.219 168.281 126.419 168.642 125.364L172.235 114.947H174.906V129.919H172.992V117.388L168.632 129.919H166.841L162.501 117.173V129.919H160.588Z" fill="white"/>
+<path d="M177.673 122.627C177.673 120.142 178.342 118.198 179.679 116.795C181.016 115.386 182.743 114.681 184.858 114.681C186.243 114.681 187.492 115.012 188.604 115.672C189.716 116.332 190.562 117.255 191.142 118.44C191.729 119.618 192.022 120.955 192.022 122.453C192.022 123.971 191.715 125.33 191.101 126.528C190.487 127.726 189.617 128.635 188.491 129.255C187.365 129.868 186.151 130.174 184.848 130.174C183.435 130.174 182.173 129.833 181.061 129.153C179.949 128.472 179.106 127.542 178.533 126.365C177.96 125.187 177.673 123.941 177.673 122.627ZM179.72 122.657C179.72 124.462 180.204 125.885 181.173 126.926C182.149 127.961 183.37 128.479 184.837 128.479C186.332 128.479 187.56 127.954 188.522 126.906C189.491 125.857 189.975 124.37 189.975 122.443C189.975 121.224 189.767 120.162 189.351 119.257C188.941 118.344 188.338 117.64 187.539 117.143C186.748 116.639 185.857 116.387 184.868 116.387C183.462 116.387 182.251 116.87 181.235 117.837C180.225 118.797 179.72 120.404 179.72 122.657Z" fill="white"/>
+<path d="M194.789 129.919V114.947H201.442C202.779 114.947 203.796 115.083 204.492 115.355C205.188 115.621 205.744 116.094 206.16 116.775C206.576 117.456 206.784 118.208 206.784 119.032C206.784 120.094 206.44 120.989 205.751 121.718C205.061 122.446 203.997 122.909 202.557 123.107C203.083 123.359 203.482 123.607 203.755 123.852C204.335 124.383 204.884 125.047 205.403 125.844L208.012 129.919H205.515L203.53 126.804C202.95 125.905 202.472 125.217 202.097 124.741C201.722 124.264 201.384 123.931 201.084 123.74C200.79 123.549 200.49 123.417 200.183 123.342C199.958 123.294 199.589 123.27 199.078 123.27H196.775V129.919H194.789ZM196.775 121.554H201.043C201.95 121.554 202.66 121.463 203.171 121.279C203.683 121.088 204.072 120.789 204.338 120.38C204.604 119.965 204.737 119.515 204.737 119.032C204.737 118.324 204.478 117.742 203.96 117.286C203.448 116.829 202.636 116.601 201.524 116.601H196.775V121.554Z" fill="white"/>
+<path d="M213.911 129.919V123.577L208.129 114.947H210.544L213.502 119.461C214.048 120.305 214.556 121.149 215.027 121.994C215.477 121.211 216.023 120.329 216.665 119.349L219.571 114.947H221.884L215.897 123.577V129.919H213.911Z" fill="white"/>
+</svg>
diff --git a/public/img/features/multitier/02-bglines.svg b/public/img/features/multitier/02-bglines.svg
new file mode 100644
index 0000000..65f54a4
--- /dev/null
+++ b/public/img/features/multitier/02-bglines.svg
@@ -0,0 +1,65 @@
+<svg width="350" height="220" viewBox="0 0 350 220" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="350" height="220" fill="#91C2EA"/>
+<mask id="mask0" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="350" height="220">
+<rect width="350" height="220" fill="#ED1C24"/>
+</mask>
+<g mask="url(#mask0)">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M539.116 19.5674L8.69195 236.444L8.3125 235.436L538.737 18.5589L539.116 19.5674Z" fill="url(#paint0_linear)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M511.285 17.0696L36.4856 238.922L36.0605 237.934L510.86 16.081L511.285 17.0696Z" fill="url(#paint1_linear)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M486.779 12.9109L61.1275 243.053L60.649 242.091L486.3 11.9493L486.779 12.9109Z" fill="url(#paint2_linear)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M465.18 7.09582L82.7037 248.834L82.1649 247.908L464.641 6.16948L465.18 7.09582Z" fill="url(#paint3_linear)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M446.236 -0.463127L101.715 256.437L101.11 255.556L445.631 -1.34422L446.236 -0.463127Z" fill="url(#paint4_linear)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M429.69 -10.0306L118.327 265.859L117.654 265.034L429.017 -10.856L429.69 -10.0306Z" fill="url(#paint5_linear)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M415.292 -21.6027L132.793 277.367L132.053 276.607L414.552 -22.363L415.292 -21.6027Z" fill="url(#paint6_linear)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M402.87 -35.3563L145.28 291.137L144.477 290.449L402.067 -36.0444L402.87 -35.3563Z" fill="url(#paint7_linear)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M392.249 -51.5549L156.036 307.259L155.179 306.646L391.392 -52.1679L392.249 -51.5549Z" fill="url(#paint8_linear)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M383.262 -70.5524L165.069 326.093L164.167 325.554L382.36 -71.0913L383.262 -70.5524Z" fill="url(#paint9_linear)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M375.735 -92.4345L172.545 347.907L171.608 347.438L374.799 -92.9041L375.735 -92.4345Z" fill="url(#paint10_linear)"/>
+</g>
+<defs>
+<linearGradient id="paint0_linear" x1="270.928" y1="-91.2474" x2="276.891" y2="346.244" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#B1C9DC"/>
+</linearGradient>
+<linearGradient id="paint1_linear" x1="270.928" y1="-91.2474" x2="276.891" y2="346.244" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#B1C9DC"/>
+</linearGradient>
+<linearGradient id="paint2_linear" x1="270.928" y1="-91.2474" x2="276.891" y2="346.244" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#B1C9DC"/>
+</linearGradient>
+<linearGradient id="paint3_linear" x1="270.928" y1="-91.2474" x2="276.891" y2="346.244" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#B1C9DC"/>
+</linearGradient>
+<linearGradient id="paint4_linear" x1="270.928" y1="-91.2474" x2="276.891" y2="346.244" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#B1C9DC"/>
+</linearGradient>
+<linearGradient id="paint5_linear" x1="270.928" y1="-91.2474" x2="276.891" y2="346.244" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#B1C9DC"/>
+</linearGradient>
+<linearGradient id="paint6_linear" x1="270.928" y1="-91.2474" x2="276.891" y2="346.244" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#B1C9DC"/>
+</linearGradient>
+<linearGradient id="paint7_linear" x1="270.928" y1="-91.2474" x2="276.891" y2="346.244" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#B1C9DC"/>
+</linearGradient>
+<linearGradient id="paint8_linear" x1="270.928" y1="-91.2474" x2="276.891" y2="346.244" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#B1C9DC"/>
+</linearGradient>
+<linearGradient id="paint9_linear" x1="270.928" y1="-91.2474" x2="276.891" y2="346.244" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#B1C9DC"/>
+</linearGradient>
+<linearGradient id="paint10_linear" x1="270.928" y1="-91.2474" x2="276.891" y2="346.244" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#B1C9DC"/>
+</linearGradient>
+</defs>
+</svg>
diff --git a/public/img/features/multitier/03-bd.svg b/public/img/features/multitier/03-bd.svg
new file mode 100644
index 0000000..c8b6ef8
--- /dev/null
+++ b/public/img/features/multitier/03-bd.svg
@@ -0,0 +1,84 @@
+<svg width="577" height="412" viewBox="0 0 577 412" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect y="344" width="577" height="39" rx="19.5" fill="#E6E6E6"/>
+<path d="M334.485 359.448V320.101C334.485 320.101 340.132 324.867 357.685 324.867C375.238 324.867 381.496 319.557 381.496 319.557V359.448C381.496 359.448 382.676 365.864 358.581 365.864C334.485 365.864 334.485 359.448 334.485 359.448Z" fill="white"/>
+<path d="M381 318.55C381 319.12 380.623 319.852 379.486 320.681C378.371 321.493 376.693 322.266 374.53 322.933C370.215 324.263 364.194 325.1 357.5 325.1C350.806 325.1 344.785 324.263 340.47 322.933C338.307 322.266 336.629 321.493 335.514 320.681C334.377 319.852 334 319.12 334 318.55C334 317.98 334.377 317.248 335.514 316.419C336.629 315.607 338.307 314.834 340.47 314.167C344.785 312.837 350.806 312 357.5 312C364.194 312 370.215 312.837 374.53 314.167C376.693 314.834 378.371 315.607 379.486 316.419C380.623 317.248 381 317.98 381 318.55Z" fill="white" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M333.99 318.55L333.99 358.817" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M381.505 318.047L381.505 358.817" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M381.695 358.554C381.695 362.667 370.973 366 357.748 366C344.522 366 333.8 362.667 333.8 358.554" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M483.485 359.448V320.101C483.485 320.101 489.132 324.867 506.685 324.867C524.238 324.867 530.496 319.557 530.496 319.557V359.448C530.496 359.448 531.676 365.864 507.581 365.864C483.485 365.864 483.485 359.448 483.485 359.448Z" fill="white"/>
+<path d="M530 318.55C530 319.12 529.623 319.852 528.486 320.681C527.371 321.493 525.693 322.266 523.53 322.933C519.215 324.263 513.194 325.1 506.5 325.1C499.806 325.1 493.785 324.263 489.47 322.933C487.307 322.266 485.629 321.493 484.514 320.681C483.377 319.852 483 319.12 483 318.55C483 317.98 483.377 317.248 484.514 316.419C485.629 315.607 487.307 314.834 489.47 314.167C493.785 312.837 499.806 312 506.5 312C513.194 312 519.215 312.837 523.53 314.167C525.693 314.834 527.371 315.607 528.486 316.419C529.623 317.248 530 317.98 530 318.55Z" fill="white" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M482.99 318.55L482.99 358.817" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M530.505 318.047L530.505 358.817" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M530.695 358.554C530.695 362.667 519.973 366 506.748 366C493.522 366 482.8 362.667 482.8 358.554" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M185.485 359.448V320.101C185.485 320.101 191.132 324.867 208.685 324.867C226.238 324.867 232.496 319.557 232.496 319.557V359.448C232.496 359.448 233.676 365.864 209.581 365.864C185.485 365.864 185.485 359.448 185.485 359.448Z" fill="white"/>
+<path d="M232 318.55C232 319.12 231.623 319.852 230.486 320.681C229.371 321.493 227.693 322.266 225.53 322.933C221.215 324.263 215.194 325.1 208.5 325.1C201.806 325.1 195.785 324.263 191.47 322.933C189.307 322.266 187.629 321.493 186.514 320.681C185.377 319.852 185 319.12 185 318.55C185 317.98 185.377 317.248 186.514 316.419C187.629 315.607 189.307 314.834 191.47 314.167C195.785 312.837 201.806 312 208.5 312C215.194 312 221.215 312.837 225.53 314.167C227.693 314.834 229.371 315.607 230.486 316.419C231.623 317.248 232 317.98 232 318.55Z" fill="white" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M184.99 318.55L184.99 358.817" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M232.505 318.047L232.505 358.817" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M232.695 358.554C232.695 362.667 221.973 366 208.748 366C195.522 366 184.8 362.667 184.8 358.554" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M36.4849 359.448V320.101C36.4849 320.101 42.1323 324.867 59.685 324.867C77.2377 324.867 83.4957 319.557 83.4957 319.557V359.448C83.4957 359.448 84.6762 365.864 60.5805 365.864C36.4849 365.864 36.4849 359.448 36.4849 359.448Z" fill="white"/>
+<path d="M83 318.55C83 319.12 82.6226 319.852 81.4858 320.681C80.3707 321.493 78.6929 322.266 76.5296 322.933C72.2153 324.263 66.1942 325.1 59.5 325.1C52.8058 325.1 46.7847 324.263 42.4704 322.933C40.3071 322.266 38.6293 321.493 37.5142 320.681C36.3774 319.852 36 319.12 36 318.55C36 317.98 36.3774 317.248 37.5142 316.419C38.6293 315.607 40.3071 314.834 42.4704 314.167C46.7847 312.837 52.8058 312 59.5 312C66.1942 312 72.2153 312.837 76.5296 314.167C78.6929 314.834 80.3707 315.607 81.4858 316.419C82.6226 317.248 83 317.98 83 318.55Z" fill="white" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M35.9899 318.55L35.9899 358.817" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M83.505 318.047L83.505 358.817" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M83.695 358.554C83.695 362.667 72.9733 366 59.7475 366C46.5217 366 35.8 362.667 35.8 358.554" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M458.967 399.027C458.967 396.651 459.605 394.792 460.881 393.451C462.157 392.104 463.804 391.43 465.822 391.43C467.144 391.43 468.335 391.745 469.396 392.377C470.458 393.008 471.265 393.891 471.818 395.023C472.378 396.15 472.658 397.429 472.658 398.861C472.658 400.313 472.365 401.612 471.779 402.758C471.193 403.904 470.363 404.773 469.289 405.365C468.215 405.951 467.056 406.244 465.812 406.244C464.465 406.244 463.26 405.919 462.199 405.268C461.138 404.617 460.334 403.728 459.787 402.602C459.24 401.475 458.967 400.284 458.967 399.027ZM460.92 399.057C460.92 400.782 461.382 402.143 462.307 403.139C463.238 404.128 464.403 404.623 465.803 404.623C467.229 404.623 468.4 404.122 469.318 403.119C470.243 402.117 470.705 400.694 470.705 398.852C470.705 397.686 470.507 396.671 470.109 395.805C469.719 394.932 469.143 394.258 468.381 393.783C467.626 393.301 466.776 393.061 465.832 393.061C464.491 393.061 463.335 393.523 462.365 394.447C461.402 395.365 460.92 396.902 460.92 399.057ZM478.923 404.428L479.177 405.98C478.682 406.085 478.239 406.137 477.848 406.137C477.21 406.137 476.716 406.036 476.364 405.834C476.012 405.632 475.765 405.368 475.622 405.043C475.479 404.711 475.407 404.018 475.407 402.963V396.996H474.118V395.629H475.407V393.061L477.155 392.006V395.629H478.923V396.996H477.155V403.061C477.155 403.562 477.184 403.884 477.243 404.027C477.308 404.171 477.409 404.285 477.546 404.369C477.689 404.454 477.891 404.496 478.151 404.496C478.346 404.496 478.604 404.473 478.923 404.428ZM480.851 406V391.684H482.609V396.82C483.429 395.87 484.464 395.395 485.714 395.395C486.483 395.395 487.15 395.548 487.716 395.854C488.283 396.153 488.686 396.57 488.927 397.104C489.175 397.637 489.298 398.412 489.298 399.428V406H487.541V399.428C487.541 398.549 487.349 397.911 486.964 397.514C486.587 397.11 486.05 396.908 485.353 396.908C484.832 396.908 484.341 397.045 483.879 397.318C483.423 397.585 483.097 397.95 482.902 398.412C482.707 398.874 482.609 399.512 482.609 400.326V406H480.851ZM499.284 402.66L501.1 402.885C500.814 403.946 500.283 404.77 499.508 405.355C498.733 405.941 497.744 406.234 496.539 406.234C495.023 406.234 493.818 405.769 492.926 404.838C492.041 403.9 491.598 402.589 491.598 400.902C491.598 399.158 492.047 397.803 492.946 396.84C493.844 395.876 495.01 395.395 496.442 395.395C497.829 395.395 498.961 395.867 499.84 396.811C500.719 397.755 501.159 399.083 501.159 400.795C501.159 400.899 501.155 401.055 501.149 401.264H493.414C493.48 402.403 493.802 403.275 494.381 403.881C494.961 404.486 495.683 404.789 496.549 404.789C497.194 404.789 497.744 404.62 498.2 404.281C498.655 403.943 499.017 403.402 499.284 402.66ZM493.512 399.818H499.303C499.225 398.946 499.004 398.292 498.639 397.855C498.079 397.178 497.353 396.84 496.461 396.84C495.654 396.84 494.974 397.11 494.42 397.65C493.873 398.191 493.571 398.913 493.512 399.818ZM503.497 406V395.629H505.079V397.201C505.483 396.465 505.854 395.98 506.193 395.746C506.538 395.512 506.915 395.395 507.325 395.395C507.918 395.395 508.52 395.583 509.132 395.961L508.527 397.592C508.097 397.338 507.667 397.211 507.237 397.211C506.853 397.211 506.508 397.328 506.202 397.562C505.896 397.79 505.678 398.109 505.548 398.52C505.353 399.145 505.255 399.828 505.255 400.57V406H503.497ZM515.44 402.904L517.179 402.631C517.276 403.327 517.546 403.861 517.989 404.232C518.438 404.604 519.063 404.789 519.864 404.789C520.671 404.789 521.27 404.626 521.661 404.301C522.052 403.969 522.247 403.581 522.247 403.139C522.247 402.742 522.074 402.429 521.729 402.201C521.488 402.045 520.889 401.846 519.932 401.605C518.643 401.28 517.748 401 517.247 400.766C516.752 400.525 516.374 400.196 516.114 399.779C515.86 399.356 515.733 398.891 515.733 398.383C515.733 397.921 515.837 397.494 516.046 397.104C516.261 396.706 516.55 396.378 516.915 396.117C517.188 395.915 517.559 395.746 518.028 395.609C518.503 395.466 519.011 395.395 519.552 395.395C520.365 395.395 521.078 395.512 521.69 395.746C522.309 395.98 522.764 396.299 523.057 396.703C523.35 397.1 523.552 397.634 523.663 398.305L521.944 398.539C521.866 398.005 521.638 397.589 521.261 397.289C520.889 396.99 520.362 396.84 519.679 396.84C518.871 396.84 518.295 396.973 517.95 397.24C517.605 397.507 517.432 397.82 517.432 398.178C517.432 398.406 517.504 398.611 517.647 398.793C517.79 398.982 518.015 399.138 518.321 399.262C518.497 399.327 519.014 399.477 519.874 399.711C521.117 400.043 521.983 400.316 522.471 400.531C522.966 400.74 523.354 401.046 523.634 401.449C523.914 401.853 524.054 402.354 524.054 402.953C524.054 403.539 523.881 404.092 523.536 404.613C523.197 405.128 522.706 405.528 522.061 405.814C521.417 406.094 520.688 406.234 519.874 406.234C518.526 406.234 517.498 405.954 516.788 405.395C516.085 404.835 515.636 404.005 515.44 402.904ZM530.181 404.428L530.435 405.98C529.94 406.085 529.498 406.137 529.107 406.137C528.469 406.137 527.974 406.036 527.623 405.834C527.271 405.632 527.024 405.368 526.88 405.043C526.737 404.711 526.666 404.018 526.666 402.963V396.996H525.377V395.629H526.666V393.061L528.414 392.006V395.629H530.181V396.996H528.414V403.061C528.414 403.562 528.443 403.884 528.502 404.027C528.567 404.171 528.668 404.285 528.804 404.369C528.948 404.454 529.149 404.496 529.41 404.496C529.605 404.496 529.862 404.473 530.181 404.428ZM531.455 400.814C531.455 398.894 531.989 397.471 533.057 396.547C533.949 395.779 535.036 395.395 536.319 395.395C537.745 395.395 538.91 395.863 539.815 396.801C540.72 397.732 541.172 399.021 541.172 400.668C541.172 402.003 540.97 403.054 540.567 403.822C540.17 404.584 539.587 405.176 538.819 405.6C538.057 406.023 537.224 406.234 536.319 406.234C534.867 406.234 533.692 405.769 532.793 404.838C531.901 403.907 531.455 402.566 531.455 400.814ZM533.262 400.814C533.262 402.143 533.552 403.139 534.131 403.803C534.711 404.46 535.44 404.789 536.319 404.789C537.191 404.789 537.917 404.457 538.496 403.793C539.076 403.129 539.366 402.117 539.366 400.756C539.366 399.473 539.073 398.503 538.487 397.846C537.907 397.182 537.185 396.85 536.319 396.85C535.44 396.85 534.711 397.178 534.131 397.836C533.552 398.493 533.262 399.486 533.262 400.814ZM543.423 406V395.629H545.005V397.201C545.409 396.465 545.78 395.98 546.118 395.746C546.463 395.512 546.841 395.395 547.251 395.395C547.844 395.395 548.446 395.583 549.058 395.961L548.452 397.592C548.023 397.338 547.593 397.211 547.163 397.211C546.779 397.211 546.434 397.328 546.128 397.562C545.822 397.79 545.604 398.109 545.474 398.52C545.279 399.145 545.181 399.828 545.181 400.57V406H543.423ZM557.402 402.66L559.219 402.885C558.932 403.946 558.402 404.77 557.627 405.355C556.852 405.941 555.863 406.234 554.658 406.234C553.141 406.234 551.937 405.769 551.045 404.838C550.16 403.9 549.717 402.589 549.717 400.902C549.717 399.158 550.166 397.803 551.064 396.84C551.963 395.876 553.128 395.395 554.561 395.395C555.947 395.395 557.08 395.867 557.959 396.811C558.838 397.755 559.277 399.083 559.277 400.795C559.277 400.899 559.274 401.055 559.268 401.264H551.533C551.598 402.403 551.921 403.275 552.5 403.881C553.079 404.486 553.802 404.789 554.668 404.789C555.312 404.789 555.863 404.62 556.318 404.281C556.774 403.943 557.135 403.402 557.402 402.66ZM551.631 399.818H557.422C557.344 398.946 557.122 398.292 556.758 397.855C556.198 397.178 555.472 396.84 554.58 396.84C553.773 396.84 553.092 397.11 552.539 397.65C551.992 398.191 551.689 398.913 551.631 399.818Z" fill="#2D2D2D"/>
+<path d="M326.523 407V392.684H328.467L335.986 403.924V392.684H337.803V407H335.859L328.34 395.75V407H326.523ZM340.317 401.814C340.317 399.894 340.851 398.471 341.919 397.547C342.811 396.779 343.898 396.395 345.18 396.395C346.606 396.395 347.772 396.863 348.677 397.801C349.582 398.732 350.034 400.021 350.034 401.668C350.034 403.003 349.832 404.054 349.429 404.822C349.031 405.584 348.449 406.176 347.68 406.6C346.919 407.023 346.085 407.234 345.18 407.234C343.729 407.234 342.554 406.769 341.655 405.838C340.763 404.907 340.317 403.566 340.317 401.814ZM342.124 401.814C342.124 403.143 342.414 404.139 342.993 404.803C343.572 405.46 344.302 405.789 345.18 405.789C346.053 405.789 346.779 405.457 347.358 404.793C347.938 404.129 348.227 403.117 348.227 401.756C348.227 400.473 347.934 399.503 347.348 398.846C346.769 398.182 346.046 397.85 345.18 397.85C344.302 397.85 343.572 398.178 342.993 398.836C342.414 399.493 342.124 400.486 342.124 401.814ZM351.884 402.4L353.671 402.244C353.756 402.96 353.951 403.549 354.257 404.012C354.57 404.467 355.052 404.839 355.703 405.125C356.354 405.405 357.086 405.545 357.9 405.545C358.623 405.545 359.261 405.438 359.814 405.223C360.367 405.008 360.778 404.715 361.045 404.344C361.318 403.966 361.455 403.556 361.455 403.113C361.455 402.664 361.324 402.273 361.064 401.941C360.804 401.603 360.374 401.32 359.775 401.092C359.391 400.942 358.541 400.711 357.226 400.398C355.911 400.079 354.99 399.78 354.462 399.5C353.779 399.142 353.268 398.699 352.929 398.172C352.597 397.638 352.431 397.042 352.431 396.385C352.431 395.662 352.636 394.988 353.046 394.363C353.457 393.732 354.056 393.253 354.843 392.928C355.631 392.602 356.507 392.439 357.47 392.439C358.532 392.439 359.466 392.612 360.273 392.957C361.087 393.296 361.712 393.797 362.148 394.461C362.584 395.125 362.819 395.877 362.851 396.717L361.035 396.854C360.937 395.949 360.605 395.265 360.039 394.803C359.479 394.34 358.649 394.109 357.548 394.109C356.403 394.109 355.566 394.321 355.039 394.744C354.518 395.161 354.257 395.665 354.257 396.258C354.257 396.772 354.443 397.195 354.814 397.527C355.179 397.859 356.129 398.201 357.666 398.553C359.209 398.898 360.267 399.201 360.839 399.461C361.673 399.845 362.288 400.333 362.685 400.926C363.082 401.512 363.281 402.189 363.281 402.957C363.281 403.719 363.063 404.438 362.627 405.115C362.19 405.786 361.562 406.31 360.742 406.688C359.928 407.059 359.01 407.244 357.988 407.244C356.692 407.244 355.605 407.055 354.726 406.678C353.854 406.3 353.167 405.734 352.666 404.979C352.171 404.217 351.91 403.357 351.884 402.4ZM376.918 405.467C377.797 406.072 378.608 406.515 379.35 406.795L378.793 408.113C377.765 407.742 376.739 407.156 375.717 406.355C374.656 406.948 373.484 407.244 372.202 407.244C370.906 407.244 369.731 406.932 368.676 406.307C367.621 405.682 366.808 404.803 366.235 403.67C365.668 402.537 365.385 401.261 365.385 399.842C365.385 398.429 365.672 397.143 366.245 395.984C366.817 394.826 367.631 393.943 368.686 393.338C369.747 392.732 370.932 392.43 372.241 392.43C373.562 392.43 374.754 392.745 375.815 393.377C376.876 394.002 377.683 394.881 378.237 396.014C378.797 397.14 379.077 398.413 379.077 399.832C379.077 401.01 378.898 402.072 378.539 403.016C378.181 403.953 377.641 404.77 376.918 405.467ZM372.748 403.045C373.842 403.351 374.744 403.807 375.454 404.412C376.567 403.396 377.123 401.87 377.123 399.832C377.123 398.673 376.925 397.661 376.528 396.795C376.137 395.929 375.561 395.258 374.799 394.783C374.044 394.301 373.194 394.061 372.25 394.061C370.838 394.061 369.666 394.546 368.735 395.516C367.804 396.479 367.338 397.921 367.338 399.842C367.338 401.704 367.797 403.133 368.715 404.129C369.64 405.125 370.818 405.623 372.25 405.623C372.927 405.623 373.565 405.496 374.164 405.242C373.572 404.858 372.947 404.585 372.289 404.422L372.748 403.045ZM381.757 407V392.684H383.652V405.311H390.702V407H381.757Z" fill="#2D2D2D"/>
+<path d="M172.602 407V392.684H174.496V398.562H181.938V392.684H183.832V407H181.938V400.252H174.496V407H172.602ZM193.739 405.721C193.088 406.274 192.46 406.665 191.854 406.893C191.255 407.12 190.611 407.234 189.921 407.234C188.781 407.234 187.906 406.958 187.294 406.404C186.682 405.844 186.376 405.132 186.376 404.266C186.376 403.758 186.49 403.296 186.718 402.879C186.952 402.456 187.255 402.117 187.626 401.863C188.003 401.609 188.427 401.417 188.895 401.287C189.24 401.196 189.761 401.108 190.458 401.023C191.877 400.854 192.922 400.652 193.593 400.418C193.599 400.177 193.602 400.024 193.602 399.959C193.602 399.243 193.436 398.738 193.104 398.445C192.655 398.048 191.988 397.85 191.102 397.85C190.276 397.85 189.664 397.996 189.266 398.289C188.876 398.576 188.586 399.087 188.397 399.822L186.679 399.588C186.835 398.852 187.092 398.26 187.45 397.811C187.808 397.355 188.326 397.007 189.003 396.766C189.68 396.518 190.464 396.395 191.356 396.395C192.242 396.395 192.961 396.499 193.514 396.707C194.068 396.915 194.475 397.179 194.735 397.498C194.996 397.811 195.178 398.208 195.282 398.689C195.341 398.989 195.37 399.529 195.37 400.311V402.654C195.37 404.288 195.406 405.324 195.477 405.76C195.555 406.189 195.705 406.603 195.927 407H194.091C193.908 406.635 193.791 406.209 193.739 405.721ZM193.593 401.795C192.955 402.055 191.998 402.277 190.721 402.459C189.999 402.563 189.488 402.68 189.188 402.811C188.889 402.941 188.658 403.133 188.495 403.387C188.332 403.634 188.251 403.911 188.251 404.217C188.251 404.686 188.427 405.076 188.778 405.389C189.136 405.701 189.657 405.857 190.341 405.857C191.018 405.857 191.62 405.711 192.147 405.418C192.675 405.118 193.062 404.712 193.309 404.197C193.498 403.8 193.593 403.214 193.593 402.439V401.795ZM205.033 407V405.691C204.375 406.72 203.408 407.234 202.132 407.234C201.306 407.234 200.544 407.007 199.847 406.551C199.157 406.095 198.62 405.46 198.236 404.646C197.858 403.826 197.67 402.885 197.67 401.824C197.67 400.789 197.842 399.852 198.187 399.012C198.532 398.165 199.05 397.518 199.74 397.068C200.43 396.619 201.201 396.395 202.054 396.395C202.679 396.395 203.236 396.528 203.724 396.795C204.212 397.055 204.61 397.397 204.916 397.82V392.684H206.664V407H205.033ZM199.476 401.824C199.476 403.152 199.756 404.145 200.316 404.803C200.876 405.46 201.537 405.789 202.298 405.789C203.067 405.789 203.718 405.477 204.252 404.852C204.792 404.22 205.062 403.26 205.062 401.971C205.062 400.551 204.789 399.51 204.242 398.846C203.695 398.182 203.021 397.85 202.22 397.85C201.439 397.85 200.785 398.169 200.257 398.807C199.737 399.445 199.476 400.451 199.476 401.824ZM208.983 401.814C208.983 399.894 209.517 398.471 210.584 397.547C211.476 396.779 212.564 396.395 213.846 396.395C215.272 396.395 216.437 396.863 217.342 397.801C218.247 398.732 218.7 400.021 218.7 401.668C218.7 403.003 218.498 404.054 218.094 404.822C217.697 405.584 217.114 406.176 216.346 406.6C215.584 407.023 214.751 407.234 213.846 407.234C212.394 407.234 211.219 406.769 210.321 405.838C209.429 404.907 208.983 403.566 208.983 401.814ZM210.789 401.814C210.789 403.143 211.079 404.139 211.659 404.803C212.238 405.46 212.967 405.789 213.846 405.789C214.718 405.789 215.444 405.457 216.024 404.793C216.603 404.129 216.893 403.117 216.893 401.756C216.893 400.473 216.6 399.503 216.014 398.846C215.435 398.182 214.712 397.85 213.846 397.85C212.967 397.85 212.238 398.178 211.659 398.836C211.079 399.493 210.789 400.486 210.789 401.814ZM220.316 401.814C220.316 399.894 220.849 398.471 221.917 397.547C222.809 396.779 223.896 396.395 225.179 396.395C226.605 396.395 227.77 396.863 228.675 397.801C229.58 398.732 230.032 400.021 230.032 401.668C230.032 403.003 229.831 404.054 229.427 404.822C229.03 405.584 228.447 406.176 227.679 406.6C226.917 407.023 226.084 407.234 225.179 407.234C223.727 407.234 222.552 406.769 221.654 405.838C220.762 404.907 220.316 403.566 220.316 401.814ZM222.122 401.814C222.122 403.143 222.412 404.139 222.991 404.803C223.571 405.46 224.3 405.789 225.179 405.789C226.051 405.789 226.777 405.457 227.357 404.793C227.936 404.129 228.226 403.117 228.226 401.756C228.226 400.473 227.933 399.503 227.347 398.846C226.767 398.182 226.045 397.85 225.179 397.85C224.3 397.85 223.571 398.178 222.991 398.836C222.412 399.493 222.122 400.486 222.122 401.814ZM232.303 410.975V396.629H233.904V397.977C234.282 397.449 234.708 397.055 235.184 396.795C235.659 396.528 236.235 396.395 236.912 396.395C237.798 396.395 238.579 396.622 239.256 397.078C239.933 397.534 240.444 398.178 240.789 399.012C241.134 399.839 241.307 400.747 241.307 401.736C241.307 402.798 241.115 403.755 240.73 404.607C240.353 405.454 239.799 406.105 239.07 406.561C238.348 407.01 237.586 407.234 236.785 407.234C236.199 407.234 235.672 407.111 235.203 406.863C234.741 406.616 234.36 406.303 234.061 405.926V410.975H232.303ZM233.895 401.873C233.895 403.208 234.165 404.194 234.705 404.832C235.245 405.47 235.9 405.789 236.668 405.789C237.449 405.789 238.117 405.46 238.67 404.803C239.23 404.139 239.51 403.113 239.51 401.727C239.51 400.405 239.236 399.415 238.689 398.758C238.149 398.1 237.501 397.771 236.746 397.771C235.997 397.771 235.333 398.123 234.754 398.826C234.181 399.523 233.895 400.538 233.895 401.873Z" fill="#2D2D2D"/>
+<path d="M25.5723 407V392.684H31.9199C33.196 392.684 34.166 392.814 34.8301 393.074C35.4941 393.328 36.0247 393.781 36.4219 394.432C36.819 395.083 37.0176 395.802 37.0176 396.59C37.0176 397.605 36.6888 398.462 36.0312 399.158C35.3737 399.855 34.3581 400.298 32.9844 400.486C33.4857 400.727 33.8665 400.965 34.127 401.199C34.6803 401.707 35.2044 402.342 35.6992 403.104L38.1895 407H35.8066L33.9121 404.021C33.3587 403.162 32.903 402.505 32.5449 402.049C32.1868 401.593 31.8646 401.274 31.5781 401.092C31.2982 400.91 31.0117 400.783 30.7188 400.711C30.5039 400.665 30.1523 400.643 29.6641 400.643H27.4668V407H25.5723ZM27.4668 399.002H31.5391C32.4049 399.002 33.082 398.914 33.5703 398.738C34.0586 398.556 34.4297 398.27 34.6836 397.879C34.9375 397.482 35.0645 397.052 35.0645 396.59C35.0645 395.913 34.8171 395.356 34.3223 394.92C33.834 394.484 33.0592 394.266 31.998 394.266H27.4668V399.002ZM40.1961 407V392.684H45.1277C46.241 392.684 47.0906 392.752 47.6766 392.889C48.4969 393.077 49.1967 393.419 49.7762 393.914C50.5314 394.552 51.0945 395.369 51.4656 396.365C51.8432 397.355 52.032 398.488 52.032 399.764C52.032 400.851 51.9051 401.814 51.6512 402.654C51.3973 403.494 51.0717 404.191 50.6746 404.744C50.2775 405.291 49.8413 405.724 49.366 406.043C48.8973 406.355 48.3276 406.593 47.657 406.756C46.993 406.919 46.228 407 45.3621 407H40.1961ZM42.0906 405.311H45.1473C46.0913 405.311 46.8302 405.223 47.3641 405.047C47.9044 404.871 48.3341 404.624 48.6531 404.305C49.1023 403.855 49.4507 403.253 49.698 402.498C49.952 401.736 50.0789 400.815 50.0789 399.734C50.0789 398.237 49.8315 397.088 49.3367 396.287C48.8484 395.48 48.2527 394.939 47.5496 394.666C47.0418 394.471 46.2247 394.373 45.0984 394.373H42.0906V405.311ZM54.7711 407V392.684H60.1422C61.2359 392.684 62.1116 392.83 62.7691 393.123C63.4332 393.41 63.9508 393.855 64.3219 394.461C64.6995 395.06 64.8883 395.688 64.8883 396.346C64.8883 396.958 64.7223 397.534 64.3902 398.074C64.0582 398.615 63.5569 399.051 62.8863 399.383C63.7522 399.637 64.4163 400.07 64.8785 400.682C65.3473 401.294 65.5816 402.016 65.5816 402.85C65.5816 403.52 65.4384 404.145 65.152 404.725C64.872 405.298 64.5237 405.74 64.107 406.053C63.6904 406.365 63.1663 406.603 62.5348 406.766C61.9098 406.922 61.1415 407 60.2301 407H54.7711ZM56.6656 398.699H59.7613C60.6012 398.699 61.2034 398.644 61.568 398.533C62.0497 398.39 62.4111 398.152 62.652 397.82C62.8993 397.488 63.023 397.072 63.023 396.57C63.023 396.095 62.9091 395.678 62.6812 395.32C62.4534 394.956 62.1279 394.708 61.7047 394.578C61.2815 394.441 60.5556 394.373 59.527 394.373H56.6656V398.699ZM56.6656 405.311H60.2301C60.8421 405.311 61.2717 405.288 61.5191 405.242C61.9553 405.164 62.3199 405.034 62.6129 404.852C62.9059 404.669 63.1467 404.406 63.3355 404.061C63.5243 403.709 63.6187 403.305 63.6187 402.85C63.6187 402.316 63.482 401.854 63.2086 401.463C62.9352 401.066 62.5543 400.789 62.066 400.633C61.5842 400.47 60.8876 400.389 59.9762 400.389H56.6656V405.311ZM68.3305 407V392.684H71.182L74.5707 402.82C74.8832 403.764 75.1111 404.471 75.2543 404.939C75.4171 404.419 75.671 403.654 76.016 402.645L79.4437 392.684H81.9926V407H80.1664V395.018L76.0062 407H74.2973L70.1566 394.812V407H68.3305ZM84.6047 402.4L86.3918 402.244C86.4764 402.96 86.6717 403.549 86.9777 404.012C87.2902 404.467 87.772 404.839 88.423 405.125C89.0741 405.405 89.8065 405.545 90.6203 405.545C91.343 405.545 91.981 405.438 92.5344 405.223C93.0878 405.008 93.4979 404.715 93.7648 404.344C94.0383 403.966 94.175 403.556 94.175 403.113C94.175 402.664 94.0448 402.273 93.7844 401.941C93.524 401.603 93.0943 401.32 92.4953 401.092C92.1112 400.942 91.2616 400.711 89.9465 400.398C88.6314 400.079 87.7102 399.78 87.1828 399.5C86.4992 399.142 85.9882 398.699 85.6496 398.172C85.3176 397.638 85.1516 397.042 85.1516 396.385C85.1516 395.662 85.3566 394.988 85.7668 394.363C86.177 393.732 86.7759 393.253 87.5637 392.928C88.3514 392.602 89.2271 392.439 90.1906 392.439C91.2518 392.439 92.1861 392.612 92.9934 392.957C93.8072 393.296 94.4322 393.797 94.8684 394.461C95.3046 395.125 95.5389 395.877 95.5715 396.717L93.7551 396.854C93.6574 395.949 93.3254 395.265 92.759 394.803C92.1991 394.34 91.369 394.109 90.2687 394.109C89.1229 394.109 88.2863 394.321 87.759 394.744C87.2382 395.161 86.9777 395.665 86.9777 396.258C86.9777 396.772 87.1633 397.195 87.5344 397.527C87.899 397.859 88.8495 398.201 90.3859 398.553C91.9289 398.898 92.9868 399.201 93.5598 399.461C94.3931 399.845 95.0083 400.333 95.4055 400.926C95.8026 401.512 96.0012 402.189 96.0012 402.957C96.0012 403.719 95.7831 404.438 95.3469 405.115C94.9107 405.786 94.2824 406.31 93.4621 406.688C92.6483 407.059 91.7303 407.244 90.7082 407.244C89.4126 407.244 88.3254 407.055 87.4465 406.678C86.5741 406.3 85.8872 405.734 85.3859 404.979C84.8911 404.217 84.6307 403.357 84.6047 402.4Z" fill="#2D2D2D"/>
+<path d="M37.7071 292.132C37.3166 292.522 36.6834 292.522 36.2929 292.132L29.9289 285.768C29.5384 285.377 29.5384 284.744 29.9289 284.354C30.3195 283.963 30.9526 283.963 31.3431 284.354L37 290.011L42.6569 284.354C43.0474 283.963 43.6805 283.963 44.0711 284.354C44.4616 284.744 44.4616 285.377 44.0711 285.768L37.7071 292.132ZM36 291.425V164.425H38V291.425H36ZM36 164.425C36 134.601 60.1766 110.425 90 110.425V112.425C61.2812 112.425 38 135.706 38 164.425H36Z" fill="#2D2D2D"/>
+<path d="M541 291.425V164.425H539V291.425H541ZM541 164.425C541 134.601 516.823 110.425 487 110.425V112.425C515.719 112.425 539 135.706 539 164.425H541Z" fill="#2D2D2D"/>
+<path d="M493.5 120L487 112L493.5 105" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M338.256 164.324V24.7773C338.256 24.7773 353.133 40.1004 399.373 40.1004C445.612 40.1004 462.098 24.6304 462.098 24.6304V164.324C462.098 164.324 455.439 181.288 399.373 181.94C343.306 182.593 338.256 164.324 338.256 164.324Z" fill="#E0454C"/>
+<path d="M462 20.8032C462 23.1046 460.546 25.471 457.495 27.7765C454.46 30.0701 449.998 32.1787 444.377 33.9674C433.146 37.5411 417.511 39.7678 400.032 39.7678C382.552 39.7678 366.918 37.5411 355.687 33.9674C350.066 32.1787 345.604 30.0701 342.569 27.7765C339.518 25.471 338.064 23.1046 338.064 20.8032C338.064 18.5018 339.518 16.1353 342.569 13.8298C345.604 11.5362 350.066 9.4276 355.687 7.63893C366.918 4.06525 382.552 1.8385 400.032 1.8385C417.511 1.8385 433.146 4.06525 444.377 7.63893C449.998 9.4276 454.46 11.5362 457.495 13.8298C460.546 16.1353 462 18.5018 462 20.8032Z" fill="#E0454C" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M337.904 21.1675L338.373 162.26" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M462.098 21.1856L462.098 163.258" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M462.098 162.476C462.098 173.066 434.375 181.65 400.177 181.65C365.979 181.65 338.256 173.066 338.256 162.476" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M356.671 88.9492V73.9776H359.669L363.23 84.5783C363.559 85.5655 363.798 86.3042 363.949 86.7944C364.12 86.2497 364.387 85.4497 364.75 84.3944L368.353 73.9776H371.032V88.9492H369.112V76.4184L364.739 88.9492H362.943L358.591 76.204V88.9492H356.671Z" fill="white"/>
+<path d="M374.454 88.9492V73.9776H385.335V75.7444H376.445V80.3298H384.77V82.0864H376.445V87.1825H385.684V88.9492H374.454Z" fill="white"/>
+<path d="M388.541 88.9492V73.9776H391.538L395.1 84.5783C395.429 85.5655 395.668 86.3042 395.819 86.7944C395.99 86.2497 396.257 85.4497 396.619 84.3944L400.222 73.9776H402.902V88.9492H400.982V76.4184L396.609 88.9492H394.813L390.461 76.204V88.9492H388.541Z" fill="white"/>
+<path d="M405.677 81.6575C405.677 79.1724 406.348 77.2286 407.689 75.8261C409.03 74.4168 410.761 73.7121 412.883 73.7121C414.272 73.7121 415.524 74.0423 416.64 74.7027C417.755 75.3631 418.604 76.2857 419.185 77.4703C419.774 78.6482 420.068 79.986 420.068 81.4839C420.068 83.0021 419.76 84.3604 419.144 85.5587C418.529 86.7569 417.656 87.6659 416.527 88.2854C415.398 88.8982 414.18 89.2046 412.873 89.2046C411.456 89.2046 410.19 88.8641 409.075 88.1833C407.959 87.5025 407.114 86.5731 406.539 85.3953C405.964 84.2174 405.677 82.9715 405.677 81.6575ZM407.73 81.6881C407.73 83.4923 408.216 84.9153 409.188 85.957C410.166 86.9918 411.391 87.5093 412.862 87.5093C414.361 87.5093 415.593 86.985 416.558 85.9365C417.529 84.888 418.015 83.4004 418.015 81.4736C418.015 80.2549 417.807 79.1928 417.389 78.2873C416.979 77.375 416.373 76.6703 415.572 76.1733C414.778 75.6695 413.885 75.4176 412.893 75.4176C411.483 75.4176 410.269 75.901 409.249 76.8678C408.236 77.8278 407.73 79.4345 407.73 81.6881Z" fill="white"/>
+<path d="M422.844 88.9492V73.9776H429.516C430.857 73.9776 431.877 74.1138 432.575 74.3861C433.273 74.6517 433.83 75.1248 434.248 75.8057C434.665 76.4865 434.874 77.2388 434.874 78.0627C434.874 79.1248 434.528 80.0201 433.837 80.7486C433.146 81.4771 432.079 81.94 430.635 82.1375C431.162 82.3894 431.562 82.6379 431.836 82.883C432.417 83.414 432.968 84.0779 433.488 84.8744L436.106 88.9492H433.601L431.61 85.8344C431.028 84.9357 430.549 84.2481 430.173 83.7715C429.796 83.2949 429.458 82.9613 429.157 82.7706C428.862 82.58 428.561 82.4472 428.253 82.3724C428.027 82.3247 427.658 82.3009 427.145 82.3009H424.835V88.9492H422.844ZM424.835 80.5852H429.115C430.026 80.5852 430.737 80.4932 431.251 80.3094C431.764 80.1188 432.154 79.8192 432.421 79.4107C432.688 78.9954 432.821 78.546 432.821 78.0627C432.821 77.3546 432.561 76.7725 432.041 76.3163C431.528 75.8601 430.713 75.6321 429.598 75.6321H424.835V80.5852Z" fill="white"/>
+<path d="M442.022 88.9492V82.6072L436.223 73.9776H438.645L441.612 78.4916C442.159 79.3358 442.669 80.1801 443.141 81.0243C443.593 80.2413 444.14 79.3596 444.784 78.3792L447.699 73.9776H450.019L444.014 82.6072V88.9492H442.022Z" fill="white"/>
+<path d="M116.34 163.567V22.7635C116.34 22.7635 130.573 39.1778 176.732 39.1778C222.891 39.1778 239.966 22.8497 239.966 22.8497V163.567C239.966 163.567 233.32 180.453 177.35 181.102C121.381 181.751 116.34 163.567 116.34 163.567Z" fill="#E0454C"/>
+<path d="M239.936 19.8729C239.936 22.1595 238.484 24.5137 235.433 26.8091C232.398 29.0922 227.936 31.1912 222.314 32.9718C211.083 36.5292 195.448 38.7457 177.968 38.7457C160.488 38.7457 144.853 36.5292 133.622 32.9718C128 31.1912 123.539 29.0922 120.503 26.8091C117.452 24.5137 116 22.1595 116 19.8729C116 17.5862 117.452 15.232 120.503 12.9366C123.539 10.6535 128 8.55447 133.622 6.77395C144.853 3.21655 160.488 1 177.968 1C195.448 1 211.083 3.21655 222.314 6.77395C227.936 8.55447 232.398 10.6535 235.433 12.9366C238.484 15.232 239.936 17.5862 239.936 19.8729Z" fill="#E0454C" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M115.872 19.3808L116.34 162.322" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M240.07 19.3807L240.07 162.465" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M240.188 161.727C240.188 172.268 212.464 180.813 178.264 180.813C144.064 180.813 116.34 172.268 116.34 161.727" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M130.389 88.5383V73.6355H133.381L136.937 84.1874C137.264 85.1701 137.504 85.9054 137.654 86.3934C137.825 85.8512 138.091 85.0549 138.453 84.0044L142.05 73.6355H144.724V88.5383H142.808V76.0651L138.443 88.5383H136.65L132.305 75.8516V88.5383H130.389Z" fill="white"/>
+<path d="M148.14 88.5383V73.6355H159.002V75.3942H150.128V79.9585H158.439V81.707H150.128V86.7797H159.351V88.5383H148.14Z" fill="white"/>
+<path d="M162.203 88.5383V73.6355H165.195L168.751 84.1874C169.079 85.1701 169.318 85.9054 169.468 86.3934C169.639 85.8512 169.906 85.0549 170.268 84.0044L173.864 73.6355H176.539V88.5383H174.623V76.0651L170.257 88.5383H168.464L164.119 75.8516V88.5383H162.203Z" fill="white"/>
+<path d="M179.309 81.2801C179.309 78.8064 179.979 76.8716 181.318 75.4755C182.657 74.0726 184.385 73.3712 186.503 73.3712C187.89 73.3712 189.14 73.6999 190.253 74.3573C191.367 75.0147 192.214 75.9329 192.794 77.1122C193.382 78.2846 193.676 79.6163 193.676 81.1072C193.676 82.6185 193.368 83.9706 192.753 85.1633C192.139 86.3561 191.268 87.2608 190.141 87.8775C189.013 88.4875 187.797 88.7924 186.493 88.7924C185.078 88.7924 183.815 88.4536 182.701 87.7759C181.588 87.0982 180.744 86.1731 180.17 85.0007C179.596 83.8282 179.309 82.588 179.309 81.2801ZM181.359 81.3106C181.359 83.1065 181.844 84.5229 182.814 85.5598C183.791 86.5899 185.014 87.105 186.482 87.105C187.978 87.105 189.208 86.5831 190.171 85.5394C191.141 84.4958 191.626 83.015 191.626 81.0971C191.626 79.884 191.418 78.8268 191.001 77.9254C190.591 77.0173 189.987 76.3159 189.188 75.8211C188.395 75.3196 187.504 75.0689 186.513 75.0689C185.106 75.0689 183.893 75.55 182.875 76.5124C181.864 77.468 181.359 79.0673 181.359 81.3106Z" fill="white"/>
+<path d="M196.446 88.5383V73.6355H203.107C204.446 73.6355 205.464 73.7711 206.161 74.0421C206.857 74.3065 207.414 74.7775 207.831 75.4552C208.247 76.1329 208.456 76.8817 208.456 77.7018C208.456 78.759 208.111 79.6502 207.421 80.3753C206.731 81.1005 205.665 81.5613 204.224 81.7578C204.75 82.0086 205.149 82.256 205.423 82.4999C206.003 83.0285 206.553 83.6893 207.073 84.4822L209.685 88.5383H207.185L205.197 85.4378C204.617 84.5432 204.138 83.8587 203.763 83.3843C203.387 82.9099 203.049 82.5779 202.748 82.3881C202.455 82.1984 202.154 82.0662 201.847 81.9917C201.621 81.9442 201.252 81.9205 200.74 81.9205H198.434V88.5383H196.446ZM198.434 80.2127H202.707C203.616 80.2127 204.326 80.1212 204.839 79.9382C205.351 79.7484 205.74 79.4502 206.007 79.0436C206.273 78.6302 206.406 78.1829 206.406 77.7018C206.406 76.9969 206.147 76.4175 205.628 75.9634C205.115 75.5094 204.302 75.2823 203.189 75.2823H198.434V80.2127Z" fill="white"/>
+<path d="M215.592 88.5383V82.2255L209.802 73.6355H212.22L215.182 78.1287C215.728 78.9691 216.237 79.8094 216.709 80.6498C217.159 79.8704 217.706 78.9928 218.348 78.0169L221.258 73.6355H223.574L217.58 82.2255V88.5383H215.592Z" fill="white"/>
+<path d="M256.102 237.855C256.102 237.855 244.94 244.756 255.459 251.608C257.483 252.943 264.822 256.654 264.613 260.088C264.613 260.088 269.062 253.415 262.558 249.216C255.877 244.919 254.207 240.329 256.102 237.855Z" fill="#ED1C24"/>
+<path d="M252.215 251.039C252.215 251.039 248.232 257.159 256.07 258.412C256.841 258.51 262.51 259.112 263.987 261C263.987 261 263.859 257.745 259.233 255.824C254.624 253.904 252.729 253.432 252.215 251.039Z" fill="#ED1C24"/>
+<path d="M267.633 244.61C262.847 239.532 261.514 236.39 263.57 232.321C263.57 232.321 249.293 237.888 263.393 247.767C268.436 251.299 267.601 254.913 267.601 255.043C268.388 254.213 272.419 249.688 267.633 244.61Z" fill="#ED1C24"/>
+<path d="M276.297 256.398V243.5H278.05L284.833 253.627V243.5H286.472V256.398H284.719L277.935 246.262V256.398H276.297Z" fill="#2D2D2D"/>
+<path d="M288.966 250.116C288.966 247.975 289.542 246.301 290.693 245.092C291.844 243.878 293.33 243.271 295.151 243.271C296.343 243.271 297.417 243.555 298.375 244.124C299.332 244.693 300.06 245.488 300.56 246.509C301.065 247.523 301.317 248.676 301.317 249.967C301.317 251.275 301.053 252.445 300.524 253.477C299.996 254.509 299.247 255.292 298.278 255.826C297.309 256.354 296.263 256.618 295.142 256.618C293.926 256.618 292.839 256.325 291.882 255.738C290.925 255.152 290.2 254.351 289.706 253.336C289.213 252.322 288.966 251.248 288.966 250.116ZM290.728 250.142C290.728 251.697 291.145 252.923 291.979 253.82C292.819 254.712 293.87 255.158 295.133 255.158C296.419 255.158 297.476 254.706 298.304 253.803C299.138 252.899 299.555 251.618 299.555 249.958C299.555 248.908 299.376 247.993 299.018 247.213C298.666 246.427 298.146 245.82 297.459 245.391C296.777 244.957 296.011 244.74 295.159 244.74C293.949 244.74 292.907 245.157 292.032 245.99C291.163 246.817 290.728 248.201 290.728 250.142Z" fill="#2D2D2D"/>
+<path d="M303.662 256.398V243.5H308.111C309.115 243.5 309.882 243.561 310.41 243.684C311.15 243.855 311.781 244.163 312.304 244.608C312.985 245.183 313.493 245.919 313.828 246.817C314.169 247.708 314.339 248.729 314.339 249.879C314.339 250.858 314.225 251.726 313.996 252.483C313.767 253.24 313.473 253.867 313.115 254.366C312.756 254.858 312.363 255.248 311.934 255.536C311.511 255.817 310.997 256.032 310.392 256.178C309.793 256.325 309.103 256.398 308.322 256.398H303.662ZM305.371 254.876H308.128C308.98 254.876 309.647 254.797 310.128 254.638C310.616 254.48 311.003 254.257 311.291 253.97C311.696 253.565 312.01 253.022 312.234 252.342C312.463 251.656 312.577 250.826 312.577 249.852C312.577 248.503 312.354 247.468 311.908 246.746C311.467 246.019 310.93 245.532 310.296 245.286C309.837 245.11 309.1 245.022 308.084 245.022H305.371V254.876Z" fill="#2D2D2D"/>
+<path d="M316.869 256.398V243.5H326.207V245.022H318.578V248.972H325.723V250.486H318.578V254.876H326.507V256.398H316.869Z" fill="#2D2D2D"/>
+<path d="M376.161 195.975C376.161 195.975 364.999 202.877 375.518 209.729C377.542 211.063 384.881 214.774 384.672 218.209C384.672 218.209 389.121 211.535 382.617 207.336C375.936 203.039 374.266 198.449 376.161 195.975Z" fill="#ED1C24"/>
+<path d="M372.275 209.159C372.275 209.159 368.292 215.279 376.129 216.533C376.9 216.63 382.569 217.232 384.046 219.12C384.046 219.12 383.918 215.865 379.293 213.945C374.684 212.024 372.788 211.552 372.275 209.159Z" fill="#ED1C24"/>
+<path d="M387.692 202.73C382.906 197.652 381.573 194.511 383.629 190.442C383.629 190.442 369.352 196.008 383.452 205.888C388.495 209.42 387.66 213.033 387.66 213.163C388.447 212.333 392.478 207.808 387.692 202.73Z" fill="#ED1C24"/>
+<path d="M396.356 214.519V201.62H398.109L404.892 211.747V201.62H406.531V214.519H404.778L397.994 204.383V214.519H396.356Z" fill="#2D2D2D"/>
+<path d="M409.025 208.237C409.025 206.096 409.601 204.421 410.752 203.213C411.903 201.998 413.389 201.391 415.21 201.391C416.402 201.391 417.477 201.676 418.434 202.245C419.391 202.814 420.12 203.609 420.619 204.629C421.124 205.644 421.376 206.797 421.376 208.087C421.376 209.395 421.112 210.565 420.584 211.597C420.055 212.63 419.306 213.413 418.337 213.947C417.368 214.475 416.323 214.739 415.201 214.739C413.985 214.739 412.899 214.445 411.941 213.859C410.984 213.272 410.259 212.471 409.765 211.457C409.272 210.442 409.025 209.369 409.025 208.237ZM410.787 208.263C410.787 209.817 411.204 211.043 412.038 211.941C412.878 212.832 413.929 213.278 415.192 213.278C416.478 213.278 417.535 212.826 418.364 211.923C419.197 211.02 419.614 209.738 419.614 208.078C419.614 207.028 419.435 206.113 419.077 205.333C418.725 204.547 418.205 203.94 417.518 203.512C416.837 203.078 416.07 202.861 415.219 202.861C414.009 202.861 412.966 203.277 412.091 204.11C411.222 204.937 410.787 206.321 410.787 208.263Z" fill="#2D2D2D"/>
+<path d="M423.721 214.519V201.62H428.17C429.174 201.62 429.941 201.682 430.469 201.805C431.209 201.975 431.841 202.283 432.363 202.729C433.045 203.304 433.553 204.04 433.887 204.937C434.228 205.829 434.398 206.849 434.398 207.999C434.398 208.979 434.284 209.847 434.055 210.603C433.826 211.36 433.532 211.988 433.174 212.486C432.816 212.979 432.422 213.369 431.993 213.656C431.57 213.938 431.057 214.152 430.452 214.299C429.853 214.445 429.163 214.519 428.381 214.519H423.721ZM425.43 212.996H428.188C429.039 212.996 429.706 212.917 430.187 212.759C430.675 212.601 431.062 212.378 431.35 212.09C431.755 211.685 432.07 211.143 432.293 210.462C432.522 209.776 432.636 208.946 432.636 207.973C432.636 206.623 432.413 205.588 431.967 204.867C431.526 204.139 430.989 203.653 430.355 203.406C429.897 203.23 429.16 203.142 428.144 203.142H425.43V212.996Z" fill="#2D2D2D"/>
+<path d="M436.928 214.519V201.62H446.266V203.142H438.637V207.093H445.782V208.606H438.637V212.996H446.566V214.519H436.928Z" fill="#2D2D2D"/>
+<path d="M136.042 196.814C136.042 196.814 124.881 203.715 135.4 210.567C137.424 211.902 144.763 215.613 144.554 219.047C144.554 219.047 149.003 212.374 142.498 208.175C135.818 203.878 134.147 199.288 136.042 196.814Z" fill="#ED1C24"/>
+<path d="M132.156 209.998C132.156 209.998 128.173 216.118 136.011 217.371C136.781 217.469 142.451 218.071 143.928 219.959C143.928 219.959 143.8 216.704 139.174 214.783C134.565 212.863 132.67 212.391 132.156 209.998Z" fill="#ED1C24"/>
+<path d="M147.574 203.569C142.788 198.491 141.455 195.349 143.511 191.28C143.511 191.28 129.233 196.847 143.334 206.726C148.377 210.258 147.542 213.872 147.542 214.002C148.328 213.172 152.36 208.647 147.574 203.569Z" fill="#ED1C24"/>
+<path d="M156.238 215.357V202.459H157.991L164.774 212.586V202.459H166.413V215.357H164.659L157.876 205.221V215.357H156.238Z" fill="#2D2D2D"/>
+<path d="M168.907 209.075C168.907 206.934 169.483 205.259 170.634 204.051C171.785 202.837 173.271 202.23 175.091 202.23C176.284 202.23 177.358 202.514 178.316 203.083C179.273 203.652 180.001 204.447 180.5 205.468C181.006 206.482 181.258 207.635 181.258 208.925C181.258 210.233 180.994 211.404 180.465 212.436C179.937 213.468 179.188 214.251 178.219 214.785C177.25 215.313 176.204 215.577 175.083 215.577C173.867 215.577 172.78 215.284 171.823 214.697C170.866 214.111 170.14 213.31 169.647 212.295C169.154 211.28 168.907 210.207 168.907 209.075ZM170.669 209.101C170.669 210.656 171.086 211.882 171.92 212.779C172.76 213.671 173.811 214.116 175.074 214.116C176.36 214.116 177.417 213.665 178.245 212.762C179.079 211.858 179.496 210.577 179.496 208.917C179.496 207.867 179.317 206.952 178.959 206.172C178.606 205.386 178.087 204.778 177.4 204.35C176.718 203.916 175.952 203.699 175.1 203.699C173.89 203.699 172.848 204.116 171.973 204.949C171.104 205.776 170.669 207.16 170.669 209.101Z" fill="#2D2D2D"/>
+<path d="M183.603 215.357V202.459H188.052C189.056 202.459 189.822 202.52 190.351 202.643C191.091 202.813 191.722 203.121 192.245 203.567C192.926 204.142 193.434 204.878 193.769 205.776C194.11 206.667 194.28 207.688 194.28 208.837C194.28 209.817 194.166 210.685 193.936 211.442C193.707 212.198 193.414 212.826 193.056 213.325C192.697 213.817 192.304 214.207 191.875 214.495C191.452 214.776 190.938 214.99 190.333 215.137C189.734 215.284 189.044 215.357 188.263 215.357H183.603ZM185.312 213.835H188.069C188.921 213.835 189.588 213.756 190.069 213.597C190.557 213.439 190.944 213.216 191.232 212.929C191.637 212.524 191.951 211.981 192.175 211.301C192.404 210.615 192.518 209.785 192.518 208.811C192.518 207.462 192.295 206.427 191.849 205.705C191.408 204.978 190.871 204.491 190.236 204.245C189.778 204.069 189.041 203.981 188.025 203.981H185.312V213.835Z" fill="#2D2D2D"/>
+<path d="M196.81 215.357V202.459H206.148V203.981H198.519V207.931H205.663V209.445H198.519V213.835H206.448V215.357H196.81Z" fill="#2D2D2D"/>
+<path d="M227.146 204.825V66.7178C227.146 66.7178 241.98 80.6011 288.083 80.6011C334.187 80.6011 350.623 65.1311 350.623 65.1311V204.825C350.623 204.825 343.985 221.789 288.083 222.441C232.181 223.094 227.146 204.825 227.146 204.825Z" fill="#E0454C"/>
+<path d="M350.694 61.3039C350.694 63.6053 349.239 65.9717 346.189 68.2772C343.154 70.5709 338.692 72.6795 333.071 74.4681C321.84 78.0418 306.205 80.2685 288.726 80.2685C271.246 80.2685 255.611 78.0418 244.381 74.4681C238.76 72.6795 234.298 70.5709 231.263 68.2772C228.212 65.9717 226.758 63.6053 226.758 61.3039C226.758 59.0025 228.212 56.6361 231.263 54.3306C234.298 52.0369 238.76 49.9283 244.381 48.1397C255.611 44.566 271.246 42.3392 288.726 42.3392C306.205 42.3392 321.84 44.566 333.071 48.1397C338.692 49.9283 343.154 52.0369 346.189 54.3306C349.239 56.6361 350.694 59.0025 350.694 61.3039Z" fill="#E0454C" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M226.679 62.4827L227.146 203.575" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M350.727 62.7357L350.727 203.246" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M350.727 202.977C350.727 213.566 323.062 222.151 288.937 222.151C254.811 222.151 227.146 213.566 227.146 202.977" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M242.812 129.919V114.947H245.8L249.351 125.548C249.679 126.535 249.918 127.274 250.068 127.764C250.238 127.219 250.505 126.419 250.866 125.364L254.459 114.947H257.13V129.919H255.216V117.388L250.856 129.919H249.065L244.725 117.173V129.919H242.812Z" fill="white"/>
+<path d="M260.542 129.919V114.947H271.39V116.714H262.527V121.299H270.828V123.056H262.527V128.152H271.738V129.919H260.542Z" fill="white"/>
+<path d="M274.588 129.919V114.947H277.576L281.128 125.548C281.455 126.535 281.694 127.274 281.844 127.764C282.015 127.219 282.281 126.419 282.642 125.364L286.235 114.947H288.906V129.919H286.992V117.388L282.632 129.919H280.841L276.501 117.173V129.919H274.588Z" fill="white"/>
+<path d="M291.673 122.627C291.673 120.142 292.342 118.198 293.679 116.795C295.016 115.386 296.743 114.681 298.858 114.681C300.243 114.681 301.492 115.012 302.604 115.672C303.716 116.332 304.562 117.255 305.142 118.44C305.729 119.618 306.022 120.955 306.022 122.453C306.022 123.971 305.715 125.33 305.101 126.528C304.487 127.726 303.617 128.635 302.491 129.255C301.365 129.868 300.151 130.174 298.848 130.174C297.435 130.174 296.173 129.834 295.061 129.153C293.949 128.472 293.106 127.542 292.533 126.365C291.96 125.187 291.673 123.941 291.673 122.627ZM293.72 122.657C293.72 124.462 294.204 125.885 295.173 126.926C296.149 127.961 297.37 128.479 298.837 128.479C300.332 128.479 301.56 127.954 302.522 126.906C303.491 125.857 303.975 124.37 303.975 122.443C303.975 121.224 303.767 120.162 303.351 119.257C302.941 118.344 302.338 117.64 301.539 117.143C300.748 116.639 299.857 116.387 298.868 116.387C297.462 116.387 296.251 116.87 295.235 117.837C294.225 118.797 293.72 120.404 293.72 122.657Z" fill="white"/>
+<path d="M308.789 129.919V114.947H315.442C316.779 114.947 317.796 115.083 318.492 115.355C319.188 115.621 319.744 116.094 320.16 116.775C320.576 117.456 320.784 118.208 320.784 119.032C320.784 120.094 320.44 120.989 319.751 121.718C319.061 122.446 317.997 122.909 316.557 123.107C317.083 123.359 317.482 123.607 317.755 123.852C318.335 124.383 318.884 125.047 319.403 125.844L322.012 129.919H319.515L317.53 126.804C316.95 125.905 316.472 125.217 316.097 124.741C315.722 124.264 315.384 123.931 315.084 123.74C314.79 123.549 314.49 123.417 314.183 123.342C313.958 123.294 313.589 123.27 313.078 123.27H310.775V129.919H308.789ZM310.775 121.555H315.043C315.95 121.555 316.66 121.463 317.171 121.279C317.683 121.088 318.072 120.789 318.338 120.38C318.604 119.965 318.737 119.515 318.737 119.032C318.737 118.324 318.478 117.742 317.96 117.286C317.448 116.83 316.636 116.601 315.524 116.601H310.775V121.555Z" fill="white"/>
+<path d="M327.911 129.919V123.577L322.129 114.947H324.544L327.502 119.461C328.048 120.305 328.556 121.149 329.027 121.994C329.477 121.211 330.023 120.329 330.665 119.349L333.571 114.947H335.884L329.897 123.577V129.919H327.911Z" fill="white"/>
+</svg>
diff --git a/public/img/features/multitier/03-bglines.svg b/public/img/features/multitier/03-bglines.svg
new file mode 100644
index 0000000..338ae8a
--- /dev/null
+++ b/public/img/features/multitier/03-bglines.svg
@@ -0,0 +1,32 @@
+<svg width="350" height="220" viewBox="0 0 350 220" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="350" height="220" fill="#0070CC"/>
+<mask id="mask0" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="146" y="60" width="204" height="160">
+<rect x="146" y="60" width="204" height="160" fill="white" fill-opacity="0.7"/>
+</mask>
+<g mask="url(#mask0)">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M237.808 126.044L279.766 95.0773L321.725 126.044L279.766 157.011L237.808 126.044ZM279.766 93.9883L323.2 126.044L279.766 158.1L236.333 126.044L279.766 93.9883Z" fill="#B6DCFA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M238.386 133.1L280.345 102.133L322.303 133.1L280.345 164.067L238.386 133.1ZM280.345 101.045L323.779 133.1L280.345 165.156L236.911 133.1L280.345 101.045Z" fill="#B6DCFA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M238.386 140.775L280.345 109.808L322.303 140.775L280.345 171.742L238.386 140.775ZM280.345 108.719L323.779 140.775L280.345 172.831L236.911 140.775L280.345 108.719Z" fill="#B6DCFA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M238.386 148.452L280.345 117.485L322.303 148.452L280.345 179.419L238.386 148.452ZM280.345 116.396L323.779 148.452L280.345 180.508L236.911 148.452L280.345 116.396Z" fill="#B6DCFA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M238.386 156.129L280.345 125.162L322.303 156.129L280.345 187.096L238.386 156.129ZM280.345 124.073L323.779 156.129L280.345 188.185L236.911 156.129L280.345 124.073Z" fill="#B6DCFA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M238.378 163.81L280.337 132.844L322.295 163.81L280.337 194.777L238.378 163.81ZM280.337 131.755L323.771 163.81L280.337 195.866L236.903 163.81L280.337 131.755Z" fill="#B6DCFA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M238.378 171.486L280.337 140.519L322.295 171.486L280.337 202.453L238.378 171.486ZM280.337 139.43L323.771 171.486L280.337 203.542L236.903 171.486L280.337 139.43Z" fill="#B6DCFA"/>
+<path d="M279.908 86.3988L236.474 118.455L279.908 150.51L323.342 118.455L279.908 86.3988Z" fill="#B6DCFA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M167.545 175.104L209.503 144.137L251.462 175.104L209.503 206.071L167.545 175.104ZM209.503 143.048L252.937 175.104L209.503 207.16L166.069 175.104L209.503 143.048Z" fill="#B6DCFA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M168.123 182.16L210.082 151.194L252.04 182.16L210.082 213.127L168.123 182.16ZM210.082 150.105L253.516 182.16L210.082 214.216L166.648 182.16L210.082 150.105Z" fill="#B6DCFA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M168.123 189.835L210.082 158.868L252.04 189.835L210.082 220.802L168.123 189.835ZM210.082 157.779L253.516 189.835L210.082 221.891L166.648 189.835L210.082 157.779Z" fill="#B6DCFA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M168.123 197.512L210.082 166.545L252.04 197.512L210.082 228.479L168.123 197.512ZM210.082 165.456L253.516 197.512L210.082 229.568L166.648 197.512L210.082 165.456Z" fill="#B6DCFA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M168.123 205.189L210.082 174.222L252.04 205.189L210.082 236.156L168.123 205.189ZM210.082 173.133L253.516 205.189L210.082 237.245L166.648 205.189L210.082 173.133Z" fill="#B6DCFA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M168.115 212.87L210.074 181.904L252.032 212.87L210.074 243.837L168.115 212.87ZM210.074 180.815L253.508 212.87L210.074 244.926L166.64 212.87L210.074 180.815Z" fill="#B6DCFA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M168.115 220.546L210.074 189.579L252.032 220.546L210.074 251.513L168.115 220.546ZM210.074 188.49L253.508 220.546L210.074 252.602L166.64 220.546L210.074 188.49Z" fill="#B6DCFA"/>
+<path d="M209.645 135.459L166.211 167.515L209.645 199.57L253.079 167.515L209.645 135.459Z" fill="#B6DCFA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M307.809 178.795L349.768 147.828L391.726 178.795L349.768 209.762L307.809 178.795ZM349.768 146.739L393.202 178.795L349.768 210.851L306.334 178.795L349.768 146.739Z" fill="#B6DCFA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M308.388 185.851L350.346 154.884L392.305 185.851L350.346 216.818L308.388 185.851ZM350.346 153.795L393.78 185.851L350.346 217.907L306.912 185.851L350.346 153.795Z" fill="#B6DCFA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M308.388 193.526L350.346 162.559L392.305 193.526L350.346 224.493L308.388 193.526ZM350.346 161.47L393.78 193.526L350.346 225.582L306.912 193.526L350.346 161.47Z" fill="#B6DCFA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M308.388 201.203L350.346 170.236L392.305 201.203L350.346 232.17L308.388 201.203ZM350.346 169.147L393.78 201.203L350.346 233.259L306.912 201.203L350.346 169.147Z" fill="#B6DCFA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M308.388 208.88L350.346 177.913L392.305 208.88L350.346 239.847L308.388 208.88ZM350.346 176.824L393.78 208.88L350.346 240.936L306.912 208.88L350.346 176.824Z" fill="#B6DCFA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M308.38 216.561L350.338 185.594L392.297 216.561L350.338 247.528L308.38 216.561ZM350.338 184.506L393.772 216.561L350.338 248.617L306.904 216.561L350.338 184.506Z" fill="#B6DCFA"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M308.38 224.237L350.338 193.27L392.297 224.237L350.338 255.204L308.38 224.237ZM350.338 192.181L393.772 224.237L350.338 256.293L306.904 224.237L350.338 192.181Z" fill="#B6DCFA"/>
+<path d="M349.909 139.15L306.475 171.206L349.909 203.261L393.343 171.206L349.909 139.15Z" fill="#B6DCFA"/>
+</g>
+</svg>
diff --git a/public/img/features/multitier/04-bd.svg b/public/img/features/multitier/04-bd.svg
new file mode 100644
index 0000000..a18dd4a
--- /dev/null
+++ b/public/img/features/multitier/04-bd.svg
@@ -0,0 +1,74 @@
+<svg width="349" height="274" viewBox="0 0 349 274" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M2.62549 108.06V24.0669C2.62549 24.0669 19.3534 40.2939 66.1165 40.2939C112.88 40.2939 128.867 24.3696 128.867 24.3696V108.06C109.358 136.698 11.5052 128.14 2.62549 108.06Z" fill="#E0454C"/>
+<path d="M2.25879 166.261V80.8744C2.25879 80.8744 18.4367 97.3909 65.1998 97.3909C111.963 97.3909 128.825 79.7928 128.825 79.7928V166.261C108.938 191.192 14.3622 186.518 2.25879 166.261Z" fill="#0070CC"/>
+<path d="M128.971 20.4496C128.971 22.8181 127.475 25.2483 124.348 27.6118C121.237 29.9634 116.665 32.1243 110.907 33.9568C99.4023 37.6182 83.3882 39.8993 65.4857 39.8993C47.5831 39.8993 31.5691 37.6182 20.0647 33.9568C14.3068 32.1243 9.73466 29.9634 6.62333 27.6118C3.49634 25.2483 2 22.8181 2 20.4496C2 18.0812 3.49634 15.651 6.62333 13.2875C9.73466 10.9358 14.3068 8.775 20.0647 6.94246C31.5691 3.28103 47.5831 1 65.4857 1C83.3882 1 99.4023 3.28103 110.907 6.94246C116.665 8.775 121.237 10.9358 124.348 13.2875C127.475 15.651 128.971 18.0812 128.971 20.4496Z" fill="#E0454C" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M1.88013 20.4497L2.55383 164.201" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M128.972 20.0834L128.972 164.201" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M128.972 164.201C128.972 175.048 100.674 183.841 65.7657 183.841C30.8577 183.841 2.55908 175.048 2.55908 164.201" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M128.976 76.9491C128.976 87.7958 100.582 96.5888 65.5563 96.5888C30.5307 96.5888 2.13696 87.7958 2.13696 76.9491" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M22.2131 72.7467V58.473H25.0585L28.4399 68.5795C28.7517 69.5207 28.979 70.225 29.122 70.6923C29.2844 70.173 29.5377 69.4103 29.882 68.4042L33.3023 58.473H35.8456V72.7467H34.0234V60.8L29.8723 72.7467H28.167L24.0354 60.5956V72.7467H22.2131Z" fill="white"/>
+<path d="M39.1342 72.7467V58.473H49.4634V60.1574H41.0246V64.5291H48.9274V66.2038H41.0246V71.0623H49.7947V72.7467H39.1342Z" fill="white"/>
+<path d="M52.5473 72.7467V58.473H55.3927L58.774 68.5795C59.0858 69.5207 59.3132 70.225 59.4561 70.6923C59.6185 70.173 59.8719 69.4103 60.2162 68.4042L63.6365 58.473H66.1798V72.7467H64.3576V60.8L60.2064 72.7467H58.5012L54.3695 60.5956V72.7467H52.5473Z" fill="white"/>
+<path d="M68.8545 65.7948C68.8545 63.4256 69.4911 61.5724 70.7644 60.2353C72.0377 58.8917 73.6812 58.2198 75.6951 58.2198C77.0138 58.2198 78.2027 58.5347 79.2616 59.1643C80.3204 59.7939 81.126 60.6734 81.6782 61.8029C82.2369 62.9258 82.5162 64.2013 82.5162 65.6293C82.5162 67.0768 82.2239 68.3718 81.6392 69.5142C81.0545 70.6566 80.2263 71.5232 79.1544 72.1138C78.0825 72.698 76.9261 72.9901 75.6853 72.9901C74.3406 72.9901 73.1388 72.6656 72.0799 72.0165C71.021 71.3674 70.2187 70.4813 69.673 69.3584C69.1273 68.2355 68.8545 67.0476 68.8545 65.7948ZM70.8034 65.8241C70.8034 67.5442 71.2646 68.9008 72.1871 69.8939C73.116 70.8805 74.2789 71.3739 75.6756 71.3739C77.0983 71.3739 78.2676 70.8741 79.1836 69.8744C80.1061 68.8748 80.5673 67.4565 80.5673 65.6196C80.5673 64.4577 80.3692 63.4451 79.9729 62.5818C79.5831 61.712 79.0082 61.0402 78.2481 60.5663C77.4946 60.086 76.6468 59.8458 75.7048 59.8458C74.3666 59.8458 73.2135 60.3067 72.2455 61.2284C71.2841 62.1437 70.8034 63.6755 70.8034 65.8241Z" fill="white"/>
+<path d="M85.1909 72.7467V58.473H91.5248C92.7981 58.473 93.766 58.6028 94.4286 58.8625C95.0913 59.1156 95.6207 59.5667 96.017 60.2158C96.4133 60.8649 96.6114 61.5822 96.6114 62.3676C96.6114 63.3802 96.2833 64.2338 95.6272 64.9283C94.9711 65.6228 93.9576 66.0642 92.5869 66.2525C93.0871 66.4926 93.4672 66.7295 93.727 66.9632C94.2792 67.4695 94.8022 68.1024 95.2959 68.8618L97.7807 72.7467H95.4031L93.5126 69.7771C92.9605 68.9203 92.5057 68.2647 92.1484 67.8103C91.7911 67.3559 91.4696 67.0379 91.1837 66.8561C90.9044 66.6744 90.6185 66.5478 90.3262 66.4764C90.1118 66.431 89.761 66.4082 89.2738 66.4082H87.0813V72.7467H85.1909ZM87.0813 64.7725H91.1447C92.0088 64.7725 92.6844 64.6849 93.1716 64.5096C93.6588 64.3279 94.0291 64.0423 94.2825 63.6528C94.5358 63.2569 94.6625 62.8285 94.6625 62.3676C94.6625 61.6925 94.4156 61.1376 93.9219 60.7027C93.4347 60.2678 92.6616 60.0503 91.6027 60.0503H87.0813V64.7725Z" fill="white"/>
+<path d="M103.437 72.7467V66.7003L97.9316 58.473H100.231L103.047 62.7765C103.567 63.5814 104.051 64.3863 104.499 65.1912C104.928 64.4447 105.448 63.6041 106.058 62.6694L108.826 58.473H111.028L105.328 66.7003V72.7467H103.437Z" fill="white"/>
+<path d="M41.2305 158.49V144.217H46.1514C47.2623 144.217 48.1101 144.285 48.6947 144.421C49.5133 144.609 50.2116 144.95 50.7898 145.443C51.5434 146.079 52.1053 146.894 52.4756 147.887C52.8524 148.874 53.0408 150.003 53.0408 151.276C53.0408 152.36 52.9141 153.32 52.6607 154.158C52.4074 154.995 52.0826 155.689 51.6863 156.241C51.29 156.786 50.8548 157.218 50.3805 157.536C49.9128 157.848 49.3444 158.085 48.6752 158.247C48.0126 158.409 47.2493 158.49 46.3853 158.49H41.2305ZM43.1209 156.806H46.1709C47.1129 156.806 47.8502 156.718 48.3829 156.543C48.9221 156.368 49.3509 156.121 49.6692 155.803C50.1174 155.355 50.465 154.755 50.7118 154.002C50.9652 153.242 51.0919 152.324 51.0919 151.246C51.0919 149.753 50.845 148.608 50.3513 147.809C49.8641 147.004 49.2697 146.466 48.5681 146.193C48.0613 145.998 47.2461 145.901 46.1222 145.901H43.1209V156.806Z" fill="white"/>
+<path d="M56.1734 158.49V144.217H58.0638V158.49H56.1734Z" fill="white"/>
+<path d="M60.9626 153.904L62.7459 153.749C62.8303 154.463 63.0252 155.05 63.3305 155.511C63.6424 155.965 64.1231 156.335 64.7727 156.621C65.4224 156.9 66.1532 157.04 66.9652 157.04C67.6863 157.04 68.323 156.932 68.8751 156.718C69.4273 156.504 69.8366 156.212 70.1029 155.842C70.3758 155.465 70.5122 155.057 70.5122 154.615C70.5122 154.167 70.3823 153.778 70.1224 153.447C69.8626 153.109 69.4338 152.827 68.8362 152.6C68.4529 152.45 67.6051 152.22 66.2929 151.908C64.9806 151.59 64.0614 151.292 63.5352 151.013C62.8531 150.656 62.3431 150.214 62.0053 149.688C61.674 149.156 61.5083 148.562 61.5083 147.907C61.5083 147.186 61.713 146.514 62.1222 145.891C62.5315 145.262 63.1292 144.785 63.9152 144.46C64.7013 144.135 65.575 143.973 66.5365 143.973C67.5954 143.973 68.5276 144.145 69.3331 144.489C70.1452 144.827 70.7688 145.327 71.2041 145.989C71.6393 146.651 71.8732 147.4 71.9057 148.238L70.0932 148.374C69.9958 147.472 69.6644 146.79 69.0993 146.329C68.5406 145.869 67.7123 145.638 66.6144 145.638C65.4711 145.638 64.6363 145.849 64.1101 146.271C63.5904 146.686 63.3305 147.189 63.3305 147.78C63.3305 148.293 63.5157 148.715 63.886 149.046C64.2498 149.377 65.1982 149.718 66.7314 150.068C68.271 150.412 69.3266 150.714 69.8983 150.974C70.7298 151.357 71.3437 151.843 71.74 152.434C72.1363 153.018 72.3344 153.693 72.3344 154.459C72.3344 155.219 72.1168 155.936 71.6816 156.611C71.2463 157.28 70.6194 157.802 69.8009 158.179C68.9888 158.549 68.0728 158.734 67.0529 158.734C65.7602 158.734 64.6753 158.545 63.7983 158.169C62.9278 157.792 62.2424 157.228 61.7422 156.475C61.2485 155.715 60.9886 154.859 60.9626 153.904Z" fill="white"/>
+<path d="M75.0383 158.49V144.217H76.9287V151.295L84.0227 144.217H86.5855L80.5927 150L86.8486 158.49H84.354L79.2674 151.266L76.9287 153.544V158.49H75.0383Z" fill="white"/>
+<path d="M220.654 108.06V24.0669C220.654 24.0669 237.382 40.2939 284.145 40.2939C330.908 40.2939 346.896 24.3696 346.896 24.3696V108.06C327.387 136.698 229.534 128.14 220.654 108.06Z" fill="#E0454C"/>
+<path d="M220.287 166.261V80.8744C220.287 80.8744 236.465 97.3909 283.228 97.3909C329.991 97.3909 346.853 79.7928 346.853 79.7928V166.261C326.967 191.192 232.391 186.518 220.287 166.261Z" fill="#0070CC"/>
+<path d="M347 20.4496C347 22.8181 345.504 25.2483 342.377 27.6118C339.265 29.9634 334.693 32.1243 328.935 33.9568C317.431 37.6182 301.417 39.8993 283.514 39.8993C265.612 39.8993 249.598 37.6182 238.093 33.9568C232.335 32.1243 227.763 29.9634 224.652 27.6118C221.525 25.2483 220.029 22.8181 220.029 20.4496C220.029 18.0812 221.525 15.651 224.652 13.2875C227.763 10.9358 232.335 8.775 238.093 6.94246C249.598 3.28103 265.612 1 283.514 1C301.417 1 317.431 3.28103 328.935 6.94246C334.693 8.775 339.265 10.9358 342.377 13.2875C345.504 15.651 347 18.0812 347 20.4496Z" fill="#E0454C" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M219.909 20.4497L220.583 164.201" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M347.001 20.0834L347.001 164.201" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M347.001 164.201C347.001 175.048 318.703 183.841 283.794 183.841C248.886 183.841 220.588 175.048 220.588 164.201" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M347.004 76.9491C347.004 87.7958 318.61 96.5888 283.585 96.5888C248.559 96.5888 220.166 87.7958 220.166 76.9491" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M240.242 72.7467V58.473H243.087L246.469 68.5795C246.78 69.5207 247.008 70.225 247.151 70.6923C247.313 70.173 247.567 69.4103 247.911 68.4042L251.331 58.473H253.874V72.7467H252.052V60.8L247.901 72.7467H246.196L242.064 60.5956V72.7467H240.242Z" fill="white"/>
+<path d="M257.163 72.7467V58.473H267.492V60.1574H259.053V64.5291H266.956V66.2038H259.053V71.0623H267.823V72.7467H257.163Z" fill="white"/>
+<path d="M270.576 72.7467V58.473H273.421L276.803 68.5795C277.115 69.5207 277.342 70.225 277.485 70.6923C277.647 70.173 277.901 69.4103 278.245 68.4042L281.665 58.473H284.209V72.7467H282.386V60.8L278.235 72.7467H276.53L272.398 60.5956V72.7467H270.576Z" fill="white"/>
+<path d="M286.883 65.7948C286.883 63.4256 287.52 61.5724 288.793 60.2353C290.066 58.8917 291.71 58.2198 293.724 58.2198C295.043 58.2198 296.231 58.5347 297.29 59.1643C298.349 59.7939 299.155 60.6734 299.707 61.8029C300.266 62.9258 300.545 64.2013 300.545 65.6293C300.545 67.0768 300.253 68.3718 299.668 69.5142C299.083 70.6566 298.255 71.5232 297.183 72.1138C296.111 72.698 294.955 72.9901 293.714 72.9901C292.369 72.9901 291.168 72.6656 290.109 72.0165C289.05 71.3674 288.247 70.4813 287.702 69.3584C287.156 68.2355 286.883 67.0476 286.883 65.7948ZM288.832 65.8241C288.832 67.5442 289.293 68.9008 290.216 69.8939C291.145 70.8805 292.308 71.3739 293.704 71.3739C295.127 71.3739 296.296 70.8741 297.212 69.8744C298.135 68.8748 298.596 67.4565 298.596 65.6196C298.596 64.4577 298.398 63.4451 298.002 62.5818C297.612 61.712 297.037 61.0402 296.277 60.5663C295.523 60.086 294.676 59.8458 293.734 59.8458C292.395 59.8458 291.242 60.3067 290.274 61.2284C289.313 62.1437 288.832 63.6755 288.832 65.8241Z" fill="white"/>
+<path d="M303.22 72.7467V58.473H309.554C310.827 58.473 311.795 58.6028 312.457 58.8625C313.12 59.1156 313.65 59.5667 314.046 60.2158C314.442 60.8649 314.64 61.5822 314.64 62.3676C314.64 63.3802 314.312 64.2338 313.656 64.9283C313 65.6228 311.986 66.0642 310.616 66.2525C311.116 66.4926 311.496 66.7295 311.756 66.9632C312.308 67.4695 312.831 68.1024 313.325 68.8618L315.81 72.7467H313.432L311.541 69.7771C310.989 68.9203 310.535 68.2647 310.177 67.8103C309.82 67.3559 309.498 67.0379 309.213 66.8561C308.933 66.6744 308.647 66.5478 308.355 66.4764C308.141 66.431 307.79 66.4082 307.303 66.4082H305.11V72.7467H303.22ZM305.11 64.7725H309.174C310.038 64.7725 310.713 64.6849 311.2 64.5096C311.688 64.3279 312.058 64.0423 312.311 63.6528C312.565 63.2569 312.691 62.8285 312.691 62.3676C312.691 61.6925 312.444 61.1376 311.951 60.7027C311.464 60.2678 310.69 60.0503 309.632 60.0503H305.11V64.7725Z" fill="white"/>
+<path d="M321.466 72.7467V66.7003L315.96 58.473H318.26L321.076 62.7765C321.596 63.5814 322.08 64.3863 322.528 65.1912C322.957 64.4447 323.477 63.6041 324.087 62.6694L326.855 58.473H329.057L323.356 66.7003V72.7467H321.466Z" fill="white"/>
+<path d="M261.259 158.49V144.217H266.18C267.291 144.217 268.139 144.285 268.724 144.421C269.542 144.609 270.24 144.95 270.819 145.443C271.572 146.079 272.134 146.894 272.504 147.887C272.881 148.874 273.07 150.003 273.07 151.276C273.07 152.36 272.943 153.32 272.69 154.158C272.436 154.995 272.111 155.689 271.715 156.241C271.319 156.786 270.884 157.218 270.409 157.536C269.942 157.848 269.373 158.085 268.704 158.247C268.041 158.409 267.278 158.49 266.414 158.49H261.259ZM263.15 156.806H266.2C267.142 156.806 267.879 156.718 268.412 156.543C268.951 156.368 269.38 156.121 269.698 155.803C270.146 155.355 270.494 154.755 270.741 154.002C270.994 153.242 271.121 152.324 271.121 151.246C271.121 149.753 270.874 148.608 270.38 147.809C269.893 147.004 269.298 146.466 268.597 146.193C268.09 145.998 267.275 145.901 266.151 145.901H263.15V156.806Z" fill="white"/>
+<path d="M276.202 158.49V144.217H278.093V158.49H276.202Z" fill="white"/>
+<path d="M280.991 153.904L282.775 153.749C282.859 154.463 283.054 155.05 283.359 155.511C283.671 155.965 284.152 156.335 284.802 156.621C285.451 156.9 286.182 157.04 286.994 157.04C287.715 157.04 288.352 156.932 288.904 156.718C289.456 156.504 289.865 156.212 290.132 155.842C290.405 155.465 290.541 155.057 290.541 154.615C290.541 154.167 290.411 153.778 290.151 153.447C289.891 153.109 289.463 152.827 288.865 152.6C288.482 152.45 287.634 152.22 286.322 151.908C285.009 151.59 284.09 151.292 283.564 151.013C282.882 150.656 282.372 150.214 282.034 149.688C281.703 149.156 281.537 148.562 281.537 147.907C281.537 147.186 281.742 146.514 282.151 145.891C282.56 145.262 283.158 144.785 283.944 144.46C284.73 144.135 285.604 143.973 286.565 143.973C287.624 143.973 288.556 144.145 289.362 144.489C290.174 144.827 290.798 145.327 291.233 145.989C291.668 146.651 291.902 147.4 291.934 148.238L290.122 148.374C290.025 147.472 289.693 146.79 289.128 146.329C288.569 145.869 287.741 145.638 286.643 145.638C285.5 145.638 284.665 145.849 284.139 146.271C283.619 146.686 283.359 147.189 283.359 147.78C283.359 148.293 283.544 148.715 283.915 149.046C284.279 149.377 285.227 149.718 286.76 150.068C288.3 150.412 289.355 150.714 289.927 150.974C290.759 151.357 291.373 151.843 291.769 152.434C292.165 153.018 292.363 153.693 292.363 154.459C292.363 155.219 292.146 155.936 291.71 156.611C291.275 157.28 290.648 157.802 289.83 158.179C289.018 158.549 288.102 158.734 287.082 158.734C285.789 158.734 284.704 158.545 283.827 158.169C282.957 157.792 282.271 157.228 281.771 156.475C281.277 155.715 281.017 154.859 280.991 153.904Z" fill="white"/>
+<path d="M295.067 158.49V144.217H296.958V151.295L304.052 144.217H306.614L300.621 150L306.877 158.49H304.383L299.296 151.266L296.958 153.544V158.49H295.067Z" fill="white"/>
+<path d="M139.475 244.281C139.475 244.281 125.149 253.143 138.65 261.941C141.247 263.655 150.667 268.42 150.399 272.83C150.399 272.83 156.109 264.261 147.761 258.869C139.186 253.352 137.042 247.458 139.475 244.281Z" fill="#ED1C24"/>
+<path d="M134.487 261.21C134.487 261.21 129.375 269.068 139.434 270.677C140.424 270.802 147.7 271.576 149.596 274C149.596 274 149.431 269.82 143.495 267.354C137.579 264.888 135.147 264.282 134.487 261.21Z" fill="#ED1C24"/>
+<path d="M154.275 252.954C148.132 246.434 146.421 242.4 149.06 237.176C149.06 237.176 130.735 244.323 148.833 257.009C155.305 261.544 154.233 266.184 154.233 266.351C155.243 265.285 160.417 259.475 154.275 252.954Z" fill="#ED1C24"/>
+<path d="M163.989 265.215V251.952H165.791L172.763 262.365V251.952H174.447V265.215H172.645L165.673 254.793V265.215H163.989Z" fill="#2D2D2D"/>
+<path d="M177.105 258.755C177.105 256.554 177.697 254.832 178.88 253.59C180.063 252.341 181.59 251.717 183.461 251.717C184.686 251.717 185.791 252.009 186.775 252.594C187.759 253.179 188.507 253.997 189.02 255.046C189.54 256.089 189.799 257.275 189.799 258.602C189.799 259.946 189.528 261.15 188.984 262.211C188.441 263.273 187.671 264.078 186.675 264.627C185.679 265.17 184.605 265.441 183.452 265.441C182.203 265.441 181.086 265.139 180.102 264.536C179.118 263.933 178.373 263.11 177.866 262.066C177.359 261.023 177.105 259.919 177.105 258.755ZM178.916 258.782C178.916 260.381 179.344 261.641 180.202 262.564C181.065 263.481 182.145 263.939 183.443 263.939C184.765 263.939 185.851 263.475 186.703 262.546C187.56 261.617 187.988 260.299 187.988 258.592C187.988 257.513 187.804 256.572 187.436 255.77C187.074 254.962 186.54 254.337 185.833 253.897C185.133 253.451 184.345 253.228 183.47 253.228C182.227 253.228 181.155 253.656 180.256 254.512C179.363 255.363 178.916 256.786 178.916 258.782Z" fill="#2D2D2D"/>
+<path d="M192.304 265.215V251.952H196.876C197.908 251.952 198.696 252.015 199.239 252.142C200 252.317 200.649 252.634 201.186 253.092C201.886 253.683 202.408 254.44 202.752 255.363C203.102 256.279 203.277 257.329 203.277 258.511C203.277 259.518 203.16 260.411 202.924 261.189C202.689 261.967 202.387 262.612 202.019 263.125C201.651 263.632 201.246 264.033 200.806 264.328C200.371 264.618 199.843 264.838 199.221 264.989C198.605 265.139 197.896 265.215 197.093 265.215H192.304ZM194.06 263.65H196.894C197.769 263.65 198.455 263.568 198.949 263.405C199.45 263.243 199.849 263.013 200.145 262.718C200.561 262.302 200.884 261.744 201.113 261.044C201.349 260.339 201.467 259.485 201.467 258.484C201.467 257.097 201.237 256.032 200.778 255.29C200.326 254.542 199.773 254.042 199.122 253.789C198.651 253.608 197.893 253.517 196.849 253.517H194.06V263.65Z" fill="#2D2D2D"/>
+<path d="M205.972 265.215V251.952H215.57V253.517H207.729V257.579H215.072V259.135H207.729V263.65H215.877V265.215H205.972Z" fill="#2D2D2D"/>
+<path d="M18.3313 198.412C18.3313 198.412 4.00575 207.273 17.5068 216.071C20.104 217.785 29.5238 222.55 29.2559 226.96C29.2559 226.96 34.9655 218.391 26.6175 212.999C18.0427 207.482 15.8991 201.588 18.3313 198.412Z" fill="#ED1C24"/>
+<path d="M13.344 215.34C13.344 215.34 8.23214 223.198 18.291 224.807C19.2803 224.933 26.5565 225.706 28.4528 228.13C28.4528 228.13 28.2879 223.951 22.3516 221.484C16.4358 219.018 14.0036 218.412 13.344 215.34Z" fill="#ED1C24"/>
+<path d="M33.1315 207.085C26.989 200.564 25.2782 196.531 27.9166 191.306C27.9166 191.306 9.59223 198.453 27.6899 211.139C34.1621 215.674 33.0903 220.314 33.0903 220.481C34.1003 219.415 39.274 213.605 33.1315 207.085Z" fill="#ED1C24"/>
+<path d="M42.8457 219.345V206.082H44.6475L51.6194 216.495V206.082H53.3035V219.345H51.5016L44.5298 208.923V219.345H42.8457Z" fill="#2D2D2D"/>
+<path d="M55.9618 212.886C55.9618 210.684 56.5534 208.962 57.7365 207.72C58.9196 206.471 60.4467 205.847 62.3179 205.847C63.5433 205.847 64.6479 206.14 65.6318 206.725C66.6157 207.31 67.3642 208.127 67.8773 209.176C68.3964 210.22 68.656 211.405 68.656 212.732C68.656 214.077 68.3843 215.28 67.8411 216.342C67.2978 217.403 66.5282 218.208 65.5322 218.757C64.5363 219.3 63.4618 219.571 62.3089 219.571C61.0594 219.571 59.9427 219.27 58.9588 218.667C57.9749 218.064 57.2294 217.24 56.7224 216.197C56.2153 215.153 55.9618 214.05 55.9618 212.886ZM57.7727 212.913C57.7727 214.511 58.2012 215.772 59.0584 216.694C59.9216 217.611 61.0021 218.07 62.2998 218.07C63.6218 218.07 64.7083 217.605 65.5594 216.676C66.4165 215.748 66.8451 214.43 66.8451 212.723C66.8451 211.643 66.661 210.702 66.2928 209.9C65.9306 209.092 65.3964 208.468 64.6902 208.027C63.99 207.581 63.2023 207.358 62.327 207.358C61.0835 207.358 60.0121 207.786 59.1127 208.643C58.2194 209.493 57.7727 210.916 57.7727 212.913Z" fill="#2D2D2D"/>
+<path d="M71.1604 219.345V206.082H75.7328C76.765 206.082 77.5528 206.146 78.096 206.272C78.8566 206.447 79.5055 206.764 80.0427 207.222C80.7429 207.813 81.265 208.57 81.6091 209.493C81.9592 210.41 82.1343 211.459 82.1343 212.641C82.1343 213.649 82.0166 214.541 81.7811 215.319C81.5457 216.097 81.2439 216.743 80.8757 217.255C80.5075 217.762 80.1031 218.163 79.6624 218.459C79.2278 218.748 78.6996 218.968 78.0779 219.119C77.4622 219.27 76.753 219.345 75.9501 219.345H71.1604ZM72.9169 217.78H75.751C76.6262 217.78 77.3113 217.699 77.8063 217.536C78.3073 217.373 78.7057 217.144 79.0015 216.848C79.418 216.432 79.7409 215.874 79.9703 215.175C80.2057 214.469 80.3234 213.615 80.3234 212.614C80.3234 211.227 80.094 210.163 79.6353 209.421C79.1825 208.673 78.6302 208.172 77.9783 207.919C77.5075 207.738 76.7499 207.648 75.7057 207.648H72.9169V217.78Z" fill="#2D2D2D"/>
+<path d="M84.8288 219.345V206.082H94.4264V207.648H86.5854V211.71H93.9284V213.266H86.5854V217.78H94.7343V219.345H84.8288Z" fill="#2D2D2D"/>
+<path d="M260.618 198.412C260.618 198.412 246.292 207.273 259.793 216.071C262.39 217.785 271.81 222.55 271.542 226.96C271.542 226.96 277.252 218.391 268.904 212.999C260.329 207.482 258.186 201.588 260.618 198.412Z" fill="#ED1C24"/>
+<path d="M255.63 215.34C255.63 215.34 250.519 223.198 260.577 224.807C261.567 224.933 268.843 225.706 270.739 228.13C270.739 228.13 270.574 223.951 264.638 221.484C258.722 219.018 256.29 218.412 255.63 215.34Z" fill="#ED1C24"/>
+<path d="M275.418 207.085C269.276 200.564 267.565 196.531 270.203 191.306C270.203 191.306 251.879 198.453 269.976 211.139C276.449 215.674 275.377 220.314 275.377 220.481C276.387 219.415 281.56 213.605 275.418 207.085Z" fill="#ED1C24"/>
+<path d="M285.132 219.345V206.082H286.934L293.906 216.495V206.082H295.59V219.345H293.788L286.816 208.923V219.345H285.132Z" fill="#2D2D2D"/>
+<path d="M298.248 212.886C298.248 210.684 298.84 208.962 300.023 207.72C301.206 206.471 302.733 205.847 304.604 205.847C305.83 205.847 306.934 206.14 307.918 206.725C308.902 207.31 309.651 208.127 310.164 209.176C310.683 210.22 310.942 211.405 310.942 212.732C310.942 214.077 310.671 215.28 310.128 216.342C309.584 217.403 308.815 218.208 307.819 218.757C306.823 219.3 305.748 219.571 304.595 219.571C303.346 219.571 302.229 219.27 301.245 218.667C300.261 218.064 299.516 217.24 299.009 216.197C298.502 215.153 298.248 214.05 298.248 212.886ZM300.059 212.913C300.059 214.511 300.488 215.772 301.345 216.694C302.208 217.611 303.289 218.07 304.586 218.07C305.908 218.07 306.995 217.605 307.846 216.676C308.703 215.748 309.132 214.43 309.132 212.723C309.132 211.643 308.948 210.702 308.579 209.9C308.217 209.092 307.683 208.468 306.977 208.027C306.276 207.581 305.489 207.358 304.614 207.358C303.37 207.358 302.299 207.786 301.399 208.643C300.506 209.493 300.059 210.916 300.059 212.913Z" fill="#2D2D2D"/>
+<path d="M313.447 219.345V206.082H318.019C319.052 206.082 319.839 206.146 320.383 206.272C321.143 206.447 321.792 206.764 322.329 207.222C323.029 207.813 323.552 208.57 323.896 209.493C324.246 210.41 324.421 211.459 324.421 212.641C324.421 213.649 324.303 214.541 324.068 215.319C323.832 216.097 323.53 216.743 323.162 217.255C322.794 217.762 322.39 218.163 321.949 218.459C321.514 218.748 320.986 218.968 320.364 219.119C319.749 219.27 319.039 219.345 318.237 219.345H313.447ZM315.203 217.78H318.037C318.913 217.78 319.598 217.699 320.093 217.536C320.594 217.373 320.992 217.144 321.288 216.848C321.704 216.432 322.027 215.874 322.257 215.175C322.492 214.469 322.61 213.615 322.61 212.614C322.61 211.227 322.381 210.163 321.922 209.421C321.469 208.673 320.917 208.172 320.265 207.919C319.794 207.738 319.036 207.648 317.992 207.648H315.203V217.78Z" fill="#2D2D2D"/>
+<path d="M327.115 219.345V206.082H336.713V207.648H328.872V211.71H336.215V213.266H328.872V217.78H337.021V219.345H327.115Z" fill="#2D2D2D"/>
+<path d="M112.375 151.866V67.8726C112.375 67.8726 129.102 84.0997 175.866 84.0997C222.629 84.0997 238.616 68.1754 238.616 68.1754V151.866C219.107 180.504 121.254 171.946 112.375 151.866Z" fill="#E0454C"/>
+<path d="M112.008 210.067V124.68C112.008 124.68 128.186 141.197 174.949 141.197C221.712 141.197 238.574 123.598 238.574 123.598V210.067C218.687 234.998 124.111 230.323 112.008 210.067Z" fill="#0070CC"/>
+<path d="M238.72 64.2553C238.72 66.6237 237.224 69.054 234.097 71.4175C230.986 73.7691 226.414 75.9299 220.656 77.7625C209.151 81.4239 193.137 83.7049 175.235 83.7049C157.332 83.7049 141.318 81.4239 129.814 77.7625C124.056 75.9299 119.484 73.7691 116.372 71.4175C113.245 69.054 111.749 66.6237 111.749 64.2553C111.749 61.8869 113.245 59.4566 116.372 57.0931C119.484 54.7415 124.056 52.5807 129.814 50.7481C141.318 47.0867 157.332 44.8057 175.235 44.8057C193.137 44.8057 209.151 47.0867 220.656 50.7481C226.414 52.5807 230.986 54.7415 234.097 57.0931C237.224 59.4566 238.72 61.8869 238.72 64.2553Z" fill="#E0454C" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M111.629 64.2554L112.303 208.007" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M238.721 63.889L238.721 208.007" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M238.721 208.007C238.721 218.853 210.423 227.646 175.515 227.646C140.607 227.646 112.308 218.853 112.308 208.007" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M238.725 120.755C238.725 131.602 210.331 140.395 175.305 140.395C140.28 140.395 111.886 131.602 111.886 120.755" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M131.962 116.552V102.279H134.808L138.189 112.385C138.501 113.326 138.728 114.031 138.871 114.498C139.033 113.979 139.287 113.216 139.631 112.21L143.051 102.279H145.595V116.552H143.772V104.606L139.621 116.552H137.916L133.784 104.401V116.552H131.962Z" fill="white"/>
+<path d="M148.883 116.552V102.279H159.212V103.963H150.774V108.335H158.676V110.01H150.774V114.868H159.544V116.552H148.883Z" fill="white"/>
+<path d="M162.296 116.552V102.279H165.142L168.523 112.385C168.835 113.326 169.062 114.031 169.205 114.498C169.368 113.979 169.621 113.216 169.965 112.21L173.386 102.279H175.929V116.552H174.107V104.606L169.955 116.552H168.25L164.119 104.401V116.552H162.296Z" fill="white"/>
+<path d="M178.603 109.601C178.603 107.231 179.24 105.378 180.513 104.041C181.787 102.697 183.43 102.026 185.444 102.026C186.763 102.026 187.952 102.34 189.011 102.97C190.069 103.6 190.875 104.479 191.427 105.609C191.986 106.732 192.265 108.007 192.265 109.435C192.265 110.883 191.973 112.178 191.388 113.32C190.804 114.462 189.975 115.329 188.903 115.92C187.831 116.504 186.675 116.796 185.434 116.796C184.09 116.796 182.888 116.471 181.829 115.822C180.77 115.173 179.968 114.287 179.422 113.164C178.876 112.041 178.603 110.853 178.603 109.601ZM180.552 109.63C180.552 111.35 181.014 112.707 181.936 113.7C182.865 114.686 184.028 115.18 185.425 115.18C186.847 115.18 188.017 114.68 188.933 113.68C189.855 112.681 190.316 111.262 190.316 109.425C190.316 108.263 190.118 107.251 189.722 106.388C189.332 105.518 188.757 104.846 187.997 104.372C187.244 103.892 186.396 103.652 185.454 103.652C184.116 103.652 182.963 104.112 181.995 105.034C181.033 105.949 180.552 107.481 180.552 109.63Z" fill="white"/>
+<path d="M194.94 116.552V102.279H201.274C202.547 102.279 203.515 102.409 204.178 102.668C204.84 102.921 205.37 103.373 205.766 104.022C206.162 104.671 206.36 105.388 206.36 106.173C206.36 107.186 206.032 108.04 205.376 108.734C204.72 109.429 203.707 109.87 202.336 110.058C202.836 110.298 203.216 110.535 203.476 110.769C204.028 111.275 204.551 111.908 205.045 112.668L207.53 116.552H205.152L203.262 113.583C202.709 112.726 202.255 112.07 201.897 111.616C201.54 111.162 201.219 110.844 200.933 110.662C200.653 110.48 200.368 110.354 200.075 110.282C199.861 110.237 199.51 110.214 199.023 110.214H196.83V116.552H194.94ZM196.83 108.578H200.894C201.758 108.578 202.433 108.491 202.921 108.315C203.408 108.134 203.778 107.848 204.031 107.459C204.285 107.063 204.412 106.634 204.412 106.173C204.412 105.498 204.165 104.943 203.671 104.508C203.184 104.074 202.411 103.856 201.352 103.856H196.83V108.578Z" fill="white"/>
+<path d="M213.186 116.552V110.506L207.681 102.279H209.98L212.796 106.582C213.316 107.387 213.8 108.192 214.248 108.997C214.677 108.251 215.197 107.41 215.807 106.475L218.575 102.279H220.777L215.077 110.506V116.552H213.186Z" fill="white"/>
+<path d="M151.98 202.296V188.022H156.901C158.012 188.022 158.859 188.09 159.444 188.227C160.263 188.415 160.961 188.756 161.539 189.249C162.293 189.885 162.855 190.7 163.225 191.693C163.602 192.68 163.79 193.809 163.79 195.081C163.79 196.165 163.663 197.126 163.41 197.963C163.157 198.801 162.832 199.495 162.436 200.047C162.039 200.592 161.604 201.024 161.13 201.342C160.662 201.653 160.094 201.89 159.425 202.053C158.762 202.215 157.999 202.296 157.135 202.296H151.98ZM153.87 200.612H156.92C157.862 200.612 158.599 200.524 159.132 200.349C159.671 200.173 160.1 199.927 160.418 199.609C160.867 199.161 161.214 198.56 161.461 197.807C161.714 197.048 161.841 196.129 161.841 195.052C161.841 193.559 161.594 192.413 161.101 191.615C160.613 190.81 160.019 190.271 159.317 189.999C158.811 189.804 157.995 189.707 156.871 189.707H153.87V200.612Z" fill="white"/>
+<path d="M166.923 202.296V188.022H168.813V202.296H166.923Z" fill="white"/>
+<path d="M171.712 197.71L173.495 197.554C173.58 198.268 173.774 198.856 174.08 199.317C174.392 199.771 174.872 200.141 175.522 200.427C176.172 200.706 176.902 200.845 177.714 200.845C178.436 200.845 179.072 200.738 179.624 200.524C180.177 200.31 180.586 200.018 180.852 199.648C181.125 199.271 181.261 198.862 181.261 198.421C181.261 197.973 181.132 197.583 180.872 197.252C180.612 196.915 180.183 196.633 179.585 196.405C179.202 196.256 178.354 196.026 177.042 195.714C175.73 195.396 174.811 195.097 174.284 194.818C173.602 194.461 173.092 194.02 172.755 193.494C172.423 192.962 172.258 192.368 172.258 191.712C172.258 190.992 172.462 190.32 172.871 189.697C173.281 189.067 173.878 188.59 174.664 188.266C175.451 187.941 176.324 187.779 177.286 187.779C178.345 187.779 179.277 187.951 180.082 188.295C180.894 188.632 181.518 189.132 181.953 189.794C182.389 190.456 182.622 191.206 182.655 192.043L180.842 192.18C180.745 191.277 180.414 190.596 179.849 190.135C179.29 189.674 178.462 189.444 177.364 189.444C176.22 189.444 175.386 189.655 174.859 190.077C174.34 190.492 174.08 190.995 174.08 191.586C174.08 192.099 174.265 192.52 174.635 192.852C174.999 193.183 175.947 193.523 177.481 193.874C179.02 194.218 180.076 194.52 180.648 194.779C181.479 195.162 182.093 195.649 182.489 196.24C182.886 196.824 183.084 197.499 183.084 198.265C183.084 199.024 182.866 199.742 182.431 200.417C181.996 201.085 181.369 201.608 180.55 201.984C179.738 202.354 178.822 202.539 177.802 202.539C176.509 202.539 175.425 202.351 174.548 201.975C173.677 201.598 172.992 201.033 172.491 200.28C171.998 199.521 171.738 198.664 171.712 197.71Z" fill="white"/>
+<path d="M185.788 202.296V188.022H187.678V195.101L194.772 188.022H197.335L191.342 193.806L197.598 202.296H195.103L190.017 195.071L187.678 197.35V202.296H185.788Z" fill="white"/>
+</svg>
diff --git a/public/img/features/multitier/04-bglines.svg b/public/img/features/multitier/04-bglines.svg
new file mode 100644
index 0000000..437063d
--- /dev/null
+++ b/public/img/features/multitier/04-bglines.svg
@@ -0,0 +1,30 @@
+<svg width="350" height="220" viewBox="0 0 350 220" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="350" height="220" fill="#0070CC"/>
+<mask id="mask0" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="350" height="220">
+<rect y="0.00012207" width="350" height="220" fill="#0070CC"/>
+</mask>
+<g mask="url(#mask0)">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M82.9151 310.302L485.88 -121.42L486.077 -121.237L83.1113 310.486L82.9151 310.302Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M232.322 -204.242C232.32 -204.243 232.319 -204.243 232.373 -204.366C232.426 -204.489 232.427 -204.489 232.428 -204.488L232.436 -204.485L232.467 -204.471C232.494 -204.46 232.535 -204.442 232.589 -204.418C232.697 -204.371 232.857 -204.299 233.067 -204.204C233.488 -204.015 234.108 -203.73 234.909 -203.35C236.512 -202.591 238.836 -201.45 241.726 -199.928C247.507 -196.882 255.552 -192.306 264.609 -186.184C282.721 -173.939 304.889 -155.505 321.093 -130.748C337.299 -105.99 347.54 -74.9077 341.794 -37.378C336.049 0.148849 314.321 44.1066 266.62 94.6247C171.242 195.635 120.871 249.6 94.3456 278.313C81.0828 292.669 73.7814 300.711 69.796 305.165C67.8032 307.391 66.6397 308.72 65.9746 309.492C65.6421 309.879 65.4342 310.125 65.3097 310.275C65.2475 310.35 65.2062 310.401 65.1805 310.433C65.1677 310.448 65.1588 310.46 65.1531 310.467L65.1458 310.476L65.0395 310.394C64.9334 310.312 64.9337 310.312 64.9337 310.312L64.9342 310.311L64.9359 310.309L64.9428 310.3C64.949 310.292 64.9584 310.281 64.9717 310.264C64.9982 310.231 65.0404 310.179 65.1033 310.104C65.2291 309.952 65.438 309.704 65.7713 309.317C66.4379 308.544 67.6026 307.213 69.596 304.986C73.5828 300.531 80.8852 292.487 94.1485 278.13C120.675 249.417 171.046 195.451 266.425 94.4404C314.102 43.9476 335.794 0.0375977 341.529 -37.4186C347.263 -74.872 337.045 -105.888 320.869 -130.602C304.691 -155.317 282.554 -173.728 264.458 -185.961C255.411 -192.078 247.375 -196.649 241.601 -199.69C238.715 -201.211 236.393 -202.35 234.794 -203.108C233.995 -203.487 233.376 -203.771 232.957 -203.96C232.747 -204.054 232.588 -204.125 232.481 -204.172C232.427 -204.196 232.387 -204.214 232.36 -204.225L232.329 -204.239L232.322 -204.242Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M214.348 -204.242C214.347 -204.243 214.346 -204.243 214.399 -204.366C214.452 -204.489 214.453 -204.489 214.455 -204.488L214.462 -204.485L214.493 -204.471C214.521 -204.46 214.561 -204.442 214.615 -204.418C214.723 -204.371 214.883 -204.299 215.093 -204.204C215.514 -204.015 216.134 -203.73 216.936 -203.35C218.538 -202.591 220.862 -201.45 223.753 -199.928C229.533 -196.882 237.578 -192.306 246.635 -186.184C264.748 -173.939 286.915 -155.505 303.12 -130.748C319.325 -105.99 329.567 -74.9077 323.821 -37.378C318.075 0.148849 296.347 44.1066 248.646 94.6247C153.268 195.635 102.897 249.6 76.3719 278.313C63.1091 292.669 55.8077 300.711 51.8223 305.165C49.8295 307.391 48.666 308.72 48.0009 309.492C47.6683 309.879 47.4605 310.125 47.336 310.275C47.2738 310.35 47.2324 310.401 47.2068 310.433C47.1939 310.448 47.185 310.46 47.1794 310.467L47.1721 310.476L47.0658 310.394C46.9597 310.312 46.9599 310.312 46.9599 310.312L46.9604 310.311L46.9622 310.309L46.9691 310.3C46.9753 310.292 46.9847 310.281 46.9979 310.264C47.0245 310.231 47.0667 310.179 47.1296 310.104C47.2553 309.952 47.4642 309.704 47.7976 309.317C48.4642 308.544 49.6289 307.213 51.6223 304.986C55.6091 300.531 62.9115 292.487 76.1748 278.13C102.701 249.417 153.072 195.451 248.451 94.4404C296.128 43.9476 317.821 0.0375977 323.555 -37.4186C329.29 -74.872 319.071 -105.888 302.895 -130.602C286.717 -155.317 264.581 -173.728 246.485 -185.961C237.437 -192.078 229.401 -196.649 223.628 -199.69C220.741 -201.211 218.42 -202.35 216.821 -203.108C216.021 -203.487 215.402 -203.771 214.983 -203.96C214.773 -204.054 214.614 -204.125 214.507 -204.172C214.453 -204.196 214.413 -204.214 214.386 -204.225L214.356 -204.239L214.348 -204.242Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M196.378 -204.242C196.376 -204.243 196.376 -204.243 196.429 -204.366C196.482 -204.489 196.483 -204.489 196.484 -204.488L196.492 -204.485L196.523 -204.471C196.55 -204.46 196.591 -204.442 196.645 -204.418C196.753 -204.371 196.913 -204.299 197.123 -204.204C197.544 -204.015 198.164 -203.73 198.965 -203.35C200.568 -202.591 202.892 -201.45 205.783 -199.928C211.563 -196.882 219.608 -192.306 228.665 -186.184C246.777 -173.939 268.945 -155.505 285.149 -130.748C301.355 -105.99 311.596 -74.9077 305.85 -37.378C300.105 0.148849 278.377 44.1066 230.676 94.6247C135.298 195.635 84.9273 249.6 58.4017 278.313C45.1389 292.669 37.8375 300.711 33.8521 305.165C31.8593 307.391 30.6958 308.72 30.0307 309.492C29.6981 309.879 29.4903 310.125 29.3658 310.275C29.3036 310.35 29.2622 310.401 29.2366 310.433C29.2237 310.448 29.2148 310.46 29.2092 310.467L29.2019 310.476L29.0956 310.394C28.9895 310.312 28.9897 310.312 28.9897 310.312L28.9902 310.311L28.992 310.309L28.9989 310.3C29.0051 310.292 29.0145 310.281 29.0277 310.264C29.0543 310.231 29.0965 310.179 29.1594 310.104C29.2851 309.952 29.494 309.704 29.8273 309.317C30.4939 308.544 31.6587 307.213 33.6521 304.986C37.6389 300.531 44.9413 292.487 58.2046 278.13C84.7312 249.417 135.102 195.451 230.481 94.4404C278.158 43.9476 299.85 0.0375977 305.585 -37.4186C311.319 -74.872 301.101 -105.888 284.925 -130.602C268.747 -155.317 246.611 -173.728 228.514 -185.961C219.467 -192.078 211.431 -196.649 205.657 -199.69C202.771 -201.211 200.449 -202.35 198.85 -203.108C198.051 -203.487 197.432 -203.771 197.013 -203.96C196.803 -204.054 196.644 -204.125 196.537 -204.172C196.483 -204.196 196.443 -204.214 196.416 -204.225L196.386 -204.239L196.378 -204.242Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M174.807 -204.242C174.806 -204.243 174.805 -204.243 174.858 -204.366C174.911 -204.489 174.912 -204.489 174.914 -204.488L174.922 -204.485L174.953 -204.471C174.98 -204.46 175.021 -204.442 175.074 -204.418C175.182 -204.371 175.342 -204.299 175.553 -204.204C175.973 -204.015 176.594 -203.73 177.395 -203.35C178.997 -202.591 181.322 -201.45 184.212 -199.928C189.993 -196.882 198.037 -192.306 207.094 -186.184C225.207 -173.939 247.375 -155.505 263.579 -130.748C279.785 -105.99 290.026 -74.9077 284.28 -37.378C278.534 0.148849 256.806 44.1066 209.105 94.6247C113.727 195.635 63.3567 249.6 36.8312 278.313C23.5683 292.669 16.267 300.711 12.2815 305.165C10.2888 307.391 9.12525 308.72 8.46013 309.492C8.12758 309.879 7.91976 310.125 7.79527 310.275C7.73303 310.35 7.69167 310.401 7.66601 310.433C7.65318 310.448 7.64428 310.46 7.63867 310.467L7.63133 310.476L7.52501 310.394C7.41894 310.312 7.41919 310.312 7.41919 310.312L7.41969 310.311L7.42146 310.309L7.42835 310.3C7.4345 310.292 7.4439 310.281 7.45718 310.264C7.48375 310.231 7.52591 310.179 7.5888 310.104C7.71458 309.952 7.92348 309.704 8.25679 309.317C8.92339 308.544 10.0881 307.213 12.0815 304.986C16.0683 300.531 23.3708 292.487 36.634 278.13C63.1606 249.417 113.532 195.451 208.91 94.4404C256.587 43.9476 278.28 0.0375977 284.015 -37.4186C289.749 -74.872 279.53 -105.888 263.354 -130.602C247.177 -155.317 225.04 -173.728 206.944 -185.961C197.896 -192.078 189.861 -196.649 184.087 -199.69C181.2 -201.211 178.879 -202.35 177.28 -203.108C176.48 -203.487 175.861 -203.771 175.442 -203.96C175.233 -204.054 175.073 -204.125 174.966 -204.172C174.913 -204.196 174.872 -204.214 174.845 -204.225L174.815 -204.239L174.807 -204.242Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M95.1353 313.897L498.1 -117.826L498.297 -117.642L95.3314 314.08L95.1353 313.897Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M107.359 317.492L510.324 -114.231L510.52 -114.048L107.555 317.675L107.359 317.492Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M119.583 321.086L522.548 -110.637L522.744 -110.453L119.779 321.269L119.583 321.086Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M131.806 324.681L534.772 -107.042L534.968 -106.859L132.002 324.864L131.806 324.681Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M144.03 328.276L546.995 -103.447L547.191 -103.264L144.226 328.459L144.03 328.276Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M156.247 331.87L559.212 -99.8524L559.408 -99.6692L156.443 332.054L156.247 331.87Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M168.47 335.465L571.435 -96.2575L571.632 -96.0744L168.666 335.648L168.47 335.465Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M180.694 339.06L583.659 -92.6627L583.855 -92.4795L180.89 339.243L180.694 339.06Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M192.911 342.655L595.876 -89.0682L596.072 -88.885L193.107 342.838L192.911 342.655Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M205.134 346.25L608.099 -85.4733L608.296 -85.2902L205.33 346.433L205.134 346.25Z" fill="white"/>
+<path d="M189.379 111.881L192.925 114.972L193.816 110.437L189.379 111.881Z" fill="white"/>
+<path d="M243.699 96.8367L247.486 99.6273L248.004 95.0354L243.699 96.8367Z" fill="white"/>
+<path d="M278.293 114.162L281.835 117.257L282.732 112.724L278.293 114.162Z" fill="white"/>
+<path d="M282.976 192.505L286.49 195.633L287.429 191.108L282.976 192.505Z" fill="white"/>
+<path d="M272.814 260.423L269.217 257.391L268.402 261.94L272.814 260.423Z" fill="white"/>
+<path d="M366.635 109.805L363.037 106.773L362.222 111.322L366.635 109.805Z" fill="white"/>
+<path d="M266.135 47.9542L270.211 50.3032L270.211 45.6822L266.135 47.9542Z" fill="white"/>
+</g>
+</svg>
diff --git a/public/img/features/multitier/icon-play.svg b/public/img/features/multitier/icon-play.svg
new file mode 100644
index 0000000..4d6ceba
--- /dev/null
+++ b/public/img/features/multitier/icon-play.svg
@@ -0,0 +1,4 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
+<circle cx="12" cy="12" r="12" fill="#2D2D2D"/>
+<path d="M17.7142 12L9.1428 16.9487L9.14281 7.05128L17.7142 12Z" fill="white"/>
+</svg>
diff --git a/public/img/features/multitier/logo-apache-summit.svg b/public/img/features/multitier/logo-apache-summit.svg
new file mode 100644
index 0000000..ca81de2
--- /dev/null
+++ b/public/img/features/multitier/logo-apache-summit.svg
@@ -0,0 +1,17 @@
+<svg width="50" height="22" viewBox="0 0 50 22" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M10.189 13.5012V12.8409C9.73538 13.5602 9.11895 14.0201 8.33968 14.197C7.56041 14.3738 6.79277 14.3149 6.03677 14.0083C5.26913 13.7017 4.6178 13.1239 4.07115 12.2867C3.5245 11.4495 3.24536 10.3528 3.24536 8.98498C3.24536 7.38129 3.60592 6.09598 4.32703 5.09368C5.04815 4.10317 6.21123 3.60791 7.81629 3.60791C9.03753 3.60791 10.1657 3.93808 11.2125 4.61021C12.2593 5.28235 12.771 6.52049 12.771 8.32464V13.7725C12.771 15.5766 12.2476 16.8029 11.2125 17.4633C10.1657 18.1236 9.03753 18.4538 7.81629 18.4538C5.47849 18.4538 4.02463 17.3454 3.46635 15.1285H6.24612C6.44385 15.4941 6.75788 15.7653 7.17659 15.9657C7.5953 16.1544 8.01401 16.2134 8.43272 16.119C8.85144 16.0247 9.23525 15.7771 9.57255 15.3643C9.93311 14.9398 10.1308 14.3267 10.189 13.5012ZM5.83904 9.05573C5.83904 10.8363 6.3508 11.8268 7.36269 12.0155C8.37457 12.2041 9.13058 11.9683 9.60744 11.2962C9.84006 11.0132 10.0029 10.5651 10.1076 9.9637C10.2122 9.36231 10.2122 8.76093 10.1308 8.15955C10.0378 7.56996 9.82843 7.03933 9.50277 6.57945C9.1771 6.11957 8.6886 5.88373 8.04891 5.88373C7.18822 5.88373 6.59505 6.20211 6.29265 6.85066C5.99024 7.48742 5.83904 8.2303 5.83904 9.05573Z" fill="white"/>
+<path d="M22.0881 14.1144H20.7505C20.3667 14.1144 20.0527 13.9965 19.82 13.7489C19.5758 13.5012 19.4595 13.1829 19.4595 12.8055V7.54638C19.4595 6.9332 19.2734 6.47332 18.9012 6.19032C18.529 5.90731 18.1219 5.76581 17.6567 5.76581C17.2031 5.76581 16.796 5.90731 16.4355 6.19032C16.0749 6.47332 15.9004 6.92141 15.9004 7.54638V14.1262H13.2253V8.0888C13.2253 6.33182 13.6789 5.16443 14.5745 4.57484C15.4817 3.98525 16.4703 3.65508 17.5637 3.60791C18.6802 3.60791 19.7154 3.90271 20.6575 4.4923C21.5996 5.08189 22.0648 6.28465 22.0648 8.0888V14.1144H22.0881Z" fill="white"/>
+<path d="M22.739 4.72864H25.4141C25.4141 6.16724 25.4141 5.68377 25.4141 6.04932V14.1267H22.739V4.72864Z" fill="white"/>
+<path d="M30.3229 14.1152C29.4854 14.1624 28.5782 14.1506 27.6012 14.0798C26.6242 13.9973 26.1357 13.3723 26.1357 12.1813V2.12292H27.5082C27.8338 2.12292 28.1363 2.25263 28.3805 2.51205C28.6364 2.77147 28.7643 3.07806 28.7643 3.44361V3.79736H30.3229V4.33979C30.3229 4.72892 30.1949 5.04729 29.939 5.28313C29.6832 5.53076 29.3808 5.64868 29.0202 5.64868H28.7527V11.4385C28.7527 11.8748 29.0086 12.0988 29.5203 12.0988H30.3229V14.1152Z" fill="white"/>
+<path d="M37.6033 10.9426H39.5108C39.2317 12.0275 38.6966 12.8529 37.9057 13.4189C37.1148 14.0085 36.1262 14.3033 34.9282 14.3033C33.4744 14.3033 32.3462 13.8316 31.532 12.8765C30.7179 11.9449 30.3108 10.6242 30.3108 8.89084C30.3108 7.23998 30.7062 5.95468 31.4971 5.02312C32.3113 4.06799 33.4395 3.59631 34.8933 3.59631C36.417 3.59631 37.6033 4.05619 38.4408 4.98775C39.2549 5.94288 39.662 7.26357 39.662 8.97338C39.662 9.07951 39.662 9.16205 39.662 9.24459C39.662 9.32713 39.662 9.3743 39.662 9.39789C39.662 9.5276 39.6504 9.62193 39.6271 9.6691H33.0324C33.0557 10.4709 33.2534 11.0605 33.6023 11.4497C33.928 11.8624 34.4281 12.0628 35.0911 12.0628C35.5214 12.0628 35.8936 11.9685 36.196 11.7916C36.2774 11.768 36.3472 11.7209 36.4054 11.6501C36.4635 11.5912 36.5333 11.5204 36.6147 11.4379C36.638 11.3553 36.731 11.261 36.9055 11.1313C37.0683 11.0134 37.3009 10.9426 37.6033 10.9426ZM33.0324 7.9357H36.9287C36.8822 7.23998 36.6961 6.72114 36.3937 6.39097C36.0681 6.02543 35.5912 5.84855 34.9864 5.84855C34.4281 5.84855 33.9745 6.02543 33.614 6.39097C33.2418 6.74473 33.0557 7.26357 33.0324 7.9357Z" fill="white"/>
+<path d="M0 0.00012207H1.37244C1.733 0.00012207 2.0354 0.129832 2.29128 0.389252C2.54716 0.648672 2.6751 0.955259 2.6751 1.32081V14.1267H0V0.00012207Z" fill="white"/>
+<path d="M22.7385 2.12305H24.111C24.4715 2.12305 24.7739 2.25276 25.0298 2.51218C25.2857 2.7716 25.4136 3.07818 25.4136 3.44373V4.25736H22.7385V2.12305Z" fill="white"/>
+<path d="M17.9724 19.7344V19.5278L21.2753 17.4829L21.5417 17.9247L18.7578 19.599L21.5488 21.2449L21.2823 21.6724L17.9724 19.7344Z" fill="white"/>
+<path d="M24.7928 20.9457C24.7928 20.7937 24.7343 20.6773 24.6175 20.5966C24.5006 20.5111 24.3557 20.4446 24.1827 20.3971C24.0097 20.3448 23.8204 20.2973 23.6147 20.2546C23.4137 20.2118 23.2267 20.1548 23.0537 20.0836C22.8807 20.0123 22.7358 19.9173 22.6189 19.7985C22.502 19.675 22.4436 19.504 22.4436 19.2855C22.4436 19.105 22.481 18.9507 22.5558 18.8224C22.6353 18.6942 22.7381 18.5897 22.8644 18.5089C22.9906 18.4234 23.1378 18.3617 23.3061 18.3237C23.4744 18.2809 23.6497 18.2595 23.8321 18.2595C24.1593 18.2595 24.4398 18.3023 24.6736 18.3878C24.912 18.4685 25.1013 18.554 25.2416 18.6443L25.0172 19.0932C24.8629 19.0077 24.6946 18.9269 24.5123 18.8509C24.3346 18.7702 24.1102 18.7298 23.8391 18.7298C23.7362 18.7298 23.6334 18.7417 23.5305 18.7654C23.4324 18.7844 23.3412 18.8153 23.2571 18.858C23.1776 18.9008 23.1121 18.9578 23.0607 19.029C23.014 19.0955 22.9906 19.1787 22.9906 19.2784C22.9906 19.4019 23.049 19.4969 23.1659 19.5634C23.2828 19.6299 23.4277 19.6869 23.6007 19.7344C23.7736 19.7772 23.9606 19.8199 24.1617 19.8627C24.3674 19.9007 24.5567 19.9577 24.7297 20.0337C24.9026 20.1097 25.0476 20.2118 25.1644 20.3401C25.2813 20.4683 25.3397 20.6417 25.3397 20.8602C25.3397 21.1879 25.2112 21.4587 24.9541 21.6724C24.7016 21.8862 24.3206 21.9931 23.811 21.9931C23.6568 21.9931 23.5048 21.9788 23.3552 21.9503C23.2056 21.9218 23.0654 21.8838 22.9345 21.8363C22.8036 21.7888 22.6844 21.7366 22.5768 21.6796C22.4693 21.6178 22.3805 21.5561 22.3104 21.4943L22.5909 21.0312C22.647 21.0882 22.7218 21.1476 22.8153 21.2093C22.9088 21.2663 23.0116 21.3186 23.1238 21.3661C23.236 21.4136 23.3552 21.4516 23.4814 21.4801C23.6123 21.5086 23.7432 21.5228 23.8741 21.5228C24.0004 21.5228 24.1172 21.5133 24.2248 21.4943C24.337 21.4706 24.4351 21.4373 24.5193 21.3946C24.6034 21.3471 24.6689 21.2877 24.7156 21.2164C24.7671 21.1404 24.7928 21.0502 24.7928 20.9457Z" fill="white"/>
+<path d="M28.3313 18.345H29.3271V20.7747C29.3271 21.0074 29.3411 21.2307 29.3692 21.4444H29.839V21.9076H28.9063L28.8853 21.3019H28.8573C28.7357 21.5062 28.5744 21.6724 28.3734 21.8007C28.1724 21.9289 27.9293 21.9931 27.6441 21.9931C27.429 21.9931 27.2444 21.9669 27.0901 21.9147C26.9405 21.8672 26.8166 21.7817 26.7185 21.6582C26.6203 21.5347 26.5478 21.3708 26.5011 21.1666C26.4543 20.9576 26.4309 20.6987 26.4309 20.3899V18.8224H25.9611V18.345H26.9779V20.2759C26.9779 20.4707 26.9849 20.6464 26.999 20.8032C27.0177 20.9552 27.0527 21.0858 27.1041 21.1951C27.1556 21.2996 27.2304 21.3803 27.3285 21.4373C27.4314 21.4896 27.567 21.5157 27.7353 21.5157C27.9784 21.5157 28.1887 21.4349 28.3664 21.2734C28.5487 21.1119 28.6866 20.9101 28.7801 20.6678V18.8224H28.3313V18.345Z" fill="white"/>
+<path d="M31.6875 21.9076V19.5349C31.6875 19.4352 31.6829 19.3402 31.6735 19.2499C31.6688 19.1549 31.6525 19.0718 31.6244 19.0005C31.601 18.9245 31.5636 18.8652 31.5122 18.8224C31.4655 18.7797 31.4024 18.7583 31.3229 18.7583C31.1639 18.7583 31.0284 18.8248 30.9162 18.9578C30.8086 19.0908 30.7268 19.257 30.6707 19.4565V21.9076H30.1378V18.345H30.5024L30.6076 18.7797H30.6357C30.6824 18.7084 30.7268 18.6419 30.7689 18.5802C30.8157 18.5137 30.8671 18.4567 30.9232 18.4092C30.984 18.3617 31.0541 18.326 31.1336 18.3023C31.213 18.2738 31.3135 18.2595 31.4351 18.2595C31.5052 18.2595 31.5777 18.2714 31.6525 18.2952C31.7273 18.3142 31.7951 18.3474 31.8558 18.3949C31.9213 18.4377 31.9774 18.497 32.0241 18.573C32.0709 18.649 32.1013 18.7417 32.1153 18.8509C32.2228 18.6657 32.342 18.5208 32.4729 18.4163C32.6085 18.3118 32.7932 18.2595 33.0269 18.2595C33.1812 18.2595 33.3051 18.2857 33.3986 18.3379C33.4967 18.3902 33.5715 18.4662 33.623 18.5659C33.6791 18.6609 33.7165 18.7773 33.7352 18.915C33.7585 19.048 33.7702 19.1977 33.7702 19.3639V21.9076H33.2373V19.485C33.2373 19.3853 33.2326 19.2927 33.2233 19.2072C33.2139 19.1169 33.1952 19.0385 33.1672 18.972C33.1438 18.9055 33.1087 18.8533 33.062 18.8153C33.0199 18.7773 32.9615 18.7583 32.8867 18.7583C32.723 18.7583 32.5851 18.8248 32.4729 18.9578C32.3607 19.0908 32.2766 19.2808 32.2205 19.5278V21.9076H31.6875Z" fill="white"/>
+<path d="M35.752 21.9076V19.5349C35.752 19.4352 35.7473 19.3402 35.738 19.2499C35.7333 19.1549 35.7169 19.0718 35.6889 19.0005C35.6655 18.9245 35.6281 18.8652 35.5767 18.8224C35.5299 18.7797 35.4668 18.7583 35.3874 18.7583C35.2284 18.7583 35.0928 18.8248 34.9806 18.9578C34.8731 19.0908 34.7913 19.257 34.7352 19.4565V21.9076H34.2023V18.345H34.5669L34.6721 18.7797H34.7001C34.7469 18.7084 34.7913 18.6419 34.8334 18.5802C34.8801 18.5137 34.9316 18.4567 34.9877 18.4092C35.0484 18.3617 35.1186 18.326 35.198 18.3023C35.2775 18.2738 35.378 18.2595 35.4996 18.2595C35.5697 18.2595 35.6421 18.2714 35.7169 18.2952C35.7917 18.3142 35.8595 18.3474 35.9203 18.3949C35.9858 18.4377 36.0419 18.497 36.0886 18.573C36.1354 18.649 36.1657 18.7417 36.1798 18.8509C36.2873 18.6657 36.4065 18.5208 36.5374 18.4163C36.673 18.3118 36.8576 18.2595 37.0914 18.2595C37.2457 18.2595 37.3695 18.2857 37.463 18.3379C37.5612 18.3902 37.636 18.4662 37.6874 18.5659C37.7435 18.6609 37.7809 18.7773 37.7996 18.915C37.823 19.048 37.8347 19.1977 37.8347 19.3639V21.9076H37.3018V19.485C37.3018 19.3853 37.2971 19.2927 37.2877 19.2072C37.2784 19.1169 37.2597 19.0385 37.2316 18.972C37.2083 18.9055 37.1732 18.8533 37.1264 18.8153C37.0844 18.7773 37.0259 18.7583 36.9511 18.7583C36.7875 18.7583 36.6496 18.8248 36.5374 18.9578C36.4252 19.0908 36.3411 19.2808 36.285 19.5278V21.9076H35.752Z" fill="white"/>
+<path d="M38.7155 21.9076V21.4302H39.9357V18.8224H38.7155V18.345H40.4967V21.4302H41.6888V21.9076H38.7155ZM39.7464 17.3333C39.7464 17.205 39.7884 17.0958 39.8726 17.0055C39.9567 16.9105 40.0643 16.863 40.1952 16.863C40.3307 16.863 40.4429 16.9105 40.5318 17.0055C40.6253 17.0958 40.672 17.205 40.672 17.3333C40.672 17.4568 40.6253 17.5613 40.5318 17.6468C40.4429 17.7323 40.3307 17.775 40.1952 17.775C40.0643 17.775 39.9567 17.7323 39.8726 17.6468C39.7884 17.5613 39.7464 17.4568 39.7464 17.3333Z" fill="white"/>
+<path d="M42.2611 18.345H43.0956V17.6397L43.6425 17.4829V18.345H45.5149V18.8224H43.6425V20.5039C43.6425 20.8507 43.7243 21.1072 43.888 21.2734C44.0563 21.4397 44.2947 21.5228 44.6032 21.5228C44.8136 21.5228 44.9959 21.4824 45.1502 21.4017C45.3092 21.3209 45.4517 21.2331 45.578 21.1381L45.7603 21.5584C45.5967 21.6914 45.4003 21.7983 45.1712 21.8791C44.9469 21.9598 44.7154 22.0002 44.477 22.0002C44.29 22.0002 44.1124 21.9717 43.9441 21.9147C43.7804 21.8624 43.6355 21.7793 43.5093 21.6653C43.3831 21.5513 43.2826 21.4064 43.2078 21.2307C43.133 21.0502 43.0956 20.8364 43.0956 20.5894V18.8224H42.2611V18.345Z" fill="white"/>
+<path d="M46.6902 21.6724L46.4237 21.2449L49.2147 19.599L46.4307 17.9247L46.6972 17.4829L50.0001 19.5278V19.7344L46.6902 21.6724Z" fill="white"/>
+</svg>
diff --git a/public/img/features/multitier/logo-apache-wh.svg b/public/img/features/multitier/logo-apache-wh.svg
new file mode 100644
index 0000000..d315204
--- /dev/null
+++ b/public/img/features/multitier/logo-apache-wh.svg
@@ -0,0 +1,18 @@
+<svg width="53" height="24" viewBox="0 0 53 24" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M24.6013 19.0737V18.4316C24.1642 19.131 23.5702 19.5781 22.8194 19.7501C22.0685 19.9221 21.3288 19.8648 20.6003 19.5667C19.8607 19.2686 19.2331 18.7068 18.7063 17.8927C18.1796 17.0786 17.9106 16.0123 17.9106 14.6823C17.9106 13.123 18.2581 11.8732 18.9529 10.8986C19.6477 9.93552 20.7685 9.45396 22.315 9.45396C23.4918 9.45396 24.5789 9.775 25.5875 10.4285C26.5961 11.0821 27.0893 12.286 27.0893 14.0402V19.3374C27.0893 21.0916 26.5849 22.284 25.5875 22.9261C24.5789 23.5682 23.4918 23.8892 22.315 23.8892C20.0624 23.8892 18.6615 22.8115 18.1236 20.6559H20.8021C20.9926 21.0114 21.2952 21.2751 21.6986 21.47C22.1021 21.6534 22.5056 21.7108 22.909 21.619C23.3125 21.5273 23.6823 21.2865 24.0073 20.8852C24.3547 20.4725 24.5452 19.8763 24.6013 19.0737ZM20.4098 14.7511C20.4098 16.4824 20.9029 17.4455 21.878 17.629C22.853 17.8124 23.5814 17.5831 24.0409 16.9296C24.2651 16.6544 24.422 16.2187 24.5228 15.634C24.6237 15.0492 24.6237 14.4645 24.5452 13.8797C24.4556 13.3064 24.2539 12.7905 23.9401 12.3433C23.6263 11.8961 23.1556 11.6668 22.5392 11.6668C21.7099 11.6668 21.1383 11.9764 20.8469 12.607C20.5555 13.2262 20.4098 13.9485 20.4098 14.7511Z" fill="white"/>
+<path d="M36.0659 19.6699H34.7771C34.4073 19.6699 34.1047 19.5552 33.8805 19.3144C33.6452 19.0737 33.5331 18.7641 33.5331 18.3972V13.2835C33.5331 12.6873 33.3538 12.2401 32.9952 11.9649C32.6366 11.6898 32.2443 11.5522 31.796 11.5522C31.359 11.5522 30.9667 11.6898 30.6193 11.9649C30.2719 12.2401 30.1038 12.6758 30.1038 13.2835V19.6813H27.5261V13.8109C27.5261 12.1025 27.9632 10.9674 28.8261 10.3941C29.7003 9.82087 30.6529 9.49983 31.7064 9.45396C32.7823 9.45396 33.7797 9.74061 34.6875 10.3139C35.5952 10.8872 36.0435 12.0567 36.0435 13.8109V19.6699H36.0659Z" fill="white"/>
+<path d="M36.6937 10.5432H39.2714C39.2714 11.942 39.2714 11.4719 39.2714 11.8274V19.6814H36.6937V10.5432Z" fill="white"/>
+<path d="M44.0009 19.6697C43.194 19.7156 42.3198 19.7041 41.3784 19.6353C40.437 19.555 39.9663 18.9474 39.9663 17.7893V8.00911H41.2887C41.6025 8.00911 41.8939 8.13523 42.1293 8.38748C42.3758 8.63972 42.4991 8.93783 42.4991 9.29326V9.63723H44.0009V10.1647C44.0009 10.543 43.8776 10.8526 43.631 11.0819C43.3845 11.3227 43.0931 11.4373 42.7457 11.4373H42.4879V17.067C42.4879 17.4912 42.7345 17.7091 43.2276 17.7091H44.0009V19.6697Z" fill="white"/>
+<path d="M51.0165 16.5855H52.8544C52.5855 17.6403 52.0699 18.4429 51.3079 18.9933C50.5458 19.5666 49.5932 19.8532 48.4388 19.8532C47.038 19.8532 45.9509 19.3946 45.1664 18.4659C44.3819 17.5601 43.9896 16.2759 43.9896 14.5905C43.9896 12.9853 44.3707 11.7355 45.1327 10.8297C45.9172 9.90102 47.0043 9.4424 48.4052 9.4424C49.8734 9.4424 51.0165 9.88956 51.8234 10.7953C52.6079 11.7241 53.0001 13.0082 53.0001 14.6707C53.0001 14.7739 53.0001 14.8542 53.0001 14.9344C53.0001 15.0147 53.0001 15.0606 53.0001 15.0835C53.0001 15.2096 52.9889 15.3014 52.9665 15.3472H46.6121C46.6345 16.1269 46.825 16.7002 47.1612 17.0785C47.475 17.4798 47.9569 17.6747 48.5957 17.6747C49.0104 17.6747 49.369 17.583 49.6604 17.411C49.7389 17.3881 49.8061 17.3422 49.8621 17.2734C49.9182 17.2161 49.9854 17.1473 50.0639 17.0671C50.0863 16.9868 50.1759 16.8951 50.3441 16.769C50.501 16.6543 50.7251 16.5855 51.0165 16.5855ZM46.6121 13.6618H50.3665C50.3216 12.9853 50.1423 12.4808 49.8509 12.1598C49.5371 11.8043 49.0776 11.6323 48.4949 11.6323C47.9569 11.6323 47.5199 11.8043 47.1724 12.1598C46.8138 12.5037 46.6345 13.0082 46.6121 13.6618Z" fill="white"/>
+<path d="M14.7832 5.94569H16.1056C16.4531 5.94569 16.7444 6.07182 16.991 6.32406C17.2376 6.57631 17.3608 6.87441 17.3608 7.22985V19.6816H14.7832V5.94569Z" fill="white"/>
+<path d="M36.6936 8.0094H38.016C38.3635 8.0094 38.6548 8.13552 38.9014 8.38777C39.148 8.64001 39.2712 8.93812 39.2712 9.29355V10.0847H36.6936V8.0094Z" fill="white"/>
+<path d="M21.2951 8.14718H20.8916V7.84907C20.6899 8.07839 20.4097 8.19304 20.0623 8.19304C19.7373 8.19304 19.4571 8.07839 19.2218 7.86054C18.9752 7.61976 18.8519 7.32165 18.8519 6.95475C18.8519 6.57638 18.9864 6.26681 19.2442 6.02603C19.4795 5.79672 19.7709 5.69353 20.0959 5.69353C20.4321 5.69353 20.7011 5.80818 20.9028 6.04896V5.75086H21.3063V8.14718H21.2951ZM20.8804 6.95475C20.8804 6.72544 20.802 6.53052 20.6563 6.35854C20.4994 6.19802 20.3201 6.11776 20.0959 6.11776C19.8606 6.11776 19.67 6.19802 19.5019 6.37C19.345 6.53052 19.2666 6.70251 19.2666 6.88596C19.2666 7.12674 19.3338 7.33312 19.4795 7.5051C19.6252 7.68855 19.8157 7.76881 20.0511 7.76881C20.2752 7.76881 20.4658 7.68855 20.6339 7.52803C20.802 7.37898 20.8804 7.18406 20.8804 6.95475Z" fill="white"/>
+<path d="M24.2089 6.88596C24.2089 7.26432 24.0968 7.5739 23.8727 7.81467C23.6373 8.06692 23.3459 8.19304 22.9761 8.19304C22.6399 8.19304 22.3821 8.07838 22.1804 7.86054V8.93831H21.7545V5.73939H22.158V6.02603C22.2588 5.91137 22.3821 5.83112 22.5054 5.77379C22.6399 5.71646 22.7744 5.69353 22.9313 5.69353C23.2563 5.69353 23.5477 5.80818 23.7942 6.02603C24.0744 6.25534 24.2089 6.54199 24.2089 6.88596ZM23.7718 6.94328C23.7718 6.71397 23.6933 6.51906 23.5364 6.35854C23.3795 6.19802 23.1778 6.11776 22.9537 6.11776C22.7183 6.11776 22.5278 6.20948 22.3709 6.38147C22.2252 6.54199 22.158 6.7369 22.158 6.95475C22.158 7.16113 22.214 7.33312 22.3373 7.49364C22.483 7.67709 22.6959 7.76881 22.9761 7.76881C23.2002 7.76881 23.3908 7.68855 23.5477 7.52803C23.7046 7.37898 23.7718 7.18406 23.7718 6.94328Z" fill="white"/>
+<path d="M27.0222 8.14718H26.6188V7.84907C26.4171 8.07839 26.1369 8.19304 25.7895 8.19304C25.4645 8.19304 25.1843 8.07839 24.9489 7.86054C24.7024 7.61976 24.5791 7.32165 24.5791 6.95475C24.5791 6.57638 24.7136 6.26681 24.9714 6.02603C25.2067 5.79672 25.4981 5.69353 25.8231 5.69353C26.1593 5.69353 26.4283 5.80818 26.63 6.04896V5.75086H27.0335V8.14718H27.0222ZM26.6188 6.95475C26.6188 6.72544 26.5403 6.53052 26.3947 6.35854C26.2378 6.19802 26.0584 6.11776 25.8343 6.11776C25.5989 6.11776 25.4084 6.19802 25.2403 6.37C25.0834 6.53052 25.005 6.70251 25.005 6.88596C25.005 7.12674 25.0722 7.33312 25.2179 7.5051C25.3636 7.68855 25.5541 7.76881 25.7895 7.76881C26.0136 7.76881 26.2041 7.68855 26.3722 7.52803C26.5291 7.37898 26.6188 7.18406 26.6188 6.95475Z" fill="white"/>
+<path d="M29.8346 7.35605C29.7001 7.63122 29.5432 7.83761 29.3639 7.97519C29.1622 8.12425 28.9268 8.20451 28.6354 8.20451C28.3104 8.20451 28.0191 8.08985 27.7725 7.84907C27.5147 7.59683 27.3802 7.29872 27.3802 6.93182H27.4027C27.4027 6.93182 27.4027 6.94328 27.3915 6.95475C27.3915 6.57638 27.5147 6.26681 27.7725 6.02603C27.9966 5.80818 28.2656 5.69353 28.5794 5.69353C28.8708 5.69353 29.1173 5.77379 29.3415 5.92284C29.5544 6.07189 29.7225 6.28974 29.8234 6.56492H29.3527C29.1958 6.27828 28.938 6.12922 28.5906 6.12922C28.3665 6.12922 28.1872 6.20948 28.0415 6.37C27.8958 6.53052 27.8173 6.72544 27.8173 6.95475C27.8173 7.18406 27.8958 7.39045 28.0527 7.55096C28.2096 7.71148 28.4001 7.79174 28.6242 7.79174C28.7699 7.79174 28.9156 7.75735 29.0501 7.67709C29.1846 7.59683 29.2855 7.49364 29.3639 7.36751H29.8346V7.35605Z" fill="white"/>
+<path d="M32.2669 8.14699H31.841V6.77111C31.841 6.58766 31.785 6.42714 31.6617 6.31249C31.5496 6.19783 31.3927 6.12904 31.2134 6.12904C31.0341 6.12904 30.8884 6.18637 30.7764 6.28956C30.6643 6.40421 30.6082 6.5418 30.6082 6.72525V8.14699H30.1824V4.94807H30.6082V5.94559C30.7764 5.7736 30.9781 5.69334 31.2246 5.69334C31.4936 5.69334 31.729 5.78507 31.9307 5.97998C32.1436 6.18637 32.2557 6.45008 32.2557 6.77111V8.14699H32.2669Z" fill="white"/>
+<path d="M35.0463 7.11518H33.0626C33.0962 7.32157 33.1971 7.48208 33.354 7.60821C33.4997 7.7114 33.6566 7.76873 33.8247 7.76873C33.9816 7.76873 34.1273 7.72286 34.273 7.63114C34.4187 7.53941 34.5195 7.41329 34.5756 7.26424H35.0126C34.9006 7.58528 34.7213 7.81459 34.4859 7.97511C34.2842 8.1127 34.06 8.18149 33.8135 8.18149C33.4997 8.18149 33.2307 8.06683 33.0066 7.83752C32.7712 7.58528 32.6479 7.28717 32.6479 6.92027C32.6479 6.5419 32.7712 6.23233 33.029 6.00301C33.2643 5.78517 33.5333 5.68198 33.8471 5.68198C34.1609 5.68198 34.4411 5.78517 34.6652 6.00301C34.923 6.24379 35.0575 6.5763 35.0575 6.98906V7.11518H35.0463ZM34.6092 6.71389C34.5644 6.53044 34.4635 6.39285 34.3178 6.27819C34.1721 6.16353 34.0152 6.10621 33.8359 6.10621C33.6118 6.10621 33.4212 6.18647 33.2755 6.33552C33.1747 6.43871 33.0962 6.56483 33.0626 6.71389H34.6092Z" fill="white"/>
+<path d="M3.5985 4.78767C3.5985 4.78767 -4.19044 9.64911 3.15021 14.4762C4.56231 15.4163 9.68395 18.0305 9.53826 20.4498C9.53826 20.4498 12.6426 15.7488 8.10375 12.7907C3.4416 9.76377 2.27606 6.53045 3.5985 4.78767Z" fill="white"/>
+<path d="M0.886604 14.0749C0.886604 14.0749 -1.89276 18.3859 3.57631 19.2688C4.11425 19.3376 8.07035 19.7618 9.10141 21.0918C9.10141 21.0918 9.01175 18.7987 5.78411 17.4458C2.56767 16.0928 1.24523 15.7603 0.886604 14.0749Z" fill="white"/>
+<path d="M11.6452 9.54586C8.30545 5.96857 7.37527 3.7557 8.80977 0.889282C8.80977 0.889282 -1.15334 4.81054 8.6865 11.7702C12.2055 14.2582 11.6228 16.8036 11.6228 16.8953C12.1719 16.3106 14.9849 13.1231 11.6452 9.54586Z" fill="white"/>
+</svg>
diff --git a/public/img/features/multitier/logo-raif.svg b/public/img/features/multitier/logo-raif.svg
new file mode 100644
index 0000000..8b94956
--- /dev/null
+++ b/public/img/features/multitier/logo-raif.svg
@@ -0,0 +1,6 @@
+<svg width="86" height="24" viewBox="0 0 86 24" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M0 1.28229H22.5313V23.8893H0V1.28229Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M0.651611 1.93567H21.8795V23.2354H0.651611V1.93567Z" fill="#FFF200"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M1.77792 18.9319L4.54708 21.7642L11.0351 15.1594L17.7402 21.9003L20.5498 19.1086L13.9121 12.4495L15.1881 11.2103V8.56836L15.9891 7.88757V9.95734L17.0207 10.8016L20.1016 7.7104L21.0923 8.47292C21.6761 6.30771 18.2963 1.39144 15.5003 4.11508L12.2424 7.35605L12.9077 8.15969L11.2517 9.78017L9.65029 8.20031L10.4917 7.4373L6.9221 3.97854C4.23489 1.75851 1.4794 5.13651 1.38428 8.43181L2.36131 7.61496L5.3607 10.8564L6.43285 9.95783V7.9693L7.09771 8.47292V11.0742L8.40058 12.3815L1.77792 18.9319Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M28.2862 3.99223V5.95336H29.1276C30.2813 5.73556 29.9691 4.07397 29.1276 3.99223H28.2862ZM25.8975 2.04482V10.9244H28.2862V8.03732L30.3222 10.9244H33.1455L30.6349 7.37024C33.5397 5.95385 32.4538 2.08593 29.3998 2.0453H25.8975V2.04482ZM36.9459 6.48438C37.7331 6.48438 38.3707 7.08344 38.3707 7.81904C38.3707 8.55416 37.7327 9.1537 36.9459 9.1537C36.1722 9.1537 35.5342 8.55416 35.5342 7.81904C35.5342 7.08344 36.1722 6.48438 36.9459 6.48438ZM36.4434 4.52326C37.0951 4.52326 37.7058 4.74105 38.2078 5.09491V4.75476H40.5423L40.556 10.9239H38.1941L38.2078 10.5427C37.7058 10.8965 37.0951 11.1011 36.4434 11.1011C34.706 11.1011 33.2811 9.6304 33.2811 7.81904C33.2811 6.00768 34.7064 4.52326 36.4434 4.52326ZM41.7915 4.75476H44.2753V10.9239H41.7915V4.75476ZM43.0398 1.22748C43.7597 1.22748 44.3431 1.82653 44.3431 2.54843C44.3431 3.27033 43.7597 3.86939 43.0398 3.86939C42.3071 3.86939 41.7232 3.26984 41.7232 2.54843C41.7237 1.82702 42.3071 1.22748 43.0398 1.22748ZM61.8932 4.75476H64.377V10.9239H61.8932V4.75476ZM63.1282 1.22748C63.8614 1.22748 64.4448 1.82653 64.4448 2.54843C64.4448 3.27033 63.8614 3.86939 63.1282 3.86939C62.4087 3.86939 61.8253 3.26984 61.8253 2.54843C61.8253 1.82702 62.4087 1.22748 63.1282 1.22748ZM44.7368 4.75476V6.71588H45.5919V10.9239H47.9947V6.71588H50.2478V10.9239H52.7316V6.68896H54.2788V4.78216H52.6633V3.40688C52.6228 2.90327 53.8037 2.69869 54.211 3.10736V1.09142C51.9306 0.369516 50.0848 1.66355 50.098 3.6653V4.75476H47.9805V3.40688C47.9532 2.90327 48.9854 2.69869 49.5819 3.10736V1.09142C47.6001 0.506065 45.4831 1.47268 45.4967 3.65159V4.74105L44.7368 4.75476ZM57.8211 11.1011C59.9523 11.0874 60.7391 10.2025 61.201 8.9085H59.043C58.0655 10.1614 56.6402 9.24914 56.7085 8.22771H61.2693C61.2693 5.72186 59.9386 4.53696 57.8216 4.53696C55.7046 4.53696 54.3744 6.03509 54.3744 7.86015C54.3744 9.68522 55.9212 11.1148 57.8211 11.1011ZM57.0202 6.7707C57.0475 6.02139 58.6762 6.02139 58.7845 6.7707H57.0202ZM74.7331 11.1011C76.8774 11.0874 77.6652 10.2025 78.1262 8.9085H75.9545C74.9775 10.1614 73.5522 9.24914 73.6205 8.22771H78.1813C78.1813 5.72186 76.8647 4.53696 74.7336 4.53696C72.6161 4.53696 71.2864 6.03509 71.2864 7.86015C71.2864 9.68522 72.8327 11.1148 74.7331 11.1011ZM73.9322 6.7707C73.9595 6.02139 75.5882 6.02139 75.6965 6.7707H73.9322ZM70.6343 4.8776L69.9011 6.37573C68.9782 6.08942 68.0822 6.14423 68.1095 6.40265C68.1368 6.56612 67.9875 6.85194 69.426 7.05652C71.5703 7.39667 71.3942 11.4006 67.7973 11.1011C66.8066 11.0331 66.0057 10.7742 65.3408 10.3792L66.1418 8.77195C67.2685 9.33038 68.3539 9.65732 68.4353 9.09889C68.5305 8.40439 67.2544 8.64959 66.4808 8.06375C65.0964 7.20579 65.8832 4.55018 68.1505 4.52277C68.9509 4.46893 69.7792 4.60499 70.6343 4.8776ZM79.131 4.75476V10.9239H81.4524V7.15147C81.5202 6.21177 83.3659 6.04831 83.3796 7.15147V10.9239H85.7273V7.05652C85.6732 4.89131 83.4064 3.84247 81.3568 5.21775V4.75476H79.131ZM27.2682 14.6964L25.7209 23.8482H30.1052C33.0777 23.8482 34.2991 20.1442 32.1817 18.8776C33.987 17.2023 33.0641 14.6832 31.1232 14.6558L27.2682 14.6964ZM29.0462 20.1574L28.734 21.6693H29.752C30.9056 21.7236 30.77 20.1574 30.1052 20.1574H29.0462ZM29.5618 16.8753L29.3042 18.1014L29.6164 18.1146C30.5529 18.1689 31.0959 16.8753 29.9691 16.8753H29.5618ZM33.1724 23.8619H35.8327L36.6337 22.2546H39.6467L40.0945 23.8893H42.551L40.4204 14.7508H37.9092L33.1724 23.8619ZM37.5024 20.3346H39.1585L38.6292 17.9237L37.5024 20.3346ZM43.3929 23.8893H45.8499L46.4738 18.1557L49.9892 23.8619H52.6223L53.7218 14.6959H51.2653L50.5731 20.4295L47.0572 14.6685H44.5192L43.3929 23.8893ZM55.4866 14.669L53.7627 23.8619H56.3553L57.0475 20.4295L59.3684 23.8619H62.7751L59.4498 19.0406L63.6985 14.6553H60.4L57.4953 17.8963L57.9567 14.6553L55.4866 14.669Z" fill="black"/>
+</svg>
diff --git a/public/img/features/multitier/video-1.png b/public/img/features/multitier/video-1.png
new file mode 100644
index 0000000..f56adad
--- /dev/null
+++ b/public/img/features/multitier/video-1.png
Binary files differ
diff --git a/public/img/features/multitier/video-2.png b/public/img/features/multitier/video-2.png
new file mode 100644
index 0000000..ee2d60b
--- /dev/null
+++ b/public/img/features/multitier/video-2.png
Binary files differ
diff --git a/public/img/features/multitier/video-3.png b/public/img/features/multitier/video-3.png
new file mode 100644
index 0000000..b0a6f02
--- /dev/null
+++ b/public/img/features/multitier/video-3.png
Binary files differ
diff --git a/public/img/features/native-docs.svg b/public/img/features/native-docs.svg
new file mode 100644
index 0000000..f7d9a3f
--- /dev/null
+++ b/public/img/features/native-docs.svg
@@ -0,0 +1,14 @@
+<svg width="22" height="24" viewBox="0 0 22 24" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="0.65" y="0.65" width="14.3923" height="19.0077" rx="1.35" fill="#CE2034" stroke="white" stroke-width="1.3" stroke-linejoin="round"/>
+<path d="M3.69231 4.61548H12" stroke="white" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M3.69231 7.38452H12" stroke="white" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M3.69231 10.1538H12" stroke="white" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M3.69231 12.9231H12" stroke="white" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M3.69231 15.6924H7.38461" stroke="white" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
+<rect x="6.18847" y="4.34238" width="14.3923" height="19.0077" rx="1.35" fill="#CE2034" stroke="#FFFCFC" stroke-width="1.3" stroke-linejoin="round"/>
+<path d="M9.23079 8.30786H17.5385" stroke="#FFFCFC" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M9.23079 11.0771H17.5385" stroke="#FFFCFC" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M9.23079 13.8462H17.5385" stroke="#FFFCFC" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M9.23079 16.6155H17.5385" stroke="#FFFCFC" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M9.23079 19.3848H12.9231" stroke="#FFFCFC" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
+</svg>
diff --git a/public/img/features/native-header.svg b/public/img/features/native-header.svg
new file mode 100644
index 0000000..80c0fed
--- /dev/null
+++ b/public/img/features/native-header.svg
@@ -0,0 +1,11 @@
+<svg width="493" height="453" viewBox="0 0 493 453" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M1.09604 302.65L246.298 444.218L246.298 452.083L1.09604 310.515L1.09604 302.65Z" fill="#0070CC" stroke="white"/>
+<rect width="283.135" height="7.86486" transform="matrix(0.866025 -0.5 2.20305e-08 1 246.298 444.218)" fill="#0070CC" stroke="white"/>
+<path d="M246.298 161.083L491.5 302.65L246.298 444.218L1.0956 302.65L246.298 161.083Z" fill="#0070CC" stroke="white"/>
+<path d="M1.09604 223.65L246.298 365.218L246.298 373.083L1.09604 231.515L1.09604 223.65Z" fill="#0070CC" stroke="white"/>
+<rect width="283.135" height="7.86486" transform="matrix(0.866025 -0.5 2.20305e-08 1 246.298 365.218)" fill="#0070CC" stroke="white"/>
+<path d="M246.298 82.0826L491.5 223.65L246.298 365.218L1.0956 223.65L246.298 82.0826Z" fill="#0070CC" stroke="white"/>
+<path d="M1.09604 142.65L246.298 284.218L246.298 292.083L1.09604 150.515L1.09604 142.65Z" fill="#0070CC" stroke="white"/>
+<rect width="283.135" height="7.86486" transform="matrix(0.866025 -0.5 2.20305e-08 1 246.298 284.218)" fill="#0070CC" stroke="white"/>
+<path d="M246.298 1.08262L491.5 142.65L246.298 284.218L1.0956 142.65L246.298 1.08262Z" fill="#0070CC" stroke="white"/>
+</svg>
diff --git a/public/img/features/native-rocket.svg b/public/img/features/native-rocket.svg
new file mode 100644
index 0000000..945f1e6
--- /dev/null
+++ b/public/img/features/native-rocket.svg
@@ -0,0 +1,7 @@
+<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M19.2078 9.76733C17.5699 9.76733 16.2375 8.4354 16.2375 6.79747C16.2375 5.15955 17.5699 3.82861 19.2078 3.82861C20.8457 3.82861 22.1782 5.16055 22.1782 6.79797C22.1782 8.4354 20.8457 9.76733 19.2078 9.76733ZM19.2078 4.81807C18.6829 4.8186 18.1796 5.02736 17.8084 5.39855C17.4372 5.76974 17.2284 6.27303 17.2279 6.79797C17.2284 7.32291 17.4372 7.8262 17.8084 8.19739C18.1796 8.56858 18.6829 8.77735 19.2078 8.77788C19.7328 8.77735 20.236 8.56858 20.6072 8.19739C20.9784 7.8262 21.1872 7.32291 21.1877 6.79797C21.1872 6.27303 20.9784 5.76974 20.6072 5.39855C20.236 5.02736 19.7328 4.8186 19.2078 4.81807Z" fill="white" stroke="white" stroke-width="0.5"/>
+<path d="M5.33247 17.5535C4.48647 17.9122 3.71712 18.4299 3.06607 19.0784C1.48715 20.6603 0.740183 22.8582 1.08117 24.9221C3.14507 25.2601 5.34197 24.5121 6.92239 22.9337C7.57141 22.283 8.08958 21.5138 8.44882 20.6678" stroke="white" stroke-width="1.7" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M2.46759 12.8967C2.12261 13.2217 1.79412 13.5617 1.48264 13.9156C3.23831 14.3917 4.89223 15.1845 6.3629 16.255C6.4764 16.048 6.61789 15.8581 6.78488 15.6911C7.13237 15.3443 7.57448 15.1077 8.05582 15.0111C8.16082 12.9862 8.72379 10.9663 9.70175 9.10438L9.70475 9.09888C8.37648 9.38528 7.09203 9.84644 5.88493 10.4703C4.64038 11.1193 3.49059 11.9357 2.46759 12.8967ZM2.46759 12.8967V12.8967V12.8967Z" stroke="white" stroke-width="1.7" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M10.9922 17.9415C10.8961 18.4244 10.6592 18.868 10.3112 19.2164C10.1418 19.3851 9.949 19.5286 9.73874 19.6424C10.8116 21.1108 11.6071 22.7628 12.0861 24.5172C12.4411 24.2072 12.7816 23.8782 13.1071 23.5332C14.0678 22.5107 14.884 21.3614 15.533 20.1174C16.1569 18.911 16.6183 17.6272 16.9049 16.2996C15.0405 17.277 13.0191 17.838 10.9922 17.9415V17.9415Z" stroke="white" stroke-width="1.7" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M10.9207 16.6945C11.0557 17.1374 11.0457 17.5404 10.9892 17.9569C14.527 17.7759 17.9854 16.205 20.6102 13.5861C23.9651 10.2258 25.552 5.55498 24.8275 1.16969C20.4423 0.45172 15.774 2.04065 12.4166 5.39499C9.80076 8.02036 8.23283 11.4767 8.05484 15.0115C8.51847 14.919 8.99884 14.9605 9.43977 15.131" stroke="white" stroke-width="1.7" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+</svg>
diff --git a/public/img/features/native-stepspic.svg b/public/img/features/native-stepspic.svg
new file mode 100644
index 0000000..65790df
--- /dev/null
+++ b/public/img/features/native-stepspic.svg
@@ -0,0 +1,157 @@
+<svg width="1274" height="595" viewBox="0 0 1274 595" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="0.565249" y="0.565249" width="1272.87" height="593.87" rx="9.43475" fill="#F6F6F6" stroke="#E6E6E6" stroke-width="1.1305"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M1138.61 113.227L1148.61 119L1138.61 124.774V119.874C1138.46 119.954 1138.3 120 1138.12 120H1133.13C1132.57 120 1132.13 119.552 1132.13 119C1132.13 118.448 1132.57 118 1133.13 118H1138.12C1138.3 118 1138.46 118.046 1138.61 118.126V113.227ZM242.25 120H239.753V118H242.25C242.802 118 243.25 118.448 243.25 119C243.25 119.552 242.802 120 242.25 120ZM249.24 119C249.24 118.448 249.687 118 250.24 118H255.233C255.786 118 256.233 118.448 256.233 119C256.233 119.552 255.786 120 255.233 120H250.24C249.687 120 249.24 119.552 249.24 119ZM262.223 119C262.223 118.448 262.671 118 263.223 118H268.217C268.769 118 269.217 118.448 269.217 119C269.217 119.552 268.769 120 268.217 120H263.223C262.671 120 262.223 119.552 262.223 119ZM275.207 119C275.207 118.448 275.654 118 276.207 118H281.2C281.753 118 282.2 118.448 282.2 119C282.2 119.552 281.753 120 281.2 120H276.207C275.654 120 275.207 119.552 275.207 119ZM288.19 119C288.19 118.448 288.638 118 289.19 118H294.184C294.736 118 295.184 118.448 295.184 119C295.184 119.552 294.736 120 294.184 120H289.19C288.638 120 288.19 119.552 288.19 119ZM301.174 119C301.174 118.448 301.622 118 302.174 118H307.168C307.72 118 308.168 118.448 308.168 119C308.168 119.552 307.72 120 307.168 120H302.174C301.622 120 301.174 119.552 301.174 119ZM314.158 119C314.158 118.448 314.605 118 315.158 118H320.151C320.704 118 321.151 118.448 321.151 119C321.151 119.552 320.704 120 320.151 120H315.158C314.605 120 314.158 119.552 314.158 119ZM327.141 119C327.141 118.448 327.589 118 328.141 118H333.135C333.687 118 334.135 118.448 334.135 119C334.135 119.552 333.687 120 333.135 120H328.141C327.589 120 327.141 119.552 327.141 119ZM340.125 119C340.125 118.448 340.573 118 341.125 118H346.119C346.671 118 347.119 118.448 347.119 119C347.119 119.552 346.671 120 346.119 120H341.125C340.573 120 340.125 119.552 340.125 119ZM353.108 119C353.108 118.448 353.556 118 354.108 118H359.102C359.654 118 360.102 118.448 360.102 119C360.102 119.552 359.654 120 359.102 120H354.108C353.556 120 353.108 119.552 353.108 119ZM366.092 119C366.092 118.448 366.54 118 367.092 118H372.086C372.638 118 373.086 118.448 373.086 119C373.086 119.552 372.638 120 372.086 120H367.092C366.54 120 366.092 119.552 366.092 119ZM379.076 119C379.076 118.448 379.523 118 380.076 118H385.069C385.622 118 386.069 118.448 386.069 119C386.069 119.552 385.622 120 385.069 120H380.076C379.523 120 379.076 119.552 379.076 119ZM392.059 119C392.059 118.448 392.507 118 393.059 118H398.053C398.605 118 399.053 118.448 399.053 119C399.053 119.552 398.605 120 398.053 120H393.059C392.507 120 392.059 119.552 392.059 119ZM405.043 119C405.043 118.448 405.491 118 406.043 118H411.037C411.589 118 412.037 118.448 412.037 119C412.037 119.552 411.589 120 411.037 120H406.043C405.491 120 405.043 119.552 405.043 119ZM418.027 119C418.027 118.448 418.474 118 419.027 118H424.02C424.573 118 425.02 118.448 425.02 119C425.02 119.552 424.573 120 424.02 120H419.027C418.474 120 418.027 119.552 418.027 119ZM431.01 119C431.01 118.448 431.458 118 432.01 118H437.004C437.556 118 438.004 118.448 438.004 119C438.004 119.552 437.556 120 437.004 120H432.01C431.458 120 431.01 119.552 431.01 119ZM443.994 119C443.994 118.448 444.441 118 444.994 118H449.987C450.54 118 450.987 118.448 450.987 119C450.987 119.552 450.54 120 449.987 120H444.994C444.441 120 443.994 119.552 443.994 119ZM456.977 119C456.977 118.448 457.425 118 457.977 118H462.971C463.523 118 463.971 118.448 463.971 119C463.971 119.552 463.523 120 462.971 120H457.977C457.425 120 456.977 119.552 456.977 119ZM469.961 119C469.961 118.448 470.409 118 470.961 118H475.955C476.507 118 476.955 118.448 476.955 119C476.955 119.552 476.507 120 475.955 120H470.961C470.409 120 469.961 119.552 469.961 119ZM482.945 119C482.945 118.448 483.392 118 483.945 118H488.938C489.491 118 489.938 118.448 489.938 119C489.938 119.552 489.491 120 488.938 120H483.945C483.392 120 482.945 119.552 482.945 119ZM495.928 119C495.928 118.448 496.376 118 496.928 118H501.922C502.474 118 502.922 118.448 502.922 119C502.922 119.552 502.474 120 501.922 120H496.928C496.376 120 495.928 119.552 495.928 119ZM508.912 119C508.912 118.448 509.36 118 509.912 118H514.906C515.458 118 515.906 118.448 515.906 119C515.906 119.552 515.458 120 514.906 120H509.912C509.36 120 508.912 119.552 508.912 119ZM521.896 119C521.896 118.448 522.343 118 522.896 118H527.889C528.442 118 528.889 118.448 528.889 119C528.889 119.552 528.442 120 527.889 120H522.896C522.343 120 521.896 119.552 521.896 119ZM534.879 119C534.879 118.448 535.327 118 535.879 118H540.873C541.425 118 541.873 118.448 541.873 119C541.873 119.552 541.425 120 540.873 120H535.879C535.327 120 534.879 119.552 534.879 119ZM547.863 119C547.863 118.448 548.311 118 548.863 118H553.857C554.409 118 554.857 118.448 554.857 119C554.857 119.552 554.409 120 553.857 120H548.863C548.311 120 547.863 119.552 547.863 119ZM560.846 119C560.846 118.448 561.294 118 561.846 118H566.84C567.392 118 567.84 118.448 567.84 119C567.84 119.552 567.392 120 566.84 120H561.846C561.294 120 560.846 119.552 560.846 119ZM573.83 119C573.83 118.448 574.278 118 574.83 118H579.824C580.376 118 580.824 118.448 580.824 119C580.824 119.552 580.376 120 579.824 120H574.83C574.278 120 573.83 119.552 573.83 119ZM586.814 119C586.814 118.448 587.261 118 587.814 118H592.807C593.36 118 593.807 118.448 593.807 119C593.807 119.552 593.36 120 592.807 120H587.814C587.261 120 586.814 119.552 586.814 119ZM599.797 119C599.797 118.448 600.245 118 600.797 118H605.791C606.343 118 606.791 118.448 606.791 119C606.791 119.552 606.343 120 605.791 120H600.797C600.245 120 599.797 119.552 599.797 119ZM612.781 119C612.781 118.448 613.229 118 613.781 118H618.775C619.327 118 619.775 118.448 619.775 119C619.775 119.552 619.327 120 618.775 120H613.781C613.229 120 612.781 119.552 612.781 119ZM625.765 119C625.765 118.448 626.212 118 626.765 118H631.758C632.311 118 632.758 118.448 632.758 119C632.758 119.552 632.311 120 631.758 120H626.765C626.212 120 625.765 119.552 625.765 119ZM638.748 119C638.748 118.448 639.196 118 639.748 118H644.742C645.294 118 645.742 118.448 645.742 119C645.742 119.552 645.294 120 644.742 120H639.748C639.196 120 638.748 119.552 638.748 119ZM651.732 119C651.732 118.448 652.18 118 652.732 118H657.726C658.278 118 658.726 118.448 658.726 119C658.726 119.552 658.278 120 657.726 120H652.732C652.18 120 651.732 119.552 651.732 119ZM664.716 119C664.716 118.448 665.163 118 665.716 118H670.709C671.262 118 671.709 118.448 671.709 119C671.709 119.552 671.262 120 670.709 120H665.716C665.163 120 664.716 119.552 664.716 119ZM677.699 119C677.699 118.448 678.147 118 678.699 118H683.693C684.245 118 684.693 118.448 684.693 119C684.693 119.552 684.245 120 683.693 120H678.699C678.147 120 677.699 119.552 677.699 119ZM690.683 119C690.683 118.448 691.131 118 691.683 118H696.677C697.229 118 697.677 118.448 697.677 119C697.677 119.552 697.229 120 696.677 120H691.683C691.131 120 690.683 119.552 690.683 119ZM703.667 119C703.667 118.448 704.114 118 704.667 118H709.66C710.213 118 710.66 118.448 710.66 119C710.66 119.552 710.213 120 709.66 120H704.667C704.114 120 703.667 119.552 703.667 119ZM716.65 119C716.65 118.448 717.098 118 717.65 118H722.644C723.196 118 723.644 118.448 723.644 119C723.644 119.552 723.196 120 722.644 120H717.65C717.098 120 716.65 119.552 716.65 119ZM729.634 119C729.634 118.448 730.082 118 730.634 118H735.628C736.18 118 736.628 118.448 736.628 119C736.628 119.552 736.18 120 735.628 120H730.634C730.082 120 729.634 119.552 729.634 119ZM742.617 119C742.617 118.448 743.065 118 743.617 118H748.611C749.163 118 749.611 118.448 749.611 119C749.611 119.552 749.163 120 748.611 120H743.617C743.065 120 742.617 119.552 742.617 119ZM755.601 119C755.601 118.448 756.049 118 756.601 118H761.595C762.147 118 762.595 118.448 762.595 119C762.595 119.552 762.147 120 761.595 120H756.601C756.049 120 755.601 119.552 755.601 119ZM768.585 119C768.585 118.448 769.032 118 769.585 118H774.578C775.131 118 775.578 118.448 775.578 119C775.578 119.552 775.131 120 774.578 120H769.585C769.032 120 768.585 119.552 768.585 119ZM781.568 119C781.568 118.448 782.016 118 782.568 118H787.562C788.114 118 788.562 118.448 788.562 119C788.562 119.552 788.114 120 787.562 120H782.568C782.016 120 781.568 119.552 781.568 119ZM794.552 119C794.552 118.448 795 118 795.552 118H800.546C801.098 118 801.546 118.448 801.546 119C801.546 119.552 801.098 120 800.546 120H795.552C795 120 794.552 119.552 794.552 119ZM807.536 119C807.536 118.448 807.983 118 808.536 118H813.529C814.082 118 814.529 118.448 814.529 119C814.529 119.552 814.082 120 813.529 120H808.536C807.983 120 807.536 119.552 807.536 119ZM820.519 119C820.519 118.448 820.967 118 821.519 118H826.513C827.065 118 827.513 118.448 827.513 119C827.513 119.552 827.065 120 826.513 120H821.519C820.967 120 820.519 119.552 820.519 119ZM833.503 119C833.503 118.448 833.951 118 834.503 118H839.497C840.049 118 840.497 118.448 840.497 119C840.497 119.552 840.049 120 839.497 120H834.503C833.951 120 833.503 119.552 833.503 119ZM846.487 119C846.487 118.448 846.934 118 847.487 118H852.48C853.033 118 853.48 118.448 853.48 119C853.48 119.552 853.033 120 852.48 120H847.487C846.934 120 846.487 119.552 846.487 119ZM859.47 119C859.47 118.448 859.918 118 860.47 118H865.464C866.016 118 866.464 118.448 866.464 119C866.464 119.552 866.016 120 865.464 120H860.47C859.918 120 859.47 119.552 859.47 119ZM872.454 119C872.454 118.448 872.902 118 873.454 118H878.448C879 118 879.448 118.448 879.448 119C879.448 119.552 879 120 878.448 120H873.454C872.902 120 872.454 119.552 872.454 119ZM885.438 119C885.438 118.448 885.885 118 886.438 118H891.431C891.983 118 892.431 118.448 892.431 119C892.431 119.552 891.983 120 891.431 120H886.438C885.885 120 885.438 119.552 885.438 119ZM898.421 119C898.421 118.448 898.869 118 899.421 118H904.415C904.967 118 905.415 118.448 905.415 119C905.415 119.552 904.967 120 904.415 120H899.421C898.869 120 898.421 119.552 898.421 119ZM911.405 119C911.405 118.448 911.852 118 912.405 118H917.398C917.951 118 918.398 118.448 918.398 119C918.398 119.552 917.951 120 917.398 120H912.405C911.852 120 911.405 119.552 911.405 119ZM924.388 119C924.388 118.448 924.836 118 925.388 118H930.382C930.934 118 931.382 118.448 931.382 119C931.382 119.552 930.934 120 930.382 120H925.388C924.836 120 924.388 119.552 924.388 119ZM937.372 119C937.372 118.448 937.82 118 938.372 118H943.366C943.918 118 944.366 118.448 944.366 119C944.366 119.552 943.918 120 943.366 120H938.372C937.82 120 937.372 119.552 937.372 119ZM950.356 119C950.356 118.448 950.803 118 951.356 118H956.349C956.902 118 957.349 118.448 957.349 119C957.349 119.552 956.902 120 956.349 120H951.356C950.803 120 950.356 119.552 950.356 119ZM963.339 119C963.339 118.448 963.787 118 964.339 118H969.333C969.885 118 970.333 118.448 970.333 119C970.333 119.552 969.885 120 969.333 120H964.339C963.787 120 963.339 119.552 963.339 119ZM976.323 119C976.323 118.448 976.771 118 977.323 118H982.317C982.869 118 983.317 118.448 983.317 119C983.317 119.552 982.869 120 982.317 120H977.323C976.771 120 976.323 119.552 976.323 119ZM989.307 119C989.307 118.448 989.754 118 990.307 118H995.3C995.853 118 996.3 118.448 996.3 119C996.3 119.552 995.853 120 995.3 120H990.307C989.754 120 989.307 119.552 989.307 119ZM1002.29 119C1002.29 118.448 1002.74 118 1003.29 118H1008.28C1008.84 118 1009.28 118.448 1009.28 119C1009.28 119.552 1008.84 120 1008.28 120H1003.29C1002.74 120 1002.29 119.552 1002.29 119ZM1015.27 119C1015.27 118.448 1015.72 118 1016.27 118H1021.27C1021.82 118 1022.27 118.448 1022.27 119C1022.27 119.552 1021.82 120 1021.27 120H1016.27C1015.72 120 1015.27 119.552 1015.27 119ZM1028.26 119C1028.26 118.448 1028.71 118 1029.26 118H1034.25C1034.8 118 1035.25 118.448 1035.25 119C1035.25 119.552 1034.8 120 1034.25 120H1029.26C1028.71 120 1028.26 119.552 1028.26 119ZM1041.24 119C1041.24 118.448 1041.69 118 1042.24 118H1047.23C1047.79 118 1048.23 118.448 1048.23 119C1048.23 119.552 1047.79 120 1047.23 120H1042.24C1041.69 120 1041.24 119.552 1041.24 119ZM1054.22 119C1054.22 118.448 1054.67 118 1055.22 118H1060.22C1060.77 118 1061.22 118.448 1061.22 119C1061.22 119.552 1060.77 120 1060.22 120H1055.22C1054.67 120 1054.22 119.552 1054.22 119ZM1067.21 119C1067.21 118.448 1067.66 118 1068.21 118H1073.2C1073.75 118 1074.2 118.448 1074.2 119C1074.2 119.552 1073.75 120 1073.2 120H1068.21C1067.66 120 1067.21 119.552 1067.21 119ZM1080.19 119C1080.19 118.448 1080.64 118 1081.19 118H1086.19C1086.74 118 1087.19 118.448 1087.19 119C1087.19 119.552 1086.74 120 1086.19 120H1081.19C1080.64 120 1080.19 119.552 1080.19 119ZM1093.18 119C1093.18 118.448 1093.62 118 1094.18 118H1099.17C1099.72 118 1100.17 118.448 1100.17 119C1100.17 119.552 1099.72 120 1099.17 120H1094.18C1093.62 120 1093.18 119.552 1093.18 119ZM1106.16 119C1106.16 118.448 1106.61 118 1107.16 118H1112.15C1112.71 118 1113.15 118.448 1113.15 119C1113.15 119.552 1112.71 120 1112.15 120H1107.16C1106.61 120 1106.16 119.552 1106.16 119ZM1119.14 119C1119.14 118.448 1119.59 118 1120.14 118H1125.14C1125.69 118 1126.14 118.448 1126.14 119C1126.14 119.552 1125.69 120 1125.14 120H1120.14C1119.59 120 1119.14 119.552 1119.14 119Z" fill="#9C9C9C"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M1138.61 215.227L1148.61 221L1138.61 226.774V221.874C1138.46 221.954 1138.3 222 1138.12 222H1133.13C1132.57 222 1132.13 221.552 1132.13 221C1132.13 220.448 1132.57 220 1133.13 220H1138.12C1138.3 220 1138.46 220.046 1138.61 220.126V215.227ZM242.25 222H239.753V220H242.25C242.802 220 243.25 220.448 243.25 221C243.25 221.552 242.802 222 242.25 222ZM249.24 221C249.24 220.448 249.687 220 250.24 220H255.233C255.786 220 256.233 220.448 256.233 221C256.233 221.552 255.786 222 255.233 222H250.24C249.687 222 249.24 221.552 249.24 221ZM262.223 221C262.223 220.448 262.671 220 263.223 220H268.217C268.769 220 269.217 220.448 269.217 221C269.217 221.552 268.769 222 268.217 222H263.223C262.671 222 262.223 221.552 262.223 221ZM275.207 221C275.207 220.448 275.654 220 276.207 220H281.2C281.753 220 282.2 220.448 282.2 221C282.2 221.552 281.753 222 281.2 222H276.207C275.654 222 275.207 221.552 275.207 221ZM288.19 221C288.19 220.448 288.638 220 289.19 220H294.184C294.736 220 295.184 220.448 295.184 221C295.184 221.552 294.736 222 294.184 222H289.19C288.638 222 288.19 221.552 288.19 221ZM301.174 221C301.174 220.448 301.622 220 302.174 220H307.168C307.72 220 308.168 220.448 308.168 221C308.168 221.552 307.72 222 307.168 222H302.174C301.622 222 301.174 221.552 301.174 221ZM314.158 221C314.158 220.448 314.605 220 315.158 220H320.151C320.704 220 321.151 220.448 321.151 221C321.151 221.552 320.704 222 320.151 222H315.158C314.605 222 314.158 221.552 314.158 221ZM327.141 221C327.141 220.448 327.589 220 328.141 220H333.135C333.687 220 334.135 220.448 334.135 221C334.135 221.552 333.687 222 333.135 222H328.141C327.589 222 327.141 221.552 327.141 221ZM340.125 221C340.125 220.448 340.573 220 341.125 220H346.119C346.671 220 347.119 220.448 347.119 221C347.119 221.552 346.671 222 346.119 222H341.125C340.573 222 340.125 221.552 340.125 221ZM353.108 221C353.108 220.448 353.556 220 354.108 220H359.102C359.654 220 360.102 220.448 360.102 221C360.102 221.552 359.654 222 359.102 222H354.108C353.556 222 353.108 221.552 353.108 221ZM366.092 221C366.092 220.448 366.54 220 367.092 220H372.086C372.638 220 373.086 220.448 373.086 221C373.086 221.552 372.638 222 372.086 222H367.092C366.54 222 366.092 221.552 366.092 221ZM379.076 221C379.076 220.448 379.523 220 380.076 220H385.069C385.622 220 386.069 220.448 386.069 221C386.069 221.552 385.622 222 385.069 222H380.076C379.523 222 379.076 221.552 379.076 221ZM392.059 221C392.059 220.448 392.507 220 393.059 220H398.053C398.605 220 399.053 220.448 399.053 221C399.053 221.552 398.605 222 398.053 222H393.059C392.507 222 392.059 221.552 392.059 221ZM405.043 221C405.043 220.448 405.491 220 406.043 220H411.037C411.589 220 412.037 220.448 412.037 221C412.037 221.552 411.589 222 411.037 222H406.043C405.491 222 405.043 221.552 405.043 221ZM418.027 221C418.027 220.448 418.474 220 419.027 220H424.02C424.573 220 425.02 220.448 425.02 221C425.02 221.552 424.573 222 424.02 222H419.027C418.474 222 418.027 221.552 418.027 221ZM431.01 221C431.01 220.448 431.458 220 432.01 220H437.004C437.556 220 438.004 220.448 438.004 221C438.004 221.552 437.556 222 437.004 222H432.01C431.458 222 431.01 221.552 431.01 221ZM443.994 221C443.994 220.448 444.441 220 444.994 220H449.987C450.54 220 450.987 220.448 450.987 221C450.987 221.552 450.54 222 449.987 222H444.994C444.441 222 443.994 221.552 443.994 221ZM456.977 221C456.977 220.448 457.425 220 457.977 220H462.971C463.523 220 463.971 220.448 463.971 221C463.971 221.552 463.523 222 462.971 222H457.977C457.425 222 456.977 221.552 456.977 221ZM469.961 221C469.961 220.448 470.409 220 470.961 220H475.955C476.507 220 476.955 220.448 476.955 221C476.955 221.552 476.507 222 475.955 222H470.961C470.409 222 469.961 221.552 469.961 221ZM482.945 221C482.945 220.448 483.392 220 483.945 220H488.938C489.491 220 489.938 220.448 489.938 221C489.938 221.552 489.491 222 488.938 222H483.945C483.392 222 482.945 221.552 482.945 221ZM495.928 221C495.928 220.448 496.376 220 496.928 220H501.922C502.474 220 502.922 220.448 502.922 221C502.922 221.552 502.474 222 501.922 222H496.928C496.376 222 495.928 221.552 495.928 221ZM508.912 221C508.912 220.448 509.36 220 509.912 220H514.906C515.458 220 515.906 220.448 515.906 221C515.906 221.552 515.458 222 514.906 222H509.912C509.36 222 508.912 221.552 508.912 221ZM521.896 221C521.896 220.448 522.343 220 522.896 220H527.889C528.442 220 528.889 220.448 528.889 221C528.889 221.552 528.442 222 527.889 222H522.896C522.343 222 521.896 221.552 521.896 221ZM534.879 221C534.879 220.448 535.327 220 535.879 220H540.873C541.425 220 541.873 220.448 541.873 221C541.873 221.552 541.425 222 540.873 222H535.879C535.327 222 534.879 221.552 534.879 221ZM547.863 221C547.863 220.448 548.311 220 548.863 220H553.857C554.409 220 554.857 220.448 554.857 221C554.857 221.552 554.409 222 553.857 222H548.863C548.311 222 547.863 221.552 547.863 221ZM560.846 221C560.846 220.448 561.294 220 561.846 220H566.84C567.392 220 567.84 220.448 567.84 221C567.84 221.552 567.392 222 566.84 222H561.846C561.294 222 560.846 221.552 560.846 221ZM573.83 221C573.83 220.448 574.278 220 574.83 220H579.824C580.376 220 580.824 220.448 580.824 221C580.824 221.552 580.376 222 579.824 222H574.83C574.278 222 573.83 221.552 573.83 221ZM586.814 221C586.814 220.448 587.261 220 587.814 220H592.807C593.36 220 593.807 220.448 593.807 221C593.807 221.552 593.36 222 592.807 222H587.814C587.261 222 586.814 221.552 586.814 221ZM599.797 221C599.797 220.448 600.245 220 600.797 220H605.791C606.343 220 606.791 220.448 606.791 221C606.791 221.552 606.343 222 605.791 222H600.797C600.245 222 599.797 221.552 599.797 221ZM612.781 221C612.781 220.448 613.229 220 613.781 220H618.775C619.327 220 619.775 220.448 619.775 221C619.775 221.552 619.327 222 618.775 222H613.781C613.229 222 612.781 221.552 612.781 221ZM625.765 221C625.765 220.448 626.212 220 626.765 220H631.758C632.311 220 632.758 220.448 632.758 221C632.758 221.552 632.311 222 631.758 222H626.765C626.212 222 625.765 221.552 625.765 221ZM638.748 221C638.748 220.448 639.196 220 639.748 220H644.742C645.294 220 645.742 220.448 645.742 221C645.742 221.552 645.294 222 644.742 222H639.748C639.196 222 638.748 221.552 638.748 221ZM651.732 221C651.732 220.448 652.18 220 652.732 220H657.726C658.278 220 658.726 220.448 658.726 221C658.726 221.552 658.278 222 657.726 222H652.732C652.18 222 651.732 221.552 651.732 221ZM664.716 221C664.716 220.448 665.163 220 665.716 220H670.709C671.262 220 671.709 220.448 671.709 221C671.709 221.552 671.262 222 670.709 222H665.716C665.163 222 664.716 221.552 664.716 221ZM677.699 221C677.699 220.448 678.147 220 678.699 220H683.693C684.245 220 684.693 220.448 684.693 221C684.693 221.552 684.245 222 683.693 222H678.699C678.147 222 677.699 221.552 677.699 221ZM690.683 221C690.683 220.448 691.131 220 691.683 220H696.677C697.229 220 697.677 220.448 697.677 221C697.677 221.552 697.229 222 696.677 222H691.683C691.131 222 690.683 221.552 690.683 221ZM703.667 221C703.667 220.448 704.114 220 704.667 220H709.66C710.213 220 710.66 220.448 710.66 221C710.66 221.552 710.213 222 709.66 222H704.667C704.114 222 703.667 221.552 703.667 221ZM716.65 221C716.65 220.448 717.098 220 717.65 220H722.644C723.196 220 723.644 220.448 723.644 221C723.644 221.552 723.196 222 722.644 222H717.65C717.098 222 716.65 221.552 716.65 221ZM729.634 221C729.634 220.448 730.082 220 730.634 220H735.628C736.18 220 736.628 220.448 736.628 221C736.628 221.552 736.18 222 735.628 222H730.634C730.082 222 729.634 221.552 729.634 221ZM742.617 221C742.617 220.448 743.065 220 743.617 220H748.611C749.163 220 749.611 220.448 749.611 221C749.611 221.552 749.163 222 748.611 222H743.617C743.065 222 742.617 221.552 742.617 221ZM755.601 221C755.601 220.448 756.049 220 756.601 220H761.595C762.147 220 762.595 220.448 762.595 221C762.595 221.552 762.147 222 761.595 222H756.601C756.049 222 755.601 221.552 755.601 221ZM768.585 221C768.585 220.448 769.032 220 769.585 220H774.578C775.131 220 775.578 220.448 775.578 221C775.578 221.552 775.131 222 774.578 222H769.585C769.032 222 768.585 221.552 768.585 221ZM781.568 221C781.568 220.448 782.016 220 782.568 220H787.562C788.114 220 788.562 220.448 788.562 221C788.562 221.552 788.114 222 787.562 222H782.568C782.016 222 781.568 221.552 781.568 221ZM794.552 221C794.552 220.448 795 220 795.552 220H800.546C801.098 220 801.546 220.448 801.546 221C801.546 221.552 801.098 222 800.546 222H795.552C795 222 794.552 221.552 794.552 221ZM807.536 221C807.536 220.448 807.983 220 808.536 220H813.529C814.082 220 814.529 220.448 814.529 221C814.529 221.552 814.082 222 813.529 222H808.536C807.983 222 807.536 221.552 807.536 221ZM820.519 221C820.519 220.448 820.967 220 821.519 220H826.513C827.065 220 827.513 220.448 827.513 221C827.513 221.552 827.065 222 826.513 222H821.519C820.967 222 820.519 221.552 820.519 221ZM833.503 221C833.503 220.448 833.951 220 834.503 220H839.497C840.049 220 840.497 220.448 840.497 221C840.497 221.552 840.049 222 839.497 222H834.503C833.951 222 833.503 221.552 833.503 221ZM846.487 221C846.487 220.448 846.934 220 847.487 220H852.48C853.033 220 853.48 220.448 853.48 221C853.48 221.552 853.033 222 852.48 222H847.487C846.934 222 846.487 221.552 846.487 221ZM859.47 221C859.47 220.448 859.918 220 860.47 220H865.464C866.016 220 866.464 220.448 866.464 221C866.464 221.552 866.016 222 865.464 222H860.47C859.918 222 859.47 221.552 859.47 221ZM872.454 221C872.454 220.448 872.902 220 873.454 220H878.448C879 220 879.448 220.448 879.448 221C879.448 221.552 879 222 878.448 222H873.454C872.902 222 872.454 221.552 872.454 221ZM885.438 221C885.438 220.448 885.885 220 886.438 220H891.431C891.983 220 892.431 220.448 892.431 221C892.431 221.552 891.983 222 891.431 222H886.438C885.885 222 885.438 221.552 885.438 221ZM898.421 221C898.421 220.448 898.869 220 899.421 220H904.415C904.967 220 905.415 220.448 905.415 221C905.415 221.552 904.967 222 904.415 222H899.421C898.869 222 898.421 221.552 898.421 221ZM911.405 221C911.405 220.448 911.852 220 912.405 220H917.398C917.951 220 918.398 220.448 918.398 221C918.398 221.552 917.951 222 917.398 222H912.405C911.852 222 911.405 221.552 911.405 221ZM924.388 221C924.388 220.448 924.836 220 925.388 220H930.382C930.934 220 931.382 220.448 931.382 221C931.382 221.552 930.934 222 930.382 222H925.388C924.836 222 924.388 221.552 924.388 221ZM937.372 221C937.372 220.448 937.82 220 938.372 220H943.366C943.918 220 944.366 220.448 944.366 221C944.366 221.552 943.918 222 943.366 222H938.372C937.82 222 937.372 221.552 937.372 221ZM950.356 221C950.356 220.448 950.803 220 951.356 220H956.349C956.902 220 957.349 220.448 957.349 221C957.349 221.552 956.902 222 956.349 222H951.356C950.803 222 950.356 221.552 950.356 221ZM963.339 221C963.339 220.448 963.787 220 964.339 220H969.333C969.885 220 970.333 220.448 970.333 221C970.333 221.552 969.885 222 969.333 222H964.339C963.787 222 963.339 221.552 963.339 221ZM976.323 221C976.323 220.448 976.771 220 977.323 220H982.317C982.869 220 983.317 220.448 983.317 221C983.317 221.552 982.869 222 982.317 222H977.323C976.771 222 976.323 221.552 976.323 221ZM989.307 221C989.307 220.448 989.754 220 990.307 220H995.3C995.853 220 996.3 220.448 996.3 221C996.3 221.552 995.853 222 995.3 222H990.307C989.754 222 989.307 221.552 989.307 221ZM1002.29 221C1002.29 220.448 1002.74 220 1003.29 220H1008.28C1008.84 220 1009.28 220.448 1009.28 221C1009.28 221.552 1008.84 222 1008.28 222H1003.29C1002.74 222 1002.29 221.552 1002.29 221ZM1015.27 221C1015.27 220.448 1015.72 220 1016.27 220H1021.27C1021.82 220 1022.27 220.448 1022.27 221C1022.27 221.552 1021.82 222 1021.27 222H1016.27C1015.72 222 1015.27 221.552 1015.27 221ZM1028.26 221C1028.26 220.448 1028.71 220 1029.26 220H1034.25C1034.8 220 1035.25 220.448 1035.25 221C1035.25 221.552 1034.8 222 1034.25 222H1029.26C1028.71 222 1028.26 221.552 1028.26 221ZM1041.24 221C1041.24 220.448 1041.69 220 1042.24 220H1047.23C1047.79 220 1048.23 220.448 1048.23 221C1048.23 221.552 1047.79 222 1047.23 222H1042.24C1041.69 222 1041.24 221.552 1041.24 221ZM1054.22 221C1054.22 220.448 1054.67 220 1055.22 220H1060.22C1060.77 220 1061.22 220.448 1061.22 221C1061.22 221.552 1060.77 222 1060.22 222H1055.22C1054.67 222 1054.22 221.552 1054.22 221ZM1067.21 221C1067.21 220.448 1067.66 220 1068.21 220H1073.2C1073.75 220 1074.2 220.448 1074.2 221C1074.2 221.552 1073.75 222 1073.2 222H1068.21C1067.66 222 1067.21 221.552 1067.21 221ZM1080.19 221C1080.19 220.448 1080.64 220 1081.19 220H1086.19C1086.74 220 1087.19 220.448 1087.19 221C1087.19 221.552 1086.74 222 1086.19 222H1081.19C1080.64 222 1080.19 221.552 1080.19 221ZM1093.18 221C1093.18 220.448 1093.62 220 1094.18 220H1099.17C1099.72 220 1100.17 220.448 1100.17 221C1100.17 221.552 1099.72 222 1099.17 222H1094.18C1093.62 222 1093.18 221.552 1093.18 221ZM1106.16 221C1106.16 220.448 1106.61 220 1107.16 220H1112.15C1112.71 220 1113.15 220.448 1113.15 221C1113.15 221.552 1112.71 222 1112.15 222H1107.16C1106.61 222 1106.16 221.552 1106.16 221ZM1119.14 221C1119.14 220.448 1119.59 220 1120.14 220H1125.14C1125.69 220 1126.14 220.448 1126.14 221C1126.14 221.552 1125.69 222 1125.14 222H1120.14C1119.59 222 1119.14 221.552 1119.14 221Z" fill="#9C9C9C"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M1138.61 318.227L1148.61 324L1138.61 329.774V324.874C1138.46 324.954 1138.3 325 1138.12 325H1133.13C1132.57 325 1132.13 324.552 1132.13 324C1132.13 323.448 1132.57 323 1133.13 323H1138.12C1138.3 323 1138.46 323.046 1138.61 323.126V318.227ZM242.25 325H239.753V323H242.25C242.802 323 243.25 323.448 243.25 324C243.25 324.552 242.802 325 242.25 325ZM249.24 324C249.24 323.448 249.687 323 250.24 323H255.233C255.786 323 256.233 323.448 256.233 324C256.233 324.552 255.786 325 255.233 325H250.24C249.687 325 249.24 324.552 249.24 324ZM262.223 324C262.223 323.448 262.671 323 263.223 323H268.217C268.769 323 269.217 323.448 269.217 324C269.217 324.552 268.769 325 268.217 325H263.223C262.671 325 262.223 324.552 262.223 324ZM275.207 324C275.207 323.448 275.654 323 276.207 323H281.2C281.753 323 282.2 323.448 282.2 324C282.2 324.552 281.753 325 281.2 325H276.207C275.654 325 275.207 324.552 275.207 324ZM288.19 324C288.19 323.448 288.638 323 289.19 323H294.184C294.736 323 295.184 323.448 295.184 324C295.184 324.552 294.736 325 294.184 325H289.19C288.638 325 288.19 324.552 288.19 324ZM301.174 324C301.174 323.448 301.622 323 302.174 323H307.168C307.72 323 308.168 323.448 308.168 324C308.168 324.552 307.72 325 307.168 325H302.174C301.622 325 301.174 324.552 301.174 324ZM314.158 324C314.158 323.448 314.605 323 315.158 323H320.151C320.704 323 321.151 323.448 321.151 324C321.151 324.552 320.704 325 320.151 325H315.158C314.605 325 314.158 324.552 314.158 324ZM327.141 324C327.141 323.448 327.589 323 328.141 323H333.135C333.687 323 334.135 323.448 334.135 324C334.135 324.552 333.687 325 333.135 325H328.141C327.589 325 327.141 324.552 327.141 324ZM340.125 324C340.125 323.448 340.573 323 341.125 323H346.119C346.671 323 347.119 323.448 347.119 324C347.119 324.552 346.671 325 346.119 325H341.125C340.573 325 340.125 324.552 340.125 324ZM353.108 324C353.108 323.448 353.556 323 354.108 323H359.102C359.654 323 360.102 323.448 360.102 324C360.102 324.552 359.654 325 359.102 325H354.108C353.556 325 353.108 324.552 353.108 324ZM366.092 324C366.092 323.448 366.54 323 367.092 323H372.086C372.638 323 373.086 323.448 373.086 324C373.086 324.552 372.638 325 372.086 325H367.092C366.54 325 366.092 324.552 366.092 324ZM379.076 324C379.076 323.448 379.523 323 380.076 323H385.069C385.622 323 386.069 323.448 386.069 324C386.069 324.552 385.622 325 385.069 325H380.076C379.523 325 379.076 324.552 379.076 324ZM392.059 324C392.059 323.448 392.507 323 393.059 323H398.053C398.605 323 399.053 323.448 399.053 324C399.053 324.552 398.605 325 398.053 325H393.059C392.507 325 392.059 324.552 392.059 324ZM405.043 324C405.043 323.448 405.491 323 406.043 323H411.037C411.589 323 412.037 323.448 412.037 324C412.037 324.552 411.589 325 411.037 325H406.043C405.491 325 405.043 324.552 405.043 324ZM418.027 324C418.027 323.448 418.474 323 419.027 323H424.02C424.573 323 425.02 323.448 425.02 324C425.02 324.552 424.573 325 424.02 325H419.027C418.474 325 418.027 324.552 418.027 324ZM431.01 324C431.01 323.448 431.458 323 432.01 323H437.004C437.556 323 438.004 323.448 438.004 324C438.004 324.552 437.556 325 437.004 325H432.01C431.458 325 431.01 324.552 431.01 324ZM443.994 324C443.994 323.448 444.441 323 444.994 323H449.987C450.54 323 450.987 323.448 450.987 324C450.987 324.552 450.54 325 449.987 325H444.994C444.441 325 443.994 324.552 443.994 324ZM456.977 324C456.977 323.448 457.425 323 457.977 323H462.971C463.523 323 463.971 323.448 463.971 324C463.971 324.552 463.523 325 462.971 325H457.977C457.425 325 456.977 324.552 456.977 324ZM469.961 324C469.961 323.448 470.409 323 470.961 323H475.955C476.507 323 476.955 323.448 476.955 324C476.955 324.552 476.507 325 475.955 325H470.961C470.409 325 469.961 324.552 469.961 324ZM482.945 324C482.945 323.448 483.392 323 483.945 323H488.938C489.491 323 489.938 323.448 489.938 324C489.938 324.552 489.491 325 488.938 325H483.945C483.392 325 482.945 324.552 482.945 324ZM495.928 324C495.928 323.448 496.376 323 496.928 323H501.922C502.474 323 502.922 323.448 502.922 324C502.922 324.552 502.474 325 501.922 325H496.928C496.376 325 495.928 324.552 495.928 324ZM508.912 324C508.912 323.448 509.36 323 509.912 323H514.906C515.458 323 515.906 323.448 515.906 324C515.906 324.552 515.458 325 514.906 325H509.912C509.36 325 508.912 324.552 508.912 324ZM521.896 324C521.896 323.448 522.343 323 522.896 323H527.889C528.442 323 528.889 323.448 528.889 324C528.889 324.552 528.442 325 527.889 325H522.896C522.343 325 521.896 324.552 521.896 324ZM534.879 324C534.879 323.448 535.327 323 535.879 323H540.873C541.425 323 541.873 323.448 541.873 324C541.873 324.552 541.425 325 540.873 325H535.879C535.327 325 534.879 324.552 534.879 324ZM547.863 324C547.863 323.448 548.311 323 548.863 323H553.857C554.409 323 554.857 323.448 554.857 324C554.857 324.552 554.409 325 553.857 325H548.863C548.311 325 547.863 324.552 547.863 324ZM560.846 324C560.846 323.448 561.294 323 561.846 323H566.84C567.392 323 567.84 323.448 567.84 324C567.84 324.552 567.392 325 566.84 325H561.846C561.294 325 560.846 324.552 560.846 324ZM573.83 324C573.83 323.448 574.278 323 574.83 323H579.824C580.376 323 580.824 323.448 580.824 324C580.824 324.552 580.376 325 579.824 325H574.83C574.278 325 573.83 324.552 573.83 324ZM586.814 324C586.814 323.448 587.261 323 587.814 323H592.807C593.36 323 593.807 323.448 593.807 324C593.807 324.552 593.36 325 592.807 325H587.814C587.261 325 586.814 324.552 586.814 324ZM599.797 324C599.797 323.448 600.245 323 600.797 323H605.791C606.343 323 606.791 323.448 606.791 324C606.791 324.552 606.343 325 605.791 325H600.797C600.245 325 599.797 324.552 599.797 324ZM612.781 324C612.781 323.448 613.229 323 613.781 323H618.775C619.327 323 619.775 323.448 619.775 324C619.775 324.552 619.327 325 618.775 325H613.781C613.229 325 612.781 324.552 612.781 324ZM625.765 324C625.765 323.448 626.212 323 626.765 323H631.758C632.311 323 632.758 323.448 632.758 324C632.758 324.552 632.311 325 631.758 325H626.765C626.212 325 625.765 324.552 625.765 324ZM638.748 324C638.748 323.448 639.196 323 639.748 323H644.742C645.294 323 645.742 323.448 645.742 324C645.742 324.552 645.294 325 644.742 325H639.748C639.196 325 638.748 324.552 638.748 324ZM651.732 324C651.732 323.448 652.18 323 652.732 323H657.726C658.278 323 658.726 323.448 658.726 324C658.726 324.552 658.278 325 657.726 325H652.732C652.18 325 651.732 324.552 651.732 324ZM664.716 324C664.716 323.448 665.163 323 665.716 323H670.709C671.262 323 671.709 323.448 671.709 324C671.709 324.552 671.262 325 670.709 325H665.716C665.163 325 664.716 324.552 664.716 324ZM677.699 324C677.699 323.448 678.147 323 678.699 323H683.693C684.245 323 684.693 323.448 684.693 324C684.693 324.552 684.245 325 683.693 325H678.699C678.147 325 677.699 324.552 677.699 324ZM690.683 324C690.683 323.448 691.131 323 691.683 323H696.677C697.229 323 697.677 323.448 697.677 324C697.677 324.552 697.229 325 696.677 325H691.683C691.131 325 690.683 324.552 690.683 324ZM703.667 324C703.667 323.448 704.114 323 704.667 323H709.66C710.213 323 710.66 323.448 710.66 324C710.66 324.552 710.213 325 709.66 325H704.667C704.114 325 703.667 324.552 703.667 324ZM716.65 324C716.65 323.448 717.098 323 717.65 323H722.644C723.196 323 723.644 323.448 723.644 324C723.644 324.552 723.196 325 722.644 325H717.65C717.098 325 716.65 324.552 716.65 324ZM729.634 324C729.634 323.448 730.082 323 730.634 323H735.628C736.18 323 736.628 323.448 736.628 324C736.628 324.552 736.18 325 735.628 325H730.634C730.082 325 729.634 324.552 729.634 324ZM742.617 324C742.617 323.448 743.065 323 743.617 323H748.611C749.163 323 749.611 323.448 749.611 324C749.611 324.552 749.163 325 748.611 325H743.617C743.065 325 742.617 324.552 742.617 324ZM755.601 324C755.601 323.448 756.049 323 756.601 323H761.595C762.147 323 762.595 323.448 762.595 324C762.595 324.552 762.147 325 761.595 325H756.601C756.049 325 755.601 324.552 755.601 324ZM768.585 324C768.585 323.448 769.032 323 769.585 323H774.578C775.131 323 775.578 323.448 775.578 324C775.578 324.552 775.131 325 774.578 325H769.585C769.032 325 768.585 324.552 768.585 324ZM781.568 324C781.568 323.448 782.016 323 782.568 323H787.562C788.114 323 788.562 323.448 788.562 324C788.562 324.552 788.114 325 787.562 325H782.568C782.016 325 781.568 324.552 781.568 324ZM794.552 324C794.552 323.448 795 323 795.552 323H800.546C801.098 323 801.546 323.448 801.546 324C801.546 324.552 801.098 325 800.546 325H795.552C795 325 794.552 324.552 794.552 324ZM807.536 324C807.536 323.448 807.983 323 808.536 323H813.529C814.082 323 814.529 323.448 814.529 324C814.529 324.552 814.082 325 813.529 325H808.536C807.983 325 807.536 324.552 807.536 324ZM820.519 324C820.519 323.448 820.967 323 821.519 323H826.513C827.065 323 827.513 323.448 827.513 324C827.513 324.552 827.065 325 826.513 325H821.519C820.967 325 820.519 324.552 820.519 324ZM833.503 324C833.503 323.448 833.951 323 834.503 323H839.497C840.049 323 840.497 323.448 840.497 324C840.497 324.552 840.049 325 839.497 325H834.503C833.951 325 833.503 324.552 833.503 324ZM846.487 324C846.487 323.448 846.934 323 847.487 323H852.48C853.033 323 853.48 323.448 853.48 324C853.48 324.552 853.033 325 852.48 325H847.487C846.934 325 846.487 324.552 846.487 324ZM859.47 324C859.47 323.448 859.918 323 860.47 323H865.464C866.016 323 866.464 323.448 866.464 324C866.464 324.552 866.016 325 865.464 325H860.47C859.918 325 859.47 324.552 859.47 324ZM872.454 324C872.454 323.448 872.902 323 873.454 323H878.448C879 323 879.448 323.448 879.448 324C879.448 324.552 879 325 878.448 325H873.454C872.902 325 872.454 324.552 872.454 324ZM885.438 324C885.438 323.448 885.885 323 886.438 323H891.431C891.983 323 892.431 323.448 892.431 324C892.431 324.552 891.983 325 891.431 325H886.438C885.885 325 885.438 324.552 885.438 324ZM898.421 324C898.421 323.448 898.869 323 899.421 323H904.415C904.967 323 905.415 323.448 905.415 324C905.415 324.552 904.967 325 904.415 325H899.421C898.869 325 898.421 324.552 898.421 324ZM911.405 324C911.405 323.448 911.852 323 912.405 323H917.398C917.951 323 918.398 323.448 918.398 324C918.398 324.552 917.951 325 917.398 325H912.405C911.852 325 911.405 324.552 911.405 324ZM924.388 324C924.388 323.448 924.836 323 925.388 323H930.382C930.934 323 931.382 323.448 931.382 324C931.382 324.552 930.934 325 930.382 325H925.388C924.836 325 924.388 324.552 924.388 324ZM937.372 324C937.372 323.448 937.82 323 938.372 323H943.366C943.918 323 944.366 323.448 944.366 324C944.366 324.552 943.918 325 943.366 325H938.372C937.82 325 937.372 324.552 937.372 324ZM950.356 324C950.356 323.448 950.803 323 951.356 323H956.349C956.902 323 957.349 323.448 957.349 324C957.349 324.552 956.902 325 956.349 325H951.356C950.803 325 950.356 324.552 950.356 324ZM963.339 324C963.339 323.448 963.787 323 964.339 323H969.333C969.885 323 970.333 323.448 970.333 324C970.333 324.552 969.885 325 969.333 325H964.339C963.787 325 963.339 324.552 963.339 324ZM976.323 324C976.323 323.448 976.771 323 977.323 323H982.317C982.869 323 983.317 323.448 983.317 324C983.317 324.552 982.869 325 982.317 325H977.323C976.771 325 976.323 324.552 976.323 324ZM989.307 324C989.307 323.448 989.754 323 990.307 323H995.3C995.853 323 996.3 323.448 996.3 324C996.3 324.552 995.853 325 995.3 325H990.307C989.754 325 989.307 324.552 989.307 324ZM1002.29 324C1002.29 323.448 1002.74 323 1003.29 323H1008.28C1008.84 323 1009.28 323.448 1009.28 324C1009.28 324.552 1008.84 325 1008.28 325H1003.29C1002.74 325 1002.29 324.552 1002.29 324ZM1015.27 324C1015.27 323.448 1015.72 323 1016.27 323H1021.27C1021.82 323 1022.27 323.448 1022.27 324C1022.27 324.552 1021.82 325 1021.27 325H1016.27C1015.72 325 1015.27 324.552 1015.27 324ZM1028.26 324C1028.26 323.448 1028.71 323 1029.26 323H1034.25C1034.8 323 1035.25 323.448 1035.25 324C1035.25 324.552 1034.8 325 1034.25 325H1029.26C1028.71 325 1028.26 324.552 1028.26 324ZM1041.24 324C1041.24 323.448 1041.69 323 1042.24 323H1047.23C1047.79 323 1048.23 323.448 1048.23 324C1048.23 324.552 1047.79 325 1047.23 325H1042.24C1041.69 325 1041.24 324.552 1041.24 324ZM1054.22 324C1054.22 323.448 1054.67 323 1055.22 323H1060.22C1060.77 323 1061.22 323.448 1061.22 324C1061.22 324.552 1060.77 325 1060.22 325H1055.22C1054.67 325 1054.22 324.552 1054.22 324ZM1067.21 324C1067.21 323.448 1067.66 323 1068.21 323H1073.2C1073.75 323 1074.2 323.448 1074.2 324C1074.2 324.552 1073.75 325 1073.2 325H1068.21C1067.66 325 1067.21 324.552 1067.21 324ZM1080.19 324C1080.19 323.448 1080.64 323 1081.19 323H1086.19C1086.74 323 1087.19 323.448 1087.19 324C1087.19 324.552 1086.74 325 1086.19 325H1081.19C1080.64 325 1080.19 324.552 1080.19 324ZM1093.18 324C1093.18 323.448 1093.62 323 1094.18 323H1099.17C1099.72 323 1100.17 323.448 1100.17 324C1100.17 324.552 1099.72 325 1099.17 325H1094.18C1093.62 325 1093.18 324.552 1093.18 324ZM1106.16 324C1106.16 323.448 1106.61 323 1107.16 323H1112.15C1112.71 323 1113.15 323.448 1113.15 324C1113.15 324.552 1112.71 325 1112.15 325H1107.16C1106.61 325 1106.16 324.552 1106.16 324ZM1119.14 324C1119.14 323.448 1119.59 323 1120.14 323H1125.14C1125.69 323 1126.14 323.448 1126.14 324C1126.14 324.552 1125.69 325 1125.14 325H1120.14C1119.59 325 1119.14 324.552 1119.14 324Z" fill="#9C9C9C"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M1138.61 421.227L1148.61 427L1138.61 432.774V427.874C1138.46 427.954 1138.3 428 1138.12 428H1133.13C1132.57 428 1132.13 427.552 1132.13 427C1132.13 426.448 1132.57 426 1133.13 426H1138.12C1138.3 426 1138.46 426.046 1138.61 426.126V421.227ZM242.25 428H239.753V426H242.25C242.802 426 243.25 426.448 243.25 427C243.25 427.552 242.802 428 242.25 428ZM249.24 427C249.24 426.448 249.687 426 250.24 426H255.233C255.786 426 256.233 426.448 256.233 427C256.233 427.552 255.786 428 255.233 428H250.24C249.687 428 249.24 427.552 249.24 427ZM262.223 427C262.223 426.448 262.671 426 263.223 426H268.217C268.769 426 269.217 426.448 269.217 427C269.217 427.552 268.769 428 268.217 428H263.223C262.671 428 262.223 427.552 262.223 427ZM275.207 427C275.207 426.448 275.654 426 276.207 426H281.2C281.753 426 282.2 426.448 282.2 427C282.2 427.552 281.753 428 281.2 428H276.207C275.654 428 275.207 427.552 275.207 427ZM288.19 427C288.19 426.448 288.638 426 289.19 426H294.184C294.736 426 295.184 426.448 295.184 427C295.184 427.552 294.736 428 294.184 428H289.19C288.638 428 288.19 427.552 288.19 427ZM301.174 427C301.174 426.448 301.622 426 302.174 426H307.168C307.72 426 308.168 426.448 308.168 427C308.168 427.552 307.72 428 307.168 428H302.174C301.622 428 301.174 427.552 301.174 427ZM314.158 427C314.158 426.448 314.605 426 315.158 426H320.151C320.704 426 321.151 426.448 321.151 427C321.151 427.552 320.704 428 320.151 428H315.158C314.605 428 314.158 427.552 314.158 427ZM327.141 427C327.141 426.448 327.589 426 328.141 426H333.135C333.687 426 334.135 426.448 334.135 427C334.135 427.552 333.687 428 333.135 428H328.141C327.589 428 327.141 427.552 327.141 427ZM340.125 427C340.125 426.448 340.573 426 341.125 426H346.119C346.671 426 347.119 426.448 347.119 427C347.119 427.552 346.671 428 346.119 428H341.125C340.573 428 340.125 427.552 340.125 427ZM353.108 427C353.108 426.448 353.556 426 354.108 426H359.102C359.654 426 360.102 426.448 360.102 427C360.102 427.552 359.654 428 359.102 428H354.108C353.556 428 353.108 427.552 353.108 427ZM366.092 427C366.092 426.448 366.54 426 367.092 426H372.086C372.638 426 373.086 426.448 373.086 427C373.086 427.552 372.638 428 372.086 428H367.092C366.54 428 366.092 427.552 366.092 427ZM379.076 427C379.076 426.448 379.523 426 380.076 426H385.069C385.622 426 386.069 426.448 386.069 427C386.069 427.552 385.622 428 385.069 428H380.076C379.523 428 379.076 427.552 379.076 427ZM392.059 427C392.059 426.448 392.507 426 393.059 426H398.053C398.605 426 399.053 426.448 399.053 427C399.053 427.552 398.605 428 398.053 428H393.059C392.507 428 392.059 427.552 392.059 427ZM405.043 427C405.043 426.448 405.491 426 406.043 426H411.037C411.589 426 412.037 426.448 412.037 427C412.037 427.552 411.589 428 411.037 428H406.043C405.491 428 405.043 427.552 405.043 427ZM418.027 427C418.027 426.448 418.474 426 419.027 426H424.02C424.573 426 425.02 426.448 425.02 427C425.02 427.552 424.573 428 424.02 428H419.027C418.474 428 418.027 427.552 418.027 427ZM431.01 427C431.01 426.448 431.458 426 432.01 426H437.004C437.556 426 438.004 426.448 438.004 427C438.004 427.552 437.556 428 437.004 428H432.01C431.458 428 431.01 427.552 431.01 427ZM443.994 427C443.994 426.448 444.441 426 444.994 426H449.987C450.54 426 450.987 426.448 450.987 427C450.987 427.552 450.54 428 449.987 428H444.994C444.441 428 443.994 427.552 443.994 427ZM456.977 427C456.977 426.448 457.425 426 457.977 426H462.971C463.523 426 463.971 426.448 463.971 427C463.971 427.552 463.523 428 462.971 428H457.977C457.425 428 456.977 427.552 456.977 427ZM469.961 427C469.961 426.448 470.409 426 470.961 426H475.955C476.507 426 476.955 426.448 476.955 427C476.955 427.552 476.507 428 475.955 428H470.961C470.409 428 469.961 427.552 469.961 427ZM482.945 427C482.945 426.448 483.392 426 483.945 426H488.938C489.491 426 489.938 426.448 489.938 427C489.938 427.552 489.491 428 488.938 428H483.945C483.392 428 482.945 427.552 482.945 427ZM495.928 427C495.928 426.448 496.376 426 496.928 426H501.922C502.474 426 502.922 426.448 502.922 427C502.922 427.552 502.474 428 501.922 428H496.928C496.376 428 495.928 427.552 495.928 427ZM508.912 427C508.912 426.448 509.36 426 509.912 426H514.906C515.458 426 515.906 426.448 515.906 427C515.906 427.552 515.458 428 514.906 428H509.912C509.36 428 508.912 427.552 508.912 427ZM521.896 427C521.896 426.448 522.343 426 522.896 426H527.889C528.442 426 528.889 426.448 528.889 427C528.889 427.552 528.442 428 527.889 428H522.896C522.343 428 521.896 427.552 521.896 427ZM534.879 427C534.879 426.448 535.327 426 535.879 426H540.873C541.425 426 541.873 426.448 541.873 427C541.873 427.552 541.425 428 540.873 428H535.879C535.327 428 534.879 427.552 534.879 427ZM547.863 427C547.863 426.448 548.311 426 548.863 426H553.857C554.409 426 554.857 426.448 554.857 427C554.857 427.552 554.409 428 553.857 428H548.863C548.311 428 547.863 427.552 547.863 427ZM560.846 427C560.846 426.448 561.294 426 561.846 426H566.84C567.392 426 567.84 426.448 567.84 427C567.84 427.552 567.392 428 566.84 428H561.846C561.294 428 560.846 427.552 560.846 427ZM573.83 427C573.83 426.448 574.278 426 574.83 426H579.824C580.376 426 580.824 426.448 580.824 427C580.824 427.552 580.376 428 579.824 428H574.83C574.278 428 573.83 427.552 573.83 427ZM586.814 427C586.814 426.448 587.261 426 587.814 426H592.807C593.36 426 593.807 426.448 593.807 427C593.807 427.552 593.36 428 592.807 428H587.814C587.261 428 586.814 427.552 586.814 427ZM599.797 427C599.797 426.448 600.245 426 600.797 426H605.791C606.343 426 606.791 426.448 606.791 427C606.791 427.552 606.343 428 605.791 428H600.797C600.245 428 599.797 427.552 599.797 427ZM612.781 427C612.781 426.448 613.229 426 613.781 426H618.775C619.327 426 619.775 426.448 619.775 427C619.775 427.552 619.327 428 618.775 428H613.781C613.229 428 612.781 427.552 612.781 427ZM625.765 427C625.765 426.448 626.212 426 626.765 426H631.758C632.311 426 632.758 426.448 632.758 427C632.758 427.552 632.311 428 631.758 428H626.765C626.212 428 625.765 427.552 625.765 427ZM638.748 427C638.748 426.448 639.196 426 639.748 426H644.742C645.294 426 645.742 426.448 645.742 427C645.742 427.552 645.294 428 644.742 428H639.748C639.196 428 638.748 427.552 638.748 427ZM651.732 427C651.732 426.448 652.18 426 652.732 426H657.726C658.278 426 658.726 426.448 658.726 427C658.726 427.552 658.278 428 657.726 428H652.732C652.18 428 651.732 427.552 651.732 427ZM664.716 427C664.716 426.448 665.163 426 665.716 426H670.709C671.262 426 671.709 426.448 671.709 427C671.709 427.552 671.262 428 670.709 428H665.716C665.163 428 664.716 427.552 664.716 427ZM677.699 427C677.699 426.448 678.147 426 678.699 426H683.693C684.245 426 684.693 426.448 684.693 427C684.693 427.552 684.245 428 683.693 428H678.699C678.147 428 677.699 427.552 677.699 427ZM690.683 427C690.683 426.448 691.131 426 691.683 426H696.677C697.229 426 697.677 426.448 697.677 427C697.677 427.552 697.229 428 696.677 428H691.683C691.131 428 690.683 427.552 690.683 427ZM703.667 427C703.667 426.448 704.114 426 704.667 426H709.66C710.213 426 710.66 426.448 710.66 427C710.66 427.552 710.213 428 709.66 428H704.667C704.114 428 703.667 427.552 703.667 427ZM716.65 427C716.65 426.448 717.098 426 717.65 426H722.644C723.196 426 723.644 426.448 723.644 427C723.644 427.552 723.196 428 722.644 428H717.65C717.098 428 716.65 427.552 716.65 427ZM729.634 427C729.634 426.448 730.082 426 730.634 426H735.628C736.18 426 736.628 426.448 736.628 427C736.628 427.552 736.18 428 735.628 428H730.634C730.082 428 729.634 427.552 729.634 427ZM742.617 427C742.617 426.448 743.065 426 743.617 426H748.611C749.163 426 749.611 426.448 749.611 427C749.611 427.552 749.163 428 748.611 428H743.617C743.065 428 742.617 427.552 742.617 427ZM755.601 427C755.601 426.448 756.049 426 756.601 426H761.595C762.147 426 762.595 426.448 762.595 427C762.595 427.552 762.147 428 761.595 428H756.601C756.049 428 755.601 427.552 755.601 427ZM768.585 427C768.585 426.448 769.032 426 769.585 426H774.578C775.131 426 775.578 426.448 775.578 427C775.578 427.552 775.131 428 774.578 428H769.585C769.032 428 768.585 427.552 768.585 427ZM781.568 427C781.568 426.448 782.016 426 782.568 426H787.562C788.114 426 788.562 426.448 788.562 427C788.562 427.552 788.114 428 787.562 428H782.568C782.016 428 781.568 427.552 781.568 427ZM794.552 427C794.552 426.448 795 426 795.552 426H800.546C801.098 426 801.546 426.448 801.546 427C801.546 427.552 801.098 428 800.546 428H795.552C795 428 794.552 427.552 794.552 427ZM807.536 427C807.536 426.448 807.983 426 808.536 426H813.529C814.082 426 814.529 426.448 814.529 427C814.529 427.552 814.082 428 813.529 428H808.536C807.983 428 807.536 427.552 807.536 427ZM820.519 427C820.519 426.448 820.967 426 821.519 426H826.513C827.065 426 827.513 426.448 827.513 427C827.513 427.552 827.065 428 826.513 428H821.519C820.967 428 820.519 427.552 820.519 427ZM833.503 427C833.503 426.448 833.951 426 834.503 426H839.497C840.049 426 840.497 426.448 840.497 427C840.497 427.552 840.049 428 839.497 428H834.503C833.951 428 833.503 427.552 833.503 427ZM846.487 427C846.487 426.448 846.934 426 847.487 426H852.48C853.033 426 853.48 426.448 853.48 427C853.48 427.552 853.033 428 852.48 428H847.487C846.934 428 846.487 427.552 846.487 427ZM859.47 427C859.47 426.448 859.918 426 860.47 426H865.464C866.016 426 866.464 426.448 866.464 427C866.464 427.552 866.016 428 865.464 428H860.47C859.918 428 859.47 427.552 859.47 427ZM872.454 427C872.454 426.448 872.902 426 873.454 426H878.448C879 426 879.448 426.448 879.448 427C879.448 427.552 879 428 878.448 428H873.454C872.902 428 872.454 427.552 872.454 427ZM885.438 427C885.438 426.448 885.885 426 886.438 426H891.431C891.983 426 892.431 426.448 892.431 427C892.431 427.552 891.983 428 891.431 428H886.438C885.885 428 885.438 427.552 885.438 427ZM898.421 427C898.421 426.448 898.869 426 899.421 426H904.415C904.967 426 905.415 426.448 905.415 427C905.415 427.552 904.967 428 904.415 428H899.421C898.869 428 898.421 427.552 898.421 427ZM911.405 427C911.405 426.448 911.852 426 912.405 426H917.398C917.951 426 918.398 426.448 918.398 427C918.398 427.552 917.951 428 917.398 428H912.405C911.852 428 911.405 427.552 911.405 427ZM924.388 427C924.388 426.448 924.836 426 925.388 426H930.382C930.934 426 931.382 426.448 931.382 427C931.382 427.552 930.934 428 930.382 428H925.388C924.836 428 924.388 427.552 924.388 427ZM937.372 427C937.372 426.448 937.82 426 938.372 426H943.366C943.918 426 944.366 426.448 944.366 427C944.366 427.552 943.918 428 943.366 428H938.372C937.82 428 937.372 427.552 937.372 427ZM950.356 427C950.356 426.448 950.803 426 951.356 426H956.349C956.902 426 957.349 426.448 957.349 427C957.349 427.552 956.902 428 956.349 428H951.356C950.803 428 950.356 427.552 950.356 427ZM963.339 427C963.339 426.448 963.787 426 964.339 426H969.333C969.885 426 970.333 426.448 970.333 427C970.333 427.552 969.885 428 969.333 428H964.339C963.787 428 963.339 427.552 963.339 427ZM976.323 427C976.323 426.448 976.771 426 977.323 426H982.317C982.869 426 983.317 426.448 983.317 427C983.317 427.552 982.869 428 982.317 428H977.323C976.771 428 976.323 427.552 976.323 427ZM989.307 427C989.307 426.448 989.754 426 990.307 426H995.3C995.853 426 996.3 426.448 996.3 427C996.3 427.552 995.853 428 995.3 428H990.307C989.754 428 989.307 427.552 989.307 427ZM1002.29 427C1002.29 426.448 1002.74 426 1003.29 426H1008.28C1008.84 426 1009.28 426.448 1009.28 427C1009.28 427.552 1008.84 428 1008.28 428H1003.29C1002.74 428 1002.29 427.552 1002.29 427ZM1015.27 427C1015.27 426.448 1015.72 426 1016.27 426H1021.27C1021.82 426 1022.27 426.448 1022.27 427C1022.27 427.552 1021.82 428 1021.27 428H1016.27C1015.72 428 1015.27 427.552 1015.27 427ZM1028.26 427C1028.26 426.448 1028.71 426 1029.26 426H1034.25C1034.8 426 1035.25 426.448 1035.25 427C1035.25 427.552 1034.8 428 1034.25 428H1029.26C1028.71 428 1028.26 427.552 1028.26 427ZM1041.24 427C1041.24 426.448 1041.69 426 1042.24 426H1047.23C1047.79 426 1048.23 426.448 1048.23 427C1048.23 427.552 1047.79 428 1047.23 428H1042.24C1041.69 428 1041.24 427.552 1041.24 427ZM1054.22 427C1054.22 426.448 1054.67 426 1055.22 426H1060.22C1060.77 426 1061.22 426.448 1061.22 427C1061.22 427.552 1060.77 428 1060.22 428H1055.22C1054.67 428 1054.22 427.552 1054.22 427ZM1067.21 427C1067.21 426.448 1067.66 426 1068.21 426H1073.2C1073.75 426 1074.2 426.448 1074.2 427C1074.2 427.552 1073.75 428 1073.2 428H1068.21C1067.66 428 1067.21 427.552 1067.21 427ZM1080.19 427C1080.19 426.448 1080.64 426 1081.19 426H1086.19C1086.74 426 1087.19 426.448 1087.19 427C1087.19 427.552 1086.74 428 1086.19 428H1081.19C1080.64 428 1080.19 427.552 1080.19 427ZM1093.18 427C1093.18 426.448 1093.62 426 1094.18 426H1099.17C1099.72 426 1100.17 426.448 1100.17 427C1100.17 427.552 1099.72 428 1099.17 428H1094.18C1093.62 428 1093.18 427.552 1093.18 427ZM1106.16 427C1106.16 426.448 1106.61 426 1107.16 426H1112.15C1112.71 426 1113.15 426.448 1113.15 427C1113.15 427.552 1112.71 428 1112.15 428H1107.16C1106.61 428 1106.16 427.552 1106.16 427ZM1119.14 427C1119.14 426.448 1119.59 426 1120.14 426H1125.14C1125.69 426 1126.14 426.448 1126.14 427C1126.14 427.552 1125.69 428 1125.14 428H1120.14C1119.59 428 1119.14 427.552 1119.14 427Z" fill="#9C9C9C"/>
+<path d="M102.292 121L107.79 106.684H109.831L115.69 121H113.532L111.862 116.664H105.876L104.304 121H102.292ZM106.423 115.121H111.276L109.782 111.156C109.326 109.952 108.988 108.962 108.767 108.188C108.584 109.105 108.327 110.017 107.995 110.922L106.423 115.121Z" fill="#2D2D2D"/>
+<path d="M116.979 124.975V110.629H118.581V111.977C118.959 111.449 119.385 111.055 119.86 110.795C120.336 110.528 120.912 110.395 121.589 110.395C122.474 110.395 123.255 110.622 123.933 111.078C124.61 111.534 125.121 112.178 125.466 113.012C125.811 113.839 125.983 114.747 125.983 115.736C125.983 116.798 125.791 117.755 125.407 118.607C125.03 119.454 124.476 120.105 123.747 120.561C123.024 121.01 122.263 121.234 121.462 121.234C120.876 121.234 120.349 121.111 119.88 120.863C119.418 120.616 119.037 120.303 118.737 119.926V124.975H116.979ZM118.571 115.873C118.571 117.208 118.841 118.194 119.382 118.832C119.922 119.47 120.576 119.789 121.345 119.789C122.126 119.789 122.793 119.46 123.347 118.803C123.907 118.139 124.186 117.113 124.186 115.727C124.186 114.405 123.913 113.415 123.366 112.758C122.826 112.1 122.178 111.771 121.423 111.771C120.674 111.771 120.01 112.123 119.431 112.826C118.858 113.523 118.571 114.538 118.571 115.873Z" fill="#2D2D2D"/>
+<path d="M128.112 124.975V110.629H129.714V111.977C130.091 111.449 130.518 111.055 130.993 110.795C131.468 110.528 132.045 110.395 132.722 110.395C133.607 110.395 134.388 110.622 135.065 111.078C135.742 111.534 136.254 112.178 136.599 113.012C136.944 113.839 137.116 114.747 137.116 115.736C137.116 116.798 136.924 117.755 136.54 118.607C136.162 119.454 135.609 120.105 134.88 120.561C134.157 121.01 133.395 121.234 132.595 121.234C132.009 121.234 131.481 121.111 131.013 120.863C130.55 120.616 130.17 120.303 129.87 119.926V124.975H128.112ZM129.704 115.873C129.704 117.208 129.974 118.194 130.515 118.832C131.055 119.47 131.709 119.789 132.477 119.789C133.259 119.789 133.926 119.46 134.479 118.803C135.039 118.139 135.319 117.113 135.319 115.727C135.319 114.405 135.046 113.415 134.499 112.758C133.959 112.1 133.311 111.771 132.556 111.771C131.807 111.771 131.143 112.123 130.563 112.826C129.99 113.523 129.704 114.538 129.704 115.873Z" fill="#2D2D2D"/>
+<path d="M139.206 121V106.684H140.964V121H139.206Z" fill="#2D2D2D"/>
+<path d="M143.708 108.705V106.684H145.466V108.705H143.708ZM143.708 121V110.629H145.466V121H143.708Z" fill="#2D2D2D"/>
+<path d="M154.919 117.201L156.647 117.426C156.459 118.617 155.974 119.551 155.192 120.229C154.418 120.899 153.464 121.234 152.331 121.234C150.912 121.234 149.769 120.772 148.903 119.848C148.044 118.917 147.614 117.585 147.614 115.854C147.614 114.734 147.8 113.754 148.171 112.914C148.542 112.074 149.105 111.446 149.86 111.029C150.622 110.606 151.449 110.395 152.341 110.395C153.467 110.395 154.388 110.681 155.104 111.254C155.821 111.82 156.28 112.628 156.481 113.676L154.772 113.939C154.61 113.243 154.32 112.719 153.903 112.367C153.493 112.016 152.995 111.84 152.409 111.84C151.524 111.84 150.804 112.159 150.251 112.797C149.698 113.428 149.421 114.431 149.421 115.805C149.421 117.198 149.688 118.21 150.222 118.842C150.755 119.473 151.452 119.789 152.311 119.789C153.002 119.789 153.578 119.577 154.04 119.154C154.502 118.731 154.795 118.08 154.919 117.201Z" fill="#2D2D2D"/>
+<path d="M164.919 119.721C164.268 120.274 163.64 120.665 163.034 120.893C162.435 121.12 161.791 121.234 161.101 121.234C159.961 121.234 159.086 120.958 158.474 120.404C157.862 119.844 157.556 119.132 157.556 118.266C157.556 117.758 157.67 117.296 157.897 116.879C158.132 116.456 158.435 116.117 158.806 115.863C159.183 115.609 159.606 115.417 160.075 115.287C160.42 115.196 160.941 115.108 161.638 115.023C163.057 114.854 164.102 114.652 164.772 114.418C164.779 114.177 164.782 114.024 164.782 113.959C164.782 113.243 164.616 112.738 164.284 112.445C163.835 112.048 163.168 111.85 162.282 111.85C161.455 111.85 160.843 111.996 160.446 112.289C160.056 112.576 159.766 113.087 159.577 113.822L157.858 113.588C158.015 112.852 158.272 112.26 158.63 111.811C158.988 111.355 159.505 111.007 160.183 110.766C160.86 110.518 161.644 110.395 162.536 110.395C163.421 110.395 164.141 110.499 164.694 110.707C165.248 110.915 165.655 111.179 165.915 111.498C166.175 111.811 166.358 112.208 166.462 112.689C166.52 112.989 166.55 113.529 166.55 114.311V116.654C166.55 118.288 166.586 119.324 166.657 119.76C166.735 120.189 166.885 120.603 167.106 121H165.27C165.088 120.635 164.971 120.209 164.919 119.721ZM164.772 115.795C164.134 116.055 163.177 116.277 161.901 116.459C161.179 116.563 160.668 116.68 160.368 116.811C160.069 116.941 159.838 117.133 159.675 117.387C159.512 117.634 159.431 117.911 159.431 118.217C159.431 118.686 159.606 119.076 159.958 119.389C160.316 119.701 160.837 119.857 161.52 119.857C162.198 119.857 162.8 119.711 163.327 119.418C163.854 119.118 164.242 118.712 164.489 118.197C164.678 117.8 164.772 117.214 164.772 116.439V115.795Z" fill="#2D2D2D"/>
+<path d="M173.122 119.428L173.376 120.98C172.881 121.085 172.438 121.137 172.048 121.137C171.41 121.137 170.915 121.036 170.563 120.834C170.212 120.632 169.964 120.368 169.821 120.043C169.678 119.711 169.606 119.018 169.606 117.963V111.996H168.317V110.629H169.606V108.061L171.354 107.006V110.629H173.122V111.996H171.354V118.061C171.354 118.562 171.384 118.884 171.442 119.027C171.507 119.171 171.608 119.285 171.745 119.369C171.888 119.454 172.09 119.496 172.351 119.496C172.546 119.496 172.803 119.473 173.122 119.428Z" fill="#2D2D2D"/>
+<path d="M174.86 108.705V106.684H176.618V108.705H174.86ZM174.86 121V110.629H176.618V121H174.86Z" fill="#2D2D2D"/>
+<path d="M178.649 115.814C178.649 113.894 179.183 112.471 180.251 111.547C181.143 110.779 182.23 110.395 183.513 110.395C184.938 110.395 186.104 110.863 187.009 111.801C187.914 112.732 188.366 114.021 188.366 115.668C188.366 117.003 188.164 118.054 187.761 118.822C187.364 119.584 186.781 120.176 186.013 120.6C185.251 121.023 184.418 121.234 183.513 121.234C182.061 121.234 180.886 120.769 179.987 119.838C179.095 118.907 178.649 117.566 178.649 115.814ZM180.456 115.814C180.456 117.143 180.746 118.139 181.325 118.803C181.905 119.46 182.634 119.789 183.513 119.789C184.385 119.789 185.111 119.457 185.69 118.793C186.27 118.129 186.56 117.117 186.56 115.756C186.56 114.473 186.267 113.503 185.681 112.846C185.101 112.182 184.379 111.85 183.513 111.85C182.634 111.85 181.905 112.178 181.325 112.836C180.746 113.493 180.456 114.486 180.456 115.814Z" fill="#2D2D2D"/>
+<path d="M190.436 121V110.629H192.018V112.104C192.78 110.964 193.88 110.395 195.319 110.395C195.944 110.395 196.517 110.508 197.038 110.736C197.565 110.958 197.959 111.251 198.22 111.615C198.48 111.98 198.662 112.413 198.767 112.914C198.832 113.24 198.864 113.809 198.864 114.623V121H197.106V114.691C197.106 113.975 197.038 113.441 196.901 113.09C196.765 112.732 196.52 112.449 196.169 112.24C195.824 112.025 195.417 111.918 194.948 111.918C194.199 111.918 193.552 112.156 193.005 112.631C192.464 113.106 192.194 114.008 192.194 115.336V121H190.436Z" fill="#2D2D2D"/>
+<path d="M1089.56 104V93.8984H1085.78V92.5469H1094.86V93.8984H1091.07V104H1089.56Z" fill="#9C9C9C"/>
+<path d="M1098.68 104V92.5469H1100.2V104H1098.68Z" fill="#9C9C9C"/>
+<path d="M1104.83 104V92.5469H1107.11L1109.82 100.656C1110.07 101.411 1110.25 101.977 1110.37 102.352C1110.5 101.935 1110.7 101.323 1110.98 100.516L1113.72 92.5469H1115.76V104H1114.3V94.4141L1110.97 104H1109.6L1106.29 94.25V104H1104.83Z" fill="#9C9C9C"/>
+<path d="M1120.24 104V92.5469H1128.52V93.8984H1121.75V97.4062H1128.09V98.75H1121.75V102.648H1128.78V104H1120.24Z" fill="#9C9C9C"/>
+<path d="M517.419 172.777C517.419 170.473 518.06 168.766 519.341 167.656C520.411 166.734 521.716 166.273 523.255 166.273C524.966 166.273 526.364 166.836 527.45 167.961C528.536 169.078 529.079 170.625 529.079 172.602C529.079 174.203 528.837 175.465 528.353 176.387C527.876 177.301 527.177 178.012 526.255 178.52C525.341 179.027 524.341 179.281 523.255 179.281C521.513 179.281 520.103 178.723 519.024 177.605C517.954 176.488 517.419 174.879 517.419 172.777ZM519.587 172.777C519.587 174.371 519.935 175.566 520.63 176.363C521.325 177.152 522.2 177.547 523.255 177.547C524.302 177.547 525.173 177.148 525.868 176.352C526.563 175.555 526.911 174.34 526.911 172.707C526.911 171.168 526.56 170.004 525.856 169.215C525.161 168.418 524.294 168.02 523.255 168.02C522.2 168.02 521.325 168.414 520.63 169.203C519.935 169.992 519.587 171.184 519.587 172.777Z" fill="#2D2D2D"/>
+<path d="M531.775 179V161.82H533.885V171.617L538.877 166.555H541.607L536.849 171.172L542.088 179H539.486L535.373 172.637L533.885 174.066V179H531.775Z" fill="#2D2D2D"/>
+<path d="M485.318 279.777C485.318 277.473 485.959 275.766 487.24 274.656C488.31 273.734 489.615 273.273 491.154 273.273C492.865 273.273 494.263 273.836 495.349 274.961C496.435 276.078 496.978 277.625 496.978 279.602C496.978 281.203 496.736 282.465 496.252 283.387C495.775 284.301 495.076 285.012 494.154 285.52C493.24 286.027 492.24 286.281 491.154 286.281C489.412 286.281 488.002 285.723 486.924 284.605C485.853 283.488 485.318 281.879 485.318 279.777ZM487.486 279.777C487.486 281.371 487.834 282.566 488.529 283.363C489.224 284.152 490.099 284.547 491.154 284.547C492.201 284.547 493.072 284.148 493.767 283.352C494.463 282.555 494.81 281.34 494.81 279.707C494.81 278.168 494.459 277.004 493.756 276.215C493.06 275.418 492.193 275.02 491.154 275.02C490.099 275.02 489.224 275.414 488.529 276.203C487.834 276.992 487.486 278.184 487.486 279.777Z" fill="#2D2D2D"/>
+<path d="M499.674 286V268.82H501.784V278.617L506.776 273.555H509.506L504.749 278.172L509.987 286H507.385L503.272 279.637L501.784 281.066V286H499.674Z" fill="#2D2D2D"/>
+<path d="M103.806 225V210.684H106.657L110.046 220.82C110.358 221.764 110.586 222.471 110.729 222.939C110.892 222.419 111.146 221.654 111.491 220.645L114.919 210.684H117.468V225H115.642V213.018L111.481 225H109.772L105.632 212.812V225H103.806Z" fill="#2D2D2D"/>
+<path d="M127.399 221.66L129.216 221.885C128.929 222.946 128.399 223.77 127.624 224.355C126.849 224.941 125.86 225.234 124.655 225.234C123.138 225.234 121.934 224.769 121.042 223.838C120.157 222.9 119.714 221.589 119.714 219.902C119.714 218.158 120.163 216.803 121.061 215.84C121.96 214.876 123.125 214.395 124.558 214.395C125.944 214.395 127.077 214.867 127.956 215.811C128.835 216.755 129.274 218.083 129.274 219.795C129.274 219.899 129.271 220.055 129.265 220.264H121.53C121.595 221.403 121.918 222.275 122.497 222.881C123.076 223.486 123.799 223.789 124.665 223.789C125.31 223.789 125.86 223.62 126.315 223.281C126.771 222.943 127.132 222.402 127.399 221.66ZM121.628 218.818H127.419C127.341 217.946 127.119 217.292 126.755 216.855C126.195 216.178 125.469 215.84 124.577 215.84C123.77 215.84 123.089 216.11 122.536 216.65C121.989 217.191 121.686 217.913 121.628 218.818Z" fill="#2D2D2D"/>
+<path d="M131.433 225V214.629H133.005V216.084C133.33 215.576 133.763 215.169 134.304 214.863C134.844 214.551 135.459 214.395 136.149 214.395C136.918 214.395 137.546 214.554 138.034 214.873C138.529 215.192 138.877 215.638 139.079 216.211C139.899 215 140.967 214.395 142.282 214.395C143.311 214.395 144.102 214.681 144.655 215.254C145.209 215.82 145.485 216.696 145.485 217.881V225H143.737V218.467C143.737 217.764 143.679 217.259 143.561 216.953C143.451 216.641 143.246 216.39 142.946 216.201C142.647 216.012 142.295 215.918 141.892 215.918C141.162 215.918 140.557 216.162 140.075 216.65C139.593 217.132 139.352 217.907 139.352 218.975V225H137.595V218.262C137.595 217.48 137.451 216.895 137.165 216.504C136.879 216.113 136.41 215.918 135.759 215.918C135.264 215.918 134.805 216.048 134.382 216.309C133.965 216.569 133.662 216.95 133.474 217.451C133.285 217.952 133.19 218.675 133.19 219.619V225H131.433Z" fill="#2D2D2D"/>
+<path d="M147.438 219.814C147.438 217.894 147.972 216.471 149.04 215.547C149.932 214.779 151.019 214.395 152.302 214.395C153.727 214.395 154.893 214.863 155.798 215.801C156.703 216.732 157.155 218.021 157.155 219.668C157.155 221.003 156.953 222.054 156.55 222.822C156.153 223.584 155.57 224.176 154.802 224.6C154.04 225.023 153.207 225.234 152.302 225.234C150.85 225.234 149.675 224.769 148.776 223.838C147.884 222.907 147.438 221.566 147.438 219.814ZM149.245 219.814C149.245 221.143 149.535 222.139 150.114 222.803C150.694 223.46 151.423 223.789 152.302 223.789C153.174 223.789 153.9 223.457 154.479 222.793C155.059 222.129 155.349 221.117 155.349 219.756C155.349 218.473 155.056 217.503 154.47 216.846C153.89 216.182 153.168 215.85 152.302 215.85C151.423 215.85 150.694 216.178 150.114 216.836C149.535 217.493 149.245 218.486 149.245 219.814Z" fill="#2D2D2D"/>
+<path d="M159.206 225V214.629H160.788V216.201C161.192 215.465 161.563 214.98 161.901 214.746C162.246 214.512 162.624 214.395 163.034 214.395C163.627 214.395 164.229 214.583 164.841 214.961L164.235 216.592C163.806 216.338 163.376 216.211 162.946 216.211C162.562 216.211 162.217 216.328 161.911 216.562C161.605 216.79 161.387 217.109 161.257 217.52C161.061 218.145 160.964 218.828 160.964 219.57V225H159.206Z" fill="#2D2D2D"/>
+<path d="M165.808 228.994L165.612 227.344C165.996 227.448 166.332 227.5 166.618 227.5C167.009 227.5 167.321 227.435 167.556 227.305C167.79 227.174 167.982 226.992 168.132 226.758C168.242 226.582 168.421 226.146 168.669 225.449C168.701 225.352 168.754 225.208 168.825 225.02L164.89 214.629H166.784L168.942 220.635C169.222 221.396 169.473 222.197 169.694 223.037C169.896 222.23 170.137 221.442 170.417 220.674L172.634 214.629H174.392L170.446 225.176C170.023 226.315 169.694 227.1 169.46 227.529C169.147 228.109 168.789 228.532 168.386 228.799C167.982 229.072 167.5 229.209 166.94 229.209C166.602 229.209 166.224 229.137 165.808 228.994Z" fill="#2D2D2D"/>
+<path d="M184.948 225V212.373H180.231V210.684H191.579V212.373H186.843V225H184.948Z" fill="#2D2D2D"/>
+<path d="M192.575 212.705V210.684H194.333V212.705H192.575ZM192.575 225V214.629H194.333V225H192.575Z" fill="#2D2D2D"/>
+<path d="M204.118 221.66L205.935 221.885C205.648 222.946 205.117 223.77 204.343 224.355C203.568 224.941 202.578 225.234 201.374 225.234C199.857 225.234 198.653 224.769 197.761 223.838C196.875 222.9 196.433 221.589 196.433 219.902C196.433 218.158 196.882 216.803 197.78 215.84C198.679 214.876 199.844 214.395 201.276 214.395C202.663 214.395 203.796 214.867 204.675 215.811C205.554 216.755 205.993 218.083 205.993 219.795C205.993 219.899 205.99 220.055 205.983 220.264H198.249C198.314 221.403 198.636 222.275 199.216 222.881C199.795 223.486 200.518 223.789 201.384 223.789C202.028 223.789 202.578 223.62 203.034 223.281C203.49 222.943 203.851 222.402 204.118 221.66ZM198.347 218.818H204.138C204.06 217.946 203.838 217.292 203.474 216.855C202.914 216.178 202.188 215.84 201.296 215.84C200.489 215.84 199.808 216.11 199.255 216.65C198.708 217.191 198.405 217.913 198.347 218.818Z" fill="#2D2D2D"/>
+<path d="M208.132 225V214.629H209.714V216.201C210.117 215.465 210.489 214.98 210.827 214.746C211.172 214.512 211.55 214.395 211.96 214.395C212.552 214.395 213.155 214.583 213.767 214.961L213.161 216.592C212.731 216.338 212.302 216.211 211.872 216.211C211.488 216.211 211.143 216.328 210.837 216.562C210.531 216.79 210.313 217.109 210.183 217.52C209.987 218.145 209.89 218.828 209.89 219.57V225H208.132Z" fill="#2D2D2D"/>
+<path d="M106.364 327L102.565 312.684H104.509L106.686 322.068C106.921 323.051 107.123 324.028 107.292 324.998C107.657 323.468 107.871 322.586 107.936 322.352L110.661 312.684H112.946L114.997 319.93C115.511 321.727 115.882 323.416 116.11 324.998C116.293 324.093 116.53 323.055 116.823 321.883L119.069 312.684H120.974L117.048 327H115.222L112.204 316.092C111.95 315.18 111.8 314.62 111.755 314.412C111.605 315.07 111.465 315.63 111.335 316.092L108.298 327H106.364Z" fill="#2D2D2D"/>
+<path d="M120.436 327L125.935 312.684H127.976L133.835 327H131.677L130.007 322.664H124.02L122.448 327H120.436ZM124.567 321.121H129.421L127.927 317.156C127.471 315.952 127.132 314.962 126.911 314.188C126.729 315.105 126.472 316.017 126.14 316.922L124.567 321.121Z" fill="#2D2D2D"/>
+<path d="M135.27 327V312.684H137.165V325.311H144.216V327H135.27Z" fill="#2D2D2D"/>
+<path d="M103.864 429V414.684H108.796C109.909 414.684 110.759 414.752 111.345 414.889C112.165 415.077 112.865 415.419 113.444 415.914C114.199 416.552 114.763 417.369 115.134 418.365C115.511 419.355 115.7 420.488 115.7 421.764C115.7 422.851 115.573 423.814 115.319 424.654C115.065 425.494 114.74 426.191 114.343 426.744C113.946 427.291 113.509 427.724 113.034 428.043C112.565 428.355 111.996 428.593 111.325 428.756C110.661 428.919 109.896 429 109.03 429H103.864ZM105.759 427.311H108.815C109.759 427.311 110.498 427.223 111.032 427.047C111.573 426.871 112.002 426.624 112.321 426.305C112.77 425.855 113.119 425.253 113.366 424.498C113.62 423.736 113.747 422.815 113.747 421.734C113.747 420.237 113.5 419.088 113.005 418.287C112.517 417.48 111.921 416.939 111.218 416.666C110.71 416.471 109.893 416.373 108.767 416.373H105.759V427.311Z" fill="#2D2D2D"/>
+<path d="M118.102 416.705V414.684H119.86V416.705H118.102ZM118.102 429V418.629H119.86V429H118.102Z" fill="#2D2D2D"/>
+<path d="M121.843 425.904L123.581 425.631C123.679 426.327 123.949 426.861 124.392 427.232C124.841 427.604 125.466 427.789 126.267 427.789C127.074 427.789 127.673 427.626 128.063 427.301C128.454 426.969 128.649 426.581 128.649 426.139C128.649 425.742 128.477 425.429 128.132 425.201C127.891 425.045 127.292 424.846 126.335 424.605C125.046 424.28 124.151 424 123.649 423.766C123.155 423.525 122.777 423.196 122.517 422.779C122.263 422.356 122.136 421.891 122.136 421.383C122.136 420.921 122.24 420.494 122.448 420.104C122.663 419.706 122.953 419.378 123.317 419.117C123.591 418.915 123.962 418.746 124.431 418.609C124.906 418.466 125.414 418.395 125.954 418.395C126.768 418.395 127.481 418.512 128.093 418.746C128.711 418.98 129.167 419.299 129.46 419.703C129.753 420.1 129.955 420.634 130.065 421.305L128.347 421.539C128.268 421.005 128.041 420.589 127.663 420.289C127.292 419.99 126.765 419.84 126.081 419.84C125.274 419.84 124.698 419.973 124.352 420.24C124.007 420.507 123.835 420.82 123.835 421.178C123.835 421.406 123.907 421.611 124.05 421.793C124.193 421.982 124.418 422.138 124.724 422.262C124.899 422.327 125.417 422.477 126.276 422.711C127.52 423.043 128.386 423.316 128.874 423.531C129.369 423.74 129.756 424.046 130.036 424.449C130.316 424.853 130.456 425.354 130.456 425.953C130.456 426.539 130.283 427.092 129.938 427.613C129.6 428.128 129.108 428.528 128.464 428.814C127.819 429.094 127.09 429.234 126.276 429.234C124.929 429.234 123.9 428.954 123.19 428.395C122.487 427.835 122.038 427.005 121.843 425.904Z" fill="#2D2D2D"/>
+<path d="M132.556 429V414.684H134.313V422.848L138.474 418.629H140.749L136.784 422.477L141.149 429H138.981L135.554 423.697L134.313 424.889V429H132.556Z" fill="#2D2D2D"/>
+<path d="M151.608 429V416.373H146.892V414.684H158.239V416.373H153.503V429H151.608Z" fill="#2D2D2D"/>
+<path d="M159.235 416.705V414.684H160.993V416.705H159.235ZM159.235 429V418.629H160.993V429H159.235Z" fill="#2D2D2D"/>
+<path d="M170.778 425.66L172.595 425.885C172.308 426.946 171.778 427.77 171.003 428.355C170.228 428.941 169.239 429.234 168.034 429.234C166.517 429.234 165.313 428.769 164.421 427.838C163.535 426.9 163.093 425.589 163.093 423.902C163.093 422.158 163.542 420.803 164.44 419.84C165.339 418.876 166.504 418.395 167.936 418.395C169.323 418.395 170.456 418.867 171.335 419.811C172.214 420.755 172.653 422.083 172.653 423.795C172.653 423.899 172.65 424.055 172.643 424.264H164.909C164.974 425.403 165.296 426.275 165.876 426.881C166.455 427.486 167.178 427.789 168.044 427.789C168.688 427.789 169.239 427.62 169.694 427.281C170.15 426.943 170.511 426.402 170.778 425.66ZM165.007 422.818H170.798C170.72 421.946 170.498 421.292 170.134 420.855C169.574 420.178 168.848 419.84 167.956 419.84C167.149 419.84 166.468 420.11 165.915 420.65C165.368 421.191 165.065 421.913 165.007 422.818Z" fill="#2D2D2D"/>
+<path d="M174.792 429V418.629H176.374V420.201C176.778 419.465 177.149 418.98 177.487 418.746C177.832 418.512 178.21 418.395 178.62 418.395C179.213 418.395 179.815 418.583 180.427 418.961L179.821 420.592C179.392 420.338 178.962 420.211 178.532 420.211C178.148 420.211 177.803 420.328 177.497 420.562C177.191 420.79 176.973 421.109 176.843 421.52C176.647 422.145 176.55 422.828 176.55 423.57V429H174.792Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M905.472 328.072C905.984 327.866 906.567 328.115 906.772 328.628L923.93 371.387L926.518 365.331C926.735 364.823 927.322 364.587 927.83 364.804C928.338 365.021 928.574 365.609 928.357 366.117L924.82 374.393C924.603 374.901 924.016 375.137 923.508 374.92L915.232 371.383C914.724 371.166 914.488 370.579 914.705 370.071C914.922 369.563 915.51 369.327 916.018 369.544L922.074 372.132L904.916 329.372C904.71 328.86 904.959 328.278 905.472 328.072Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M1068.96 328.08C1069.47 327.863 1070.06 328.099 1070.28 328.607L1073.81 336.885C1074.03 337.393 1073.79 337.98 1073.28 338.197C1072.78 338.414 1072.19 338.178 1071.97 337.67L1069.39 331.613L1051.81 375.373C1051.66 375.752 1051.29 376 1050.88 376H928.917C928.364 376 927.917 375.552 927.917 375C927.917 374.448 928.364 374 928.917 374H1050.2L1067.53 330.868L1061.47 333.453C1060.96 333.67 1060.38 333.434 1060.16 332.926C1059.94 332.418 1060.18 331.831 1060.69 331.614L1068.96 328.08Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M736.185 448.058L726.351 437.046L717.172 448.058H634.277C617.708 448.058 604.277 461.49 604.277 478.058V497.256C604.277 513.824 617.709 527.256 634.277 527.256H820.45C837.019 527.256 850.45 513.824 850.45 497.256V478.058C850.45 461.49 837.019 448.058 820.45 448.058H736.185Z" fill="#E6E6E6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M334.035 57.3831C323.405 57.3831 314.788 66 314.788 76.6296C314.788 87.2591 323.405 95.8761 334.035 95.8761H412.049L424.329 109.627L435.791 95.8761H511.768C522.397 95.8761 531.014 87.2591 531.014 76.6296C531.014 66 522.397 57.3831 511.768 57.3831H334.035Z" fill="#E6E6E6"/>
+<path d="M1000.37 390.989L990.717 380.185L981.711 390.989H916.948C900.327 390.989 886.853 404.421 886.853 420.989V478.607C886.853 495.175 900.327 508.607 916.948 508.607H1137.41C1154.03 508.607 1167.51 495.175 1167.51 478.607V420.989C1167.51 404.421 1154.03 390.989 1137.41 390.989H1000.37Z" fill="#E6E6E6"/>
+<path d="M913.784 431.189L919.282 416.873H921.323L927.183 431.189H925.025L923.355 426.853H917.368L915.796 431.189H913.784ZM917.915 425.31H922.769L921.275 421.345C920.819 420.141 920.48 419.151 920.259 418.377C920.077 419.294 919.819 420.206 919.487 421.111L917.915 425.31Z" fill="#2D2D2D"/>
+<path d="M935.65 431.189L931.851 416.873H933.794L935.972 426.257C936.206 427.24 936.408 428.217 936.577 429.187C936.942 427.657 937.157 426.775 937.222 426.541L939.946 416.873H942.232L944.282 424.119C944.797 425.916 945.168 427.605 945.396 429.187C945.578 428.282 945.816 427.244 946.109 426.072L948.355 416.873H950.259L946.333 431.189H944.507L941.489 420.281C941.235 419.369 941.086 418.809 941.04 418.601C940.89 419.259 940.75 419.819 940.62 420.281L937.583 431.189H935.65Z" fill="#2D2D2D"/>
+<path d="M949.722 431.189L955.22 416.873H957.261L963.12 431.189H960.962L959.292 426.853H953.306L951.734 431.189H949.722ZM953.853 425.31H958.706L957.212 421.345C956.756 420.141 956.418 419.151 956.196 418.377C956.014 419.294 955.757 420.206 955.425 421.111L953.853 425.31Z" fill="#2D2D2D"/>
+<path d="M964.556 431.189V416.873H966.45V429.5H973.501V431.189H964.556Z" fill="#2D2D2D"/>
+<path d="M979.663 428.093L981.401 427.82C981.499 428.516 981.769 429.05 982.212 429.421C982.661 429.793 983.286 429.978 984.087 429.978C984.894 429.978 985.493 429.815 985.884 429.49C986.275 429.158 986.47 428.77 986.47 428.328C986.47 427.931 986.297 427.618 985.952 427.39C985.711 427.234 985.112 427.035 984.155 426.794C982.866 426.469 981.971 426.189 981.47 425.955C980.975 425.714 980.597 425.385 980.337 424.968C980.083 424.545 979.956 424.08 979.956 423.572C979.956 423.11 980.06 422.683 980.269 422.293C980.484 421.895 980.773 421.567 981.138 421.306C981.411 421.104 981.782 420.935 982.251 420.798C982.726 420.655 983.234 420.584 983.775 420.584C984.588 420.584 985.301 420.701 985.913 420.935C986.532 421.169 986.987 421.489 987.28 421.892C987.573 422.289 987.775 422.823 987.886 423.494L986.167 423.728C986.089 423.194 985.861 422.778 985.484 422.478C985.112 422.179 984.585 422.029 983.901 422.029C983.094 422.029 982.518 422.162 982.173 422.429C981.828 422.696 981.655 423.009 981.655 423.367C981.655 423.595 981.727 423.8 981.87 423.982C982.013 424.171 982.238 424.327 982.544 424.451C982.72 424.516 983.237 424.666 984.097 424.9C985.34 425.232 986.206 425.505 986.694 425.72C987.189 425.929 987.577 426.235 987.857 426.638C988.137 427.042 988.276 427.543 988.276 428.142C988.276 428.728 988.104 429.281 987.759 429.802C987.42 430.317 986.929 430.717 986.284 431.003C985.64 431.283 984.911 431.423 984.097 431.423C982.749 431.423 981.72 431.143 981.011 430.584C980.308 430.024 979.859 429.194 979.663 428.093Z" fill="#2D2D2D"/>
+<path d="M997.466 427.849L999.282 428.074C998.996 429.135 998.465 429.959 997.691 430.544C996.916 431.13 995.926 431.423 994.722 431.423C993.205 431.423 992 430.958 991.109 430.027C990.223 429.089 989.78 427.778 989.78 426.091C989.78 424.347 990.23 422.992 991.128 422.029C992.026 421.065 993.192 420.584 994.624 420.584C996.011 420.584 997.144 421.056 998.023 422C998.901 422.944 999.341 424.272 999.341 425.984C999.341 426.088 999.338 426.244 999.331 426.453H991.597C991.662 427.592 991.984 428.464 992.564 429.07C993.143 429.675 993.866 429.978 994.732 429.978C995.376 429.978 995.926 429.809 996.382 429.47C996.838 429.132 997.199 428.591 997.466 427.849ZM991.694 425.007H997.485C997.407 424.135 997.186 423.481 996.821 423.044C996.262 422.367 995.536 422.029 994.644 422.029C993.836 422.029 993.156 422.299 992.603 422.839C992.056 423.38 991.753 424.102 991.694 425.007Z" fill="#2D2D2D"/>
+<path d="M1001.18 432.048L1002.89 432.302C1002.96 432.83 1003.16 433.214 1003.48 433.455C1003.92 433.78 1004.51 433.943 1005.27 433.943C1006.08 433.943 1006.71 433.78 1007.15 433.455C1007.6 433.129 1007.9 432.673 1008.05 432.087C1008.14 431.729 1008.19 430.977 1008.18 429.832C1007.41 430.737 1006.45 431.189 1005.31 431.189C1003.88 431.189 1002.78 430.675 1002 429.646C1001.22 428.617 1000.83 427.384 1000.83 425.945C1000.83 424.955 1001 424.044 1001.36 423.211C1001.72 422.371 1002.24 421.723 1002.92 421.267C1003.6 420.811 1004.4 420.584 1005.32 420.584C1006.54 420.584 1007.55 421.078 1008.34 422.068V420.818H1009.97V429.783C1009.97 431.397 1009.8 432.54 1009.47 433.211C1009.14 433.888 1008.62 434.421 1007.91 434.812C1007.2 435.203 1006.32 435.398 1005.28 435.398C1004.04 435.398 1003.04 435.118 1002.28 434.558C1001.52 434.005 1001.15 433.168 1001.18 432.048ZM1002.63 425.818C1002.63 427.179 1002.9 428.171 1003.44 428.796C1003.98 429.421 1004.66 429.734 1005.47 429.734C1006.28 429.734 1006.96 429.425 1007.51 428.806C1008.05 428.181 1008.33 427.205 1008.33 425.877C1008.33 424.607 1008.04 423.65 1007.48 423.005C1006.92 422.361 1006.24 422.039 1005.44 422.039C1004.66 422.039 1004 422.358 1003.45 422.996C1002.91 423.627 1002.63 424.568 1002.63 425.818Z" fill="#2D2D2D"/>
+<path d="M1012.63 431.189V420.818H1014.2V422.273C1014.53 421.765 1014.96 421.358 1015.5 421.052C1016.04 420.74 1016.66 420.584 1017.35 420.584C1018.12 420.584 1018.75 420.743 1019.23 421.062C1019.73 421.381 1020.08 421.827 1020.28 422.4C1021.1 421.189 1022.17 420.584 1023.48 420.584C1024.51 420.584 1025.3 420.87 1025.85 421.443C1026.41 422.009 1026.68 422.885 1026.68 424.07V431.189H1024.94V424.656C1024.94 423.953 1024.88 423.448 1024.76 423.142C1024.65 422.83 1024.45 422.579 1024.15 422.39C1023.85 422.201 1023.49 422.107 1023.09 422.107C1022.36 422.107 1021.76 422.351 1021.27 422.839C1020.79 423.321 1020.55 424.096 1020.55 425.164V431.189H1018.79V424.451C1018.79 423.669 1018.65 423.084 1018.36 422.693C1018.08 422.302 1017.61 422.107 1016.96 422.107C1016.46 422.107 1016 422.237 1015.58 422.498C1015.16 422.758 1014.86 423.139 1014.67 423.64C1014.48 424.141 1014.39 424.864 1014.39 425.808V431.189H1012.63Z" fill="#2D2D2D"/>
+<path d="M1036.39 427.849L1038.21 428.074C1037.92 429.135 1037.39 429.959 1036.62 430.544C1035.84 431.13 1034.85 431.423 1033.65 431.423C1032.13 431.423 1030.93 430.958 1030.03 430.027C1029.15 429.089 1028.71 427.778 1028.71 426.091C1028.71 424.347 1029.16 422.992 1030.05 422.029C1030.95 421.065 1032.12 420.584 1033.55 420.584C1034.94 420.584 1036.07 421.056 1036.95 422C1037.83 422.944 1038.27 424.272 1038.27 425.984C1038.27 426.088 1038.26 426.244 1038.26 426.453H1030.52C1030.59 427.592 1030.91 428.464 1031.49 429.07C1032.07 429.675 1032.79 429.978 1033.66 429.978C1034.3 429.978 1034.85 429.809 1035.31 429.47C1035.76 429.132 1036.12 428.591 1036.39 427.849ZM1030.62 425.007H1036.41C1036.33 424.135 1036.11 423.481 1035.75 423.044C1035.19 422.367 1034.46 422.029 1033.57 422.029C1032.76 422.029 1032.08 422.299 1031.53 422.839C1030.98 423.38 1030.68 424.102 1030.62 425.007Z" fill="#2D2D2D"/>
+<path d="M1040.42 431.189V420.818H1042.01V422.293C1042.77 421.153 1043.87 420.584 1045.31 420.584C1045.93 420.584 1046.51 420.697 1047.03 420.925C1047.55 421.147 1047.95 421.44 1048.21 421.804C1048.47 422.169 1048.65 422.602 1048.76 423.103C1048.82 423.429 1048.85 423.998 1048.85 424.812V431.189H1047.09V424.88C1047.09 424.164 1047.03 423.63 1046.89 423.279C1046.75 422.921 1046.51 422.638 1046.16 422.429C1045.81 422.214 1045.41 422.107 1044.94 422.107C1044.19 422.107 1043.54 422.345 1042.99 422.82C1042.45 423.295 1042.18 424.197 1042.18 425.525V431.189H1040.42Z" fill="#2D2D2D"/>
+<path d="M1055.4 429.617L1055.65 431.169C1055.15 431.274 1054.71 431.326 1054.32 431.326C1053.68 431.326 1053.19 431.225 1052.84 431.023C1052.49 430.821 1052.24 430.558 1052.09 430.232C1051.95 429.9 1051.88 429.207 1051.88 428.152V422.185H1050.59V420.818H1051.88V418.25L1053.63 417.195V420.818H1055.4V422.185H1053.63V428.25C1053.63 428.751 1053.66 429.073 1053.72 429.216C1053.78 429.36 1053.88 429.474 1054.02 429.558C1054.16 429.643 1054.36 429.685 1054.62 429.685C1054.82 429.685 1055.08 429.662 1055.4 429.617Z" fill="#2D2D2D"/>
+<path d="M915.22 447.941L914.732 445.216V442.873H916.734V445.216L916.294 447.941H915.22ZM918.452 447.941L917.974 445.216V442.873H919.976V445.216L919.507 447.941H918.452Z" fill="#2D2D2D"/>
+<path d="M925.122 457.189L921.177 446.818H923.032L925.259 453.029C925.5 453.699 925.721 454.396 925.923 455.119C926.079 454.572 926.297 453.914 926.577 453.146L928.882 446.818H930.689L926.763 457.189H925.122Z" fill="#2D2D2D"/>
+<path d="M939.009 455.91C938.358 456.463 937.73 456.854 937.124 457.082C936.525 457.309 935.881 457.423 935.191 457.423C934.051 457.423 933.176 457.147 932.564 456.593C931.952 456.033 931.646 455.321 931.646 454.455C931.646 453.947 931.76 453.485 931.987 453.068C932.222 452.645 932.525 452.306 932.896 452.052C933.273 451.798 933.696 451.606 934.165 451.476C934.51 451.385 935.031 451.297 935.728 451.212C937.147 451.043 938.192 450.841 938.862 450.607C938.869 450.366 938.872 450.213 938.872 450.148C938.872 449.432 938.706 448.927 938.374 448.634C937.925 448.237 937.258 448.039 936.372 448.039C935.545 448.039 934.933 448.185 934.536 448.478C934.146 448.765 933.856 449.276 933.667 450.011L931.948 449.777C932.105 449.041 932.362 448.449 932.72 448C933.078 447.544 933.595 447.196 934.273 446.955C934.95 446.707 935.734 446.584 936.626 446.584C937.512 446.584 938.231 446.688 938.784 446.896C939.338 447.104 939.745 447.368 940.005 447.687C940.265 448 940.448 448.397 940.552 448.878C940.61 449.178 940.64 449.718 940.64 450.5V452.843C940.64 454.477 940.676 455.513 940.747 455.949C940.825 456.378 940.975 456.792 941.196 457.189H939.36C939.178 456.824 939.061 456.398 939.009 455.91ZM938.862 451.984C938.224 452.244 937.267 452.466 935.991 452.648C935.269 452.752 934.758 452.869 934.458 453C934.159 453.13 933.928 453.322 933.765 453.576C933.602 453.823 933.521 454.1 933.521 454.406C933.521 454.875 933.696 455.265 934.048 455.578C934.406 455.89 934.927 456.046 935.61 456.046C936.288 456.046 936.89 455.9 937.417 455.607C937.944 455.308 938.332 454.901 938.579 454.386C938.768 453.989 938.862 453.403 938.862 452.628V451.984Z" fill="#2D2D2D"/>
+<path d="M943.335 457.189V442.873H945.093V457.189H943.335Z" fill="#2D2D2D"/>
+<path d="M954.624 457.189V455.666C953.817 456.837 952.72 457.423 951.333 457.423C950.721 457.423 950.148 457.306 949.614 457.072C949.087 456.837 948.693 456.544 948.433 456.193C948.179 455.835 948 455.399 947.896 454.884C947.824 454.539 947.788 453.992 947.788 453.244V446.818H949.546V452.57C949.546 453.488 949.582 454.106 949.653 454.425C949.764 454.888 949.998 455.252 950.357 455.519C950.715 455.78 951.157 455.91 951.685 455.91C952.212 455.91 952.707 455.776 953.169 455.509C953.631 455.236 953.957 454.868 954.146 454.406C954.341 453.937 954.439 453.26 954.439 452.375V446.818H956.196V457.189H954.624Z" fill="#2D2D2D"/>
+<path d="M966.06 453.849L967.876 454.074C967.59 455.135 967.059 455.959 966.284 456.544C965.51 457.13 964.52 457.423 963.316 457.423C961.799 457.423 960.594 456.958 959.702 456.027C958.817 455.089 958.374 453.778 958.374 452.091C958.374 450.347 958.823 448.992 959.722 448.029C960.62 447.065 961.786 446.584 963.218 446.584C964.605 446.584 965.737 447.056 966.616 448C967.495 448.944 967.935 450.272 967.935 451.984C967.935 452.088 967.931 452.244 967.925 452.453H960.191C960.256 453.592 960.578 454.464 961.157 455.07C961.737 455.675 962.459 455.978 963.325 455.978C963.97 455.978 964.52 455.809 964.976 455.47C965.431 455.132 965.793 454.591 966.06 453.849ZM960.288 451.007H966.079C966.001 450.135 965.78 449.481 965.415 449.044C964.855 448.367 964.129 448.029 963.237 448.029C962.43 448.029 961.75 448.299 961.196 448.839C960.65 449.38 960.347 450.102 960.288 451.007Z" fill="#2D2D2D"/>
+<path d="M984.907 448.771H975.454V447.13H984.907V448.771ZM984.907 453.117H975.454V451.476H984.907V453.117Z" fill="#2D2D2D"/>
+<path d="M991.734 457.189L995.523 451.798L992.017 446.818H994.214L995.806 449.25C996.105 449.712 996.346 450.099 996.528 450.412C996.815 449.982 997.079 449.601 997.319 449.269L999.068 446.818H1001.17L997.583 451.701L1001.44 457.189H999.282L997.153 453.966L996.587 453.097L993.862 457.189H991.734Z" fill="#2D2D2D"/>
+<path d="M1002.99 447.941L1002.51 445.216V442.873H1004.51V445.216L1004.07 447.941H1002.99ZM1006.23 447.941L1005.75 445.216V442.873H1007.75V445.216L1007.28 447.941H1006.23Z" fill="#2D2D2D"/>
+<path d="M1015.59 444.894V442.873H1017.35V444.894H1015.59ZM1015.59 457.189V446.818H1017.35V457.189H1015.59Z" fill="#2D2D2D"/>
+<path d="M1019.33 454.093L1021.07 453.82C1021.17 454.516 1021.44 455.05 1021.88 455.421C1022.33 455.793 1022.95 455.978 1023.76 455.978C1024.56 455.978 1025.16 455.815 1025.55 455.49C1025.94 455.158 1026.14 454.77 1026.14 454.328C1026.14 453.931 1025.97 453.618 1025.62 453.39C1025.38 453.234 1024.78 453.035 1023.82 452.794C1022.53 452.469 1021.64 452.189 1021.14 451.955C1020.64 451.714 1020.27 451.385 1020.01 450.968C1019.75 450.545 1019.62 450.08 1019.62 449.572C1019.62 449.11 1019.73 448.683 1019.94 448.293C1020.15 447.895 1020.44 447.567 1020.81 447.306C1021.08 447.104 1021.45 446.935 1021.92 446.798C1022.39 446.655 1022.9 446.584 1023.44 446.584C1024.26 446.584 1024.97 446.701 1025.58 446.935C1026.2 447.169 1026.66 447.489 1026.95 447.892C1027.24 448.289 1027.44 448.823 1027.55 449.494L1025.84 449.728C1025.76 449.194 1025.53 448.778 1025.15 448.478C1024.78 448.179 1024.25 448.029 1023.57 448.029C1022.76 448.029 1022.19 448.162 1021.84 448.429C1021.5 448.696 1021.32 449.009 1021.32 449.367C1021.32 449.595 1021.39 449.8 1021.54 449.982C1021.68 450.171 1021.91 450.327 1022.21 450.451C1022.39 450.516 1022.91 450.666 1023.76 450.9C1025.01 451.232 1025.87 451.505 1026.36 451.72C1026.86 451.929 1027.24 452.235 1027.52 452.638C1027.8 453.042 1027.94 453.543 1027.94 454.142C1027.94 454.728 1027.77 455.281 1027.43 455.802C1027.09 456.317 1026.6 456.717 1025.95 457.003C1025.31 457.283 1024.58 457.423 1023.76 457.423C1022.42 457.423 1021.39 457.143 1020.68 456.584C1019.98 456.024 1019.53 455.194 1019.33 454.093Z" fill="#2D2D2D"/>
+<path d="M1035.58 457.189V446.818H1037.16V448.39C1037.57 447.655 1037.94 447.169 1038.28 446.935C1038.62 446.701 1039 446.584 1039.41 446.584C1040 446.584 1040.6 446.772 1041.22 447.15L1040.61 448.781C1040.18 448.527 1039.75 448.4 1039.32 448.4C1038.94 448.4 1038.59 448.517 1038.29 448.752C1037.98 448.979 1037.76 449.298 1037.63 449.709C1037.44 450.334 1037.34 451.017 1037.34 451.759V457.189H1035.58Z" fill="#2D2D2D"/>
+<path d="M1049.36 453.849L1051.18 454.074C1050.89 455.135 1050.36 455.959 1049.59 456.544C1048.81 457.13 1047.82 457.423 1046.62 457.423C1045.1 457.423 1043.89 456.958 1043 456.027C1042.12 455.089 1041.67 453.778 1041.67 452.091C1041.67 450.347 1042.12 448.992 1043.02 448.029C1043.92 447.065 1045.09 446.584 1046.52 446.584C1047.91 446.584 1049.04 447.056 1049.92 448C1050.8 448.944 1051.24 450.272 1051.24 451.984C1051.24 452.088 1051.23 452.244 1051.23 452.453H1043.49C1043.56 453.592 1043.88 454.464 1044.46 455.07C1045.04 455.675 1045.76 455.978 1046.63 455.978C1047.27 455.978 1047.82 455.809 1048.28 455.47C1048.73 455.132 1049.09 454.591 1049.36 453.849ZM1043.59 451.007H1049.38C1049.3 450.135 1049.08 449.481 1048.72 449.044C1048.16 448.367 1047.43 448.029 1046.54 448.029C1045.73 448.029 1045.05 448.299 1044.5 448.839C1043.95 449.38 1043.65 450.102 1043.59 451.007Z" fill="#2D2D2D"/>
+<path d="M1053.39 457.189V446.818H1054.97V448.273C1055.29 447.765 1055.72 447.358 1056.26 447.052C1056.81 446.74 1057.42 446.584 1058.11 446.584C1058.88 446.584 1059.51 446.743 1060 447.062C1060.49 447.381 1060.84 447.827 1061.04 448.4C1061.86 447.189 1062.93 446.584 1064.24 446.584C1065.27 446.584 1066.06 446.87 1066.62 447.443C1067.17 448.009 1067.45 448.885 1067.45 450.07V457.189H1065.7V450.656C1065.7 449.953 1065.64 449.448 1065.52 449.142C1065.41 448.83 1065.21 448.579 1064.91 448.39C1064.61 448.201 1064.26 448.107 1063.85 448.107C1063.12 448.107 1062.52 448.351 1062.04 448.839C1061.55 449.321 1061.31 450.096 1061.31 451.164V457.189H1059.56V450.451C1059.56 449.669 1059.41 449.084 1059.13 448.693C1058.84 448.302 1058.37 448.107 1057.72 448.107C1057.23 448.107 1056.77 448.237 1056.34 448.498C1055.93 448.758 1055.62 449.139 1055.43 449.64C1055.25 450.141 1055.15 450.864 1055.15 451.808V457.189H1053.39Z" fill="#2D2D2D"/>
+<path d="M1069.4 452.003C1069.4 450.083 1069.93 448.66 1071 447.736C1071.89 446.968 1072.98 446.584 1074.26 446.584C1075.69 446.584 1076.85 447.052 1077.76 447.99C1078.66 448.921 1079.12 450.21 1079.12 451.857C1079.12 453.192 1078.91 454.243 1078.51 455.011C1078.11 455.773 1077.53 456.365 1076.76 456.789C1076 457.212 1075.17 457.423 1074.26 457.423C1072.81 457.423 1071.64 456.958 1070.74 456.027C1069.85 455.096 1069.4 453.755 1069.4 452.003ZM1071.21 452.003C1071.21 453.332 1071.5 454.328 1072.08 454.992C1072.65 455.649 1073.38 455.978 1074.26 455.978C1075.14 455.978 1075.86 455.646 1076.44 454.982C1077.02 454.318 1077.31 453.306 1077.31 451.945C1077.31 450.662 1077.02 449.692 1076.43 449.035C1075.85 448.371 1075.13 448.039 1074.26 448.039C1073.38 448.039 1072.65 448.367 1072.08 449.025C1071.5 449.683 1071.21 450.675 1071.21 452.003Z" fill="#2D2D2D"/>
+<path d="M1084.07 457.189L1080.12 446.818H1081.98L1084.2 453.029C1084.45 453.699 1084.67 454.396 1084.87 455.119C1085.02 454.572 1085.24 453.914 1085.52 453.146L1087.83 446.818H1089.63L1085.71 457.189H1084.07Z" fill="#2D2D2D"/>
+<path d="M1098.29 453.849L1100.1 454.074C1099.82 455.135 1099.29 455.959 1098.51 456.544C1097.74 457.13 1096.75 457.423 1095.54 457.423C1094.03 457.423 1092.82 456.958 1091.93 456.027C1091.04 455.089 1090.6 453.778 1090.6 452.091C1090.6 450.347 1091.05 448.992 1091.95 448.029C1092.85 447.065 1094.01 446.584 1095.44 446.584C1096.83 446.584 1097.96 447.056 1098.84 448C1099.72 448.944 1100.16 450.272 1100.16 451.984C1100.16 452.088 1100.16 452.244 1100.15 452.453H1092.42C1092.48 453.592 1092.8 454.464 1093.38 455.07C1093.96 455.675 1094.69 455.978 1095.55 455.978C1096.2 455.978 1096.75 455.809 1097.2 455.47C1097.66 455.132 1098.02 454.591 1098.29 453.849ZM1092.51 451.007H1098.31C1098.23 450.135 1098.01 449.481 1097.64 449.044C1097.08 448.367 1096.36 448.029 1095.46 448.029C1094.66 448.029 1093.98 448.299 1093.42 448.839C1092.88 449.38 1092.57 450.102 1092.51 451.007Z" fill="#2D2D2D"/>
+<path d="M1109.05 457.189V455.88C1108.39 456.909 1107.42 457.423 1106.15 457.423C1105.32 457.423 1104.56 457.196 1103.86 456.74C1103.17 456.284 1102.64 455.649 1102.25 454.836C1101.87 454.015 1101.68 453.074 1101.68 452.013C1101.68 450.978 1101.86 450.041 1102.2 449.201C1102.55 448.354 1103.06 447.707 1103.76 447.257C1104.45 446.808 1105.22 446.584 1106.07 446.584C1106.69 446.584 1107.25 446.717 1107.74 446.984C1108.23 447.244 1108.62 447.586 1108.93 448.009V442.873H1110.68V457.189H1109.05ZM1103.49 452.013C1103.49 453.341 1103.77 454.334 1104.33 454.992C1104.89 455.649 1105.55 455.978 1106.31 455.978C1107.08 455.978 1107.73 455.666 1108.27 455.041C1108.81 454.409 1109.08 453.449 1109.08 452.16C1109.08 450.74 1108.8 449.699 1108.26 449.035C1107.71 448.371 1107.04 448.039 1106.24 448.039C1105.45 448.039 1104.8 448.358 1104.27 448.996C1103.75 449.634 1103.49 450.64 1103.49 452.013Z" fill="#2D2D2D"/>
+<path d="M1113.91 457.189V455.187H1115.91V457.189C1115.91 457.925 1115.78 458.517 1115.52 458.966C1115.26 459.422 1114.85 459.774 1114.28 460.021L1113.79 459.269C1114.17 459.106 1114.44 458.865 1114.61 458.546C1114.79 458.234 1114.89 457.781 1114.91 457.189H1113.91Z" fill="#2D2D2D"/>
+<path d="M921.9 479.39L923.628 479.615C923.439 480.806 922.954 481.74 922.173 482.418C921.398 483.088 920.444 483.423 919.312 483.423C917.892 483.423 916.75 482.961 915.884 482.037C915.025 481.106 914.595 479.774 914.595 478.043C914.595 476.923 914.78 475.943 915.151 475.103C915.523 474.263 916.086 473.635 916.841 473.218C917.603 472.795 918.429 472.584 919.321 472.584C920.448 472.584 921.369 472.87 922.085 473.443C922.801 474.009 923.26 474.817 923.462 475.865L921.753 476.128C921.59 475.432 921.301 474.908 920.884 474.556C920.474 474.205 919.976 474.029 919.39 474.029C918.504 474.029 917.785 474.348 917.232 474.986C916.678 475.617 916.401 476.62 916.401 477.994C916.401 479.387 916.668 480.399 917.202 481.031C917.736 481.662 918.433 481.978 919.292 481.978C919.982 481.978 920.558 481.767 921.021 481.343C921.483 480.92 921.776 480.269 921.9 479.39Z" fill="#2D2D2D"/>
+<path d="M924.478 478.003C924.478 476.083 925.012 474.66 926.079 473.736C926.971 472.968 928.058 472.584 929.341 472.584C930.767 472.584 931.932 473.052 932.837 473.99C933.742 474.921 934.194 476.21 934.194 477.857C934.194 479.192 933.993 480.243 933.589 481.011C933.192 481.773 932.609 482.365 931.841 482.789C931.079 483.212 930.246 483.423 929.341 483.423C927.889 483.423 926.714 482.958 925.816 482.027C924.924 481.096 924.478 479.755 924.478 478.003ZM926.284 478.003C926.284 479.332 926.574 480.328 927.153 480.992C927.733 481.649 928.462 481.978 929.341 481.978C930.213 481.978 930.939 481.646 931.519 480.982C932.098 480.318 932.388 479.306 932.388 477.945C932.388 476.662 932.095 475.692 931.509 475.035C930.929 474.371 930.207 474.039 929.341 474.039C928.462 474.039 927.733 474.367 927.153 475.025C926.574 475.683 926.284 476.675 926.284 478.003Z" fill="#2D2D2D"/>
+<path d="M936.265 483.189V472.818H937.837V474.273C938.163 473.765 938.595 473.358 939.136 473.052C939.676 472.74 940.291 472.584 940.982 472.584C941.75 472.584 942.378 472.743 942.866 473.062C943.361 473.381 943.709 473.827 943.911 474.4C944.732 473.189 945.799 472.584 947.114 472.584C948.143 472.584 948.934 472.87 949.487 473.443C950.041 474.009 950.318 474.885 950.318 476.07V483.189H948.569V476.656C948.569 475.953 948.511 475.448 948.394 475.142C948.283 474.83 948.078 474.579 947.778 474.39C947.479 474.201 947.127 474.107 946.724 474.107C945.995 474.107 945.389 474.351 944.907 474.839C944.426 475.321 944.185 476.096 944.185 477.164V483.189H942.427V476.451C942.427 475.669 942.284 475.084 941.997 474.693C941.711 474.302 941.242 474.107 940.591 474.107C940.096 474.107 939.637 474.237 939.214 474.498C938.797 474.758 938.495 475.139 938.306 475.64C938.117 476.141 938.023 476.864 938.023 477.808V483.189H936.265Z" fill="#2D2D2D"/>
+<path d="M952.925 487.164V472.818H954.526V474.166C954.904 473.638 955.331 473.244 955.806 472.984C956.281 472.717 956.857 472.584 957.534 472.584C958.42 472.584 959.201 472.811 959.878 473.267C960.555 473.723 961.066 474.367 961.411 475.201C961.756 476.028 961.929 476.936 961.929 477.925C961.929 478.987 961.737 479.944 961.353 480.796C960.975 481.643 960.422 482.294 959.693 482.75C958.97 483.199 958.208 483.423 957.407 483.423C956.821 483.423 956.294 483.3 955.825 483.052C955.363 482.805 954.982 482.492 954.683 482.115V487.164H952.925ZM954.517 478.062C954.517 479.397 954.787 480.383 955.327 481.021C955.868 481.659 956.522 481.978 957.29 481.978C958.071 481.978 958.739 481.649 959.292 480.992C959.852 480.328 960.132 479.302 960.132 477.916C960.132 476.594 959.859 475.604 959.312 474.947C958.771 474.289 958.123 473.961 957.368 473.961C956.62 473.961 955.956 474.312 955.376 475.015C954.803 475.712 954.517 476.727 954.517 478.062Z" fill="#2D2D2D"/>
+<path d="M964.038 483.189V472.818H965.62V474.39C966.024 473.655 966.395 473.169 966.734 472.935C967.079 472.701 967.456 472.584 967.866 472.584C968.459 472.584 969.061 472.772 969.673 473.15L969.068 474.781C968.638 474.527 968.208 474.4 967.778 474.4C967.394 474.4 967.049 474.517 966.743 474.752C966.437 474.979 966.219 475.298 966.089 475.709C965.894 476.334 965.796 477.017 965.796 477.759V483.189H964.038Z" fill="#2D2D2D"/>
+<path d="M977.818 479.849L979.634 480.074C979.347 481.135 978.817 481.959 978.042 482.544C977.267 483.13 976.278 483.423 975.073 483.423C973.556 483.423 972.352 482.958 971.46 482.027C970.575 481.089 970.132 479.778 970.132 478.091C970.132 476.347 970.581 474.992 971.48 474.029C972.378 473.065 973.543 472.584 974.976 472.584C976.362 472.584 977.495 473.056 978.374 474C979.253 474.944 979.693 476.272 979.693 477.984C979.693 478.088 979.689 478.244 979.683 478.453H971.948C972.013 479.592 972.336 480.464 972.915 481.07C973.495 481.675 974.217 481.978 975.083 481.978C975.728 481.978 976.278 481.809 976.734 481.47C977.189 481.132 977.551 480.591 977.818 479.849ZM972.046 477.007H977.837C977.759 476.135 977.538 475.481 977.173 475.044C976.613 474.367 975.887 474.029 974.995 474.029C974.188 474.029 973.508 474.299 972.954 474.839C972.407 475.38 972.105 476.102 972.046 477.007Z" fill="#2D2D2D"/>
+<path d="M981.148 480.093L982.886 479.82C982.984 480.516 983.254 481.05 983.696 481.421C984.146 481.793 984.771 481.978 985.571 481.978C986.379 481.978 986.978 481.815 987.368 481.49C987.759 481.158 987.954 480.77 987.954 480.328C987.954 479.931 987.782 479.618 987.437 479.39C987.196 479.234 986.597 479.035 985.64 478.794C984.351 478.469 983.456 478.189 982.954 477.955C982.459 477.714 982.082 477.385 981.821 476.968C981.568 476.545 981.441 476.08 981.441 475.572C981.441 475.11 981.545 474.683 981.753 474.293C981.968 473.895 982.258 473.567 982.622 473.306C982.896 473.104 983.267 472.935 983.735 472.798C984.211 472.655 984.719 472.584 985.259 472.584C986.073 472.584 986.786 472.701 987.398 472.935C988.016 473.169 988.472 473.489 988.765 473.892C989.058 474.289 989.26 474.823 989.37 475.494L987.651 475.728C987.573 475.194 987.345 474.778 986.968 474.478C986.597 474.179 986.069 474.029 985.386 474.029C984.579 474.029 984.002 474.162 983.657 474.429C983.312 474.696 983.14 475.009 983.14 475.367C983.14 475.595 983.211 475.8 983.355 475.982C983.498 476.171 983.722 476.327 984.028 476.451C984.204 476.516 984.722 476.666 985.581 476.9C986.825 477.232 987.691 477.505 988.179 477.72C988.674 477.929 989.061 478.235 989.341 478.638C989.621 479.042 989.761 479.543 989.761 480.142C989.761 480.728 989.588 481.281 989.243 481.802C988.905 482.317 988.413 482.717 987.769 483.003C987.124 483.283 986.395 483.423 985.581 483.423C984.234 483.423 983.205 483.143 982.495 482.584C981.792 482.024 981.343 481.194 981.148 480.093Z" fill="#2D2D2D"/>
+<path d="M991.148 480.093L992.886 479.82C992.984 480.516 993.254 481.05 993.696 481.421C994.146 481.793 994.771 481.978 995.571 481.978C996.379 481.978 996.978 481.815 997.368 481.49C997.759 481.158 997.954 480.77 997.954 480.328C997.954 479.931 997.782 479.618 997.437 479.39C997.196 479.234 996.597 479.035 995.64 478.794C994.351 478.469 993.456 478.189 992.954 477.955C992.459 477.714 992.082 477.385 991.821 476.968C991.568 476.545 991.441 476.08 991.441 475.572C991.441 475.11 991.545 474.683 991.753 474.293C991.968 473.895 992.258 473.567 992.622 473.306C992.896 473.104 993.267 472.935 993.735 472.798C994.211 472.655 994.719 472.584 995.259 472.584C996.073 472.584 996.786 472.701 997.398 472.935C998.016 473.169 998.472 473.489 998.765 473.892C999.058 474.289 999.26 474.823 999.37 475.494L997.651 475.728C997.573 475.194 997.345 474.778 996.968 474.478C996.597 474.179 996.069 474.029 995.386 474.029C994.579 474.029 994.002 474.162 993.657 474.429C993.312 474.696 993.14 475.009 993.14 475.367C993.14 475.595 993.211 475.8 993.355 475.982C993.498 476.171 993.722 476.327 994.028 476.451C994.204 476.516 994.722 476.666 995.581 476.9C996.825 477.232 997.691 477.505 998.179 477.72C998.674 477.929 999.061 478.235 999.341 478.638C999.621 479.042 999.761 479.543 999.761 480.142C999.761 480.728 999.588 481.281 999.243 481.802C998.905 482.317 998.413 482.717 997.769 483.003C997.124 483.283 996.395 483.423 995.581 483.423C994.234 483.423 993.205 483.143 992.495 482.584C991.792 482.024 991.343 481.194 991.148 480.093Z" fill="#2D2D2D"/>
+<path d="M1008.95 479.849L1010.77 480.074C1010.48 481.135 1009.95 481.959 1009.17 482.544C1008.4 483.13 1007.41 483.423 1006.21 483.423C1004.69 483.423 1003.48 482.958 1002.59 482.027C1001.71 481.089 1001.26 479.778 1001.26 478.091C1001.26 476.347 1001.71 474.992 1002.61 474.029C1003.51 473.065 1004.68 472.584 1006.11 472.584C1007.5 472.584 1008.63 473.056 1009.51 474C1010.39 474.944 1010.83 476.272 1010.83 477.984C1010.83 478.088 1010.82 478.244 1010.82 478.453H1003.08C1003.15 479.592 1003.47 480.464 1004.05 481.07C1004.63 481.675 1005.35 481.978 1006.22 481.978C1006.86 481.978 1007.41 481.809 1007.87 481.47C1008.32 481.132 1008.68 480.591 1008.95 479.849ZM1003.18 477.007H1008.97C1008.89 476.135 1008.67 475.481 1008.31 475.044C1007.75 474.367 1007.02 474.029 1006.13 474.029C1005.32 474.029 1004.64 474.299 1004.09 474.839C1003.54 475.38 1003.24 476.102 1003.18 477.007Z" fill="#2D2D2D"/>
+<path d="M1019.71 483.189V481.88C1019.05 482.909 1018.09 483.423 1016.81 483.423C1015.98 483.423 1015.22 483.196 1014.53 482.74C1013.84 482.284 1013.3 481.649 1012.92 480.836C1012.54 480.015 1012.35 479.074 1012.35 478.013C1012.35 476.978 1012.52 476.041 1012.87 475.201C1013.21 474.354 1013.73 473.707 1014.42 473.257C1015.11 472.808 1015.88 472.584 1016.73 472.584C1017.36 472.584 1017.92 472.717 1018.4 472.984C1018.89 473.244 1019.29 473.586 1019.59 474.009V468.873H1021.34V483.189H1019.71ZM1014.16 478.013C1014.16 479.341 1014.44 480.334 1015 480.992C1015.56 481.649 1016.22 481.978 1016.98 481.978C1017.75 481.978 1018.4 481.666 1018.93 481.041C1019.47 480.409 1019.74 479.449 1019.74 478.16C1019.74 476.74 1019.47 475.699 1018.92 475.035C1018.37 474.371 1017.7 474.039 1016.9 474.039C1016.12 474.039 1015.46 474.358 1014.94 474.996C1014.42 475.634 1014.16 476.64 1014.16 478.013Z" fill="#2D2D2D"/>
+<path d="M1024.58 483.189V481.187H1026.58V483.189C1026.58 483.925 1026.45 484.517 1026.19 484.966C1025.93 485.422 1025.51 485.774 1024.95 486.021L1024.46 485.269C1024.83 485.106 1025.1 484.865 1025.28 484.546C1025.45 484.234 1025.55 483.781 1025.57 483.189H1024.58Z" fill="#2D2D2D"/>
+<path d="M1034.59 478.003C1034.59 476.083 1035.13 474.66 1036.2 473.736C1037.09 472.968 1038.18 472.584 1039.46 472.584C1040.88 472.584 1042.05 473.052 1042.95 473.99C1043.86 474.921 1044.31 476.21 1044.31 477.857C1044.31 479.192 1044.11 480.243 1043.71 481.011C1043.31 481.773 1042.73 482.365 1041.96 482.789C1041.2 483.212 1040.36 483.423 1039.46 483.423C1038.01 483.423 1036.83 482.958 1035.93 482.027C1035.04 481.096 1034.59 479.755 1034.59 478.003ZM1036.4 478.003C1036.4 479.332 1036.69 480.328 1037.27 480.992C1037.85 481.649 1038.58 481.978 1039.46 481.978C1040.33 481.978 1041.06 481.646 1041.64 480.982C1042.22 480.318 1042.51 479.306 1042.51 477.945C1042.51 476.662 1042.21 475.692 1041.63 475.035C1041.05 474.371 1040.32 474.039 1039.46 474.039C1038.58 474.039 1037.85 474.367 1037.27 475.025C1036.69 475.683 1036.4 476.675 1036.4 478.003Z" fill="#2D2D2D"/>
+<path d="M1046.36 483.189V472.818H1047.94V474.39C1048.35 473.655 1048.72 473.169 1049.06 472.935C1049.4 472.701 1049.78 472.584 1050.19 472.584C1050.78 472.584 1051.39 472.772 1052 473.15L1051.39 474.781C1050.96 474.527 1050.53 474.4 1050.1 474.4C1049.72 474.4 1049.37 474.517 1049.07 474.752C1048.76 474.979 1048.54 475.298 1048.41 475.709C1048.22 476.334 1048.12 477.017 1048.12 477.759V483.189H1046.36Z" fill="#2D2D2D"/>
+<path d="M1065.38 481.91C1064.73 482.463 1064.1 482.854 1063.49 483.082C1062.89 483.309 1062.25 483.423 1061.56 483.423C1060.42 483.423 1059.54 483.147 1058.93 482.593C1058.32 482.033 1058.01 481.321 1058.01 480.455C1058.01 479.947 1058.13 479.485 1058.35 479.068C1058.59 478.645 1058.89 478.306 1059.26 478.052C1059.64 477.798 1060.06 477.606 1060.53 477.476C1060.88 477.385 1061.4 477.297 1062.09 477.212C1063.51 477.043 1064.56 476.841 1065.23 476.607C1065.24 476.366 1065.24 476.213 1065.24 476.148C1065.24 475.432 1065.07 474.927 1064.74 474.634C1064.29 474.237 1063.62 474.039 1062.74 474.039C1061.91 474.039 1061.3 474.185 1060.9 474.478C1060.51 474.765 1060.22 475.276 1060.03 476.011L1058.32 475.777C1058.47 475.041 1058.73 474.449 1059.09 474C1059.45 473.544 1059.96 473.196 1060.64 472.955C1061.32 472.707 1062.1 472.584 1062.99 472.584C1063.88 472.584 1064.6 472.688 1065.15 472.896C1065.7 473.104 1066.11 473.368 1066.37 473.687C1066.63 474 1066.81 474.397 1066.92 474.878C1066.98 475.178 1067.01 475.718 1067.01 476.5V478.843C1067.01 480.477 1067.04 481.513 1067.11 481.949C1067.19 482.378 1067.34 482.792 1067.56 483.189H1065.73C1065.55 482.824 1065.43 482.398 1065.38 481.91ZM1065.23 477.984C1064.59 478.244 1063.63 478.466 1062.36 478.648C1061.64 478.752 1061.12 478.869 1060.83 479C1060.53 479.13 1060.29 479.322 1060.13 479.576C1059.97 479.823 1059.89 480.1 1059.89 480.406C1059.89 480.875 1060.06 481.265 1060.42 481.578C1060.77 481.89 1061.29 482.046 1061.98 482.046C1062.65 482.046 1063.26 481.9 1063.78 481.607C1064.31 481.308 1064.7 480.901 1064.95 480.386C1065.14 479.989 1065.23 479.403 1065.23 478.628V477.984Z" fill="#2D2D2D"/>
+<path d="M1069.72 483.189V472.818H1071.3V474.39C1071.71 473.655 1072.08 473.169 1072.42 472.935C1072.76 472.701 1073.14 472.584 1073.55 472.584C1074.14 472.584 1074.74 472.772 1075.36 473.15L1074.75 474.781C1074.32 474.527 1073.89 474.4 1073.46 474.4C1073.08 474.4 1072.73 474.517 1072.43 474.752C1072.12 474.979 1071.9 475.298 1071.77 475.709C1071.58 476.334 1071.48 477.017 1071.48 477.759V483.189H1069.72Z" fill="#2D2D2D"/>
+<path d="M1083.17 479.39L1084.9 479.615C1084.71 480.806 1084.22 481.74 1083.44 482.418C1082.67 483.088 1081.71 483.423 1080.58 483.423C1079.16 483.423 1078.02 482.961 1077.15 482.037C1076.29 481.106 1075.86 479.774 1075.86 478.043C1075.86 476.923 1076.05 475.943 1076.42 475.103C1076.79 474.263 1077.36 473.635 1078.11 473.218C1078.87 472.795 1079.7 472.584 1080.59 472.584C1081.72 472.584 1082.64 472.87 1083.35 473.443C1084.07 474.009 1084.53 474.817 1084.73 475.865L1083.02 476.128C1082.86 475.432 1082.57 474.908 1082.15 474.556C1081.74 474.205 1081.25 474.029 1080.66 474.029C1079.77 474.029 1079.05 474.348 1078.5 474.986C1077.95 475.617 1077.67 476.62 1077.67 477.994C1077.67 479.387 1077.94 480.399 1078.47 481.031C1079.01 481.662 1079.7 481.978 1080.56 481.978C1081.25 481.978 1081.83 481.767 1082.29 481.343C1082.75 480.92 1083.05 480.269 1083.17 479.39Z" fill="#2D2D2D"/>
+<path d="M1086.4 483.189V468.873H1088.16V474.009C1088.98 473.059 1090.01 472.584 1091.26 472.584C1092.03 472.584 1092.7 472.737 1093.27 473.043C1093.83 473.342 1094.24 473.759 1094.48 474.293C1094.73 474.826 1094.85 475.601 1094.85 476.617V483.189H1093.09V476.617C1093.09 475.738 1092.9 475.1 1092.51 474.703C1092.14 474.299 1091.6 474.097 1090.9 474.097C1090.38 474.097 1089.89 474.234 1089.43 474.507C1088.97 474.774 1088.65 475.139 1088.45 475.601C1088.26 476.063 1088.16 476.701 1088.16 477.515V483.189H1086.4Z" fill="#2D2D2D"/>
+<path d="M1097.54 470.894V468.873H1099.3V470.894H1097.54ZM1097.54 483.189V472.818H1099.3V483.189H1097.54Z" fill="#2D2D2D"/>
+<path d="M1104.87 483.189L1100.92 472.818H1102.78L1105.01 479.029C1105.25 479.699 1105.47 480.396 1105.67 481.119C1105.83 480.572 1106.04 479.914 1106.32 479.146L1108.63 472.818H1110.43L1106.51 483.189H1104.87Z" fill="#2D2D2D"/>
+<path d="M1119.09 479.849L1120.9 480.074C1120.62 481.135 1120.09 481.959 1119.31 482.544C1118.54 483.13 1117.55 483.423 1116.34 483.423C1114.83 483.423 1113.62 482.958 1112.73 482.027C1111.84 481.089 1111.4 479.778 1111.4 478.091C1111.4 476.347 1111.85 474.992 1112.75 474.029C1113.65 473.065 1114.81 472.584 1116.25 472.584C1117.63 472.584 1118.76 473.056 1119.64 474C1120.52 474.944 1120.96 476.272 1120.96 477.984C1120.96 478.088 1120.96 478.244 1120.95 478.453H1113.22C1113.28 479.592 1113.61 480.464 1114.18 481.07C1114.76 481.675 1115.49 481.978 1116.35 481.978C1117 481.978 1117.55 481.809 1118 481.47C1118.46 481.132 1118.82 480.591 1119.09 479.849ZM1113.32 477.007H1119.11C1119.03 476.135 1118.81 475.481 1118.44 475.044C1117.88 474.367 1117.16 474.029 1116.26 474.029C1115.46 474.029 1114.78 474.299 1114.22 474.839C1113.68 475.38 1113.37 476.102 1113.32 477.007Z" fill="#2D2D2D"/>
+<path d="M1129.85 483.189V481.88C1129.19 482.909 1128.22 483.423 1126.95 483.423C1126.12 483.423 1125.36 483.196 1124.66 482.74C1123.97 482.284 1123.44 481.649 1123.05 480.836C1122.67 480.015 1122.49 479.074 1122.49 478.013C1122.49 476.978 1122.66 476.041 1123 475.201C1123.35 474.354 1123.87 473.707 1124.56 473.257C1125.25 472.808 1126.02 472.584 1126.87 472.584C1127.5 472.584 1128.05 472.717 1128.54 472.984C1129.03 473.244 1129.43 473.586 1129.73 474.009V468.873H1131.48V483.189H1129.85ZM1124.29 478.013C1124.29 479.341 1124.57 480.334 1125.13 480.992C1125.69 481.649 1126.35 481.978 1127.11 481.978C1127.88 481.978 1128.53 481.666 1129.07 481.041C1129.61 480.409 1129.88 479.449 1129.88 478.16C1129.88 476.74 1129.6 475.699 1129.06 475.035C1128.51 474.371 1127.84 474.039 1127.04 474.039C1126.26 474.039 1125.6 474.358 1125.07 474.996C1124.55 475.634 1124.29 476.64 1124.29 478.013Z" fill="#2D2D2D"/>
+<path d="M637.649 473.454L637.132 470.788V468.366H640.12V470.788L639.671 473.454H637.649ZM642.054 473.454L641.536 470.788V468.366H644.524V470.788L644.075 473.454H642.054Z" fill="#2D2D2D"/>
+<path d="M649.817 482.683L645.638 472.312H648.519L650.472 477.604L651.038 479.372C651.188 478.923 651.282 478.627 651.321 478.483C651.412 478.19 651.51 477.897 651.614 477.604L653.587 472.312H656.409L652.288 482.683H649.817Z" fill="#2D2D2D"/>
+<path d="M660.149 475.476L657.659 475.026C657.939 474.024 658.421 473.282 659.104 472.8C659.788 472.318 660.804 472.077 662.151 472.077C663.375 472.077 664.287 472.224 664.886 472.517C665.485 472.803 665.905 473.171 666.146 473.62C666.393 474.063 666.517 474.88 666.517 476.071L666.487 479.274C666.487 480.186 666.53 480.86 666.614 481.296C666.705 481.726 666.871 482.188 667.112 482.683H664.397C664.326 482.5 664.238 482.23 664.134 481.872C664.088 481.709 664.056 481.602 664.036 481.55C663.567 482.006 663.066 482.347 662.532 482.575C661.998 482.803 661.429 482.917 660.823 482.917C659.756 482.917 658.912 482.627 658.294 482.048C657.682 481.468 657.376 480.736 657.376 479.851C657.376 479.265 657.516 478.744 657.796 478.288C658.076 477.826 658.466 477.474 658.968 477.233C659.476 476.986 660.205 476.771 661.155 476.589C662.438 476.348 663.326 476.123 663.821 475.915V475.642C663.821 475.114 663.691 474.74 663.431 474.519C663.17 474.291 662.679 474.177 661.956 474.177C661.468 474.177 661.087 474.274 660.813 474.47C660.54 474.659 660.319 474.994 660.149 475.476ZM663.821 477.702C663.47 477.819 662.913 477.959 662.151 478.122C661.39 478.285 660.892 478.444 660.657 478.601C660.299 478.854 660.12 479.177 660.12 479.567C660.12 479.951 660.263 480.284 660.55 480.563C660.836 480.843 661.201 480.983 661.644 480.983C662.138 480.983 662.61 480.821 663.06 480.495C663.392 480.248 663.61 479.945 663.714 479.587C663.785 479.353 663.821 478.907 663.821 478.249V477.702Z" fill="#2D2D2D"/>
+<path d="M669.231 482.683V468.366H671.976V482.683H669.231Z" fill="#2D2D2D"/>
+<path d="M681.624 482.683V481.13C681.246 481.683 680.748 482.119 680.13 482.438C679.518 482.757 678.87 482.917 678.187 482.917C677.49 482.917 676.865 482.764 676.312 482.458C675.758 482.152 675.358 481.722 675.11 481.169C674.863 480.616 674.739 479.851 674.739 478.874V472.312H677.483V477.077C677.483 478.535 677.532 479.431 677.63 479.763C677.734 480.088 677.92 480.349 678.187 480.544C678.453 480.733 678.792 480.827 679.202 480.827C679.671 480.827 680.091 480.7 680.462 480.446C680.833 480.186 681.087 479.867 681.224 479.489C681.36 479.105 681.429 478.171 681.429 476.687V472.312H684.173V482.683H681.624Z" fill="#2D2D2D"/>
+<path d="M693.03 479.382L695.765 479.841C695.413 480.843 694.856 481.608 694.095 482.136C693.34 482.657 692.392 482.917 691.253 482.917C689.45 482.917 688.115 482.328 687.249 481.149C686.565 480.205 686.224 479.014 686.224 477.575C686.224 475.856 686.673 474.512 687.571 473.542C688.47 472.565 689.606 472.077 690.979 472.077C692.522 472.077 693.74 472.588 694.632 473.61C695.524 474.626 695.95 476.185 695.911 478.288H689.036C689.056 479.102 689.277 479.737 689.7 480.192C690.123 480.642 690.651 480.866 691.282 480.866C691.712 480.866 692.073 480.749 692.366 480.515C692.659 480.28 692.881 479.903 693.03 479.382ZM693.187 476.608C693.167 475.814 692.962 475.212 692.571 474.802C692.181 474.385 691.705 474.177 691.146 474.177C690.547 474.177 690.052 474.395 689.661 474.831C689.271 475.267 689.078 475.86 689.085 476.608H693.187Z" fill="#2D2D2D"/>
+<path d="M703.118 474.714V472.194H713.128V474.714H703.118ZM703.118 479.05V476.521H713.128V479.05H703.118Z" fill="#2D2D2D"/>
+<path d="M719.651 482.683L723.392 477.341L719.808 472.312H723.157L724.993 475.163L726.927 472.312H730.149L726.634 477.224L730.472 482.683H727.103L724.993 479.47L722.864 482.683H719.651Z" fill="#2D2D2D"/>
+<path d="M732.278 473.454L731.761 470.788V468.366H734.749V470.788L734.3 473.454H732.278ZM736.683 473.454L736.165 470.788V468.366H739.153V470.788L738.704 473.454H736.683Z" fill="#2D2D2D"/>
+<path d="M647.796 505.663L649.69 506.142C649.293 507.698 648.577 508.886 647.542 509.706C646.513 510.52 645.254 510.927 643.763 510.927C642.22 510.927 640.963 510.614 639.993 509.989C639.03 509.358 638.294 508.446 637.786 507.255C637.285 506.063 637.034 504.784 637.034 503.417C637.034 501.926 637.317 500.627 637.884 499.521C638.457 498.407 639.267 497.564 640.315 496.991C641.37 496.412 642.529 496.122 643.792 496.122C645.224 496.122 646.429 496.487 647.405 497.216C648.382 497.945 649.062 498.97 649.446 500.292L647.581 500.731C647.249 499.69 646.767 498.931 646.136 498.456C645.504 497.981 644.71 497.743 643.753 497.743C642.653 497.743 641.731 498.007 640.989 498.534C640.254 499.062 639.736 499.771 639.437 500.663C639.137 501.549 638.987 502.463 638.987 503.407C638.987 504.625 639.163 505.689 639.515 506.601C639.873 507.506 640.426 508.183 641.175 508.632C641.924 509.081 642.734 509.306 643.606 509.306C644.668 509.306 645.566 509 646.302 508.388C647.037 507.776 647.535 506.868 647.796 505.663Z" fill="#2D2D2D"/>
+<path d="M651.81 510.683V496.366H653.567V501.503C654.388 500.552 655.423 500.077 656.673 500.077C657.441 500.077 658.108 500.23 658.675 500.536C659.241 500.836 659.645 501.252 659.886 501.786C660.133 502.32 660.257 503.095 660.257 504.11V510.683H658.499V504.11C658.499 503.231 658.307 502.593 657.923 502.196C657.545 501.793 657.008 501.591 656.312 501.591C655.791 501.591 655.299 501.728 654.837 502.001C654.381 502.268 654.056 502.632 653.86 503.095C653.665 503.557 653.567 504.195 653.567 505.009V510.683H651.81Z" fill="#2D2D2D"/>
+<path d="M670.042 507.343L671.858 507.567C671.572 508.629 671.041 509.452 670.267 510.038C669.492 510.624 668.502 510.917 667.298 510.917C665.781 510.917 664.576 510.451 663.685 509.521C662.799 508.583 662.356 507.271 662.356 505.585C662.356 503.84 662.806 502.486 663.704 501.522C664.603 500.559 665.768 500.077 667.2 500.077C668.587 500.077 669.72 500.549 670.599 501.493C671.478 502.437 671.917 503.765 671.917 505.478C671.917 505.582 671.914 505.738 671.907 505.946H664.173C664.238 507.086 664.56 507.958 665.14 508.563C665.719 509.169 666.442 509.472 667.308 509.472C667.952 509.472 668.502 509.302 668.958 508.964C669.414 508.625 669.775 508.085 670.042 507.343ZM664.271 504.501H670.062C669.983 503.629 669.762 502.974 669.397 502.538C668.838 501.861 668.112 501.522 667.22 501.522C666.412 501.522 665.732 501.793 665.179 502.333C664.632 502.873 664.329 503.596 664.271 504.501Z" fill="#2D2D2D"/>
+<path d="M680.843 506.884L682.571 507.108C682.382 508.3 681.897 509.234 681.116 509.911C680.341 510.582 679.388 510.917 678.255 510.917C676.836 510.917 675.693 510.455 674.827 509.53C673.968 508.599 673.538 507.268 673.538 505.536C673.538 504.416 673.724 503.437 674.095 502.597C674.466 501.757 675.029 501.129 675.784 500.712C676.546 500.289 677.373 500.077 678.265 500.077C679.391 500.077 680.312 500.364 681.028 500.937C681.744 501.503 682.203 502.31 682.405 503.358L680.696 503.622C680.534 502.925 680.244 502.401 679.827 502.05C679.417 501.698 678.919 501.522 678.333 501.522C677.448 501.522 676.728 501.841 676.175 502.479C675.621 503.111 675.345 504.114 675.345 505.487C675.345 506.881 675.612 507.893 676.146 508.524C676.679 509.156 677.376 509.472 678.235 509.472C678.925 509.472 679.502 509.26 679.964 508.837C680.426 508.414 680.719 507.763 680.843 506.884Z" fill="#2D2D2D"/>
+<path d="M684.085 510.683V496.366H685.843V504.53L690.003 500.312H692.278L688.313 504.159L692.679 510.683H690.511L687.083 505.38L685.843 506.571V510.683H684.085Z" fill="#2D2D2D"/>
+<path d="M694.075 514.657V500.312H695.677V501.659C696.054 501.132 696.481 500.738 696.956 500.478C697.431 500.211 698.007 500.077 698.685 500.077C699.57 500.077 700.351 500.305 701.028 500.761C701.705 501.216 702.216 501.861 702.562 502.694C702.907 503.521 703.079 504.429 703.079 505.419C703.079 506.48 702.887 507.437 702.503 508.29C702.125 509.136 701.572 509.787 700.843 510.243C700.12 510.692 699.358 510.917 698.558 510.917C697.972 510.917 697.444 510.793 696.976 510.546C696.513 510.299 696.132 509.986 695.833 509.608V514.657H694.075ZM695.667 505.556C695.667 506.89 695.937 507.877 696.478 508.515C697.018 509.153 697.672 509.472 698.44 509.472C699.222 509.472 699.889 509.143 700.442 508.485C701.002 507.821 701.282 506.796 701.282 505.409C701.282 504.088 701.009 503.098 700.462 502.44C699.922 501.783 699.274 501.454 698.519 501.454C697.77 501.454 697.106 501.806 696.526 502.509C695.953 503.205 695.667 504.221 695.667 505.556Z" fill="#2D2D2D"/>
+<path d="M704.554 505.497C704.554 503.576 705.088 502.154 706.155 501.229C707.047 500.461 708.134 500.077 709.417 500.077C710.843 500.077 712.008 500.546 712.913 501.483C713.818 502.414 714.271 503.703 714.271 505.351C714.271 506.685 714.069 507.737 713.665 508.505C713.268 509.267 712.685 509.859 711.917 510.282C711.155 510.705 710.322 510.917 709.417 510.917C707.965 510.917 706.79 510.451 705.892 509.521C705 508.59 704.554 507.248 704.554 505.497ZM706.36 505.497C706.36 506.825 706.65 507.821 707.229 508.485C707.809 509.143 708.538 509.472 709.417 509.472C710.289 509.472 711.015 509.14 711.595 508.476C712.174 507.812 712.464 506.799 712.464 505.438C712.464 504.156 712.171 503.186 711.585 502.528C711.006 501.864 710.283 501.532 709.417 501.532C708.538 501.532 707.809 501.861 707.229 502.519C706.65 503.176 706.36 504.169 706.36 505.497Z" fill="#2D2D2D"/>
+<path d="M716.351 498.388V496.366H718.108V498.388H716.351ZM716.351 510.683V500.312H718.108V510.683H716.351Z" fill="#2D2D2D"/>
+<path d="M720.794 510.683V500.312H722.376V501.786C723.138 500.647 724.238 500.077 725.677 500.077C726.302 500.077 726.875 500.191 727.396 500.419C727.923 500.64 728.317 500.933 728.577 501.298C728.838 501.662 729.02 502.095 729.124 502.597C729.189 502.922 729.222 503.492 729.222 504.306V510.683H727.464V504.374C727.464 503.658 727.396 503.124 727.259 502.772C727.122 502.414 726.878 502.131 726.526 501.923C726.181 501.708 725.774 501.601 725.306 501.601C724.557 501.601 723.909 501.838 723.362 502.313C722.822 502.789 722.552 503.69 722.552 505.019V510.683H720.794Z" fill="#2D2D2D"/>
+<path d="M735.765 509.11L736.019 510.663C735.524 510.767 735.081 510.819 734.69 510.819C734.052 510.819 733.558 510.718 733.206 510.517C732.854 510.315 732.607 510.051 732.464 509.726C732.321 509.394 732.249 508.7 732.249 507.646V501.679H730.96V500.312H732.249V497.743L733.997 496.688V500.312H735.765V501.679H733.997V507.743C733.997 508.244 734.026 508.567 734.085 508.71C734.15 508.853 734.251 508.967 734.388 509.052C734.531 509.136 734.733 509.179 734.993 509.179C735.188 509.179 735.446 509.156 735.765 509.11Z" fill="#2D2D2D"/>
+<path d="M744.593 507.343L746.409 507.567C746.123 508.629 745.592 509.452 744.817 510.038C744.043 510.624 743.053 510.917 741.849 510.917C740.332 510.917 739.127 510.451 738.235 509.521C737.35 508.583 736.907 507.271 736.907 505.585C736.907 503.84 737.356 502.486 738.255 501.522C739.153 500.559 740.319 500.077 741.751 500.077C743.138 500.077 744.271 500.549 745.149 501.493C746.028 502.437 746.468 503.765 746.468 505.478C746.468 505.582 746.465 505.738 746.458 505.946H738.724C738.789 507.086 739.111 507.958 739.69 508.563C740.27 509.169 740.993 509.472 741.858 509.472C742.503 509.472 743.053 509.302 743.509 508.964C743.965 508.625 744.326 508.085 744.593 507.343ZM738.821 504.501H744.612C744.534 503.629 744.313 502.974 743.948 502.538C743.388 501.861 742.662 501.522 741.771 501.522C740.963 501.522 740.283 501.793 739.729 502.333C739.183 502.873 738.88 503.596 738.821 504.501Z" fill="#2D2D2D"/>
+<path d="M755.354 510.683V509.374C754.697 510.403 753.73 510.917 752.454 510.917C751.627 510.917 750.866 510.689 750.169 510.233C749.479 509.778 748.942 509.143 748.558 508.329C748.18 507.509 747.991 506.568 747.991 505.507C747.991 504.472 748.164 503.534 748.509 502.694C748.854 501.848 749.371 501.2 750.062 500.751C750.752 500.302 751.523 500.077 752.376 500.077C753.001 500.077 753.558 500.211 754.046 500.478C754.534 500.738 754.931 501.08 755.237 501.503V496.366H756.985V510.683H755.354ZM749.798 505.507C749.798 506.835 750.078 507.828 750.638 508.485C751.198 509.143 751.858 509.472 752.62 509.472C753.388 509.472 754.039 509.159 754.573 508.534C755.114 507.903 755.384 506.942 755.384 505.653C755.384 504.234 755.11 503.192 754.563 502.528C754.017 501.864 753.343 501.532 752.542 501.532C751.761 501.532 751.106 501.851 750.579 502.489C750.058 503.127 749.798 504.133 749.798 505.507Z" fill="#2D2D2D"/>
+<path d="M769.163 509.11L769.417 510.663C768.922 510.767 768.479 510.819 768.089 510.819C767.451 510.819 766.956 510.718 766.604 510.517C766.253 510.315 766.006 510.051 765.862 509.726C765.719 509.394 765.647 508.7 765.647 507.646V501.679H764.358V500.312H765.647V497.743L767.396 496.688V500.312H769.163V501.679H767.396V507.743C767.396 508.244 767.425 508.567 767.483 508.71C767.549 508.853 767.649 508.967 767.786 509.052C767.929 509.136 768.131 509.179 768.392 509.179C768.587 509.179 768.844 509.156 769.163 509.11Z" fill="#2D2D2D"/>
+<path d="M770.237 505.497C770.237 503.576 770.771 502.154 771.839 501.229C772.731 500.461 773.818 500.077 775.101 500.077C776.526 500.077 777.692 500.546 778.597 501.483C779.502 502.414 779.954 503.703 779.954 505.351C779.954 506.685 779.752 507.737 779.349 508.505C778.951 509.267 778.369 509.859 777.601 510.282C776.839 510.705 776.006 510.917 775.101 510.917C773.649 510.917 772.474 510.451 771.575 509.521C770.683 508.59 770.237 507.248 770.237 505.497ZM772.044 505.497C772.044 506.825 772.334 507.821 772.913 508.485C773.493 509.143 774.222 509.472 775.101 509.472C775.973 509.472 776.699 509.14 777.278 508.476C777.858 507.812 778.147 506.799 778.147 505.438C778.147 504.156 777.854 503.186 777.269 502.528C776.689 501.864 775.966 501.532 775.101 501.532C774.222 501.532 773.493 501.861 772.913 502.519C772.334 503.176 772.044 504.169 772.044 505.497Z" fill="#2D2D2D"/>
+<path d="M794.319 510.683V509.374C793.662 510.403 792.695 510.917 791.419 510.917C790.592 510.917 789.83 510.689 789.134 510.233C788.444 509.778 787.907 509.143 787.522 508.329C787.145 507.509 786.956 506.568 786.956 505.507C786.956 504.472 787.129 503.534 787.474 502.694C787.819 501.848 788.336 501.2 789.026 500.751C789.716 500.302 790.488 500.077 791.341 500.077C791.966 500.077 792.522 500.211 793.011 500.478C793.499 500.738 793.896 501.08 794.202 501.503V496.366H795.95V510.683H794.319ZM788.763 505.507C788.763 506.835 789.043 507.828 789.603 508.485C790.162 509.143 790.823 509.472 791.585 509.472C792.353 509.472 793.004 509.159 793.538 508.534C794.078 507.903 794.349 506.942 794.349 505.653C794.349 504.234 794.075 503.192 793.528 502.528C792.981 501.864 792.308 501.532 791.507 501.532C790.726 501.532 790.071 501.851 789.544 502.489C789.023 503.127 788.763 504.133 788.763 505.507Z" fill="#2D2D2D"/>
+<path d="M798.733 498.388V496.366H800.491V498.388H798.733ZM798.733 510.683V500.312H800.491V510.683H798.733Z" fill="#2D2D2D"/>
+<path d="M802.474 507.587L804.212 507.313C804.31 508.01 804.58 508.544 805.022 508.915C805.472 509.286 806.097 509.472 806.897 509.472C807.705 509.472 808.304 509.309 808.694 508.983C809.085 508.651 809.28 508.264 809.28 507.821C809.28 507.424 809.108 507.112 808.763 506.884C808.522 506.728 807.923 506.529 806.966 506.288C805.677 505.963 804.782 505.683 804.28 505.448C803.785 505.207 803.408 504.879 803.147 504.462C802.894 504.039 802.767 503.573 802.767 503.065C802.767 502.603 802.871 502.177 803.079 501.786C803.294 501.389 803.584 501.06 803.948 500.8C804.222 500.598 804.593 500.429 805.062 500.292C805.537 500.149 806.045 500.077 806.585 500.077C807.399 500.077 808.112 500.194 808.724 500.429C809.342 500.663 809.798 500.982 810.091 501.386C810.384 501.783 810.586 502.317 810.696 502.987L808.978 503.222C808.899 502.688 808.672 502.271 808.294 501.972C807.923 501.672 807.396 501.522 806.712 501.522C805.905 501.522 805.328 501.656 804.983 501.923C804.638 502.19 804.466 502.502 804.466 502.86C804.466 503.088 804.537 503.293 804.681 503.476C804.824 503.664 805.049 503.821 805.354 503.944C805.53 504.009 806.048 504.159 806.907 504.394C808.151 504.726 809.017 504.999 809.505 505.214C810 505.422 810.387 505.728 810.667 506.132C810.947 506.535 811.087 507.037 811.087 507.636C811.087 508.222 810.914 508.775 810.569 509.296C810.231 509.81 809.739 510.211 809.095 510.497C808.45 510.777 807.721 510.917 806.907 510.917C805.56 510.917 804.531 510.637 803.821 510.077C803.118 509.517 802.669 508.687 802.474 507.587Z" fill="#2D2D2D"/>
+<path d="M813.187 510.683V496.366H814.944V504.53L819.104 500.312H821.38L817.415 504.159L821.78 510.683H819.612L816.185 505.38L814.944 506.571V510.683H813.187Z" fill="#2D2D2D"/>
+<path d="M686.154 423H764.4V433H686.154V423Z" fill="#F6F6F6"/>
+<path d="M397.247 321H463.455V331H397.247V321Z" fill="#F6F6F6"/>
+<path d="M359.128 217H498.565V227H359.128V217Z" fill="#F6F6F6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M828.19 226.088C828.694 225.861 829.286 226.085 829.513 226.589L833.214 234.793C833.441 235.296 833.217 235.888 832.714 236.115C832.21 236.342 831.618 236.118 831.391 235.615L828.683 229.612L753.889 427.354C753.742 427.743 753.369 428 752.954 428H696.186C695.634 428 695.186 427.552 695.186 427C695.186 426.448 695.634 426 696.186 426H752.263L826.812 228.904L820.809 231.613C820.306 231.84 819.713 231.616 819.486 231.112C819.259 230.609 819.483 230.017 819.987 229.789L828.19 226.088Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M619.605 226.06C620.124 225.872 620.698 226.14 620.886 226.659L692.29 423.389L695.078 417.423C695.312 416.923 695.907 416.707 696.408 416.941C696.908 417.175 697.124 417.77 696.89 418.27L693.079 426.423C692.845 426.924 692.25 427.14 691.75 426.906L683.596 423.095C683.096 422.861 682.88 422.266 683.114 421.766C683.348 421.265 683.943 421.049 684.443 421.283L690.41 424.072L619.006 227.341C618.818 226.822 619.086 226.248 619.605 226.06Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M368.787 227.072C369.299 226.866 369.882 227.115 370.087 227.628L407.308 320.387L409.895 314.331C410.113 313.823 410.7 313.587 411.208 313.804C411.716 314.021 411.952 314.609 411.735 315.117L408.198 323.393C407.981 323.901 407.394 324.137 406.886 323.92L398.61 320.383C398.102 320.166 397.866 319.579 398.083 319.071C398.3 318.563 398.888 318.327 399.396 318.544L405.452 321.132L368.231 228.372C368.025 227.86 368.274 227.278 368.787 227.072Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M489.124 226.089C489.627 225.861 490.22 226.084 490.448 226.587L494.162 234.785C494.39 235.288 494.167 235.881 493.664 236.109C493.161 236.336 492.569 236.113 492.341 235.61L489.623 229.612L453.592 325.352C453.445 325.742 453.072 326 452.656 326H410.288C409.736 326 409.288 325.552 409.288 325C409.288 324.448 409.736 324 410.288 324H451.964L487.751 228.907L481.752 231.625C481.249 231.853 480.656 231.63 480.428 231.127C480.201 230.624 480.424 230.032 480.927 229.804L489.124 226.089Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M528.258 123.084C528.764 122.862 529.354 123.092 529.576 123.598L533.193 131.839C533.415 132.345 533.185 132.934 532.68 133.156C532.174 133.378 531.584 133.149 531.362 132.643L528.715 126.613L491.777 221.363C491.627 221.747 491.257 222 490.845 222H369.159C368.607 222 368.159 221.552 368.159 221C368.159 220.448 368.607 220 369.159 220H490.162L526.851 125.886L520.821 128.533C520.315 128.755 519.725 128.526 519.503 128.02C519.281 127.514 519.511 126.924 520.017 126.702L528.258 123.084Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M330.689 124.063C331.207 123.87 331.783 124.133 331.976 124.65L366.242 216.388L368.975 210.397C369.204 209.894 369.797 209.673 370.299 209.902C370.802 210.131 371.023 210.724 370.794 211.227L367.059 219.415C366.83 219.917 366.237 220.139 365.735 219.91L357.546 216.175C357.044 215.946 356.822 215.353 357.051 214.85C357.281 214.348 357.874 214.126 358.376 214.355L364.368 217.088L330.103 125.35C329.909 124.833 330.172 124.256 330.689 124.063Z" fill="#ED1C24"/>
+<path d="M359.29 74.4004L356.751 78.8047L359.29 83.3164H357.132L354.046 78.8047L357.132 74.4004H359.29ZM363.118 74.4004L360.589 78.8047L363.118 83.3164H360.96L357.874 78.8047L360.96 74.4004H363.118Z" fill="#2D2D2D"/>
+<path d="M364.71 81.041L367.464 80.6211C367.581 81.1549 367.819 81.5618 368.177 81.8418C368.535 82.1152 369.036 82.252 369.681 82.252C370.391 82.252 370.924 82.1217 371.283 81.8613C371.523 81.679 371.644 81.4349 371.644 81.1289C371.644 80.9206 371.579 80.748 371.449 80.6113C371.312 80.4811 371.006 80.3607 370.531 80.25C368.317 79.7617 366.914 79.3158 366.322 78.9121C365.501 78.3522 365.091 77.5742 365.091 76.5781C365.091 75.6797 365.446 74.9245 366.156 74.3125C366.865 73.7005 367.965 73.3945 369.456 73.3945C370.876 73.3945 371.93 73.6257 372.62 74.0879C373.31 74.5501 373.786 75.2337 374.046 76.1387L371.458 76.6172C371.348 76.2135 371.136 75.9043 370.824 75.6895C370.518 75.4746 370.078 75.3672 369.505 75.3672C368.783 75.3672 368.265 75.4681 367.952 75.6699C367.744 75.8132 367.64 75.9987 367.64 76.2266C367.64 76.4219 367.731 76.5879 367.913 76.7246C368.161 76.9069 369.014 77.1641 370.472 77.4961C371.937 77.8281 372.959 78.235 373.538 78.7168C374.111 79.2051 374.398 79.8854 374.398 80.7578C374.398 81.7083 374.001 82.5254 373.206 83.209C372.412 83.8926 371.237 84.2344 369.681 84.2344C368.268 84.2344 367.148 83.9479 366.322 83.375C365.501 82.8021 364.964 82.0241 364.71 81.041Z" fill="#2D2D2D"/>
+<path d="M382.816 80.6992L385.55 81.1582C385.199 82.1608 384.642 82.9258 383.88 83.4531C383.125 83.974 382.178 84.2344 381.038 84.2344C379.235 84.2344 377.9 83.6452 377.034 82.4668C376.351 81.5228 376.009 80.3314 376.009 78.8926C376.009 77.1738 376.458 75.8294 377.357 74.8594C378.255 73.8828 379.391 73.3945 380.765 73.3945C382.308 73.3945 383.525 73.9056 384.417 74.9277C385.309 75.9434 385.736 77.5026 385.697 79.6055H378.822C378.841 80.4193 379.062 81.054 379.486 81.5098C379.909 81.959 380.436 82.1836 381.068 82.1836C381.497 82.1836 381.859 82.0664 382.152 81.832C382.445 81.5977 382.666 81.2201 382.816 80.6992ZM382.972 77.9258C382.952 77.1315 382.747 76.5293 382.357 76.1191C381.966 75.7025 381.491 75.4941 380.931 75.4941C380.332 75.4941 379.837 75.7122 379.447 76.1484C379.056 76.5846 378.864 77.1771 378.87 77.9258H382.972Z" fill="#2D2D2D"/>
+<path d="M392.699 73.6289V75.8164H390.824V79.9961C390.824 80.8424 390.84 81.3372 390.872 81.4805C390.911 81.6172 390.993 81.7311 391.116 81.8223C391.247 81.9134 391.403 81.959 391.585 81.959C391.839 81.959 392.207 81.8711 392.689 81.6953L392.923 83.8242C392.285 84.0977 391.562 84.2344 390.755 84.2344C390.26 84.2344 389.814 84.153 389.417 83.9902C389.02 83.821 388.727 83.6061 388.538 83.3457C388.356 83.0788 388.229 82.7207 388.158 82.2715C388.099 81.9525 388.07 81.3079 388.07 80.3379V75.8164H386.81V73.6289H388.07V71.5684L390.824 69.9668V73.6289H392.699Z" fill="#2D2D2D"/>
+<path d="M403.021 84L398.841 73.6289H401.722L403.675 78.9219L404.241 80.6895C404.391 80.2402 404.486 79.944 404.525 79.8008C404.616 79.5078 404.713 79.2148 404.818 78.9219L406.79 73.6289H409.613L405.491 84H403.021Z" fill="#2D2D2D"/>
+<path d="M413.353 76.793L410.863 76.3438C411.143 75.3411 411.624 74.599 412.308 74.1172C412.991 73.6354 414.007 73.3945 415.355 73.3945C416.579 73.3945 417.49 73.541 418.089 73.834C418.688 74.1204 419.108 74.4883 419.349 74.9375C419.596 75.3802 419.72 76.1973 419.72 77.3887L419.691 80.5918C419.691 81.5033 419.733 82.1771 419.818 82.6133C419.909 83.043 420.075 83.5052 420.316 84H417.601C417.529 83.8177 417.441 83.5475 417.337 83.1895C417.292 83.0267 417.259 82.9193 417.24 82.8672C416.771 83.3229 416.269 83.6647 415.736 83.8926C415.202 84.1204 414.632 84.2344 414.027 84.2344C412.959 84.2344 412.116 83.9447 411.497 83.3652C410.885 82.7858 410.579 82.0534 410.579 81.168C410.579 80.582 410.719 80.0612 410.999 79.6055C411.279 79.1432 411.67 78.7917 412.171 78.5508C412.679 78.3034 413.408 78.0885 414.359 77.9062C415.641 77.6654 416.53 77.4408 417.025 77.2324V76.959C417.025 76.4316 416.894 76.0573 416.634 75.8359C416.374 75.6081 415.882 75.4941 415.159 75.4941C414.671 75.4941 414.29 75.5918 414.017 75.7871C413.743 75.9759 413.522 76.3112 413.353 76.793ZM417.025 79.0195C416.673 79.1367 416.116 79.2767 415.355 79.4395C414.593 79.6022 414.095 79.7617 413.861 79.918C413.503 80.1719 413.324 80.4941 413.324 80.8848C413.324 81.2689 413.467 81.6009 413.753 81.8809C414.04 82.1608 414.404 82.3008 414.847 82.3008C415.342 82.3008 415.814 82.138 416.263 81.8125C416.595 81.5651 416.813 81.2624 416.917 80.9043C416.989 80.6699 417.025 80.224 417.025 79.5664V79.0195Z" fill="#2D2D2D"/>
+<path d="M422.435 84V69.6836H425.179V84H422.435Z" fill="#2D2D2D"/>
+<path d="M434.827 84V82.4473C434.45 83.0007 433.952 83.4368 433.333 83.7559C432.721 84.0749 432.074 84.2344 431.39 84.2344C430.693 84.2344 430.068 84.0814 429.515 83.7754C428.962 83.4694 428.561 83.0397 428.314 82.4863C428.066 81.9329 427.943 81.168 427.943 80.1914V73.6289H430.687V78.3945C430.687 79.8529 430.736 80.748 430.833 81.0801C430.937 81.4056 431.123 81.666 431.39 81.8613C431.657 82.0501 431.995 82.1445 432.406 82.1445C432.874 82.1445 433.294 82.0176 433.665 81.7637C434.036 81.5033 434.29 81.1842 434.427 80.8066C434.564 80.4225 434.632 79.4883 434.632 78.0039V73.6289H437.376V84H434.827Z" fill="#2D2D2D"/>
+<path d="M446.234 80.6992L448.968 81.1582C448.616 82.1608 448.06 82.9258 447.298 83.4531C446.543 83.974 445.596 84.2344 444.456 84.2344C442.653 84.2344 441.318 83.6452 440.452 82.4668C439.769 81.5228 439.427 80.3314 439.427 78.8926C439.427 77.1738 439.876 75.8294 440.775 74.8594C441.673 73.8828 442.809 73.3945 444.183 73.3945C445.726 73.3945 446.943 73.9056 447.835 74.9277C448.727 75.9434 449.154 77.5026 449.115 79.6055H442.24C442.259 80.4193 442.48 81.054 442.904 81.5098C443.327 81.959 443.854 82.1836 444.486 82.1836C444.915 82.1836 445.277 82.0664 445.57 81.832C445.863 81.5977 446.084 81.2201 446.234 80.6992ZM446.39 77.9258C446.37 77.1315 446.165 76.5293 445.775 76.1191C445.384 75.7025 444.909 75.4941 444.349 75.4941C443.75 75.4941 443.255 75.7122 442.865 76.1484C442.474 76.5846 442.282 77.1771 442.288 77.9258H446.39Z" fill="#2D2D2D"/>
+<path d="M456.322 76.0312V73.5117H466.331V76.0312H456.322ZM456.322 80.3672V77.8379H466.331V80.3672H456.322Z" fill="#2D2D2D"/>
+<path d="M472.855 84L476.595 78.6582L473.011 73.6289H476.361L478.197 76.4805L480.13 73.6289H483.353L479.837 78.541L483.675 84H480.306L478.197 80.7871L476.068 84H472.855Z" fill="#2D2D2D"/>
+<path d="M488.734 83.3164L491.273 78.9023L488.734 74.4004H490.892L493.978 78.9023L490.892 83.3164H488.734ZM484.906 83.3164L487.445 78.9023L484.906 74.4004H487.064L490.15 78.9023L487.064 83.3164H484.906Z" fill="#2D2D2D"/>
+<path d="M327.027 114H530.666V122H327.027V114Z" fill="#F6F6F6"/>
+<path d="M614.931 217H834.62V225H614.931V217Z" fill="#F6F6F6"/>
+<path d="M901.831 319H1077.38V327H901.831V319Z" fill="#F6F6F6"/>
+<path d="M327.027 119C327.027 118.448 327.475 118 328.027 118H529.666C530.218 118 530.666 118.448 530.666 119C530.666 119.552 530.218 120 529.666 120H328.027C327.475 120 327.027 119.552 327.027 119Z" fill="#ED1C24"/>
+<path d="M616.937 221C616.937 220.448 617.385 220 617.937 220H829.608C830.16 220 830.608 220.448 830.608 221C830.608 221.552 830.16 222 829.608 222H617.937C617.385 222 616.937 221.552 616.937 221Z" fill="#ED1C24"/>
+<path d="M903.838 324C903.838 323.448 904.285 323 904.838 323H1071.37C1071.92 323 1072.37 323.448 1072.37 324C1072.37 324.552 1071.92 325 1071.37 325H904.838C904.285 325 903.838 324.552 903.838 324Z" fill="#ED1C24"/>
+</svg>
diff --git a/public/img/features/service/one-image.svg b/public/img/features/service/one-image.svg
new file mode 100644
index 0000000..203afc2
--- /dev/null
+++ b/public/img/features/service/one-image.svg
@@ -0,0 +1,32 @@
+<svg width="326" height="188" viewBox="0 0 326 188" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M59.644 187.993C59.9497 187.998 60.256 188 60.5627 188C60.8695 188 61.1757 187.998 61.4814 187.993H264.519C264.824 187.998 265.13 188 265.437 188C265.744 188 266.05 187.998 266.356 187.993H267.175V187.976C299.819 187.078 326 160.947 326 128.843C326 96.1711 298.885 69.6855 265.437 69.6855C261.767 69.6855 258.173 70.0044 254.683 70.6154C254.688 70.3063 254.69 69.9967 254.69 69.6864C254.69 37.0148 227.575 10.5292 194.128 10.5292C183.42 10.5292 173.362 13.2434 164.634 18.0058C153.625 6.90209 138.201 0 121.126 0C87.6779 0 60.563 26.4856 60.563 59.1573C60.563 62.753 60.8915 66.2739 61.5206 69.6928C61.2019 69.6879 60.8826 69.6855 60.5627 69.6855C27.1149 69.6855 0 96.1711 0 128.843C0 160.513 25.4778 186.37 57.5049 187.926V187.993H59.644Z" fill="white"/>
+<rect x="85.669" y="118.908" width="39.1843" height="48.4724" rx="10" fill="white"/>
+<rect x="85.669" y="118.908" width="39.1843" height="48.4724" rx="10" fill="#2D2D2D"/>
+<path d="M93.5986 70.8677H99.6439H213.75C224.795 70.8677 233.75 79.822 233.75 90.8677V127.419C233.75 138.465 224.795 147.419 213.75 147.419H93.5986C82.5529 147.419 73.5986 138.465 73.5986 127.419V90.8677C73.5986 79.822 82.5529 70.8677 93.5986 70.8677Z" stroke="#2D2D2D" stroke-width="2"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M107.224 129.445C107.224 128.341 108.12 127.445 109.224 127.445H110.219C111.324 127.445 112.219 128.341 112.219 129.445V129.492C112.692 129.641 113.147 129.83 113.579 130.057L113.612 130.024C114.393 129.242 115.659 129.242 116.439 130.024L117.144 130.729C117.925 131.511 117.925 132.778 117.144 133.559L117.111 133.592C117.337 134.025 117.526 134.48 117.674 134.953H117.72C118.825 134.953 119.72 135.849 119.72 136.953V137.953C119.72 139.058 118.825 139.953 117.72 139.953H117.674C117.526 140.426 117.337 140.881 117.111 141.314L117.144 141.348C117.925 142.129 117.925 143.396 117.144 144.178L116.439 144.883C115.658 145.665 114.393 145.665 113.612 144.883L113.579 144.85C113.146 145.076 112.692 145.265 112.219 145.414V145.462C112.219 146.567 111.324 147.462 110.219 147.462H109.224C108.12 147.462 107.224 146.567 107.224 145.462V145.414C106.752 145.265 106.297 145.076 105.865 144.85L105.831 144.883C105.051 145.665 103.785 145.665 103.004 144.883L102.3 144.178C101.519 143.396 101.519 142.129 102.3 141.348L102.333 141.314C102.107 140.882 101.918 140.427 101.769 139.953H101.723C100.619 139.953 99.7235 139.058 99.7235 137.953L99.7235 136.953C99.7235 135.849 100.619 134.953 101.723 134.953H101.769C101.917 134.48 102.107 134.025 102.333 133.592L102.299 133.559C101.519 132.777 101.519 131.51 102.299 130.729L103.004 130.023C103.785 129.242 105.051 129.242 105.831 130.023L105.865 130.057C106.297 129.83 106.752 129.641 107.224 129.492V129.445Z" fill="white"/>
+<ellipse cx="109.722" cy="137.463" rx="4.82472" ry="4.82965" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M93.2764 152.284C93.2913 152.691 93.3449 153.093 93.4345 153.484C92.7433 154.078 92.5496 155.099 93.0218 155.918C93.4939 156.736 94.4735 157.078 95.3335 156.777C95.627 157.05 95.9476 157.297 96.2927 157.514C96.2233 158.424 96.8078 159.282 97.7206 159.527C98.6333 159.772 99.5684 159.321 99.9626 158.499C100.369 158.484 100.77 158.43 101.161 158.34C101.754 159.033 102.774 159.227 103.593 158.754C104.411 158.281 104.753 157.299 104.451 156.439C104.724 156.145 104.971 155.824 105.188 155.478C106.096 155.547 106.954 154.962 107.198 154.05C107.442 153.137 106.992 152.201 106.171 151.806C106.156 151.398 106.102 150.996 106.012 150.605C106.704 150.011 106.897 148.99 106.425 148.171C105.953 147.352 104.973 147.01 104.112 147.312C103.819 147.039 103.499 146.792 103.154 146.576C103.224 145.666 102.639 144.807 101.726 144.562C100.813 144.318 99.8781 144.769 99.4841 145.591C99.0772 145.606 98.6763 145.66 98.286 145.75C97.6925 145.057 96.6725 144.864 95.8542 145.337C95.0358 145.81 94.6935 146.791 94.9957 147.651C94.723 147.945 94.4761 148.266 94.2597 148.611C93.3508 148.542 92.493 149.127 92.2487 150.04C92.0043 150.953 92.4551 151.888 93.2764 152.284Z" fill="white"/>
+<ellipse rx="3.73449" ry="3.73779" transform="matrix(0.96586 0.259066 -0.258572 0.965992 99.7216 152.051)" fill="#2D2D2D"/>
+<rect x="75.6843" y="109.292" width="28.6109" height="28.6402" rx="14.3055" fill="#ED1C24"/>
+<path d="M87.426 118.535C87.426 118.535 80.8678 122.532 87.0485 126.5C88.2375 127.272 92.5498 129.421 92.4272 131.41C92.4272 131.41 95.041 127.546 91.2193 125.114C87.2939 122.626 86.3125 119.968 87.426 118.535Z" fill="white"/>
+<path d="M85.1423 126.169C85.1423 126.169 82.8022 129.713 87.407 130.439C87.8599 130.495 91.1909 130.844 92.059 131.937C92.059 131.937 91.9836 130.052 89.2659 128.94C86.5578 127.828 85.4443 127.555 85.1423 126.169Z" fill="white"/>
+<path d="M94.2012 122.446C91.3892 119.506 90.606 117.687 91.8139 115.33C91.8139 115.33 83.4251 118.554 91.7101 124.275C94.673 126.32 94.1823 128.413 94.1823 128.488C94.6447 128.007 97.0132 125.387 94.2012 122.446Z" fill="white"/>
+<rect x="182.812" y="118.908" width="39.1843" height="48.4724" rx="10" fill="white"/>
+<rect x="182.812" y="118.908" width="39.1843" height="48.4724" rx="10" fill="#2D2D2D"/>
+<rect x="172.827" y="109.292" width="28.6109" height="28.6402" rx="14.3055" fill="#ED1C24"/>
+<path d="M184.569 118.535C184.569 118.535 178.011 122.532 184.191 126.5C185.38 127.272 189.693 129.421 189.57 131.41C189.57 131.41 192.184 127.546 188.362 125.114C184.437 122.626 183.455 119.968 184.569 118.535Z" fill="white"/>
+<path d="M182.285 126.169C182.285 126.169 179.945 129.713 184.55 130.439C185.003 130.495 188.334 130.844 189.202 131.937C189.202 131.937 189.126 130.052 186.409 128.94C183.701 127.828 182.587 127.555 182.285 126.169Z" fill="white"/>
+<path d="M191.344 122.446C188.532 119.506 187.749 117.687 188.957 115.33C188.957 115.33 180.568 118.554 188.853 124.275C191.816 126.32 191.325 128.413 191.325 128.488C191.788 128.007 194.156 125.387 191.344 122.446Z" fill="white"/>
+<rect x="87.3621" y="45.5276" width="39.1843" height="48.4724" rx="10" fill="white"/>
+<rect x="87.3621" y="45.5276" width="39.1843" height="48.4724" rx="10" fill="#2D2D2D"/>
+<rect x="77.3774" y="35.9121" width="28.6109" height="28.6402" rx="14.3055" fill="#ED1C24"/>
+<path d="M89.1191 45.1542C89.1191 45.1542 82.561 49.1505 88.7417 53.1185C89.9306 53.8914 94.243 56.0404 94.1203 58.0291C94.1203 58.0291 96.7341 54.1647 92.9125 51.733C88.987 49.2448 88.0056 46.5869 89.1191 45.1542Z" fill="white"/>
+<path d="M86.8354 52.7881C86.8354 52.7881 84.4953 56.332 89.1001 57.0578C89.5531 57.1143 92.884 57.4631 93.7522 58.5564C93.7522 58.5564 93.6767 56.6713 90.9591 55.5592C88.2509 54.447 87.1374 54.1737 86.8354 52.7881Z" fill="white"/>
+<path d="M95.8943 49.0653C93.0823 46.1247 92.2991 44.3056 93.507 41.9493C93.507 41.9493 85.1182 45.1727 93.4032 50.8938C96.3661 52.9391 95.8754 55.0315 95.8754 55.1069C96.3378 54.6262 98.7063 52.006 95.8943 49.0653Z" fill="white"/>
+<rect x="182.812" y="45.5276" width="39.1843" height="48.4724" rx="10" fill="white"/>
+<rect x="182.812" y="45.5276" width="39.1843" height="48.4724" rx="10" fill="#2D2D2D"/>
+<rect x="172.827" y="35.9121" width="28.6109" height="28.6402" rx="14.3055" fill="#ED1C24"/>
+<path d="M184.569 45.1542C184.569 45.1542 178.011 49.1505 184.192 53.1185C185.381 53.8914 189.693 56.0404 189.57 58.0291C189.57 58.0291 192.184 54.1647 188.362 51.733C184.437 49.2448 183.456 46.5869 184.569 45.1542Z" fill="white"/>
+<path d="M182.285 52.7881C182.285 52.7881 179.945 56.332 184.55 57.0578C185.003 57.1143 188.334 57.4631 189.202 58.5564C189.202 58.5564 189.127 56.6713 186.409 55.5592C183.701 54.447 182.587 54.1737 182.285 52.7881Z" fill="white"/>
+<path d="M191.344 49.0653C188.532 46.1247 187.749 44.3056 188.957 41.9493C188.957 41.9493 180.568 45.1727 188.853 50.8938C191.816 52.9391 191.325 55.0315 191.325 55.1069C191.788 54.6262 194.156 52.006 191.344 49.0653Z" fill="white"/>
+</svg>
diff --git a/public/img/features/service/service-hero.svg b/public/img/features/service/service-hero.svg
new file mode 100644
index 0000000..bc2ba1c
--- /dev/null
+++ b/public/img/features/service/service-hero.svg
@@ -0,0 +1,29 @@
+<svg width="675" height="481" viewBox="0 0 675 481" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M686.851 310.518C685.553 324.373 675.739 338.011 657.408 348.595C617.952 371.375 553.981 371.375 514.525 348.595L357.183 257.754C341.175 248.512 332.851 236.514 332.211 224.405L332.21 224.397C332.157 223.393 332.157 222.388 332.21 221.384L332.21 143.193L512.367 143.193L512.367 169.338C549.687 167.606 588.036 174.982 616.584 191.464C635.251 202.241 647.174 215.438 652.353 229.306L686.924 229.306V305.085C687.025 306.593 687.025 308.103 686.924 309.611V310.518H686.851Z" fill="#0070CC" stroke="white"/>
+<path d="M357.183 180.318C323.833 161.064 323.833 129.846 357.183 110.592C384.254 94.9624 424.978 92.0198 457.189 101.764C507.745 84.9996 573.385 89.088 616.584 114.029C650.234 133.456 661.969 160.745 651.789 185.656C653.711 186.611 655.586 187.614 657.408 188.666C696.864 211.446 696.864 248.38 657.408 271.16C617.952 293.94 553.981 293.94 514.525 271.16L429.524 222.085C429.508 222.075 429.491 222.066 429.475 222.056C429.459 222.047 429.443 222.038 429.426 222.028L357.183 180.318Z" fill="#0070CC" stroke="white"/>
+<path d="M686.851 219.862C685.553 233.717 675.739 247.356 657.408 257.939C617.952 280.719 553.981 280.719 514.525 257.939L357.183 167.098C341.175 157.856 332.851 145.858 332.211 133.75L332.21 133.742C332.157 132.737 332.157 131.732 332.21 130.728L332.21 52.5374L512.367 52.5374L512.367 78.6824C549.687 76.9508 588.036 84.3263 616.584 100.809C635.251 111.586 647.174 124.782 652.353 138.65L686.924 138.65V214.429C687.025 215.938 687.025 217.448 686.924 218.956V219.862H686.851Z" fill="#0070CC" stroke="white"/>
+<mask id="path-4-inside-1_1:408" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M357.868 139.977C363.288 143.106 367.682 140.569 367.682 134.311C367.682 128.052 363.288 120.442 357.868 117.313C352.448 114.184 348.054 116.72 348.054 122.979C348.054 129.237 352.448 136.847 357.868 139.977ZM384.309 155.086C389.729 158.215 394.123 155.678 394.123 149.42C394.123 143.162 389.729 135.551 384.309 132.422C378.889 129.293 374.495 131.83 374.495 138.088C374.495 144.346 378.889 151.957 384.309 155.086Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M357.868 139.977C363.288 143.106 367.682 140.569 367.682 134.311C367.682 128.052 363.288 120.442 357.868 117.313C352.448 114.184 348.054 116.72 348.054 122.979C348.054 129.237 352.448 136.847 357.868 139.977ZM384.309 155.086C389.729 158.215 394.123 155.678 394.123 149.42C394.123 143.162 389.729 135.551 384.309 132.422C378.889 129.293 374.495 131.83 374.495 138.088C374.495 144.346 378.889 151.957 384.309 155.086Z" fill="#0070CC"/>
+<path d="M367.682 134.311H368.682H367.682ZM357.868 139.977L357.368 140.843H357.368L357.868 139.977ZM357.868 117.313L358.368 116.447V116.447L357.868 117.313ZM348.054 122.979H347.054H348.054ZM384.309 155.086L383.809 155.952L384.309 155.086ZM384.309 132.422L383.809 133.288H383.809L384.309 132.422ZM366.682 134.311C366.682 137.23 365.665 139.014 364.307 139.798C362.95 140.582 360.896 140.57 358.368 139.111L357.368 140.843C360.26 142.512 363.113 142.797 365.307 141.53C367.502 140.263 368.682 137.65 368.682 134.311H366.682ZM357.368 118.179C359.89 119.635 362.23 122.174 363.941 125.138C365.653 128.103 366.682 131.398 366.682 134.311H368.682C368.682 130.965 367.514 127.326 365.673 124.138C363.833 120.95 361.266 118.12 358.368 116.447L357.368 118.179ZM349.054 122.979C349.054 120.06 350.071 118.275 351.428 117.491C352.786 116.708 354.84 116.719 357.368 118.179L358.368 116.447C355.476 114.777 352.623 114.492 350.428 115.759C348.234 117.026 347.054 119.639 347.054 122.979H349.054ZM358.368 139.111C355.846 137.654 353.506 135.115 351.794 132.151C350.083 129.187 349.054 125.891 349.054 122.979H347.054C347.054 126.325 348.222 129.963 350.062 133.151C351.903 136.339 354.47 139.17 357.368 140.843L358.368 139.111ZM393.123 149.42C393.123 152.339 392.106 154.124 390.748 154.907C389.391 155.691 387.337 155.679 384.809 154.22L383.809 155.952C386.701 157.622 389.554 157.906 391.748 156.639C393.943 155.372 395.123 152.76 395.123 149.42H393.123ZM383.809 133.288C386.331 134.744 388.671 137.283 390.382 140.248C392.094 143.212 393.123 146.508 393.123 149.42H395.123C395.123 146.074 393.955 142.435 392.115 139.248C390.274 136.06 387.707 133.229 384.809 131.556L383.809 133.288ZM375.495 138.088C375.495 135.169 376.512 133.384 377.87 132.601C379.227 131.817 381.281 131.829 383.809 133.288L384.809 131.556C381.917 129.886 379.064 129.602 376.87 130.869C374.675 132.136 373.495 134.748 373.495 138.088H375.495ZM384.809 154.22C382.287 152.764 379.947 150.225 378.236 147.26C376.524 144.296 375.495 141 375.495 138.088H373.495C373.495 141.434 374.663 145.073 376.504 148.26C378.344 151.448 380.911 154.279 383.809 155.952L384.809 154.22Z" fill="white" mask="url(#path-4-inside-1_1:408)"/>
+<path d="M357.183 89.6627C323.833 70.4082 323.833 39.1905 357.183 19.936C384.254 4.30665 424.978 1.364 457.189 11.108C507.746 -5.65615 573.385 -1.56775 616.584 23.3732C650.234 42.8007 661.969 70.0894 651.79 95C653.711 95.9548 655.586 96.9583 657.408 98.0103C696.864 120.79 696.864 157.724 657.408 180.504C617.952 203.284 553.981 203.284 514.525 180.504L429.524 131.429C429.508 131.419 429.492 131.41 429.475 131.401C429.459 131.391 429.443 131.382 429.426 131.372L357.183 89.6627Z" fill="#0070CC" stroke="white"/>
+<path d="M770.681 567.518C769.383 581.373 759.568 595.011 741.237 605.595C701.781 628.375 637.81 628.375 598.354 605.595L441.012 514.754C425.005 505.512 416.681 493.514 416.04 481.405L416.04 481.397C415.987 480.393 415.987 479.388 416.04 478.384L416.04 400.193L596.197 400.193L596.197 426.338C633.516 424.606 671.865 431.982 700.413 448.464C719.08 459.241 731.003 472.438 736.182 486.306L770.754 486.306V562.085C770.854 563.593 770.854 565.103 770.754 566.611V567.518H770.681Z" fill="#0070CC" stroke="white"/>
+<path d="M441.012 437.318C407.663 418.064 407.663 386.846 441.012 367.592C468.083 351.962 508.807 349.02 541.019 358.764C591.575 342 657.214 346.088 700.413 371.029C734.063 390.456 745.798 417.745 735.619 442.656C737.541 443.611 739.415 444.614 741.237 445.666C780.693 468.446 780.693 505.38 741.237 528.16C701.781 550.94 637.81 550.94 598.354 528.16L513.353 479.085C513.337 479.075 513.321 479.066 513.305 479.056C513.288 479.047 513.272 479.038 513.256 479.028L441.012 437.318Z" fill="#0070CC" stroke="white"/>
+<path d="M770.681 476.862C769.383 490.717 759.568 504.356 741.237 514.939C701.781 537.719 637.81 537.719 598.354 514.939L441.012 424.098C425.005 414.856 416.681 402.858 416.04 390.75L416.04 390.742C415.987 389.737 415.987 388.732 416.04 387.728L416.04 309.537L596.197 309.537L596.197 335.682C633.516 333.951 671.865 341.326 700.413 357.809C719.08 368.586 731.003 381.782 736.182 395.65L770.754 395.65V471.429C770.854 472.938 770.854 474.448 770.754 475.956V476.862H770.681Z" fill="#0070CC" stroke="white"/>
+<mask id="path-10-inside-2_1:408" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M441.697 396.977C447.117 400.106 451.511 397.569 451.511 391.311C451.511 385.052 447.117 377.442 441.697 374.313C436.277 371.184 431.883 373.72 431.883 379.979C431.883 386.237 436.277 393.847 441.697 396.977ZM468.138 412.086C473.558 415.215 477.952 412.678 477.952 406.42C477.952 400.162 473.558 392.551 468.138 389.422C462.718 386.293 458.325 388.83 458.325 395.088C458.325 401.346 462.718 408.957 468.138 412.086Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M441.697 396.977C447.117 400.106 451.511 397.569 451.511 391.311C451.511 385.052 447.117 377.442 441.697 374.313C436.277 371.184 431.883 373.72 431.883 379.979C431.883 386.237 436.277 393.847 441.697 396.977ZM468.138 412.086C473.558 415.215 477.952 412.678 477.952 406.42C477.952 400.162 473.558 392.551 468.138 389.422C462.718 386.293 458.325 388.83 458.325 395.088C458.325 401.346 462.718 408.957 468.138 412.086Z" fill="#0070CC"/>
+<path d="M451.511 391.311H452.511H451.511ZM441.697 396.977L441.197 397.843H441.197L441.697 396.977ZM441.697 374.313L442.197 373.447V373.447L441.697 374.313ZM431.883 379.979H430.883H431.883ZM468.138 412.086L467.638 412.952L468.138 412.086ZM468.138 389.422L467.638 390.288H467.638L468.138 389.422ZM450.511 391.311C450.511 394.23 449.494 396.014 448.137 396.798C446.779 397.582 444.725 397.57 442.197 396.111L441.197 397.843C444.089 399.512 446.942 399.797 449.137 398.53C451.331 397.263 452.511 394.65 452.511 391.311H450.511ZM441.197 375.179C443.719 376.635 446.059 379.174 447.771 382.138C449.482 385.103 450.511 388.398 450.511 391.311H452.511C452.511 387.965 451.343 384.326 449.503 381.138C447.662 377.95 445.095 375.12 442.197 373.447L441.197 375.179ZM432.883 379.979C432.883 377.06 433.9 375.275 435.258 374.491C436.615 373.708 438.669 373.719 441.197 375.179L442.197 373.447C439.305 371.777 436.452 371.492 434.258 372.759C432.063 374.026 430.883 376.639 430.883 379.979H432.883ZM442.197 396.111C439.675 394.654 437.335 392.115 435.624 389.151C433.912 386.187 432.883 382.891 432.883 379.979H430.883C430.883 383.325 432.051 386.963 433.892 390.151C435.732 393.339 438.299 396.17 441.197 397.843L442.197 396.111ZM476.952 406.42C476.952 409.339 475.935 411.124 474.578 411.907C473.22 412.691 471.166 412.679 468.638 411.22L467.638 412.952C470.531 414.622 473.383 414.906 475.578 413.639C477.772 412.372 478.952 409.76 478.952 406.42H476.952ZM467.638 390.288C470.161 391.744 472.5 394.283 474.212 397.248C475.923 400.212 476.952 403.508 476.952 406.42H478.952C478.952 403.074 477.784 399.435 475.944 396.248C474.103 393.06 471.536 390.229 468.638 388.556L467.638 390.288ZM459.325 395.088C459.325 392.169 460.342 390.384 461.699 389.601C463.057 388.817 465.111 388.829 467.638 390.288L468.638 388.556C465.746 386.886 462.893 386.602 460.699 387.869C458.505 389.136 457.325 391.748 457.325 395.088H459.325ZM468.638 411.22C466.116 409.764 463.777 407.225 462.065 404.26C460.354 401.296 459.325 398 459.325 395.088H457.325C457.325 398.434 458.493 402.073 460.333 405.26C462.174 408.448 464.741 411.279 467.638 412.952L468.638 411.22Z" fill="white" mask="url(#path-10-inside-2_1:408)"/>
+<path d="M441.013 346.663C407.663 327.408 407.663 296.19 441.013 276.936C468.083 261.307 508.807 258.364 541.019 268.108C591.575 251.344 657.215 255.432 700.414 280.373C734.063 299.801 745.798 327.089 735.619 352C737.541 352.955 739.415 353.958 741.237 355.01C780.694 377.79 780.694 414.724 741.237 437.504C701.781 460.284 637.81 460.284 598.354 437.504L513.354 388.429C513.337 388.419 513.321 388.41 513.305 388.401C513.288 388.391 513.272 388.382 513.256 388.372L441.013 346.663Z" fill="#0070CC" stroke="white"/>
+<path d="M355.681 439.322C354.383 453.177 344.568 466.816 326.237 477.399C286.781 500.179 222.81 500.179 183.354 477.399L26.0123 386.558C10.0048 377.316 1.68073 365.318 1.04006 353.21L1.03964 353.202C0.986781 352.197 0.986794 351.192 1.03964 350.188L1.03963 271.997L181.197 271.997L181.197 298.142C218.516 296.411 256.865 303.786 285.413 320.269C304.08 331.046 316.003 344.242 321.182 358.11L355.754 358.11V433.889C355.854 435.398 355.854 436.908 355.754 438.416V439.322H355.681Z" fill="#0070CC" stroke="white"/>
+<path d="M26.0125 309.123C-7.33732 289.868 -7.33731 258.651 26.0125 239.396C53.0833 223.767 93.8069 220.824 126.019 230.568C176.575 213.804 242.214 217.892 285.413 242.833C319.063 262.261 330.798 289.55 320.619 314.46C322.541 315.415 324.415 316.418 326.237 317.47C365.693 340.25 365.693 377.184 326.237 399.964C286.781 422.744 222.81 422.744 183.354 399.964L98.3534 350.889C98.3371 350.88 98.3208 350.87 98.3046 350.861C98.2883 350.851 98.272 350.842 98.2557 350.833L26.0125 309.123Z" fill="#0070CC" stroke="white"/>
+<path d="M355.681 348.667C354.383 362.522 344.568 376.16 326.237 386.744C286.781 409.524 222.81 409.524 183.354 386.744L26.0123 295.903C10.0048 286.661 1.68073 274.663 1.04006 262.554L1.03964 262.546C0.986781 261.542 0.986794 260.537 1.03964 259.533L1.03963 181.342L181.197 181.342L181.197 207.487C218.516 205.755 256.865 213.131 285.413 229.613C304.08 240.39 316.003 253.587 321.182 267.455L355.754 267.455V343.234C355.854 344.742 355.854 346.252 355.754 347.76V348.667H355.681Z" fill="#0070CC" stroke="white"/>
+<mask id="path-16-inside-3_1:408" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M26.6972 268.781C32.1171 271.91 36.5109 269.374 36.5109 263.115C36.5109 256.857 32.1171 249.246 26.6972 246.117C21.2772 242.988 16.8834 245.525 16.8834 251.783C16.8834 258.042 21.2772 265.652 26.6972 268.781ZM53.1384 283.89C58.5584 287.02 62.9522 284.483 62.9522 278.224C62.9522 271.966 58.5584 264.356 53.1384 261.226C47.7184 258.097 43.3247 260.634 43.3247 266.892C43.3247 273.151 47.7184 280.761 53.1384 283.89Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M26.6972 268.781C32.1171 271.91 36.5109 269.374 36.5109 263.115C36.5109 256.857 32.1171 249.246 26.6972 246.117C21.2772 242.988 16.8834 245.525 16.8834 251.783C16.8834 258.042 21.2772 265.652 26.6972 268.781ZM53.1384 283.89C58.5584 287.02 62.9522 284.483 62.9522 278.224C62.9522 271.966 58.5584 264.356 53.1384 261.226C47.7184 258.097 43.3247 260.634 43.3247 266.892C43.3247 273.151 47.7184 280.761 53.1384 283.89Z" fill="#0070CC"/>
+<path d="M26.6972 246.117L27.1972 245.251V245.251L26.6972 246.117ZM53.1384 283.89L52.6384 284.756L53.1384 283.89ZM53.1384 261.226L52.6384 262.093L53.1384 261.226ZM35.5109 263.115C35.5109 266.034 34.494 267.819 33.1365 268.602C31.779 269.386 29.725 269.374 27.1972 267.915L26.1972 269.647C29.0893 271.317 31.9421 271.601 34.1365 270.335C36.3309 269.068 37.5109 266.455 37.5109 263.115H35.5109ZM26.1972 246.983C28.7194 248.439 31.0591 250.978 32.7705 253.943C34.4819 256.907 35.5109 260.203 35.5109 263.115H37.5109C37.5109 259.769 36.343 256.13 34.5026 252.943C32.6621 249.755 30.0949 246.924 27.1972 245.251L26.1972 246.983ZM17.8834 251.783C17.8834 248.864 18.9003 247.08 20.2578 246.296C21.6153 245.512 23.6693 245.524 26.1972 246.983L27.1972 245.251C24.305 243.581 21.4522 243.297 19.2578 244.564C17.0634 245.831 15.8834 248.444 15.8834 251.783H17.8834ZM27.1972 267.915C24.6749 266.459 22.3352 263.92 20.6238 260.956C18.9124 257.991 17.8834 254.696 17.8834 251.783H15.8834C15.8834 255.129 17.0513 258.768 18.8918 261.956C20.7322 265.143 23.2994 267.974 26.1972 269.647L27.1972 267.915ZM61.9522 278.224C61.9522 281.143 60.9353 282.928 59.5778 283.712C58.2203 284.496 56.1662 284.484 53.6384 283.024L52.6384 284.756C55.5306 286.426 58.3834 286.711 60.5778 285.444C62.7722 284.177 63.9522 281.564 63.9522 278.224H61.9522ZM52.6384 262.093C55.1606 263.549 57.5004 266.088 59.2118 269.052C60.9232 272.016 61.9522 275.312 61.9522 278.224H63.9522C63.9522 274.878 62.7843 271.24 60.9438 268.052C59.1034 264.864 56.5362 262.033 53.6384 260.36L52.6384 262.093ZM44.3247 266.892C44.3247 263.974 45.3416 262.189 46.6991 261.405C48.0565 260.621 50.1106 260.633 52.6384 262.093L53.6384 260.36C50.7463 258.691 47.8935 258.406 45.6991 259.673C43.5047 260.94 42.3247 263.553 42.3247 266.892H44.3247ZM53.6384 283.024C51.1162 281.568 48.7765 279.029 47.0651 276.065C45.3536 273.101 44.3247 269.805 44.3247 266.892H42.3247C42.3247 270.239 43.4926 273.877 45.333 277.065C47.1735 280.253 49.7406 283.083 52.6384 284.756L53.6384 283.024Z" fill="white" mask="url(#path-16-inside-3_1:408)"/>
+<path d="M26.0126 218.467C-7.33722 199.213 -7.33722 167.995 26.0126 148.74C53.0834 133.111 93.807 130.168 126.019 139.912C176.575 123.148 242.215 127.237 285.414 152.178C319.063 171.605 330.798 198.894 320.619 223.804C322.541 224.759 324.415 225.763 326.237 226.815C365.693 249.595 365.693 286.528 326.237 309.308C286.781 332.088 222.81 332.088 183.354 309.308L98.3535 260.233C98.3372 260.224 98.3209 260.214 98.3046 260.205C98.2884 260.196 98.2721 260.186 98.2558 260.177L26.0126 218.467Z" fill="#0070CC" stroke="white"/>
+</svg>
diff --git a/public/img/features/service/two-image.svg b/public/img/features/service/two-image.svg
new file mode 100644
index 0000000..6a6c732
--- /dev/null
+++ b/public/img/features/service/two-image.svg
@@ -0,0 +1,44 @@
+<svg width="314" height="181" viewBox="0 0 314 181" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M57.4514 180.994C57.7449 180.998 58.0389 181 58.3334 181C58.6279 181 58.922 180.998 59.2154 180.994H254.785C255.078 180.998 255.372 181 255.667 181C255.961 181 256.255 180.998 256.549 180.994H257.34V180.977C288.783 180.112 314 154.954 314 124.045C314 92.5902 287.883 67.0908 255.667 67.0908C252.132 67.0908 248.67 67.3978 245.308 67.986C245.313 67.6885 245.315 67.3904 245.315 67.0918C245.315 35.6366 219.198 10.1372 186.982 10.1372C176.669 10.1372 166.98 12.7503 158.574 17.3354C147.97 6.6451 133.113 0 116.667 0C84.4505 0 58.3337 25.4994 58.3337 56.9546C58.3337 60.4165 58.6501 63.8062 59.2561 67.0978C58.9491 67.0931 58.6415 67.0908 58.3334 67.0908C26.1168 67.0908 0 92.5902 0 124.045C0 154.536 24.54 179.431 55.3882 180.929V180.994H57.4514Z" fill="white"/>
+<rect x="82.8042" y="114.845" width="37.7128" height="45.9379" rx="10" fill="white"/>
+<rect x="82.8042" y="114.845" width="37.7128" height="45.9379" rx="10" fill="#2D2D2D"/>
+<path d="M90.5065 68.0866H95.7061H205.457C216.503 68.0866 225.457 77.0409 225.457 88.0866V121.915C225.457 132.961 216.503 141.915 205.457 141.915H90.5065C79.4608 141.915 70.5065 132.961 70.5065 121.915V88.0866C70.5065 77.0409 79.4608 68.0866 90.5065 68.0866Z" stroke="#2D2D2D" stroke-width="2"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M98.0239 134.742C98.1662 135.196 98.3476 135.632 98.5642 136.047C97.8017 136.83 97.8078 138.082 98.5827 138.857L99.157 139.431C99.9307 140.205 101.18 140.212 101.963 139.453C102.381 139.672 102.821 139.856 103.278 139.999C103.293 141.091 104.182 141.971 105.277 141.971H106.088C107.183 141.971 108.073 141.091 108.088 140C108.544 139.857 108.982 139.674 109.398 139.456C110.181 140.217 111.431 140.211 112.205 139.436L112.78 138.862C113.553 138.087 113.56 136.836 112.8 136.053C113.018 135.636 113.201 135.198 113.344 134.742C114.434 134.726 115.313 133.837 115.313 132.742V131.928C115.313 130.834 114.434 129.945 113.344 129.929C113.201 129.472 113.018 129.034 112.8 128.616C113.561 127.834 113.555 126.583 112.78 125.808L112.206 125.234C111.432 124.459 110.18 124.453 109.398 125.214C108.981 124.996 108.544 124.813 108.088 124.67C108.072 123.579 107.183 122.7 106.088 122.7H105.277C104.183 122.7 103.293 123.58 103.278 124.671C102.822 124.814 102.384 124.997 101.968 125.215C101.186 124.453 99.9345 124.46 99.1604 125.234L98.5862 125.809C97.8119 126.584 97.8054 127.836 98.5667 128.618C98.3489 129.035 98.1666 129.473 98.0238 129.929C96.9325 129.944 96.0527 130.834 96.0527 131.928L96.0527 132.742C96.0527 133.837 96.9326 134.727 98.0239 134.742Z" fill="white"/>
+<ellipse cx="105.683" cy="132.344" rx="4.64712" ry="4.64982" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M89.8423 146.613C89.8567 147.006 89.9083 147.392 89.9947 147.769C89.3293 148.342 89.143 149.324 89.5977 150.112C90.0525 150.9 90.9961 151.23 91.8244 150.939C92.1065 151.202 92.4147 151.439 92.7464 151.648C92.6796 152.523 93.2424 153.35 94.1215 153.586C95.0004 153.821 95.9009 153.387 96.281 152.595C96.6731 152.581 97.0595 152.529 97.4356 152.443C98.0072 153.111 98.9906 153.298 99.7794 152.843C100.568 152.387 100.898 151.441 100.606 150.612C100.868 150.33 101.106 150.021 101.314 149.689C102.19 149.756 103.017 149.193 103.252 148.314C103.488 147.435 103.054 146.534 102.263 146.153C102.249 145.761 102.197 145.374 102.111 144.997C102.776 144.424 102.962 143.442 102.508 142.654C102.053 141.866 101.11 141.536 100.282 141.826C99.9988 141.563 99.6896 141.325 99.3569 141.116C99.4235 140.241 98.8608 139.414 97.9818 139.179C97.1026 138.943 96.2017 139.378 95.8219 140.17C95.43 140.184 95.0438 140.236 94.6677 140.322C94.0959 139.656 93.1138 139.47 92.3258 139.925C91.5377 140.38 91.2081 141.325 91.4989 142.153C91.2362 142.436 90.9984 142.745 90.7899 143.077C89.9146 143.011 89.0884 143.574 88.8531 144.453C88.6177 145.332 89.0517 146.232 89.8423 146.613Z" fill="white"/>
+<ellipse rx="3.59691" ry="3.59873" transform="matrix(0.965888 0.25896 -0.258679 0.965963 96.0509 146.39)" fill="#2D2D2D"/>
+<rect x="72.8983" y="105.223" width="27.5577" height="27.5738" rx="13.7789" fill="#ED1C24"/>
+<path d="M84.2078 114.122C84.2078 114.122 77.8911 117.969 83.8442 121.79C84.9894 122.534 89.143 124.603 89.0249 126.517C89.0249 126.517 91.5425 122.797 87.8615 120.456C84.0806 118.06 83.1353 115.501 84.2078 114.122Z" fill="white"/>
+<path d="M82.0082 121.471C82.0082 121.471 79.7542 124.883 84.1895 125.582C84.6258 125.636 87.8342 125.972 88.6703 127.025C88.6703 127.025 88.5976 125.21 85.98 124.139C83.3715 123.068 82.2991 122.805 82.0082 121.471Z" fill="white"/>
+<path d="M90.7336 117.887C88.0252 115.056 87.2708 113.305 88.4342 111.036C88.4342 111.036 80.3542 114.139 88.3342 119.648C91.1881 121.617 90.7155 123.631 90.7155 123.704C91.1608 123.241 93.4421 120.718 90.7336 117.887Z" fill="white"/>
+<rect x="176.082" y="114.481" width="37.742" height="46.6676" rx="10" fill="white"/>
+<rect x="176.082" y="114.481" width="37.742" height="46.6676" rx="10" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M191.591 134.742C191.733 135.196 191.915 135.632 192.131 136.047C191.369 136.83 191.375 138.082 192.15 138.857L192.724 139.431C193.498 140.205 194.747 140.212 195.53 139.453C195.948 139.672 196.387 139.856 196.845 139.999C196.859 141.091 197.749 141.971 198.844 141.971H199.655C200.75 141.971 201.64 141.091 201.655 140C202.111 139.857 202.549 139.674 202.965 139.456C203.748 140.217 204.998 140.211 205.772 139.436L206.347 138.862C207.12 138.087 207.127 136.836 206.367 136.053C206.585 135.636 206.768 135.198 206.911 134.742C208.001 134.726 208.88 133.837 208.88 132.742V131.929C208.88 130.834 208.001 129.945 206.911 129.929C206.768 129.472 206.585 129.034 206.367 128.616C207.128 127.834 207.122 126.582 206.347 125.808L205.773 125.234C204.998 124.459 203.747 124.453 202.965 125.214C202.548 124.996 202.11 124.813 201.655 124.67C201.639 123.579 200.75 122.7 199.655 122.7H198.844C197.749 122.7 196.86 123.58 196.845 124.671C196.389 124.814 195.951 124.997 195.535 125.215C194.753 124.453 193.502 124.46 192.727 125.234L192.153 125.809C191.379 126.584 191.372 127.836 192.134 128.618C191.916 129.035 191.734 129.473 191.591 129.929C190.5 129.944 189.62 130.834 189.62 131.929L189.62 132.742C189.62 133.837 190.5 134.727 191.591 134.742Z" fill="white"/>
+<ellipse cx="199.25" cy="132.344" rx="4.64712" ry="4.64982" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M183.409 146.613C183.424 147.006 183.475 147.393 183.562 147.769C182.896 148.342 182.71 149.324 183.165 150.112C183.62 150.9 184.563 151.23 185.391 150.94C185.674 151.202 185.982 151.44 186.313 151.648C186.247 152.523 186.809 153.35 187.689 153.586C188.567 153.821 189.468 153.387 189.848 152.596C190.24 152.581 190.626 152.53 191.003 152.443C191.574 153.111 192.558 153.298 193.346 152.843C194.135 152.387 194.465 151.442 194.173 150.612C194.435 150.33 194.673 150.021 194.881 149.689C195.757 149.756 196.584 149.193 196.819 148.314C197.055 147.435 196.621 146.534 195.83 146.154C195.816 145.761 195.764 145.374 195.678 144.997C196.343 144.425 196.529 143.442 196.075 142.654C195.62 141.866 194.677 141.537 193.849 141.827C193.566 141.563 193.257 141.325 192.924 141.116C192.991 140.241 192.428 139.414 191.549 139.179C190.67 138.943 189.769 139.378 189.389 140.17C188.997 140.184 188.611 140.236 188.235 140.323C187.663 139.657 186.681 139.47 185.893 139.925C185.105 140.381 184.775 141.325 185.066 142.154C184.803 142.436 184.565 142.745 184.357 143.077C183.482 143.011 182.655 143.574 182.42 144.453C182.185 145.332 182.619 146.232 183.409 146.613Z" fill="white"/>
+<ellipse rx="3.59691" ry="3.59873" transform="matrix(0.965888 0.25896 -0.258679 0.965963 189.618 146.39)" fill="#2D2D2D"/>
+<rect x="166.465" y="105.223" width="27.5577" height="27.5738" rx="13.7789" fill="#ED1C24"/>
+<path d="M177.775 114.122C177.775 114.122 171.458 117.969 177.411 121.79C178.556 122.534 182.71 124.603 182.592 126.517C182.592 126.517 185.11 122.797 181.429 120.456C177.648 118.06 176.702 115.501 177.775 114.122Z" fill="white"/>
+<path d="M175.575 121.471C175.575 121.471 173.321 124.883 177.757 125.582C178.193 125.637 181.401 125.972 182.237 127.025C182.237 127.025 182.165 125.21 179.547 124.139C176.939 123.069 175.866 122.805 175.575 121.471Z" fill="white"/>
+<path d="M184.301 117.887C181.592 115.056 180.838 113.305 182.001 111.036C182.001 111.036 173.921 114.14 181.901 119.648C184.755 121.617 184.282 123.631 184.282 123.704C184.728 123.241 187.009 120.718 184.301 117.887Z" fill="white"/>
+<rect x="84.1463" y="43.8325" width="37.742" height="46.6676" rx="10" fill="white"/>
+<rect x="84.1463" y="43.8325" width="37.742" height="46.6676" rx="10" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M99.6547 64.0932C99.797 64.5469 99.9784 64.9833 100.195 65.3984C99.4324 66.1808 99.4385 67.4333 100.213 68.2081L100.788 68.7825C101.561 69.5562 102.811 69.5635 103.594 68.8044C104.012 69.0236 104.451 69.2069 104.908 69.3505C104.923 70.4422 105.813 71.3227 106.908 71.3227H107.719C108.814 71.3227 109.704 70.4426 109.719 69.3511C110.174 69.2081 110.613 69.0257 111.029 68.8077C111.811 69.5686 113.062 69.5618 113.836 68.7874L114.41 68.2128C115.184 67.4385 115.191 66.1874 114.431 65.4046C114.649 64.9876 114.831 64.5492 114.974 64.0932C116.065 64.0768 116.944 63.1878 116.944 62.0934V61.2797C116.944 60.1854 116.065 59.2964 114.975 59.28C114.832 58.8237 114.649 58.3849 114.431 57.9677C115.192 57.1852 115.185 55.9337 114.411 55.1593L113.837 54.585C113.062 53.8107 111.811 53.804 111.029 54.5648C110.612 54.3469 110.174 54.1646 109.719 54.0217C109.703 52.9307 108.814 52.0511 107.719 52.0511H106.908C105.813 52.0511 104.924 52.931 104.908 54.0223C104.453 54.1653 104.015 54.3478 103.599 54.5659C102.816 53.8045 101.565 53.8111 100.791 54.5857L100.217 55.1603C99.4427 55.935 99.4362 57.187 100.197 57.9697C99.9797 58.3863 99.7974 58.8244 99.6546 59.28C98.5633 59.2954 97.6834 60.1848 97.6834 61.2797L97.6834 62.0934C97.6834 63.1884 98.5634 64.0779 99.6547 64.0932Z" fill="white"/>
+<ellipse cx="107.314" cy="61.6955" rx="4.64712" ry="4.64982" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M91.4731 75.9643C91.4875 76.3568 91.5391 76.7436 91.6255 77.1202C90.9601 77.6927 90.7738 78.6751 91.2285 79.4631C91.6832 80.2513 92.6269 80.581 93.4552 80.2905C93.7373 80.5529 94.0455 80.7906 94.3772 80.9988C94.3104 81.8744 94.8732 82.7012 95.7523 82.9368C96.6311 83.1723 97.5317 82.7379 97.9118 81.9466C98.3039 81.9322 98.6902 81.8805 99.0664 81.7942C99.638 82.462 100.621 82.6494 101.41 82.1937C102.199 81.7381 102.528 80.7925 102.236 79.9634C102.499 79.681 102.737 79.3724 102.945 79.0403C103.821 79.1069 104.648 78.544 104.883 77.6647C105.118 76.7859 104.684 75.8854 103.894 75.5045C103.879 75.1119 103.828 74.7249 103.742 74.3481C104.407 73.7756 104.593 72.7933 104.138 72.0052C103.684 71.2173 102.741 70.8875 101.912 71.1776C101.63 70.9144 101.32 70.6761 100.988 70.4674C101.054 69.5919 100.492 68.7653 99.6126 68.5297C98.7334 68.2942 97.8325 68.729 97.4527 69.5208C97.0608 69.5354 96.6746 69.5872 96.2985 69.6736C95.7267 69.0075 94.7446 68.821 93.9566 69.2762C93.1685 69.7315 92.8388 70.676 93.1297 71.5047C92.867 71.7873 92.6292 72.0961 92.4207 72.4284C91.5454 72.3624 90.7192 72.9252 90.4838 73.8042C90.2485 74.6829 90.6825 75.5835 91.4731 75.9643Z" fill="white"/>
+<ellipse rx="3.59691" ry="3.59873" transform="matrix(0.965888 0.25896 -0.258679 0.965963 97.6817 75.7413)" fill="#2D2D2D"/>
+<rect x="74.5291" y="34.575" width="27.5577" height="27.5738" rx="13.7789" fill="#ED1C24"/>
+<path d="M85.8387 43.473C85.8387 43.473 79.5219 47.3205 85.4751 51.1408C86.6203 51.8849 90.7739 53.9538 90.6557 55.8685C90.6557 55.8685 93.1734 52.148 89.4924 49.8069C85.7114 47.4113 84.7662 44.8523 85.8387 43.473Z" fill="white"/>
+<path d="M83.6391 50.8227C83.6391 50.8227 81.385 54.2346 85.8204 54.9333C86.2566 54.9878 89.465 55.3235 90.3012 56.3761C90.3012 56.3761 90.2285 54.5613 87.6109 53.4905C85.0024 52.4197 83.9299 52.1566 83.6391 50.8227Z" fill="white"/>
+<path d="M92.3645 47.2384C89.656 44.4072 88.9016 42.6559 90.065 40.3873C90.065 40.3873 81.985 43.4907 89.965 48.9988C92.8189 50.9679 92.3463 52.9824 92.3463 53.055C92.7917 52.5922 95.0729 50.0696 92.3645 47.2384Z" fill="white"/>
+<rect x="176.083" y="43.8325" width="37.742" height="46.6676" rx="10" fill="white"/>
+<rect x="176.083" y="43.8325" width="37.742" height="46.6676" rx="10" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M191.591 64.0932C191.733 64.5469 191.915 64.9833 192.131 65.3984C191.369 66.1808 191.375 67.4333 192.15 68.2081L192.724 68.7825C193.498 69.5562 194.748 69.5635 195.53 68.8044C195.948 69.0236 196.388 69.2069 196.845 69.3505C196.86 70.4422 197.749 71.3227 198.845 71.3227H199.656C200.751 71.3227 201.64 70.4426 201.655 69.3511C202.111 69.2081 202.549 69.0257 202.966 68.8077C203.748 69.5686 204.999 69.5618 205.773 68.7874L206.347 68.2128C207.121 67.4385 207.128 66.1874 206.367 65.4046C206.585 64.9876 206.768 64.5492 206.911 64.0932C208.001 64.0768 208.88 63.1878 208.88 62.0934V61.2797C208.88 60.1854 208.001 59.2964 206.911 59.28C206.768 58.8237 206.585 58.3849 206.367 57.9677C207.128 57.1852 207.122 55.9337 206.347 55.1593L205.773 54.585C204.999 53.8107 203.748 53.804 202.965 54.5648C202.549 54.3469 202.111 54.1646 201.655 54.0217C201.64 52.9307 200.75 52.0511 199.656 52.0511H198.845C197.75 52.0511 196.86 52.931 196.845 54.0223C196.389 54.1653 195.951 54.3478 195.535 54.5659C194.753 53.8045 193.502 53.8111 192.728 54.5857L192.153 55.1603C191.379 55.935 191.373 57.187 192.134 57.9697C191.916 58.3863 191.734 58.8244 191.591 59.28C190.5 59.2954 189.62 60.1848 189.62 61.2797L189.62 62.0934C189.62 63.1884 190.5 64.0779 191.591 64.0932Z" fill="white"/>
+<ellipse cx="199.25" cy="61.6955" rx="4.64712" ry="4.64982" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M183.41 75.9643C183.424 76.3568 183.476 76.7436 183.562 77.1202C182.897 77.6927 182.71 78.6751 183.165 79.4631C183.62 80.2513 184.563 80.581 185.392 80.2905C185.674 80.553 185.982 80.7906 186.314 80.9988C186.247 81.8744 186.81 82.7012 187.689 82.9368C188.568 83.1723 189.468 82.7379 189.848 81.9466C190.24 81.9322 190.627 81.8805 191.003 81.7942C191.574 82.462 192.558 82.6494 193.347 82.1937C194.135 81.7381 194.465 80.7925 194.173 79.9634C194.435 79.6809 194.673 79.3724 194.882 79.0403C195.757 79.1069 196.584 78.544 196.82 77.6647C197.055 76.7859 196.621 75.8854 195.83 75.5045C195.816 75.1119 195.764 74.7249 195.678 74.3482C196.343 73.7757 196.53 72.7933 196.075 72.0052C195.62 71.2173 194.677 70.8875 193.849 71.1777C193.566 70.9144 193.257 70.6761 192.924 70.4674C192.991 69.5919 192.428 68.7653 191.549 68.5297C190.67 68.2942 189.769 68.729 189.389 69.5208C188.997 69.5354 188.611 69.5872 188.235 69.6736C187.663 69.0075 186.681 68.821 185.893 69.2762C185.105 69.7315 184.775 70.676 185.066 71.5046C184.803 71.7873 184.566 72.0961 184.357 72.4284C183.482 72.3624 182.656 72.9252 182.42 73.8042C182.185 74.6829 182.619 75.5834 183.41 75.9643Z" fill="white"/>
+<ellipse rx="3.59691" ry="3.59873" transform="matrix(0.965888 0.25896 -0.258679 0.965963 189.618 75.7413)" fill="#2D2D2D"/>
+<rect x="166.466" y="34.575" width="27.5577" height="27.5738" rx="13.7789" fill="#ED1C24"/>
+<path d="M177.775 43.473C177.775 43.473 171.458 47.3205 177.411 51.1408C178.557 51.8849 182.71 53.9538 182.592 55.8685C182.592 55.8685 185.11 52.148 181.429 49.8069C177.648 47.4113 176.703 44.8523 177.775 43.473Z" fill="white"/>
+<path d="M175.575 50.8227C175.575 50.8227 173.321 54.2346 177.757 54.9333C178.193 54.9878 181.401 55.3235 182.238 56.3761C182.238 56.3761 182.165 54.5613 179.547 53.4905C176.939 52.4197 175.866 52.1566 175.575 50.8227Z" fill="white"/>
+<path d="M184.301 47.2384C181.592 44.4072 180.838 42.6559 182.001 40.3873C182.001 40.3873 173.921 43.4907 181.901 48.9988C184.755 50.9679 184.283 52.9824 184.283 53.055C184.728 52.5922 187.009 50.0696 184.301 47.2384Z" fill="white"/>
+</svg>
diff --git a/public/img/features/sql/hero-image.svg b/public/img/features/sql/hero-image.svg
new file mode 100644
index 0000000..874b4d5
--- /dev/null
+++ b/public/img/features/sql/hero-image.svg
@@ -0,0 +1,14 @@
+<svg width="583" height="365" viewBox="0 0 583 365" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M81.4435 32.5022L55.004 50.5035" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M78.6308 125.884L54.4415 142.76" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M54.4415 17.9994L81.4435 1V33.8656L161.324 78.6308" stroke="white" stroke-linejoin="round"/>
+<path d="M160.762 78.6306L132.072 95.5069L132.635 159.074L160.762 142.198V78.6306Z" stroke="white" stroke-linejoin="round"/>
+<path d="M131.51 159.074L53.8789 110.696V142.76L1 51.0662L53.8789 18.4387V51.0662L132.635 94.9444" stroke="white" stroke-linejoin="round"/>
+<path d="M429.606 254.374H126.843V346.799H126.916C125.981 369.843 140.744 393.061 171.204 410.647C230.31 444.772 326.139 444.772 385.245 410.647C415.706 393.061 430.468 369.843 429.533 346.799H429.606V254.374Z" fill="#0070CC" stroke="white"/>
+<path d="M171.205 194.645C230.311 160.52 326.14 160.52 385.246 194.645C444.352 228.77 444.352 284.097 385.246 318.222C326.14 352.347 230.311 352.347 171.205 318.222C112.099 284.097 112.099 228.77 171.205 194.645Z" fill="#0070CC" stroke="white"/>
+<path d="M429.606 150.299H126.843V242.724H126.916C125.981 265.769 140.744 288.986 171.204 306.572C230.31 340.697 326.139 340.697 385.245 306.572C415.706 288.986 430.468 265.769 429.533 242.724H429.606V150.299Z" fill="#0070CC" stroke="white"/>
+<path d="M171.205 90.5702C230.311 56.4454 326.14 56.4454 385.246 90.5702C444.352 124.695 444.352 180.022 385.246 214.147C326.14 248.272 230.311 248.272 171.205 214.147C112.099 180.022 112.099 124.695 171.205 90.5702Z" fill="#0070CC" stroke="white"/>
+<path d="M410 281.572V212.344L496.69 265.356V226.689L555.939 326.476L489.83 364.52V326.476L410 281.572Z" fill="#0070CC" stroke="white" stroke-linejoin="round"/>
+<path d="M441.183 198L410 212.634L496.792 265.617V230.799L441.183 198Z" fill="#0070CC" stroke="white" stroke-linejoin="round"/>
+<path d="M496.69 226.689L524.132 211.097L582.133 311.674L552.82 328.347" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+</svg>
diff --git a/public/img/features/sql/image.svg b/public/img/features/sql/image.svg
new file mode 100644
index 0000000..fe72396
--- /dev/null
+++ b/public/img/features/sql/image.svg
@@ -0,0 +1,40 @@
+<svg width="280" height="515" viewBox="0 0 280 515" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="17.2524" y="1.5459" width="261" height="173.815" rx="9" fill="white" stroke="black" stroke-width="2"/>
+<rect x="5.18042" y="10.0723" width="262.831" height="172.771" rx="10" fill="#2D2D2D"/>
+<path d="M40.8967 39.4457C40.7154 39.371 40.5127 39.3177 40.2887 39.2857C40.0754 39.243 39.8141 39.2217 39.5047 39.2217C39.0674 39.2217 38.6354 39.3017 38.2087 39.4617C37.7927 39.6217 37.4194 39.883 37.0887 40.2457C36.7687 40.6084 36.5074 41.083 36.3047 41.6697C36.1127 42.2564 36.0167 42.9764 36.0167 43.8297C36.0167 44.5977 36.1021 45.2697 36.2727 45.8457C36.4541 46.4217 36.6994 46.9017 37.0087 47.2857C37.3287 47.6697 37.7074 47.9577 38.1447 48.1497C38.5927 48.3417 39.0887 48.4377 39.6327 48.4377C39.9101 48.4377 40.1661 48.4164 40.4007 48.3737C40.6461 48.3204 40.8701 48.251 41.0727 48.1657V46.5657H42.2567V48.7257L42.2727 48.7577C41.9527 49.003 41.5474 49.211 41.0567 49.3817C40.5661 49.5417 39.9687 49.6217 39.2647 49.6217C38.5927 49.6217 37.9687 49.5097 37.3927 49.2857C36.8274 49.051 36.3367 48.699 35.9207 48.2297C35.5047 47.7604 35.1794 47.163 34.9447 46.4377C34.7207 45.7017 34.6087 44.8324 34.6087 43.8297C34.6087 42.7844 34.7367 41.899 34.9927 41.1737C35.2487 40.4377 35.5954 39.8404 36.0327 39.3817C36.4701 38.9124 36.9767 38.571 37.5527 38.3577C38.1394 38.1444 38.7634 38.0377 39.4247 38.0377C39.7874 38.0377 40.1021 38.0537 40.3687 38.0857C40.6354 38.107 40.8701 38.1444 41.0727 38.1977C41.2754 38.2404 41.4514 38.299 41.6007 38.3737C41.7607 38.4484 41.9154 38.5337 42.0647 38.6297H42.0807V41.1577H40.8967V39.4457ZM45.3625 38.3417C45.7678 38.267 46.2318 38.2084 46.7545 38.1657C47.2878 38.123 47.7731 38.1017 48.2105 38.1017C48.7011 38.1017 49.1651 38.155 49.6025 38.2617C50.0505 38.3684 50.4398 38.5444 50.7705 38.7897C51.1118 39.035 51.3838 39.355 51.5865 39.7497C51.7891 40.1444 51.8905 40.6244 51.8905 41.1897C51.8905 41.627 51.8158 42.0164 51.6665 42.3577C51.5278 42.6884 51.3518 42.9764 51.1385 43.2217C50.9358 43.4564 50.7225 43.6484 50.4985 43.7977C50.2745 43.947 50.0825 44.0537 49.9225 44.1177L52.8825 49.4297H51.3305L48.6905 44.5017H46.6905V49.4297H45.3625V38.3417ZM48.2425 39.2537C48.1038 39.2537 47.9598 39.2537 47.8105 39.2537C47.6611 39.2537 47.5171 39.259 47.3785 39.2697C47.2398 39.2804 47.1065 39.291 46.9785 39.3017C46.8611 39.3124 46.7651 39.3284 46.6905 39.3497V43.4777H47.9385C48.6745 43.4777 49.2825 43.2964 49.7625 42.9337C50.2425 42.571 50.4825 42.0057 50.4825 41.2377C50.4825 40.6617 50.2851 40.187 49.8905 39.8137C49.4958 39.4404 48.9465 39.2537 48.2425 39.2537ZM55.6682 38.2297H62.2442V39.4137H56.9962V43.0777H61.8442V44.2617H56.9962V48.2457H62.3242V49.4297H55.6682V38.2297ZM71.046 46.3257H66.742L65.718 49.4297H64.406L68.15 38.2297H69.718L73.494 49.4297H72.102L71.046 46.3257ZM67.158 45.1737H70.678L69.03 39.9097H68.838L67.158 45.1737ZM74.9837 38.2297H83.3037V41.1577H82.1197V39.4137H79.7997V48.2457H81.5597V49.4297H76.7117V48.2457H78.4717V39.4137H76.1677V41.1577H74.9837V38.2297ZM86.2495 38.2297H92.8255V39.4137H87.5775V43.0777H92.4255V44.2617H87.5775V48.2457H92.9055V49.4297H86.2495V38.2297ZM105.421 41.4297H107.325V39.8457L108.573 39.4937V41.4297H112.845V42.5017H108.573V46.2777C108.573 47.0564 108.76 47.6324 109.133 48.0057C109.517 48.379 110.061 48.5657 110.765 48.5657C111.245 48.5657 111.661 48.475 112.013 48.2937C112.376 48.1124 112.701 47.915 112.989 47.7017L113.405 48.6457C113.032 48.9444 112.584 49.1844 112.061 49.3657C111.549 49.547 111.021 49.6377 110.477 49.6377C110.05 49.6377 109.645 49.5737 109.261 49.4457C108.888 49.3284 108.557 49.1417 108.269 48.8857C107.981 48.6297 107.752 48.3044 107.581 47.9097C107.41 47.5044 107.325 47.0244 107.325 46.4697V42.5017H105.421V41.4297ZM116.847 42.0537C117.305 41.787 117.823 41.595 118.399 41.4777C118.975 41.3604 119.54 41.3017 120.095 41.3017C120.639 41.3017 121.081 41.387 121.423 41.5577C121.775 41.7284 122.047 41.9524 122.239 42.2297C122.441 42.4964 122.575 42.8057 122.639 43.1577C122.713 43.499 122.751 43.8457 122.751 44.1977C122.751 44.603 122.74 45.035 122.719 45.4937C122.697 45.9524 122.681 46.411 122.671 46.8697C122.671 47.403 122.703 47.9097 122.767 48.3897H123.839V49.4297H121.711L121.567 48.2297H121.487C121.423 48.3257 121.327 48.4484 121.199 48.5977C121.071 48.747 120.9 48.8964 120.687 49.0457C120.484 49.1844 120.233 49.307 119.935 49.4137C119.636 49.5204 119.284 49.5737 118.879 49.5737C118.089 49.5737 117.465 49.371 117.007 48.9657C116.548 48.5604 116.319 48.0057 116.319 47.3017C116.319 46.7577 116.436 46.3044 116.671 45.9417C116.916 45.579 117.263 45.3017 117.711 45.1097C118.159 44.9177 118.697 44.8057 119.327 44.7737C119.967 44.7417 120.681 44.7844 121.471 44.9017C121.524 44.411 121.529 44.0057 121.487 43.6857C121.455 43.355 121.369 43.0937 121.231 42.9017C121.103 42.7097 120.916 42.5764 120.671 42.5017C120.436 42.4164 120.143 42.3737 119.791 42.3737C119.311 42.3737 118.852 42.443 118.415 42.5817C117.977 42.7097 117.588 42.843 117.247 42.9817L116.847 42.0537ZM119.199 48.5017C119.497 48.5017 119.775 48.4537 120.031 48.3577C120.287 48.2617 120.511 48.139 120.703 47.9897C120.895 47.8404 121.055 47.6804 121.183 47.5097C121.311 47.3284 121.407 47.1577 121.471 46.9977V45.8777C120.916 45.7817 120.404 45.7337 119.935 45.7337C119.465 45.7337 119.06 45.787 118.719 45.8937C118.377 45.9897 118.111 46.1444 117.919 46.3577C117.727 46.571 117.631 46.8484 117.631 47.1897C117.631 47.5417 117.748 47.851 117.983 48.1177C118.228 48.3737 118.633 48.5017 119.199 48.5017ZM125.344 38.2297H127.904V42.3417H127.984C128.262 41.9897 128.619 41.7177 129.056 41.5257C129.494 41.3337 129.968 41.2377 130.48 41.2377C132.827 41.2377 134 42.5924 134 45.3017C134 46.6777 133.622 47.7337 132.864 48.4697C132.107 49.195 131.03 49.5577 129.632 49.5577C128.971 49.5577 128.374 49.4937 127.84 49.3657C127.307 49.2377 126.918 49.0884 126.672 48.9177V39.3017H125.344V38.2297ZM130.32 42.3097C129.68 42.3097 129.163 42.491 128.768 42.8537C128.374 43.2164 128.086 43.7284 127.904 44.3897V48.0697C128.15 48.1977 128.443 48.299 128.784 48.3737C129.126 48.4484 129.483 48.4857 129.856 48.4857C130.283 48.4857 130.667 48.427 131.008 48.3097C131.36 48.1817 131.659 47.9897 131.904 47.7337C132.15 47.467 132.336 47.131 132.464 46.7257C132.603 46.3204 132.672 45.8404 132.672 45.2857C132.672 44.8804 132.63 44.4964 132.544 44.1337C132.459 43.771 132.32 43.4564 132.128 43.1897C131.947 42.9124 131.707 42.699 131.408 42.5497C131.11 42.3897 130.747 42.3097 130.32 42.3097ZM137.41 38.2297H140.066V46.7417C140.066 47.3924 140.173 47.851 140.386 48.1177C140.61 48.3844 140.936 48.5177 141.362 48.5177C141.661 48.5177 141.944 48.4644 142.21 48.3577C142.488 48.251 142.792 48.0697 143.122 47.8137L143.698 48.6937C143.528 48.843 143.341 48.9764 143.138 49.0937C142.936 49.211 142.728 49.3124 142.514 49.3977C142.301 49.4724 142.088 49.531 141.874 49.5737C141.661 49.6164 141.464 49.6377 141.282 49.6377C140.888 49.6377 140.536 49.5844 140.226 49.4777C139.917 49.3817 139.656 49.2217 139.442 48.9977C139.24 48.7737 139.085 48.4804 138.978 48.1177C138.872 47.7444 138.818 47.2857 138.818 46.7417V39.3017H137.41V38.2297ZM154.164 48.4217C153.972 48.5924 153.743 48.7524 153.476 48.9017C153.22 49.051 152.937 49.179 152.628 49.2857C152.319 49.3924 151.993 49.4724 151.652 49.5257C151.321 49.5897 150.985 49.6217 150.644 49.6217C150.004 49.6217 149.439 49.5257 148.948 49.3337C148.457 49.131 148.047 48.8484 147.716 48.4857C147.385 48.1124 147.135 47.6697 146.964 47.1577C146.793 46.6457 146.708 46.0697 146.708 45.4297C146.708 44.7577 146.799 44.1604 146.98 43.6377C147.172 43.115 147.444 42.6777 147.796 42.3257C148.148 41.9737 148.575 41.707 149.076 41.5257C149.577 41.3337 150.137 41.2377 150.756 41.2377C151.204 41.2377 151.647 41.2964 152.084 41.4137C152.521 41.531 152.905 41.755 153.236 42.0857C153.577 42.4057 153.839 42.8537 154.02 43.4297C154.201 43.995 154.265 44.731 154.212 45.6377H148.02C148.02 46.5977 148.276 47.3177 148.788 47.7977C149.311 48.267 150.004 48.5017 150.868 48.5017C151.156 48.5017 151.439 48.4697 151.716 48.4057C152.004 48.331 152.276 48.2457 152.532 48.1497C152.788 48.0537 153.012 47.947 153.204 47.8297C153.407 47.7124 153.561 47.6057 153.668 47.5097L154.164 48.4217ZM150.788 42.2937C150.436 42.2937 150.1 42.331 149.78 42.4057C149.471 42.4804 149.193 42.6084 148.948 42.7897C148.713 42.9604 148.516 43.1897 148.356 43.4777C148.207 43.755 148.111 44.1017 148.068 44.5177H153.044C152.991 43.8137 152.761 43.2697 152.356 42.8857C151.961 42.491 151.439 42.2937 150.788 42.2937ZM159.622 48.5497C159.622 48.2084 159.718 47.947 159.91 47.7657C160.102 47.5737 160.358 47.4777 160.678 47.4777C161.019 47.4777 161.286 47.5737 161.478 47.7657C161.67 47.947 161.766 48.2084 161.766 48.5497C161.766 48.859 161.67 49.115 161.478 49.3177C161.286 49.5204 161.019 49.6217 160.678 49.6217C160.358 49.6217 160.102 49.5204 159.91 49.3177C159.718 49.115 159.622 48.859 159.622 48.5497ZM169.815 48.5497C169.815 48.2084 169.911 47.947 170.103 47.7657C170.295 47.5737 170.551 47.4777 170.871 47.4777C171.213 47.4777 171.479 47.5737 171.671 47.7657C171.863 47.947 171.959 48.2084 171.959 48.5497C171.959 48.859 171.863 49.115 171.671 49.3177C171.479 49.5204 171.213 49.6217 170.871 49.6217C170.551 49.6217 170.295 49.5204 170.103 49.3177C169.911 49.115 169.815 48.859 169.815 48.5497ZM180.009 48.5497C180.009 48.2084 180.105 47.947 180.297 47.7657C180.489 47.5737 180.745 47.4777 181.065 47.4777C181.407 47.4777 181.673 47.5737 181.865 47.7657C182.057 47.947 182.153 48.2084 182.153 48.5497C182.153 48.859 182.057 49.115 181.865 49.3177C181.673 49.5204 181.407 49.6217 181.065 49.6217C180.745 49.6217 180.489 49.5204 180.297 49.3177C180.105 49.115 180.009 48.859 180.009 48.5497ZM190.139 48.5497C190.139 48.2297 190.24 47.9737 190.443 47.7817C190.656 47.579 190.928 47.4777 191.259 47.4777C191.664 47.4777 191.979 47.6217 192.203 47.9097C192.427 48.187 192.539 48.5817 192.539 49.0937C192.539 49.5097 192.47 49.8724 192.331 50.1817C192.192 50.5017 192.016 50.7684 191.803 50.9817C191.6 51.2057 191.376 51.3817 191.131 51.5097C190.896 51.6484 190.678 51.7497 190.475 51.8137L190.075 51.1897C190.459 51.0404 190.79 50.827 191.067 50.5497C191.344 50.2724 191.483 49.9364 191.483 49.5417C191.334 49.5737 191.216 49.5897 191.131 49.5897C190.822 49.5897 190.576 49.5044 190.395 49.3337C190.224 49.1524 190.139 48.891 190.139 48.5497ZM190.283 42.2617C190.283 41.9204 190.379 41.659 190.571 41.4777C190.763 41.2857 191.019 41.1897 191.339 41.1897C191.68 41.1897 191.947 41.2857 192.139 41.4777C192.331 41.659 192.427 41.9204 192.427 42.2617C192.427 42.571 192.331 42.827 192.139 43.0297C191.947 43.2324 191.68 43.3337 191.339 43.3337C191.019 43.3337 190.763 43.2324 190.571 43.0297C190.379 42.827 190.283 42.571 190.283 42.2617Z" fill="white"/>
+<path d="M40.8967 73.3871C40.7154 73.3124 40.5127 73.2591 40.2887 73.2271C40.0754 73.1844 39.8141 73.1631 39.5047 73.1631C39.0674 73.1631 38.6354 73.2431 38.2087 73.4031C37.7927 73.5631 37.4194 73.8244 37.0887 74.1871C36.7687 74.5498 36.5074 75.0244 36.3047 75.6111C36.1127 76.1978 36.0167 76.9178 36.0167 77.7711C36.0167 78.5391 36.1021 79.2111 36.2727 79.7871C36.4541 80.3631 36.6994 80.8431 37.0087 81.2271C37.3287 81.6111 37.7074 81.8991 38.1447 82.0911C38.5927 82.2831 39.0887 82.3791 39.6327 82.3791C39.9101 82.3791 40.1661 82.3578 40.4007 82.3151C40.6461 82.2618 40.8701 82.1924 41.0727 82.1071V80.5071H42.2567V82.6671L42.2727 82.6991C41.9527 82.9444 41.5474 83.1524 41.0567 83.3231C40.5661 83.4831 39.9687 83.5631 39.2647 83.5631C38.5927 83.5631 37.9687 83.4511 37.3927 83.2271C36.8274 82.9924 36.3367 82.6404 35.9207 82.1711C35.5047 81.7018 35.1794 81.1044 34.9447 80.3791C34.7207 79.6431 34.6087 78.7738 34.6087 77.7711C34.6087 76.7258 34.7367 75.8404 34.9927 75.1151C35.2487 74.3791 35.5954 73.7818 36.0327 73.3231C36.4701 72.8538 36.9767 72.5124 37.5527 72.2991C38.1394 72.0858 38.7634 71.9791 39.4247 71.9791C39.7874 71.9791 40.1021 71.9951 40.3687 72.0271C40.6354 72.0484 40.8701 72.0858 41.0727 72.1391C41.2754 72.1818 41.4514 72.2404 41.6007 72.3151C41.7607 72.3898 41.9154 72.4751 42.0647 72.5711H42.0807V75.0991H40.8967V73.3871ZM45.3625 72.2831C45.7678 72.2084 46.2318 72.1498 46.7545 72.1071C47.2878 72.0644 47.7731 72.0431 48.2105 72.0431C48.7011 72.0431 49.1651 72.0964 49.6025 72.2031C50.0505 72.3098 50.4398 72.4858 50.7705 72.7311C51.1118 72.9764 51.3838 73.2964 51.5865 73.6911C51.7891 74.0858 51.8905 74.5658 51.8905 75.1311C51.8905 75.5684 51.8158 75.9578 51.6665 76.2991C51.5278 76.6298 51.3518 76.9178 51.1385 77.1631C50.9358 77.3978 50.7225 77.5898 50.4985 77.7391C50.2745 77.8884 50.0825 77.9951 49.9225 78.0591L52.8825 83.3711H51.3305L48.6905 78.4431H46.6905V83.3711H45.3625V72.2831ZM48.2425 73.1951C48.1038 73.1951 47.9598 73.1951 47.8105 73.1951C47.6611 73.1951 47.5171 73.2004 47.3785 73.2111C47.2398 73.2218 47.1065 73.2324 46.9785 73.2431C46.8611 73.2538 46.7651 73.2698 46.6905 73.2911V77.4191H47.9385C48.6745 77.4191 49.2825 77.2378 49.7625 76.8751C50.2425 76.5124 50.4825 75.9471 50.4825 75.1791C50.4825 74.6031 50.2851 74.1284 49.8905 73.7551C49.4958 73.3818 48.9465 73.1951 48.2425 73.1951ZM55.6682 72.1711H62.2442V73.3551H56.9962V77.0191H61.8442V78.2031H56.9962V82.1871H62.3242V83.3711H55.6682V72.1711ZM71.046 80.2671H66.742L65.718 83.3711H64.406L68.15 72.1711H69.718L73.494 83.3711H72.102L71.046 80.2671ZM67.158 79.1151H70.678L69.03 73.8511H68.838L67.158 79.1151ZM74.9837 72.1711H83.3037V75.0991H82.1197V73.3551H79.7997V82.1871H81.5597V83.3711H76.7117V82.1871H78.4717V73.3551H76.1677V75.0991H74.9837V72.1711ZM86.2495 72.1711H92.8255V73.3551H87.5775V77.0191H92.4255V78.2031H87.5775V82.1871H92.9055V83.3711H86.2495V72.1711ZM106.605 83.3711V82.2991H109.389V76.4431H106.605V75.3711H110.669V82.2991H113.389V83.3711H106.605ZM108.957 73.0991C108.957 72.8111 109.053 72.5658 109.245 72.3631C109.437 72.1498 109.682 72.0431 109.981 72.0431C110.29 72.0431 110.546 72.1498 110.749 72.3631C110.962 72.5658 111.069 72.8111 111.069 73.0991C111.069 73.3764 110.962 73.6111 110.749 73.8031C110.546 73.9951 110.29 74.0911 109.981 74.0911C109.682 74.0911 109.437 73.9951 109.245 73.8031C109.053 73.6111 108.957 73.3764 108.957 73.0991ZM116.607 78.1711C116.607 78.0751 116.601 77.9524 116.591 77.8031C116.591 77.6431 116.585 77.4831 116.575 77.3231C116.564 77.1524 116.548 76.9871 116.527 76.8271C116.516 76.6671 116.5 76.5284 116.479 76.4111H115.407V75.3711H117.551L117.695 76.6671H117.775C117.881 76.4858 118.02 76.3098 118.191 76.1391C118.372 75.9578 118.58 75.7978 118.815 75.6591C119.049 75.5098 119.311 75.3924 119.599 75.3071C119.887 75.2218 120.191 75.1791 120.511 75.1791C121.001 75.1791 121.433 75.2324 121.807 75.3391C122.191 75.4458 122.505 75.6378 122.751 75.9151C123.007 76.1818 123.199 76.5498 123.327 77.0191C123.455 77.4778 123.519 78.0644 123.519 78.7791V83.3711H122.271V79.0191C122.271 78.1338 122.127 77.4671 121.839 77.0191C121.551 76.5711 121.028 76.3471 120.271 76.3471C119.993 76.3471 119.721 76.4058 119.455 76.5231C119.199 76.6298 118.964 76.7738 118.751 76.9551C118.537 77.1364 118.351 77.3498 118.191 77.5951C118.031 77.8298 117.913 78.0804 117.839 78.3471V83.3711H116.607V78.1711ZM130.896 72.1711H133.488V80.6351C133.488 80.7311 133.494 80.8538 133.504 81.0031C133.515 81.1418 133.526 81.2911 133.536 81.4511C133.558 81.6111 133.579 81.7711 133.6 81.9311C133.622 82.0804 133.643 82.2138 133.664 82.3311H134.736V83.3711H132.608L132.448 82.1391H132.384C132.15 82.5444 131.798 82.8858 131.328 83.1631C130.87 83.4298 130.336 83.5631 129.728 83.5631C128.523 83.5631 127.632 83.2271 127.056 82.5551C126.491 81.8724 126.208 80.8164 126.208 79.3871C126.208 78.7151 126.304 78.1231 126.496 77.6111C126.688 77.0884 126.96 76.6564 127.312 76.3151C127.675 75.9631 128.107 75.6964 128.608 75.5151C129.11 75.3338 129.67 75.2431 130.288 75.2431C130.512 75.2431 130.71 75.2484 130.88 75.2591C131.062 75.2698 131.227 75.2858 131.376 75.3071C131.526 75.3284 131.664 75.3604 131.792 75.4031C131.931 75.4351 132.08 75.4724 132.24 75.5151V73.2431H130.896V72.1711ZM129.936 82.4911C130.587 82.4911 131.099 82.3258 131.472 81.9951C131.846 81.6538 132.102 81.1471 132.24 80.4751V76.7631C132.006 76.6031 131.739 76.4858 131.44 76.4111C131.152 76.3364 130.768 76.2991 130.288 76.2991C129.435 76.2991 128.763 76.5498 128.272 77.0511C127.782 77.5418 127.536 78.3204 127.536 79.3871C127.536 79.8244 127.574 80.2351 127.648 80.6191C127.734 80.9924 127.867 81.3178 128.048 81.5951C128.24 81.8724 128.491 82.0911 128.8 82.2511C129.11 82.4111 129.488 82.4911 129.936 82.4911ZM143.97 82.3631C143.778 82.5338 143.549 82.6938 143.282 82.8431C143.026 82.9924 142.744 83.1204 142.434 83.2271C142.125 83.3338 141.8 83.4138 141.458 83.4671C141.128 83.5311 140.792 83.5631 140.45 83.5631C139.81 83.5631 139.245 83.4671 138.754 83.2751C138.264 83.0724 137.853 82.7898 137.522 82.4271C137.192 82.0538 136.941 81.6111 136.77 81.0991C136.6 80.5871 136.514 80.0111 136.514 79.3711C136.514 78.6991 136.605 78.1018 136.786 77.5791C136.978 77.0564 137.25 76.6191 137.602 76.2671C137.954 75.9151 138.381 75.6484 138.882 75.4671C139.384 75.2751 139.944 75.1791 140.562 75.1791C141.01 75.1791 141.453 75.2378 141.89 75.3551C142.328 75.4724 142.712 75.6964 143.042 76.0271C143.384 76.3471 143.645 76.7951 143.826 77.3711C144.008 77.9364 144.072 78.6724 144.018 79.5791H137.826C137.826 80.5391 138.082 81.2591 138.594 81.7391C139.117 82.2084 139.81 82.4431 140.674 82.4431C140.962 82.4431 141.245 82.4111 141.522 82.3471C141.81 82.2724 142.082 82.1871 142.338 82.0911C142.594 81.9951 142.818 81.8884 143.01 81.7711C143.213 81.6538 143.368 81.5471 143.474 81.4511L143.97 82.3631ZM140.594 76.2351C140.242 76.2351 139.906 76.2724 139.586 76.3471C139.277 76.4218 139 76.5498 138.754 76.7311C138.52 76.9018 138.322 77.1311 138.162 77.4191C138.013 77.6964 137.917 78.0431 137.874 78.4591H142.85C142.797 77.7551 142.568 77.2111 142.162 76.8271C141.768 76.4324 141.245 76.2351 140.594 76.2351ZM149.748 79.2751L146.66 75.3711H148.26L150.564 78.3791L152.932 75.3711H154.372L151.284 79.2111L154.564 83.3711H153.028L150.484 80.0911L147.892 83.3711H146.436L149.748 79.2751ZM159.622 82.4911C159.622 82.1498 159.718 81.8884 159.91 81.7071C160.102 81.5151 160.358 81.4191 160.678 81.4191C161.019 81.4191 161.286 81.5151 161.478 81.7071C161.67 81.8884 161.766 82.1498 161.766 82.4911C161.766 82.8004 161.67 83.0564 161.478 83.2591C161.286 83.4618 161.019 83.5631 160.678 83.5631C160.358 83.5631 160.102 83.4618 159.91 83.2591C159.718 83.0564 159.622 82.8004 159.622 82.4911ZM169.815 82.4911C169.815 82.1498 169.911 81.8884 170.103 81.7071C170.295 81.5151 170.551 81.4191 170.871 81.4191C171.213 81.4191 171.479 81.5151 171.671 81.7071C171.863 81.8884 171.959 82.1498 171.959 82.4911C171.959 82.8004 171.863 83.0564 171.671 83.2591C171.479 83.4618 171.213 83.5631 170.871 83.5631C170.551 83.5631 170.295 83.4618 170.103 83.2591C169.911 83.0564 169.815 82.8004 169.815 82.4911ZM180.009 82.4911C180.009 82.1498 180.105 81.8884 180.297 81.7071C180.489 81.5151 180.745 81.4191 181.065 81.4191C181.407 81.4191 181.673 81.5151 181.865 81.7071C182.057 81.8884 182.153 82.1498 182.153 82.4911C182.153 82.8004 182.057 83.0564 181.865 83.2591C181.673 83.4618 181.407 83.5631 181.065 83.5631C180.745 83.5631 180.489 83.4618 180.297 83.2591C180.105 83.0564 180.009 82.8004 180.009 82.4911ZM190.139 82.4911C190.139 82.1711 190.24 81.9151 190.443 81.7231C190.656 81.5204 190.928 81.4191 191.259 81.4191C191.664 81.4191 191.979 81.5631 192.203 81.8511C192.427 82.1284 192.539 82.5231 192.539 83.0351C192.539 83.4511 192.47 83.8138 192.331 84.1231C192.192 84.4431 192.016 84.7098 191.803 84.9231C191.6 85.1471 191.376 85.3231 191.131 85.4511C190.896 85.5898 190.678 85.6911 190.475 85.7551L190.075 85.1311C190.459 84.9818 190.79 84.7684 191.067 84.4911C191.344 84.2138 191.483 83.8778 191.483 83.4831C191.334 83.5151 191.216 83.5311 191.131 83.5311C190.822 83.5311 190.576 83.4458 190.395 83.2751C190.224 83.0938 190.139 82.8324 190.139 82.4911ZM190.283 76.2031C190.283 75.8618 190.379 75.6004 190.571 75.4191C190.763 75.2271 191.019 75.1311 191.339 75.1311C191.68 75.1311 191.947 75.2271 192.139 75.4191C192.331 75.6004 192.427 75.8618 192.427 76.2031C192.427 76.5124 192.331 76.7684 192.139 76.9711C191.947 77.1738 191.68 77.2751 191.339 77.2751C191.019 77.2751 190.763 77.1738 190.571 76.9711C190.379 76.7684 190.283 76.5124 190.283 76.2031Z" fill="white"/>
+<path d="M34.5287 106.112H42.2087V107.296H39.0247V116.128H42.2087V117.312H34.5287V116.128H37.6967V107.296H34.5287V106.112ZM46.8985 110.304L46.0345 108.688H45.9705L46.1305 110.304V117.312H44.8825V106.112H45.7465L50.2585 113.089L51.0905 114.624H51.1705L50.9945 113.089V106.112H52.2425V117.312H51.3785L46.8985 110.304ZM56.3562 115.728C56.6762 115.899 57.0336 116.043 57.4282 116.16C57.8336 116.267 58.2389 116.32 58.6442 116.32C58.9962 116.32 59.3269 116.288 59.6362 116.224C59.9456 116.15 60.2122 116.038 60.4362 115.888C60.6709 115.728 60.8522 115.531 60.9802 115.296C61.1189 115.062 61.1882 114.784 61.1882 114.464C61.1882 114.027 61.0389 113.67 60.7402 113.392C60.4522 113.115 60.0896 112.87 59.6522 112.656C59.2149 112.443 58.7402 112.235 58.2282 112.032C57.7162 111.83 57.2416 111.59 56.8042 111.312C56.3669 111.035 55.9989 110.699 55.7002 110.304C55.4122 109.899 55.2682 109.387 55.2682 108.768C55.2682 108.331 55.3536 107.936 55.5242 107.584C55.7056 107.232 55.9562 106.934 56.2762 106.688C56.5962 106.443 56.9802 106.256 57.4282 106.128C57.8869 105.99 58.3936 105.92 58.9482 105.92C59.5882 105.92 60.1696 105.968 60.6922 106.064C61.2149 106.15 61.6309 106.267 61.9402 106.416L61.9722 106.4V106.432H61.9882L61.9722 106.48V109.04H60.7882V107.328C60.5216 107.264 60.2282 107.211 59.9082 107.168C59.5882 107.126 59.2469 107.104 58.8842 107.104C58.5322 107.104 58.2122 107.147 57.9242 107.232C57.6469 107.318 57.4069 107.435 57.2042 107.584C57.0122 107.723 56.8629 107.888 56.7562 108.08C56.6496 108.272 56.5962 108.475 56.5962 108.688C56.5962 109.104 56.7402 109.451 57.0282 109.728C57.3269 110.006 57.6949 110.256 58.1322 110.48C58.5696 110.694 59.0442 110.907 59.5562 111.12C60.0682 111.334 60.5429 111.584 60.9802 111.872C61.4176 112.15 61.7802 112.486 62.0682 112.88C62.3669 113.275 62.5162 113.766 62.5162 114.352C62.5162 114.832 62.4256 115.264 62.2442 115.648C62.0736 116.032 61.8229 116.363 61.4922 116.64C61.1722 116.918 60.7722 117.131 60.2922 117.28C59.8229 117.43 59.2896 117.505 58.6922 117.505C58.2869 117.505 57.9029 117.473 57.5402 117.409C57.1776 117.345 56.8416 117.264 56.5322 117.168C56.2336 117.072 55.9616 116.971 55.7162 116.864C55.4816 116.758 55.2949 116.667 55.1562 116.592L55.1722 116.544V113.952H56.3562V115.728ZM65.862 106.112H72.438V107.296H67.19V110.96H72.038V112.144H67.19V116.128H72.518V117.312H65.862V106.112ZM75.9437 106.224C76.3491 106.15 76.8131 106.091 77.3357 106.048C77.8691 106.006 78.3544 105.984 78.7917 105.984C79.2824 105.984 79.7464 106.038 80.1837 106.144C80.6317 106.251 81.0211 106.427 81.3517 106.672C81.6931 106.918 81.9651 107.238 82.1677 107.632C82.3704 108.027 82.4717 108.507 82.4717 109.072C82.4717 109.51 82.3971 109.899 82.2477 110.24C82.1091 110.571 81.9331 110.859 81.7197 111.104C81.5171 111.339 81.3037 111.531 81.0797 111.68C80.8557 111.83 80.6637 111.936 80.5037 112L83.4637 117.312H81.9117L79.2717 112.384H77.2717V117.312H75.9437V106.224ZM78.8237 107.136C78.6851 107.136 78.5411 107.136 78.3917 107.136C78.2424 107.136 78.0984 107.142 77.9597 107.152C77.8211 107.163 77.6877 107.174 77.5597 107.184C77.4424 107.195 77.3464 107.211 77.2717 107.232V111.36H78.5197C79.2557 111.36 79.8637 111.179 80.3437 110.816C80.8237 110.454 81.0637 109.888 81.0637 109.12C81.0637 108.544 80.8664 108.07 80.4717 107.696C80.0771 107.323 79.5277 107.136 78.8237 107.136ZM85.1775 106.112H93.4975V109.04H92.3135V107.296H89.9935V116.128H91.7535V117.312H86.9055V116.128H88.6655V107.296H86.3615V109.04H85.1775V106.112ZM105.885 106.112H113.565V107.296H110.381V116.128H113.565V117.312H105.885V116.128H109.053V107.296H105.885V106.112ZM118.255 110.304L117.391 108.688H117.327L117.487 110.304V117.312H116.239V106.112H117.103L121.615 113.089L122.447 114.624H122.527L122.351 113.089V106.112H123.599V117.312H122.735L118.255 110.304ZM125.952 106.112H134.272V109.04H133.088V107.296H130.768V116.128H132.528V117.312H127.68V116.128H129.44V107.296H127.136V109.04H125.952V106.112ZM136.274 111.712C136.274 109.856 136.6 108.427 137.25 107.424C137.912 106.422 138.925 105.92 140.29 105.92C141.037 105.92 141.666 106.059 142.178 106.336C142.701 106.614 143.122 107.008 143.442 107.52C143.762 108.022 143.992 108.63 144.13 109.344C144.269 110.048 144.338 110.838 144.338 111.712C144.338 113.568 144.008 114.998 143.346 116C142.696 117.003 141.677 117.505 140.29 117.505C139.554 117.505 138.93 117.366 138.418 117.088C137.906 116.811 137.49 116.422 137.17 115.92C136.85 115.408 136.621 114.8 136.482 114.096C136.344 113.382 136.274 112.587 136.274 111.712ZM137.682 111.712C137.682 112.331 137.72 112.918 137.794 113.472C137.88 114.027 138.024 114.518 138.226 114.944C138.429 115.36 138.696 115.696 139.026 115.952C139.357 116.198 139.778 116.32 140.29 116.32C141.208 116.32 141.874 115.947 142.29 115.201C142.717 114.454 142.93 113.291 142.93 111.712C142.93 111.104 142.888 110.523 142.802 109.968C142.728 109.403 142.589 108.912 142.386 108.497C142.184 108.07 141.912 107.734 141.57 107.488C141.229 107.232 140.802 107.104 140.29 107.104C139.384 107.104 138.722 107.483 138.306 108.24C137.89 108.987 137.682 110.144 137.682 111.712ZM156.39 109.312H158.294V107.728L159.542 107.376V109.312H163.814V110.384H159.542V114.16C159.542 114.939 159.728 115.515 160.102 115.888C160.486 116.262 161.03 116.448 161.734 116.448C162.214 116.448 162.63 116.358 162.982 116.176C163.344 115.995 163.67 115.798 163.958 115.584L164.374 116.528C164 116.827 163.552 117.067 163.03 117.248C162.518 117.43 161.99 117.521 161.446 117.521C161.019 117.521 160.614 117.457 160.23 117.329C159.856 117.211 159.526 117.024 159.238 116.768C158.95 116.512 158.72 116.187 158.55 115.792C158.379 115.387 158.294 114.907 158.294 114.352V110.384H156.39V109.312ZM167.815 109.936C168.274 109.67 168.791 109.478 169.367 109.36C169.943 109.243 170.509 109.184 171.063 109.184C171.607 109.184 172.05 109.27 172.391 109.44C172.743 109.611 173.015 109.835 173.207 110.112C173.41 110.379 173.543 110.688 173.607 111.04C173.682 111.382 173.719 111.728 173.719 112.08C173.719 112.486 173.709 112.918 173.687 113.376C173.666 113.835 173.65 114.294 173.639 114.752C173.639 115.286 173.671 115.792 173.735 116.272H174.807V117.312H172.679L172.535 116.112H172.455C172.391 116.208 172.295 116.331 172.167 116.48C172.039 116.63 171.869 116.779 171.655 116.928C171.453 117.067 171.202 117.19 170.903 117.296C170.605 117.403 170.253 117.457 169.847 117.457C169.058 117.457 168.434 117.254 167.975 116.848C167.517 116.443 167.287 115.888 167.287 115.184C167.287 114.64 167.405 114.187 167.639 113.824C167.885 113.462 168.231 113.184 168.679 112.992C169.127 112.8 169.666 112.688 170.295 112.656C170.935 112.624 171.65 112.667 172.439 112.784C172.493 112.294 172.498 111.888 172.455 111.568C172.423 111.238 172.338 110.976 172.199 110.784C172.071 110.592 171.885 110.459 171.639 110.384C171.405 110.299 171.111 110.256 170.759 110.256C170.279 110.256 169.821 110.326 169.383 110.464C168.946 110.592 168.557 110.726 168.215 110.864L167.815 109.936ZM170.167 116.384C170.466 116.384 170.743 116.336 170.999 116.24C171.255 116.144 171.479 116.022 171.671 115.872C171.863 115.723 172.023 115.563 172.151 115.392C172.279 115.211 172.375 115.04 172.439 114.88V113.76C171.885 113.664 171.373 113.616 170.903 113.616C170.434 113.616 170.029 113.67 169.687 113.776C169.346 113.872 169.079 114.027 168.887 114.24C168.695 114.454 168.599 114.731 168.599 115.072C168.599 115.424 168.717 115.734 168.951 116C169.197 116.256 169.602 116.384 170.167 116.384ZM176.313 106.112H178.873V110.224H178.953C179.231 109.872 179.588 109.6 180.025 109.408C180.463 109.216 180.937 109.12 181.449 109.12C183.796 109.12 184.969 110.475 184.969 113.184C184.969 114.56 184.591 115.616 183.833 116.352C183.076 117.078 181.999 117.441 180.601 117.441C179.94 117.441 179.343 117.377 178.809 117.248C178.276 117.12 177.887 116.971 177.641 116.8V107.184H176.313V106.112ZM181.289 110.192C180.649 110.192 180.132 110.374 179.737 110.736C179.343 111.099 179.055 111.611 178.873 112.272V115.952C179.119 116.08 179.412 116.182 179.753 116.257C180.095 116.331 180.452 116.368 180.825 116.368C181.252 116.368 181.636 116.31 181.977 116.192C182.329 116.064 182.628 115.872 182.873 115.616C183.119 115.35 183.305 115.014 183.433 114.608C183.572 114.203 183.641 113.723 183.641 113.168C183.641 112.763 183.599 112.379 183.513 112.016C183.428 111.654 183.289 111.339 183.097 111.072C182.916 110.795 182.676 110.582 182.377 110.432C182.079 110.272 181.716 110.192 181.289 110.192ZM188.379 106.112H191.035V114.624C191.035 115.275 191.142 115.734 191.355 116C191.579 116.267 191.904 116.4 192.331 116.4C192.63 116.4 192.912 116.347 193.179 116.24C193.456 116.134 193.76 115.952 194.091 115.696L194.667 116.576C194.496 116.726 194.31 116.859 194.107 116.976C193.904 117.094 193.696 117.195 193.483 117.28C193.27 117.355 193.056 117.414 192.843 117.457C192.63 117.499 192.432 117.521 192.251 117.521C191.856 117.521 191.504 117.467 191.195 117.361C190.886 117.264 190.624 117.104 190.411 116.88C190.208 116.656 190.054 116.363 189.947 116C189.84 115.627 189.787 115.168 189.787 114.624V107.184H188.379V106.112ZM205.133 116.304C204.941 116.475 204.711 116.635 204.445 116.785C204.189 116.934 203.906 117.062 203.597 117.168C203.287 117.275 202.962 117.355 202.621 117.409C202.29 117.473 201.954 117.505 201.613 117.505C200.973 117.505 200.407 117.409 199.917 117.216C199.426 117.014 199.015 116.731 198.685 116.368C198.354 115.995 198.103 115.552 197.933 115.04C197.762 114.528 197.677 113.952 197.677 113.312C197.677 112.64 197.767 112.043 197.949 111.52C198.141 110.998 198.413 110.56 198.765 110.208C199.117 109.856 199.543 109.59 200.045 109.408C200.546 109.216 201.106 109.12 201.725 109.12C202.173 109.12 202.615 109.179 203.053 109.296C203.49 109.414 203.874 109.638 204.205 109.968C204.546 110.288 204.807 110.736 204.989 111.312C205.17 111.878 205.234 112.614 205.181 113.52H198.989C198.989 114.48 199.245 115.2 199.757 115.68C200.279 116.15 200.973 116.384 201.837 116.384C202.125 116.384 202.407 116.352 202.685 116.288C202.973 116.214 203.245 116.128 203.501 116.032C203.757 115.936 203.981 115.83 204.173 115.712C204.375 115.595 204.53 115.488 204.637 115.392L205.133 116.304ZM201.757 110.176C201.405 110.176 201.069 110.214 200.749 110.288C200.439 110.363 200.162 110.491 199.917 110.672C199.682 110.843 199.485 111.072 199.325 111.36C199.175 111.638 199.079 111.984 199.037 112.4H204.013C203.959 111.696 203.73 111.152 203.325 110.768C202.93 110.374 202.407 110.176 201.757 110.176ZM210.59 116.432C210.59 116.091 210.686 115.83 210.878 115.648C211.07 115.456 211.326 115.36 211.646 115.36C211.988 115.36 212.254 115.456 212.446 115.648C212.638 115.83 212.734 116.091 212.734 116.432C212.734 116.742 212.638 116.998 212.446 117.2C212.254 117.403 211.988 117.505 211.646 117.505C211.326 117.505 211.07 117.403 210.878 117.2C210.686 116.998 210.59 116.742 210.59 116.432ZM220.784 116.432C220.784 116.091 220.88 115.83 221.072 115.648C221.264 115.456 221.52 115.36 221.84 115.36C222.182 115.36 222.448 115.456 222.64 115.648C222.832 115.83 222.928 116.091 222.928 116.432C222.928 116.742 222.832 116.998 222.64 117.2C222.448 117.403 222.182 117.505 221.84 117.505C221.52 117.505 221.264 117.403 221.072 117.2C220.88 116.998 220.784 116.742 220.784 116.432ZM230.978 116.432C230.978 116.091 231.074 115.83 231.266 115.648C231.458 115.456 231.714 115.36 232.034 115.36C232.375 115.36 232.642 115.456 232.834 115.648C233.026 115.83 233.122 116.091 233.122 116.432C233.122 116.742 233.026 116.998 232.834 117.2C232.642 117.403 232.375 117.505 232.034 117.505C231.714 117.505 231.458 117.403 231.266 117.2C231.074 116.998 230.978 116.742 230.978 116.432ZM241.108 116.432C241.108 116.112 241.209 115.856 241.412 115.664C241.625 115.462 241.897 115.36 242.228 115.36C242.633 115.36 242.948 115.504 243.172 115.792C243.396 116.07 243.508 116.464 243.508 116.976C243.508 117.393 243.438 117.755 243.3 118.065C243.161 118.385 242.985 118.651 242.772 118.865C242.569 119.089 242.345 119.265 242.1 119.393C241.865 119.531 241.646 119.633 241.444 119.697L241.044 119.073C241.428 118.923 241.758 118.71 242.036 118.433C242.313 118.155 242.452 117.819 242.452 117.425C242.302 117.457 242.185 117.473 242.1 117.473C241.79 117.473 241.545 117.387 241.364 117.216C241.193 117.035 241.108 116.774 241.108 116.432ZM241.252 110.144C241.252 109.803 241.348 109.542 241.54 109.36C241.732 109.168 241.988 109.072 242.308 109.072C242.649 109.072 242.916 109.168 243.108 109.36C243.3 109.542 243.396 109.803 243.396 110.144C243.396 110.454 243.3 110.71 243.108 110.912C242.916 111.115 242.649 111.216 242.308 111.216C241.988 111.216 241.732 111.115 241.54 110.912C241.348 110.71 241.252 110.454 241.252 110.144Z" fill="white"/>
+<path d="M35.9687 149.671C36.2887 149.842 36.6461 149.986 37.0407 150.103C37.4461 150.21 37.8514 150.263 38.2567 150.263C38.6087 150.263 38.9394 150.231 39.2487 150.167C39.5581 150.092 39.8247 149.98 40.0487 149.831C40.2834 149.671 40.4647 149.474 40.5927 149.239C40.7314 149.004 40.8007 148.727 40.8007 148.407C40.8007 147.97 40.6514 147.612 40.3527 147.335C40.0647 147.058 39.7021 146.812 39.2647 146.599C38.8274 146.386 38.3527 146.178 37.8407 145.975C37.3287 145.772 36.8541 145.532 36.4167 145.255C35.9794 144.978 35.6114 144.642 35.3127 144.247C35.0247 143.842 34.8807 143.33 34.8807 142.711C34.8807 142.274 34.9661 141.879 35.1367 141.527C35.3181 141.175 35.5687 140.876 35.8887 140.631C36.2087 140.386 36.5927 140.199 37.0407 140.071C37.4994 139.932 38.0061 139.863 38.5607 139.863C39.2007 139.863 39.7821 139.911 40.3047 140.007C40.8274 140.092 41.2434 140.21 41.5527 140.359L41.5847 140.343V140.375H41.6007L41.5847 140.423V142.983H40.4007V141.271C40.1341 141.207 39.8407 141.154 39.5207 141.111C39.2007 141.068 38.8594 141.047 38.4967 141.047C38.1447 141.047 37.8247 141.09 37.5367 141.175C37.2594 141.26 37.0194 141.378 36.8167 141.527C36.6247 141.666 36.4754 141.831 36.3687 142.023C36.2621 142.215 36.2087 142.418 36.2087 142.631C36.2087 143.047 36.3527 143.394 36.6407 143.671C36.9394 143.948 37.3074 144.199 37.7447 144.423C38.1821 144.636 38.6567 144.85 39.1687 145.063C39.6807 145.276 40.1554 145.527 40.5927 145.815C41.0301 146.092 41.3927 146.428 41.6807 146.823C41.9794 147.218 42.1287 147.708 42.1287 148.295C42.1287 148.775 42.0381 149.207 41.8567 149.591C41.6861 149.975 41.4354 150.306 41.1047 150.583C40.7847 150.86 40.3847 151.074 39.9047 151.223C39.4354 151.372 38.9021 151.447 38.3047 151.447C37.8994 151.447 37.5154 151.415 37.1527 151.351C36.7901 151.287 36.4541 151.207 36.1447 151.111C35.8461 151.015 35.5741 150.914 35.3287 150.807C35.0941 150.7 34.9074 150.61 34.7687 150.535L34.7847 150.487V147.895H35.9687V149.671ZM45.4745 140.055H52.0505V141.239H46.8025V144.903H51.6505V146.087H46.8025V150.071H52.1305V151.255H45.4745V140.055ZM55.3962 140.055H56.7242V150.071H61.2522V147.287H62.4362V151.255H55.3962V140.055ZM65.862 140.055H72.438V141.239H67.19V144.903H72.038V146.087H67.19V150.071H72.518V151.255H65.862V140.055ZM81.6717 141.271C81.4904 141.196 81.2877 141.143 81.0637 141.111C80.8504 141.068 80.5891 141.047 80.2797 141.047C79.8424 141.047 79.4104 141.127 78.9837 141.287C78.5677 141.447 78.1944 141.708 77.8637 142.071C77.5437 142.434 77.2824 142.908 77.0797 143.495C76.8877 144.082 76.7917 144.802 76.7917 145.655C76.7917 146.423 76.8771 147.095 77.0477 147.671C77.2291 148.247 77.4744 148.727 77.7837 149.111C78.1037 149.495 78.4824 149.783 78.9197 149.975C79.3677 150.167 79.8637 150.263 80.4077 150.263C80.6851 150.263 80.9411 150.242 81.1757 150.199C81.4211 150.146 81.6451 150.076 81.8477 149.991V148.391H83.0317V150.551L83.0477 150.583C82.7277 150.828 82.3224 151.036 81.8317 151.207C81.3411 151.367 80.7437 151.447 80.0397 151.447C79.3677 151.447 78.7437 151.335 78.1677 151.111C77.6024 150.876 77.1117 150.524 76.6957 150.055C76.2797 149.586 75.9544 148.988 75.7197 148.263C75.4957 147.527 75.3837 146.658 75.3837 145.655C75.3837 144.61 75.5117 143.724 75.7677 142.999C76.0237 142.263 76.3704 141.666 76.8077 141.207C77.2451 140.738 77.7517 140.396 78.3277 140.183C78.9144 139.97 79.5384 139.863 80.1997 139.863C80.5624 139.863 80.8771 139.879 81.1437 139.911C81.4104 139.932 81.6451 139.97 81.8477 140.023C82.0504 140.066 82.2264 140.124 82.3757 140.199C82.5357 140.274 82.6904 140.359 82.8397 140.455H82.8557V142.983H81.6717V141.271ZM85.1775 140.055H93.4975V142.983H92.3135V141.239H89.9935V150.071H91.7535V151.255H86.9055V150.071H88.6655V141.239H86.3615V142.983H85.1775V140.055ZM106.797 140.055H113.213V141.239H108.125V145.063H112.893V146.247H108.125V151.255H106.797V140.055ZM116.719 140.167C117.124 140.092 117.588 140.034 118.111 139.991C118.644 139.948 119.129 139.927 119.567 139.927C120.057 139.927 120.521 139.98 120.959 140.087C121.407 140.194 121.796 140.37 122.127 140.615C122.468 140.86 122.74 141.18 122.943 141.575C123.145 141.97 123.247 142.45 123.247 143.015C123.247 143.452 123.172 143.842 123.023 144.183C122.884 144.514 122.708 144.802 122.495 145.047C122.292 145.282 122.079 145.474 121.855 145.623C121.631 145.772 121.439 145.879 121.279 145.943L124.239 151.255H122.687L120.047 146.327H118.047V151.255H116.719V140.167ZM119.599 141.079C119.46 141.079 119.316 141.079 119.167 141.079C119.017 141.079 118.873 141.084 118.735 141.095C118.596 141.106 118.463 141.116 118.335 141.127C118.217 141.138 118.121 141.154 118.047 141.175V145.303H119.295C120.031 145.303 120.639 145.122 121.119 144.759C121.599 144.396 121.839 143.831 121.839 143.063C121.839 142.487 121.641 142.012 121.247 141.639C120.852 141.266 120.303 141.079 119.599 141.079ZM126.08 145.655C126.08 143.799 126.406 142.37 127.056 141.367C127.718 140.364 128.731 139.863 130.096 139.863C130.843 139.863 131.472 140.002 131.984 140.279C132.507 140.556 132.928 140.951 133.248 141.463C133.568 141.964 133.798 142.572 133.936 143.287C134.075 143.991 134.144 144.78 134.144 145.655C134.144 147.511 133.814 148.94 133.152 149.943C132.502 150.946 131.483 151.447 130.096 151.447C129.36 151.447 128.736 151.308 128.224 151.031C127.712 150.754 127.296 150.364 126.976 149.863C126.656 149.351 126.427 148.743 126.288 148.039C126.15 147.324 126.08 146.53 126.08 145.655ZM127.488 145.655C127.488 146.274 127.526 146.86 127.6 147.415C127.686 147.97 127.83 148.46 128.032 148.887C128.235 149.303 128.502 149.639 128.832 149.895C129.163 150.14 129.584 150.263 130.096 150.263C131.014 150.263 131.68 149.89 132.096 149.143C132.523 148.396 132.736 147.234 132.736 145.655C132.736 145.047 132.694 144.466 132.608 143.911C132.534 143.346 132.395 142.855 132.192 142.439C131.99 142.012 131.718 141.676 131.376 141.431C131.035 141.175 130.608 141.047 130.096 141.047C129.19 141.047 128.528 141.426 128.112 142.183C127.696 142.93 127.488 144.087 127.488 145.655ZM142.818 143.815L142.978 142.295H142.898L142.13 143.671L140.498 146.407H140.098L138.386 143.655L137.65 142.295H137.57L137.762 143.799V151.255H136.466V140.055H137.698L140.354 144.311H140.386L142.946 140.055H144.146V151.255H142.818V143.815ZM156.39 143.255H158.294V141.671L159.542 141.319V143.255H163.814V144.327H159.542V148.103C159.542 148.882 159.728 149.458 160.102 149.831C160.486 150.204 161.03 150.391 161.734 150.391C162.214 150.391 162.63 150.3 162.982 150.119C163.344 149.938 163.67 149.74 163.958 149.527L164.374 150.471C164 150.77 163.552 151.01 163.03 151.191C162.518 151.372 161.99 151.463 161.446 151.463C161.019 151.463 160.614 151.399 160.23 151.271C159.856 151.154 159.526 150.967 159.238 150.711C158.95 150.455 158.72 150.13 158.55 149.735C158.379 149.33 158.294 148.85 158.294 148.295V144.327H156.39V143.255ZM167.815 143.879C168.274 143.612 168.791 143.42 169.367 143.303C169.943 143.186 170.509 143.127 171.063 143.127C171.607 143.127 172.05 143.212 172.391 143.383C172.743 143.554 173.015 143.778 173.207 144.055C173.41 144.322 173.543 144.631 173.607 144.983C173.682 145.324 173.719 145.671 173.719 146.023C173.719 146.428 173.709 146.86 173.687 147.319C173.666 147.778 173.65 148.236 173.639 148.695C173.639 149.228 173.671 149.735 173.735 150.215H174.807V151.255H172.679L172.535 150.055H172.455C172.391 150.151 172.295 150.274 172.167 150.423C172.039 150.572 171.869 150.722 171.655 150.871C171.453 151.01 171.202 151.132 170.903 151.239C170.605 151.346 170.253 151.399 169.847 151.399C169.058 151.399 168.434 151.196 167.975 150.791C167.517 150.386 167.287 149.831 167.287 149.127C167.287 148.583 167.405 148.13 167.639 147.767C167.885 147.404 168.231 147.127 168.679 146.935C169.127 146.743 169.666 146.631 170.295 146.599C170.935 146.567 171.65 146.61 172.439 146.727C172.493 146.236 172.498 145.831 172.455 145.511C172.423 145.18 172.338 144.919 172.199 144.727C172.071 144.535 171.885 144.402 171.639 144.327C171.405 144.242 171.111 144.199 170.759 144.199C170.279 144.199 169.821 144.268 169.383 144.407C168.946 144.535 168.557 144.668 168.215 144.807L167.815 143.879ZM170.167 150.327C170.466 150.327 170.743 150.279 170.999 150.183C171.255 150.087 171.479 149.964 171.671 149.815C171.863 149.666 172.023 149.506 172.151 149.335C172.279 149.154 172.375 148.983 172.439 148.823V147.703C171.885 147.607 171.373 147.559 170.903 147.559C170.434 147.559 170.029 147.612 169.687 147.719C169.346 147.815 169.079 147.97 168.887 148.183C168.695 148.396 168.599 148.674 168.599 149.015C168.599 149.367 168.717 149.676 168.951 149.943C169.197 150.199 169.602 150.327 170.167 150.327ZM176.313 140.055H178.873V144.167H178.953C179.231 143.815 179.588 143.543 180.025 143.351C180.463 143.159 180.937 143.063 181.449 143.063C183.796 143.063 184.969 144.418 184.969 147.127C184.969 148.503 184.591 149.559 183.833 150.295C183.076 151.02 181.999 151.383 180.601 151.383C179.94 151.383 179.343 151.319 178.809 151.191C178.276 151.063 177.887 150.914 177.641 150.743V141.127H176.313V140.055ZM181.289 144.135C180.649 144.135 180.132 144.316 179.737 144.679C179.343 145.042 179.055 145.554 178.873 146.215V149.895C179.119 150.023 179.412 150.124 179.753 150.199C180.095 150.274 180.452 150.311 180.825 150.311C181.252 150.311 181.636 150.252 181.977 150.135C182.329 150.007 182.628 149.815 182.873 149.559C183.119 149.292 183.305 148.956 183.433 148.551C183.572 148.146 183.641 147.666 183.641 147.111C183.641 146.706 183.599 146.322 183.513 145.959C183.428 145.596 183.289 145.282 183.097 145.015C182.916 144.738 182.676 144.524 182.377 144.375C182.079 144.215 181.716 144.135 181.289 144.135ZM188.379 140.055H191.035V148.567C191.035 149.218 191.142 149.676 191.355 149.943C191.579 150.21 191.904 150.343 192.331 150.343C192.63 150.343 192.912 150.29 193.179 150.183C193.456 150.076 193.76 149.895 194.091 149.639L194.667 150.519C194.496 150.668 194.31 150.802 194.107 150.919C193.904 151.036 193.696 151.138 193.483 151.223C193.27 151.298 193.056 151.356 192.843 151.399C192.63 151.442 192.432 151.463 192.251 151.463C191.856 151.463 191.504 151.41 191.195 151.303C190.886 151.207 190.624 151.047 190.411 150.823C190.208 150.599 190.054 150.306 189.947 149.943C189.84 149.57 189.787 149.111 189.787 148.567V141.127H188.379V140.055ZM205.133 150.247C204.941 150.418 204.711 150.578 204.445 150.727C204.189 150.876 203.906 151.004 203.597 151.111C203.287 151.218 202.962 151.298 202.621 151.351C202.29 151.415 201.954 151.447 201.613 151.447C200.973 151.447 200.407 151.351 199.917 151.159C199.426 150.956 199.015 150.674 198.685 150.311C198.354 149.938 198.103 149.495 197.933 148.983C197.762 148.471 197.677 147.895 197.677 147.255C197.677 146.583 197.767 145.986 197.949 145.463C198.141 144.94 198.413 144.503 198.765 144.151C199.117 143.799 199.543 143.532 200.045 143.351C200.546 143.159 201.106 143.063 201.725 143.063C202.173 143.063 202.615 143.122 203.053 143.239C203.49 143.356 203.874 143.58 204.205 143.911C204.546 144.231 204.807 144.679 204.989 145.255C205.17 145.82 205.234 146.556 205.181 147.463H198.989C198.989 148.423 199.245 149.143 199.757 149.623C200.279 150.092 200.973 150.327 201.837 150.327C202.125 150.327 202.407 150.295 202.685 150.231C202.973 150.156 203.245 150.071 203.501 149.975C203.757 149.879 203.981 149.772 204.173 149.655C204.375 149.538 204.53 149.431 204.637 149.335L205.133 150.247ZM201.757 144.119C201.405 144.119 201.069 144.156 200.749 144.231C200.439 144.306 200.162 144.434 199.917 144.615C199.682 144.786 199.485 145.015 199.325 145.303C199.175 145.58 199.079 145.927 199.037 146.343H204.013C203.959 145.639 203.73 145.095 203.325 144.711C202.93 144.316 202.407 144.119 201.757 144.119ZM210.59 150.375C210.59 150.034 210.686 149.772 210.878 149.591C211.07 149.399 211.326 149.303 211.646 149.303C211.988 149.303 212.254 149.399 212.446 149.591C212.638 149.772 212.734 150.034 212.734 150.375C212.734 150.684 212.638 150.94 212.446 151.143C212.254 151.346 211.988 151.447 211.646 151.447C211.326 151.447 211.07 151.346 210.878 151.143C210.686 150.94 210.59 150.684 210.59 150.375ZM220.784 150.375C220.784 150.034 220.88 149.772 221.072 149.591C221.264 149.399 221.52 149.303 221.84 149.303C222.182 149.303 222.448 149.399 222.64 149.591C222.832 149.772 222.928 150.034 222.928 150.375C222.928 150.684 222.832 150.94 222.64 151.143C222.448 151.346 222.182 151.447 221.84 151.447C221.52 151.447 221.264 151.346 221.072 151.143C220.88 150.94 220.784 150.684 220.784 150.375ZM230.978 150.375C230.978 150.034 231.074 149.772 231.266 149.591C231.458 149.399 231.714 149.303 232.034 149.303C232.375 149.303 232.642 149.399 232.834 149.591C233.026 149.772 233.122 150.034 233.122 150.375C233.122 150.684 233.026 150.94 232.834 151.143C232.642 151.346 232.375 151.447 232.034 151.447C231.714 151.447 231.458 151.346 231.266 151.143C231.074 150.94 230.978 150.684 230.978 150.375ZM241.108 150.375C241.108 150.055 241.209 149.799 241.412 149.607C241.625 149.404 241.897 149.303 242.228 149.303C242.633 149.303 242.948 149.447 243.172 149.735C243.396 150.012 243.508 150.407 243.508 150.919C243.508 151.335 243.438 151.698 243.3 152.007C243.161 152.327 242.985 152.594 242.772 152.807C242.569 153.031 242.345 153.207 242.1 153.335C241.865 153.474 241.646 153.575 241.444 153.639L241.044 153.015C241.428 152.866 241.758 152.652 242.036 152.375C242.313 152.098 242.452 151.762 242.452 151.367C242.302 151.399 242.185 151.415 242.1 151.415C241.79 151.415 241.545 151.33 241.364 151.159C241.193 150.978 241.108 150.716 241.108 150.375ZM241.252 144.087C241.252 143.746 241.348 143.484 241.54 143.303C241.732 143.111 241.988 143.015 242.308 143.015C242.649 143.015 242.916 143.111 243.108 143.303C243.3 143.484 243.396 143.746 243.396 144.087C243.396 144.396 243.3 144.652 243.108 144.855C242.916 145.058 242.649 145.159 242.308 145.159C241.988 145.159 241.732 145.058 241.54 144.855C241.348 144.652 241.252 144.396 241.252 144.087Z" fill="white"/>
+<path d="M134.048 336.658C134.438 337.049 135.072 337.049 135.462 336.658L141.826 330.294C142.217 329.904 142.217 329.271 141.826 328.88C141.436 328.49 140.802 328.49 140.412 328.88L134.755 334.537L129.098 328.88C128.708 328.49 128.074 328.49 127.684 328.88C127.293 329.271 127.293 329.904 127.684 330.294L134.048 336.658ZM66.8259 297.027L66.8259 298.027L66.8259 297.027ZM54.8259 226.611L54.8259 286.027L56.8259 286.027L56.8259 226.611L54.8259 226.611ZM66.8259 298.027L123.755 298.027L123.755 296.027L66.8259 296.027L66.8259 298.027ZM133.755 308.027L133.755 335.951L135.755 335.951L135.755 308.027L133.755 308.027ZM123.755 298.027C129.278 298.027 133.755 302.504 133.755 308.027L135.755 308.027C135.755 301.4 130.382 296.027 123.755 296.027L123.755 298.027ZM54.8259 286.027C54.8259 292.655 60.1985 298.027 66.8259 298.027L66.8259 296.027C61.3031 296.027 56.8259 291.55 56.8259 286.027L54.8259 286.027Z" fill="#2D2D2D"/>
+<path d="M2.13022 437.146V334.382C2.13022 334.382 13.1572 344.813 47.4304 344.813C81.7035 344.813 93.9226 333.19 93.9226 333.19V437.146C80.3745 457.909 6.50459 452.322 2.13022 437.146Z" fill="white"/>
+<path d="M94 330.314C94 331.929 92.9756 333.642 90.7007 335.354C88.4419 337.054 85.105 338.628 80.8783 339.968C72.4362 342.643 60.6682 344.314 47.5 344.314C34.3318 344.314 22.5638 342.643 14.1217 339.968C9.89495 338.628 6.55809 337.054 4.29934 335.354C2.02437 333.642 1 331.929 1 330.314C1 328.7 2.02437 326.987 4.29934 325.275C6.55809 323.575 9.89495 322.001 14.1217 320.661C22.5638 317.986 34.3318 316.314 47.5 316.314C60.6682 316.314 72.4362 317.986 80.8783 320.661C85.105 322.001 88.4419 323.575 90.7007 325.275C92.9756 326.987 94 328.7 94 330.314Z" fill="white" stroke="#ED1C24" stroke-width="2"/>
+<path d="M1 329.314L1.35056 436.578" stroke="#ED1C24" stroke-width="2"/>
+<path d="M94 329.314L94 437.314" stroke="#ED1C24" stroke-width="2"/>
+<path d="M94.0886 435.757C94.0886 443.713 73.3285 450.163 47.7196 450.163C22.1107 450.163 1.35056 443.713 1.35056 435.757" stroke="#ED1C24" stroke-width="2"/>
+<path d="M178.13 438.146V334.382C178.13 334.382 189.157 344.813 223.43 344.813C257.703 344.813 269.923 333.19 269.923 333.19V438.146C269.923 438.146 264.987 450.891 223.43 451.381C181.873 451.871 178.13 438.146 178.13 438.146Z" fill="white"/>
+<path d="M270 330.314C270 331.929 268.976 333.642 266.701 335.354C264.442 337.054 261.105 338.628 256.878 339.968C248.436 342.643 236.668 344.314 223.5 344.314C210.332 344.314 198.564 342.643 190.122 339.968C185.895 338.628 182.558 337.054 180.299 335.354C178.024 333.642 177 331.929 177 330.314C177 328.7 178.024 326.987 180.299 325.275C182.558 323.575 185.895 322.001 190.122 320.661C198.564 317.986 210.332 316.314 223.5 316.314C236.668 316.314 248.436 317.986 256.878 320.661C261.105 322.001 264.442 323.575 266.701 325.275C268.976 326.987 270 328.7 270 330.314Z" fill="white" stroke="#ED1C24" stroke-width="2"/>
+<path d="M177 329.314L177.351 436.578" stroke="#ED1C24" stroke-width="2"/>
+<path d="M270 329.314L270 437.314" stroke="#ED1C24" stroke-width="2"/>
+<path d="M270.089 436.757C270.089 444.713 249.328 451.163 223.72 451.163C198.111 451.163 177.351 444.713 177.351 436.757" stroke="#ED1C24" stroke-width="2"/>
+<path d="M90.1302 467.723V364.166C90.1302 364.166 101.157 372.711 135.43 372.711C169.703 372.711 181.923 363.19 181.923 363.19V467.151C168.202 486.034 98.5329 483.602 90.1302 467.723Z" fill="white"/>
+<path d="M182 360.314C182 361.929 180.976 363.642 178.701 365.354C176.442 367.054 173.105 368.628 168.878 369.968C160.436 372.643 148.668 374.314 135.5 374.314C122.332 374.314 110.564 372.643 102.122 369.968C97.8949 368.628 94.5581 367.054 92.2993 365.354C90.0244 363.642 89 361.929 89 360.314C89 358.7 90.0244 356.987 92.2993 355.275C94.5581 353.575 97.8949 352.001 102.122 350.661C110.564 347.986 122.332 346.314 135.5 346.314C148.668 346.314 160.436 347.986 168.878 350.661C173.105 352.001 176.442 353.575 178.701 355.275C180.976 356.987 182 358.7 182 360.314Z" fill="white" stroke="#ED1C24" stroke-width="2"/>
+<path d="M89 359.314L89.3506 466.578" stroke="#ED1C24" stroke-width="2"/>
+<path d="M182 359.314L182 467.314" stroke="#ED1C24" stroke-width="2"/>
+<path d="M182.089 465.757C182.089 473.713 161.328 480.163 135.72 480.163C110.111 480.163 89.3506 473.713 89.3506 465.757" stroke="#ED1C24" stroke-width="2"/>
+<path d="M198.924 462.688C198.924 462.688 188.425 469.09 198.32 475.448C200.224 476.686 207.128 480.129 206.931 483.316C206.931 483.316 211.116 477.124 204.997 473.228C198.713 469.241 197.142 464.983 198.924 462.688Z" fill="#ED1C24"/>
+<path d="M195.269 474.92C195.269 474.92 191.522 480.598 198.894 481.76C199.62 481.851 204.952 482.41 206.342 484.161C206.342 484.161 206.221 481.141 201.871 479.359C197.535 477.577 195.752 477.139 195.269 474.92Z" fill="#ED1C24"/>
+<path d="M209.772 468.954C205.27 464.243 204.016 461.328 205.95 457.553C205.95 457.553 192.519 462.718 205.783 471.884C210.527 475.161 209.741 478.513 209.741 478.634C210.482 477.864 214.274 473.666 209.772 468.954Z" fill="#ED1C24"/>
+<path d="M217.219 479.42V467.967H218.773L224.789 476.959V467.967H226.242V479.42H224.688L218.672 470.42V479.42H217.219ZM228.536 473.842C228.536 471.941 229.046 470.454 230.067 469.381C231.088 468.303 232.406 467.764 234.02 467.764C235.078 467.764 236.031 468.016 236.88 468.521C237.729 469.027 238.374 469.732 238.817 470.639C239.265 471.54 239.489 472.563 239.489 473.709C239.489 474.87 239.255 475.91 238.786 476.826C238.317 477.743 237.653 478.438 236.794 478.912C235.934 479.381 235.007 479.615 234.012 479.615C232.934 479.615 231.971 479.355 231.122 478.834C230.273 478.313 229.63 477.602 229.192 476.701C228.755 475.8 228.536 474.847 228.536 473.842ZM230.098 473.865C230.098 475.245 230.468 476.334 231.208 477.131C231.953 477.923 232.885 478.318 234.005 478.318C235.145 478.318 236.083 477.917 236.817 477.115C237.557 476.313 237.927 475.175 237.927 473.701C237.927 472.769 237.768 471.956 237.45 471.264C237.137 470.566 236.677 470.027 236.067 469.646C235.463 469.261 234.783 469.068 234.028 469.068C232.955 469.068 232.031 469.438 231.255 470.178C230.484 470.912 230.098 472.141 230.098 473.865ZM241.65 479.42V467.967H245.595C246.486 467.967 247.166 468.021 247.634 468.131C248.291 468.282 248.851 468.555 249.314 468.951C249.918 469.462 250.369 470.115 250.666 470.912C250.968 471.704 251.119 472.61 251.119 473.631C251.119 474.501 251.017 475.271 250.814 475.943C250.611 476.615 250.351 477.173 250.033 477.615C249.715 478.053 249.366 478.399 248.986 478.654C248.611 478.904 248.155 479.094 247.619 479.225C247.087 479.355 246.476 479.42 245.783 479.42H241.65ZM243.166 478.068H245.611C246.366 478.068 246.957 477.998 247.384 477.857C247.817 477.717 248.16 477.519 248.416 477.264C248.775 476.904 249.054 476.423 249.252 475.818C249.455 475.209 249.556 474.472 249.556 473.607C249.556 472.41 249.358 471.49 248.962 470.85C248.572 470.204 248.095 469.771 247.533 469.553C247.127 469.396 246.473 469.318 245.572 469.318H243.166V478.068ZM253.444 479.42V467.967H261.725V469.318H254.959V472.826H261.295V474.17H254.959V478.068H261.991V479.42H253.444Z" fill="#2D2D2D"/>
+<path d="M10.8507 462.688C10.8507 462.688 0.351361 469.09 10.2464 475.448C12.1499 476.686 19.0538 480.129 18.8574 483.316C18.8574 483.316 23.042 477.124 16.9237 473.228C10.6392 469.241 9.06809 464.983 10.8507 462.688Z" fill="#ED1C24"/>
+<path d="M7.19497 474.92C7.19497 474.92 3.44842 480.598 10.8207 481.76C11.5458 481.851 16.8786 482.41 18.2684 484.161C18.2684 484.161 18.1476 481.141 13.7967 479.359C9.46103 477.577 7.6784 477.139 7.19497 474.92Z" fill="#ED1C24"/>
+<path d="M21.6979 468.954C17.196 464.243 15.9422 461.328 17.8759 457.553C17.8759 457.553 4.44572 462.718 17.7097 471.884C22.4533 475.161 21.6677 478.513 21.6677 478.634C22.408 477.864 26.1998 473.666 21.6979 468.954Z" fill="#ED1C24"/>
+<path d="M29.145 479.42V467.967H30.6996L36.7153 476.959V467.967H38.1684V479.42H36.6137L30.5981 470.42V479.42H29.145ZM40.4621 473.842C40.4621 471.941 40.9726 470.454 41.9934 469.381C43.0142 468.303 44.3319 467.764 45.9465 467.764C47.0038 467.764 47.9569 468.016 48.8059 468.521C49.6549 469.027 50.3007 469.732 50.7434 470.639C51.1913 471.54 51.4153 472.563 51.4153 473.709C51.4153 474.87 51.1809 475.91 50.7121 476.826C50.2434 477.743 49.5793 478.438 48.72 478.912C47.8606 479.381 46.9335 479.615 45.9387 479.615C44.8606 479.615 43.897 479.355 43.0481 478.834C42.1991 478.313 41.5559 477.602 41.1184 476.701C40.6809 475.8 40.4621 474.847 40.4621 473.842ZM42.0246 473.865C42.0246 475.245 42.3944 476.334 43.134 477.131C43.8788 477.923 44.8111 478.318 45.9309 478.318C47.0715 478.318 48.009 477.917 48.7434 477.115C49.483 476.313 49.8528 475.175 49.8528 473.701C49.8528 472.769 49.6939 471.956 49.3762 471.264C49.0637 470.566 48.6028 470.027 47.9934 469.646C47.3892 469.261 46.7095 469.068 45.9543 469.068C44.8814 469.068 43.9569 469.438 43.1809 470.178C42.4101 470.912 42.0246 472.141 42.0246 473.865ZM53.5762 479.42V467.967H57.5215C58.4121 467.967 59.0918 468.021 59.5606 468.131C60.2168 468.282 60.7767 468.555 61.2403 468.951C61.8444 469.462 62.295 470.115 62.5918 470.912C62.8939 471.704 63.045 472.61 63.045 473.631C63.045 474.501 62.9434 475.271 62.7403 475.943C62.5371 476.615 62.2767 477.173 61.959 477.615C61.6413 478.053 61.2924 478.399 60.9121 478.654C60.5371 478.904 60.0814 479.094 59.545 479.225C59.0137 479.355 58.4017 479.42 57.709 479.42H53.5762ZM55.0918 478.068H57.5371C58.2924 478.068 58.8835 477.998 59.3106 477.857C59.7429 477.717 60.0866 477.519 60.3418 477.264C60.7012 476.904 60.9799 476.423 61.1778 475.818C61.3809 475.209 61.4825 474.472 61.4825 473.607C61.4825 472.41 61.2845 471.49 60.8887 470.85C60.4981 470.204 60.0215 469.771 59.459 469.553C59.0528 469.396 58.3991 469.318 57.4981 469.318H55.0918V478.068ZM65.37 479.42V467.967H73.6512V469.318H66.8856V472.826H73.2215V474.17H66.8856V478.068H73.9168V479.42H65.37Z" fill="#2D2D2D"/>
+<path d="M103.851 493.225C103.851 493.225 93.3514 499.628 103.246 505.985C105.15 507.224 112.054 510.667 111.857 513.853C111.857 513.853 116.042 507.662 109.924 503.765C103.639 499.779 102.068 495.52 103.851 493.225Z" fill="#ED1C24"/>
+<path d="M100.195 505.457C100.195 505.457 96.4484 511.135 103.821 512.298C104.546 512.388 109.879 512.947 111.268 514.699C111.268 514.699 111.148 511.679 106.797 509.897C102.461 508.115 100.678 507.677 100.195 505.457Z" fill="#ED1C24"/>
+<path d="M114.698 499.492C110.196 494.78 108.942 491.866 110.876 488.091C110.876 488.091 97.4457 493.255 110.71 502.421C115.453 505.698 114.668 509.051 114.668 509.172C115.408 508.401 119.2 504.203 114.698 499.492Z" fill="#ED1C24"/>
+<path d="M122.145 510.42V498.967H123.7L129.715 507.959V498.967H131.168V510.42H129.614L123.598 501.42V510.42H122.145ZM133.462 504.842C133.462 502.941 133.973 501.454 134.993 500.381C136.014 499.303 137.332 498.764 138.947 498.764C140.004 498.764 140.957 499.016 141.806 499.521C142.655 500.027 143.301 500.732 143.743 501.639C144.191 502.54 144.415 503.563 144.415 504.709C144.415 505.87 144.181 506.91 143.712 507.826C143.243 508.743 142.579 509.438 141.72 509.912C140.861 510.381 139.933 510.615 138.939 510.615C137.861 510.615 136.897 510.355 136.048 509.834C135.199 509.313 134.556 508.602 134.118 507.701C133.681 506.8 133.462 505.847 133.462 504.842ZM135.025 504.865C135.025 506.245 135.394 507.334 136.134 508.131C136.879 508.923 137.811 509.318 138.931 509.318C140.072 509.318 141.009 508.917 141.743 508.115C142.483 507.313 142.853 506.175 142.853 504.701C142.853 503.769 142.694 502.956 142.376 502.264C142.064 501.566 141.603 501.027 140.993 500.646C140.389 500.261 139.71 500.068 138.954 500.068C137.881 500.068 136.957 500.438 136.181 501.178C135.41 501.912 135.025 503.141 135.025 504.865ZM146.576 510.42V498.967H150.522C151.412 498.967 152.092 499.021 152.561 499.131C153.217 499.282 153.777 499.555 154.24 499.951C154.844 500.462 155.295 501.115 155.592 501.912C155.894 502.704 156.045 503.61 156.045 504.631C156.045 505.501 155.943 506.271 155.74 506.943C155.537 507.615 155.277 508.173 154.959 508.615C154.641 509.053 154.292 509.399 153.912 509.654C153.537 509.904 153.081 510.094 152.545 510.225C152.014 510.355 151.402 510.42 150.709 510.42H146.576ZM148.092 509.068H150.537C151.292 509.068 151.883 508.998 152.311 508.857C152.743 508.717 153.087 508.519 153.342 508.264C153.701 507.904 153.98 507.423 154.178 506.818C154.381 506.209 154.482 505.472 154.482 504.607C154.482 503.41 154.285 502.49 153.889 501.85C153.498 501.204 153.022 500.771 152.459 500.553C152.053 500.396 151.399 500.318 150.498 500.318H148.092V509.068ZM158.37 510.42V498.967H166.651V500.318H159.886V503.826H166.222V505.17H159.886V509.068H166.917V510.42H158.37Z" fill="#2D2D2D"/>
+<path d="M54.5333 203.221L79.5149 209.832L79.5148 173.903L54.5333 167.292L29.9901 174.931L29.9901 210.711L54.5333 203.221Z" fill="white" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M54.9716 181.816L29.9901 175.205L29.9901 219.017L54.9716 225.628L79.5149 217.989L79.5149 174.326L54.9716 181.816Z" fill="white" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M54.606 181.745L54.606 224.895" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M93.3682 209.239L98.8662 194.923H100.907L106.767 209.239H104.608L102.938 204.903H96.9521L95.3799 209.239H93.3682ZM97.499 203.36H102.353L100.858 199.396C100.403 198.191 100.064 197.201 99.8428 196.427C99.6605 197.345 99.4033 198.256 99.0713 199.161L97.499 203.36ZM108.256 213.214V198.868H109.857V200.216C110.235 199.688 110.661 199.295 111.137 199.034C111.612 198.767 112.188 198.634 112.865 198.634C113.75 198.634 114.532 198.862 115.209 199.317C115.886 199.773 116.397 200.418 116.742 201.251C117.087 202.078 117.26 202.986 117.26 203.976C117.26 205.037 117.068 205.994 116.683 206.847C116.306 207.693 115.752 208.344 115.023 208.8C114.301 209.249 113.539 209.474 112.738 209.474C112.152 209.474 111.625 209.35 111.156 209.103C110.694 208.855 110.313 208.543 110.013 208.165V213.214H108.256ZM109.847 204.112C109.847 205.447 110.118 206.433 110.658 207.071C111.198 207.709 111.853 208.028 112.621 208.028C113.402 208.028 114.069 207.7 114.623 207.042C115.183 206.378 115.463 205.353 115.463 203.966C115.463 202.644 115.189 201.655 114.642 200.997C114.102 200.34 113.454 200.011 112.699 200.011C111.95 200.011 111.286 200.362 110.707 201.065C110.134 201.762 109.847 202.778 109.847 204.112ZM119.588 213.214V198.868H121.19V200.216C121.568 199.688 121.994 199.295 122.469 199.034C122.945 198.767 123.521 198.634 124.198 198.634C125.083 198.634 125.865 198.862 126.542 199.317C127.219 199.773 127.73 200.418 128.075 201.251C128.42 202.078 128.592 202.986 128.592 203.976C128.592 205.037 128.4 205.994 128.016 206.847C127.639 207.693 127.085 208.344 126.356 208.8C125.633 209.249 124.872 209.474 124.071 209.474C123.485 209.474 122.958 209.35 122.489 209.103C122.027 208.855 121.646 208.543 121.346 208.165V213.214H119.588ZM121.18 204.112C121.18 205.447 121.45 206.433 121.991 207.071C122.531 207.709 123.185 208.028 123.954 208.028C124.735 208.028 125.402 207.7 125.956 207.042C126.516 206.378 126.796 205.353 126.796 203.966C126.796 202.644 126.522 201.655 125.975 200.997C125.435 200.34 124.787 200.011 124.032 200.011C123.283 200.011 122.619 200.362 122.04 201.065C121.467 201.762 121.18 202.778 121.18 204.112ZM130.882 209.239V194.923H132.64V209.239H130.882ZM135.584 196.944V194.923H137.342V196.944H135.584ZM135.584 209.239V198.868H137.342V209.239H135.584ZM146.995 205.44L148.724 205.665C148.535 206.856 148.05 207.791 147.269 208.468C146.494 209.138 145.54 209.474 144.407 209.474C142.988 209.474 141.845 209.011 140.979 208.087C140.12 207.156 139.69 205.825 139.69 204.093C139.69 202.973 139.876 201.993 140.247 201.153C140.618 200.313 141.181 199.685 141.937 199.269C142.698 198.845 143.525 198.634 144.417 198.634C145.543 198.634 146.465 198.92 147.181 199.493C147.897 200.06 148.356 200.867 148.558 201.915L146.849 202.179C146.686 201.482 146.396 200.958 145.979 200.606C145.569 200.255 145.071 200.079 144.485 200.079C143.6 200.079 142.881 200.398 142.327 201.036C141.774 201.668 141.497 202.67 141.497 204.044C141.497 205.437 141.764 206.45 142.298 207.081C142.832 207.713 143.528 208.028 144.388 208.028C145.078 208.028 145.654 207.817 146.116 207.394C146.578 206.97 146.871 206.319 146.995 205.44ZM157.195 207.96C156.544 208.513 155.916 208.904 155.31 209.132C154.711 209.36 154.067 209.474 153.377 209.474C152.237 209.474 151.362 209.197 150.75 208.644C150.138 208.084 149.832 207.371 149.832 206.505C149.832 205.997 149.946 205.535 150.174 205.118C150.408 204.695 150.711 204.356 151.082 204.103C151.459 203.849 151.883 203.657 152.351 203.526C152.696 203.435 153.217 203.347 153.914 203.263C155.333 203.093 156.378 202.892 157.049 202.657C157.055 202.416 157.058 202.263 157.058 202.198C157.058 201.482 156.892 200.978 156.56 200.685C156.111 200.287 155.444 200.089 154.558 200.089C153.732 200.089 153.12 200.235 152.722 200.528C152.332 200.815 152.042 201.326 151.853 202.062L150.135 201.827C150.291 201.091 150.548 200.499 150.906 200.05C151.264 199.594 151.782 199.246 152.459 199.005C153.136 198.757 153.92 198.634 154.812 198.634C155.698 198.634 156.417 198.738 156.971 198.946C157.524 199.155 157.931 199.418 158.191 199.737C158.452 200.05 158.634 200.447 158.738 200.929C158.797 201.228 158.826 201.769 158.826 202.55V204.894C158.826 206.528 158.862 207.563 158.933 207.999C159.012 208.429 159.161 208.842 159.383 209.239H157.547C157.364 208.875 157.247 208.448 157.195 207.96ZM157.049 204.034C156.411 204.295 155.454 204.516 154.178 204.698C153.455 204.802 152.944 204.92 152.644 205.05C152.345 205.18 152.114 205.372 151.951 205.626C151.788 205.873 151.707 206.15 151.707 206.456C151.707 206.925 151.883 207.315 152.234 207.628C152.592 207.94 153.113 208.097 153.797 208.097C154.474 208.097 155.076 207.95 155.603 207.657C156.131 207.358 156.518 206.951 156.765 206.437C156.954 206.039 157.049 205.453 157.049 204.679V204.034ZM165.598 207.667L165.852 209.22C165.357 209.324 164.915 209.376 164.524 209.376C163.886 209.376 163.391 209.275 163.04 209.073C162.688 208.871 162.441 208.608 162.297 208.282C162.154 207.95 162.083 207.257 162.083 206.202V200.235H160.794V198.868H162.083V196.3L163.831 195.245V198.868H165.598V200.235H163.831V206.3C163.831 206.801 163.86 207.123 163.919 207.267C163.984 207.41 164.085 207.524 164.221 207.608C164.365 207.693 164.566 207.735 164.827 207.735C165.022 207.735 165.279 207.713 165.598 207.667ZM167.537 196.944V194.923H169.294V196.944H167.537ZM167.537 209.239V198.868H169.294V209.239H167.537ZM171.526 204.054C171.526 202.133 172.059 200.711 173.127 199.786C174.019 199.018 175.106 198.634 176.389 198.634C177.815 198.634 178.98 199.103 179.885 200.04C180.79 200.971 181.242 202.26 181.242 203.907C181.242 205.242 181.041 206.293 180.637 207.062C180.24 207.823 179.657 208.416 178.889 208.839C178.127 209.262 177.294 209.474 176.389 209.474C174.937 209.474 173.762 209.008 172.863 208.077C171.972 207.146 171.526 205.805 171.526 204.054ZM173.332 204.054C173.332 205.382 173.622 206.378 174.201 207.042C174.781 207.7 175.51 208.028 176.389 208.028C177.261 208.028 177.987 207.696 178.567 207.032C179.146 206.368 179.436 205.356 179.436 203.995C179.436 202.713 179.143 201.743 178.557 201.085C177.977 200.421 177.255 200.089 176.389 200.089C175.51 200.089 174.781 200.418 174.201 201.075C173.622 201.733 173.332 202.726 173.332 204.054ZM183.513 209.239V198.868H185.095V200.343C185.856 199.203 186.957 198.634 188.396 198.634C189.021 198.634 189.593 198.748 190.114 198.976C190.642 199.197 191.035 199.49 191.296 199.854C191.556 200.219 191.739 200.652 191.843 201.153C191.908 201.479 191.94 202.049 191.94 202.862V209.239H190.183V202.931C190.183 202.215 190.114 201.681 189.978 201.329C189.841 200.971 189.597 200.688 189.245 200.479C188.9 200.265 188.493 200.157 188.024 200.157C187.276 200.157 186.628 200.395 186.081 200.87C185.541 201.345 185.271 202.247 185.271 203.575V209.239H183.513Z" fill="#2D2D2D"/>
+</svg>
diff --git a/public/img/features/sql/plus.svg b/public/img/features/sql/plus.svg
new file mode 100644
index 0000000..b6defe3
--- /dev/null
+++ b/public/img/features/sql/plus.svg
@@ -0,0 +1,4 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M12 0V24" stroke="black" stroke-width="2"/>
+<path d="M24 12L7.15256e-07 12" stroke="black" stroke-width="2"/>
+</svg>
diff --git a/public/img/features/streaming/five.svg b/public/img/features/streaming/five.svg
new file mode 100644
index 0000000..5ef829a
--- /dev/null
+++ b/public/img/features/streaming/five.svg
@@ -0,0 +1,12 @@
+<svg width="153" height="50" viewBox="0 0 153 50" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="153" height="50" rx="10" fill="white"/>
+<g clip-path="url(#clip0_105:78)">
+<path d="M51.3034 21.6929H43.8965C41.8945 17.9248 39.7782 15 36.8969 15C33.1462 15 31.3827 18.2124 29.6787 21.337L29.5297 21.61H21V23.4673H25.9678C27.7214 23.4673 28.0791 24.0474 28.0791 24.0474C26.703 26.1435 25.0487 28.2152 22.2916 28.2152H21V30.165H22.3016C27.6469 30.165 29.9817 25.9095 31.8546 22.4923C33.5734 19.3433 34.7707 17.4373 36.8969 17.4373C39.1026 17.4373 41.4225 22.1462 43.4643 26.3043C43.7624 26.9088 44.0654 27.5279 44.3734 28.1421C36.5442 28.3858 32.8134 30.1845 29.7781 31.6518C27.5575 32.7242 25.8038 34.055 22.9176 34.055H21V36.0049H22.9027C26.3801 36.0049 28.5461 34.9519 30.8511 33.8357C34.0454 32.2953 37.6669 30.5501 46.2015 30.5501H51.1345V28.6003H48.3476C48.1186 28.6173 47.8888 28.5821 47.6759 28.4976C47.4631 28.413 47.273 28.2813 47.1206 28.1128C46.6337 27.1866 46.1568 26.2117 45.6898 25.2368L45.044 23.9401C45.044 23.9401 45.506 23.4526 46.7877 23.4526H51.3034V21.6929Z" fill="#188FFF"/>
+<path d="M60.6578 21.6783H55.4962V23.5014H60.5435C62.63 23.5014 63.8272 24.4325 63.8272 26.0996C63.8272 27.679 62.5058 28.6978 60.464 28.6978H55.4962V35.0348H57.4834V30.5014H60.4292C63.1218 30.5014 65.8342 29.1219 65.8342 26.007C65.8193 23.3747 63.7924 21.6783 60.6578 21.6783ZM77.2899 29.4144C77.2899 32.0028 75.9684 33.4311 73.574 33.4311C71.1795 33.4311 69.7985 31.9345 69.7985 29.3217V21.6783H67.8114V29.4144C67.8114 33.0167 69.9972 35.2639 73.5193 35.2639C77.0415 35.2639 79.2621 33.0362 79.2621 29.3022V21.6783H77.275L77.2899 29.4144ZM84.2547 21.6783H82.2825V35.0543H91.6517V33.2263H84.2547V21.6783ZM98.8401 27.4304C95.9886 26.8308 95.467 26.1971 95.467 25.1198C95.467 24.0425 96.5102 23.2869 98.0005 23.2869C99.3387 23.2884 100.631 23.7665 101.637 24.6323L101.836 24.7883L103.008 23.2869L102.824 23.1407C101.493 22.0353 99.793 21.4519 98.0502 21.5028C95.4074 21.5028 93.4898 23.0822 93.4898 25.3001C93.4898 27.7667 95.3328 28.6685 98.0949 29.2584C100.857 29.8482 101.319 30.4478 101.319 31.5105C101.319 32.6609 100.216 33.4603 98.6314 33.4603C96.9573 33.4603 95.7005 32.9728 94.2896 31.6957L94.1008 31.53L92.8639 32.968L93.0427 33.124C94.5354 34.5119 96.5206 35.2743 98.5768 35.2493C101.364 35.2493 103.306 33.6504 103.306 31.3496C103.311 29.2632 101.975 28.0982 98.8401 27.4304ZM110.514 21.5857L104.305 35.0543H106.361L107.921 31.6421H114.757L116.297 35.0543H118.428L112.218 21.5857H110.514ZM108.721 29.8726L111.349 24.1205L113.962 29.8726H108.721ZM127.897 29.6971C130.028 29.2096 131.285 27.7472 131.285 25.7437C131.295 25.2442 131.205 24.7476 131.019 24.2824C130.833 23.8173 130.555 23.3928 130.202 23.0334C129.131 22.0935 127.727 21.6049 126.292 21.6734H120.395V35.0543H122.382V30.0383H125.77L129.581 35.0494H132.015L127.897 29.6971ZM122.363 28.2347V23.5014H126.173C128.16 23.5014 129.293 24.3398 129.293 25.8412C129.293 27.3426 128.061 28.2786 126.158 28.2786L122.363 28.2347Z" fill="#464E56"/>
+</g>
+<defs>
+<clipPath id="clip0_105:78">
+<rect width="111" height="21" fill="white" transform="translate(21 15)"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/public/img/features/streaming/four.svg b/public/img/features/streaming/four.svg
new file mode 100644
index 0000000..cd0bb6e
--- /dev/null
+++ b/public/img/features/streaming/four.svg
@@ -0,0 +1,28 @@
+<svg width="140" height="50" viewBox="0 0 140 50" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="140" height="50" rx="10" fill="white"/>
+<g clip-path="url(#clip0_105:77)">
+<path d="M65.3705 25.482C64.8755 25.482 64.4678 25.5831 64.1473 25.7851C63.8269 25.9872 63.6667 26.2952 63.6667 26.709C63.6667 27.113 63.8269 27.4258 64.1473 27.6473C64.4676 27.859 65.1471 28.09 66.1859 28.3403C67.2342 28.5905 68.0206 28.9417 68.5451 29.394C69.079 29.8463 69.346 30.5152 69.346 31.4005C69.346 32.2762 69.011 32.9884 68.341 33.537C67.671 34.0856 66.7926 34.3599 65.7056 34.3599C64.1137 34.3599 62.7011 33.8161 61.468 32.7286L62.5455 31.444C63.5747 32.3294 64.6425 32.772 65.7489 32.772C66.3023 32.772 66.7391 32.6566 67.0593 32.4256C67.3894 32.185 67.5544 31.8722 67.5544 31.4873C67.5544 31.0926 67.3991 30.7894 67.0884 30.5779C66.7875 30.3566 66.2633 30.1593 65.5159 29.9859C64.7683 29.803 64.2005 29.6394 63.8125 29.4951C63.424 29.3411 63.0795 29.1437 62.7788 28.903C62.177 28.4507 61.8761 27.7578 61.8761 26.8245C61.8761 25.8912 62.2158 25.1742 62.8952 24.6736C63.5843 24.1636 64.4337 23.9087 65.4434 23.9087C66.0939 23.9087 66.7395 24.0145 67.3803 24.2262C68.021 24.4379 68.5744 24.7362 69.0404 25.1211L68.1232 26.4056C67.8222 26.1362 67.4145 25.9148 66.8999 25.7416C66.3855 25.5684 65.8758 25.4818 65.3708 25.4818L65.3705 25.482Z" fill="#3C3C3B"/>
+<path d="M75.2897 25.689V34.2182H73.5716V25.689H70.4846V24.1302H78.3783V25.689H75.2897Z" fill="#3C3C3B"/>
+<path d="M87.245 26.5171C86.5559 25.805 85.7065 25.4489 84.6968 25.4489C83.6872 25.4489 82.8329 25.805 82.134 26.5171C81.4449 27.2293 81.1003 28.0955 81.1003 29.1157C81.1003 30.1263 81.4449 30.9877 82.134 31.6998C82.8329 32.412 83.6872 32.7681 84.6968 32.7681C85.7065 32.7681 86.5559 32.412 87.245 31.6998C87.9439 30.9877 88.2934 30.1263 88.2934 29.1157C88.2934 28.0955 87.9439 27.2293 87.245 26.5171ZM88.5121 32.8416C87.4829 33.8328 86.2112 34.3285 84.6968 34.3285C83.1825 34.3285 81.9107 33.8328 80.8816 32.8416C79.8524 31.8406 79.3378 30.5992 79.3378 29.1173C79.3378 27.6257 79.8524 26.3843 80.8816 25.393C81.9107 24.3921 83.1825 23.8916 84.6968 23.8916C86.2112 23.8916 87.4829 24.3921 88.5121 25.393C89.5413 26.3843 90.0559 27.6257 90.0559 29.1173C90.0559 30.5992 89.5413 31.8406 88.5121 32.8416Z" fill="#3C3C3B"/>
+<path d="M100.349 27.4487C100.349 29.1135 99.6159 30.1624 98.15 30.5954L100.815 34.2622H98.6303L96.1985 30.8697H93.9416V34.2622H92.2235V24.17H96.0095C97.5628 24.17 98.6743 24.4299 99.3439 24.9495C100.014 25.4691 100.349 26.3015 100.349 27.4466V27.4487ZM96.0826 29.3253C97.0533 29.3253 97.7134 29.1762 98.0628 28.8778C98.4122 28.5795 98.587 28.1031 98.587 27.4489C98.587 26.7847 98.4074 26.3323 98.0482 26.0919C97.689 25.8416 97.0482 25.7165 96.1259 25.7165H93.9416V29.3254L96.0826 29.3253Z" fill="#3C3C3B"/>
+<path d="M104.525 34.2286H102.807V24.1364H105.487L108.559 30.4712L111.631 24.1364H114.296V34.2286H112.578V26.3463L109.025 33.3487H108.064L104.525 26.3463L104.525 34.2286Z" fill="#3C3C3B"/>
+<path d="M67.4587 21.4969L66.7325 19.8661H63.231L62.5142 21.4969H61.7332L64.6192 15.1207H65.3819L68.2585 21.4969H67.4587ZM63.5343 19.1917H66.4386L64.9773 15.9115L63.5343 19.1917Z" fill="#3C3C3B"/>
+<path d="M71.6875 15.1311C72.4841 15.1311 73.0998 15.3193 73.5345 15.6957C73.9759 16.0663 74.1965 16.5918 74.1965 17.2722C74.1965 17.9709 73.9759 18.5145 73.5345 18.903C73.0995 19.2918 72.4838 19.4862 71.6875 19.4862H70.0054V21.5088H69.2703V15.1326L71.6875 15.1311ZM71.6599 18.8119C72.2418 18.8119 72.6922 18.6843 73.011 18.4292C73.3296 18.168 73.4889 17.7883 73.4889 17.2901C73.4889 16.8043 73.3296 16.4368 73.011 16.1877C72.6924 15.9326 72.242 15.805 71.6599 15.805H70.0055V18.8115L71.6599 18.8119Z" fill="#3C3C3B"/>
+<path d="M79.8839 21.4969L79.1577 19.8661H75.6562L74.9394 21.4969H74.1584L77.0444 15.1207H77.8071L80.6837 21.4969H79.8839ZM75.9595 19.1917H78.8638L77.4025 15.9115L75.9595 19.1917Z" fill="#3C3C3B"/>
+<path d="M86.2009 16.5284C85.9497 16.2794 85.6556 16.085 85.3186 15.9452C84.9878 15.7994 84.6477 15.7265 84.2985 15.7265C83.8206 15.7265 83.3795 15.8419 82.9751 16.0727C82.5769 16.2975 82.2614 16.6073 82.0286 17.0023C81.7957 17.3972 81.6793 17.8285 81.6793 18.2961C81.6793 18.7578 81.7957 19.186 82.0286 19.5807C82.2614 19.9754 82.5769 20.2882 82.9751 20.519C83.3795 20.7498 83.8206 20.8652 84.2985 20.8652C84.6476 20.8652 84.9876 20.7984 85.3186 20.6648C85.6495 20.5251 85.9436 20.3338 86.2009 20.0908L86.6513 20.5737C86.3265 20.8774 85.9559 21.1174 85.5393 21.2936C85.1289 21.4637 84.7031 21.5487 84.2618 21.5487C83.6551 21.5487 83.0975 21.406 82.5891 21.1205C82.0806 20.8289 81.6761 20.434 81.3758 19.9358C81.0817 19.4376 80.9346 18.8909 80.9346 18.2957C80.9346 17.7064 81.0847 17.1657 81.385 16.6737C81.6852 16.1755 82.0896 15.7837 82.5982 15.4984C83.113 15.2068 83.6767 15.061 84.2892 15.061C84.7243 15.061 85.147 15.143 85.5573 15.307C85.9677 15.471 86.3291 15.7018 86.6416 15.9995L86.2009 16.5284Z" fill="#3C3C3B"/>
+<path d="M87.9237 15.1311H88.6588V18.0195H92.5372V15.1311H93.2723V21.5073H92.5372V18.683H88.6588V21.5073H87.9237V15.1311Z" fill="#3C3C3B"/>
+<path d="M95.2327 15.1311H99.5982V15.8054H95.9677V17.9465H99.2119V18.6116H95.9677V20.8345H99.7177V21.5088H95.2327V15.1311Z" fill="#3C3C3B"/>
+<path d="M32.9546 42.8242C32.9799 42.7553 35.1797 41.0144 37.8433 38.9561C43.7531 34.3887 43.4294 34.6433 43.4294 34.5445C43.4294 34.4998 41.2779 34.4471 38.6483 34.4273L33.8672 34.3912L35.2987 33.3065C36.086 32.7097 37.9158 31.2823 39.3651 30.1344L41.9999 28.0471L45.7192 27.9958C49.1225 27.9489 49.5068 27.9193 50.247 27.647C51.8978 27.0394 52.7477 25.9795 52.7514 24.5231C52.7545 23.3022 52.2251 22.4969 51.0218 21.8919C49.9328 21.3443 48.9659 21.1787 46.8515 21.1777L45.2315 21.1766L45.7818 20.3325C46.4333 19.3336 46.6552 18.6401 46.6531 17.6164C46.6505 16.6098 46.258 15.776 45.3856 14.9246C43.1521 12.7453 39.1103 12.1661 36.1293 13.5982C35.0361 14.123 31.5268 16.8737 32.3104 16.5912C32.4623 16.5364 33.426 16.4613 34.4514 16.4243C37.4037 16.3179 39.1406 16.8099 40.5805 18.1607C42.4296 19.8945 42.9898 22.6515 41.9274 24.7905C40.8211 27.018 38.1257 28.3906 33.9659 28.8434C33.1154 28.936 30.3563 28.9784 26.7822 28.9536L20.9821 28.9134L22.8458 27.4689C23.8707 26.6745 25.8065 25.1803 27.1477 24.1483L29.5862 22.2722H32.6774L31.9397 22.8617C31.5339 23.1859 30.1527 24.2487 28.8705 25.2238L26.5389 26.9964L29.6301 27.0383C33.9622 27.0969 35.9419 26.8325 37.884 25.9359C38.9929 25.4236 39.7608 24.7398 40.2066 23.8673C40.504 23.2855 40.5476 23.0428 40.5037 22.2152C40.3686 19.6684 38.5157 18.301 35.1995 18.301C32.7009 18.301 30.1924 18.9366 26.3714 20.5379C25.3836 20.9515 24.5577 21.2723 24.5353 21.2505C24.4445 21.1618 31.3221 14.6673 32.6586 13.5805C33.9184 12.5557 35.2355 11.7918 36.489 11.3602C37.4658 11.0237 37.7467 10.9902 39.6334 10.9859C41.3891 10.9818 41.8731 11.0289 42.8024 11.2941C47.2493 12.5626 49.8712 16.1099 48.613 19.1608C48.526 19.3716 48.6043 19.4005 49.2635 19.4005C51.3763 19.4005 53.5167 20.6622 54.3072 22.3738C55.44 24.827 54.3559 27.7977 51.8738 29.045C50.5739 29.6981 49.6936 29.8296 46.1258 29.9025L42.8107 29.9707L39.2351 32.6128L48.8881 32.7497L48.129 33.3278C47.7115 33.6457 45.2467 35.5336 42.6525 37.5236C40.0579 39.5136 37.3953 41.5486 36.7375 42.0464L35.5409 42.9516H34.2264C33.4892 42.9516 32.9317 42.8966 32.9578 42.8263L32.9546 42.8242Z" fill="#225593"/>
+<path d="M41.9871 28.0232L45.1858 27.9523L42.8 29.9412L39.6028 29.9133L41.9871 28.0232Z" fill="#7A7572"/>
+<path d="M39.7474 29.8957C39.533 29.8653 39.4304 30.1063 39.262 30.1924C37.501 31.5914 35.7187 32.9639 33.9264 34.3256C34.015 34.4418 34.3283 34.3504 34.5007 34.3871C37.0155 34.4381 39.5308 34.4144 42.0446 34.4837C42.497 34.5111 42.977 34.4691 43.4134 34.5656C42.7045 35.2027 41.9198 35.759 41.1743 36.3558L33.5782 42.2765L32.7163 42.9716L35.5119 42.9685C35.5978 42.9074 35.7149 42.8195 35.8042 42.7702L35.9154 42.6781C35.9154 42.6781 45.6102 35.272 48.8888 32.7567C48.8241 32.6453 48.547 32.7373 48.3972 32.7089C45.3749 32.6795 42.3516 32.6376 39.3289 32.5762C40.4597 31.686 41.6516 30.8626 42.7871 29.9854C42.563 29.9184 42.2755 29.9677 42.0274 29.9447C41.2652 29.9319 40.503 29.9135 39.7413 29.8978L39.7474 29.8957Z" fill="#EA9941"/>
+<path d="M24.7119 21.0456C24.9697 20.7506 28.4875 17.3658 28.6624 17.2442C28.8742 17.0971 30.7506 16.6961 31.7614 16.5823C31.9436 16.5617 32.1338 16.5383 32.1839 16.5302C32.2562 16.5185 32.1891 16.5989 31.8579 16.92C31.221 17.5374 30.7418 18.1352 30.3085 18.8515C30.1632 19.0916 30.0943 19.1738 30.0234 19.1914C29.6306 19.289 27.647 20.034 26.3371 20.5754C25.4663 20.9355 24.6487 21.2492 24.5819 21.2492C24.5554 21.2492 24.6139 21.1576 24.7117 21.0455L24.7119 21.0456Z" fill="#326BA3"/>
+<path d="M35.1532 16.4394C34.1707 16.443 33.1819 16.4934 32.2098 16.61C31.85 16.864 31.5823 17.23 31.2785 17.5452C30.8425 18.0399 30.4588 18.5839 30.1289 19.1511C30.1823 19.2474 30.3503 19.1144 30.4439 19.1174C32.067 18.6589 33.7418 18.3214 35.4365 18.3846C36.3882 18.3788 37.3545 18.5388 38.2285 18.9094C39.1885 19.3177 39.9842 20.1209 40.2818 21.125C40.4813 21.8035 40.5691 22.5394 40.4392 23.2392C40.1161 24.4564 39.1074 25.3803 37.9824 25.9035C36.4632 26.6498 34.7539 26.9158 33.0744 27.0054C30.9292 27.0457 28.782 27.0777 26.6373 27.0059C28.6353 25.4765 30.6552 23.9736 32.615 22.3956C32.7373 22.2876 32.5014 22.2975 32.4349 22.298C31.4858 22.2767 30.5335 22.2797 29.5854 22.2891C26.7266 24.4965 23.8636 26.6997 21.0079 28.9137C21.0973 29.0297 21.4098 28.9382 21.5822 28.9746C25.0007 29.0225 28.4212 28.9928 31.8408 28.9749C32.898 28.9765 33.9593 28.9598 35.0035 28.7761C36.9189 28.4663 38.8803 27.9294 40.4225 26.71C41.5094 25.8509 42.2962 24.5762 42.4398 23.1938C42.4934 22.2912 42.4791 21.3586 42.1305 20.5088C41.777 19.5679 41.2054 18.7072 40.4364 18.0494C39.4529 17.1468 38.1451 16.6686 36.8274 16.5231C36.273 16.4505 35.7123 16.4409 35.1536 16.4424L35.1532 16.4394Z" fill="#318FBF"/>
+<path d="M115.912 24.3527V25.4318H115.694V24.3527H115.304V24.1555H116.302V24.3527H115.912Z" fill="#3C3C3B"/>
+<path d="M116.752 25.3878H116.535V24.1116H116.874L117.262 24.9133L117.651 24.1116H117.988V25.3878H117.771V24.3911L117.321 25.2766H117.2L116.752 24.3911L116.752 25.3878Z" fill="#3C3C3B"/>
+</g>
+<defs>
+<clipPath id="clip0_105:77">
+<rect width="97" height="32" fill="white" transform="translate(21 11)"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/public/img/features/streaming/hero-image.svg b/public/img/features/streaming/hero-image.svg
new file mode 100644
index 0000000..8c2edb7
--- /dev/null
+++ b/public/img/features/streaming/hero-image.svg
@@ -0,0 +1,7 @@
+<svg width="438" height="369" viewBox="0 0 438 369" fill="none" xmlns="http://www.w3.org/2000/svg">
+<circle cx="219" cy="286.518" r="81.7332" fill="#0070CC" stroke="white"/>
+<path d="M27.0289 122.817L27.0287 122.816L3.59567 99.5494C-0.61209 95.3709 -0.524444 88.5553 3.82254 84.5314L3.48289 84.1644L3.82255 84.5313C124.834 -27.4899 313.117 -27.531 434.177 84.5314C438.524 88.5553 438.611 95.3712 434.41 99.5497L410.977 122.816C406.967 126.797 400.51 126.892 396.338 123.063L396.337 123.063C296.262 31.3055 141.724 31.3261 41.6685 123.063L41.6683 123.063C37.496 126.892 31.0387 126.804 27.0289 122.817ZM80.2585 177.425L80.2583 177.425C75.979 173.201 76.1259 166.283 80.6285 162.299L80.2972 161.925L80.6286 162.299C159.232 92.7267 278.679 92.6516 357.371 162.299L357.702 161.925L357.371 162.299C361.866 166.276 362.02 173.201 357.734 177.425L357.734 177.425L334.164 200.706L334.164 200.706C330.24 204.587 323.925 204.839 319.752 201.232C262.248 151.473 175.882 151.363 118.24 201.231C114.068 204.839 107.752 204.581 103.828 200.706L80.2585 177.425Z" fill="#0070CC" stroke="white"/>
+<path d="M238.785 338.653C238.174 339.977 237.595 341.06 237.148 341.847C236.816 338.6 235.066 335.366 232.522 332.267C229.514 328.601 225.341 325.057 220.891 321.809C216.439 318.559 211.689 315.591 207.514 313.085C205.978 312.163 204.523 311.306 203.19 310.52C200.889 309.163 198.949 308.019 197.577 307.125L197.575 307.124C186.321 299.885 180.945 292.683 179.127 286.002C177.31 279.327 179.018 273.072 182.148 267.662C185.282 262.248 189.822 257.716 193.595 254.531C195.445 252.969 197.105 251.736 198.315 250.885C195.46 256.148 195.785 263.03 199.675 270.571C204.1 279.148 213.159 288.645 227.574 297.801C234.493 302.213 238.47 307.253 240.567 312.315C242.666 317.381 242.897 322.504 242.262 327.097C241.628 331.693 240.129 335.745 238.785 338.653Z" fill="#0070CC" stroke="white"/>
+<path d="M233.109 345.281C233.168 345.513 233.218 345.73 233.26 345.929C231.583 344.367 229.26 343.052 226.649 341.942C223.38 340.552 219.601 339.459 215.933 338.609C209.289 337.068 202.96 336.311 200.597 336.028C200.354 335.999 200.154 335.975 199.999 335.956C191.636 334.634 186.503 332.042 183.47 328.96C180.447 325.887 179.461 322.275 179.494 318.797C179.528 315.306 180.59 311.958 181.656 309.469C182.188 308.227 182.717 307.207 183.113 306.498C183.127 306.473 183.141 306.448 183.154 306.424C183.736 308.491 184.604 310.226 185.817 311.755C187.253 313.564 189.155 315.06 191.585 316.475C195.252 318.611 200.198 320.603 206.686 323.215C208.749 324.045 210.967 324.938 213.349 325.919L213.35 325.919C223.202 329.959 228.228 335.384 230.796 339.764C232.082 341.957 232.756 343.896 233.109 345.281Z" fill="#0070CC" stroke="white"/>
+<path d="M231.154 226.582C227.209 234.845 226.608 242.31 229.426 250.267C232.366 258.568 239.011 267.362 249.313 278.157C259.485 288.816 260.253 298.833 258.114 306.61C256.304 313.192 252.397 318.21 250.205 320.677C250.237 320.255 250.26 319.755 250.259 319.183C250.257 317.388 250.022 314.898 249.098 311.952C247.248 306.052 242.648 298.375 231.719 290.816C216.592 280.349 209.157 271.078 206.435 263.104C203.724 255.165 205.662 248.438 209.477 242.961C213.305 237.466 219.018 233.242 223.802 230.385C226.19 228.959 228.337 227.879 229.886 227.156C230.371 226.929 230.797 226.738 231.154 226.582Z" fill="#0070CC" stroke="white"/>
+</svg>
diff --git a/public/img/features/streaming/one.png b/public/img/features/streaming/one.png
new file mode 100644
index 0000000..baac609
--- /dev/null
+++ b/public/img/features/streaming/one.png
Binary files differ
diff --git a/public/img/features/streaming/six.svg b/public/img/features/streaming/six.svg
new file mode 100644
index 0000000..0fbe0c7
--- /dev/null
+++ b/public/img/features/streaming/six.svg
@@ -0,0 +1,11 @@
+<svg width="137" height="50" viewBox="0 0 137 50" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="137" height="50" rx="10" fill="white"/>
+<path d="M80.2851 19.1669H80V19H80.7679V19.1669H80.4844V19.9997H80.2851V19.1669ZM81.8166 19.2104H81.8122L81.5294 20H81.4001L81.1193 19.2104H81.116V20H80.928V19.0003H81.2046L81.4649 19.7082L81.7244 19.0003H82V20H81.8165L81.8166 19.2104Z" fill="#5382A1"/>
+<path d="M23.0309 33.9896C23.0309 33.9896 21.541 34.7994 24.0911 35.0734C27.1805 35.4028 28.7594 35.3556 32.1639 34.7533C32.1639 34.7533 33.059 35.2779 34.309 35.7322C26.677 38.7896 17.0364 35.5552 23.0309 33.9896ZM22.0983 30C22.0983 30 20.4273 31.1561 22.9793 31.4028C26.2794 31.7211 28.8856 31.7471 33.3953 30.9354C33.3953 30.9354 34.0192 31.5265 35 31.8497C25.7724 34.3717 15.4946 32.0486 22.0983 30Z" fill="#5382A1"/>
+<path d="M29.785 22.8286C31.731 25.0242 29.2738 27 29.2738 27C29.2738 27 34.215 24.5003 31.9457 21.3702C29.8262 18.451 28.2008 17.0007 37 12C37.0001 11.9999 23.1881 15.3802 29.785 22.8286Z" fill="#E76F00"/>
+<path d="M39.6101 37.1934C39.6101 37.1934 40.6844 38.0996 38.427 38.8005C34.1346 40.1316 20.5616 40.5335 16.7911 38.8536C15.4357 38.2499 17.9774 37.4122 18.777 37.2365C19.6108 37.0514 20.0873 37.0859 20.0873 37.0859C18.58 35.9989 10.3444 39.2201 15.9041 40.1428C31.0661 42.6598 43.5431 39.0094 39.6101 37.1934ZM23.7211 25.3757C23.7211 25.3757 16.817 27.0543 21.2762 27.6639C23.159 27.922 26.9123 27.8636 30.4083 27.5637C33.2656 27.317 36.1347 26.7925 36.1347 26.7925C36.1347 26.7925 35.1272 27.2342 34.3983 27.7436C27.3873 29.6312 13.8433 28.753 17.7425 26.8223C21.04 25.1906 23.7211 25.3757 23.7211 25.3757ZM36.1062 32.4624C43.2332 28.6713 39.9381 25.0279 37.6379 25.5189C37.0742 25.639 36.8228 25.7431 36.8228 25.7431C36.8228 25.7431 37.0322 25.4074 37.4317 25.2622C41.9819 23.6246 45.4814 30.092 35.9629 32.6536C35.9629 32.6536 36.0734 32.5528 36.1062 32.4624Z" fill="#5382A1"/>
+<path d="M31.966 4C31.966 4 35.9962 7.97859 28.1435 14.0968C21.8465 19.0045 26.7076 21.8027 28.1409 25C24.4653 21.727 21.7679 18.846 23.5775 16.1645C26.2336 12.2283 33.5921 10.3199 31.966 4Z" fill="#E76F00"/>
+<path d="M24.3787 42.8673C31.23 43.354 41.7509 42.5973 42 39C42 39 41.5211 40.3636 36.3378 41.4468C30.4902 42.6678 23.2777 42.5254 19 41.7427C19.0002 41.7425 19.8758 42.5469 24.3787 42.8673Z" fill="#5382A1"/>
+<path d="M58.9466 32.1066C58.1212 32.8564 57.2494 33.2774 56.4671 33.2774C55.3504 33.2774 54.7471 32.5761 54.7471 31.4512C54.7471 30.2344 55.3936 29.3447 57.9868 29.3447H58.9465L58.9466 32.1066ZM61.2242 34.7982V26.4664C61.2242 24.3378 60.0652 22.9335 57.2709 22.9335C55.6396 22.9335 54.2106 23.3555 53.0491 23.8936L53.3844 25.3684C54.2988 25.0168 55.4825 24.6895 56.6444 24.6895C58.2541 24.6895 58.9466 25.3684 58.9466 26.7719V27.825H58.1432C54.2322 27.825 52.4679 29.4152 52.4679 31.8019C52.4679 33.8619 53.6306 35.0327 55.8196 35.0327C57.2267 35.0327 58.2771 34.4241 59.2591 33.5336L59.4373 34.7984L61.2242 34.7982ZM68.8253 34.7982H65.9847L62.566 23.1445H65.0468L67.168 30.3045L67.6396 32.4578C68.7128 29.3444 69.4719 26.1858 69.8516 23.1445H72.2647C71.6181 26.9819 70.4546 31.194 68.8253 34.7982ZM79.7227 32.1066C78.8957 32.8564 78.0225 33.2774 77.24 33.2774C76.1253 33.2774 75.5204 32.5761 75.5204 31.4512C75.5204 30.2344 76.1683 29.3447 78.7613 29.3447H79.7227V32.1066ZM82 34.7982V26.4664C82 24.3378 80.8383 22.9335 78.047 22.9335C76.4146 22.9335 74.9851 23.3555 73.8241 23.8936L74.159 25.3684C75.0737 25.0168 76.2597 24.6895 77.4206 24.6895C79.0291 24.6895 79.7227 25.3684 79.7227 26.7719V27.825H78.9178C75.0058 27.825 73.2422 29.4152 73.2422 31.8019C73.2422 33.8619 74.4039 35.0327 76.5926 35.0327C78.0006 35.0327 79.0506 34.4241 80.0341 33.5336L80.213 34.7984L82 34.7982ZM49.9706 36.7771C49.3213 37.77 48.2726 38.5556 47.1245 39L46 37.6139C46.8739 37.1443 47.6233 36.3857 47.9715 35.6793C48.2727 35.051 48.3974 34.2411 48.3974 32.3045V19H50.8172V32.1222C50.8171 34.7112 50.6195 35.7571 49.9706 36.7771Z" fill="#5382A1"/>
+<path d="M88.4897 31.5469L89.9424 31.3477C89.9811 32.2773 90.1554 32.9137 90.4653 33.2568C90.7752 33.5999 91.2041 33.7715 91.752 33.7715C92.1559 33.7715 92.5046 33.6802 92.7979 33.4976C93.0911 33.3094 93.2931 33.0576 93.4038 32.7422C93.5145 32.4212 93.5698 31.9121 93.5698 31.2148V22.8311H95.1802V31.1235C95.1802 32.1418 95.0557 32.9303 94.8066 33.4893C94.5632 34.0482 94.173 34.4743 93.6362 34.7676C93.105 35.0609 92.4797 35.2075 91.7603 35.2075C90.6922 35.2075 89.8732 34.9004 89.3032 34.2861C88.7388 33.6719 88.4676 32.7588 88.4897 31.5469ZM97.7617 35V22.8311H100.186L103.066 31.4473C103.332 32.2497 103.525 32.8501 103.647 33.2485C103.785 32.8058 104.001 32.1556 104.294 31.2979L107.208 22.8311H109.375V35H107.822V24.8149L104.286 35H102.833L99.314 24.6406V35H97.7617ZM111.425 31.0903L112.944 30.9575C113.016 31.5662 113.182 32.0671 113.442 32.46C113.708 32.8473 114.117 33.1628 114.67 33.4062C115.224 33.6442 115.846 33.7632 116.538 33.7632C117.152 33.7632 117.695 33.6719 118.165 33.4893C118.635 33.3066 118.984 33.0576 119.211 32.7422C119.443 32.4212 119.56 32.0726 119.56 31.6963C119.56 31.3145 119.449 30.9824 119.228 30.7002C119.006 30.4124 118.641 30.1717 118.132 29.978C117.805 29.8507 117.083 29.6543 115.965 29.3887C114.847 29.1175 114.064 28.863 113.616 28.625C113.035 28.3206 112.601 27.9443 112.313 27.4961C112.031 27.0423 111.89 26.536 111.89 25.9771C111.89 25.3628 112.064 24.79 112.413 24.2588C112.761 23.722 113.27 23.3153 113.94 23.0386C114.61 22.7619 115.354 22.6235 116.173 22.6235C117.075 22.6235 117.869 22.7702 118.555 23.0635C119.247 23.3512 119.778 23.7773 120.149 24.3418C120.52 24.9062 120.719 25.5454 120.747 26.2593L119.203 26.3755C119.12 25.6063 118.837 25.0252 118.356 24.6323C117.88 24.2394 117.174 24.043 116.239 24.043C115.265 24.043 114.554 24.2228 114.106 24.5825C113.663 24.9367 113.442 25.3656 113.442 25.8691C113.442 26.3063 113.6 26.666 113.915 26.9482C114.225 27.2305 115.033 27.521 116.339 27.8198C117.65 28.1131 118.55 28.3704 119.037 28.5918C119.745 28.9183 120.268 29.3333 120.605 29.8369C120.943 30.335 121.112 30.9105 121.112 31.5635C121.112 32.2109 120.926 32.8224 120.556 33.3979C120.185 33.9679 119.651 34.4134 118.954 34.7344C118.262 35.0498 117.482 35.2075 116.613 35.2075C115.512 35.2075 114.587 35.047 113.84 34.7261C113.099 34.4051 112.515 33.9237 112.089 33.2817C111.668 32.6343 111.447 31.9038 111.425 31.0903Z" fill="#E76F00"/>
+</svg>
diff --git a/public/img/features/streaming/speed.png b/public/img/features/streaming/speed.png
new file mode 100644
index 0000000..9ccdda0
--- /dev/null
+++ b/public/img/features/streaming/speed.png
Binary files differ
diff --git a/public/img/features/streaming/sql.svg b/public/img/features/streaming/sql.svg
new file mode 100644
index 0000000..de66479
--- /dev/null
+++ b/public/img/features/streaming/sql.svg
@@ -0,0 +1,65 @@
+<svg width="542" height="406" viewBox="0 0 542 406" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="406" rx="10" fill="#F6F6F6"/>
+<rect x="234.5" y="59.9283" width="68" height="100" rx="9.5" fill="#2D2D2D" stroke="white"/>
+<rect x="249.581" y="98.149" width="37.0968" height="37.2093" rx="18.5484" fill="#ED1C24"/>
+<path d="M264.805 110.156C264.805 110.156 256.302 115.348 264.315 120.503C265.857 121.508 271.448 124.3 271.289 126.883C271.289 126.883 274.678 121.863 269.723 118.703C264.634 115.471 263.361 112.018 264.805 110.156Z" fill="white"/>
+<path d="M261.844 120.074C261.844 120.074 258.81 124.679 264.78 125.622C265.367 125.695 269.686 126.148 270.812 127.569C270.812 127.569 270.714 125.12 267.19 123.675C263.679 122.23 262.235 121.875 261.844 120.074Z" fill="white"/>
+<path d="M273.59 115.238C269.944 111.417 268.928 109.054 270.494 105.993C270.494 105.993 259.617 110.181 270.36 117.614C274.201 120.271 273.565 122.989 273.565 123.087C274.165 122.463 277.236 119.058 273.59 115.238Z" fill="white"/>
+<path d="M243.473 78.359V71.2008H245.938C246.495 71.2008 246.92 71.235 247.213 71.3033C247.623 71.3977 247.973 71.5686 248.263 71.816C248.64 72.1351 248.922 72.5436 249.107 73.0416C249.296 73.5364 249.391 74.1028 249.391 74.7408C249.391 75.2845 249.327 75.7662 249.2 76.1862C249.073 76.6061 248.91 76.9544 248.712 77.2311C248.513 77.5045 248.295 77.721 248.058 77.8805C247.823 78.0367 247.538 78.1556 247.203 78.2369C246.871 78.3183 246.489 78.359 246.056 78.359H243.473ZM244.42 77.5143H245.948C246.42 77.5143 246.79 77.4703 247.057 77.3824C247.327 77.2946 247.542 77.1709 247.701 77.0114C247.926 76.7867 248.1 76.4856 248.224 76.108C248.351 75.7272 248.414 75.2666 248.414 74.7262C248.414 73.9775 248.29 73.403 248.043 73.0026C247.799 72.5989 247.501 72.3287 247.149 72.192C246.895 72.0944 246.487 72.0455 245.924 72.0455H244.42V77.5143ZM255.996 71.2008H256.944V75.3365C256.944 76.0559 256.862 76.6272 256.7 77.0504C256.537 77.4736 256.242 77.8186 255.816 78.0856C255.393 78.3492 254.836 78.4811 254.146 78.4811C253.475 78.4811 252.927 78.3655 252.5 78.1344C252.074 77.9033 251.77 77.5696 251.587 77.1334C251.405 76.694 251.314 76.095 251.314 75.3365V71.2008H252.261V75.3317C252.261 75.9534 252.318 76.4124 252.432 76.7086C252.549 77.0016 252.748 77.2278 253.028 77.3873C253.311 77.5468 253.656 77.6266 254.063 77.6266C254.759 77.6266 255.256 77.4687 255.552 77.153C255.848 76.8372 255.996 76.2301 255.996 75.3317V71.2008ZM259.14 78.359V71.2008H262.314C262.952 71.2008 263.437 71.2659 263.769 71.3961C264.101 71.5231 264.367 71.7493 264.565 72.0748C264.764 72.4003 264.863 72.7601 264.863 73.1539C264.863 73.6617 264.699 74.0898 264.37 74.4381C264.041 74.7864 263.533 75.0078 262.846 75.1022C263.097 75.2226 263.288 75.3414 263.418 75.4586C263.694 75.7125 263.956 76.0299 264.204 76.4108L265.449 78.359H264.258L263.31 76.8698C263.034 76.4401 262.806 76.1113 262.627 75.8834C262.448 75.6556 262.287 75.4961 262.143 75.4049C262.003 75.3138 261.86 75.2503 261.714 75.2145C261.606 75.1917 261.43 75.1803 261.186 75.1803H260.088V78.359H259.14ZM260.088 74.36H262.124C262.557 74.36 262.895 74.316 263.139 74.2281C263.384 74.137 263.569 73.9938 263.696 73.7985C263.823 73.5999 263.886 73.3851 263.886 73.1539C263.886 72.8154 263.763 72.5371 263.515 72.319C263.271 72.1009 262.884 71.9918 262.353 71.9918H260.088V74.36ZM266.166 78.359L268.915 71.2008H269.936L272.865 78.359H271.786L270.951 76.191H267.958L267.172 78.359H266.166ZM268.232 75.4196H270.658L269.911 73.4371C269.683 72.8349 269.514 72.3401 269.403 71.9528C269.312 72.4117 269.184 72.8675 269.018 73.3199L268.232 75.4196ZM274.183 78.359V71.2008H276.869C277.416 71.2008 277.853 71.274 278.182 71.4205C278.514 71.5638 278.773 71.7867 278.959 72.0895C279.147 72.389 279.242 72.7031 279.242 73.0319C279.242 73.3378 279.159 73.6259 278.993 73.8961C278.827 74.1663 278.576 74.3844 278.241 74.5504C278.674 74.6774 279.006 74.8938 279.237 75.1998C279.471 75.5058 279.588 75.8671 279.588 76.2838C279.588 76.6191 279.517 76.9316 279.374 77.2213C279.234 77.5078 279.059 77.7291 278.851 77.8854C278.643 78.0416 278.381 78.1604 278.065 78.2418C277.753 78.3199 277.368 78.359 276.913 78.359H274.183ZM275.13 74.2086H276.678C277.098 74.2086 277.399 74.1809 277.582 74.1256C277.822 74.054 278.003 73.9352 278.124 73.7692C278.247 73.6031 278.309 73.3948 278.309 73.1442C278.309 72.9065 278.252 72.6982 278.138 72.5192C278.024 72.3369 277.862 72.2132 277.65 72.1481C277.438 72.0797 277.075 72.0455 276.561 72.0455H275.13V74.2086ZM275.13 77.5143H276.913C277.219 77.5143 277.433 77.5029 277.557 77.4801C277.775 77.441 277.958 77.3759 278.104 77.2848C278.251 77.1936 278.371 77.0618 278.465 76.8893C278.56 76.7135 278.607 76.5117 278.607 76.2838C278.607 76.0169 278.539 75.7858 278.402 75.5905C278.265 75.3919 278.075 75.2535 277.831 75.1754C277.59 75.094 277.241 75.0533 276.786 75.0533H275.13V77.5143ZM281.453 78.359V71.2008H282.4V77.5143H285.926V78.359H281.453ZM287.678 78.359V71.2008H292.854V72.0455H288.625V74.2379H292.585V75.0778H288.625V77.5143H293.02V78.359H287.678ZM244.752 89.359V82.2008H246.178L247.872 87.2692C248.028 87.7412 248.142 88.0944 248.214 88.3287C248.295 88.0683 248.422 87.6858 248.595 87.1813L250.309 82.2008H251.583V89.359H250.67V83.3678L248.59 89.359H247.735L245.665 83.2653V89.359H244.752ZM253.731 89.359V82.2008H258.907V83.0455H254.678V85.2379H258.638V86.0778H254.678V88.5143H259.073V89.359H253.731ZM260.952 89.359V82.2008H262.378L264.072 87.2692C264.228 87.7412 264.342 88.0944 264.414 88.3287C264.495 88.0683 264.622 87.6858 264.795 87.1813L266.509 82.2008H267.783V89.359H266.87V83.3678L264.79 89.359H263.935L261.865 83.2653V89.359H260.952ZM269.623 85.8727C269.623 84.6845 269.942 83.7552 270.58 83.0846C271.218 82.4108 272.042 82.0739 273.051 82.0739C273.712 82.0739 274.307 82.2317 274.838 82.5475C275.369 82.8632 275.772 83.3043 276.049 83.8707C276.329 84.4339 276.469 85.0735 276.469 85.7897C276.469 86.5156 276.322 87.165 276.029 87.7379C275.736 88.3108 275.321 88.7454 274.784 89.0416C274.247 89.3346 273.668 89.4811 273.046 89.4811C272.372 89.4811 271.77 89.3183 271.239 88.9928C270.709 88.6673 270.307 88.2229 270.033 87.6598C269.76 87.0966 269.623 86.5009 269.623 85.8727ZM270.6 85.8873C270.6 86.75 270.831 87.4303 271.293 87.9283C271.759 88.4231 272.341 88.6705 273.041 88.6705C273.754 88.6705 274.34 88.4199 274.799 87.9186C275.261 87.4173 275.492 86.706 275.492 85.7848C275.492 85.2021 275.393 84.6943 275.194 84.2614C274.999 83.8252 274.711 83.4882 274.33 83.2506C273.953 83.0097 273.528 82.8893 273.056 82.8893C272.385 82.8893 271.807 83.1204 271.322 83.5826C270.841 84.0416 270.6 84.8099 270.6 85.8873ZM278.309 89.359V82.2008H281.483C282.121 82.2008 282.606 82.2659 282.938 82.3961C283.27 82.5231 283.535 82.7493 283.734 83.0748C283.933 83.4003 284.032 83.7601 284.032 84.1539C284.032 84.6617 283.867 85.0898 283.539 85.4381C283.21 85.7864 282.702 86.0078 282.015 86.1022C282.266 86.2226 282.456 86.3414 282.586 86.4586C282.863 86.7125 283.125 87.0299 283.373 87.4108L284.618 89.359H283.426L282.479 87.8698C282.202 87.4401 281.975 87.1113 281.795 86.8834C281.616 86.6556 281.455 86.4961 281.312 86.4049C281.172 86.3138 281.029 86.2503 280.882 86.2145C280.775 86.1917 280.599 86.1803 280.355 86.1803H279.256V89.359H278.309ZM279.256 85.36H281.293C281.725 85.36 282.064 85.316 282.308 85.2281C282.552 85.137 282.738 84.9938 282.865 84.7985C282.992 84.5999 283.055 84.3851 283.055 84.1539C283.055 83.8154 282.932 83.5371 282.684 83.319C282.44 83.1009 282.053 82.9918 281.522 82.9918H279.256V85.36ZM287.952 89.359V86.3268L285.193 82.2008H286.346L287.757 84.359C288.017 84.7627 288.26 85.1663 288.484 85.5699C288.699 85.1956 288.96 84.774 289.266 84.3053L290.652 82.2008H291.756L288.899 86.3268V89.359H287.952Z" fill="white"/>
+<path d="M246.241 146.593C246.241 145.405 246.56 144.476 247.198 143.805C247.836 143.131 248.66 142.795 249.669 142.795C250.33 142.795 250.925 142.952 251.456 143.268C251.987 143.584 252.39 144.025 252.667 144.591C252.947 145.155 253.087 145.794 253.087 146.51C253.087 147.236 252.94 147.886 252.647 148.459C252.354 149.032 251.939 149.466 251.402 149.762C250.865 150.055 250.286 150.202 249.664 150.202C248.99 150.202 248.388 150.039 247.857 149.714C247.327 149.388 246.925 148.944 246.651 148.38C246.378 147.817 246.241 147.222 246.241 146.593ZM247.218 146.608C247.218 147.471 247.449 148.151 247.911 148.649C248.377 149.144 248.959 149.391 249.659 149.391C250.372 149.391 250.958 149.141 251.417 148.639C251.879 148.138 252.11 147.427 252.11 146.505C252.11 145.923 252.011 145.415 251.812 144.982C251.617 144.546 251.329 144.209 250.948 143.971C250.571 143.73 250.146 143.61 249.674 143.61C249.003 143.61 248.425 143.841 247.94 144.303C247.459 144.762 247.218 145.531 247.218 146.608ZM254.903 150.08V142.922H255.874L259.634 148.542V142.922H260.542V150.08H259.571L255.811 144.455V150.08H254.903ZM266.122 150.08V142.922H268.588C269.145 142.922 269.569 142.956 269.862 143.024C270.273 143.118 270.623 143.289 270.912 143.537C271.29 143.856 271.571 144.264 271.757 144.762C271.946 145.257 272.04 145.824 272.04 146.462C272.04 147.005 271.977 147.487 271.85 147.907C271.723 148.327 271.56 148.675 271.361 148.952C271.163 149.225 270.945 149.442 270.707 149.601C270.473 149.757 270.188 149.876 269.853 149.958C269.521 150.039 269.138 150.08 268.705 150.08H266.122ZM267.069 149.235H268.598C269.07 149.235 269.439 149.191 269.706 149.103C269.976 149.015 270.191 148.892 270.351 148.732C270.575 148.507 270.75 148.206 270.873 147.829C271 147.448 271.064 146.987 271.064 146.447C271.064 145.698 270.94 145.124 270.693 144.723C270.448 144.32 270.151 144.049 269.799 143.913C269.545 143.815 269.137 143.766 268.573 143.766H267.069V149.235ZM274.11 150.08V142.922H275.057V150.08H274.11ZM277.01 147.78L277.903 147.702C277.946 148.06 278.043 148.354 278.196 148.586C278.353 148.813 278.593 148.999 278.919 149.142C279.244 149.282 279.611 149.352 280.018 149.352C280.379 149.352 280.698 149.298 280.975 149.191C281.251 149.084 281.456 148.937 281.59 148.752C281.727 148.563 281.795 148.358 281.795 148.136C281.795 147.912 281.73 147.716 281.6 147.55C281.469 147.381 281.255 147.24 280.955 147.126C280.763 147.051 280.338 146.935 279.681 146.779C279.023 146.619 278.562 146.47 278.299 146.33C277.957 146.151 277.701 145.929 277.532 145.666C277.366 145.399 277.283 145.101 277.283 144.772C277.283 144.411 277.386 144.074 277.591 143.761C277.796 143.446 278.095 143.206 278.489 143.044C278.883 142.881 279.321 142.799 279.803 142.799C280.333 142.799 280.8 142.886 281.204 143.058C281.611 143.227 281.923 143.478 282.142 143.81C282.36 144.142 282.477 144.518 282.493 144.938L281.585 145.006C281.536 144.554 281.37 144.212 281.087 143.981C280.807 143.75 280.392 143.634 279.842 143.634C279.269 143.634 278.851 143.74 278.587 143.952C278.326 144.16 278.196 144.412 278.196 144.709C278.196 144.966 278.289 145.177 278.475 145.343C278.657 145.509 279.132 145.68 279.9 145.856C280.672 146.029 281.201 146.18 281.487 146.31C281.904 146.502 282.212 146.746 282.41 147.043C282.609 147.336 282.708 147.674 282.708 148.058C282.708 148.439 282.599 148.799 282.381 149.137C282.163 149.473 281.849 149.735 281.438 149.923C281.032 150.109 280.573 150.202 280.061 150.202C279.414 150.202 278.87 150.107 278.431 149.919C277.994 149.73 277.651 149.447 277.4 149.069C277.153 148.688 277.023 148.258 277.01 147.78ZM284.563 150.08V142.922H285.51V146.471L289.065 142.922H290.349L287.346 145.822L290.481 150.08H289.231L286.682 146.457L285.51 147.599V150.08H284.563Z" fill="white"/>
+<rect x="234.5" y="111.928" width="68" height="100" rx="9.5" fill="#2D2D2D" stroke="white"/>
+<rect x="249.581" y="150.149" width="37.0968" height="37.2093" rx="18.5484" fill="#ED1C24"/>
+<path d="M264.805 162.156C264.805 162.156 256.302 167.348 264.315 172.503C265.857 173.508 271.448 176.3 271.289 178.883C271.289 178.883 274.678 173.863 269.723 170.703C264.634 167.471 263.361 164.018 264.805 162.156Z" fill="white"/>
+<path d="M261.844 172.074C261.844 172.074 258.81 176.679 264.78 177.622C265.367 177.695 269.686 178.148 270.812 179.569C270.812 179.569 270.714 177.12 267.19 175.675C263.679 174.23 262.235 173.875 261.844 172.074Z" fill="white"/>
+<path d="M273.59 167.238C269.944 163.417 268.928 161.054 270.494 157.993C270.494 157.993 259.617 162.181 270.36 169.614C274.201 172.271 273.565 174.989 273.565 175.087C274.165 174.463 277.236 171.058 273.59 167.238Z" fill="white"/>
+<path d="M243.473 130.359V123.201H245.938C246.495 123.201 246.92 123.235 247.213 123.303C247.623 123.398 247.973 123.569 248.263 123.816C248.64 124.135 248.922 124.544 249.107 125.042C249.296 125.536 249.391 126.103 249.391 126.741C249.391 127.284 249.327 127.766 249.2 128.186C249.073 128.606 248.91 128.954 248.712 129.231C248.513 129.505 248.295 129.721 248.058 129.88C247.823 130.037 247.538 130.156 247.203 130.237C246.871 130.318 246.489 130.359 246.056 130.359H243.473ZM244.42 129.514H245.948C246.42 129.514 246.79 129.47 247.057 129.382C247.327 129.295 247.542 129.171 247.701 129.011C247.926 128.787 248.1 128.486 248.224 128.108C248.351 127.727 248.414 127.267 248.414 126.726C248.414 125.977 248.29 125.403 248.043 125.003C247.799 124.599 247.501 124.329 247.149 124.192C246.895 124.094 246.487 124.046 245.924 124.046H244.42V129.514ZM255.996 123.201H256.944V127.337C256.944 128.056 256.862 128.627 256.7 129.05C256.537 129.474 256.242 129.819 255.816 130.086C255.393 130.349 254.836 130.481 254.146 130.481C253.475 130.481 252.927 130.366 252.5 130.134C252.074 129.903 251.77 129.57 251.587 129.133C251.405 128.694 251.314 128.095 251.314 127.337V123.201H252.261V127.332C252.261 127.953 252.318 128.412 252.432 128.709C252.549 129.002 252.748 129.228 253.028 129.387C253.311 129.547 253.656 129.627 254.063 129.627C254.759 129.627 255.256 129.469 255.552 129.153C255.848 128.837 255.996 128.23 255.996 127.332V123.201ZM259.14 130.359V123.201H262.314C262.952 123.201 263.437 123.266 263.769 123.396C264.101 123.523 264.367 123.749 264.565 124.075C264.764 124.4 264.863 124.76 264.863 125.154C264.863 125.662 264.699 126.09 264.37 126.438C264.041 126.786 263.533 127.008 262.846 127.102C263.097 127.223 263.288 127.341 263.418 127.459C263.694 127.713 263.956 128.03 264.204 128.411L265.449 130.359H264.258L263.31 128.87C263.034 128.44 262.806 128.111 262.627 127.883C262.448 127.656 262.287 127.496 262.143 127.405C262.003 127.314 261.86 127.25 261.714 127.214C261.606 127.192 261.43 127.18 261.186 127.18H260.088V130.359H259.14ZM260.088 126.36H262.124C262.557 126.36 262.895 126.316 263.139 126.228C263.384 126.137 263.569 125.994 263.696 125.798C263.823 125.6 263.886 125.385 263.886 125.154C263.886 124.815 263.763 124.537 263.515 124.319C263.271 124.101 262.884 123.992 262.353 123.992H260.088V126.36ZM266.166 130.359L268.915 123.201H269.936L272.865 130.359H271.786L270.951 128.191H267.958L267.172 130.359H266.166ZM268.232 127.42H270.658L269.911 125.437C269.683 124.835 269.514 124.34 269.403 123.953C269.312 124.412 269.184 124.867 269.018 125.32L268.232 127.42ZM274.183 130.359V123.201H276.869C277.416 123.201 277.853 123.274 278.182 123.421C278.514 123.564 278.773 123.787 278.959 124.089C279.147 124.389 279.242 124.703 279.242 125.032C279.242 125.338 279.159 125.626 278.993 125.896C278.827 126.166 278.576 126.384 278.241 126.55C278.674 126.677 279.006 126.894 279.237 127.2C279.471 127.506 279.588 127.867 279.588 128.284C279.588 128.619 279.517 128.932 279.374 129.221C279.234 129.508 279.059 129.729 278.851 129.885C278.643 130.042 278.381 130.16 278.065 130.242C277.753 130.32 277.368 130.359 276.913 130.359H274.183ZM275.13 126.209H276.678C277.098 126.209 277.399 126.181 277.582 126.126C277.822 126.054 278.003 125.935 278.124 125.769C278.247 125.603 278.309 125.395 278.309 125.144C278.309 124.907 278.252 124.698 278.138 124.519C278.024 124.337 277.862 124.213 277.65 124.148C277.438 124.08 277.075 124.046 276.561 124.046H275.13V126.209ZM275.13 129.514H276.913C277.219 129.514 277.433 129.503 277.557 129.48C277.775 129.441 277.958 129.376 278.104 129.285C278.251 129.194 278.371 129.062 278.465 128.889C278.56 128.714 278.607 128.512 278.607 128.284C278.607 128.017 278.539 127.786 278.402 127.59C278.265 127.392 278.075 127.254 277.831 127.175C277.59 127.094 277.241 127.053 276.786 127.053H275.13V129.514ZM281.453 130.359V123.201H282.4V129.514H285.926V130.359H281.453ZM287.678 130.359V123.201H292.854V124.046H288.625V126.238H292.585V127.078H288.625V129.514H293.02V130.359H287.678ZM244.752 141.359V134.201H246.178L247.872 139.269C248.028 139.741 248.142 140.094 248.214 140.329C248.295 140.068 248.422 139.686 248.595 139.181L250.309 134.201H251.583V141.359H250.67V135.368L248.59 141.359H247.735L245.665 135.265V141.359H244.752ZM253.731 141.359V134.201H258.907V135.046H254.678V137.238H258.638V138.078H254.678V140.514H259.073V141.359H253.731ZM260.952 141.359V134.201H262.378L264.072 139.269C264.228 139.741 264.342 140.094 264.414 140.329C264.495 140.068 264.622 139.686 264.795 139.181L266.509 134.201H267.783V141.359H266.87V135.368L264.79 141.359H263.935L261.865 135.265V141.359H260.952ZM269.623 137.873C269.623 136.685 269.942 135.755 270.58 135.085C271.218 134.411 272.042 134.074 273.051 134.074C273.712 134.074 274.307 134.232 274.838 134.547C275.369 134.863 275.772 135.304 276.049 135.871C276.329 136.434 276.469 137.074 276.469 137.79C276.469 138.516 276.322 139.165 276.029 139.738C275.736 140.311 275.321 140.745 274.784 141.042C274.247 141.335 273.668 141.481 273.046 141.481C272.372 141.481 271.77 141.318 271.239 140.993C270.709 140.667 270.307 140.223 270.033 139.66C269.76 139.097 269.623 138.501 269.623 137.873ZM270.6 137.887C270.6 138.75 270.831 139.43 271.293 139.928C271.759 140.423 272.341 140.671 273.041 140.671C273.754 140.671 274.34 140.42 274.799 139.919C275.261 139.417 275.492 138.706 275.492 137.785C275.492 137.202 275.393 136.694 275.194 136.261C274.999 135.825 274.711 135.488 274.33 135.251C273.953 135.01 273.528 134.889 273.056 134.889C272.385 134.889 271.807 135.12 271.322 135.583C270.841 136.042 270.6 136.81 270.6 137.887ZM278.309 141.359V134.201H281.483C282.121 134.201 282.606 134.266 282.938 134.396C283.27 134.523 283.535 134.749 283.734 135.075C283.933 135.4 284.032 135.76 284.032 136.154C284.032 136.662 283.867 137.09 283.539 137.438C283.21 137.786 282.702 138.008 282.015 138.102C282.266 138.223 282.456 138.341 282.586 138.459C282.863 138.713 283.125 139.03 283.373 139.411L284.618 141.359H283.426L282.479 139.87C282.202 139.44 281.975 139.111 281.795 138.883C281.616 138.656 281.455 138.496 281.312 138.405C281.172 138.314 281.029 138.25 280.882 138.214C280.775 138.192 280.599 138.18 280.355 138.18H279.256V141.359H278.309ZM279.256 137.36H281.293C281.725 137.36 282.064 137.316 282.308 137.228C282.552 137.137 282.738 136.994 282.865 136.798C282.992 136.6 283.055 136.385 283.055 136.154C283.055 135.815 282.932 135.537 282.684 135.319C282.44 135.101 282.053 134.992 281.522 134.992H279.256V137.36ZM287.952 141.359V138.327L285.193 134.201H286.346L287.757 136.359C288.017 136.763 288.26 137.166 288.484 137.57C288.699 137.196 288.96 136.774 289.266 136.305L290.652 134.201H291.756L288.899 138.327V141.359H287.952Z" fill="white"/>
+<path d="M246.241 198.593C246.241 197.405 246.56 196.476 247.198 195.805C247.836 195.131 248.66 194.795 249.669 194.795C250.33 194.795 250.925 194.952 251.456 195.268C251.987 195.584 252.39 196.025 252.667 196.591C252.947 197.155 253.087 197.794 253.087 198.51C253.087 199.236 252.94 199.886 252.647 200.459C252.354 201.032 251.939 201.466 251.402 201.762C250.865 202.055 250.286 202.202 249.664 202.202C248.99 202.202 248.388 202.039 247.857 201.714C247.327 201.388 246.925 200.944 246.651 200.38C246.378 199.817 246.241 199.222 246.241 198.593ZM247.218 198.608C247.218 199.471 247.449 200.151 247.911 200.649C248.377 201.144 248.959 201.391 249.659 201.391C250.372 201.391 250.958 201.141 251.417 200.639C251.879 200.138 252.11 199.427 252.11 198.505C252.11 197.923 252.011 197.415 251.812 196.982C251.617 196.546 251.329 196.209 250.948 195.971C250.571 195.73 250.146 195.61 249.674 195.61C249.003 195.61 248.425 195.841 247.94 196.303C247.459 196.762 247.218 197.531 247.218 198.608ZM254.903 202.08V194.922H255.874L259.634 200.542V194.922H260.542V202.08H259.571L255.811 196.455V202.08H254.903ZM266.122 202.08V194.922H268.588C269.145 194.922 269.569 194.956 269.862 195.024C270.273 195.118 270.623 195.289 270.912 195.537C271.29 195.856 271.571 196.264 271.757 196.762C271.946 197.257 272.04 197.824 272.04 198.462C272.04 199.005 271.977 199.487 271.85 199.907C271.723 200.327 271.56 200.675 271.361 200.952C271.163 201.225 270.945 201.442 270.707 201.601C270.473 201.757 270.188 201.876 269.853 201.958C269.521 202.039 269.138 202.08 268.705 202.08H266.122ZM267.069 201.235H268.598C269.07 201.235 269.439 201.191 269.706 201.103C269.976 201.015 270.191 200.892 270.351 200.732C270.575 200.507 270.75 200.206 270.873 199.829C271 199.448 271.064 198.987 271.064 198.447C271.064 197.698 270.94 197.124 270.693 196.723C270.448 196.32 270.151 196.049 269.799 195.913C269.545 195.815 269.137 195.766 268.573 195.766H267.069V201.235ZM274.11 202.08V194.922H275.057V202.08H274.11ZM277.01 199.78L277.903 199.702C277.946 200.06 278.043 200.354 278.196 200.586C278.353 200.813 278.593 200.999 278.919 201.142C279.244 201.282 279.611 201.352 280.018 201.352C280.379 201.352 280.698 201.298 280.975 201.191C281.251 201.084 281.456 200.937 281.59 200.752C281.727 200.563 281.795 200.358 281.795 200.136C281.795 199.912 281.73 199.716 281.6 199.55C281.469 199.381 281.255 199.24 280.955 199.126C280.763 199.051 280.338 198.935 279.681 198.779C279.023 198.619 278.562 198.47 278.299 198.33C277.957 198.151 277.701 197.929 277.532 197.666C277.366 197.399 277.283 197.101 277.283 196.772C277.283 196.411 277.386 196.074 277.591 195.761C277.796 195.446 278.095 195.206 278.489 195.044C278.883 194.881 279.321 194.799 279.803 194.799C280.333 194.799 280.8 194.886 281.204 195.058C281.611 195.227 281.923 195.478 282.142 195.81C282.36 196.142 282.477 196.518 282.493 196.938L281.585 197.006C281.536 196.554 281.37 196.212 281.087 195.981C280.807 195.75 280.392 195.634 279.842 195.634C279.269 195.634 278.851 195.74 278.587 195.952C278.326 196.16 278.196 196.412 278.196 196.709C278.196 196.966 278.289 197.177 278.475 197.343C278.657 197.509 279.132 197.68 279.9 197.856C280.672 198.029 281.201 198.18 281.487 198.31C281.904 198.502 282.212 198.746 282.41 199.043C282.609 199.336 282.708 199.674 282.708 200.058C282.708 200.439 282.599 200.799 282.381 201.137C282.163 201.473 281.849 201.735 281.438 201.923C281.032 202.109 280.573 202.202 280.061 202.202C279.414 202.202 278.87 202.107 278.431 201.919C277.994 201.73 277.651 201.447 277.4 201.069C277.153 200.688 277.023 200.258 277.01 199.78ZM284.563 202.08V194.922H285.51V198.471L289.065 194.922H290.349L287.346 197.822L290.481 202.08H289.231L286.682 198.457L285.51 199.599V202.08H284.563Z" fill="white"/>
+<rect x="234.5" y="163.928" width="68" height="100" rx="9.5" fill="#2D2D2D" stroke="white"/>
+<rect x="249.581" y="202.149" width="37.0968" height="37.2093" rx="18.5484" fill="#ED1C24"/>
+<path d="M264.805 214.156C264.805 214.156 256.302 219.348 264.315 224.503C265.857 225.508 271.448 228.3 271.289 230.883C271.289 230.883 274.678 225.863 269.723 222.703C264.634 219.471 263.361 216.018 264.805 214.156Z" fill="white"/>
+<path d="M261.844 224.074C261.844 224.074 258.81 228.679 264.78 229.622C265.367 229.695 269.686 230.148 270.812 231.569C270.812 231.569 270.714 229.12 267.19 227.675C263.679 226.23 262.235 225.875 261.844 224.074Z" fill="white"/>
+<path d="M273.59 219.238C269.944 215.417 268.928 213.054 270.494 209.993C270.494 209.993 259.617 214.181 270.36 221.614C274.201 224.271 273.565 226.989 273.565 227.087C274.165 226.463 277.236 223.058 273.59 219.238Z" fill="white"/>
+<path d="M243.473 182.359V175.201H245.938C246.495 175.201 246.92 175.235 247.213 175.303C247.623 175.398 247.973 175.569 248.263 175.816C248.64 176.135 248.922 176.544 249.107 177.042C249.296 177.536 249.391 178.103 249.391 178.741C249.391 179.284 249.327 179.766 249.2 180.186C249.073 180.606 248.91 180.954 248.712 181.231C248.513 181.505 248.295 181.721 248.058 181.88C247.823 182.037 247.538 182.156 247.203 182.237C246.871 182.318 246.489 182.359 246.056 182.359H243.473ZM244.42 181.514H245.948C246.42 181.514 246.79 181.47 247.057 181.382C247.327 181.295 247.542 181.171 247.701 181.011C247.926 180.787 248.1 180.486 248.224 180.108C248.351 179.727 248.414 179.267 248.414 178.726C248.414 177.977 248.29 177.403 248.043 177.003C247.799 176.599 247.501 176.329 247.149 176.192C246.895 176.094 246.487 176.046 245.924 176.046H244.42V181.514ZM255.996 175.201H256.944V179.337C256.944 180.056 256.862 180.627 256.7 181.05C256.537 181.474 256.242 181.819 255.816 182.086C255.393 182.349 254.836 182.481 254.146 182.481C253.475 182.481 252.927 182.366 252.5 182.134C252.074 181.903 251.77 181.57 251.587 181.133C251.405 180.694 251.314 180.095 251.314 179.337V175.201H252.261V179.332C252.261 179.953 252.318 180.412 252.432 180.709C252.549 181.002 252.748 181.228 253.028 181.387C253.311 181.547 253.656 181.627 254.063 181.627C254.759 181.627 255.256 181.469 255.552 181.153C255.848 180.837 255.996 180.23 255.996 179.332V175.201ZM259.14 182.359V175.201H262.314C262.952 175.201 263.437 175.266 263.769 175.396C264.101 175.523 264.367 175.749 264.565 176.075C264.764 176.4 264.863 176.76 264.863 177.154C264.863 177.662 264.699 178.09 264.37 178.438C264.041 178.786 263.533 179.008 262.846 179.102C263.097 179.223 263.288 179.341 263.418 179.459C263.694 179.713 263.956 180.03 264.204 180.411L265.449 182.359H264.258L263.31 180.87C263.034 180.44 262.806 180.111 262.627 179.883C262.448 179.656 262.287 179.496 262.143 179.405C262.003 179.314 261.86 179.25 261.714 179.214C261.606 179.192 261.43 179.18 261.186 179.18H260.088V182.359H259.14ZM260.088 178.36H262.124C262.557 178.36 262.895 178.316 263.139 178.228C263.384 178.137 263.569 177.994 263.696 177.798C263.823 177.6 263.886 177.385 263.886 177.154C263.886 176.815 263.763 176.537 263.515 176.319C263.271 176.101 262.884 175.992 262.353 175.992H260.088V178.36ZM266.166 182.359L268.915 175.201H269.936L272.865 182.359H271.786L270.951 180.191H267.958L267.172 182.359H266.166ZM268.232 179.42H270.658L269.911 177.437C269.683 176.835 269.514 176.34 269.403 175.953C269.312 176.412 269.184 176.867 269.018 177.32L268.232 179.42ZM274.183 182.359V175.201H276.869C277.416 175.201 277.853 175.274 278.182 175.421C278.514 175.564 278.773 175.787 278.959 176.089C279.147 176.389 279.242 176.703 279.242 177.032C279.242 177.338 279.159 177.626 278.993 177.896C278.827 178.166 278.576 178.384 278.241 178.55C278.674 178.677 279.006 178.894 279.237 179.2C279.471 179.506 279.588 179.867 279.588 180.284C279.588 180.619 279.517 180.932 279.374 181.221C279.234 181.508 279.059 181.729 278.851 181.885C278.643 182.042 278.381 182.16 278.065 182.242C277.753 182.32 277.368 182.359 276.913 182.359H274.183ZM275.13 178.209H276.678C277.098 178.209 277.399 178.181 277.582 178.126C277.822 178.054 278.003 177.935 278.124 177.769C278.247 177.603 278.309 177.395 278.309 177.144C278.309 176.907 278.252 176.698 278.138 176.519C278.024 176.337 277.862 176.213 277.65 176.148C277.438 176.08 277.075 176.046 276.561 176.046H275.13V178.209ZM275.13 181.514H276.913C277.219 181.514 277.433 181.503 277.557 181.48C277.775 181.441 277.958 181.376 278.104 181.285C278.251 181.194 278.371 181.062 278.465 180.889C278.56 180.714 278.607 180.512 278.607 180.284C278.607 180.017 278.539 179.786 278.402 179.59C278.265 179.392 278.075 179.254 277.831 179.175C277.59 179.094 277.241 179.053 276.786 179.053H275.13V181.514ZM281.453 182.359V175.201H282.4V181.514H285.926V182.359H281.453ZM287.678 182.359V175.201H292.854V176.046H288.625V178.238H292.585V179.078H288.625V181.514H293.02V182.359H287.678ZM244.752 193.359V186.201H246.178L247.872 191.269C248.028 191.741 248.142 192.094 248.214 192.329C248.295 192.068 248.422 191.686 248.595 191.181L250.309 186.201H251.583V193.359H250.67V187.368L248.59 193.359H247.735L245.665 187.265V193.359H244.752ZM253.731 193.359V186.201H258.907V187.046H254.678V189.238H258.638V190.078H254.678V192.514H259.073V193.359H253.731ZM260.952 193.359V186.201H262.378L264.072 191.269C264.228 191.741 264.342 192.094 264.414 192.329C264.495 192.068 264.622 191.686 264.795 191.181L266.509 186.201H267.783V193.359H266.87V187.368L264.79 193.359H263.935L261.865 187.265V193.359H260.952ZM269.623 189.873C269.623 188.685 269.942 187.755 270.58 187.085C271.218 186.411 272.042 186.074 273.051 186.074C273.712 186.074 274.307 186.232 274.838 186.547C275.369 186.863 275.772 187.304 276.049 187.871C276.329 188.434 276.469 189.074 276.469 189.79C276.469 190.516 276.322 191.165 276.029 191.738C275.736 192.311 275.321 192.745 274.784 193.042C274.247 193.335 273.668 193.481 273.046 193.481C272.372 193.481 271.77 193.318 271.239 192.993C270.709 192.667 270.307 192.223 270.033 191.66C269.76 191.097 269.623 190.501 269.623 189.873ZM270.6 189.887C270.6 190.75 270.831 191.43 271.293 191.928C271.759 192.423 272.341 192.671 273.041 192.671C273.754 192.671 274.34 192.42 274.799 191.919C275.261 191.417 275.492 190.706 275.492 189.785C275.492 189.202 275.393 188.694 275.194 188.261C274.999 187.825 274.711 187.488 274.33 187.251C273.953 187.01 273.528 186.889 273.056 186.889C272.385 186.889 271.807 187.12 271.322 187.583C270.841 188.042 270.6 188.81 270.6 189.887ZM278.309 193.359V186.201H281.483C282.121 186.201 282.606 186.266 282.938 186.396C283.27 186.523 283.535 186.749 283.734 187.075C283.933 187.4 284.032 187.76 284.032 188.154C284.032 188.662 283.867 189.09 283.539 189.438C283.21 189.786 282.702 190.008 282.015 190.102C282.266 190.223 282.456 190.341 282.586 190.459C282.863 190.713 283.125 191.03 283.373 191.411L284.618 193.359H283.426L282.479 191.87C282.202 191.44 281.975 191.111 281.795 190.883C281.616 190.656 281.455 190.496 281.312 190.405C281.172 190.314 281.029 190.25 280.882 190.214C280.775 190.192 280.599 190.18 280.355 190.18H279.256V193.359H278.309ZM279.256 189.36H281.293C281.725 189.36 282.064 189.316 282.308 189.228C282.552 189.137 282.738 188.994 282.865 188.798C282.992 188.6 283.055 188.385 283.055 188.154C283.055 187.815 282.932 187.537 282.684 187.319C282.44 187.101 282.053 186.992 281.522 186.992H279.256V189.36ZM287.952 193.359V190.327L285.193 186.201H286.346L287.757 188.359C288.017 188.763 288.26 189.166 288.484 189.57C288.699 189.196 288.96 188.774 289.266 188.305L290.652 186.201H291.756L288.899 190.327V193.359H287.952Z" fill="white"/>
+<path d="M246.241 250.593C246.241 249.405 246.56 248.476 247.198 247.805C247.836 247.131 248.66 246.795 249.669 246.795C250.33 246.795 250.925 246.952 251.456 247.268C251.987 247.584 252.39 248.025 252.667 248.591C252.947 249.155 253.087 249.794 253.087 250.51C253.087 251.236 252.94 251.886 252.647 252.459C252.354 253.032 251.939 253.466 251.402 253.762C250.865 254.055 250.286 254.202 249.664 254.202C248.99 254.202 248.388 254.039 247.857 253.714C247.327 253.388 246.925 252.944 246.651 252.38C246.378 251.817 246.241 251.222 246.241 250.593ZM247.218 250.608C247.218 251.471 247.449 252.151 247.911 252.649C248.377 253.144 248.959 253.391 249.659 253.391C250.372 253.391 250.958 253.141 251.417 252.639C251.879 252.138 252.11 251.427 252.11 250.505C252.11 249.923 252.011 249.415 251.812 248.982C251.617 248.546 251.329 248.209 250.948 247.971C250.571 247.73 250.146 247.61 249.674 247.61C249.003 247.61 248.425 247.841 247.94 248.303C247.459 248.762 247.218 249.531 247.218 250.608ZM254.903 254.08V246.922H255.874L259.634 252.542V246.922H260.542V254.08H259.571L255.811 248.455V254.08H254.903ZM266.122 254.08V246.922H268.588C269.145 246.922 269.569 246.956 269.862 247.024C270.273 247.118 270.623 247.289 270.912 247.537C271.29 247.856 271.571 248.264 271.757 248.762C271.946 249.257 272.04 249.824 272.04 250.462C272.04 251.005 271.977 251.487 271.85 251.907C271.723 252.327 271.56 252.675 271.361 252.952C271.163 253.225 270.945 253.442 270.707 253.601C270.473 253.757 270.188 253.876 269.853 253.958C269.521 254.039 269.138 254.08 268.705 254.08H266.122ZM267.069 253.235H268.598C269.07 253.235 269.439 253.191 269.706 253.103C269.976 253.015 270.191 252.892 270.351 252.732C270.575 252.507 270.75 252.206 270.873 251.829C271 251.448 271.064 250.987 271.064 250.447C271.064 249.698 270.94 249.124 270.693 248.723C270.448 248.32 270.151 248.049 269.799 247.913C269.545 247.815 269.137 247.766 268.573 247.766H267.069V253.235ZM274.11 254.08V246.922H275.057V254.08H274.11ZM277.01 251.78L277.903 251.702C277.946 252.06 278.043 252.354 278.196 252.586C278.353 252.813 278.593 252.999 278.919 253.142C279.244 253.282 279.611 253.352 280.018 253.352C280.379 253.352 280.698 253.298 280.975 253.191C281.251 253.084 281.456 252.937 281.59 252.752C281.727 252.563 281.795 252.358 281.795 252.136C281.795 251.912 281.73 251.716 281.6 251.55C281.469 251.381 281.255 251.24 280.955 251.126C280.763 251.051 280.338 250.935 279.681 250.779C279.023 250.619 278.562 250.47 278.299 250.33C277.957 250.151 277.701 249.929 277.532 249.666C277.366 249.399 277.283 249.101 277.283 248.772C277.283 248.411 277.386 248.074 277.591 247.761C277.796 247.446 278.095 247.206 278.489 247.044C278.883 246.881 279.321 246.799 279.803 246.799C280.333 246.799 280.8 246.886 281.204 247.058C281.611 247.227 281.923 247.478 282.142 247.81C282.36 248.142 282.477 248.518 282.493 248.938L281.585 249.006C281.536 248.554 281.37 248.212 281.087 247.981C280.807 247.75 280.392 247.634 279.842 247.634C279.269 247.634 278.851 247.74 278.587 247.952C278.326 248.16 278.196 248.412 278.196 248.709C278.196 248.966 278.289 249.177 278.475 249.343C278.657 249.509 279.132 249.68 279.9 249.856C280.672 250.029 281.201 250.18 281.487 250.31C281.904 250.502 282.212 250.746 282.41 251.043C282.609 251.336 282.708 251.674 282.708 252.058C282.708 252.439 282.599 252.799 282.381 253.137C282.163 253.473 281.849 253.735 281.438 253.923C281.032 254.109 280.573 254.202 280.061 254.202C279.414 254.202 278.87 254.107 278.431 253.919C277.994 253.73 277.651 253.447 277.4 253.069C277.153 252.688 277.023 252.258 277.01 251.78ZM284.563 254.08V246.922H285.51V250.471L289.065 246.922H290.349L287.346 249.822L290.481 254.08H289.231L286.682 250.457L285.51 251.599V254.08H284.563Z" fill="white"/>
+<rect x="234.5" y="215.928" width="68" height="100" rx="9.5" fill="#2D2D2D" stroke="white"/>
+<rect x="249.581" y="254.149" width="37.0968" height="37.2093" rx="18.5484" fill="#ED1C24"/>
+<path d="M264.805 266.156C264.805 266.156 256.302 271.348 264.315 276.503C265.857 277.507 271.448 280.299 271.289 282.883C271.289 282.883 274.678 277.863 269.723 274.703C264.634 271.471 263.361 268.017 264.805 266.156Z" fill="white"/>
+<path d="M261.844 276.074C261.844 276.074 258.81 280.679 264.78 281.621C265.367 281.695 269.686 282.148 270.812 283.568C270.812 283.568 270.714 281.119 267.19 279.675C263.679 278.23 262.235 277.874 261.844 276.074Z" fill="white"/>
+<path d="M273.59 271.238C269.944 267.417 268.928 265.054 270.494 261.993C270.494 261.993 259.617 266.181 270.36 273.613C274.201 276.271 273.565 278.989 273.565 279.087C274.165 278.463 277.236 275.058 273.59 271.238Z" fill="white"/>
+<path d="M243.473 234.359V227.201H245.938C246.495 227.201 246.92 227.235 247.213 227.303C247.623 227.398 247.973 227.569 248.263 227.816C248.64 228.135 248.922 228.544 249.107 229.042C249.296 229.536 249.391 230.103 249.391 230.741C249.391 231.284 249.327 231.766 249.2 232.186C249.073 232.606 248.91 232.954 248.712 233.231C248.513 233.505 248.295 233.721 248.058 233.88C247.823 234.037 247.538 234.156 247.203 234.237C246.871 234.318 246.489 234.359 246.056 234.359H243.473ZM244.42 233.514H245.948C246.42 233.514 246.79 233.47 247.057 233.382C247.327 233.295 247.542 233.171 247.701 233.011C247.926 232.787 248.1 232.486 248.224 232.108C248.351 231.727 248.414 231.267 248.414 230.726C248.414 229.977 248.29 229.403 248.043 229.003C247.799 228.599 247.501 228.329 247.149 228.192C246.895 228.094 246.487 228.046 245.924 228.046H244.42V233.514ZM255.996 227.201H256.944V231.337C256.944 232.056 256.862 232.627 256.7 233.05C256.537 233.474 256.242 233.819 255.816 234.086C255.393 234.349 254.836 234.481 254.146 234.481C253.475 234.481 252.927 234.366 252.5 234.134C252.074 233.903 251.77 233.57 251.587 233.133C251.405 232.694 251.314 232.095 251.314 231.337V227.201H252.261V231.332C252.261 231.953 252.318 232.412 252.432 232.709C252.549 233.002 252.748 233.228 253.028 233.387C253.311 233.547 253.656 233.627 254.063 233.627C254.759 233.627 255.256 233.469 255.552 233.153C255.848 232.837 255.996 232.23 255.996 231.332V227.201ZM259.14 234.359V227.201H262.314C262.952 227.201 263.437 227.266 263.769 227.396C264.101 227.523 264.367 227.749 264.565 228.075C264.764 228.4 264.863 228.76 264.863 229.154C264.863 229.662 264.699 230.09 264.37 230.438C264.041 230.786 263.533 231.008 262.846 231.102C263.097 231.223 263.288 231.341 263.418 231.459C263.694 231.713 263.956 232.03 264.204 232.411L265.449 234.359H264.258L263.31 232.87C263.034 232.44 262.806 232.111 262.627 231.883C262.448 231.656 262.287 231.496 262.143 231.405C262.003 231.314 261.86 231.25 261.714 231.214C261.606 231.192 261.43 231.18 261.186 231.18H260.088V234.359H259.14ZM260.088 230.36H262.124C262.557 230.36 262.895 230.316 263.139 230.228C263.384 230.137 263.569 229.994 263.696 229.798C263.823 229.6 263.886 229.385 263.886 229.154C263.886 228.815 263.763 228.537 263.515 228.319C263.271 228.101 262.884 227.992 262.353 227.992H260.088V230.36ZM266.166 234.359L268.915 227.201H269.936L272.865 234.359H271.786L270.951 232.191H267.958L267.172 234.359H266.166ZM268.232 231.42H270.658L269.911 229.437C269.683 228.835 269.514 228.34 269.403 227.953C269.312 228.412 269.184 228.867 269.018 229.32L268.232 231.42ZM274.183 234.359V227.201H276.869C277.416 227.201 277.853 227.274 278.182 227.421C278.514 227.564 278.773 227.787 278.959 228.089C279.147 228.389 279.242 228.703 279.242 229.032C279.242 229.338 279.159 229.626 278.993 229.896C278.827 230.166 278.576 230.384 278.241 230.55C278.674 230.677 279.006 230.894 279.237 231.2C279.471 231.506 279.588 231.867 279.588 232.284C279.588 232.619 279.517 232.932 279.374 233.221C279.234 233.508 279.059 233.729 278.851 233.885C278.643 234.042 278.381 234.16 278.065 234.242C277.753 234.32 277.368 234.359 276.913 234.359H274.183ZM275.13 230.209H276.678C277.098 230.209 277.399 230.181 277.582 230.126C277.822 230.054 278.003 229.935 278.124 229.769C278.247 229.603 278.309 229.395 278.309 229.144C278.309 228.907 278.252 228.698 278.138 228.519C278.024 228.337 277.862 228.213 277.65 228.148C277.438 228.08 277.075 228.046 276.561 228.046H275.13V230.209ZM275.13 233.514H276.913C277.219 233.514 277.433 233.503 277.557 233.48C277.775 233.441 277.958 233.376 278.104 233.285C278.251 233.194 278.371 233.062 278.465 232.889C278.56 232.714 278.607 232.512 278.607 232.284C278.607 232.017 278.539 231.786 278.402 231.59C278.265 231.392 278.075 231.254 277.831 231.175C277.59 231.094 277.241 231.053 276.786 231.053H275.13V233.514ZM281.453 234.359V227.201H282.4V233.514H285.926V234.359H281.453ZM287.678 234.359V227.201H292.854V228.046H288.625V230.238H292.585V231.078H288.625V233.514H293.02V234.359H287.678ZM244.752 245.359V238.201H246.178L247.872 243.269C248.028 243.741 248.142 244.094 248.214 244.329C248.295 244.068 248.422 243.686 248.595 243.181L250.309 238.201H251.583V245.359H250.67V239.368L248.59 245.359H247.735L245.665 239.265V245.359H244.752ZM253.731 245.359V238.201H258.907V239.046H254.678V241.238H258.638V242.078H254.678V244.514H259.073V245.359H253.731ZM260.952 245.359V238.201H262.378L264.072 243.269C264.228 243.741 264.342 244.094 264.414 244.329C264.495 244.068 264.622 243.686 264.795 243.181L266.509 238.201H267.783V245.359H266.87V239.368L264.79 245.359H263.935L261.865 239.265V245.359H260.952ZM269.623 241.873C269.623 240.685 269.942 239.755 270.58 239.085C271.218 238.411 272.042 238.074 273.051 238.074C273.712 238.074 274.307 238.232 274.838 238.547C275.369 238.863 275.772 239.304 276.049 239.871C276.329 240.434 276.469 241.074 276.469 241.79C276.469 242.516 276.322 243.165 276.029 243.738C275.736 244.311 275.321 244.745 274.784 245.042C274.247 245.335 273.668 245.481 273.046 245.481C272.372 245.481 271.77 245.318 271.239 244.993C270.709 244.667 270.307 244.223 270.033 243.66C269.76 243.097 269.623 242.501 269.623 241.873ZM270.6 241.887C270.6 242.75 270.831 243.43 271.293 243.928C271.759 244.423 272.341 244.671 273.041 244.671C273.754 244.671 274.34 244.42 274.799 243.919C275.261 243.417 275.492 242.706 275.492 241.785C275.492 241.202 275.393 240.694 275.194 240.261C274.999 239.825 274.711 239.488 274.33 239.251C273.953 239.01 273.528 238.889 273.056 238.889C272.385 238.889 271.807 239.12 271.322 239.583C270.841 240.042 270.6 240.81 270.6 241.887ZM278.309 245.359V238.201H281.483C282.121 238.201 282.606 238.266 282.938 238.396C283.27 238.523 283.535 238.749 283.734 239.075C283.933 239.4 284.032 239.76 284.032 240.154C284.032 240.662 283.867 241.09 283.539 241.438C283.21 241.786 282.702 242.008 282.015 242.102C282.266 242.223 282.456 242.341 282.586 242.459C282.863 242.713 283.125 243.03 283.373 243.411L284.618 245.359H283.426L282.479 243.87C282.202 243.44 281.975 243.111 281.795 242.883C281.616 242.656 281.455 242.496 281.312 242.405C281.172 242.314 281.029 242.25 280.882 242.214C280.775 242.192 280.599 242.18 280.355 242.18H279.256V245.359H278.309ZM279.256 241.36H281.293C281.725 241.36 282.064 241.316 282.308 241.228C282.552 241.137 282.738 240.994 282.865 240.798C282.992 240.6 283.055 240.385 283.055 240.154C283.055 239.815 282.932 239.537 282.684 239.319C282.44 239.101 282.053 238.992 281.522 238.992H279.256V241.36ZM287.952 245.359V242.327L285.193 238.201H286.346L287.757 240.359C288.017 240.763 288.26 241.166 288.484 241.57C288.699 241.196 288.96 240.774 289.266 240.305L290.652 238.201H291.756L288.899 242.327V245.359H287.952Z" fill="white"/>
+<path d="M246.241 302.593C246.241 301.405 246.56 300.476 247.198 299.805C247.836 299.131 248.66 298.795 249.669 298.795C250.33 298.795 250.925 298.952 251.456 299.268C251.987 299.584 252.39 300.025 252.667 300.591C252.947 301.155 253.087 301.794 253.087 302.51C253.087 303.236 252.94 303.886 252.647 304.459C252.354 305.032 251.939 305.466 251.402 305.762C250.865 306.055 250.286 306.202 249.664 306.202C248.99 306.202 248.388 306.039 247.857 305.714C247.327 305.388 246.925 304.944 246.651 304.38C246.378 303.817 246.241 303.222 246.241 302.593ZM247.218 302.608C247.218 303.471 247.449 304.151 247.911 304.649C248.377 305.144 248.959 305.391 249.659 305.391C250.372 305.391 250.958 305.141 251.417 304.639C251.879 304.138 252.11 303.427 252.11 302.505C252.11 301.923 252.011 301.415 251.812 300.982C251.617 300.546 251.329 300.209 250.948 299.971C250.571 299.73 250.146 299.61 249.674 299.61C249.003 299.61 248.425 299.841 247.94 300.303C247.459 300.762 247.218 301.531 247.218 302.608ZM254.903 306.08V298.922H255.874L259.634 304.542V298.922H260.542V306.08H259.571L255.811 300.455V306.08H254.903ZM266.122 306.08V298.922H268.588C269.145 298.922 269.569 298.956 269.862 299.024C270.273 299.118 270.623 299.289 270.912 299.537C271.29 299.856 271.571 300.264 271.757 300.762C271.946 301.257 272.04 301.824 272.04 302.462C272.04 303.005 271.977 303.487 271.85 303.907C271.723 304.327 271.56 304.675 271.361 304.952C271.163 305.225 270.945 305.442 270.707 305.601C270.473 305.757 270.188 305.876 269.853 305.958C269.521 306.039 269.138 306.08 268.705 306.08H266.122ZM267.069 305.235H268.598C269.07 305.235 269.439 305.191 269.706 305.103C269.976 305.015 270.191 304.892 270.351 304.732C270.575 304.507 270.75 304.206 270.873 303.829C271 303.448 271.064 302.987 271.064 302.447C271.064 301.698 270.94 301.124 270.693 300.723C270.448 300.32 270.151 300.049 269.799 299.913C269.545 299.815 269.137 299.766 268.573 299.766H267.069V305.235ZM274.11 306.08V298.922H275.057V306.08H274.11ZM277.01 303.78L277.903 303.702C277.946 304.06 278.043 304.354 278.196 304.586C278.353 304.813 278.593 304.999 278.919 305.142C279.244 305.282 279.611 305.352 280.018 305.352C280.379 305.352 280.698 305.298 280.975 305.191C281.251 305.084 281.456 304.937 281.59 304.752C281.727 304.563 281.795 304.358 281.795 304.136C281.795 303.912 281.73 303.716 281.6 303.55C281.469 303.381 281.255 303.24 280.955 303.126C280.763 303.051 280.338 302.935 279.681 302.779C279.023 302.619 278.562 302.47 278.299 302.33C277.957 302.151 277.701 301.929 277.532 301.666C277.366 301.399 277.283 301.101 277.283 300.772C277.283 300.411 277.386 300.074 277.591 299.761C277.796 299.446 278.095 299.206 278.489 299.044C278.883 298.881 279.321 298.799 279.803 298.799C280.333 298.799 280.8 298.886 281.204 299.058C281.611 299.227 281.923 299.478 282.142 299.81C282.36 300.142 282.477 300.518 282.493 300.938L281.585 301.006C281.536 300.554 281.37 300.212 281.087 299.981C280.807 299.75 280.392 299.634 279.842 299.634C279.269 299.634 278.851 299.74 278.587 299.952C278.326 300.16 278.196 300.412 278.196 300.709C278.196 300.966 278.289 301.177 278.475 301.343C278.657 301.509 279.132 301.68 279.9 301.856C280.672 302.029 281.201 302.18 281.487 302.31C281.904 302.502 282.212 302.746 282.41 303.043C282.609 303.336 282.708 303.674 282.708 304.058C282.708 304.439 282.599 304.799 282.381 305.137C282.163 305.473 281.849 305.735 281.438 305.923C281.032 306.109 280.573 306.202 280.061 306.202C279.414 306.202 278.87 306.107 278.431 305.919C277.994 305.73 277.651 305.447 277.4 305.069C277.153 304.688 277.023 304.258 277.01 303.78ZM284.563 306.08V298.922H285.51V302.471L289.065 298.922H290.349L287.346 301.822L290.481 306.08H289.231L286.682 302.457L285.51 303.599V306.08H284.563Z" fill="white"/>
+<rect x="234.5" y="267.928" width="68" height="100" rx="9.5" fill="#2D2D2D" stroke="white"/>
+<rect x="249.581" y="306.149" width="37.0968" height="37.2093" rx="18.5484" fill="#ED1C24"/>
+<path d="M264.805 318.156C264.805 318.156 256.302 323.348 264.315 328.503C265.857 329.507 271.448 332.299 271.289 334.883C271.289 334.883 274.678 329.863 269.723 326.703C264.634 323.471 263.361 320.017 264.805 318.156Z" fill="white"/>
+<path d="M261.844 328.074C261.844 328.074 258.81 332.679 264.78 333.621C265.367 333.695 269.686 334.148 270.812 335.568C270.812 335.568 270.714 333.119 267.19 331.675C263.679 330.23 262.235 329.874 261.844 328.074Z" fill="white"/>
+<path d="M273.59 323.238C269.944 319.417 268.928 317.054 270.494 313.993C270.494 313.993 259.617 318.181 270.36 325.613C274.201 328.271 273.565 330.989 273.565 331.087C274.165 330.463 277.236 327.058 273.59 323.238Z" fill="white"/>
+<path d="M243.473 286.359V279.201H245.938C246.495 279.201 246.92 279.235 247.213 279.303C247.623 279.398 247.973 279.569 248.263 279.816C248.64 280.135 248.922 280.544 249.107 281.042C249.296 281.536 249.391 282.103 249.391 282.741C249.391 283.284 249.327 283.766 249.2 284.186C249.073 284.606 248.91 284.954 248.712 285.231C248.513 285.505 248.295 285.721 248.058 285.88C247.823 286.037 247.538 286.156 247.203 286.237C246.871 286.318 246.489 286.359 246.056 286.359H243.473ZM244.42 285.514H245.948C246.42 285.514 246.79 285.47 247.057 285.382C247.327 285.295 247.542 285.171 247.701 285.011C247.926 284.787 248.1 284.486 248.224 284.108C248.351 283.727 248.414 283.267 248.414 282.726C248.414 281.977 248.29 281.403 248.043 281.003C247.799 280.599 247.501 280.329 247.149 280.192C246.895 280.094 246.487 280.046 245.924 280.046H244.42V285.514ZM255.996 279.201H256.944V283.337C256.944 284.056 256.862 284.627 256.7 285.05C256.537 285.474 256.242 285.819 255.816 286.086C255.393 286.349 254.836 286.481 254.146 286.481C253.475 286.481 252.927 286.366 252.5 286.134C252.074 285.903 251.77 285.57 251.587 285.133C251.405 284.694 251.314 284.095 251.314 283.337V279.201H252.261V283.332C252.261 283.953 252.318 284.412 252.432 284.709C252.549 285.002 252.748 285.228 253.028 285.387C253.311 285.547 253.656 285.627 254.063 285.627C254.759 285.627 255.256 285.469 255.552 285.153C255.848 284.837 255.996 284.23 255.996 283.332V279.201ZM259.14 286.359V279.201H262.314C262.952 279.201 263.437 279.266 263.769 279.396C264.101 279.523 264.367 279.749 264.565 280.075C264.764 280.4 264.863 280.76 264.863 281.154C264.863 281.662 264.699 282.09 264.37 282.438C264.041 282.786 263.533 283.008 262.846 283.102C263.097 283.223 263.288 283.341 263.418 283.459C263.694 283.713 263.956 284.03 264.204 284.411L265.449 286.359H264.258L263.31 284.87C263.034 284.44 262.806 284.111 262.627 283.883C262.448 283.656 262.287 283.496 262.143 283.405C262.003 283.314 261.86 283.25 261.714 283.214C261.606 283.192 261.43 283.18 261.186 283.18H260.088V286.359H259.14ZM260.088 282.36H262.124C262.557 282.36 262.895 282.316 263.139 282.228C263.384 282.137 263.569 281.994 263.696 281.798C263.823 281.6 263.886 281.385 263.886 281.154C263.886 280.815 263.763 280.537 263.515 280.319C263.271 280.101 262.884 279.992 262.353 279.992H260.088V282.36ZM266.166 286.359L268.915 279.201H269.936L272.865 286.359H271.786L270.951 284.191H267.958L267.172 286.359H266.166ZM268.232 283.42H270.658L269.911 281.437C269.683 280.835 269.514 280.34 269.403 279.953C269.312 280.412 269.184 280.867 269.018 281.32L268.232 283.42ZM274.183 286.359V279.201H276.869C277.416 279.201 277.853 279.274 278.182 279.421C278.514 279.564 278.773 279.787 278.959 280.089C279.147 280.389 279.242 280.703 279.242 281.032C279.242 281.338 279.159 281.626 278.993 281.896C278.827 282.166 278.576 282.384 278.241 282.55C278.674 282.677 279.006 282.894 279.237 283.2C279.471 283.506 279.588 283.867 279.588 284.284C279.588 284.619 279.517 284.932 279.374 285.221C279.234 285.508 279.059 285.729 278.851 285.885C278.643 286.042 278.381 286.16 278.065 286.242C277.753 286.32 277.368 286.359 276.913 286.359H274.183ZM275.13 282.209H276.678C277.098 282.209 277.399 282.181 277.582 282.126C277.822 282.054 278.003 281.935 278.124 281.769C278.247 281.603 278.309 281.395 278.309 281.144C278.309 280.907 278.252 280.698 278.138 280.519C278.024 280.337 277.862 280.213 277.65 280.148C277.438 280.08 277.075 280.046 276.561 280.046H275.13V282.209ZM275.13 285.514H276.913C277.219 285.514 277.433 285.503 277.557 285.48C277.775 285.441 277.958 285.376 278.104 285.285C278.251 285.194 278.371 285.062 278.465 284.889C278.56 284.714 278.607 284.512 278.607 284.284C278.607 284.017 278.539 283.786 278.402 283.59C278.265 283.392 278.075 283.254 277.831 283.175C277.59 283.094 277.241 283.053 276.786 283.053H275.13V285.514ZM281.453 286.359V279.201H282.4V285.514H285.926V286.359H281.453ZM287.678 286.359V279.201H292.854V280.046H288.625V282.238H292.585V283.078H288.625V285.514H293.02V286.359H287.678ZM244.752 297.359V290.201H246.178L247.872 295.269C248.028 295.741 248.142 296.094 248.214 296.329C248.295 296.068 248.422 295.686 248.595 295.181L250.309 290.201H251.583V297.359H250.67V291.368L248.59 297.359H247.735L245.665 291.265V297.359H244.752ZM253.731 297.359V290.201H258.907V291.046H254.678V293.238H258.638V294.078H254.678V296.514H259.073V297.359H253.731ZM260.952 297.359V290.201H262.378L264.072 295.269C264.228 295.741 264.342 296.094 264.414 296.329C264.495 296.068 264.622 295.686 264.795 295.181L266.509 290.201H267.783V297.359H266.87V291.368L264.79 297.359H263.935L261.865 291.265V297.359H260.952ZM269.623 293.873C269.623 292.685 269.942 291.755 270.58 291.085C271.218 290.411 272.042 290.074 273.051 290.074C273.712 290.074 274.307 290.232 274.838 290.547C275.369 290.863 275.772 291.304 276.049 291.871C276.329 292.434 276.469 293.074 276.469 293.79C276.469 294.516 276.322 295.165 276.029 295.738C275.736 296.311 275.321 296.745 274.784 297.042C274.247 297.335 273.668 297.481 273.046 297.481C272.372 297.481 271.77 297.318 271.239 296.993C270.709 296.667 270.307 296.223 270.033 295.66C269.76 295.097 269.623 294.501 269.623 293.873ZM270.6 293.887C270.6 294.75 270.831 295.43 271.293 295.928C271.759 296.423 272.341 296.671 273.041 296.671C273.754 296.671 274.34 296.42 274.799 295.919C275.261 295.417 275.492 294.706 275.492 293.785C275.492 293.202 275.393 292.694 275.194 292.261C274.999 291.825 274.711 291.488 274.33 291.251C273.953 291.01 273.528 290.889 273.056 290.889C272.385 290.889 271.807 291.12 271.322 291.583C270.841 292.042 270.6 292.81 270.6 293.887ZM278.309 297.359V290.201H281.483C282.121 290.201 282.606 290.266 282.938 290.396C283.27 290.523 283.535 290.749 283.734 291.075C283.933 291.4 284.032 291.76 284.032 292.154C284.032 292.662 283.867 293.09 283.539 293.438C283.21 293.786 282.702 294.008 282.015 294.102C282.266 294.223 282.456 294.341 282.586 294.459C282.863 294.713 283.125 295.03 283.373 295.411L284.618 297.359H283.426L282.479 295.87C282.202 295.44 281.975 295.111 281.795 294.883C281.616 294.656 281.455 294.496 281.312 294.405C281.172 294.314 281.029 294.25 280.882 294.214C280.775 294.192 280.599 294.18 280.355 294.18H279.256V297.359H278.309ZM279.256 293.36H281.293C281.725 293.36 282.064 293.316 282.308 293.228C282.552 293.137 282.738 292.994 282.865 292.798C282.992 292.6 283.055 292.385 283.055 292.154C283.055 291.815 282.932 291.537 282.684 291.319C282.44 291.101 282.053 290.992 281.522 290.992H279.256V293.36ZM287.952 297.359V294.327L285.193 290.201H286.346L287.757 292.359C288.017 292.763 288.26 293.166 288.484 293.57C288.699 293.196 288.96 292.774 289.266 292.305L290.652 290.201H291.756L288.899 294.327V297.359H287.952Z" fill="white"/>
+<path d="M246.241 354.593C246.241 353.405 246.56 352.476 247.198 351.805C247.836 351.131 248.66 350.795 249.669 350.795C250.33 350.795 250.925 350.952 251.456 351.268C251.987 351.584 252.39 352.025 252.667 352.591C252.947 353.155 253.087 353.794 253.087 354.51C253.087 355.236 252.94 355.886 252.647 356.459C252.354 357.032 251.939 357.466 251.402 357.762C250.865 358.055 250.286 358.202 249.664 358.202C248.99 358.202 248.388 358.039 247.857 357.714C247.327 357.388 246.925 356.944 246.651 356.38C246.378 355.817 246.241 355.222 246.241 354.593ZM247.218 354.608C247.218 355.471 247.449 356.151 247.911 356.649C248.377 357.144 248.959 357.391 249.659 357.391C250.372 357.391 250.958 357.141 251.417 356.639C251.879 356.138 252.11 355.427 252.11 354.505C252.11 353.923 252.011 353.415 251.812 352.982C251.617 352.546 251.329 352.209 250.948 351.971C250.571 351.73 250.146 351.61 249.674 351.61C249.003 351.61 248.425 351.841 247.94 352.303C247.459 352.762 247.218 353.531 247.218 354.608ZM254.903 358.08V350.922H255.874L259.634 356.542V350.922H260.542V358.08H259.571L255.811 352.455V358.08H254.903ZM266.122 358.08V350.922H268.588C269.145 350.922 269.569 350.956 269.862 351.024C270.273 351.118 270.623 351.289 270.912 351.537C271.29 351.856 271.571 352.264 271.757 352.762C271.946 353.257 272.04 353.824 272.04 354.462C272.04 355.005 271.977 355.487 271.85 355.907C271.723 356.327 271.56 356.675 271.361 356.952C271.163 357.225 270.945 357.442 270.707 357.601C270.473 357.757 270.188 357.876 269.853 357.958C269.521 358.039 269.138 358.08 268.705 358.08H266.122ZM267.069 357.235H268.598C269.07 357.235 269.439 357.191 269.706 357.103C269.976 357.015 270.191 356.892 270.351 356.732C270.575 356.507 270.75 356.206 270.873 355.829C271 355.448 271.064 354.987 271.064 354.447C271.064 353.698 270.94 353.124 270.693 352.723C270.448 352.32 270.151 352.049 269.799 351.913C269.545 351.815 269.137 351.766 268.573 351.766H267.069V357.235ZM274.11 358.08V350.922H275.057V358.08H274.11ZM277.01 355.78L277.903 355.702C277.946 356.06 278.043 356.354 278.196 356.586C278.353 356.813 278.593 356.999 278.919 357.142C279.244 357.282 279.611 357.352 280.018 357.352C280.379 357.352 280.698 357.298 280.975 357.191C281.251 357.084 281.456 356.937 281.59 356.752C281.727 356.563 281.795 356.358 281.795 356.136C281.795 355.912 281.73 355.716 281.6 355.55C281.469 355.381 281.255 355.24 280.955 355.126C280.763 355.051 280.338 354.935 279.681 354.779C279.023 354.619 278.562 354.47 278.299 354.33C277.957 354.151 277.701 353.929 277.532 353.666C277.366 353.399 277.283 353.101 277.283 352.772C277.283 352.411 277.386 352.074 277.591 351.761C277.796 351.446 278.095 351.206 278.489 351.044C278.883 350.881 279.321 350.799 279.803 350.799C280.333 350.799 280.8 350.886 281.204 351.058C281.611 351.227 281.923 351.478 282.142 351.81C282.36 352.142 282.477 352.518 282.493 352.938L281.585 353.006C281.536 352.554 281.37 352.212 281.087 351.981C280.807 351.75 280.392 351.634 279.842 351.634C279.269 351.634 278.851 351.74 278.587 351.952C278.326 352.16 278.196 352.412 278.196 352.709C278.196 352.966 278.289 353.177 278.475 353.343C278.657 353.509 279.132 353.68 279.9 353.856C280.672 354.029 281.201 354.18 281.487 354.31C281.904 354.502 282.212 354.746 282.41 355.043C282.609 355.336 282.708 355.674 282.708 356.058C282.708 356.439 282.599 356.799 282.381 357.137C282.163 357.473 281.849 357.735 281.438 357.923C281.032 358.109 280.573 358.202 280.061 358.202C279.414 358.202 278.87 358.107 278.431 357.919C277.994 357.73 277.651 357.447 277.4 357.069C277.153 356.688 277.023 356.258 277.01 355.78ZM284.563 358.08V350.922H285.51V354.471L289.065 350.922H290.349L287.346 353.822L290.481 358.08H289.231L286.682 354.457L285.51 355.599V358.08H284.563Z" fill="white"/>
+<rect x="461.017" y="196.91" width="57.4194" height="57.5966" rx="28.7097" fill="#ED1C24" stroke="white"/>
+<path d="M484.491 215.318C484.491 215.318 471.101 223.494 483.721 231.612C486.148 233.194 494.954 237.59 494.703 241.659C494.703 241.659 500.04 233.753 492.237 228.778C484.222 223.687 482.218 218.249 484.491 215.318Z" fill="white"/>
+<path d="M479.828 230.938C479.828 230.938 475.05 238.189 484.453 239.673C485.377 239.789 492.179 240.503 493.951 242.739C493.951 242.739 493.797 238.883 488.248 236.607C482.719 234.332 480.445 233.773 479.828 230.938Z" fill="white"/>
+<path d="M498.325 223.321C492.584 217.304 490.984 213.583 493.451 208.762C493.451 208.762 476.322 215.357 493.239 227.062C499.289 231.246 498.287 235.527 498.287 235.682C499.231 234.698 504.067 229.337 498.325 223.321Z" fill="white"/>
+<rect x="434.114" y="196.13" width="57.4194" height="57.5966" rx="28.7097" fill="#ED1C24" stroke="#F6F6F6"/>
+<path d="M457.589 214.537C457.589 214.537 444.198 222.714 456.818 230.832C459.246 232.413 468.051 236.81 467.8 240.879C467.8 240.879 473.137 232.972 465.334 227.997C457.319 222.906 455.315 217.468 457.589 214.537Z" fill="#F6F6F6"/>
+<path d="M452.926 230.158C452.926 230.158 448.147 237.408 457.55 238.893C458.475 239.009 465.276 239.722 467.049 241.959C467.049 241.959 466.895 238.102 461.346 235.827C455.816 233.552 453.542 232.992 452.926 230.158Z" fill="#F6F6F6"/>
+<path d="M471.423 222.541C465.681 216.524 464.082 212.802 466.548 207.981C466.548 207.981 449.419 214.576 466.336 226.282C472.386 230.466 471.384 234.747 471.384 234.901C472.328 233.918 477.164 228.557 471.423 222.541Z" fill="#F6F6F6"/>
+<rect x="446.114" y="172.13" width="57.4194" height="57.5966" rx="28.7097" fill="#ED1C24" stroke="#F6F6F6"/>
+<path d="M480.059 215.356C480.056 215.362 480.053 215.367 480.051 215.373C479.807 214.72 479.405 214.091 478.918 213.498C478.051 212.441 476.86 211.432 475.608 210.519C474.354 209.603 473.018 208.769 471.851 208.068C471.414 207.806 471.004 207.564 470.631 207.344C469.996 206.97 469.467 206.658 469.091 206.413L469.089 206.412C465.994 204.421 464.572 202.477 464.097 200.73C463.623 198.989 464.062 197.345 464.904 195.891C465.748 194.431 466.98 193.199 468.016 192.324C468.125 192.232 468.231 192.145 468.334 192.062C468.028 193.433 468.301 195.025 469.159 196.687C470.432 199.154 473.014 201.846 477.066 204.419C478.94 205.614 479.996 206.965 480.55 208.3C481.105 209.64 481.169 211.001 480.998 212.235C480.828 213.471 480.423 214.566 480.059 215.356Z" fill="white" stroke="#F6F6F6"/>
+<path d="M477.847 215.999C477.969 216.207 478.07 216.406 478.153 216.593C477.836 216.408 477.495 216.242 477.142 216.093C476.204 215.694 475.128 215.383 474.094 215.144C472.221 214.709 470.437 214.496 469.779 214.417C469.715 214.41 469.662 214.403 469.62 214.398C467.336 214.036 465.989 213.336 465.217 212.551C464.454 211.776 464.203 210.868 464.212 209.973C464.221 209.066 464.498 208.182 464.786 207.511C464.799 207.48 464.812 207.45 464.825 207.42C464.965 207.71 465.133 207.979 465.332 208.23C465.77 208.781 466.34 209.225 467.042 209.634C468.089 210.244 469.503 210.813 471.321 211.545C471.892 211.775 472.503 212.021 473.155 212.289L473.156 212.29C475.833 213.387 477.172 214.849 477.847 215.999Z" fill="white" stroke="#F6F6F6"/>
+<path d="M477.549 184.988C476.767 187.028 476.717 188.95 477.436 190.98C478.283 193.371 480.183 195.87 483.061 198.886C485.809 201.765 485.992 204.428 485.428 206.476C485.087 207.718 484.464 208.755 483.919 209.493C483.878 209.052 483.787 208.532 483.606 207.953C483.063 206.223 481.727 204.019 478.621 201.87C474.43 198.971 472.429 196.44 471.706 194.323C470.994 192.238 471.496 190.481 472.508 189.028C473.534 187.556 475.077 186.41 476.392 185.624C476.814 185.372 477.209 185.16 477.549 184.988Z" fill="white" stroke="#F6F6F6"/>
+<rect x="32.5" y="193.357" width="53.3204" height="53.3204" rx="9.5" fill="#E8F2FA" stroke="#91C2EA"/>
+<rect x="38.1194" y="188.674" width="53.3204" height="54.2569" rx="9.5" fill="#E8F2FA" stroke="#91C2EA"/>
+<rect x="44.8656" y="184.928" width="54.2569" height="53.3204" rx="9.5" fill="#E8F2FA" stroke="#91C2EA"/>
+<path d="M226 99.9283H223.5C206.931 99.9283 193.5 113.36 193.5 129.928V182.279C193.5 198.847 180.069 212.279 163.5 212.279H161.5" stroke="black"/>
+<path d="M99 212.428H165.5C182.069 212.428 195.5 225.86 195.5 242.428V294.428C195.5 310.997 208.931 324.428 225.5 324.428H226.5" stroke="black"/>
+<path d="M311 99.1783H313.5C330.069 99.1783 343.5 112.61 343.5 129.178V181.529C343.5 198.097 356.931 211.529 373.5 211.529H375.5" stroke="black"/>
+<path d="M438 211.678H371.5C354.931 211.678 341.5 225.11 341.5 241.678V293.678C341.5 310.247 328.069 323.678 311.5 323.678H310.5" stroke="black"/>
+<path d="M127.606 204.727V196.853H130.319C130.931 196.853 131.398 196.891 131.72 196.966C132.172 197.07 132.557 197.258 132.875 197.53C133.291 197.881 133.6 198.33 133.804 198.878C134.012 199.422 134.116 200.045 134.116 200.747C134.116 201.345 134.046 201.875 133.906 202.337C133.767 202.799 133.588 203.182 133.369 203.486C133.151 203.787 132.911 204.025 132.65 204.201C132.392 204.373 132.079 204.503 131.71 204.593C131.344 204.682 130.924 204.727 130.448 204.727H127.606ZM128.648 203.798H130.329C130.849 203.798 131.255 203.75 131.549 203.653C131.846 203.556 132.082 203.42 132.258 203.245C132.505 202.998 132.696 202.666 132.832 202.251C132.972 201.832 133.042 201.325 133.042 200.731C133.042 199.908 132.906 199.276 132.634 198.835C132.365 198.391 132.037 198.094 131.651 197.943C131.371 197.836 130.922 197.782 130.302 197.782H128.648V203.798ZM139.154 204.024C138.796 204.328 138.45 204.543 138.117 204.668C137.788 204.793 137.434 204.856 137.054 204.856C136.427 204.856 135.946 204.704 135.609 204.4C135.273 204.092 135.104 203.7 135.104 203.223C135.104 202.944 135.167 202.69 135.292 202.461C135.421 202.228 135.588 202.042 135.792 201.902C135.999 201.762 136.232 201.657 136.49 201.585C136.68 201.535 136.966 201.487 137.349 201.44C138.13 201.347 138.705 201.236 139.073 201.107C139.077 200.975 139.079 200.89 139.079 200.855C139.079 200.461 138.988 200.183 138.805 200.022C138.558 199.804 138.191 199.694 137.704 199.694C137.249 199.694 136.913 199.775 136.694 199.936C136.479 200.094 136.32 200.375 136.216 200.779L135.271 200.651C135.357 200.246 135.498 199.92 135.695 199.673C135.892 199.422 136.177 199.231 136.549 199.098C136.921 198.962 137.353 198.894 137.844 198.894C138.33 198.894 138.726 198.951 139.031 199.066C139.335 199.181 139.559 199.326 139.702 199.501C139.845 199.673 139.945 199.891 140.003 200.156C140.035 200.321 140.051 200.618 140.051 201.048V202.337C140.051 203.236 140.071 203.805 140.11 204.045C140.153 204.281 140.235 204.509 140.357 204.727H139.347C139.247 204.527 139.183 204.292 139.154 204.024ZM139.073 201.864C138.723 202.008 138.196 202.129 137.494 202.23C137.097 202.287 136.816 202.351 136.651 202.423C136.486 202.495 136.359 202.6 136.27 202.74C136.18 202.876 136.135 203.028 136.135 203.196C136.135 203.454 136.232 203.669 136.426 203.841C136.622 204.013 136.909 204.099 137.285 204.099C137.657 204.099 137.989 204.018 138.279 203.857C138.569 203.692 138.782 203.469 138.918 203.186C139.022 202.967 139.073 202.645 139.073 202.219V201.864ZM143.666 203.862L143.805 204.716C143.533 204.774 143.29 204.802 143.075 204.802C142.724 204.802 142.452 204.747 142.259 204.636C142.065 204.525 141.929 204.38 141.85 204.201C141.772 204.018 141.732 203.637 141.732 203.057V199.775H141.023V199.023H141.732V197.61L142.694 197.03V199.023H143.666V199.775H142.694V203.11C142.694 203.386 142.71 203.563 142.742 203.642C142.778 203.721 142.833 203.784 142.908 203.83C142.987 203.877 143.098 203.9 143.241 203.9C143.349 203.9 143.49 203.887 143.666 203.862ZM148.339 204.024C147.981 204.328 147.635 204.543 147.302 204.668C146.973 204.793 146.618 204.856 146.239 204.856C145.612 204.856 145.13 204.704 144.794 204.4C144.457 204.092 144.289 203.7 144.289 203.223C144.289 202.944 144.351 202.69 144.477 202.461C144.606 202.228 144.772 202.042 144.976 201.902C145.184 201.762 145.417 201.657 145.675 201.585C145.864 201.535 146.151 201.487 146.534 201.44C147.315 201.347 147.889 201.236 148.258 201.107C148.262 200.975 148.263 200.89 148.263 200.855C148.263 200.461 148.172 200.183 147.99 200.022C147.742 199.804 147.375 199.694 146.888 199.694C146.434 199.694 146.097 199.775 145.879 199.936C145.664 200.094 145.504 200.375 145.401 200.779L144.455 200.651C144.541 200.246 144.683 199.92 144.88 199.673C145.077 199.422 145.361 199.231 145.734 199.098C146.106 198.962 146.538 198.894 147.028 198.894C147.515 198.894 147.911 198.951 148.215 199.066C148.519 199.181 148.743 199.326 148.886 199.501C149.03 199.673 149.13 199.891 149.187 200.156C149.219 200.321 149.236 200.618 149.236 201.048V202.337C149.236 203.236 149.255 203.805 149.295 204.045C149.338 204.281 149.42 204.509 149.542 204.727H148.532C148.432 204.527 148.367 204.292 148.339 204.024ZM148.258 201.864C147.907 202.008 147.381 202.129 146.679 202.23C146.281 202.287 146 202.351 145.836 202.423C145.671 202.495 145.544 202.6 145.454 202.74C145.365 202.876 145.32 203.028 145.32 203.196C145.32 203.454 145.417 203.669 145.61 203.841C145.807 204.013 146.094 204.099 146.469 204.099C146.842 204.099 147.173 204.018 147.463 203.857C147.753 203.692 147.966 203.469 148.102 203.186C148.206 202.967 148.258 202.645 148.258 202.219V201.864Z" fill="#9C9C9C"/>
+<path d="M365.135 199.619L366.118 199.533C366.165 199.927 366.272 200.251 366.44 200.505C366.612 200.756 366.877 200.96 367.235 201.118C367.593 201.272 367.996 201.349 368.444 201.349C368.841 201.349 369.192 201.29 369.497 201.172C369.801 201.053 370.027 200.892 370.173 200.688C370.324 200.48 370.399 200.255 370.399 200.011C370.399 199.764 370.327 199.549 370.184 199.367C370.041 199.181 369.805 199.025 369.475 198.9C369.264 198.817 368.797 198.69 368.073 198.518C367.35 198.343 366.843 198.178 366.553 198.024C366.177 197.827 365.896 197.584 365.71 197.294C365.527 197 365.436 196.672 365.436 196.311C365.436 195.913 365.549 195.543 365.774 195.199C366 194.852 366.329 194.588 366.763 194.409C367.196 194.23 367.678 194.141 368.208 194.141C368.791 194.141 369.305 194.236 369.749 194.425C370.197 194.612 370.54 194.887 370.78 195.253C371.02 195.618 371.149 196.031 371.167 196.493L370.168 196.568C370.114 196.071 369.932 195.695 369.62 195.441C369.312 195.186 368.856 195.059 368.25 195.059C367.62 195.059 367.16 195.176 366.87 195.408C366.584 195.637 366.44 195.915 366.44 196.241C366.44 196.524 366.542 196.756 366.747 196.939C366.947 197.122 367.47 197.31 368.315 197.503C369.164 197.693 369.745 197.859 370.061 198.003C370.519 198.214 370.857 198.482 371.076 198.808C371.294 199.13 371.403 199.503 371.403 199.925C371.403 200.344 371.283 200.74 371.043 201.112C370.804 201.481 370.458 201.769 370.007 201.977C369.559 202.181 369.054 202.283 368.492 202.283C367.78 202.283 367.182 202.179 366.698 201.972C366.218 201.764 365.841 201.453 365.565 201.037C365.293 200.618 365.15 200.146 365.135 199.619ZM378.794 201.306C379.277 201.639 379.723 201.882 380.131 202.036L379.825 202.761C379.259 202.557 378.695 202.235 378.133 201.795C377.55 202.12 376.905 202.283 376.2 202.283C375.487 202.283 374.841 202.111 374.261 201.768C373.681 201.424 373.233 200.941 372.918 200.318C372.606 199.694 372.451 198.993 372.451 198.212C372.451 197.435 372.608 196.728 372.923 196.09C373.238 195.453 373.686 194.968 374.266 194.635C374.85 194.302 375.501 194.135 376.221 194.135C376.948 194.135 377.603 194.309 378.187 194.656C378.771 195 379.215 195.484 379.519 196.107C379.827 196.726 379.981 197.426 379.981 198.207C379.981 198.855 379.882 199.438 379.686 199.958C379.489 200.473 379.191 200.923 378.794 201.306ZM376.5 199.974C377.102 200.142 377.598 200.393 377.988 200.726C378.601 200.167 378.907 199.327 378.907 198.207C378.907 197.569 378.798 197.012 378.579 196.536C378.364 196.06 378.047 195.691 377.628 195.43C377.213 195.165 376.746 195.032 376.227 195.032C375.45 195.032 374.805 195.299 374.293 195.833C373.781 196.363 373.525 197.156 373.525 198.212C373.525 199.236 373.777 200.022 374.282 200.57C374.791 201.118 375.439 201.392 376.227 201.392C376.599 201.392 376.95 201.322 377.279 201.182C376.953 200.971 376.61 200.821 376.248 200.731L376.5 199.974ZM381.345 202.149V194.275H382.387V201.22H386.265V202.149H381.345ZM396.132 201.306C396.615 201.639 397.061 201.882 397.469 202.036L397.163 202.761C396.597 202.557 396.033 202.235 395.471 201.795C394.888 202.12 394.243 202.283 393.538 202.283C392.825 202.283 392.179 202.111 391.599 201.768C391.019 201.424 390.571 200.941 390.256 200.318C389.944 199.694 389.789 198.993 389.789 198.212C389.789 197.435 389.946 196.728 390.261 196.09C390.576 195.453 391.024 194.968 391.604 194.635C392.188 194.302 392.839 194.135 393.559 194.135C394.286 194.135 394.941 194.309 395.525 194.656C396.109 195 396.553 195.484 396.857 196.107C397.165 196.726 397.319 197.426 397.319 198.207C397.319 198.855 397.22 199.438 397.023 199.958C396.826 200.473 396.529 200.923 396.132 201.306ZM393.838 199.974C394.44 200.142 394.936 200.393 395.326 200.726C395.938 200.167 396.245 199.327 396.245 198.207C396.245 197.569 396.135 197.012 395.917 196.536C395.702 196.06 395.385 195.691 394.966 195.43C394.551 195.165 394.084 195.032 393.564 195.032C392.787 195.032 392.143 195.299 391.631 195.833C391.119 196.363 390.863 197.156 390.863 198.212C390.863 199.236 391.115 200.022 391.62 200.57C392.129 201.118 392.777 201.392 393.564 201.392C393.937 201.392 394.288 201.322 394.617 201.182C394.291 200.971 393.948 200.821 393.586 200.731L393.838 199.974ZM402.341 202.149V201.311C401.897 201.956 401.293 202.278 400.531 202.278C400.194 202.278 399.879 202.214 399.585 202.085C399.295 201.956 399.079 201.795 398.936 201.601C398.796 201.404 398.697 201.164 398.64 200.881C398.601 200.692 398.581 200.391 398.581 199.979V196.445H399.548V199.609C399.548 200.113 399.568 200.454 399.607 200.629C399.668 200.883 399.797 201.084 399.994 201.231C400.191 201.374 400.434 201.445 400.724 201.445C401.014 201.445 401.286 201.372 401.541 201.225C401.795 201.075 401.974 200.873 402.078 200.618C402.185 200.36 402.239 199.988 402.239 199.501V196.445H403.206V202.149H402.341ZM408.63 200.312L409.629 200.436C409.472 201.019 409.18 201.472 408.754 201.795C408.328 202.117 407.784 202.278 407.121 202.278C406.287 202.278 405.624 202.022 405.134 201.51C404.647 200.994 404.403 200.273 404.403 199.345C404.403 198.386 404.65 197.641 405.145 197.111C405.639 196.581 406.28 196.316 407.067 196.316C407.83 196.316 408.453 196.576 408.937 197.095C409.42 197.614 409.662 198.345 409.662 199.286C409.662 199.344 409.66 199.429 409.656 199.544H405.402C405.438 200.171 405.615 200.651 405.934 200.984C406.253 201.317 406.65 201.483 407.126 201.483C407.481 201.483 407.784 201.39 408.034 201.204C408.285 201.018 408.484 200.72 408.63 200.312ZM405.456 198.749H408.641C408.598 198.269 408.476 197.909 408.276 197.67C407.968 197.297 407.569 197.111 407.078 197.111C406.634 197.111 406.26 197.26 405.956 197.557C405.655 197.854 405.488 198.251 405.456 198.749ZM410.838 202.149V196.445H411.708V197.31C411.93 196.905 412.134 196.638 412.32 196.509C412.51 196.38 412.718 196.316 412.943 196.316C413.269 196.316 413.6 196.42 413.937 196.628L413.604 197.525C413.368 197.385 413.131 197.315 412.895 197.315C412.684 197.315 412.494 197.38 412.326 197.508C412.157 197.634 412.037 197.809 411.966 198.035C411.858 198.379 411.805 198.755 411.805 199.163V202.149H410.838ZM414.517 195.387V194.275H415.484V195.387H414.517ZM414.517 202.149V196.445H415.484V202.149H414.517ZM420.866 200.312L421.865 200.436C421.707 201.019 421.415 201.472 420.989 201.795C420.563 202.117 420.019 202.278 419.356 202.278C418.522 202.278 417.86 202.022 417.369 201.51C416.882 200.994 416.639 200.273 416.639 199.345C416.639 198.386 416.886 197.641 417.38 197.111C417.874 196.581 418.515 196.316 419.303 196.316C420.065 196.316 420.688 196.576 421.172 197.095C421.655 197.614 421.897 198.345 421.897 199.286C421.897 199.344 421.895 199.429 421.892 199.544H417.638C417.674 200.171 417.851 200.651 418.169 200.984C418.488 201.317 418.886 201.483 419.362 201.483C419.716 201.483 420.019 201.39 420.27 201.204C420.52 201.018 420.719 200.72 420.866 200.312ZM417.691 198.749H420.876C420.833 198.269 420.712 197.909 420.511 197.67C420.203 197.297 419.804 197.111 419.313 197.111C418.869 197.111 418.495 197.26 418.191 197.557C417.89 197.854 417.724 198.251 417.691 198.749ZM422.697 200.446L423.653 200.296C423.707 200.679 423.856 200.973 424.099 201.177C424.346 201.381 424.69 201.483 425.13 201.483C425.574 201.483 425.904 201.394 426.119 201.214C426.333 201.032 426.441 200.819 426.441 200.575C426.441 200.357 426.346 200.185 426.156 200.06C426.024 199.974 425.694 199.865 425.168 199.732C424.459 199.553 423.967 199.399 423.691 199.27C423.419 199.138 423.211 198.957 423.068 198.728C422.928 198.495 422.858 198.239 422.858 197.96C422.858 197.705 422.916 197.471 423.03 197.256C423.148 197.038 423.308 196.857 423.508 196.714C423.659 196.602 423.863 196.509 424.121 196.434C424.382 196.355 424.661 196.316 424.958 196.316C425.406 196.316 425.798 196.38 426.135 196.509C426.475 196.638 426.726 196.814 426.887 197.036C427.048 197.254 427.159 197.548 427.22 197.917L426.274 198.046C426.231 197.752 426.106 197.523 425.898 197.358C425.694 197.193 425.404 197.111 425.028 197.111C424.584 197.111 424.267 197.184 424.078 197.331C423.888 197.478 423.793 197.65 423.793 197.847C423.793 197.972 423.832 198.085 423.911 198.185C423.99 198.289 424.113 198.375 424.282 198.443C424.378 198.479 424.663 198.561 425.136 198.69C425.82 198.873 426.296 199.023 426.564 199.141C426.837 199.256 427.05 199.424 427.204 199.646C427.358 199.868 427.435 200.144 427.435 200.473C427.435 200.796 427.34 201.1 427.15 201.386C426.964 201.669 426.693 201.889 426.339 202.047C425.984 202.201 425.583 202.278 425.136 202.278C424.395 202.278 423.829 202.124 423.438 201.816C423.052 201.508 422.805 201.052 422.697 200.446Z" fill="#9C9C9C"/>
+<path d="M446.726 272.519V264.645H447.768V272.519H446.726ZM449.309 272.992L450.249 273.131C450.288 273.422 450.398 273.633 450.577 273.765C450.817 273.944 451.144 274.034 451.56 274.034C452.007 274.034 452.353 273.944 452.596 273.765C452.84 273.586 453.004 273.336 453.09 273.013C453.14 272.816 453.164 272.403 453.16 271.773C452.738 272.27 452.211 272.519 451.581 272.519C450.797 272.519 450.19 272.236 449.76 271.671C449.331 271.105 449.116 270.426 449.116 269.635C449.116 269.091 449.214 268.589 449.411 268.131C449.608 267.669 449.893 267.313 450.265 267.062C450.641 266.811 451.082 266.686 451.586 266.686C452.26 266.686 452.815 266.958 453.251 267.503V266.815H454.143V271.746C454.143 272.634 454.052 273.262 453.869 273.631C453.69 274.003 453.404 274.297 453.01 274.512C452.619 274.727 452.138 274.834 451.565 274.834C450.885 274.834 450.335 274.68 449.916 274.372C449.497 274.068 449.295 273.608 449.309 272.992ZM450.109 269.565C450.109 270.313 450.258 270.859 450.555 271.203C450.852 271.547 451.225 271.719 451.672 271.719C452.116 271.719 452.489 271.549 452.79 271.209C453.09 270.865 453.241 270.328 453.241 269.597C453.241 268.899 453.085 268.373 452.773 268.018C452.465 267.664 452.093 267.486 451.656 267.486C451.227 267.486 450.861 267.662 450.561 268.013C450.26 268.36 450.109 268.878 450.109 269.565ZM455.609 272.519V266.815H456.479V267.626C456.898 266.999 457.504 266.686 458.295 266.686C458.639 266.686 458.954 266.749 459.24 266.874C459.53 266.996 459.747 267.157 459.89 267.358C460.033 267.558 460.134 267.796 460.191 268.072C460.227 268.251 460.245 268.564 460.245 269.012V272.519H459.278V269.049C459.278 268.656 459.24 268.362 459.165 268.169C459.09 267.972 458.956 267.816 458.762 267.701C458.572 267.583 458.349 267.524 458.091 267.524C457.679 267.524 457.323 267.655 457.022 267.916C456.725 268.178 456.576 268.673 456.576 269.404V272.519H455.609ZM461.738 265.757V264.645H462.705V265.757H461.738ZM461.738 272.519V266.815H462.705V272.519H461.738ZM466.292 271.654L466.432 272.508C466.16 272.566 465.917 272.594 465.702 272.594C465.351 272.594 465.079 272.539 464.885 272.428C464.692 272.317 464.556 272.172 464.477 271.993C464.398 271.81 464.359 271.429 464.359 270.849V267.567H463.65V266.815H464.359V265.402L465.32 264.822V266.815H466.292V267.567H465.32V270.902C465.32 271.178 465.336 271.355 465.369 271.434C465.404 271.513 465.46 271.576 465.535 271.622C465.614 271.669 465.725 271.692 465.868 271.692C465.976 271.692 466.117 271.679 466.292 271.654ZM471.148 270.682L472.147 270.806C471.989 271.389 471.698 271.842 471.271 272.165C470.845 272.487 470.301 272.648 469.639 272.648C468.804 272.648 468.142 272.392 467.651 271.88C467.164 271.364 466.921 270.643 466.921 269.715C466.921 268.756 467.168 268.011 467.662 267.481C468.156 266.951 468.797 266.686 469.585 266.686C470.348 266.686 470.971 266.946 471.454 267.465C471.938 267.984 472.179 268.715 472.179 269.656C472.179 269.714 472.177 269.8 472.174 269.914H467.92C467.956 270.541 468.133 271.021 468.452 271.354C468.77 271.687 469.168 271.853 469.644 271.853C469.999 271.853 470.301 271.76 470.552 271.574C470.802 271.388 471.001 271.09 471.148 270.682ZM467.974 269.119H471.159C471.116 268.639 470.994 268.28 470.793 268.04C470.486 267.667 470.086 267.481 469.596 267.481C469.152 267.481 468.778 267.63 468.473 267.927C468.172 268.224 468.006 268.622 467.974 269.119ZM482.169 269.758L483.211 270.022C482.993 270.877 482.599 271.531 482.03 271.982C481.464 272.43 480.771 272.653 479.951 272.653C479.103 272.653 478.411 272.482 477.878 272.138C477.348 271.79 476.943 271.289 476.664 270.634C476.388 269.979 476.25 269.275 476.25 268.523C476.25 267.703 476.406 266.989 476.718 266.38C477.033 265.768 477.479 265.304 478.055 264.989C478.635 264.67 479.273 264.511 479.967 264.511C480.755 264.511 481.417 264.711 481.955 265.112C482.492 265.513 482.866 266.077 483.077 266.804L482.051 267.046C481.869 266.473 481.604 266.056 481.256 265.795C480.909 265.533 480.472 265.402 479.946 265.402C479.341 265.402 478.834 265.547 478.426 265.838C478.021 266.128 477.736 266.518 477.572 267.008C477.407 267.495 477.325 267.998 477.325 268.518C477.325 269.187 477.421 269.773 477.615 270.274C477.812 270.772 478.116 271.144 478.528 271.391C478.94 271.638 479.385 271.762 479.865 271.762C480.449 271.762 480.943 271.594 481.348 271.257C481.752 270.92 482.026 270.421 482.169 269.758ZM484.355 272.519V264.645H485.322V272.519H484.355ZM486.832 265.757V264.645H487.798V265.757H486.832ZM486.832 272.519V266.815H487.798V272.519H486.832ZM493.18 270.682L494.179 270.806C494.022 271.389 493.73 271.842 493.304 272.165C492.878 272.487 492.333 272.648 491.671 272.648C490.837 272.648 490.174 272.392 489.684 271.88C489.197 271.364 488.953 270.643 488.953 269.715C488.953 268.756 489.2 268.011 489.694 267.481C490.188 266.951 490.829 266.686 491.617 266.686C492.38 266.686 493.003 266.946 493.486 267.465C493.97 267.984 494.211 268.715 494.211 269.656C494.211 269.714 494.21 269.8 494.206 269.914H489.952C489.988 270.541 490.165 271.021 490.484 271.354C490.803 271.687 491.2 271.853 491.676 271.853C492.031 271.853 492.333 271.76 492.584 271.574C492.835 271.388 493.033 271.09 493.18 270.682ZM490.006 269.119H493.191C493.148 268.639 493.026 268.28 492.826 268.04C492.518 267.667 492.118 267.481 491.628 267.481C491.184 267.481 490.81 267.63 490.505 267.927C490.205 268.224 490.038 268.622 490.006 269.119ZM495.398 272.519V266.815H496.269V267.626C496.688 266.999 497.293 266.686 498.084 266.686C498.428 266.686 498.743 266.749 499.029 266.874C499.319 266.996 499.536 267.157 499.679 267.358C499.822 267.558 499.923 267.796 499.98 268.072C500.016 268.251 500.034 268.564 500.034 269.012V272.519H499.067V269.049C499.067 268.656 499.029 268.362 498.954 268.169C498.879 267.972 498.745 267.816 498.551 267.701C498.361 267.583 498.138 267.524 497.88 267.524C497.468 267.524 497.112 267.655 496.811 267.916C496.514 268.178 496.365 268.673 496.365 269.404V272.519H495.398ZM503.632 271.654L503.772 272.508C503.5 272.566 503.256 272.594 503.042 272.594C502.691 272.594 502.418 272.539 502.225 272.428C502.032 272.317 501.896 272.172 501.817 271.993C501.738 271.81 501.699 271.429 501.699 270.849V267.567H500.99V266.815H501.699V265.402L502.66 264.822V266.815H503.632V267.567H502.66V270.902C502.66 271.178 502.676 271.355 502.708 271.434C502.744 271.513 502.8 271.576 502.875 271.622C502.954 271.669 503.065 271.692 503.208 271.692C503.315 271.692 503.457 271.679 503.632 271.654ZM504.196 270.817L505.152 270.666C505.206 271.049 505.355 271.343 505.598 271.547C505.845 271.751 506.189 271.853 506.629 271.853C507.073 271.853 507.403 271.764 507.618 271.585C507.833 271.402 507.94 271.189 507.94 270.945C507.94 270.727 507.845 270.555 507.655 270.43C507.523 270.344 507.193 270.235 506.667 270.102C505.958 269.923 505.466 269.769 505.19 269.64C504.918 269.508 504.71 269.327 504.567 269.098C504.427 268.865 504.357 268.609 504.357 268.33C504.357 268.075 504.415 267.841 504.529 267.626C504.647 267.408 504.807 267.227 505.007 267.084C505.158 266.973 505.362 266.88 505.62 266.804C505.881 266.726 506.16 266.686 506.458 266.686C506.905 266.686 507.297 266.751 507.634 266.88C507.974 267.008 508.225 267.184 508.386 267.406C508.547 267.624 508.658 267.918 508.719 268.287L507.773 268.416C507.73 268.122 507.605 267.893 507.397 267.728C507.193 267.563 506.903 267.481 506.527 267.481C506.083 267.481 505.766 267.554 505.577 267.701C505.387 267.848 505.292 268.02 505.292 268.217C505.292 268.342 505.331 268.455 505.41 268.555C505.489 268.659 505.612 268.745 505.781 268.813C505.877 268.849 506.162 268.931 506.635 269.06C507.319 269.243 507.795 269.393 508.063 269.511C508.336 269.626 508.549 269.794 508.703 270.016C508.857 270.238 508.934 270.514 508.934 270.843C508.934 271.166 508.839 271.47 508.649 271.756C508.463 272.039 508.192 272.26 507.838 272.417C507.483 272.571 507.082 272.648 506.635 272.648C505.894 272.648 505.328 272.494 504.938 272.186C504.551 271.878 504.304 271.422 504.196 270.817Z" fill="black"/>
+<path d="M25.393 269.519V261.645H26.435V269.519H25.393ZM27.9765 269.992L28.9164 270.131C28.9558 270.422 29.065 270.633 29.2441 270.765C29.484 270.944 29.8116 271.034 30.227 271.034C30.6746 271.034 31.0201 270.944 31.2636 270.765C31.5071 270.586 31.6718 270.336 31.7577 270.013C31.8079 269.816 31.8311 269.403 31.8276 268.773C31.405 269.27 30.8787 269.519 30.2485 269.519C29.4643 269.519 28.8573 269.236 28.4277 268.671C27.998 268.105 27.7831 267.426 27.7831 266.635C27.7831 266.091 27.8816 265.589 28.0785 265.131C28.2755 264.669 28.5601 264.313 28.9325 264.062C29.3085 263.811 29.7489 263.686 30.2538 263.686C30.927 263.686 31.482 263.958 31.9189 264.503V263.815H32.8105V268.746C32.8105 269.634 32.7192 270.262 32.5365 270.631C32.3575 271.003 32.0711 271.297 31.6772 271.512C31.2869 271.727 30.8053 271.834 30.2323 271.834C29.552 271.834 29.0024 271.68 28.5834 271.372C28.1645 271.068 27.9622 270.608 27.9765 269.992ZM28.7768 266.565C28.7768 267.313 28.9254 267.859 29.2226 268.203C29.5198 268.547 29.8922 268.719 30.3398 268.719C30.7838 268.719 31.1562 268.549 31.457 268.209C31.7577 267.865 31.9081 267.328 31.9081 266.597C31.9081 265.899 31.7524 265.373 31.4408 265.018C31.1329 264.664 30.7605 264.486 30.3237 264.486C29.894 264.486 29.5287 264.662 29.228 265.013C28.9272 265.36 28.7768 265.878 28.7768 266.565ZM34.2768 269.519V263.815H35.1469V264.626C35.5658 263.999 36.171 263.686 36.9623 263.686C37.3061 263.686 37.6212 263.749 37.9076 263.874C38.1977 263.996 38.4143 264.157 38.5575 264.358C38.7008 264.558 38.801 264.796 38.8583 265.072C38.8941 265.251 38.912 265.564 38.912 266.012V269.519H37.9452V266.049C37.9452 265.656 37.9076 265.362 37.8324 265.169C37.7572 264.972 37.623 264.816 37.4296 264.701C37.2398 264.583 37.016 264.524 36.7582 264.524C36.3464 264.524 35.9902 264.655 35.6894 264.916C35.3922 265.178 35.2436 265.673 35.2436 266.404V269.519H34.2768ZM40.4052 262.757V261.645H41.372V262.757H40.4052ZM40.4052 269.519V263.815H41.372V269.519H40.4052ZM44.9599 268.654L45.0995 269.508C44.8274 269.566 44.5839 269.594 44.3691 269.594C44.0182 269.594 43.746 269.539 43.5527 269.428C43.3593 269.317 43.2232 269.172 43.1445 268.993C43.0657 268.81 43.0263 268.429 43.0263 267.849V264.567H42.3173V263.815H43.0263V262.402L43.9877 261.822V263.815H44.9599V264.567H43.9877V267.902C43.9877 268.178 44.0038 268.355 44.0361 268.434C44.0719 268.513 44.1274 268.576 44.2026 268.622C44.2813 268.669 44.3923 268.692 44.5356 268.692C44.643 268.692 44.7844 268.679 44.9599 268.654ZM49.8154 267.682L50.8144 267.806C50.6568 268.389 50.365 268.842 49.9389 269.165C49.5128 269.487 48.9685 269.648 48.3061 269.648C47.4718 269.648 46.8093 269.392 46.3188 268.88C45.8318 268.364 45.5883 267.643 45.5883 266.715C45.5883 265.756 45.8354 265.011 46.3295 264.481C46.8237 263.951 47.4646 263.686 48.2524 263.686C49.0151 263.686 49.6381 263.946 50.1215 264.465C50.6049 264.984 50.8466 265.715 50.8466 266.656C50.8466 266.714 50.8448 266.8 50.8412 266.914H46.5873C46.6231 267.541 46.8004 268.021 47.1191 268.354C47.4377 268.687 47.8352 268.853 48.3114 268.853C48.6659 268.853 48.9685 268.76 49.2192 268.574C49.4698 268.388 49.6685 268.09 49.8154 267.682ZM46.641 266.119H49.8261C49.7831 265.639 49.6614 265.28 49.4609 265.04C49.1529 264.667 48.7537 264.481 48.2631 264.481C47.8191 264.481 47.4449 264.63 47.1405 264.927C46.8398 265.224 46.6733 265.622 46.641 266.119ZM54.8642 266.989L55.8471 266.903C55.8936 267.297 56.0011 267.621 56.1694 267.876C56.3412 268.126 56.6062 268.33 56.9643 268.488C57.3224 268.642 57.7252 268.719 58.1728 268.719C58.5702 268.719 58.9211 268.66 59.2255 268.542C59.5299 268.423 59.7555 268.262 59.9023 268.058C60.0527 267.851 60.1279 267.625 60.1279 267.381C60.1279 267.134 60.0562 266.92 59.913 266.737C59.7698 266.551 59.5335 266.395 59.204 266.27C58.9928 266.187 58.5255 266.06 57.8022 265.888C57.0789 265.713 56.5722 265.548 56.2822 265.394C55.9062 265.197 55.6251 264.954 55.4389 264.664C55.2563 264.37 55.165 264.042 55.165 263.681C55.165 263.283 55.2778 262.913 55.5033 262.569C55.7289 262.222 56.0584 261.958 56.4916 261.779C56.9249 261.6 57.4065 261.511 57.9364 261.511C58.5201 261.511 59.0339 261.606 59.478 261.796C59.9255 261.982 60.2693 262.257 60.5092 262.623C60.7491 262.988 60.878 263.401 60.8959 263.863L59.8969 263.939C59.8432 263.441 59.6606 263.065 59.349 262.811C59.0411 262.556 58.5846 262.429 57.9794 262.429C57.3492 262.429 56.8891 262.546 56.599 262.778C56.3126 263.008 56.1694 263.285 56.1694 263.611C56.1694 263.894 56.2714 264.127 56.4755 264.309C56.676 264.492 57.1988 264.68 58.0439 264.873C58.8925 265.063 59.4744 265.229 59.7895 265.373C60.2478 265.584 60.5862 265.852 60.8046 266.178C61.023 266.501 61.1322 266.873 61.1322 267.296C61.1322 267.714 61.0123 268.11 60.7724 268.483C60.5325 268.851 60.1869 269.14 59.7358 269.347C59.2882 269.551 58.7833 269.653 58.2211 269.653C57.5086 269.653 56.9106 269.55 56.4272 269.342C55.9474 269.134 55.5696 268.823 55.2939 268.407C55.0217 267.988 54.8785 267.516 54.8642 266.989ZM64.5429 268.654L64.6825 269.508C64.4104 269.566 64.1669 269.594 63.9521 269.594C63.6012 269.594 63.329 269.539 63.1357 269.428C62.9423 269.317 62.8062 269.172 62.7275 268.993C62.6487 268.81 62.6093 268.429 62.6093 267.849V264.567H61.9003V263.815H62.6093V262.402L63.5707 261.822V263.815H64.5429V264.567H63.5707V267.902C63.5707 268.178 63.5868 268.355 63.6191 268.434C63.6549 268.513 63.7104 268.576 63.7856 268.622C63.8643 268.669 63.9753 268.692 64.1186 268.692C64.226 268.692 64.3674 268.679 64.5429 268.654ZM65.4828 269.519V263.815H66.353V264.68C66.575 264.275 66.7791 264.008 66.9653 263.88C67.155 263.751 67.3627 263.686 67.5883 263.686C67.9141 263.686 68.2454 263.79 68.582 263.998L68.2489 264.895C68.0126 264.755 67.7763 264.685 67.54 264.685C67.3287 264.685 67.1389 264.75 66.9706 264.879C66.8023 265.004 66.6824 265.179 66.6108 265.405C66.5033 265.749 66.4496 266.125 66.4496 266.533V269.519H65.4828ZM73.0614 267.682L74.0605 267.806C73.9029 268.389 73.6111 268.842 73.185 269.165C72.7589 269.487 72.2146 269.648 71.5522 269.648C70.7179 269.648 70.0554 269.392 69.5649 268.88C69.0779 268.364 68.8344 267.643 68.8344 266.715C68.8344 265.756 69.0815 265.011 69.5756 264.481C70.0697 263.951 70.7107 263.686 71.4985 263.686C72.2612 263.686 72.8842 263.946 73.3676 264.465C73.851 264.984 74.0927 265.715 74.0927 266.656C74.0927 266.714 74.0909 266.8 74.0873 266.914H69.8334C69.8692 267.541 70.0465 268.021 70.3652 268.354C70.6838 268.687 71.0813 268.853 71.5575 268.853C71.912 268.853 72.2146 268.76 72.4653 268.574C72.7159 268.388 72.9146 268.09 73.0614 267.682ZM69.8871 266.119H73.0722C73.0292 265.639 72.9075 265.28 72.707 265.04C72.399 264.667 71.9998 264.481 71.5092 264.481C71.0652 264.481 70.691 264.63 70.3866 264.927C70.0859 265.224 69.9194 265.622 69.8871 266.119ZM79.0019 268.816C78.6438 269.12 78.2983 269.335 77.9653 269.46C77.6358 269.585 77.2813 269.648 76.9018 269.648C76.2752 269.648 75.7935 269.496 75.457 269.192C75.1204 268.884 74.9521 268.491 74.9521 268.015C74.9521 267.736 75.0147 267.482 75.1401 267.253C75.269 267.02 75.4355 266.834 75.6396 266.694C75.8473 266.554 76.08 266.449 76.3378 266.377C76.5276 266.327 76.8141 266.279 77.1972 266.232C77.9778 266.139 78.5525 266.028 78.9213 265.899C78.9249 265.767 78.9267 265.682 78.9267 265.647C78.9267 265.253 78.8354 264.975 78.6528 264.814C78.4057 264.596 78.0387 264.486 77.5517 264.486C77.0969 264.486 76.7603 264.567 76.5419 264.728C76.3271 264.886 76.1677 265.167 76.0639 265.571L75.1186 265.443C75.2045 265.038 75.346 264.712 75.5429 264.465C75.7398 264.214 76.0245 264.023 76.3969 263.89C76.7693 263.754 77.2008 263.686 77.6913 263.686C78.1783 263.686 78.574 263.743 78.8783 263.858C79.1827 263.973 79.4065 264.118 79.5497 264.293C79.693 264.465 79.7932 264.683 79.8505 264.948C79.8827 265.113 79.8988 265.41 79.8988 265.84V267.129C79.8988 268.028 79.9185 268.597 79.9579 268.837C80.0009 269.073 80.0833 269.301 80.205 269.519H79.1952C79.095 269.319 79.0305 269.084 79.0019 268.816ZM78.9213 266.656C78.5704 266.8 78.044 266.921 77.3422 267.022C76.9447 267.079 76.6637 267.143 76.4989 267.215C76.3342 267.287 76.2071 267.392 76.1176 267.532C76.0281 267.668 75.9833 267.82 75.9833 267.988C75.9833 268.246 76.08 268.461 76.2734 268.633C76.4703 268.805 76.7568 268.891 77.1327 268.891C77.5051 268.891 77.8363 268.81 78.1264 268.649C78.4164 268.484 78.6295 268.261 78.7655 267.978C78.8694 267.759 78.9213 267.437 78.9213 267.011V266.656ZM81.4028 269.519V263.815H82.2675V264.615C82.4465 264.336 82.6847 264.112 82.9819 263.944C83.2791 263.772 83.6174 263.686 83.997 263.686C84.4195 263.686 84.7651 263.774 85.0336 263.949C85.3058 264.125 85.4973 264.37 85.6083 264.685C86.0595 264.019 86.6467 263.686 87.37 263.686C87.9358 263.686 88.3709 263.844 88.6752 264.159C88.9796 264.47 89.1318 264.952 89.1318 265.604V269.519H88.1703V265.926C88.1703 265.539 88.1381 265.262 88.0737 265.093C88.0128 264.922 87.9 264.784 87.7353 264.68C87.5706 264.576 87.3772 264.524 87.1552 264.524C86.7542 264.524 86.4211 264.658 86.1562 264.927C85.8912 265.192 85.7587 265.618 85.7587 266.205V269.519H84.7919V265.813C84.7919 265.383 84.7131 265.061 84.5556 264.846C84.398 264.631 84.1402 264.524 83.7822 264.524C83.51 264.524 83.2576 264.596 83.0248 264.739C82.7957 264.882 82.6292 265.092 82.5253 265.367C82.4215 265.643 82.3696 266.04 82.3696 266.56V269.519H81.4028ZM94.4706 267.682L95.4697 267.806C95.3121 268.389 95.0203 268.842 94.5942 269.165C94.1681 269.487 93.6238 269.648 92.9613 269.648C92.127 269.648 91.4646 269.392 90.974 268.88C90.4871 268.364 90.2436 267.643 90.2436 266.715C90.2436 265.756 90.4906 265.011 90.9848 264.481C91.4789 263.951 92.1199 263.686 92.9076 263.686C93.6703 263.686 94.2934 263.946 94.7768 264.465C95.2602 264.984 95.5019 265.715 95.5019 266.656C95.5019 266.714 95.5001 266.8 95.4965 266.914H91.2426C91.2784 267.541 91.4557 268.021 91.7743 268.354C92.093 268.687 92.4905 268.853 92.9667 268.853C93.3212 268.853 93.6238 268.76 93.8744 268.574C94.1251 268.388 94.3238 268.09 94.4706 267.682ZM91.2963 266.119H94.4814C94.4384 265.639 94.3167 265.28 94.1161 265.04C93.8082 264.667 93.4089 264.481 92.9184 264.481C92.4744 264.481 92.1002 264.63 91.7958 264.927C91.495 265.224 91.3285 265.622 91.2963 266.119ZM96.6781 269.519V263.815H97.5483V264.68C97.7703 264.275 97.9744 264.008 98.1606 263.88C98.3503 263.751 98.558 263.686 98.7836 263.686C99.1095 263.686 99.4407 263.79 99.7773 263.998L99.4443 264.895C99.2079 264.755 98.9716 264.685 98.7353 264.685C98.524 264.685 98.3342 264.75 98.1659 264.879C97.9976 265.004 97.8777 265.179 97.8061 265.405C97.6987 265.749 97.6449 266.125 97.6449 266.533V269.519H96.6781ZM99.9653 267.817L100.921 267.666C100.975 268.049 101.124 268.343 101.367 268.547C101.614 268.751 101.958 268.853 102.398 268.853C102.842 268.853 103.172 268.764 103.387 268.585C103.601 268.402 103.709 268.189 103.709 267.945C103.709 267.727 103.614 267.555 103.424 267.43C103.292 267.344 102.962 267.235 102.436 267.102C101.727 266.923 101.235 266.769 100.959 266.64C100.687 266.508 100.479 266.327 100.336 266.098C100.196 265.865 100.126 265.609 100.126 265.33C100.126 265.075 100.184 264.841 100.298 264.626C100.416 264.408 100.576 264.227 100.776 264.084C100.927 263.973 101.131 263.88 101.389 263.804C101.65 263.726 101.929 263.686 102.226 263.686C102.674 263.686 103.066 263.751 103.403 263.88C103.743 264.008 103.994 264.184 104.155 264.406C104.316 264.624 104.427 264.918 104.488 265.287L103.542 265.416C103.499 265.122 103.374 264.893 103.166 264.728C102.962 264.563 102.672 264.481 102.296 264.481C101.852 264.481 101.535 264.554 101.346 264.701C101.156 264.848 101.061 265.02 101.061 265.217C101.061 265.342 101.1 265.455 101.179 265.555C101.258 265.659 101.381 265.745 101.55 265.813C101.646 265.849 101.931 265.931 102.404 266.06C103.088 266.243 103.564 266.393 103.832 266.511C104.105 266.626 104.318 266.794 104.472 267.016C104.626 267.238 104.703 267.514 104.703 267.843C104.703 268.166 104.608 268.47 104.418 268.756C104.232 269.039 103.961 269.26 103.607 269.417C103.252 269.571 102.851 269.648 102.404 269.648C101.663 269.648 101.097 269.494 100.706 269.186C100.32 268.878 100.073 268.422 99.9653 267.817Z" fill="black"/>
+<path d="M235.805 46V38.126H236.847V46H235.805ZM238.388 46.4727L239.328 46.6123C239.368 46.9023 239.477 47.1136 239.656 47.2461C239.896 47.4251 240.224 47.5146 240.639 47.5146C241.086 47.5146 241.432 47.4251 241.676 47.2461C241.919 47.0671 242.084 46.8164 242.17 46.4941C242.22 46.2972 242.243 45.8836 242.239 45.2534C241.817 45.7511 241.291 46 240.66 46C239.876 46 239.269 45.7171 238.84 45.1514C238.41 44.5856 238.195 43.9071 238.195 43.1157C238.195 42.5715 238.294 42.0701 238.49 41.6118C238.687 41.1499 238.972 40.7936 239.344 40.543C239.72 40.2923 240.161 40.167 240.666 40.167C241.339 40.167 241.894 40.4391 242.331 40.9834V40.2959H243.222V45.2266C243.222 46.1146 243.131 46.743 242.948 47.1118C242.769 47.4842 242.483 47.7778 242.089 47.9927C241.699 48.2075 241.217 48.3149 240.644 48.3149C239.964 48.3149 239.414 48.161 238.995 47.853C238.576 47.5487 238.374 47.0885 238.388 46.4727ZM239.189 43.0459C239.189 43.7943 239.337 44.3403 239.635 44.6841C239.932 45.0278 240.304 45.1997 240.752 45.1997C241.196 45.1997 241.568 45.0296 241.869 44.6895C242.17 44.3457 242.32 43.8086 242.32 43.0781C242.32 42.3799 242.164 41.8535 241.853 41.499C241.545 41.1445 241.172 40.9673 240.736 40.9673C240.306 40.9673 239.941 41.1427 239.64 41.4937C239.339 41.841 239.189 42.3584 239.189 43.0459ZM244.689 46V40.2959H245.559V41.1069C245.978 40.4803 246.583 40.167 247.374 40.167C247.718 40.167 248.033 40.2297 248.32 40.355C248.61 40.4767 248.826 40.6379 248.969 40.8384C249.113 41.0389 249.213 41.277 249.27 41.5527C249.306 41.7318 249.324 42.0451 249.324 42.4927V46H248.357V42.5303C248.357 42.1364 248.32 41.8428 248.244 41.6494C248.169 41.4525 248.035 41.2967 247.842 41.1821C247.652 41.064 247.428 41.0049 247.17 41.0049C246.758 41.0049 246.402 41.1356 246.101 41.397C245.804 41.6584 245.656 42.1543 245.656 42.8848V46H244.689ZM250.817 39.2378V38.126H251.784V39.2378H250.817ZM250.817 46V40.2959H251.784V46H250.817ZM255.372 45.1353L255.511 45.9893C255.239 46.0465 254.996 46.0752 254.781 46.0752C254.43 46.0752 254.158 46.0197 253.965 45.9087C253.771 45.7977 253.635 45.6527 253.556 45.4736C253.478 45.291 253.438 44.9097 253.438 44.3296V41.0479H252.729V40.2959H253.438V38.8833L254.4 38.3032V40.2959H255.372V41.0479H254.4V44.3833C254.4 44.659 254.416 44.8363 254.448 44.915C254.484 44.9938 254.539 45.0565 254.614 45.103C254.693 45.1496 254.804 45.1729 254.947 45.1729C255.055 45.1729 255.196 45.1603 255.372 45.1353ZM260.227 44.1631L261.226 44.2866C261.069 44.8703 260.777 45.3232 260.351 45.6455C259.925 45.9678 259.38 46.1289 258.718 46.1289C257.884 46.1289 257.221 45.8729 256.731 45.3608C256.244 44.8452 256 44.1237 256 43.1963C256 42.2367 256.247 41.4919 256.741 40.9619C257.236 40.432 257.877 40.167 258.664 40.167C259.427 40.167 260.05 40.4266 260.533 40.9458C261.017 41.465 261.259 42.1955 261.259 43.1372C261.259 43.1945 261.257 43.2804 261.253 43.395H256.999C257.035 44.0216 257.212 44.5015 257.531 44.8345C257.85 45.1675 258.247 45.334 258.723 45.334C259.078 45.334 259.38 45.2409 259.631 45.0547C259.882 44.8685 260.08 44.5713 260.227 44.1631ZM257.053 42.6001H260.238C260.195 42.1203 260.073 41.7604 259.873 41.5205C259.565 41.1481 259.166 40.9619 258.675 40.9619C258.231 40.9619 257.857 41.1105 257.552 41.4077C257.252 41.7049 257.085 42.1024 257.053 42.6001ZM271.249 43.2393L272.291 43.5024C272.072 44.3582 271.678 45.0117 271.109 45.4629C270.543 45.9105 269.85 46.1343 269.031 46.1343C268.182 46.1343 267.491 45.9624 266.957 45.6187C266.427 45.2713 266.023 44.77 265.743 44.1147C265.468 43.4595 265.33 42.7559 265.33 42.0039C265.33 41.1839 265.486 40.4696 265.797 39.8608C266.112 39.2485 266.558 38.7848 267.135 38.4697C267.715 38.151 268.352 37.9917 269.047 37.9917C269.834 37.9917 270.497 38.1922 271.034 38.5933C271.571 38.9943 271.945 39.5583 272.156 40.2852L271.131 40.5269C270.948 39.9539 270.683 39.5368 270.336 39.2754C269.988 39.014 269.551 38.8833 269.025 38.8833C268.42 38.8833 267.913 39.0283 267.505 39.3184C267.1 39.6084 266.816 39.9987 266.651 40.4893C266.486 40.9762 266.404 41.4793 266.404 41.9985C266.404 42.6681 266.501 43.2536 266.694 43.7549C266.891 44.2526 267.195 44.625 267.607 44.8721C268.019 45.1191 268.465 45.2427 268.945 45.2427C269.528 45.2427 270.022 45.0744 270.427 44.7378C270.832 44.4012 271.106 43.9017 271.249 43.2393ZM273.435 46V38.126H274.402V46H273.435ZM279.644 46V45.1621C279.2 45.8066 278.596 46.1289 277.834 46.1289C277.497 46.1289 277.182 46.0645 276.888 45.9355C276.598 45.8066 276.382 45.6455 276.239 45.4521C276.099 45.2552 276 45.0153 275.943 44.7324C275.904 44.5426 275.884 44.2419 275.884 43.8301V40.2959H276.851V43.4595C276.851 43.9644 276.871 44.3045 276.91 44.48C276.971 44.7342 277.1 44.9347 277.297 45.0815C277.494 45.2248 277.737 45.2964 278.027 45.2964C278.317 45.2964 278.589 45.223 278.843 45.0762C279.098 44.9258 279.277 44.7235 279.381 44.4692C279.488 44.2114 279.542 43.839 279.542 43.3521V40.2959H280.509V46H279.644ZM281.642 44.2974L282.598 44.147C282.652 44.5301 282.8 44.8237 283.044 45.0278C283.291 45.2319 283.635 45.334 284.075 45.334C284.519 45.334 284.848 45.2445 285.063 45.0654C285.278 44.8828 285.385 44.6698 285.385 44.4263C285.385 44.2078 285.291 44.036 285.101 43.9106C284.968 43.8247 284.639 43.7155 284.113 43.583C283.404 43.404 282.911 43.25 282.635 43.1211C282.363 42.9886 282.156 42.8078 282.012 42.5786C281.873 42.3459 281.803 42.0898 281.803 41.8105C281.803 41.5563 281.86 41.3218 281.975 41.1069C282.093 40.8885 282.252 40.7077 282.453 40.5645C282.603 40.4535 282.807 40.3604 283.065 40.2852C283.327 40.2064 283.606 40.167 283.903 40.167C284.351 40.167 284.743 40.2314 285.079 40.3604C285.419 40.4893 285.67 40.6647 285.831 40.8867C285.992 41.1051 286.103 41.3988 286.164 41.7676L285.219 41.8965C285.176 41.6029 285.051 41.3737 284.843 41.209C284.639 41.0443 284.349 40.9619 283.973 40.9619C283.529 40.9619 283.212 41.0353 283.022 41.1821C282.832 41.3289 282.738 41.5008 282.738 41.6978C282.738 41.8231 282.777 41.9359 282.856 42.0361C282.934 42.14 283.058 42.2259 283.226 42.2939C283.323 42.3298 283.608 42.4121 284.08 42.541C284.764 42.7236 285.24 42.874 285.509 42.9922C285.781 43.1068 285.994 43.2751 286.148 43.4971C286.302 43.7191 286.379 43.9948 286.379 44.3242C286.379 44.6465 286.284 44.9508 286.094 45.2373C285.908 45.5202 285.638 45.7404 285.283 45.8979C284.929 46.0519 284.528 46.1289 284.08 46.1289C283.339 46.1289 282.773 45.9749 282.383 45.667C281.996 45.359 281.749 44.9025 281.642 44.2974ZM289.639 45.1353L289.779 45.9893C289.507 46.0465 289.263 46.0752 289.049 46.0752C288.698 46.0752 288.426 46.0197 288.232 45.9087C288.039 45.7977 287.903 45.6527 287.824 45.4736C287.745 45.291 287.706 44.9097 287.706 44.3296V41.0479H286.997V40.2959H287.706V38.8833L288.667 38.3032V40.2959H289.639V41.0479H288.667V44.3833C288.667 44.659 288.683 44.8363 288.716 44.915C288.751 44.9938 288.807 45.0565 288.882 45.103C288.961 45.1496 289.072 45.1729 289.215 45.1729C289.322 45.1729 289.464 45.1603 289.639 45.1353ZM294.495 44.1631L295.494 44.2866C295.336 44.8703 295.044 45.3232 294.618 45.6455C294.192 45.9678 293.648 46.1289 292.986 46.1289C292.151 46.1289 291.489 45.8729 290.998 45.3608C290.511 44.8452 290.268 44.1237 290.268 43.1963C290.268 42.2367 290.515 41.4919 291.009 40.9619C291.503 40.432 292.144 40.167 292.932 40.167C293.695 40.167 294.318 40.4266 294.801 40.9458C295.284 41.465 295.526 42.1955 295.526 43.1372C295.526 43.1945 295.524 43.2804 295.521 43.395H291.267C291.303 44.0216 291.48 44.5015 291.799 44.8345C292.117 45.1675 292.515 45.334 292.991 45.334C293.345 45.334 293.648 45.2409 293.899 45.0547C294.149 44.8685 294.348 44.5713 294.495 44.1631ZM291.321 42.6001H294.506C294.463 42.1203 294.341 41.7604 294.14 41.5205C293.832 41.1481 293.433 40.9619 292.943 40.9619C292.499 40.9619 292.124 41.1105 291.82 41.4077C291.519 41.7049 291.353 42.1024 291.321 42.6001ZM296.702 46V40.2959H297.572V41.1606C297.794 40.756 297.999 40.4893 298.185 40.3604C298.375 40.2314 298.582 40.167 298.808 40.167C299.134 40.167 299.465 40.2708 299.801 40.4785L299.468 41.3755C299.232 41.2358 298.996 41.166 298.76 41.166C298.548 41.166 298.358 41.2305 298.19 41.3594C298.022 41.4847 297.902 41.6602 297.83 41.8857C297.723 42.2295 297.669 42.6055 297.669 43.0137V46H296.702Z" fill="black"/>
+<path d="M80.6083 212.032C78.2198 209.642 74.9847 208.327 71.4992 208.327C68.0136 208.327 64.7786 209.642 62.3901 212.032L64.6613 214.303C66.4443 212.52 68.8713 211.537 71.4992 211.537C74.127 211.539 76.5541 212.52 78.337 214.303L80.6083 212.032Z" fill="#0070CC"/>
+<path d="M85.0512 207.189C77.7073 199.844 65.2926 199.844 57.9487 207.189L60.22 209.461C66.335 203.346 76.6649 203.346 82.7799 209.461L85.0512 207.189Z" fill="#0070CC"/>
+<path d="M71.4992 221.177C73.2734 221.177 74.7117 219.738 74.7117 217.964C74.7117 216.19 73.2734 214.752 71.4992 214.752C69.725 214.752 68.2867 216.19 68.2867 217.964C68.2867 219.738 69.725 221.177 71.4992 221.177Z" fill="#0070CC"/>
+</svg>
diff --git a/public/img/features/streaming/three.png b/public/img/features/streaming/three.png
new file mode 100644
index 0000000..25528ec
--- /dev/null
+++ b/public/img/features/streaming/three.png
Binary files differ
diff --git a/public/img/features/streaming/two.svg b/public/img/features/streaming/two.svg
new file mode 100644
index 0000000..1ee50db
--- /dev/null
+++ b/public/img/features/streaming/two.svg
@@ -0,0 +1,9 @@
+<svg width="108" height="50" viewBox="0 0 108 50" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="108" height="50" rx="10" fill="white"/>
+<path d="M26.3065 13.3202C25.9533 12.9639 25.463 12.7446 24.9168 12.7446C24.3718 12.7446 23.8855 12.9639 23.5367 13.3202H23.5276C23.1756 13.6736 22.957 14.167 22.957 14.7122C22.957 15.2606 23.1756 15.7509 23.5276 16.1009L23.5367 16.1106C23.8855 16.4637 24.3718 16.68 24.9168 16.68C25.463 16.68 25.9533 16.4637 26.3065 16.1106L26.3105 16.1009C26.6642 15.7509 26.8797 15.2606 26.8797 14.7122C26.8797 14.167 26.6642 13.6736 26.3105 13.3202H26.3065ZM24.9168 40.2554C25.463 40.2554 25.9533 40.032 26.3065 39.6823L26.3105 39.6722C26.6642 39.3232 26.8797 38.8298 26.8797 38.2876C26.8797 37.7393 26.6642 37.2481 26.3105 36.8928H26.3065C25.9533 36.5332 25.463 36.3159 24.9168 36.3159C24.3718 36.3159 23.8855 36.5332 23.5367 36.8928H23.5276C23.1756 37.2481 22.957 37.7393 22.957 38.2876C22.957 38.8298 23.1756 39.3232 23.5276 39.6722L23.5367 39.6823C23.8855 40.032 24.3718 40.2554 24.9168 40.2554ZM35.5942 34.2936C36.0796 34.1654 36.5191 33.8527 36.7873 33.3796L36.8235 33.3104C37.0621 32.8625 37.1059 32.3445 36.9783 31.885C36.8497 31.3942 36.5347 30.9587 36.0644 30.688L36.0369 30.6693C35.5786 30.4165 35.0571 30.3615 34.5779 30.4927C34.0905 30.6148 33.6524 30.9407 33.3857 31.4098C33.1155 31.8759 33.059 32.4116 33.1882 32.9049C33.3219 33.3902 33.6343 33.8284 34.1016 34.1023H34.1046C34.5728 34.3728 35.1024 34.4211 35.5942 34.2936H35.5942ZM26.9269 24.4835C26.4125 23.9685 25.7025 23.6457 24.9168 23.6457C24.1321 23.6457 23.4242 23.9685 22.9108 24.4835C22.3988 24.9981 22.0833 25.7077 22.0833 26.4967C22.0833 27.2856 22.3988 27.9984 22.9108 28.519C23.4242 29.0309 24.1321 29.3508 24.9168 29.3508C25.7025 29.3508 26.4125 29.0309 26.9269 28.519C27.4399 27.9984 27.7554 27.2856 27.7554 26.4967C27.7554 25.7077 27.4399 24.9981 26.9269 24.4835ZM25.7965 21.1301C26.9369 21.3187 27.9613 21.8671 28.7441 22.659H28.7501C28.8747 22.7836 28.9958 22.9207 29.1083 23.058L31.0651 21.9216C30.8019 21.1235 30.7898 20.2891 31.0012 19.5063C31.2801 18.4587 31.9569 17.5204 32.9711 16.9328L33.0044 16.9115C34.0077 16.3416 35.1481 16.2231 36.1775 16.503C37.2199 16.7835 38.1604 17.466 38.7457 18.4829V18.4859C39.3285 19.4973 39.4466 20.658 39.1687 21.7026C38.8914 22.7503 38.2121 23.6946 37.1988 24.2792L36.9315 24.4375H36.9044C35.9669 24.8856 34.9365 24.9557 33.99 24.7055C33.2128 24.4986 32.5 24.0628 31.9417 23.4448L29.988 24.5778C30.2125 25.1746 30.3366 25.8173 30.3366 26.4967C30.3366 27.1726 30.2125 27.8248 29.988 28.4245L31.9417 29.5546C32.5 28.9269 33.2128 28.5008 33.99 28.2935C35.033 28.0074 36.1885 28.129 37.1988 28.7202L37.2636 28.7504V28.7534C38.2393 29.3477 38.8944 30.2643 39.1687 31.2998C39.4466 32.3385 39.3285 33.4996 38.7457 34.513L38.7105 34.5836L38.7064 34.5776C38.1213 35.5547 37.1987 36.2165 36.1804 36.4964C35.136 36.7728 33.9799 36.6547 32.9711 36.0721V36.0641C31.9568 35.4754 31.2801 34.5352 31.0012 33.4895C30.7898 32.7103 30.8018 31.8759 31.0651 31.0778L29.1083 29.9444C28.9958 30.0816 28.8746 30.2127 28.7501 30.3373L28.7441 30.3434C27.9613 31.1323 26.9369 31.6807 25.7965 31.8632V34.1331C26.6094 34.3037 27.3368 34.7118 27.907 35.2843L27.9101 35.2903C28.6743 36.054 29.1475 37.1179 29.1475 38.2876C29.1475 39.4534 28.6743 40.5112 27.9101 41.2789L27.907 41.2908C27.1373 42.0581 26.0819 42.5333 24.9167 42.5333C23.7577 42.5333 22.6992 42.0581 21.9316 41.2908H21.9285V41.2789C21.1634 40.5112 20.6891 39.4534 20.6891 38.2876C20.6891 37.1179 21.1634 36.054 21.9285 35.2903V35.2843H21.9316C22.5012 34.7118 23.2302 34.3037 24.0402 34.1331V31.8632C22.8997 31.6807 21.8773 31.1323 21.0956 30.3434L21.0876 30.3373C20.1114 29.3537 19.5 27.9984 19.5 26.4967C19.5 24.9981 20.1114 23.6425 21.0876 22.659H21.0956C21.8773 21.8671 22.8997 21.3187 24.0402 21.1301V18.8698C23.2302 18.6933 22.5012 18.2852 21.9316 17.7156H21.9285V17.7096C21.1634 16.9388 20.6892 15.8821 20.6892 14.7122C20.6892 13.5485 21.1634 12.4825 21.9285 11.715L21.9316 11.7119C22.6993 10.9415 23.7578 10.4667 24.9168 10.4667C26.0819 10.4667 27.1373 10.9415 27.907 11.7119V11.715H27.9101C28.6743 12.4825 29.1475 13.5485 29.1475 14.7122C29.1475 15.8821 28.6743 16.9388 27.9101 17.7096L27.907 17.7156C27.3369 18.2852 26.6094 18.6933 25.7965 18.8698V21.1301ZM36.7873 19.6224L36.7709 19.5976C36.5011 19.1412 36.0705 18.8365 35.5942 18.7052C35.1024 18.5742 34.5728 18.6291 34.1016 18.9005H34.1046C33.6343 19.1684 33.3199 19.6068 33.1882 20.0975C33.059 20.5848 33.1154 21.1235 33.3857 21.5927L33.3947 21.6048C33.6655 22.0678 34.0965 22.3785 34.5779 22.5036C35.0611 22.6408 35.6002 22.5829 36.0644 22.3114L36.0896 22.2993C36.5467 22.0254 36.8513 21.5927 36.9783 21.1175C37.1079 20.6272 37.0561 20.0914 36.7873 19.6224" fill="#231F20"/>
+<path d="M45.4693 20.2862H47.6526V26.978L50.8012 23.4813H53.419L49.6179 27.5323L53.4348 32.6673H50.9349L47.6526 28.0806V32.6673H45.4693V20.2862Z" fill="#231F20"/>
+<path d="M55.9553 28.1139C55.9553 29.2534 56.7715 30.9099 58.7381 30.9099C59.955 30.9099 60.7558 30.2733 61.1711 29.439C61.3886 29.034 61.4887 28.6011 61.5223 28.1506C61.5374 27.7148 61.4555 27.2614 61.2709 26.8589C60.8882 25.9912 60.0387 25.2387 58.722 25.2387C56.9564 25.2387 55.9553 26.6763 55.9553 28.0987V28.1139ZM63.6882 32.6673H61.5038V31.3458C60.9225 32.4146 59.7053 32.9508 58.4216 32.9508C55.4882 32.9508 53.7723 30.6572 53.7723 28.0655C53.7723 25.1716 55.8551 23.1977 58.4216 23.1977C60.088 23.1977 61.1043 24.0844 61.5038 24.8215V23.4813H63.6882V32.6673Z" fill="#231F20"/>
+<path d="M66.1603 25.1716H65.0288V23.4813H66.1603V22.9637C66.1603 20.2343 68.2274 20.0698 69.7947 20.0516V21.7389C69.2436 21.7389 68.3447 21.7389 68.3447 23.0303V23.4813H69.7947V25.1716H68.3447V32.6673H66.1603V25.1716Z" fill="#231F20"/>
+<path d="M71.2794 20.2862H73.4621V26.978L76.6112 23.4813H79.2291L75.428 27.5323L79.2442 32.6673H76.7443L73.4621 28.0806V32.6673H71.2794V20.2862Z" fill="#231F20"/>
+<path d="M81.7653 28.1139C81.7653 29.2534 82.5813 30.9099 84.5482 30.9099C85.7633 30.9099 86.5641 30.2733 86.9802 29.439C87.1983 29.034 87.2988 28.6011 87.3317 28.1506C87.3468 27.7148 87.2648 27.2614 87.08 26.8589C86.6979 25.9912 85.8484 25.2387 84.5321 25.2387C82.7661 25.2387 81.7653 26.6763 81.7653 28.0987V28.1139ZM89.4976 32.6673H87.3139V31.3458C86.7308 32.4146 85.5147 32.9508 84.2316 32.9508C81.2982 32.9508 79.5837 30.6572 79.5837 28.0655C79.5837 25.1716 81.6659 23.1977 84.2316 23.1977C85.8971 23.1977 86.9143 24.0844 87.3139 24.8215V23.4813H89.4976V32.6673Z" fill="#231F20"/>
+</svg>
diff --git a/public/img/features/tooling/action-rocket.svg b/public/img/features/tooling/action-rocket.svg
new file mode 100644
index 0000000..f926f5d
--- /dev/null
+++ b/public/img/features/tooling/action-rocket.svg
@@ -0,0 +1,7 @@
+<svg width="34" height="34" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M25.2771 12.6898C23.0932 12.6898 21.3166 10.9139 21.3166 8.72996C21.3166 6.54607 23.0932 4.77148 25.2771 4.77148C27.461 4.77148 29.2375 6.5474 29.2375 8.73063C29.2375 10.9139 27.461 12.6898 25.2771 12.6898ZM25.2771 6.09076C24.5771 6.09146 23.9061 6.36982 23.4112 6.86474C22.9163 7.35966 22.6379 8.03071 22.6372 8.73063C22.6379 9.43055 22.9163 10.1016 23.4112 10.5965C23.9061 11.0914 24.5771 11.3698 25.2771 11.3705C25.977 11.3698 26.648 11.0914 27.143 10.5965C27.6379 10.1016 27.9162 9.43055 27.9169 8.73063C27.9162 8.03071 27.6379 7.35966 27.143 6.86474C26.648 6.36982 25.977 6.09146 25.2771 6.09076Z" fill="white" stroke="white" stroke-width="0.5"/>
+<path d="M6.77662 23.0713C5.64863 23.5496 4.62283 24.2399 3.75476 25.1045C1.64953 27.2138 0.653577 30.1443 1.10822 32.8962C3.86009 33.3468 6.78929 32.3495 8.89652 30.245C9.76188 29.3773 10.4528 28.3517 10.9318 27.2238" stroke="white" stroke-width="1.7" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M2.95683 16.8621C2.49685 17.2954 2.05887 17.7487 1.64355 18.2207C3.98446 18.8554 6.18968 19.9125 8.15058 21.3399C8.30191 21.0639 8.49056 20.8106 8.71322 20.5879C9.17653 20.1255 9.76602 19.8101 10.4078 19.6813C10.5478 16.9814 11.2984 14.2882 12.6024 11.8057L12.6064 11.7983C10.8354 12.1802 9.12275 12.7951 7.51328 13.6269C5.85388 14.4922 4.32082 15.5807 2.95683 16.8621ZM2.95683 16.8621V16.8621V16.8621Z" stroke="white" stroke-width="1.7" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M14.3229 23.5886C14.1948 24.2325 13.8789 24.824 13.415 25.2886C13.1891 25.5135 12.932 25.7048 12.6517 25.8565C14.0822 27.8144 15.1429 30.0171 15.7815 32.3562C16.2548 31.9429 16.7088 31.5043 17.1428 31.0443C18.4238 29.6809 19.5121 28.1485 20.3773 26.4898C21.2093 24.8813 21.8244 23.1696 22.2066 21.3994C19.7207 22.7027 17.0255 23.4507 14.3229 23.5886V23.5886Z" stroke="white" stroke-width="1.7" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M14.2276 21.9259C14.4076 22.5166 14.3943 23.0539 14.319 23.6092C19.0361 23.3679 23.6472 21.2733 27.147 17.7815C31.6202 13.301 33.7361 7.07331 32.7701 1.22625C26.923 0.26896 20.6987 2.38753 16.2222 6.85998C12.7344 10.3605 10.6438 14.9689 10.4065 19.682C11.0247 19.5587 11.6652 19.614 12.2531 19.8414" stroke="white" stroke-width="1.7" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
+</svg>
diff --git a/public/img/features/tooling/data-dog.jpg b/public/img/features/tooling/data-dog.jpg
new file mode 100644
index 0000000..f3bbefd
--- /dev/null
+++ b/public/img/features/tooling/data-dog.jpg
Binary files differ
diff --git a/public/img/features/tooling/grid-gain.png b/public/img/features/tooling/grid-gain.png
new file mode 100644
index 0000000..094066c
--- /dev/null
+++ b/public/img/features/tooling/grid-gain.png
Binary files differ
diff --git a/public/img/features/tooling/herobg.svg b/public/img/features/tooling/herobg.svg
new file mode 100644
index 0000000..66abb06
--- /dev/null
+++ b/public/img/features/tooling/herobg.svg
@@ -0,0 +1,66 @@
+<svg width="756" height="574" viewBox="0 0 756 574" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M0.684204 231.096V190.433L33.1362 169.591L8.62835 151.908L22.8988 117.783L47.7169 106.304L38.4101 94.5158L63.8486 68.4568L91.4588 55.1171L90.2179 53.1006L199.728 4.08485L206.279 3.12762V13.6265L235.479 0.174805L268.944 5.42425V33.968L189.546 76.6197L172.485 109.757C122.353 154.902 138.255 224.588 152.472 253.788C183.181 311.269 231.729 325.83 252.165 325.925L282.954 394.426L280.243 391.715L257.201 410.014L221.959 420.518L216.199 403.914L192.817 420.518L154.526 414.419V385.955L123.351 403.914L87.0933 382.905L100.309 352.747L87.0933 342.242L67.4394 360.201L38.6364 329.026L56.9348 309.373L47.4468 290.396L22.71 295.479L9.15568 256.511L32.1981 245.328L29.8261 231.096H0.684204Z" fill="#0070CC"/>
+<path d="M322.779 62.7778L332.84 71.7823" stroke="white" stroke-linejoin="round"/>
+<path d="M309.441 369.435L382.704 325.607L377.716 317.96" stroke="white" stroke-linejoin="round"/>
+<path d="M282.053 393.45L354.458 348.255L382.909 325.632" stroke="white" stroke-linejoin="round"/>
+<path d="M280.302 391.925L257.99 409.864" stroke="white" stroke-linejoin="round"/>
+<path d="M215.46 405.738L192.518 420.035" stroke="white" stroke-linejoin="round"/>
+<path d="M155.279 385.456L124.357 404.075" stroke="white" stroke-linejoin="round"/>
+<path d="M426.211 189.378L426.211 228.112L351.003 274.694" stroke="white" stroke-linejoin="round"/>
+<path d="M345.555 274.656L313.215 295.313" stroke="white" stroke-linejoin="round"/>
+<path d="M389.598 250.547L412.76 266.391L340.121 311.286" stroke="white" stroke-linejoin="round"/>
+<path d="M413.204 266.295L400.987 303.72L327.929 346.671" stroke="white" stroke-linejoin="round"/>
+<path d="M100.252 84.0864L90.6992 52.7738L127.319 43.2209L135.28 73.472H150.671V38.9751L189.413 43.2209V77.187L209.581 84.0864L223.91 54.8967L257.876 77.187L246.358 105.799L261.061 117.522L281.759 99.4773L309.356 129.198L287.597 152.549L300.865 169.532L330.054 165.287L344.813 203.799L314.663 211.459V235.342H350.752V274.615H314.663L312.786 295.871L340.387 311.6L327.922 346.324L300.865 329.279L288.153 344.247L309.356 369.614L281.759 393.497L261.061 369.614L244.078 380.229L257.876 409.949L221.787 420.564L209.581 389.251H192.067V420.564L154.386 415.787V382.882L135.607 375.705L123.604 404.642L87.5148 382.882L100.752 352.494L87.5148 342.017L67.3474 360.592L38.1578 329.279L57.2637 309.643L48.2415 290.006L22.7669 296.375L8.43741 257.101L33.3813 251.003L30.7277 231.096H1.00731V190.761H30.7277L33.3813 169.532L8.43741 152.549L22.7669 117.522L48.2415 135.044L58.8559 119.114L38.1578 94.7008L62.5709 68.6955L84.8612 94.7008L100.252 84.0864Z" stroke="white" stroke-linejoin="round"/>
+<path d="M0.976468 190.766L33.3445 169.745" stroke="white" stroke-linejoin="round"/>
+<path d="M22.7093 117.562L47.4188 105.931" stroke="white" stroke-linejoin="round"/>
+<path d="M62.5362 68.7391L91.0196 54.683" stroke="white" stroke-linejoin="round"/>
+<path d="M91.0196 52.7872L200.559 3.81966L206.949 3.07092L126.86 43.464" stroke="white" stroke-linejoin="round"/>
+<path d="M150.528 39.1388L235.24 0.623413L268.414 5.21786L189.168 43.1866" stroke="white" stroke-linejoin="round"/>
+<path d="M268.403 5.30029V34.1945L223.844 54.927" stroke="white" stroke-linejoin="round"/>
+<path d="M189.536 76.7269L220.147 62.059" stroke="white" stroke-linejoin="round"/>
+<path d="M268.403 34.2111L301.14 17.2047L332.176 35.6992L257.986 76.9396" stroke="white" stroke-linejoin="round"/>
+<path d="M332.176 35.6991L322.824 62.7011L246.496 105.525" stroke="white" stroke-linejoin="round"/>
+<path d="M281.556 99.6111L358.88 58.2081L385.613 88.1402L309.755 129.268" stroke="white" stroke-linejoin="round"/>
+<path d="M385.999 87.9083L365.963 109.39L288.277 152.802" stroke="white" stroke-linejoin="round"/>
+<path d="M365.963 109.618L377.387 127.897L300.854 169.371" stroke="white" stroke-linejoin="round"/>
+<path d="M376.818 128.003L403.799 124.54L330.057 165.315" stroke="white" stroke-linejoin="round"/>
+<path d="M403.207 124.241L418.059 161.028L345.171 203.755" stroke="white" stroke-linejoin="round"/>
+<path d="M392.239 176.565V188.675L315.01 235.287" stroke="white" stroke-linejoin="round"/>
+<path d="M350.426 235.287L425.827 189.589L392.468 188.447" stroke="white" stroke-linejoin="round"/>
+<path d="M8.2194 257.151L32.3628 245.829" stroke="white" stroke-linejoin="round"/>
+<path d="M206.783 3.32532V13.3721" stroke="white"/>
+<path d="M283.31 229.735C289.954 296.535 247.389 350.576 188.38 350.576C129.372 350.576 76.0569 296.535 69.4129 229.735C62.7689 162.935 105.334 108.893 164.342 108.893C223.351 108.893 276.666 162.935 283.31 229.735Z" stroke="white"/>
+<path d="M170.669 109.61C147.964 131.832 135.398 166.25 139.24 204.886C145.599 268.815 194.589 321.198 250.605 325.884" stroke="white"/>
+<path d="M329.789 383.626V342.963L362.241 322.12L337.733 304.438L352.003 270.313L376.821 258.834L367.515 247.046L392.953 220.987L420.563 207.647L419.322 205.631L528.832 156.615L535.383 155.658V166.156L564.583 152.705L598.048 157.954V186.498L518.651 229.15L501.59 262.287C451.458 307.432 467.359 377.118 481.577 406.318C512.286 463.799 560.834 478.36 581.269 478.455L612.058 546.956L609.347 544.245L586.305 562.544L551.064 573.048L545.303 556.444L521.922 573.048L483.631 566.949V538.485L452.456 556.444L416.198 535.435L429.413 505.276L416.198 494.772L396.544 512.731L367.741 481.556L386.039 461.902L376.551 442.926L351.815 448.009L338.26 409.04L361.303 397.858L358.931 383.626H329.789Z" fill="#0070CC"/>
+<path d="M651.883 215.308L661.944 224.312" stroke="white" stroke-linejoin="round"/>
+<path d="M638.546 521.965L711.808 478.137L706.821 470.49" stroke="white" stroke-linejoin="round"/>
+<path d="M611.157 545.98L683.562 500.785L712.014 478.162" stroke="white" stroke-linejoin="round"/>
+<path d="M609.406 544.455L587.095 562.394" stroke="white" stroke-linejoin="round"/>
+<path d="M544.565 558.268L521.623 572.565" stroke="white" stroke-linejoin="round"/>
+<path d="M484.383 537.986L453.462 556.605" stroke="white" stroke-linejoin="round"/>
+<path d="M755.316 341.908L755.316 380.642L680.107 427.224" stroke="white" stroke-linejoin="round"/>
+<path d="M674.66 427.186L642.319 447.843" stroke="white" stroke-linejoin="round"/>
+<path d="M718.702 403.077L741.865 418.921L669.225 463.816" stroke="white" stroke-linejoin="round"/>
+<path d="M742.308 418.825L730.092 456.25L657.034 499.201" stroke="white" stroke-linejoin="round"/>
+<path d="M429.357 236.616L419.804 205.304L456.423 195.751L464.384 226.002H479.775V191.505L518.518 195.751V229.717L538.685 236.616L553.015 207.427L586.981 229.717L575.463 258.329L590.165 270.052L610.863 252.007L638.461 281.728L616.701 305.079L629.969 322.062L659.159 317.817L673.917 356.329L643.768 363.989V387.872H679.857V427.145H643.768L641.891 448.401L669.492 464.13L657.027 498.854L629.969 481.809L617.258 496.776L638.461 522.144L610.863 546.027L590.165 522.144L573.182 532.759L586.981 562.479L550.892 573.093L538.685 541.781H521.171V573.093L483.49 568.317V535.412L464.712 528.235L452.708 557.172L416.619 535.412L429.857 505.024L416.619 494.547L396.452 513.122L367.262 481.809L386.368 462.173L377.346 442.536L351.871 448.905L337.542 409.631L362.486 403.533L359.832 383.626H330.112V343.291H359.832L362.486 322.062L337.542 305.079L351.871 270.052L377.346 287.574L387.96 271.644L367.262 247.231L391.675 221.225L413.966 247.231L429.357 236.616Z" stroke="white" stroke-linejoin="round"/>
+<path d="M330.081 343.296L362.449 322.275" stroke="white" stroke-linejoin="round"/>
+<path d="M351.814 270.091L376.523 258.461" stroke="white" stroke-linejoin="round"/>
+<path d="M391.641 221.269L420.124 207.213" stroke="white" stroke-linejoin="round"/>
+<path d="M420.124 205.317L529.664 156.349L536.054 155.601L455.965 195.994" stroke="white" stroke-linejoin="round"/>
+<path d="M479.633 191.669L564.345 153.153L597.519 157.748L518.273 195.716" stroke="white" stroke-linejoin="round"/>
+<path d="M597.507 157.83V186.724L552.948 207.457" stroke="white" stroke-linejoin="round"/>
+<path d="M518.64 229.257L549.252 214.589" stroke="white" stroke-linejoin="round"/>
+<path d="M597.507 186.741L630.244 169.735L661.281 188.229L587.091 229.47" stroke="white" stroke-linejoin="round"/>
+<path d="M661.281 188.229L651.929 215.231L575.6 258.055" stroke="white" stroke-linejoin="round"/>
+<path d="M610.661 252.141L687.985 210.738L714.718 240.67L638.859 281.798" stroke="white" stroke-linejoin="round"/>
+<path d="M715.104 240.438L695.068 261.919L617.381 305.332" stroke="white" stroke-linejoin="round"/>
+<path d="M695.067 262.148L706.492 280.427L629.958 321.901" stroke="white" stroke-linejoin="round"/>
+<path d="M705.922 280.533L732.904 277.069L659.161 317.845" stroke="white" stroke-linejoin="round"/>
+<path d="M732.312 276.771L747.163 313.558L674.275 356.285" stroke="white" stroke-linejoin="round"/>
+<path d="M721.344 329.095V341.205L644.115 387.817" stroke="white" stroke-linejoin="round"/>
+<path d="M679.531 387.817L754.932 342.119L721.572 340.977" stroke="white" stroke-linejoin="round"/>
+<path d="M337.324 409.681L361.467 398.358" stroke="white" stroke-linejoin="round"/>
+<path d="M535.887 155.855V165.902" stroke="white"/>
+<path d="M612.414 382.264C619.058 449.064 576.493 503.106 517.485 503.106C458.476 503.106 405.161 449.064 398.517 382.264C391.873 315.464 434.438 261.423 493.447 261.423C552.455 261.423 605.77 315.464 612.414 382.264Z" stroke="white"/>
+<path d="M499.773 262.14C477.069 284.362 464.502 318.78 468.345 357.416C474.704 421.345 523.694 473.727 579.71 478.414" stroke="white"/>
+</svg>
diff --git a/public/img/features/tooling/icon-apache.svg b/public/img/features/tooling/icon-apache.svg
new file mode 100644
index 0000000..9e33d5b
--- /dev/null
+++ b/public/img/features/tooling/icon-apache.svg
@@ -0,0 +1,5 @@
+<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M17.6863 11.1356C17.6863 11.1356 1.04937 21.2811 16.7287 31.3549C19.7449 33.317 30.6846 38.7726 30.3734 43.8215C30.3734 43.8215 37.0042 34.0109 27.3093 27.8375C17.3511 21.5204 14.8616 14.7727 17.6863 11.1356Z" fill="#ED1C24"/>
+<path d="M11.8933 30.5174C11.8933 30.5174 5.95672 39.5144 17.6384 41.3569C18.7875 41.5005 27.2376 42.3858 29.4399 45.1615C29.4399 45.1615 29.2484 40.3758 22.3542 37.5523C15.484 34.7288 12.6593 34.0349 11.8933 30.5174Z" fill="#ED1C24"/>
+<path d="M34.8739 21.0658C27.7404 13.6002 25.7535 8.98205 28.8176 3C28.8176 3 7.53675 11.1834 28.5543 25.7079C36.0708 30.9003 34.826 36.2123 34.826 36.4038C35.999 35.1834 42.0074 28.5314 34.8739 21.0658Z" fill="#ED1C24"/>
+</svg>
diff --git a/public/img/features/tooling/icon-datadog.svg b/public/img/features/tooling/icon-datadog.svg
new file mode 100644
index 0000000..1146bd1
--- /dev/null
+++ b/public/img/features/tooling/icon-datadog.svg
@@ -0,0 +1,10 @@
+<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g clip-path="url(#clip0_1:331)">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M38.8659 33.2333L34.734 30.5416L31.2871 36.228L27.2782 35.0704L23.7484 40.3913L23.9293 42.0662L43.1213 38.5737L42.0066 26.7307L38.8659 33.2333ZM20.9679 28.1272L24.0471 27.709C24.5453 27.9301 24.8921 28.0143 25.4895 28.1644C26.4198 28.4039 27.4969 28.6336 29.0919 27.8396C29.4631 27.6581 30.2362 26.9598 30.5488 26.5617L43.1648 24.3013L44.4518 39.685L22.8384 43.5321L20.9679 28.1272ZM44.4031 22.584L43.1578 22.8183L40.7654 -1.59424L0 3.07426L5.02216 43.3253L9.79376 42.6413C9.4127 42.104 8.81937 41.4539 7.80612 40.6216C6.4008 39.4685 6.89785 37.51 7.72666 36.2733C8.82343 34.1836 14.4743 31.528 14.1541 28.1879C14.0393 26.9735 13.8438 25.3925 12.7024 24.3093C12.6595 24.759 12.7366 25.1921 12.7366 25.1921C12.7366 25.1921 12.268 24.6015 12.0343 23.7961C11.8023 23.4873 11.6202 23.3888 11.3737 22.9764C11.1979 23.4535 11.2211 24.0069 11.2211 24.0069C11.2211 24.0069 10.8377 23.1121 10.7757 22.3572C10.5483 22.6951 10.4909 23.3373 10.4909 23.3373C10.4909 23.3373 9.99269 21.927 10.1064 21.1674C9.87902 20.5064 9.20506 19.1946 9.39588 16.2131C10.64 17.074 13.3787 16.8695 14.4459 15.316C14.8003 14.8016 15.0427 13.3971 14.269 10.6298C13.7719 8.85518 12.5412 6.21275 12.0615 5.21031L12.0041 5.25098C12.257 6.05866 12.7784 7.75192 12.9785 8.57277C13.584 11.0628 13.7464 11.9295 13.4622 13.0774C13.2204 14.0753 12.6404 14.7283 11.1701 15.4581C9.6998 16.1902 7.7487 14.4087 7.62516 14.3102C6.19664 13.1863 5.09176 11.3527 4.96822 10.4619C4.84004 9.487 5.53719 8.90158 5.88867 8.10421C5.38581 8.24627 4.82496 8.49831 4.82496 8.49831C4.82496 8.49831 5.49427 7.81436 6.3196 7.22263C6.66122 6.99923 6.86189 6.85717 7.22207 6.5616C6.70066 6.55301 6.27726 6.5679 6.27726 6.5679C6.27726 6.5679 7.14667 6.10391 8.04798 5.76595C7.38853 5.73731 6.7575 5.76137 6.7575 5.76137C6.7575 5.76137 8.69757 4.90443 10.2299 4.27547C11.2838 3.84871 12.3132 3.97474 12.8915 4.80074C13.6507 5.8828 14.4482 6.47052 16.1383 6.83483C17.1759 6.38059 17.4914 6.14687 18.7952 5.79631C19.9431 4.54985 20.8444 4.38831 20.8444 4.38831C20.8444 4.38831 20.3972 4.7933 20.2777 5.4297C20.9285 4.92333 21.6418 4.50059 21.6418 4.50059C21.6418 4.50059 21.3658 4.83741 21.1083 5.37242L21.168 5.46006C21.9272 5.0104 22.8198 4.65582 22.8198 4.65582C22.8198 4.65582 22.5646 4.97431 22.2653 5.38674C22.8378 5.38216 23.9989 5.4108 24.4496 5.46121C27.11 5.51906 27.6622 2.65495 28.683 2.29579C29.9613 1.84498 30.5326 1.57232 32.711 3.68546C34.5803 5.49959 36.0407 8.74691 35.3158 9.4744C34.7079 10.0782 33.5085 9.23897 32.1792 7.60242C31.4768 6.73574 30.9455 5.71153 30.6967 4.40951C30.4867 3.31083 29.6695 2.67328 29.6695 2.67328C29.6695 2.67328 30.144 3.71467 30.144 4.63463C30.144 5.13699 30.2078 7.01527 31.0232 8.06927C30.9426 8.22335 30.9049 8.83169 30.8156 8.94797C29.8667 7.81551 27.8292 7.00496 27.4969 6.7661C28.6215 7.67631 31.2065 9.76711 32.1995 11.7708C33.1385 13.6657 32.5852 15.4025 33.0602 15.8522C33.1953 15.9811 35.0797 18.2999 35.4422 19.465C36.0744 21.4956 35.4799 23.6294 34.6522 24.9532L32.341 25.3089C32.0028 25.2161 31.7749 25.1697 31.4716 24.9962C31.6386 24.704 31.9709 23.9754 31.9744 23.8253L31.8439 23.599C31.1247 24.6055 29.9195 25.5827 28.9184 26.1441C27.6082 26.8773 26.0979 26.7645 25.1148 26.4637C22.3245 25.6137 19.6861 23.7514 19.0499 23.2622C19.0499 23.2622 19.0301 23.6529 19.1502 23.7405C19.8537 24.5241 21.4655 25.9419 23.0234 26.93L19.7024 27.2909L21.2724 39.3648C20.5764 39.4633 20.4679 39.5115 19.7058 39.6186C19.0342 37.2752 17.7495 35.7451 16.3454 34.8538C15.1071 34.0679 13.399 33.8909 11.764 34.2106L11.659 34.3309C12.7958 34.214 14.1379 34.3767 15.5165 35.2388C16.8697 36.0837 17.9601 38.2661 18.3614 39.5802C18.8753 41.2597 19.2308 43.0561 17.8475 44.9601C16.8633 46.3137 13.99 47.0618 11.6689 45.4436C12.2889 46.4283 13.127 47.2337 14.2551 47.3855C15.9301 47.61 17.5198 47.323 18.6143 46.2135C19.5487 45.2649 20.044 43.2812 19.9135 41.1921L21.3919 40.9802L21.9255 44.7299L46.4 41.8194L44.4031 22.584ZM29.5129 12.4009C29.4445 12.555 29.3372 12.6559 29.4984 13.1571L29.5083 13.1857L29.5338 13.2504L29.6011 13.4005C29.8917 13.9871 30.2107 14.5404 30.7437 14.8228C30.8817 14.7999 31.0244 14.7845 31.1723 14.777C31.6728 14.7552 31.9889 14.8337 32.1896 14.9403C32.2076 14.8417 32.2116 14.6974 32.2006 14.4849C32.1618 13.7419 32.3497 12.4783 30.9037 11.8132C30.358 11.5629 29.5924 11.6402 29.3372 11.9524C29.3836 11.9582 29.4254 11.9679 29.4578 11.9788C29.8435 12.1122 29.5819 12.2434 29.5129 12.4009ZM33.5653 19.3332C33.3757 19.2301 32.4895 19.2708 31.8665 19.3441C30.6799 19.4822 29.3987 19.8889 29.118 20.1054C28.6076 20.4949 28.8396 21.1743 29.2166 21.4532C30.2739 22.2334 31.2007 22.7564 32.1792 22.6292C32.78 22.5513 33.3096 21.6119 33.6848 20.7596C33.9418 20.1724 33.9418 19.5389 33.5653 19.3332ZM23.0594 13.3209C23.394 13.007 21.3925 12.5946 19.8392 13.6405C18.6937 14.4121 18.6572 16.0664 19.754 17.0041C19.8636 17.0969 19.9541 17.1628 20.0387 17.2167C20.3589 17.0677 20.7237 16.9171 21.1436 16.7825C21.853 16.555 22.4428 16.4376 22.9277 16.3752C23.1597 16.1191 23.4294 15.6683 23.3621 14.852C23.2705 13.7448 22.4208 13.9206 23.0594 13.3209Z" fill="#632CA6"/>
+</g>
+<defs>
+<clipPath id="clip0_1:331">
+<rect width="48" height="48" fill="white"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/public/img/features/tooling/icon-gridgain.svg b/public/img/features/tooling/icon-gridgain.svg
new file mode 100644
index 0000000..68aac10
--- /dev/null
+++ b/public/img/features/tooling/icon-gridgain.svg
@@ -0,0 +1,3 @@
+<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M40.0186 0L36.7859 1.78876L33.8202 3.57751C32.9257 4.11414 32.0297 4.64182 31.0808 5.18739L28.536 6.69888C28.6084 7.09242 28.6793 7.49488 28.7427 7.91523C28.886 8.80961 28.9931 9.77554 29.073 10.7146C29.073 11.0432 29.1062 11.379 29.1394 11.7197C29.1575 11.9168 29.1771 12.1156 29.1907 12.3156C31.1879 11.3139 33.2123 10.339 35.2367 9.38202C37.6639 8.23722 40.1001 7.11031 42.5453 6.01916C42.1682 4.89224 41.7564 3.79217 41.2903 2.70102C40.9056 1.80664 40.4757 0.912266 40.0186 0.0178876V0ZM25.151 8.73436L25.16 8.72912H25.151V8.73436ZM25.151 8.73436L23.0104 10.0707L20.986 11.3675C19.7385 12.1725 18.5016 12.9864 17.2782 13.8092C17.2782 14.1848 17.2782 14.5605 17.1967 14.954C17.1454 15.2025 17.1304 15.4615 17.1153 15.7269V15.727C17.1062 15.8819 17.0972 16.039 17.0806 16.1972C16.9735 17.0916 16.8573 18.0486 16.714 18.9787C18.0566 18.2006 19.4006 17.4315 20.7703 16.6891C22.2939 15.8364 23.8311 15.0106 25.3833 14.2117V12.6554C25.3833 12.1635 25.3833 11.6895 25.338 11.2334C25.338 10.4621 25.2566 9.69837 25.1736 8.93526V8.93521L25.151 8.73436ZM8.78663 19.8373C10.7691 18.3646 12.7754 16.9246 14.8058 15.5175L14.8148 15.5084C14.7696 15.8751 14.7243 16.2419 14.6806 16.6354L14.67 16.7185C14.6293 17.0868 14.5855 17.4693 14.5192 17.8517C14.4468 18.2632 14.3759 18.6925 14.3035 19.1576C14.2326 19.6227 14.1511 20.0877 14.0531 20.5706L12.3334 21.635L10.6944 22.6635C9.67331 23.3164 8.65222 23.9872 7.64018 24.6669C7.76554 24.2287 7.88199 23.7636 7.98939 23.3345L7.98954 23.3343C8.09695 22.9051 8.19546 22.4938 8.29396 22.0824V22.0821C8.47317 21.3398 8.63443 20.5886 8.78663 19.8373ZM11.8944 24.3718L13.6865 23.3701L13.6774 23.3969C13.5522 23.9157 13.418 24.4522 13.2747 24.9979C12.9609 26.1784 12.6381 27.3589 12.2972 28.5306C12.1192 29.1657 11.9306 29.8096 11.733 30.4714C10.5153 31.0081 9.1986 31.6162 8.09696 32.1439C6.99531 32.6715 5.91145 33.226 4.82776 33.7896C5.04272 33.1634 5.24878 32.5732 5.45469 32.0009C5.66075 31.4284 5.85776 30.8739 6.03697 30.3284C6.38618 29.3088 6.72664 28.2891 7.04901 27.2695C8.64936 26.2679 10.2645 25.302 11.8944 24.3718ZM10.7751 33.888C9.53001 34.353 8.29396 34.8539 7.07586 35.3726C5.85776 35.8914 4.85461 36.3476 3.76187 36.8752C2.86628 39.3078 1.97054 41.7227 1.0748 44.1375C0.85818 44.7068 0.634323 45.276 0.403223 45.8637L0.403074 45.8638C0.271081 46.1995 0.13682 46.5411 0 46.8922C0.546373 46.7223 1.09276 46.5703 1.64803 46.4182C2.83928 46.1052 4.03053 45.8279 5.23083 45.5953C5.87571 45.4701 6.52948 45.3538 7.20136 45.2466C7.55963 44.1912 7.90884 43.1359 8.24931 42.0804C8.58057 41.0788 8.89418 40.1038 9.1897 39.1469C9.48521 38.1899 9.76292 37.3045 10.0316 36.4637C10.263 35.7398 10.4811 34.9961 10.6915 34.2781L10.6917 34.2778V34.2776L10.7929 33.9326L10.7751 33.888ZM24.4435 29.6933L24.4224 29.6983L24.4254 29.6844L24.4435 29.6933ZM24.4224 29.6983C24.2715 30.7223 24.1116 31.7465 23.9321 32.8595C23.7843 33.7884 23.6229 34.7113 23.4494 35.7049L23.3408 36.3207C23.1266 37.555 22.9018 38.7892 22.6424 40.1307C22.3829 41.4723 22.1053 42.8675 21.8097 44.2985C21.419 44.2985 21.0313 44.2965 20.6482 44.2944C19.8969 44.2905 19.1653 44.2867 18.4774 44.2985C17.4396 44.3164 16.3731 44.3433 15.4771 44.3879C14.581 44.4327 13.6412 44.4863 12.7905 44.5579C11.9397 44.6294 11.116 44.7009 10.3093 44.7993C11.002 42.6529 11.647 40.5004 12.2444 38.3419C12.7724 36.4995 13.2747 34.6571 13.7664 32.8058C14.5282 32.5374 15.281 32.287 16.1046 32.0277C16.9282 31.7682 17.7519 31.5089 18.6479 31.2585C20.5637 30.6999 22.4885 30.1798 24.4224 29.6983ZM35.6576 12.1456C38.2431 11.0485 40.8422 9.98125 43.458 8.94378H43.4942C43.9603 10.6431 44.3811 12.3514 44.7296 14.0775C45.1776 16.2419 45.5638 18.4153 45.8851 20.5975C44.1217 20.9821 42.3839 21.3846 40.8422 21.7423C39.3021 22.1001 37.8328 22.4579 36.4179 22.8066C33.9289 23.4327 31.4504 24.0975 28.984 24.801C29.0338 24.1439 29.0745 23.4479 29.1138 22.7967V22.7959V22.7947C29.1304 22.5074 29.147 22.2287 29.1635 21.966L29.1786 21.7315V21.7314V21.7312C29.2284 20.9429 29.2797 20.1221 29.2797 19.3901V17.0558V14.945C30.1908 14.5264 31.0582 14.1441 32.0055 13.7262L32.3253 13.5856C33.2485 13.1785 34.1974 12.7714 35.1734 12.353L35.6576 12.1456ZM41.1213 26.3842C42.8138 26.098 44.6044 25.8207 46.4945 25.5435H46.5126C46.674 26.9387 46.8173 28.2624 46.9697 29.908C47.1221 31.5536 47.2563 33.1993 47.3815 34.845C47.5128 36.7113 47.6289 38.5804 47.7315 40.4527C47.8265 42.4919 47.9155 44.6234 48 46.8475C45.5985 46.4897 43.2437 46.1587 41.2465 45.8994C39.2493 45.6401 37.2686 45.4164 35.5671 45.2377C33.8655 45.0588 32.182 44.8978 30.7128 44.7815C29.2435 44.6652 27.8466 44.5668 26.5026 44.4953C26.9687 41.6244 27.3986 38.7355 27.7833 35.8466C28.094 33.4974 28.3716 31.1303 28.6175 28.7452C29.7986 28.4859 30.9632 28.2444 32.2891 27.9761C33.6151 27.7079 34.932 27.4574 36.4269 27.1891C37.6639 26.9672 38.9084 26.7575 40.2585 26.5296C40.5405 26.4821 40.8287 26.4336 41.1213 26.3842Z" fill="#BF0811"/>
+</svg>
diff --git a/public/img/features/tooling/icon-zabbix.svg b/public/img/features/tooling/icon-zabbix.svg
new file mode 100644
index 0000000..189ee1d
--- /dev/null
+++ b/public/img/features/tooling/icon-zabbix.svg
@@ -0,0 +1,4 @@
+<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M0 0H32V32H0V0Z" fill="#D40000"/>
+<path d="M7.24536 4.87964H24.983V7.17411L10.7066 24.5884H25.3318V27.1205H6.89648V24.826L21.1729 7.41179H7.24536V4.87964Z" fill="white"/>
+</svg>
diff --git a/public/img/features/tooling/placeholder.png b/public/img/features/tooling/placeholder.png
new file mode 100644
index 0000000..cc96d01
--- /dev/null
+++ b/public/img/features/tooling/placeholder.png
Binary files differ
diff --git a/public/img/features/tooling/visor-command-line.png b/public/img/features/tooling/visor-command-line.png
new file mode 100644
index 0000000..c9c6c40
--- /dev/null
+++ b/public/img/features/tooling/visor-command-line.png
Binary files differ
diff --git a/public/img/features/tooling/zabbix.png b/public/img/features/tooling/zabbix.png
new file mode 100644
index 0000000..0c40bf5
--- /dev/null
+++ b/public/img/features/tooling/zabbix.png
Binary files differ
diff --git a/public/img/icon-arrow-white.svg b/public/img/icon-arrow-white.svg
new file mode 100644
index 0000000..a893319
--- /dev/null
+++ b/public/img/icon-arrow-white.svg
@@ -0,0 +1,4 @@
+<svg width="14" height="13" viewBox="0 0 14 13" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M1 6.49976H13" stroke="white" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M6.99994 1L12.9999 6.5L6.99994 12" stroke="white" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"/>
+</svg>
diff --git a/public/img/icon-email+.svg b/public/img/icon-email+.svg
new file mode 100644
index 0000000..e219f0b
--- /dev/null
+++ b/public/img/icon-email+.svg
@@ -0,0 +1,6 @@
+<svg width="25" height="18" viewBox="0 0 25 18" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="0.9599" y="0.6875" width="18" height="13" rx="3.5" stroke="#2D2D2D"/>
+<path d="M1.4419 3.21973L8.85146 8.05504C9.51094 8.4854 10.3616 8.48871 11.0244 8.06351L18.5749 3.21973" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<circle cx="19.9877" cy="12.6875" r="4.5" fill="#0070CC"/>
+<path d="M19.9877 10.1875V15.1875M22.4877 12.6875L17.4877 12.6875" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+</svg>
diff --git a/public/img/icon-email-.svg b/public/img/icon-email-.svg
new file mode 100644
index 0000000..68806cf
--- /dev/null
+++ b/public/img/icon-email-.svg
@@ -0,0 +1,6 @@
+<svg width="24" height="19" viewBox="0 0 24 19" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="0.952271" y="0.6875" width="18" height="13" rx="3.5" stroke="#2D2D2D"/>
+<path d="M1.43427 3.21973L8.84383 8.05504C9.50331 8.4854 10.3539 8.48871 11.0168 8.06351L18.5673 3.21973" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<circle cx="19.1541" cy="13.6299" r="4.5" fill="#F94239"/>
+<path d="M16.722 13.4805H21.3053" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+</svg>
diff --git a/public/img/icon-folder.svg b/public/img/icon-folder.svg
new file mode 100644
index 0000000..fd1d6af
--- /dev/null
+++ b/public/img/icon-folder.svg
@@ -0,0 +1,12 @@
+<svg width="23" height="17" viewBox="0 0 23 17" fill="none" xmlns="http://www.w3.org/2000/svg">
+<mask id="path-1-inside-1" fill="white">
+<path d="M2.74323 4.43066C2.74323 2.77381 4.08637 1.43066 5.74323 1.43066H18.748C20.4048 1.43066 21.748 2.77381 21.748 4.43066V12.8592C21.748 14.5161 20.4048 15.8592 18.748 15.8592H5.74322C4.08637 15.8592 2.74323 14.5161 2.74323 12.8592V4.43066Z"/>
+</mask>
+<path d="M2.74323 4.43066C2.74323 2.77381 4.08637 1.43066 5.74323 1.43066H18.748C20.4048 1.43066 21.748 2.77381 21.748 4.43066V12.8592C21.748 14.5161 20.4048 15.8592 18.748 15.8592H5.74322C4.08637 15.8592 2.74323 14.5161 2.74323 12.8592V4.43066Z" fill="white"/>
+<path d="M5.74323 2.43066H18.748V0.430664H5.74323V2.43066ZM20.748 4.43066V12.8592H22.748V4.43066H20.748ZM18.748 14.8592H5.74322V16.8592H18.748V14.8592ZM3.74323 12.8592V4.43066H1.74323V12.8592H3.74323ZM5.74322 14.8592C4.63865 14.8592 3.74323 13.9638 3.74323 12.8592H1.74323C1.74323 15.0684 3.53408 16.8592 5.74322 16.8592V14.8592ZM20.748 12.8592C20.748 13.9638 19.8525 14.8592 18.748 14.8592V16.8592C20.9571 16.8592 22.748 15.0684 22.748 12.8592H20.748ZM18.748 2.43066C19.8525 2.43066 20.748 3.32609 20.748 4.43066H22.748C22.748 2.22153 20.9571 0.430664 18.748 0.430664V2.43066ZM5.74323 0.430664C3.53409 0.430664 1.74323 2.22152 1.74323 4.43066H3.74323C3.74323 3.32609 4.63865 2.43066 5.74323 2.43066V0.430664Z" fill="#2D2D2D" mask="url(#path-1-inside-1)"/>
+<mask id="path-3-inside-2" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M2.73315 0.220703C1.62858 0.220703 0.733154 1.11614 0.733154 2.22071V7.60002V13.2447V13.9408C0.733154 15.5977 2.0763 16.9408 3.73315 16.9408H19.8152C21.472 16.9408 22.8152 15.5977 22.8152 13.9408V7.60002C22.8152 5.94316 21.472 4.60002 19.8152 4.60002H13.8018L11.6227 1.15219C11.2562 0.572297 10.6181 0.220703 9.93205 0.220703H2.73315Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M2.73315 0.220703C1.62858 0.220703 0.733154 1.11614 0.733154 2.22071V7.60002V13.2447V13.9408C0.733154 15.5977 2.0763 16.9408 3.73315 16.9408H19.8152C21.472 16.9408 22.8152 15.5977 22.8152 13.9408V7.60002C22.8152 5.94316 21.472 4.60002 19.8152 4.60002H13.8018L11.6227 1.15219C11.2562 0.572297 10.6181 0.220703 9.93205 0.220703H2.73315Z" fill="white"/>
+<path d="M13.8018 4.60002L12.9564 5.13427L13.2508 5.60002H13.8018V4.60002ZM11.6227 1.15219L10.7774 1.68645V1.68645L11.6227 1.15219ZM1.73315 2.22071C1.73315 1.66842 2.18087 1.2207 2.73315 1.2207V-0.779297C1.0763 -0.779297 -0.266846 0.563853 -0.266846 2.22071H1.73315ZM1.73315 7.60002V2.22071H-0.266846V7.60002H1.73315ZM1.73315 13.2447V7.60002H-0.266846V13.2447H1.73315ZM1.73315 13.9408V13.2447H-0.266846V13.9408H1.73315ZM3.73315 15.9408C2.62858 15.9408 1.73315 15.0454 1.73315 13.9408H-0.266846C-0.266846 16.15 1.52401 17.9408 3.73315 17.9408V15.9408ZM19.8152 15.9408H3.73315V17.9408H19.8152V15.9408ZM21.8152 13.9408C21.8152 15.0454 20.9197 15.9408 19.8152 15.9408V17.9408C22.0243 17.9408 23.8152 16.15 23.8152 13.9408H21.8152ZM21.8152 7.60002V13.9408H23.8152V7.60002H21.8152ZM19.8152 5.60002C20.9197 5.60002 21.8152 6.49545 21.8152 7.60002H23.8152C23.8152 5.39088 22.0243 3.60002 19.8152 3.60002V5.60002ZM13.8018 5.60002H19.8152V3.60002H13.8018V5.60002ZM10.7774 1.68645L12.9564 5.13427L14.6471 4.06576L12.468 0.61794L10.7774 1.68645ZM9.93205 1.2207C10.2751 1.2207 10.5941 1.3965 10.7774 1.68645L12.468 0.61794C11.9183 -0.251906 10.9611 -0.779297 9.93205 -0.779297V1.2207ZM2.73315 1.2207H9.93205V-0.779297H2.73315V1.2207Z" fill="#2D2D2D" mask="url(#path-3-inside-2)"/>
+</svg>
diff --git a/public/img/icon-github.svg b/public/img/icon-github.svg
new file mode 100644
index 0000000..2f9498e
--- /dev/null
+++ b/public/img/icon-github.svg
@@ -0,0 +1,3 @@
+<svg width="31" height="30" viewBox="0 0 31 30" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M28.4401 7.89989C27.0988 5.60166 25.2793 3.78214 22.9813 2.44094C20.6829 1.09966 18.1738 0.429199 15.4521 0.429199C12.7308 0.429199 10.2208 1.09987 7.92296 2.44094C5.62473 3.78207 3.80535 5.60166 2.46401 7.89989C1.12287 10.198 0.452271 12.7077 0.452271 15.4287C0.452271 18.6972 1.40588 21.6363 3.31357 24.2468C5.22105 26.8576 7.68524 28.6641 10.7059 29.6666C11.0575 29.7318 11.3178 29.6859 11.4871 29.53C11.6564 29.3739 11.7409 29.1784 11.7409 28.9443C11.7409 28.9053 11.7376 28.5539 11.7311 27.8897C11.7244 27.2255 11.7212 26.6461 11.7212 26.1517L11.272 26.2294C10.9856 26.2819 10.6242 26.3041 10.188 26.2978C9.75198 26.2918 9.29932 26.2461 8.83066 26.1611C8.36179 26.0769 7.92569 25.8816 7.52202 25.5756C7.11855 25.2696 6.83213 24.8691 6.66282 24.3746L6.46751 23.9252C6.33733 23.626 6.13238 23.2936 5.85239 22.9292C5.5724 22.5646 5.28926 22.3173 5.00283 22.1871L4.86608 22.0893C4.77496 22.0242 4.69041 21.9457 4.61222 21.8547C4.5341 21.7636 4.47561 21.6725 4.43655 21.5813C4.39742 21.4899 4.42985 21.415 4.53417 21.3563C4.63849 21.2975 4.82702 21.269 5.10059 21.269L5.49106 21.3273C5.75149 21.3795 6.07362 21.5354 6.45787 21.796C6.84191 22.0563 7.15761 22.3948 7.40504 22.8113C7.70467 23.3453 8.06566 23.7522 8.48903 24.0322C8.91207 24.3122 9.33859 24.4519 9.76819 24.4519C10.1978 24.4519 10.5688 24.4194 10.8815 24.3546C11.1937 24.2895 11.4867 24.1916 11.7603 24.0615C11.8775 23.1887 12.1965 22.5182 12.7172 22.0496C11.9751 21.9716 11.3079 21.8541 10.7153 21.698C10.123 21.5416 9.51098 21.2878 8.87957 20.9359C8.24783 20.5845 7.72375 20.1481 7.30722 19.6275C6.89061 19.1067 6.54871 18.4229 6.28199 17.5767C6.01513 16.7302 5.88167 15.7538 5.88167 14.6471C5.88167 13.0713 6.39609 11.7304 7.42474 10.6235C6.94288 9.43886 6.98837 8.11079 7.56135 6.63947C7.93897 6.52215 8.49895 6.61019 9.24104 6.90305C9.98327 7.19604 10.5267 7.44703 10.8719 7.65512C11.2171 7.86315 11.4936 8.03944 11.702 8.18241C12.9132 7.844 14.1631 7.67476 15.452 7.67476C16.7409 7.67476 17.9911 7.844 19.2023 8.18241L19.9445 7.71388C20.452 7.40126 21.0513 7.11477 21.741 6.85434C22.4311 6.59405 22.9588 6.52236 23.3236 6.63968C23.9093 8.11106 23.9615 9.43906 23.4795 10.6238C24.508 11.7306 25.0227 13.0719 25.0227 14.6473C25.0227 15.754 24.8887 16.7335 24.6223 17.5865C24.3555 18.4396 24.0106 19.1227 23.5876 19.6373C23.1641 20.1518 22.6367 20.5848 22.0053 20.9361C21.3737 21.2877 20.7615 21.5415 20.1692 21.6979C19.5767 21.8543 18.9095 21.9718 18.1674 22.0499C18.8442 22.6356 19.1827 23.5602 19.1827 24.8231V28.9438C19.1827 29.1779 19.2641 29.3733 19.427 29.5295C19.5898 29.6854 19.8468 29.7313 20.1984 29.666C23.2195 28.6636 25.6837 26.857 27.5911 24.2463C29.4983 21.6358 30.4523 18.6966 30.4523 15.4281C30.4516 12.7075 29.7806 10.198 28.4401 7.89989Z" fill="black"/>
+</svg>
diff --git a/public/img/icon-pero.svg b/public/img/icon-pero.svg
new file mode 100644
index 0000000..de4d971
--- /dev/null
+++ b/public/img/icon-pero.svg
@@ -0,0 +1,74 @@
+<svg width="16" height="32" viewBox="0 0 16 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M13.4134 0.859887C12.9236 1.14823 12.1083 1.96461 11.1359 3.14864L12.027 4.82826C12.6542 3.93618 13.2905 3.13062 13.925 2.4494C13.9756 2.39533 13.9991 2.3701 13.9991 2.3701C13.9756 2.39533 13.9485 2.42417 13.925 2.4494C13.7171 2.67647 13.0862 3.41175 12.1355 4.8643C13.0519 4.81924 14.4492 4.63182 15.606 4.43719C15.9495 2.52689 15.2716 1.66185 15.2716 1.66185C15.2716 1.66185 14.4112 0.274184 13.4098 0.867096L13.4134 0.859887Z" fill="url(#paint0_linear)"/>
+<path d="M10.413 14.9697C10.2991 14.9896 10.1834 15.0112 10.0623 15.031C10.0623 15.031 10.0605 15.031 10.0605 15.0328C10.1219 15.0238 10.1816 15.0148 10.2412 15.0058C10.2973 14.9932 10.3551 14.9823 10.413 14.9697Z" fill="#BD202E"/>
+<path d="M10.413 14.9697C10.2991 14.9896 10.1834 15.0112 10.0623 15.031C10.0623 15.031 10.0605 15.031 10.0605 15.0328C10.1219 15.0238 10.1816 15.0148 10.2412 15.0058C10.2973 14.9932 10.3551 14.9823 10.413 14.9697Z" fill="black"/>
+<path d="M10.7203 13.5067C10.7185 13.5067 10.7185 13.5067 10.7185 13.5085C10.7366 13.5067 10.7565 13.5031 10.7745 13.4995C10.8505 13.4886 10.9246 13.476 10.9969 13.458C10.9065 13.4742 10.8161 13.4904 10.7203 13.5067Z" fill="#BD202E"/>
+<path d="M10.7203 13.5067C10.7185 13.5067 10.7185 13.5067 10.7185 13.5085C10.7366 13.5067 10.7565 13.5031 10.7745 13.4995C10.8505 13.4886 10.9246 13.476 10.9969 13.458C10.9065 13.4742 10.8161 13.4904 10.7203 13.5067Z" fill="black"/>
+<path d="M9.40068 9.16572C9.67182 8.65931 9.94657 8.16551 10.2231 7.68614C10.5105 7.18514 10.8034 6.70216 11.098 6.23359C11.1143 6.20656 11.1342 6.17773 11.1504 6.15069C11.4414 5.69114 11.7361 5.24781 12.0307 4.8261L11.1396 3.14648C11.0727 3.22758 11.0058 3.31048 10.9371 3.39699C10.6786 3.71777 10.4129 4.06018 10.1382 4.42602C9.82908 4.83692 9.51275 5.27664 9.18919 5.738C8.89275 6.16331 8.58908 6.60844 8.2854 7.0716C8.02692 7.46447 7.77024 7.86816 7.51356 8.28265C7.50453 8.29707 7.49549 8.31329 7.48645 8.32951L8.64873 10.6183C8.89456 10.1227 9.14762 9.63788 9.40068 9.16572Z" fill="url(#paint1_linear)"/>
+<path d="M4.1044 22.0522C3.95075 22.4721 3.7953 22.9028 3.64165 23.3407C3.63985 23.3461 3.63804 23.3534 3.63442 23.3588C3.61273 23.42 3.58923 23.4831 3.56935 23.5444C3.46451 23.8399 3.37413 24.1067 3.16626 24.7104C3.50789 24.8654 3.78265 25.2763 4.04294 25.7412C4.01582 25.26 3.81699 24.8077 3.43559 24.4581C5.12207 24.5338 6.58079 24.1085 7.3219 22.8794C7.38878 22.7695 7.45023 22.6559 7.50627 22.5316C7.16464 22.9641 6.73985 23.1461 5.94271 23.1029C5.9409 23.1029 5.93909 23.1047 5.93729 23.1047C5.93909 23.1047 5.9409 23.1029 5.94271 23.1029C7.11764 22.5784 7.7051 22.0756 8.22027 21.2466C8.34318 21.0484 8.46429 20.8339 8.58721 20.5942C7.5605 21.6449 6.38195 21.9441 5.11664 21.717L4.1767 21.8197C4.14597 21.899 4.11886 21.9765 4.08813 22.0558L4.1044 22.0522Z" fill="url(#paint2_linear)"/>
+<path d="M4.55639 19.9577C4.75884 19.4351 4.96852 18.9052 5.18181 18.3718C5.38788 17.86 5.59756 17.3445 5.81447 16.8291C6.03138 16.3137 6.2519 15.7929 6.47604 15.2739C6.7038 14.7458 6.93879 14.2196 7.17919 13.6952C7.41599 13.1761 7.65459 12.6607 7.89861 12.1525C7.98538 11.9687 8.07576 11.7849 8.16433 11.6028C8.31797 11.2875 8.47342 10.9739 8.63068 10.6639C8.63972 10.6477 8.64695 10.6297 8.65599 10.6135L7.49371 8.32471C7.47564 8.35534 7.45575 8.38778 7.43587 8.41662C7.16473 8.85815 6.8954 9.30869 6.6315 9.76824C6.36397 10.2332 6.10187 10.7072 5.8452 11.1883C5.63009 11.5938 5.41861 12.0011 5.21073 12.4156C5.16916 12.4985 5.12939 12.5832 5.08782 12.6661C4.83476 13.1869 4.607 13.6861 4.39913 14.1709C4.16414 14.717 3.95808 15.2396 3.77913 15.7352C3.65983 16.0614 3.55318 16.375 3.45376 16.6777C3.37242 16.9355 3.2965 17.195 3.22058 17.4527C3.04705 18.0582 2.89702 18.6637 2.77411 19.2729L3.94181 21.5796C4.09545 21.1687 4.25452 20.7506 4.4172 20.3289C4.46601 20.2082 4.50939 20.0892 4.55639 19.9739V19.9577Z" fill="url(#paint3_linear)"/>
+<path d="M2.74879 19.3509C2.60237 20.0862 2.49753 20.8179 2.44511 21.5495L2.43969 21.6252C2.07456 21.0431 1.10027 20.4754 1.10208 20.4809C1.80161 21.4901 2.33123 22.4993 2.40896 23.4724C2.03479 23.5481 1.52324 23.4382 0.932164 23.2219C1.54855 23.7878 2.01129 23.9428 2.19386 23.9861C1.62628 24.0221 1.037 24.4096 0.442309 24.8565C1.31176 24.5033 2.01491 24.3627 2.52103 24.4763C1.72208 26.729 0.923126 29.2159 0.116943 31.8651C0.362775 31.793 0.509189 31.6272 0.590531 31.4056C0.73333 30.928 1.6787 27.7832 3.1573 23.6743C3.20068 23.5571 3.24226 23.4382 3.28564 23.3211C3.29649 23.2868 3.30914 23.2544 3.32179 23.2237C3.47724 22.7912 3.64173 22.3497 3.80803 21.8992C3.84599 21.7964 3.88395 21.6937 3.92372 21.591C3.92372 21.5892 3.92553 21.5874 3.92553 21.5856L2.75602 19.2788C2.7524 19.3022 2.74698 19.3293 2.74156 19.3563L2.74879 19.3509Z" fill="url(#paint4_linear)"/>
+<path d="M8.82226 10.8096C8.78791 10.8781 8.75537 10.9466 8.72103 11.015C8.61981 11.2223 8.51858 11.4331 8.41374 11.6494C8.30167 11.8837 8.1896 12.1216 8.07572 12.3667C8.01788 12.4892 7.96004 12.6136 7.90219 12.7397C7.72867 13.1164 7.55333 13.5056 7.37438 13.9075C7.15566 14.3995 6.92971 14.9131 6.70377 15.4466C6.48866 15.9548 6.26633 16.4792 6.0458 17.0235C5.83432 17.5389 5.62102 18.0723 5.40411 18.6202C5.2107 19.1086 5.01548 19.6132 4.82026 20.1304C4.81122 20.1538 4.80219 20.1808 4.79315 20.2043C4.59793 20.7179 4.4009 21.2459 4.20388 21.7866C4.20026 21.7992 4.19484 21.81 4.19122 21.8244L5.13117 21.7217C5.11309 21.7181 5.09321 21.7163 5.07513 21.7127C6.19764 21.5739 7.69613 20.7359 8.65415 19.6943C9.09882 19.2185 9.50191 18.6562 9.87427 17.9984C10.1508 17.51 10.4129 16.9658 10.6624 16.3657C10.8793 15.8412 11.0872 15.2717 11.2878 14.6572C11.0293 14.7924 10.7347 14.8933 10.4093 14.9618C10.3515 14.9744 10.2936 14.9852 10.234 14.996C10.1743 15.0068 10.1147 15.0158 10.0532 15.023C10.0532 15.023 10.055 15.023 10.055 15.0212C11.1034 14.6194 11.7632 13.8444 12.2422 12.8947C11.9675 13.0821 11.5192 13.3272 10.9823 13.4444C10.91 13.4606 10.8359 13.4732 10.76 13.4858C10.7419 13.4876 10.722 13.4912 10.704 13.4948H10.7058H10.7076C11.0727 13.3434 11.3782 13.1722 11.6439 12.9722C11.7017 12.9289 11.7578 12.8857 11.8084 12.8388C11.8897 12.7685 11.9656 12.6947 12.0416 12.619C12.0886 12.5685 12.1338 12.518 12.1789 12.4658C12.2838 12.3414 12.3814 12.2081 12.4718 12.0639C12.4989 12.0188 12.5278 11.9756 12.5531 11.9287C12.5893 11.8621 12.6218 11.7954 12.6543 11.7323C12.8007 11.4403 12.9182 11.1772 13.0104 10.9484C13.0574 10.833 13.0972 10.7285 13.1333 10.6276C13.1478 10.5879 13.1605 10.5501 13.1731 10.5122C13.2111 10.4023 13.24 10.305 13.2635 10.2185C13.2996 10.0887 13.3213 9.986 13.3322 9.91211C13.296 9.93914 13.2563 9.96798 13.2093 9.99501C12.8929 10.1842 12.3507 10.3536 11.9132 10.4347L12.7754 10.341L11.9132 10.4347C11.9078 10.4365 11.9006 10.4365 11.8933 10.4383C11.8482 10.4456 11.8066 10.4528 11.7614 10.4582L11.7831 10.4474L8.83672 10.7699C8.83672 10.7771 8.83129 10.7898 8.82587 10.8006L8.82226 10.8096Z" fill="url(#paint5_linear)"/>
+<path d="M12.1481 4.86056C11.886 5.26244 11.6004 5.71839 11.2895 6.23561C11.2732 6.26084 11.2551 6.29147 11.2407 6.31671C10.975 6.76364 10.693 7.25383 10.3929 7.79268C10.1362 8.25764 9.86873 8.75503 9.59036 9.29028C9.34814 9.75704 9.09869 10.2526 8.84021 10.7771L11.7866 10.4545C12.647 10.0598 13.0302 9.70478 13.4026 9.18755C13.5002 9.04518 13.6014 8.89741 13.699 8.74242C14.0027 8.27025 14.2991 7.75123 14.5648 7.23401C14.8215 6.73481 15.0475 6.24101 15.221 5.79408C15.3312 5.51114 15.4198 5.24802 15.4813 5.01554C15.5355 4.8119 15.5771 4.61726 15.6096 4.43164C14.4654 4.62808 13.0609 4.8155 12.1391 4.86056H12.1481Z" fill="url(#paint6_linear)"/>
+<path d="M10.2323 15.0073C10.1726 15.0181 10.113 15.0271 10.0515 15.0344C10.113 15.0289 10.1744 15.0181 10.2323 15.0073Z" fill="#BD202E"/>
+<path opacity="0.35" d="M10.2323 15.0073C10.1726 15.0181 10.113 15.0271 10.0515 15.0344C10.113 15.0289 10.1744 15.0181 10.2323 15.0073Z" fill="#BD202E"/>
+<path d="M10.2323 15.0073C10.1726 15.0181 10.113 15.0271 10.0515 15.0344C10.113 15.0289 10.1744 15.0181 10.2323 15.0073Z" fill="url(#paint7_linear)"/>
+<path d="M10.7202 13.5119C10.7382 13.5101 10.7581 13.5065 10.7762 13.5029C10.7581 13.5047 10.74 13.5101 10.7202 13.5119Z" fill="#BD202E"/>
+<path opacity="0.35" d="M10.7202 13.5119C10.7382 13.5101 10.7581 13.5065 10.7762 13.5029C10.7581 13.5047 10.74 13.5101 10.7202 13.5119Z" fill="#BD202E"/>
+<path d="M10.7202 13.5119C10.7382 13.5101 10.7581 13.5065 10.7762 13.5029C10.7581 13.5047 10.74 13.5101 10.7202 13.5119Z" fill="url(#paint8_linear)"/>
+<defs>
+<linearGradient id="paint0_linear" x1="11.9369" y1="3.41089" x2="18.4677" y2="1.56971" gradientUnits="userSpaceOnUse">
+<stop stop-color="#F59723"/>
+<stop offset="0.312" stop-color="#F69822"/>
+<stop offset="0.838" stop-color="#E87726"/>
+</linearGradient>
+<linearGradient id="paint1_linear" x1="-2.36875" y1="32.679" x2="10.8551" y2="4.19584" gradientUnits="userSpaceOnUse">
+<stop offset="0.323" stop-color="#9C2063"/>
+<stop offset="0.63" stop-color="#C82037"/>
+<stop offset="0.751" stop-color="#CC2135"/>
+<stop offset="1" stop-color="#E87726"/>
+</linearGradient>
+<linearGradient id="paint2_linear" x1="2.10333" y1="30.5664" x2="9.97986" y2="13.6009" gradientUnits="userSpaceOnUse">
+<stop stop-color="#282661"/>
+<stop offset="0.0955" stop-color="#662E8C"/>
+<stop offset="0.788" stop-color="#9E2064"/>
+<stop offset="0.949" stop-color="#CC2032"/>
+</linearGradient>
+<linearGradient id="paint3_linear" x1="-1.893" y1="30.9552" x2="11.3308" y2="2.47206" gradientUnits="userSpaceOnUse">
+<stop offset="0.323" stop-color="#9C2063"/>
+<stop offset="0.63" stop-color="#C82037"/>
+<stop offset="0.751" stop-color="#CC2135"/>
+<stop offset="1" stop-color="#E87726"/>
+</linearGradient>
+<linearGradient id="paint4_linear" x1="-0.532775" y1="29.0583" x2="6.41481" y2="14.0937" gradientUnits="userSpaceOnUse">
+<stop stop-color="#282661"/>
+<stop offset="0.0955" stop-color="#662E8C"/>
+<stop offset="0.788" stop-color="#9E2064"/>
+<stop offset="0.949" stop-color="#CC2032"/>
+</linearGradient>
+<linearGradient id="paint5_linear" x1="1.07198" y1="32.3386" x2="14.2958" y2="3.85553" gradientUnits="userSpaceOnUse">
+<stop offset="0.323" stop-color="#9C2063"/>
+<stop offset="0.63" stop-color="#C82037"/>
+<stop offset="0.751" stop-color="#CC2135"/>
+<stop offset="1" stop-color="#E87726"/>
+</linearGradient>
+<linearGradient id="paint6_linear" x1="0.0965251" y1="34.03" x2="13.3204" y2="5.54685" gradientUnits="userSpaceOnUse">
+<stop offset="0.323" stop-color="#9C2063"/>
+<stop offset="0.63" stop-color="#C82037"/>
+<stop offset="0.751" stop-color="#CC2135"/>
+<stop offset="1" stop-color="#E87726"/>
+</linearGradient>
+<linearGradient id="paint7_linear" x1="1.94809" y1="32.7438" x2="15.1716" y2="4.26092" gradientUnits="userSpaceOnUse">
+<stop offset="0.323" stop-color="#9C2063"/>
+<stop offset="0.63" stop-color="#C82037"/>
+<stop offset="0.751" stop-color="#CC2135"/>
+<stop offset="1" stop-color="#E87726"/>
+</linearGradient>
+<linearGradient id="paint8_linear" x1="1.84698" y1="32.6985" x2="15.072" y2="4.21459" gradientUnits="userSpaceOnUse">
+<stop offset="0.323" stop-color="#9C2063"/>
+<stop offset="0.63" stop-color="#C82037"/>
+<stop offset="0.751" stop-color="#CC2135"/>
+<stop offset="1" stop-color="#E87726"/>
+</linearGradient>
+</defs>
+</svg>
diff --git a/public/img/icon-stackoverflow.svg b/public/img/icon-stackoverflow.svg
new file mode 100644
index 0000000..23359a6
--- /dev/null
+++ b/public/img/icon-stackoverflow.svg
@@ -0,0 +1,3 @@
+<svg width="23" height="23" viewBox="0 0 23 23" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M17.2324 13.1713L5.01241 10.6556L4.39024 13.2643L18.434 16.1556L18.9504 13.9928L19.6394 14.3223L20.8902 11.5701L7.47441 5.1556L6.22357 7.90704L17.2324 13.1713ZM22.7236 14.3223V22.5723H0.723572V14.3223H3.47357V19.8223H19.9736V14.3223H22.7236ZM4.39024 16.1556H19.0569V18.9056H4.39024V16.1556ZM22.7236 9.15941L20.8935 11.5723L8.97357 2.31615L10.2973 0.572266H11.6638L22.7236 9.15941Z" fill="black"/>
+</svg>
diff --git a/public/img/icon-video.svg b/public/img/icon-video.svg
new file mode 100644
index 0000000..2e8b855
--- /dev/null
+++ b/public/img/icon-video.svg
@@ -0,0 +1,4 @@
+<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
+<circle cx="16" cy="16" r="16" fill="#2D2D2D"/>
+<path d="M23.619 16L12.1904 22.5983L12.1904 9.40174L23.619 16Z" fill="white"/>
+</svg>
diff --git a/public/img/loader.svg b/public/img/loader.svg
new file mode 100644
index 0000000..a6b79a7
--- /dev/null
+++ b/public/img/loader.svg
@@ -0,0 +1,20 @@
+<svg width="135" height="135" viewBox="0 0 135 135" xmlns="http://www.w3.org/2000/svg" fill="#ccc">
+    <path d="M67.447 58c5.523 0 10-4.477 10-10s-4.477-10-10-10-10 4.477-10 10 4.477 10 10 10zm9.448 9.447c0 5.523 4.477 10 10 10 5.522 0 10-4.477 10-10s-4.478-10-10-10c-5.523 0-10 4.477-10 10zm-9.448 9.448c-5.523 0-10 4.477-10 10 0 5.522 4.477 10 10 10s10-4.478 10-10c0-5.523-4.477-10-10-10zM58 67.447c0-5.523-4.477-10-10-10s-10 4.477-10 10 4.477 10 10 10 10-4.477 10-10z">
+        <animateTransform
+            attributeName="transform"
+            type="rotate"
+            from="0 67 67"
+            to="-360 67 67"
+            dur="2.5s"
+            repeatCount="indefinite"/>
+    </path>
+    <path d="M28.19 40.31c6.627 0 12-5.374 12-12 0-6.628-5.373-12-12-12-6.628 0-12 5.372-12 12 0 6.626 5.372 12 12 12zm30.72-19.825c4.686 4.687 12.284 4.687 16.97 0 4.686-4.686 4.686-12.284 0-16.97-4.686-4.687-12.284-4.687-16.97 0-4.687 4.686-4.687 12.284 0 16.97zm35.74 7.705c0 6.627 5.37 12 12 12 6.626 0 12-5.373 12-12 0-6.628-5.374-12-12-12-6.63 0-12 5.372-12 12zm19.822 30.72c-4.686 4.686-4.686 12.284 0 16.97 4.687 4.686 12.285 4.686 16.97 0 4.687-4.686 4.687-12.284 0-16.97-4.685-4.687-12.283-4.687-16.97 0zm-7.704 35.74c-6.627 0-12 5.37-12 12 0 6.626 5.373 12 12 12s12-5.374 12-12c0-6.63-5.373-12-12-12zm-30.72 19.822c-4.686-4.686-12.284-4.686-16.97 0-4.686 4.687-4.686 12.285 0 16.97 4.686 4.687 12.284 4.687 16.97 0 4.687-4.685 4.687-12.283 0-16.97zm-35.74-7.704c0-6.627-5.372-12-12-12-6.626 0-12 5.373-12 12s5.374 12 12 12c6.628 0 12-5.373 12-12zm-19.823-30.72c4.687-4.686 4.687-12.284 0-16.97-4.686-4.686-12.284-4.686-16.97 0-4.687 4.686-4.687 12.284 0 16.97 4.686 4.687 12.284 4.687 16.97 0z">
+        <animateTransform
+            attributeName="transform"
+            type="rotate"
+            from="0 67 67"
+            to="360 67 67"
+            dur="8s"
+            repeatCount="indefinite"/>
+    </path>
+</svg>
diff --git a/public/img/logo-white.svg b/public/img/logo-white.svg
new file mode 100644
index 0000000..f4e01bc
--- /dev/null
+++ b/public/img/logo-white.svg
@@ -0,0 +1,19 @@
+<svg width="115" height="48" viewBox="0 0 115 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M52.546 37.9503V36.6103C51.6125 38.0699 50.3437 39.0031 48.7399 39.362C47.1361 39.7209 45.5561 39.6013 44.0002 38.9792C42.4203 38.357 41.0797 37.1846 39.9547 35.4857C38.8296 33.7868 38.2551 31.5614 38.2551 28.7858C38.2551 25.5315 38.9971 22.9234 40.4813 20.8895C41.9655 18.8795 44.3592 17.8745 47.6627 17.8745C50.1762 17.8745 52.4982 18.5445 54.6526 19.9084C56.807 21.2723 57.8603 23.7848 57.8603 27.4458V38.5006C57.8603 42.1616 56.7831 44.6502 54.6526 45.9901C52.4982 47.3301 50.1762 48.0001 47.6627 48.0001C42.8512 48.0001 39.8589 45.7509 38.7099 41.2524H44.4311C44.838 41.9941 45.4843 42.5445 46.3461 42.9513C47.2079 43.3341 48.0696 43.4537 48.9314 43.2623C49.7932 43.0709 50.5831 42.5684 51.2773 41.7309C52.0194 40.8695 52.4263 39.6252 52.546 37.9503ZM43.5932 28.9293C43.5932 32.5425 44.6465 34.5525 46.7291 34.9353C48.8117 35.3182 50.3677 34.8396 51.3491 33.4757C51.8279 32.9014 52.163 31.9921 52.3785 30.7718C52.5939 29.5515 52.5939 28.3311 52.4263 27.1108C52.2348 25.9144 51.804 24.8376 51.1337 23.9044C50.4634 22.9712 49.458 22.4927 48.1414 22.4927C46.37 22.4927 45.1492 23.1387 44.5268 24.4548C43.9044 25.7469 43.5932 27.2544 43.5932 28.9293Z" fill="white"/>
+<path d="M77.0344 39.1945H74.2816C73.4916 39.1945 72.8453 38.9552 72.3665 38.4528C71.8638 37.9503 71.6245 37.3042 71.6245 36.5385V25.8665C71.6245 24.6223 71.2414 23.6891 70.4754 23.1148C69.7094 22.5405 68.8716 22.2534 67.9141 22.2534C66.9805 22.2534 66.1427 22.5405 65.4006 23.1148C64.6585 23.6891 64.2994 24.5983 64.2994 25.8665V39.2185H58.7937V26.9672C58.7937 23.4019 59.7273 21.033 61.5705 19.8366C63.4377 18.6402 65.4724 17.9702 67.7226 17.8745C70.0206 17.8745 72.1511 18.4727 74.0901 19.6691C76.029 20.8655 76.9866 23.3062 76.9866 26.9672V39.1945H77.0344Z" fill="white"/>
+<path d="M78.3756 20.1477H83.8813C83.8813 23.0669 83.8813 22.0859 83.8813 22.8277V39.2185H78.3756V20.1477Z" fill="white"/>
+<path d="M93.9827 39.1945C92.2591 39.2902 90.392 39.2663 88.3812 39.1227C86.3704 38.9552 85.365 37.687 85.365 35.2702V14.8595H88.1897C88.8599 14.8595 89.4823 15.1227 89.985 15.6491C90.5117 16.1755 90.775 16.7977 90.775 17.5395V18.2573H93.9827V19.358C93.9827 20.1476 93.7193 20.7937 93.1927 21.2723C92.6661 21.7747 92.0437 22.014 91.3016 22.014H90.751V33.7628C90.751 34.6481 91.2777 35.1027 92.3309 35.1027H93.9827V39.1945Z" fill="white"/>
+<path d="M108.968 32.7577H112.894C112.319 34.9591 111.218 36.6341 109.59 37.7826C107.963 38.9791 105.928 39.5773 103.462 39.5773C100.47 39.5773 98.1481 38.6201 96.4724 36.6819C94.7968 34.7916 93.9589 32.1117 93.9589 28.5942C93.9589 25.2443 94.7728 22.6361 96.4006 20.7458C98.0763 18.8076 100.398 17.8505 103.39 17.8505C106.526 17.8505 108.968 18.7837 110.692 20.674C112.367 22.6122 113.205 25.2921 113.205 28.7617C113.205 28.9771 113.205 29.1446 113.205 29.3121C113.205 29.4796 113.205 29.5753 113.205 29.6231C113.205 29.8863 113.181 30.0778 113.133 30.1735H99.5604C99.6083 31.8006 100.015 32.997 100.733 33.7866C101.404 34.6241 102.433 35.0309 103.797 35.0309C104.683 35.0309 105.449 34.8395 106.072 34.4806C106.239 34.4327 106.383 34.337 106.502 34.1934C106.622 34.0738 106.766 33.9302 106.933 33.7627C106.981 33.5952 107.173 33.4038 107.532 33.1406C107.867 32.9013 108.346 32.7577 108.968 32.7577ZM99.5604 26.656H107.58C107.484 25.2443 107.101 24.1914 106.478 23.5214C105.808 22.7797 104.827 22.4207 103.582 22.4207C102.433 22.4207 101.499 22.7797 100.757 23.5214C99.9913 24.2393 99.6083 25.2921 99.5604 26.656Z" fill="white"/>
+<path d="M31.5765 10.5524H34.4012C35.1432 10.5524 35.7656 10.8156 36.2923 11.342C36.8189 11.8684 37.0822 12.4906 37.0822 13.2323V39.2183H31.5765V10.5524Z" fill="white"/>
+<path d="M78.3755 14.8595H81.2002C81.9423 14.8595 82.5647 15.1227 83.0913 15.6491C83.618 16.1755 83.8813 16.7977 83.8813 17.5395V19.1905H78.3755V14.8595Z" fill="white"/>
+<path d="M45.4843 15.1465H44.6226V14.5244C44.1917 15.0029 43.5932 15.2422 42.8512 15.2422C42.157 15.2422 41.5585 15.0029 41.0558 14.5483C40.5292 14.0458 40.2659 13.4237 40.2659 12.658C40.2659 11.8683 40.5531 11.2223 41.1037 10.7198C41.6064 10.2412 42.2288 10.0259 42.923 10.0259C43.6411 10.0259 44.2156 10.2652 44.6465 10.7677V10.1455H45.5083V15.1465H45.4843ZM44.5986 12.658C44.5986 12.1794 44.4311 11.7726 44.1199 11.4137C43.7847 11.0787 43.4017 10.9112 42.923 10.9112C42.4203 10.9112 42.0133 11.0787 41.6543 11.4376C41.3191 11.7726 41.1516 12.1316 41.1516 12.5144C41.1516 13.0169 41.2952 13.4476 41.6064 13.8065C41.9176 14.1894 42.3245 14.3569 42.8272 14.3569C43.306 14.3569 43.7129 14.1894 44.072 13.8544C44.4311 13.5433 44.5986 13.1365 44.5986 12.658Z" fill="white"/>
+<path d="M51.7081 12.5144C51.7081 13.304 51.4687 13.9501 50.99 14.4526C50.4873 14.979 49.8649 15.2422 49.0749 15.2422C48.3568 15.2422 47.8062 15.0029 47.3753 14.5483V16.7976H46.4657V10.1216H47.3275V10.7198C47.5429 10.4805 47.8062 10.313 48.0695 10.1934C48.3568 10.0737 48.6441 10.0259 48.9792 10.0259C49.6734 10.0259 50.2958 10.2652 50.8224 10.7198C51.4209 11.1984 51.7081 11.7966 51.7081 12.5144ZM50.7745 12.6341C50.7745 12.1555 50.607 11.7487 50.2718 11.4137C49.9367 11.0787 49.5058 10.9112 49.0271 10.9112C48.5244 10.9112 48.1174 11.1026 47.7823 11.4616C47.4711 11.7966 47.3275 12.2033 47.3275 12.658C47.3275 13.0887 47.4472 13.4476 47.7105 13.7826C48.0217 14.1655 48.4765 14.3569 49.0749 14.3569C49.5537 14.3569 49.9606 14.1894 50.2958 13.8544C50.6309 13.5433 50.7745 13.1365 50.7745 12.6341Z" fill="white"/>
+<path d="M57.7169 15.1465H56.8551V14.5244C56.4242 15.0029 55.8258 15.2422 55.0837 15.2422C54.3895 15.2422 53.7911 15.0029 53.2884 14.5483C52.7617 14.0458 52.4984 13.4237 52.4984 12.658C52.4984 11.8683 52.7857 11.2223 53.3362 10.7198C53.8389 10.2412 54.4613 10.0259 55.1555 10.0259C55.8737 10.0259 56.4482 10.2652 56.8791 10.7677V10.1455H57.7408V15.1465H57.7169ZM56.8551 12.658C56.8551 12.1794 56.6876 11.7726 56.3764 11.4137C56.0412 11.0787 55.6582 10.9112 55.1795 10.9112C54.6768 10.9112 54.2698 11.0787 53.9108 11.4376C53.5756 11.7726 53.4081 12.1316 53.4081 12.5144C53.4081 13.0169 53.5517 13.4476 53.8629 13.8065C54.1741 14.1894 54.581 14.3569 55.0837 14.3569C55.5625 14.3569 55.9694 14.1894 56.3285 13.8544C56.6636 13.5433 56.8551 13.1365 56.8551 12.658Z" fill="white"/>
+<path d="M63.725 13.4955C63.4377 14.0697 63.1026 14.5005 62.7196 14.7876C62.2887 15.0987 61.786 15.2662 61.1636 15.2662C60.4694 15.2662 59.847 15.0269 59.3204 14.5244C58.7698 13.998 58.4825 13.3758 58.4825 12.6101H58.5304C58.5304 12.6101 58.5304 12.6341 58.5065 12.658C58.5065 11.8683 58.7698 11.2223 59.3204 10.7198C59.7991 10.2652 60.3736 10.0259 61.0439 10.0259C61.6663 10.0259 62.1929 10.1934 62.6717 10.5044C63.1265 10.8155 63.4856 11.2701 63.701 11.8444H62.6956C62.3605 11.2462 61.8099 10.9352 61.0678 10.9352C60.5891 10.9352 60.2061 11.1026 59.8949 11.4376C59.5837 11.7726 59.4161 12.1794 59.4161 12.658C59.4161 13.1365 59.5837 13.5673 59.9188 13.9022C60.254 14.2372 60.6609 14.4047 61.1397 14.4047C61.4508 14.4047 61.762 14.333 62.0493 14.1655C62.3366 13.998 62.552 13.7826 62.7196 13.5194H63.725V13.4955Z" fill="white"/>
+<path d="M68.9191 15.1465H68.0095V12.2752C68.0095 11.8923 67.8898 11.5573 67.6265 11.318C67.3871 11.0788 67.052 10.9352 66.669 10.9352C66.286 10.9352 65.9748 11.0548 65.7354 11.2702C65.496 11.5095 65.3763 11.7966 65.3763 12.1795V15.1465H64.4667V8.47058H65.3763V10.5523C65.7354 10.1934 66.1663 10.0259 66.6929 10.0259C67.2674 10.0259 67.7701 10.2173 68.201 10.6241C68.6558 11.0548 68.8952 11.6052 68.8952 12.2752V15.1465H68.9191Z" fill="white"/>
+<path d="M74.8562 12.993H70.6192C70.691 13.4237 70.9064 13.7587 71.2416 14.0219C71.5528 14.2372 71.8879 14.3569 72.2469 14.3569C72.5821 14.3569 72.8933 14.2612 73.2045 14.0697C73.5157 13.8783 73.7311 13.6151 73.8508 13.304H74.7844C74.545 13.974 74.162 14.4526 73.6593 14.7876C73.2284 15.0747 72.7497 15.2183 72.223 15.2183C71.5528 15.2183 70.9782 14.979 70.4995 14.5005C69.9968 13.974 69.7335 13.3519 69.7335 12.5862C69.7335 11.7966 69.9968 11.1505 70.5474 10.6719C71.0501 10.2173 71.6246 10.002 72.2948 10.002C72.9651 10.002 73.5635 10.2173 74.0423 10.6719C74.5929 11.1744 74.8801 11.8684 74.8801 12.7298V12.993H74.8562ZM73.9226 12.1555C73.8269 11.7726 73.6114 11.4855 73.3002 11.2462C72.989 11.0069 72.6539 10.8873 72.2709 10.8873C71.7921 10.8873 71.3852 11.0548 71.074 11.3659C70.8585 11.5812 70.691 11.8444 70.6192 12.1555H73.9226Z" fill="white"/>
+<path d="M7.68626 8.13562C7.68626 8.13562 -8.95063 18.2812 6.72874 28.3549C9.74493 30.3171 20.6846 35.7727 20.3734 40.8215C20.3734 40.8215 27.0042 31.011 17.3093 24.8375C7.35113 18.5205 4.86158 11.7727 7.68626 8.13562Z" fill="#ED1C24"/>
+<path d="M1.89333 27.5175C1.89333 27.5175 -4.04328 36.5145 7.63845 38.3569C8.78747 38.5005 17.2376 39.3858 19.4399 42.1615C19.4399 42.1615 19.2484 37.3759 12.3542 34.5523C5.48403 31.7288 2.65935 31.0349 1.89333 27.5175Z" fill="#ED1C24"/>
+<path d="M24.8739 18.0658C17.7404 10.6002 15.7535 5.98205 18.8176 0C18.8176 0 -2.46325 8.18344 18.5543 22.7079C26.0708 27.9003 24.826 33.2123 24.826 33.4038C25.999 32.1834 32.0074 25.5314 24.8739 18.0658Z" fill="#ED1C24"/>
+<path d="M115 17.8504C115 18.8315 114.234 19.5972 113.229 19.5972C112.223 19.5972 111.433 18.8315 111.433 17.8504C111.433 16.8933 112.223 16.1276 113.229 16.1276C114.234 16.1037 115 16.8933 115 17.8504ZM111.888 17.8504C111.888 18.6161 112.463 19.2383 113.253 19.2383C114.019 19.2383 114.569 18.6161 114.569 17.8744C114.569 17.1087 114.019 16.4865 113.229 16.4865C112.439 16.4626 111.888 17.0847 111.888 17.8504ZM112.941 18.7597H112.534V17.0369C112.702 17.0129 112.917 16.989 113.205 16.989C113.54 16.989 113.683 17.0369 113.803 17.1087C113.899 17.1804 113.971 17.324 113.971 17.4915C113.971 17.6829 113.827 17.8265 113.612 17.8983V17.9222C113.779 17.994 113.875 18.1136 113.923 18.3529C113.971 18.6161 114.019 18.7118 114.042 18.7836H113.612C113.564 18.7118 113.516 18.5683 113.468 18.3529C113.444 18.1615 113.324 18.0897 113.109 18.0897H112.917V18.7597H112.941ZM112.965 17.7786H113.157C113.372 17.7786 113.564 17.7069 113.564 17.5154C113.564 17.3479 113.444 17.2522 113.205 17.2522C113.109 17.2522 113.013 17.2522 112.989 17.2762V17.7786H112.965Z" fill="white"/>
+</svg>
diff --git a/public/img/logo.svg b/public/img/logo.svg
new file mode 100644
index 0000000..030000d
--- /dev/null
+++ b/public/img/logo.svg
@@ -0,0 +1,19 @@
+<svg width="115" height="48" viewBox="0 0 115 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M52.546 37.9501V36.6102C51.6125 38.0698 50.3437 39.003 48.7399 39.3619C47.1361 39.7208 45.5561 39.6012 44.0002 38.9791C42.4203 38.3569 41.0797 37.1844 39.9547 35.4855C38.8296 33.7866 38.2551 31.5613 38.2551 28.7856C38.2551 25.5314 38.9971 22.9232 40.4813 20.8893C41.9655 18.8794 44.3592 17.8744 47.6627 17.8744C50.1762 17.8744 52.4982 18.5444 54.6526 19.9083C56.807 21.2722 57.8603 23.7847 57.8603 27.4457V38.5005C57.8603 42.1615 56.7831 44.65 54.6526 45.99C52.4982 47.33 50.1762 48 47.6627 48C42.8512 48 39.8589 45.7507 38.7099 41.2522H44.4311C44.838 41.994 45.4843 42.5444 46.3461 42.9511C47.2079 43.334 48.0696 43.4536 48.9314 43.2622C49.7932 43.0708 50.5831 42.5683 51.2773 41.7308C52.0194 40.8694 52.4263 39.6251 52.546 37.9501ZM43.5932 28.9292C43.5932 32.5424 44.6465 34.5523 46.7291 34.9352C48.8117 35.318 50.3677 34.8395 51.3491 33.4756C51.8279 32.9013 52.163 31.992 52.3785 30.7717C52.5939 29.5513 52.5939 28.331 52.4263 27.1107C52.2348 25.9143 51.804 24.8375 51.1337 23.9043C50.4634 22.9711 49.458 22.4925 48.1414 22.4925C46.37 22.4925 45.1492 23.1386 44.5268 24.4546C43.9044 25.7468 43.5932 27.2542 43.5932 28.9292Z" fill="black"/>
+<path d="M77.0344 39.1944H74.2816C73.4916 39.1944 72.8453 38.9551 72.3665 38.4526C71.8638 37.9501 71.6245 37.3041 71.6245 36.5384V25.8664C71.6245 24.6221 71.2414 23.6889 70.4754 23.1147C69.7094 22.5404 68.8716 22.2532 67.9141 22.2532C66.9805 22.2532 66.1427 22.5404 65.4006 23.1147C64.6585 23.6889 64.2994 24.5982 64.2994 25.8664V39.2183H58.7937V26.9671C58.7937 23.4018 59.7273 21.0329 61.5705 19.8365C63.4377 18.6401 65.4724 17.9701 67.7226 17.8744C70.0206 17.8744 72.1511 18.4726 74.0901 19.669C76.029 20.8654 76.9866 23.3061 76.9866 26.9671V39.1944H77.0344Z" fill="black"/>
+<path d="M78.3756 20.1476H83.8813C83.8813 23.0668 83.8813 22.0858 83.8813 22.8275V39.2184H78.3756V20.1476Z" fill="black"/>
+<path d="M93.9827 39.1944C92.2591 39.2901 90.392 39.2662 88.3812 39.1226C86.3704 38.9551 85.365 37.6869 85.365 35.2702V14.8594H88.1897C88.8599 14.8594 89.4823 15.1226 89.985 15.649C90.5117 16.1755 90.775 16.7976 90.775 17.5394V18.2572H93.9827V19.3579C93.9827 20.1475 93.7193 20.7936 93.1927 21.2722C92.6661 21.7747 92.0437 22.0139 91.3016 22.0139H90.751V33.7627C90.751 34.648 91.2777 35.1027 92.3309 35.1027H93.9827V39.1944Z" fill="black"/>
+<path d="M108.968 32.7577H112.894C112.319 34.9591 111.218 36.6341 109.59 37.7826C107.963 38.979 105.928 39.5772 103.462 39.5772C100.47 39.5772 98.1481 38.6201 96.4724 36.6819C94.7968 34.7916 93.9589 32.1116 93.9589 28.5942C93.9589 25.2442 94.7728 22.6361 96.4006 20.7457C98.0763 18.8076 100.398 17.8504 103.39 17.8504C106.526 17.8504 108.968 18.7836 110.692 20.674C112.367 22.6121 113.205 25.2921 113.205 28.7617C113.205 28.977 113.205 29.1445 113.205 29.312C113.205 29.4795 113.205 29.5752 113.205 29.6231C113.205 29.8863 113.181 30.0777 113.133 30.1735H99.5604C99.6083 31.8006 100.015 32.997 100.733 33.7866C101.404 34.6241 102.433 35.0309 103.797 35.0309C104.683 35.0309 105.449 34.8394 106.072 34.4805C106.239 34.4327 106.383 34.337 106.502 34.1934C106.622 34.0737 106.766 33.9302 106.933 33.7627C106.981 33.5952 107.173 33.4038 107.532 33.1405C107.867 32.9013 108.346 32.7577 108.968 32.7577ZM99.5604 26.656H107.58C107.484 25.2442 107.101 24.1914 106.478 23.5214C105.808 22.7796 104.827 22.4207 103.582 22.4207C102.433 22.4207 101.499 22.7796 100.757 23.5214C99.9913 24.2393 99.6083 25.2921 99.5604 26.656Z" fill="black"/>
+<path d="M31.5765 10.5523H34.4012C35.1432 10.5523 35.7656 10.8155 36.2923 11.3419C36.8189 11.8684 37.0822 12.4905 37.0822 13.2323V39.2183H31.5765V10.5523Z" fill="black"/>
+<path d="M78.3755 14.8594H81.2002C81.9423 14.8594 82.5647 15.1226 83.0913 15.649C83.618 16.1755 83.8813 16.7976 83.8813 17.5394V19.1904H78.3755V14.8594Z" fill="black"/>
+<path d="M45.4843 15.1465H44.6226V14.5244C44.1917 15.003 43.5932 15.2423 42.8512 15.2423C42.157 15.2423 41.5585 15.003 41.0558 14.5483C40.5292 14.0458 40.2659 13.4237 40.2659 12.658C40.2659 11.8684 40.5531 11.2223 41.1037 10.7198C41.6064 10.2413 42.2288 10.0259 42.923 10.0259C43.6411 10.0259 44.2156 10.2652 44.6465 10.7677V10.1456H45.5083V15.1465H45.4843ZM44.5986 12.658C44.5986 12.1794 44.4311 11.7727 44.1199 11.4137C43.7847 11.0788 43.4017 10.9113 42.923 10.9113C42.4203 10.9113 42.0133 11.0788 41.6543 11.4377C41.3191 11.7727 41.1516 12.1316 41.1516 12.5144C41.1516 13.0169 41.2952 13.4476 41.6064 13.8066C41.9176 14.1894 42.3245 14.3569 42.8272 14.3569C43.306 14.3569 43.7129 14.1894 44.072 13.8544C44.4311 13.5434 44.5986 13.1366 44.5986 12.658Z" fill="black"/>
+<path d="M51.7081 12.5144C51.7081 13.3041 51.4687 13.9501 50.99 14.4526C50.4873 14.979 49.8649 15.2423 49.0749 15.2423C48.3568 15.2423 47.8062 15.003 47.3753 14.5483V16.7976H46.4657V10.1216H47.3275V10.7198C47.5429 10.4805 47.8062 10.313 48.0695 10.1934C48.3568 10.0738 48.6441 10.0259 48.9792 10.0259C49.6734 10.0259 50.2958 10.2652 50.8224 10.7198C51.4209 11.1984 51.7081 11.7966 51.7081 12.5144ZM50.7745 12.6341C50.7745 12.1555 50.607 11.7487 50.2718 11.4137C49.9367 11.0788 49.5058 10.9113 49.0271 10.9113C48.5244 10.9113 48.1174 11.1027 47.7823 11.4616C47.4711 11.7966 47.3275 12.2034 47.3275 12.658C47.3275 13.0887 47.4472 13.4476 47.7105 13.7826C48.0217 14.1655 48.4765 14.3569 49.0749 14.3569C49.5537 14.3569 49.9606 14.1894 50.2958 13.8544C50.6309 13.5434 50.7745 13.1366 50.7745 12.6341Z" fill="black"/>
+<path d="M57.7169 15.1465H56.8551V14.5244C56.4242 15.003 55.8258 15.2423 55.0837 15.2423C54.3895 15.2423 53.7911 15.003 53.2884 14.5483C52.7617 14.0458 52.4984 13.4237 52.4984 12.658C52.4984 11.8684 52.7857 11.2223 53.3362 10.7198C53.8389 10.2413 54.4613 10.0259 55.1555 10.0259C55.8737 10.0259 56.4482 10.2652 56.8791 10.7677V10.1456H57.7408V15.1465H57.7169ZM56.8551 12.658C56.8551 12.1794 56.6876 11.7727 56.3764 11.4137C56.0412 11.0788 55.6582 10.9113 55.1795 10.9113C54.6768 10.9113 54.2698 11.0788 53.9108 11.4377C53.5756 11.7727 53.4081 12.1316 53.4081 12.5144C53.4081 13.0169 53.5517 13.4476 53.8629 13.8066C54.1741 14.1894 54.581 14.3569 55.0837 14.3569C55.5625 14.3569 55.9694 14.1894 56.3285 13.8544C56.6636 13.5434 56.8551 13.1366 56.8551 12.658Z" fill="black"/>
+<path d="M63.725 13.4955C63.4377 14.0698 63.1026 14.5005 62.7196 14.7876C62.2887 15.0987 61.786 15.2662 61.1636 15.2662C60.4694 15.2662 59.847 15.0269 59.3204 14.5244C58.7698 13.998 58.4825 13.3759 58.4825 12.6102H58.5304C58.5304 12.6102 58.5304 12.6341 58.5065 12.658C58.5065 11.8684 58.7698 11.2223 59.3204 10.7198C59.7991 10.2652 60.3736 10.0259 61.0439 10.0259C61.6663 10.0259 62.1929 10.1934 62.6717 10.5045C63.1265 10.8155 63.4856 11.2702 63.701 11.8445H62.6956C62.3605 11.2462 61.8099 10.9352 61.0678 10.9352C60.5891 10.9352 60.2061 11.1027 59.8949 11.4377C59.5837 11.7727 59.4161 12.1794 59.4161 12.658C59.4161 13.1366 59.5837 13.5673 59.9188 13.9023C60.254 14.2373 60.6609 14.4048 61.1397 14.4048C61.4508 14.4048 61.762 14.333 62.0493 14.1655C62.3366 13.998 62.552 13.7826 62.7196 13.5194H63.725V13.4955Z" fill="black"/>
+<path d="M68.9191 15.1465H68.0095V12.2752C68.0095 11.8923 67.8898 11.5573 67.6265 11.318C67.3871 11.0788 67.052 10.9352 66.669 10.9352C66.286 10.9352 65.9748 11.0548 65.7354 11.2702C65.496 11.5095 65.3763 11.7966 65.3763 12.1795V15.1465H64.4667V8.47058H65.3763V10.5523C65.7354 10.1934 66.1663 10.0259 66.6929 10.0259C67.2674 10.0259 67.7701 10.2173 68.201 10.6241C68.6558 11.0548 68.8952 11.6052 68.8952 12.2752V15.1465H68.9191Z" fill="black"/>
+<path d="M74.8562 12.993H70.6192C70.691 13.4237 70.9064 13.7587 71.2416 14.0219C71.5528 14.2372 71.8879 14.3569 72.2469 14.3569C72.5821 14.3569 72.8933 14.2612 73.2045 14.0697C73.5157 13.8783 73.7311 13.6151 73.8508 13.304H74.7844C74.545 13.974 74.162 14.4526 73.6593 14.7876C73.2284 15.0747 72.7497 15.2183 72.223 15.2183C71.5528 15.2183 70.9782 14.979 70.4995 14.5005C69.9968 13.974 69.7335 13.3519 69.7335 12.5862C69.7335 11.7966 69.9968 11.1505 70.5474 10.6719C71.0501 10.2173 71.6246 10.002 72.2948 10.002C72.9651 10.002 73.5635 10.2173 74.0423 10.6719C74.5929 11.1744 74.8801 11.8684 74.8801 12.7298V12.993H74.8562ZM73.9226 12.1555C73.8269 11.7726 73.6114 11.4855 73.3002 11.2462C72.989 11.0069 72.6539 10.8873 72.2709 10.8873C71.7921 10.8873 71.3852 11.0548 71.074 11.3659C70.8585 11.5812 70.691 11.8444 70.6192 12.1555H73.9226Z" fill="black"/>
+<path d="M7.68626 8.13556C7.68626 8.13556 -8.95063 18.2811 6.72874 28.3549C9.74493 30.317 20.6846 35.7726 20.3734 40.8215C20.3734 40.8215 27.0042 31.0109 17.3093 24.8374C7.35113 18.5204 4.86158 11.7726 7.68626 8.13556Z" fill="#ED1C24"/>
+<path d="M1.89333 27.5174C1.89333 27.5174 -4.04328 36.5144 7.63845 38.3569C8.78747 38.5005 17.2376 39.3858 19.4399 42.1615C19.4399 42.1615 19.2484 37.3758 12.3542 34.5523C5.48403 31.7288 2.65935 31.0349 1.89333 27.5174Z" fill="#ED1C24"/>
+<path d="M24.8739 18.0658C17.7404 10.6002 15.7535 5.98205 18.8176 0C18.8176 0 -2.46325 8.18344 18.5543 22.7079C26.0708 27.9003 24.826 33.2123 24.826 33.4038C25.999 32.1834 32.0074 25.5314 24.8739 18.0658Z" fill="#ED1C24"/>
+<path d="M115 17.8504C115 18.8315 114.234 19.5972 113.229 19.5972C112.223 19.5972 111.433 18.8315 111.433 17.8504C111.433 16.8933 112.223 16.1276 113.229 16.1276C114.234 16.1037 115 16.8933 115 17.8504ZM111.888 17.8504C111.888 18.6161 112.463 19.2383 113.253 19.2383C114.019 19.2383 114.569 18.6161 114.569 17.8744C114.569 17.1087 114.019 16.4865 113.229 16.4865C112.439 16.4626 111.888 17.0847 111.888 17.8504ZM112.941 18.7597H112.534V17.0369C112.702 17.0129 112.917 16.989 113.205 16.989C113.54 16.989 113.683 17.0369 113.803 17.1087C113.899 17.1804 113.971 17.324 113.971 17.4915C113.971 17.6829 113.827 17.8265 113.612 17.8983V17.9222C113.779 17.994 113.875 18.1136 113.923 18.3529C113.971 18.6161 114.019 18.7118 114.042 18.7836H113.612C113.564 18.7118 113.516 18.5683 113.468 18.3529C113.444 18.1615 113.324 18.0897 113.109 18.0897H112.917V18.7597H112.941ZM112.965 17.7786H113.157C113.372 17.7786 113.564 17.7069 113.564 17.5154C113.564 17.3479 113.444 17.2522 113.205 17.2522C113.109 17.2522 113.013 17.2522 112.989 17.2762V17.7786H112.965Z" fill="black"/>
+</svg>
diff --git a/public/img/menu.svg b/public/img/menu.svg
new file mode 100644
index 0000000..6511d02
--- /dev/null
+++ b/public/img/menu.svg
@@ -0,0 +1 @@
+<svg aria-hidden="true" focusable="false" data-prefix="far" data-icon="bars" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="#000" d="M436 124H12c-6.627 0-12-5.373-12-12V80c0-6.627 5.373-12 12-12h424c6.627 0 12 5.373 12 12v32c0 6.627-5.373 12-12 12zm0 160H12c-6.627 0-12-5.373-12-12v-32c0-6.627 5.373-12 12-12h424c6.627 0 12 5.373 12 12v32c0 6.627-5.373 12-12 12zm0 160H12c-6.627 0-12-5.373-12-12v-32c0-6.627 5.373-12 12-12h424c6.627 0 12 5.373 12 12v32c0 6.627-5.373 12-12 12z" class=""></path></svg>
\ No newline at end of file
diff --git a/public/img/poweredby/banner-bg.png b/public/img/poweredby/banner-bg.png
new file mode 100644
index 0000000..26255bf
--- /dev/null
+++ b/public/img/poweredby/banner-bg.png
Binary files differ
diff --git a/public/img/poweredby/banner-bg.svg b/public/img/poweredby/banner-bg.svg
new file mode 100644
index 0000000..49709eb
--- /dev/null
+++ b/public/img/poweredby/banner-bg.svg
@@ -0,0 +1,54 @@
+<svg width="354" height="197" viewBox="0 0 354 197" fill="none" xmlns="http://www.w3.org/2000/svg">
+<mask id="mask0_3:372" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="354" height="197">
+<rect width="354" height="197" rx="10" fill="#E8F2FA"/>
+</mask>
+<g mask="url(#mask0_3:372)">
+<path d="M211 29H226.578C232.101 29 236.578 33.4772 236.578 39V158C236.578 163.523 241.055 168 246.578 168H324C329.523 168 334 163.523 334 158V97.7527" stroke="url(#paint0_linear_3:372)"/>
+<circle cx="182" cy="23" r="30.5" fill="#E8F2FA" stroke="white"/>
+<circle cx="173" cy="24" r="30.5" fill="#E8F2FA" stroke="white"/>
+<circle cx="159" cy="25" r="30.5" fill="#E8F2FA" stroke="white"/>
+<circle cx="47" cy="157" r="42" fill="url(#paint1_linear_3:372)"/>
+<circle cx="46.644" cy="143.831" r="9.61017" fill="url(#paint2_linear_3:372)"/>
+<path d="M47 157C35.5986 157 26.356 166.243 26.356 177.644H67.6441C67.6441 166.243 58.4014 157 47 157Z" fill="url(#paint3_linear_3:372)"/>
+<path d="M79 129V73.3488C79 67.826 74.5228 63.3488 69 63.3488H48C42.4772 63.3488 38 58.8717 38 53.3488V35C38 29.4771 42.4772 25 48 25H79" stroke="white"/>
+<circle cx="335" cy="70" r="42" fill="url(#paint4_linear_3:372)"/>
+<circle cx="334.644" cy="56.8305" r="9.61017" fill="url(#paint5_linear_3:372)"/>
+<path d="M335 70C323.599 70 314.356 79.2427 314.356 90.6441H355.644C355.644 79.2427 346.401 70 335 70Z" fill="url(#paint6_linear_3:372)"/>
+<circle cx="140" cy="25" r="30.5" fill="#E8F2FA" stroke="white"/>
+<circle cx="139.737" cy="15.2797" r="6.59322" fill="#E8F2FA" stroke="white"/>
+<path d="M154.729 39.7373H125.271C125.535 31.8296 132.028 25.5 140 25.5C147.972 25.5 154.465 31.8296 154.729 39.7373Z" fill="#E8F2FA" stroke="white"/>
+<circle cx="109" cy="26" r="30.5" fill="#E8F2FA" stroke="white"/>
+<circle cx="108.737" cy="16.2797" r="6.59322" fill="#E8F2FA" stroke="white"/>
+<path d="M123.729 40.7373H94.2711C94.5347 32.8296 101.028 26.5 109 26.5C116.972 26.5 123.465 32.8296 123.729 40.7373Z" fill="#E8F2FA" stroke="white"/>
+</g>
+<defs>
+<linearGradient id="paint0_linear_3:372" x1="253.248" y1="103.233" x2="340.368" y2="97.4958" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0.36"/>
+</linearGradient>
+<linearGradient id="paint1_linear_3:372" x1="47" y1="115" x2="47" y2="199" gradientUnits="userSpaceOnUse">
+<stop stop-color="#F4898D"/>
+<stop offset="1" stop-color="#E8F2FA" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint2_linear_3:372" x1="46.644" y1="134.22" x2="46.644" y2="153.441" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0.42"/>
+</linearGradient>
+<linearGradient id="paint3_linear_3:372" x1="47" y1="157" x2="47" y2="177.644" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint4_linear_3:372" x1="335" y1="28" x2="335" y2="112" gradientUnits="userSpaceOnUse">
+<stop stop-color="#67B1ED"/>
+<stop offset="1" stop-color="#E8F2FA" stop-opacity="0.62"/>
+</linearGradient>
+<linearGradient id="paint5_linear_3:372" x1="334.644" y1="47.2203" x2="334.644" y2="66.4407" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0.42"/>
+</linearGradient>
+<linearGradient id="paint6_linear_3:372" x1="335" y1="70" x2="335" y2="90.6441" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+</defs>
+</svg>
diff --git a/public/img/poweredby/logos/apple.png b/public/img/poweredby/logos/apple.png
new file mode 100644
index 0000000..77c2d1a
--- /dev/null
+++ b/public/img/poweredby/logos/apple.png
Binary files differ
diff --git a/public/img/poweredby/logos/banco-do-brasil.svg b/public/img/poweredby/logos/banco-do-brasil.svg
new file mode 100644
index 0000000..9192f67
--- /dev/null
+++ b/public/img/poweredby/logos/banco-do-brasil.svg
@@ -0,0 +1,80 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="69.991104mm"
+   height="11.8606mm"
+   viewBox="0 0 247.99998 42.025746"
+   id="svg3349"
+   version="1.1"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="Banco_do_Brasil_logo.svg">
+  <defs
+     id="defs3351" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1.4"
+     inkscape:cx="140.2092"
+     inkscape:cy="-61.422389"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     inkscape:window-width="1280"
+     inkscape:window-height="703"
+     inkscape:window-x="298"
+     inkscape:window-y="185"
+     inkscape:window-maximized="0" />
+  <metadata
+     id="metadata3354">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(-293.14287,-491.34933)">
+    <g
+       id="g21587"
+       transform="matrix(2.5247497,0,0,2.5247497,-527.83489,-680.23413)">
+      <path
+         inkscape:connector-curvature="0"
+         id="path10055"
+         d="m 325.17194,480.68496 98.22755,0 0,-16.64551 -98.22755,0 z"
+         style="clip-rule:nonzero;fill:#fde100;fill-opacity:1;fill-rule:nonzero;stroke:none" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path10057"
+         d="m 329.75202,470.27969 2.59766,1.7334 3.12011,-2.08008 -1.29882,-0.86915 1.68945,-1.12304 3.6377,2.42675 -5.97657,3.98438 1.29883,0.86914 7.41211,-4.9414 -6.24024,-4.16017 z m 12.48047,4.16015 -2.60253,-1.73339 -3.12013,2.08007 1.29883,0.86425 -1.68946,1.12794 -3.63768,-2.42676 5.97656,-3.98438 -1.29884,-0.86913 -7.40722,4.9414 6.24023,4.16016 z m 0,-6.58692 -1.30371,0.86915 -1.29882,-0.86915 2.60253,-1.7334 z m -12.48047,9.01368 1.29882,-0.86914 1.29884,0.86914 -2.59766,1.7334 z"
+         style="clip-rule:nonzero;fill:#003882;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path10059"
+         d="m 348.13093,476.51504 c 0.81543,0 2.84179,-0.0928 2.84179,-2.19727 0,-1.14257 -0.35644,-1.93847 -1.72363,-2.10937 1.04493,-0.20508 1.56738,-0.89844 1.56738,-1.85548 0,-1.77246 -1.20605,-2.15331 -2.67578,-2.15331 l -3.41308,0 0,8.31543 z m 61.25488,0 c 1.14259,0 2.29493,-0.15137 2.29493,-1.91407 0,-2.03613 -2.94922,-1.83105 -2.94922,-3.125 0,-0.46875 0.28808,-0.72265 0.77148,-0.72265 l 1.58204,0 0,-1.04981 -2.22169,0 c -1.82129,0 -2.2705,0.8252 -2.2705,1.88965 0,2.02636 3.2666,1.97754 3.2666,3.12011 0,0.45899 -0.24903,0.77149 -0.75195,0.77149 l -2.33888,0 -1.7334,-5.77636 -2.07518,0 -1.91895,6.19629 -1.20606,-2.66602 c 0.88379,-0.16113 1.23536,-0.72266 1.24024,-1.74805 0,-1.16211 -0.69336,-1.78222 -1.7627,-1.78222 l -3.24707,0 0,6.80664 1.77246,0 0,-5.76172 0.59082,0 c 0.49805,0 0.93262,0.3662 0.93262,1.03515 0,0.56642 -0.2832,1.03517 -0.7373,1.00587 l -0.49805,0.005 1.61621,3.71582 2.8418,0 0.4248,-1.50879 1.83594,0 0.41992,1.50879 z m -4.80956,-2.54883 -1.31348,0 0.625,-2.78809 z m -19.77052,2.74903 c 2.65137,0 2.65137,-1.7627 2.65137,-3.56934 0,-1.83106 0,-3.57423 -2.65137,-3.57423 -2.65136,0 -2.65136,1.74317 -2.65136,3.57423 0,1.80664 0,3.56934 2.65136,3.56934 m 0,-1.03517 c -0.77636,0 -0.8789,-0.76171 -0.8789,-2.53417 0,-1.77246 0.1025,-2.53906 0.8789,-2.53906 0.77637,0 0.87403,0.7666 0.87403,2.53906 0,1.77246 -0.0976,2.53417 -0.87403,2.53417 m -8.41796,0.83497 2.58789,0 c 2.71484,0 2.53417,-2.40234 2.53417,-3.45215 0,-2.12403 -0.39062,-3.37403 -2.4707,-3.37403 l -2.65136,0 z m 1.72851,-5.7666 0.69824,0 c 0.95215,0 0.95215,1.1084 0.95215,2.36327 0,1.71388 -0.16601,2.36818 -0.99609,2.36818 l -0.6543,0 z m 13.75488,2.13867 0.42969,0 c 0.83008,0 1.09375,0.4541 1.09375,1.18653 0,1.16698 -0.78613,1.17675 -1.13769,1.17675 l -0.91309,0 0,-2.34863 z m -0.52734,-1.26954 0,-2.12402 1.01563,0 c 0.55663,0 0.94726,0.44434 0.94726,1.05957 0,0.80567 -0.50293,1.05469 -0.85938,1.05469 l -0.57617,0 z m 1.30371,4.90235 c 0.81543,0 2.8418,-0.0928 2.8418,-2.20215 0,-1.14257 -0.35645,-1.9336 -1.71875,-2.10937 1.04492,-0.20508 1.56738,-0.89844 1.56738,-1.85548 0,-1.77246 -1.21094,-2.15331 -2.67578,-2.15331 l -3.41797,0 0,8.32031 z m 26.17676,-0.005 0,-1.03027 -2.02148,0 0,-5.77636 -1.72852,0 0,6.80663 z m -4.76563,-6.80663 -1.73339,0 0,6.80663 1.73339,0 z m -42.20214,7.00683 c 2.65136,0 2.65136,-1.76758 2.65136,-3.58398 0,-1.84083 0,-3.58887 -2.65136,-3.58887 -2.64649,0 -2.64649,1.74804 -2.64649,3.58887 0,1.8164 0,3.58398 2.64649,3.58398 m 0,-1.03516 c -0.77637,0 -0.87402,-0.77149 -0.87402,-2.54882 0,-1.78223 0.0976,-2.54883 0.87402,-2.54883 0.77636,0 0.8789,0.7666 0.8789,2.54883 0,1.77733 -0.1025,2.54882 -0.8789,2.54882 m -17.1338,-1.71875 -1.31835,0 0.625,-2.7832 z m -1.99706,2.55371 0.42968,-1.50878 1.83594,0 0.41993,1.50878 1.81151,0 -2.04589,-6.80663 -2.07031,0 -2.08985,6.80663 z m 13.59375,0.2002 c 1.5039,0 2.38281,-0.59571 2.38281,-2.45117 l -1.71388,0 c -0.0195,0.54687 -0.0292,1.41601 -0.66893,1.41601 -0.72754,0 -0.83497,-0.44434 -0.83497,-2.54882 0,-2.18262 0.16602,-2.54883 0.80078,-2.54883 0.45411,0 0.65919,0.34179 0.65919,1.26953 l 1.7041,0 c 0.0635,-1.49414 -0.7666,-2.30957 -2.40723,-2.30957 -2.44141,0 -2.50976,1.55273 -2.50976,3.58887 0,2.0459 -0.0635,3.58398 2.58789,3.58398 m -7.22169,-0.2002 0,-4.53613 1.88965,4.53613 2.0459,0 0,-6.80663 -1.47461,0 0,4.39941 -1.84082,-4.39941 -2.09472,0 0,6.80663 z m -11.86035,-3.6377 0.26856,0 c 1.01563,0 1.33789,0.44923 1.33789,1.18653 0,1.16211 -0.96191,1.17187 -1.3916,1.17187 l -0.62989,0 0,-2.34862 z m -0.41504,-1.27441 0,-2.12402 0.75195,0 c 0.6836,0 1.16211,0.44922 1.16211,1.05957 0,0.80566 -0.61523,1.05958 -1.05468,1.05958 l -0.708,0 z"
+         style="clip-rule:nonzero;fill:#003882;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+    </g>
+  </g>
+</svg>
diff --git a/public/img/poweredby/logos/bloomberg.svg b/public/img/poweredby/logos/bloomberg.svg
new file mode 100644
index 0000000..82c42a5
--- /dev/null
+++ b/public/img/poweredby/logos/bloomberg.svg
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
+	<!ENTITY ns_svg "http://www.w3.org/2000/svg">
+	<!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
+]>
+<svg  version="1.1" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="300.005" height="60.469"
+	 viewBox="0 0 300.005 60.469" overflow="visible" enable-background="new 0 0 300.005 60.469" xml:space="preserve">
+<path fill="#010101" d="M7.897,7.813h6.52c5.959,0,8.585,1.883,8.585,5.708c0,3.324-2.626,5.581-7.897,5.581H7.897V7.813z M0,45.423
+	h15.98c8.398,0,16.796-3,16.796-12.657c0-5.708-4.002-10.09-9.579-10.724V21.91c4.563-1.367,7.71-4.69,7.71-9.706
+	c0-8.088-6.903-11.157-13.61-11.157H0V45.423z M7.897,25.868h7.582c6.392,0,9.411,1.632,9.411,6.274
+	c0,5.821-5.654,6.515-9.726,6.515H7.897V25.868z"/>
+<line fill="none" stroke="#010101" stroke-width="7.5" stroke-miterlimit="10" x1="41.706" y1="45.423" x2="41.706" y2="0"/>
+<path fill="#010101" d="M58.011,30.382c0-4.701,3.324-9.022,8.841-9.022c5.517,0,8.831,4.322,8.831,9.022s-3.314,9.023-8.831,9.023
+	C61.334,39.405,58.011,35.083,58.011,30.382 M50.488,30.382c0,9.465,7.267,15.789,16.364,15.789c9.086,0,16.364-6.323,16.364-15.789
+	s-7.277-15.798-16.364-15.798C57.755,14.583,50.488,20.917,50.488,30.382"/>
+<path fill="#010101" d="M94.131,30.382c0-4.701,3.324-9.022,8.841-9.022c5.517,0,8.831,4.322,8.831,9.022s-3.314,9.023-8.831,9.023
+	C97.455,39.405,94.131,35.083,94.131,30.382 M86.608,30.382c0,9.465,7.268,15.789,16.364,15.789c9.086,0,16.364-6.323,16.364-15.789
+	s-7.277-15.798-16.364-15.798C93.875,14.583,86.608,20.917,86.608,30.382"/>
+<path fill="#010101" d="M123.918,15.336h7.149v4.706h0.118c1.318-2.822,4.199-5.463,9.214-5.463c4.642,0,7.848,1.814,9.411,5.581
+	c2.193-3.816,5.389-5.581,9.893-5.581c8.024,0,10.848,5.713,10.848,12.922v17.923h-7.523V28.376c0-3.757-1.121-7.017-5.576-7.017
+	c-4.7,0-6.461,3.884-6.461,7.764v16.3h-7.513V27.5c0-3.708-1.505-6.141-5.143-6.141c-4.947,0-6.894,3.624-6.894,7.641v16.423h-7.523
+	V15.336z"/>
+<path fill="#010101" d="M201.597,30.382c0,4.706-3.314,9.023-8.841,9.023c-5.518,0-8.841-4.317-8.841-9.023
+	c0-4.701,3.323-9.033,8.841-9.033C198.283,21.349,201.597,25.681,201.597,30.382 M176.648,45.423h7.149v-4.51h0.118
+	c2.202,3.624,6.146,5.257,10.354,5.257c9.264,0,14.85-6.894,14.85-15.789c0-8.9-5.959-15.798-14.544-15.798
+	c-5.636,0-8.654,2.626-10.218,4.583h-0.187V0h-7.523V45.423z"/>
+<path fill="#010101" d="M220.045,27.373c0.561-4.332,3.324-7.149,7.769-7.149c4.701,0,7.582,2.759,7.651,7.149H220.045z
+	 M242.988,33.013v-2.065c0-10.473-5.703-16.364-14.102-16.364c-9.106,0-16.364,6.333-16.364,15.798s7.258,15.789,16.364,15.789
+	c4.75,0,9.214-1.691,12.715-6.009l-5.389-4.066c-1.878,2.307-4.327,4.066-8.084,4.066c-4.198,0-7.592-2.699-8.083-7.149H242.988z"/>
+<path fill="#010101" d="M247.885,15.336h7.523v4.765h0.128c1.632-3.447,4.946-5.522,8.899-5.522c0.944,0,1.819,0.192,2.694,0.447
+	v7.268c-1.249-0.31-2.448-0.561-3.639-0.561c-7.08,0-8.083,5.959-8.083,7.592v16.099h-7.523V15.336z"/>
+<path fill="#010101" d="M283.957,21.359c5.448,0,8.899,3.624,8.899,8.84c0,5.006-3.383,8.831-8.959,8.831
+	c-5.074,0-8.841-3.948-8.841-8.713C275.056,24.983,278.685,21.359,283.957,21.359 M292.856,15.336v4.514h-0.118
+	c-2.202-3.639-6.155-5.271-10.354-5.271c-9.273,0-14.85,6.898-14.85,15.803c0,8.516,5.959,15.415,14.978,15.415
+	c3.766,0,7.65-1.436,9.854-4.381h0.107v2.198c0,5.949-2.242,10.09-9.519,10.09c-4.199,0-7.337-1.574-10.346-4.347l-4.504,6.155
+	c4.248,3.776,9.332,4.957,14.918,4.957c11.723,0,16.983-6.903,16.983-17.741V15.336H292.856z"/>
+</svg>
diff --git a/public/img/poweredby/logos/dreamworks.png b/public/img/poweredby/logos/dreamworks.png
new file mode 100644
index 0000000..9258f3d
--- /dev/null
+++ b/public/img/poweredby/logos/dreamworks.png
Binary files differ
diff --git a/public/img/poweredby/logos/microsoft.svg b/public/img/poweredby/logos/microsoft.svg
new file mode 100644
index 0000000..ab20ab7
--- /dev/null
+++ b/public/img/poweredby/logos/microsoft.svg
@@ -0,0 +1,7 @@
+<svg width="338" height="72" viewBox="0 0 338 72" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M140.4 14.4V57.5999H132.9V23.7H132.8L119.4 57.5999H114.4L100.7 23.7H100.6V57.5999H93.7V14.4H104.5L116.9 46.4H117.1L130.2 14.4H140.4V14.4ZM146.6 17.7C146.6 16.5 147 15.5 147.9 14.7C148.8 13.9 149.8 13.5 151 13.5C152.3 13.5 153.4 13.9 154.2 14.7C155 15.5 155.5 16.5 155.5 17.7C155.5 18.9 155.1 19.9 154.2 20.7C153.3 21.5 152.3 21.9 151 21.9C149.7 21.9 148.7 21.5 147.9 20.7C147.1 19.8 146.6 18.8 146.6 17.7ZM154.7 26.6V57.5999H147.4V26.6H154.7ZM176.8 52.2999C177.9 52.2999 179.1 52.1 180.4 51.5C181.7 51 182.9 50.3 184 49.5V56.2999C182.8 56.9999 181.5 57.4999 180 57.7999C178.5 58.0999 176.9 58.2999 175.1 58.2999C170.5 58.2999 166.8 56.9 164 54C161.1 51.1 159.7 47.4 159.7 43C159.7 38 161.2 33.9 164.1 30.7C167 27.5 171.1 25.9 176.5 25.9C177.9 25.9 179.3 26.1 180.6 26.4C182 26.7 183.1 27.2 183.9 27.6V34.5999C182.8 33.7999 181.6 33.1 180.5 32.7C179.3 32.3 178.1 32 176.9 32C174 32 171.7 32.8999 169.9 34.7999C168.1 36.6999 167.3 39.2 167.3 42.4C167.3 45.5 168.2 48 169.9 49.7C171.6 51.4 173.9 52.2999 176.8 52.2999ZM204.7 26.1C205.3 26.1 205.8 26.1 206.3 26.2C206.8 26.3 207.2 26.4 207.5 26.5V33.9C207.1 33.6 206.6 33.2999 205.8 33.0999C205 32.8999 204.2 32.7 203.1 32.7C201.3 32.7 199.8 33.5 198.6 35C197.4 36.5 196.7 38.8 196.7 42V57.5999H189.4V26.6H196.7V31.5H196.8C197.5 29.8 198.5 28.5 199.8 27.5C201.2 26.6 202.8 26.1 204.7 26.1ZM207.9 42.5999C207.9 37.4999 209.4 33.4 212.2 30.4C215.1 27.4 219.1 25.9 224.2 25.9C229 25.9 232.8 27.3 235.5 30.2C238.2 33.1 239.6 37 239.6 41.9C239.6 46.9 238.1 50.9 235.3 53.9C232.4 56.9 228.5 58.4 223.5 58.4C218.7 58.4 214.9 57 212.1 54.2C209.3 51.3 207.9 47.3999 207.9 42.5999ZM215.5 42.2999C215.5 45.4999 216.2 48 217.7 49.7C219.2 51.4 221.3 52.2999 224 52.2999C226.6 52.2999 228.7 51.5 230.1 49.7C231.5 48 232.2 45.4999 232.2 42.0999C232.2 38.7999 231.5 36.3 230.1 34.5C228.7 32.8 226.6 31.9 224.1 31.9C221.4 31.9 219.4 32.7999 217.9 34.5999C216.2 36.4999 215.5 38.9999 215.5 42.2999ZM250.5 34.7999C250.5 35.7999 250.8 36.6999 251.5 37.2999C252.2 37.8999 253.6 38.6 255.9 39.5C258.8 40.7 260.9 42 262 43.4C263.2 44.9 263.8 46.6 263.8 48.7C263.8 51.6 262.7 53.9 260.4 55.7C258.2 57.5 255.1 58.2999 251.3 58.2999C250 58.2999 248.6 58.0999 247 57.7999C245.4 57.4999 244.1 57.0999 243 56.5999V49.4C244.3 50.3 245.8 51.0999 247.3 51.5999C248.8 52.0999 250.2 52.4 251.5 52.4C253.1 52.4 254.4 52.2 255.1 51.7C255.9 51.2 256.3 50.5 256.3 49.4C256.3 48.4 255.9 47.5999 255.1 46.7999C254.3 46.0999 252.7 45.3 250.5 44.4C247.8 43.3 245.9 41.9999 244.8 40.5999C243.7 39.1999 243.1 37.4 243.1 35.2C243.1 32.4 244.2 30.0999 246.4 28.2999C248.6 26.4999 251.5 25.6 255 25.6C256.1 25.6 257.3 25.7 258.6 26C259.9 26.3 261.1 26.6 262 26.9V34C261 33.4 259.9 32.7999 258.6 32.2999C257.3 31.7999 256 31.6 254.8 31.6C253.4 31.6 252.3 31.9 251.6 32.4C250.9 33.1 250.5 33.7999 250.5 34.7999ZM266.9 42.5999C266.9 37.4999 268.4 33.4 271.2 30.4C274.1 27.4 278.1 25.9 283.2 25.9C288 25.9 291.8 27.3 294.5 30.2C297.2 33.1 298.6 37 298.6 41.9C298.6 46.9 297.1 50.9 294.3 53.9C291.4 56.9 287.5 58.4 282.5 58.4C277.7 58.4 273.9 57 271.1 54.2C268.4 51.3 266.9 47.3999 266.9 42.5999ZM274.5 42.2999C274.5 45.4999 275.2 48 276.7 49.7C278.2 51.4 280.3 52.2999 283 52.2999C285.6 52.2999 287.7 51.5 289.1 49.7C290.5 48 291.2 45.4999 291.2 42.0999C291.2 38.7999 290.5 36.3 289.1 34.5C287.7 32.8 285.6 31.9 283.1 31.9C280.4 31.9 278.4 32.7999 276.9 34.5999C275.3 36.4999 274.5 38.9999 274.5 42.2999ZM322.9 32.5999H312V57.5999H304.6V32.5999H299.4V26.6H304.6V22.3C304.6 19.1 305.7 16.4 307.8 14.3C309.9 12.2 312.6 11.2 315.9 11.2C316.8 11.2 317.6 11.3 318.3 11.3C319 11.3 319.6 11.5 320.1 11.7V18C319.9 17.9 319.4 17.7 318.8 17.5C318.2 17.3 317.5 17.2 316.7 17.2C315.2 17.2 314 17.7 313.2 18.6C312.4 19.5 312 21 312 22.8V26.5H322.9V19.5L330.2 17.3V26.5H337.6V32.5H330.2V47C330.2 48.9 330.6 50.2 331.2 51C331.9 51.8 333 52.2 334.5 52.2C334.9 52.2 335.4 52.1 336 51.9C336.6 51.7 337.1 51.5 337.5 51.2V57.2C337 57.5 336.3 57.7 335.2 57.9C334.1 58.1 333.1 58.2 332 58.2C328.9 58.2 326.6 57.3999 325.1 55.7999C323.6 54.1999 322.8 51.7 322.8 48.4L322.9 32.5999Z" fill="#737373"/>
+<path d="M34.2 0H0V34.2H34.2V0Z" fill="#F25022"/>
+<path d="M72 0H37.8V34.2H72V0Z" fill="#7FBA00"/>
+<path d="M34.2 37.8H0V72H34.2V37.8Z" fill="#00A4EF"/>
+<path d="M72 37.8H37.8V72H72V37.8Z" fill="#FFB900"/>
+</svg>
diff --git a/public/img/poweredby/logos/netflix.svg b/public/img/poweredby/logos/netflix.svg
new file mode 100644
index 0000000..0ce1bf4
--- /dev/null
+++ b/public/img/poweredby/logos/netflix.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="1024" height="276.742" viewBox="0 0 1024 276.742"><path d="M140.803 258.904c-15.404 2.705-31.079 3.516-47.294 5.676l-49.458-144.856v151.073c-15.404 1.621-29.457 3.783-44.051 5.945v-276.742h41.08l56.212 157.021v-157.021h43.511v258.904zm85.131-157.558c16.757 0 42.431-.811 57.835-.811v43.24c-19.189 0-41.619 0-57.835.811v64.322c25.405-1.621 50.809-3.785 76.482-4.596v41.617l-119.724 9.461v-255.39h119.724v43.241h-76.482v58.105zm237.284-58.104h-44.862v198.908c-14.594 0-29.188 0-43.239.539v-199.447h-44.862v-43.242h132.965l-.002 43.242zm70.266 55.132h59.187v43.24h-59.187v98.104h-42.433v-239.718h120.808v43.241h-78.375v55.133zm148.641 103.507c24.594.539 49.456 2.434 73.51 3.783v42.701c-38.646-2.434-77.293-4.863-116.75-5.676v-242.689h43.24v201.881zm109.994 49.457c13.783.812 28.377 1.623 42.43 3.242v-254.58h-42.43v251.338zm231.881-251.338l-54.863 131.615 54.863 145.127c-16.217-2.162-32.432-5.135-48.648-7.838l-31.078-79.994-31.617 73.51c-15.678-2.705-30.812-3.516-46.484-5.678l55.672-126.75-50.269-129.992h46.482l28.377 72.699 30.27-72.699h47.295z" fill="#d81f26"/></svg>
\ No newline at end of file
diff --git a/public/img/poweredby/logos/paypal.svg b/public/img/poweredby/logos/paypal.svg
new file mode 100644
index 0000000..150f7ba
--- /dev/null
+++ b/public/img/poweredby/logos/paypal.svg
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   viewBox="0 0 526.77502 140.375"
+   height="140.375"
+   width="526.77502"
+   xml:space="preserve"
+   version="1.1"
+   id="svg2"><metadata
+     id="metadata8"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
+     id="defs6" /><g
+     transform="matrix(1.25,0,0,-1.25,0,140.375)"
+     id="g10"><g
+       transform="scale(0.1,0.1)"
+       id="g12"><path
+         id="path14"
+         style="fill:#283b82;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 505.703,1122.93 -327.781,0 c -22.434,0 -41.508,-16.3 -45.008,-38.45 L 0.34375,243.961 C -2.29297,227.383 10.5547,212.426 27.375,212.426 l 156.488,0 c 22.43,0 41.504,16.293 45.004,38.484 l 35.754,226.699 c 3.453,22.196 22.574,38.493 44.957,38.493 l 103.766,0 c 215.918,0 340.531,104.484 373.078,311.535 14.664,90.586 0.621,161.758 -41.797,211.603 -46.586,54.74 -129.215,83.69 -238.922,83.69 z M 543.52,815.941 C 525.594,698.324 435.727,698.324 348.832,698.324 l -49.461,0 34.699,219.656 c 2.063,13.278 13.563,23.055 26.985,23.055 l 22.668,0 c 59.191,0 115.031,0 143.882,-33.738 17.208,-20.133 22.481,-50.039 15.915,-91.356" /><path
+         id="path16"
+         style="fill:#283b82;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 1485.5,819.727 -156.96,0 c -13.37,0 -24.92,-9.778 -26.99,-23.055 l -6.94,-43.902 -10.98,15.914 c -33.98,49.32 -109.76,65.804 -185.39,65.804 -173.451,0 -321.599,-131.371 -350.451,-315.656 -15,-91.926 6.328,-179.828 58.473,-241.125 47.832,-56.363 116.273,-79.848 197.708,-79.848 139.76,0 217.26,89.86 217.26,89.86 l -7,-43.614 c -2.64,-16.679 10.21,-31.632 26.94,-31.632 l 141.38,0 c 22.48,0 41.46,16.297 45.01,38.484 l 84.83,537.234 c 2.69,16.536 -10.11,31.536 -26.89,31.536 z M 1266.71,514.23 c -15.14,-89.671 -86.32,-149.875 -177.09,-149.875 -45.58,0 -82.01,14.622 -105.401,42.325 -23.196,27.511 -32.016,66.668 -24.633,110.285 14.137,88.906 86.514,151.066 175.894,151.066 44.58,0 80.81,-14.808 104.68,-42.746 23.92,-28.23 33.4,-67.629 26.55,-111.055" /><path
+         id="path18"
+         style="fill:#283b82;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2321.47,819.727 -157.73,0 c -15.05,0 -29.19,-7.477 -37.72,-19.989 L 1908.47,479.289 1816.26,787.23 c -5.8,19.27 -23.58,32.497 -43.71,32.497 l -155,0 c -18.84,0 -31.92,-18.403 -25.93,-36.137 L 1765.36,273.727 1602.02,43.1406 C 1589.17,24.9805 1602.11,0 1624.31,0 l 157.54,0 c 14.95,0 28.95,7.28906 37.43,19.5586 L 2343.9,776.828 c 12.56,18.121 -0.33,42.899 -22.43,42.899" /><path
+         id="path20"
+         style="fill:#469bdb;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 2843.7,1122.93 -327.83,0 c -22.38,0 -41.46,-16.3 -44.96,-38.45 L 2338.34,243.961 c -2.63,-16.578 10.21,-31.535 26.94,-31.535 l 168.23,0 c 15.62,0 29,11.402 31.44,26.933 l 37.62,238.25 c 3.45,22.196 22.58,38.493 44.96,38.493 l 103.72,0 c 215.96,0 340.53,104.484 373.12,311.535 14.72,90.586 0.58,161.758 -41.84,211.603 -46.54,54.74 -129.12,83.69 -238.83,83.69 z m 37.82,-306.989 C 2863.64,698.324 2773.78,698.324 2686.83,698.324 l -49.41,0 34.75,219.656 c 2.06,13.278 13.46,23.055 26.93,23.055 l 22.67,0 c 59.15,0 115.03,0 143.88,-33.738 17.21,-20.133 22.43,-50.039 15.87,-91.356" /><path
+         id="path22"
+         style="fill:#469bdb;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 3823.46,819.727 -156.87,0 c -13.47,0 -24.93,-9.778 -26.94,-23.055 l -6.95,-43.902 -11.02,15.914 c -33.98,49.32 -109.71,65.804 -185.34,65.804 -173.46,0 -321.55,-131.371 -350.41,-315.656 -14.95,-91.926 6.28,-179.828 58.43,-241.125 47.93,-56.363 116.27,-79.848 197.7,-79.848 139.76,0 217.26,89.86 217.26,89.86 l -7,-43.614 c -2.63,-16.679 10.21,-31.632 27.04,-31.632 l 141.34,0 c 22.38,0 41.46,16.297 44.96,38.484 l 84.88,537.234 c 2.58,16.536 -10.26,31.536 -27.08,31.536 z M 3604.66,514.23 c -15.05,-89.671 -86.32,-149.875 -177.09,-149.875 -45.49,0 -82.01,14.622 -105.4,42.325 -23.19,27.511 -31.92,66.668 -24.63,110.285 14.23,88.906 86.51,151.066 175.9,151.066 44.57,0 80.8,-14.808 104.67,-42.746 24.01,-28.23 33.5,-67.629 26.55,-111.055" /><path
+         id="path24"
+         style="fill:#469bdb;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="M 4008.51,1099.87 3873.97,243.961 c -2.63,-16.578 10.21,-31.535 26.94,-31.535 l 135.25,0 c 22.48,0 41.56,16.293 45.01,38.484 l 132.66,840.47 c 2.64,16.59 -10.2,31.59 -26.93,31.59 l -151.46,0 c -13.37,-0.04 -24.87,-9.83 -26.93,-23.1" /></g></g></svg>
\ No newline at end of file
diff --git a/public/img/poweredby/logos/sberbank.svg b/public/img/poweredby/logos/sberbank.svg
new file mode 100644
index 0000000..e771f26
--- /dev/null
+++ b/public/img/poweredby/logos/sberbank.svg
@@ -0,0 +1,57 @@
+<svg width="210" height="33" viewBox="0 0 210 33" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M28.9083 6.35486C29.6749 7.35932 30.3239 8.45058 30.8421 9.60673L16.1419 20.5889L9.99829 16.6859V11.9904L16.1419 15.8934L28.9083 6.35486Z" fill="#21A038"/>
+<path d="M3.72827 16.3545C3.72827 16.1438 3.73334 15.9345 3.74348 15.7264L0.0202772 15.5415C0.00760464 15.8112 4.49933e-06 16.0835 4.49933e-06 16.3583C-0.00157962 18.5055 0.415154 20.6318 1.22631 22.6153C2.03746 24.5989 3.22706 26.4006 4.72687 27.9171L7.36783 25.2419C6.21333 24.0766 5.29746 22.6915 4.67286 21.1663C4.04826 19.6411 3.72725 18.0058 3.72827 16.3545Z" fill="url(#paint0_linear)"/>
+<path d="M16.1385 3.77747C16.3463 3.77747 16.5528 3.78518 16.7581 3.79545L16.9444 0.0208629C16.6775 0.00801981 16.4088 0.00159904 16.1385 0.00159904C14.0188 -0.00102064 11.9196 0.420712 9.96126 1.24258C8.00291 2.06445 6.22405 3.27027 4.72681 4.7908L7.36777 7.4673C8.51766 6.29688 9.8845 5.36835 11.3897 4.73512C12.8949 4.10189 14.5087 3.77643 16.1385 3.77747Z" fill="url(#paint1_linear)"/>
+<path d="M16.1385 28.9318C15.9307 28.9318 15.7241 28.9318 15.5176 28.9151L15.3313 32.6884C15.5991 32.7021 15.8682 32.709 16.1385 32.709C18.2573 32.7112 20.3555 32.2892 22.3128 31.4671C24.2701 30.645 26.0478 29.439 27.5439 27.9185L24.908 25.2433C23.7579 26.4131 22.3912 27.3411 20.8863 27.9741C19.3814 28.6071 17.7679 28.9326 16.1385 28.9318Z" fill="url(#paint2_linear)"/>
+<path d="M23.1339 5.97207L26.2716 3.6282C23.4037 1.27465 19.8238 -0.0065332 16.1335 2.50537e-05V3.77718C18.6324 3.77404 21.0733 4.53938 23.1339 5.97207Z" fill="url(#paint3_linear)"/>
+<path d="M32.2759 16.3545C32.2779 15.3719 32.1931 14.391 32.0224 13.4237L28.5489 16.018C28.5489 16.1298 28.5489 16.2415 28.5489 16.3545C28.5498 18.1118 28.1863 19.8497 27.4821 21.4555C26.7778 23.0613 25.7484 24.4992 24.4607 25.676L26.9661 28.4823C28.6402 26.9506 29.978 25.0795 30.8927 22.9903C31.8075 20.901 32.2787 18.6402 32.2759 16.3545Z" fill="#21A038"/>
+<path d="M16.1386 28.9318C14.4045 28.9324 12.6896 28.5639 11.1049 27.8502C9.52028 27.1365 8.10119 26.0934 6.93956 24.7886L4.17188 27.3264C5.68303 29.0233 7.52923 30.3793 9.59077 31.3066C11.6523 32.2338 13.8831 32.7116 16.1386 32.7089V28.9318Z" fill="url(#paint4_linear)"/>
+<path d="M7.81645 7.0329L5.31235 4.22668C3.63776 5.75806 2.29948 7.62906 1.3843 9.71834C0.469132 11.8076 -0.00249507 14.0685 9.92663e-06 16.3544H3.72828C3.72751 14.5972 4.09104 12.8593 4.79529 11.2535C5.49955 9.64775 6.52883 8.20981 7.81645 7.0329Z" fill="url(#paint5_linear)"/>
+<g clip-path="url(#clip0)">
+<path d="M93.1298 9.35282L97.7473 5.94421H82.2935V26.427H97.7473V23.0184H86.7031V17.7717H96.1243V14.3631H86.7031V9.35282H93.1298Z" fill="#21A038"/>
+<path d="M71.8952 13.9236H66.53V9.35147H75.0927L79.7074 5.9325H62.123V26.4153H71.3277C76.4883 26.4153 79.45 24.0717 79.45 19.9845C79.45 16.0744 76.7674 13.9236 71.8952 13.9236ZM71.1292 23.0056H66.53V17.3301H71.1292C73.9204 17.3301 75.2291 18.2812 75.2291 20.1679C75.2291 22.0545 73.8366 23.0056 71.1292 23.0056Z" fill="#21A038"/>
+<path d="M109.107 5.94128H100.695V26.424H105.104V20.6216H109.107C114.474 20.6216 117.794 17.7919 117.794 13.2705C117.794 8.74923 114.474 5.94128 109.107 5.94128ZM109.014 17.2104H105.104V9.35249H109.014C111.837 9.35249 113.395 10.7487 113.395 13.283C113.395 15.8173 111.837 17.2104 109.014 17.2104Z" fill="#21A038"/>
+<path d="M55.5064 21.5902C54.3674 22.2082 53.0913 22.5282 51.7962 22.5206C47.9198 22.5206 45.1077 19.7477 45.1077 15.9294C45.1077 12.111 47.9198 9.33209 51.7962 9.33209C53.1941 9.3083 54.563 9.73303 55.7029 10.5443L58.7871 8.2684L58.5785 8.11991C56.7794 6.53499 54.3755 5.69556 51.6239 5.69556C48.6394 5.69556 45.9332 6.70166 44.001 8.53205C43.024 9.47449 42.2514 10.6086 41.7311 11.8636C41.2109 13.1186 40.9542 14.4675 40.9773 15.8263C40.9566 17.1989 41.2121 18.5616 41.7285 19.8331C42.2449 21.1046 43.0116 22.2587 43.9829 23.2267C45.9241 25.1298 48.6243 26.1783 51.5876 26.1783C54.6839 26.1783 57.3902 25.0964 59.2226 23.1267L56.4619 21.066L55.5064 21.5902Z" fill="#21A038"/>
+<path d="M135.277 13.9236H129.914V9.35147H141.439V5.9325H125.504V26.4153H134.697C139.857 26.4153 142.819 24.0717 142.819 19.9845C142.831 16.0744 140.149 13.9236 135.277 13.9236ZM134.511 23.0056H129.914V17.3301H134.511C137.302 17.3301 138.61 18.2812 138.61 20.1679C138.61 22.0545 137.23 23.0056 134.511 23.0056Z" fill="#21A038"/>
+<path d="M192.947 26.386H188.477V5.9032H192.947V14.5061H195.38L201.95 5.9032H207.016L199.223 15.6471L208.272 26.386H202.341L195.69 18.3303H192.947V26.386Z" fill="#21A038"/>
+<path d="M159.059 22.4934H149.603L148 26.4709H143.243L152.112 5.98816H156.868L165.593 26.4709H160.662L159.059 22.4934ZM157.578 18.7821L154.359 10.827L151.122 18.7821H157.578Z" fill="#21A038"/>
+<path d="M171.611 5.98816V14.5414H180.861V5.98816H185.47V26.4709H180.861V18.4H171.611V26.4709H167.002V5.98816H171.611Z" fill="#21A038"/>
+</g>
+<defs>
+<linearGradient id="paint0_linear" x1="5.48089" y1="27.4458" x2="1.30964" y2="15.5477" gradientUnits="userSpaceOnUse">
+<stop offset="0.14" stop-color="#F1E813"/>
+<stop offset="0.3" stop-color="#E6E418"/>
+<stop offset="0.58" stop-color="#C9DA26"/>
+<stop offset="0.89" stop-color="#A2CC39"/>
+</linearGradient>
+<linearGradient id="paint1_linear" x1="5.7913" y1="5.45864" x2="16.3181" y2="1.50029" gradientUnits="userSpaceOnUse">
+<stop offset="0.06" stop-color="#0FA7DF"/>
+<stop offset="0.54" stop-color="#0098F8"/>
+<stop offset="0.92" stop-color="#0290EA"/>
+</linearGradient>
+<linearGradient id="paint2_linear" x1="15.0855" y1="30.4293" x2="26.9647" y2="27.7813" gradientUnits="userSpaceOnUse">
+<stop offset="0.12" stop-color="#A2CC39"/>
+<stop offset="0.28" stop-color="#86C239"/>
+<stop offset="0.87" stop-color="#219F38"/>
+</linearGradient>
+<linearGradient id="paint3_linear" x1="15.358" y1="1.26507" x2="25.5244" y2="4.36073" gradientUnits="userSpaceOnUse">
+<stop offset="0.06" stop-color="#0290EA"/>
+<stop offset="0.79" stop-color="#0C89CA"/>
+</linearGradient>
+<linearGradient id="paint4_linear" x1="5.10711" y1="26.8666" x2="16.1833" y2="30.9512" gradientUnits="userSpaceOnUse">
+<stop offset="0.13" stop-color="#F1E813"/>
+<stop offset="0.3" stop-color="#EAE616"/>
+<stop offset="0.53" stop-color="#D8DF1F"/>
+<stop offset="0.8" stop-color="#BAD52D"/>
+<stop offset="0.98" stop-color="#A2CC39"/>
+</linearGradient>
+<linearGradient id="paint5_linear" x1="1.38892" y1="16.8116" x2="5.92478" y2="5.16889" gradientUnits="userSpaceOnUse">
+<stop offset="0.07" stop-color="#A2CC39"/>
+<stop offset="0.26" stop-color="#81C45E"/>
+<stop offset="0.92" stop-color="#0FA7DF"/>
+</linearGradient>
+<clipPath id="clip0">
+<rect width="168.414" height="21.6207" fill="white" transform="translate(40.9656 5.6897)"/>
+</clipPath>
+</defs>
+</svg>
\ No newline at end of file
diff --git a/public/img/poweredby/logos/yahoo.svg b/public/img/poweredby/logos/yahoo.svg
new file mode 100644
index 0000000..ce6c3e5
--- /dev/null
+++ b/public/img/poweredby/logos/yahoo.svg
@@ -0,0 +1,101 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="1000"
+   height="277.32422"
+   viewBox="0 0 264.58333 73.375368"
+   version="1.1"
+   id="svg8"
+   inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
+   sodipodi:docname="A.svg">
+  <defs
+     id="defs2" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.35"
+     inkscape:cx="1386.2882"
+     inkscape:cy="-440.96428"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     units="px"
+     inkscape:window-width="1920"
+     inkscape:window-height="1017"
+     inkscape:window-x="1912"
+     inkscape:window-y="-8"
+     inkscape:window-maximized="1"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0" />
+  <metadata
+     id="metadata5">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(260.95542,41.213839)">
+    <path
+       style="opacity:1;fill:#5f01d1;fill-opacity:1;stroke:none;stroke-width:0.08756009;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:2.61310005;stroke-dasharray:none;stroke-opacity:1"
+       d="m -260.95542,-23.351576 h 15.74097 l 9.16577,23.44971543 9.28475,-23.44971543 h 15.32641 l -23.07818,55.513102 h -15.42354 l 6.31728,-14.710096 z"
+       id="path1139"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccccc" />
+    <path
+       inkscape:connector-curvature="0"
+       style="opacity:1;fill:#5f01d1;fill-opacity:1;stroke:none;stroke-width:0.08756009;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:2.61310005;stroke-dasharray:none;stroke-opacity:1"
+       d="m -195.47141,-24.285092 c -11.82693,0 -19.30359,10.60691 -19.30359,21.1697058 0,11.886248 8.19723,21.3099212 19.07922,21.3099212 8.11755,0 11.17827,-4.945745 11.17827,-4.945745 v 3.852645 h 13.72915 v -40.452766 h -13.72915 v 3.677524 c 0,0 -3.41477,-4.611285 -10.9539,-4.611285 z m 2.92026,12.999928 c 5.45704,0 8.27307,4.3180081 8.27307,8.2142225 0,4.1954942 -3.01696,8.3127463 -8.27307,8.3127463 -4.35623,0 -8.29289,-3.559984 -8.29289,-8.1341932 0,-4.6389336 3.16648,-8.3927756 8.29289,-8.3927756 z"
+       id="path1141" />
+    <path
+       style="opacity:1;fill:#5f01d1;fill-opacity:1;stroke:none;stroke-width:0.08756009;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:2.61310005;stroke-dasharray:none;stroke-opacity:1"
+       d="m -166.06011,17.10119 v -58.315029 h 14.35985 v 21.680094 c 0,0 3.41082,-4.746342 10.5543,-4.746342 8.73797,0 13.85746,6.510502 13.85746,15.813727 v 25.56755 h -14.25479 V -4.9639552 c 0,-3.148416 -1.49969,-6.1899038 -4.89676,-6.1899038 -3.45803,0 -5.26021,3.0875793 -5.26021,6.1899038 V 17.10119 Z"
+       id="path1145"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccccccccc" />
+    <path
+       inkscape:connector-curvature="0"
+       style="opacity:1;fill:#5f01d1;fill-opacity:1;stroke:none;stroke-width:0.08756009;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:2.61310005;stroke-dasharray:none;stroke-opacity:1"
+       d="m -102.80546,-24.280304 c -13.54405,0 -21.60888,10.298919 -21.60888,21.3332079 0,12.5572045 9.76468,21.1416311 21.66017,21.1416311 11.529646,0 21.618462,-8.1948543 21.618462,-20.9309613 0,-13.9356097 -10.563298,-21.5438777 -21.669752,-21.5438777 z m 0.12933,13.114187 c 4.784243,0 8.094514,3.9847543 8.094514,8.2340454 0,3.62432286 -3.084573,8.0945471 -8.094514,8.0945471 -4.5906,0 -8.03569,-3.6823588 -8.03569,-8.1341932 0,-4.2885533 2.86425,-8.1943993 8.03569,-8.1943993 z"
+       id="path1147" />
+    <path
+       id="path1153"
+       d="m -57.212888,-24.280304 c -13.544038,0 -21.608877,10.298919 -21.608877,21.3332079 0,12.5572045 9.764684,21.1416311 21.660172,21.1416311 11.529647,0 21.618463,-8.1948543 21.618463,-20.9309613 0,-13.9356097 -10.563285,-21.5438777 -21.669758,-21.5438777 z m 0.12933,13.114187 c 4.784232,0 8.094517,3.9847543 8.094517,8.2340454 0,3.62432286 -3.084586,8.0945471 -8.094517,8.0945471 -4.59061,0 -8.035691,-3.6823588 -8.035691,-8.1341932 0,-4.2885533 2.864249,-8.1943993 8.035691,-8.1943993 z"
+       style="opacity:1;fill:#5f01d1;fill-opacity:1;stroke:none;stroke-width:0.08756009;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:2.61310005;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:connector-curvature="0" />
+    <circle
+       style="opacity:1;fill:#5f01d1;fill-opacity:1;stroke:none;stroke-width:0.08829153;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:2.61310005;stroke-dasharray:none;stroke-opacity:1"
+       id="path1155"
+       cx="-24.212173"
+       cy="8.4245415"
+       r="9.5354834" />
+    <path
+       style="opacity:1;fill:#5f01d1;fill-opacity:1;stroke:none;stroke-width:0.08756009;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:2.61310005;stroke-dasharray:none;stroke-opacity:1"
+       d="M -11.543414,-4.6137152 H -28.709769 L -13.474345,-41.213839 H 3.627914 Z"
+       id="path1157"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccc" />
+  </g>
+</svg>
diff --git a/public/img/poweredby/videos/001.png b/public/img/poweredby/videos/001.png
new file mode 100644
index 0000000..9f98627
--- /dev/null
+++ b/public/img/poweredby/videos/001.png
Binary files differ
diff --git a/public/img/poweredby/videos/001.svg b/public/img/poweredby/videos/001.svg
new file mode 100644
index 0000000..46cda04
--- /dev/null
+++ b/public/img/poweredby/videos/001.svg
@@ -0,0 +1,52 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="335" fill="#0070CC"/>
+<mask id="mask0_101:42" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="247" y="125" width="295" height="210">
+<rect x="247.581" y="125.786" width="294.419" height="209.214" fill="#0070CC"/>
+</mask>
+<g mask="url(#mask0_101:42)">
+<path d="M321.199 178.809L479.902 271.581L321.199 364.352L321.199 178.809Z" stroke="white"/>
+<path d="M373.017 178.809L531.72 271.581L373.017 364.352L373.017 178.809Z" stroke="white"/>
+<path d="M424.835 178.809L583.539 271.581L424.835 364.352L424.835 178.809Z" stroke="white"/>
+<g filter="url(#filter0_bii_101:42)">
+<path d="M441.387 271.581L281.192 365.223L281.192 177.938L441.387 271.581Z" fill="white" fill-opacity="0.14"/>
+</g>
+</g>
+<path d="M69.2967 297.463V296.458C68.5985 297.552 67.6497 298.252 66.4503 298.521C65.2509 298.791 64.0694 298.701 62.9058 298.234C61.7243 297.768 60.7218 296.888 59.8804 295.614C59.0391 294.34 58.6094 292.671 58.6094 290.589C58.6094 288.149 59.1644 286.192 60.2743 284.667C61.3842 283.159 63.1743 282.406 65.6447 282.406C67.5244 282.406 69.2609 282.908 70.872 283.931C72.4831 284.954 73.2708 286.838 73.2708 289.584V297.875C73.2708 300.621 72.4652 302.488 70.872 303.493C69.2609 304.498 67.5244 305 65.6447 305C62.0465 305 59.8088 303.313 58.9496 299.939H63.228C63.5324 300.496 64.0157 300.908 64.6602 301.213C65.3046 301.501 65.9491 301.59 66.5935 301.447C67.238 301.303 67.8287 300.926 68.3479 300.298C68.9028 299.652 69.2072 298.719 69.2967 297.463ZM62.6015 290.697C62.6015 293.407 63.3891 294.914 64.9466 295.201C66.504 295.489 67.6676 295.13 68.4016 294.107C68.7596 293.676 69.0102 292.994 69.1713 292.079C69.3325 291.163 69.3325 290.248 69.2072 289.333C69.0639 288.436 68.7417 287.628 68.2405 286.928C67.7392 286.228 66.9874 285.869 66.0028 285.869C64.6781 285.869 63.7651 286.354 63.2996 287.341C62.8342 288.31 62.6015 289.441 62.6015 290.697Z" fill="white"/>
+<path d="M87.6097 298.396H85.551C84.9603 298.396 84.477 298.216 84.1189 297.839C83.743 297.463 83.564 296.978 83.564 296.404V288.4C83.564 287.467 83.2776 286.767 82.7047 286.336C82.1319 285.905 81.5053 285.69 80.7892 285.69C80.0911 285.69 79.4645 285.905 78.9096 286.336C78.3546 286.767 78.0861 287.449 78.0861 288.4V298.414H73.9688V289.225C73.9688 286.551 74.6669 284.775 76.0453 283.877C77.4417 282.98 78.9633 282.477 80.646 282.406C82.3646 282.406 83.9578 282.854 85.4078 283.752C86.8579 284.649 87.5739 286.48 87.5739 289.225V298.396H87.6097Z" fill="white"/>
+<path d="M88.6124 284.111H92.7298C92.7298 286.3 92.7298 285.564 92.7298 286.121V298.414H88.6124V284.111Z" fill="white"/>
+<path d="M100.284 298.396C98.9954 298.467 97.5991 298.449 96.0954 298.342C94.5916 298.216 93.8398 297.265 93.8398 295.452V280.144H95.9522C96.4534 280.144 96.9188 280.342 97.2948 280.736C97.6886 281.131 97.8855 281.598 97.8855 282.154V282.693H100.284V283.518C100.284 284.11 100.087 284.595 99.6936 284.954C99.2998 285.331 98.8343 285.51 98.2794 285.51H97.8676V294.322C97.8676 294.986 98.2615 295.327 99.0491 295.327H100.284V298.396Z" fill="white"/>
+<path d="M111.49 293.568H114.426C113.997 295.219 113.173 296.475 111.956 297.337C110.739 298.234 109.217 298.683 107.373 298.683C105.135 298.683 103.399 297.965 102.146 296.511C100.893 295.094 100.266 293.084 100.266 290.445C100.266 287.933 100.875 285.977 102.092 284.559C103.345 283.105 105.082 282.388 107.319 282.388C109.665 282.388 111.49 283.088 112.779 284.505C114.032 285.959 114.659 287.969 114.659 290.571C114.659 290.733 114.659 290.858 114.659 290.984C114.659 291.109 114.659 291.181 114.659 291.217C114.659 291.415 114.641 291.558 114.605 291.63H104.455C104.491 292.85 104.795 293.748 105.332 294.34C105.834 294.968 106.603 295.273 107.624 295.273C108.286 295.273 108.859 295.129 109.324 294.86C109.45 294.824 109.557 294.753 109.647 294.645C109.736 294.555 109.844 294.447 109.969 294.322C110.005 294.196 110.148 294.053 110.416 293.855C110.667 293.676 111.025 293.568 111.49 293.568ZM104.455 288.992H110.452C110.381 287.933 110.094 287.143 109.629 286.641C109.127 286.085 108.394 285.815 107.463 285.815C106.603 285.815 105.905 286.085 105.35 286.641C104.777 287.179 104.491 287.969 104.455 288.992Z" fill="white"/>
+<path d="M53.6138 276.914H55.7262C56.2812 276.914 56.7466 277.112 57.1404 277.507C57.5343 277.901 57.7312 278.368 57.7312 278.924V298.414H53.6138V276.914Z" fill="white"/>
+<path d="M88.6122 280.145H90.7246C91.2795 280.145 91.7449 280.342 92.1388 280.737C92.5326 281.132 92.7295 281.598 92.7295 282.155V283.393H88.6122V280.145Z" fill="white"/>
+<path d="M64.0154 280.36H63.3709V279.894C63.0487 280.253 62.6011 280.432 62.0462 280.432C61.527 280.432 61.0795 280.253 60.7036 279.912C60.3097 279.535 60.1128 279.068 60.1128 278.494C60.1128 277.902 60.3276 277.417 60.7394 277.04C61.1153 276.681 61.5808 276.52 62.0999 276.52C62.6369 276.52 63.0666 276.699 63.3888 277.076V276.609H64.0333V280.36H64.0154ZM63.353 278.494C63.353 278.135 63.2277 277.83 62.995 277.561C62.7444 277.309 62.4579 277.184 62.0999 277.184C61.724 277.184 61.4196 277.309 61.1511 277.579C60.9005 277.83 60.7752 278.099 60.7752 278.386C60.7752 278.763 60.8826 279.086 61.1153 279.355C61.348 279.642 61.6524 279.768 62.0283 279.768C62.3863 279.768 62.6906 279.642 62.9592 279.391C63.2277 279.158 63.353 278.853 63.353 278.494Z" fill="white"/>
+<path d="M68.6697 278.386C68.6697 278.978 68.4907 279.463 68.1327 279.84C67.7568 280.235 67.2913 280.432 66.7006 280.432C66.1635 280.432 65.7518 280.253 65.4296 279.912V281.598H64.7493V276.591H65.3938V277.04C65.5549 276.861 65.7518 276.735 65.9487 276.645C66.1635 276.556 66.3783 276.52 66.629 276.52C67.1481 276.52 67.6135 276.699 68.0074 277.04C68.4549 277.399 68.6697 277.848 68.6697 278.386ZM67.9716 278.476C67.9716 278.117 67.8463 277.812 67.5956 277.561C67.345 277.309 67.0228 277.184 66.6648 277.184C66.2888 277.184 65.9845 277.327 65.7339 277.596C65.5012 277.848 65.3938 278.153 65.3938 278.494C65.3938 278.817 65.4833 279.086 65.6802 279.337C65.9129 279.624 66.253 279.768 66.7006 279.768C67.0586 279.768 67.3629 279.642 67.6135 279.391C67.8642 279.158 67.9716 278.853 67.9716 278.476Z" fill="white"/>
+<path d="M73.1636 280.36H72.5192V279.894C72.1969 280.253 71.7494 280.432 71.1944 280.432C70.6753 280.432 70.2278 280.253 69.8518 279.912C69.458 279.535 69.2611 279.068 69.2611 278.494C69.2611 277.902 69.4759 277.417 69.8876 277.04C70.2636 276.681 70.729 276.52 71.2481 276.52C71.7852 276.52 72.2148 276.699 72.5371 277.076V276.609H73.1815V280.36H73.1636ZM72.5192 278.494C72.5192 278.135 72.3938 277.83 72.1611 277.561C71.9105 277.309 71.6241 277.184 71.2661 277.184C70.8901 277.184 70.5858 277.309 70.3173 277.579C70.0666 277.83 69.9413 278.099 69.9413 278.386C69.9413 278.763 70.0487 279.086 70.2815 279.355C70.5142 279.642 70.8185 279.768 71.1944 279.768C71.5525 279.768 71.8568 279.642 72.1253 279.391C72.3759 279.158 72.5192 278.853 72.5192 278.494Z" fill="white"/>
+<path d="M77.656 279.122C77.4412 279.553 77.1905 279.876 76.9041 280.091C76.5819 280.324 76.2059 280.45 75.7405 280.45C75.2214 280.45 74.7559 280.27 74.3621 279.894C73.9504 279.499 73.7355 279.032 73.7355 278.458H73.7713C73.7713 278.458 73.7713 278.476 73.7534 278.494C73.7534 277.902 73.9504 277.417 74.3621 277.04C74.7201 276.699 75.1498 276.52 75.651 276.52C76.1164 276.52 76.5103 276.645 76.8683 276.879C77.2084 277.112 77.477 277.453 77.6381 277.884H76.8862C76.6356 277.435 76.2238 277.202 75.6689 277.202C75.3109 277.202 75.0244 277.327 74.7917 277.579C74.559 277.83 74.4337 278.135 74.4337 278.494C74.4337 278.853 74.559 279.176 74.8096 279.427C75.0602 279.678 75.3646 279.804 75.7226 279.804C75.9553 279.804 76.188 279.75 76.4029 279.624C76.6177 279.499 76.7788 279.337 76.9041 279.14H77.656V279.122Z" fill="white"/>
+<path d="M81.5411 280.36H80.8609V278.206C80.8609 277.919 80.7713 277.668 80.5744 277.489C80.3954 277.309 80.1448 277.201 79.8584 277.201C79.5719 277.201 79.3392 277.291 79.1602 277.453C78.9812 277.632 78.8917 277.847 78.8917 278.135V280.36H78.2114V275.353H78.8917V276.914C79.1602 276.645 79.4824 276.519 79.8763 276.519C80.3059 276.519 80.6818 276.663 81.0041 276.968C81.3442 277.291 81.5232 277.704 81.5232 278.206V280.36H81.5411Z" fill="white"/>
+<path d="M85.9808 278.745H82.8122C82.8659 279.068 83.027 279.319 83.2776 279.517C83.5103 279.678 83.761 279.768 84.0295 279.768C84.2801 279.768 84.5128 279.696 84.7456 279.552C84.9783 279.409 85.1394 279.211 85.2289 278.978H85.9271C85.748 279.481 85.4616 279.84 85.0857 280.091C84.7635 280.306 84.4054 280.414 84.0116 280.414C83.5103 280.414 83.0807 280.234 82.7227 279.875C82.3467 279.481 82.1498 279.014 82.1498 278.44C82.1498 277.848 82.3467 277.363 82.7585 277.004C83.1344 276.663 83.5641 276.502 84.0653 276.502C84.5665 276.502 85.0141 276.663 85.3721 277.004C85.7838 277.381 85.9987 277.901 85.9987 278.547V278.745H85.9808ZM85.2826 278.117C85.211 277.83 85.0499 277.614 84.8172 277.435C84.5844 277.255 84.3338 277.166 84.0474 277.166C83.6894 277.166 83.385 277.291 83.1523 277.525C82.9912 277.686 82.8659 277.883 82.8122 278.117H85.2826Z" fill="white"/>
+<path d="M35.7481 275.102C35.7481 275.102 23.3065 282.711 35.032 290.266C37.2876 291.738 45.4686 295.83 45.2359 299.616C45.2359 299.616 50.1946 292.258 42.9445 287.628C35.4974 282.89 33.6357 277.83 35.7481 275.102Z" fill="white"/>
+<path d="M31.416 289.638C31.416 289.638 26.9764 296.386 35.7124 297.768C36.5717 297.876 42.8909 298.54 44.5378 300.621C44.5378 300.621 44.3946 297.032 39.239 294.914C34.1012 292.797 31.9889 292.276 31.416 289.638Z" fill="white"/>
+<path d="M48.6014 282.549C43.2667 276.95 41.7809 273.487 44.0723 269C44.0723 269 28.1578 275.138 43.8754 286.031C49.4964 289.925 48.5656 293.909 48.5656 294.053C49.4427 293.138 53.936 288.149 48.6014 282.549Z" fill="white"/>
+<path d="M116 282.388C116 283.124 115.427 283.698 114.675 283.698C113.923 283.698 113.333 283.124 113.333 282.388C113.333 281.67 113.923 281.096 114.675 281.096C115.427 281.078 116 281.67 116 282.388ZM113.673 282.388C113.673 282.962 114.102 283.429 114.693 283.429C115.266 283.429 115.678 282.962 115.678 282.406C115.678 281.832 115.266 281.365 114.675 281.365C114.085 281.347 113.673 281.814 113.673 282.388ZM114.46 283.07H114.156V281.778C114.281 281.76 114.443 281.742 114.657 281.742C114.908 281.742 115.015 281.778 115.105 281.832C115.176 281.886 115.23 281.993 115.23 282.119C115.23 282.262 115.123 282.37 114.962 282.424V282.442C115.087 282.496 115.159 282.585 115.194 282.765C115.23 282.962 115.266 283.034 115.284 283.088H114.962C114.926 283.034 114.89 282.926 114.854 282.765C114.836 282.621 114.747 282.568 114.586 282.568H114.443V283.07H114.46ZM114.478 282.334H114.622C114.783 282.334 114.926 282.28 114.926 282.137C114.926 282.011 114.836 281.939 114.657 281.939C114.586 281.939 114.514 281.939 114.496 281.957V282.334H114.478Z" fill="white"/>
+<path d="M139 273V274.916H152.431V273H139ZM154.334 273V274.916H173.473C173.473 274.916 171.518 273 168.929 273H154.334ZM177.228 273V274.916H188.807L188.119 273H177.228ZM197.108 273L196.421 274.916H207.895V273H197.108ZM139 276.726V278.641H152.431V276.726H139ZM154.334 276.728V278.641H175.694C175.694 278.641 175.444 277.167 175.009 276.728H154.334ZM177.228 276.728V278.641H190.076L189.44 276.728H177.228ZM195.734 276.728L195.097 278.641H207.895V276.728H195.734ZM142.86 280.451V282.37H148.676V280.451H142.86ZM158.193 280.451V282.37H164.01V280.451H158.193ZM169.667 280.451V282.37H175.484C175.484 282.37 175.853 281.356 175.853 280.451H169.667ZM181.087 280.451V282.37H191.4L190.712 280.451H181.087ZM194.467 280.451L193.777 282.37H204.14V280.451H194.467ZM142.86 284.179V286.095H148.676V284.179H142.86ZM158.193 284.179V286.095H173.05C173.05 286.095 174.293 285.112 174.689 284.179H158.193ZM181.087 284.179V286.095H186.904V285.029L187.273 286.095H197.928L198.324 285.029V286.095H204.14V284.179H193.222L192.642 285.802L192.06 284.179H181.087ZM142.86 287.905V289.821H148.676V287.905H142.86ZM158.193 287.905V289.821H174.689C174.293 288.891 173.05 287.905 173.05 287.905H158.193ZM181.087 287.905V289.821H186.904V287.905H181.087ZM187.96 287.905L188.664 289.821H196.653L197.321 287.905H187.96ZM198.324 287.905V289.821H204.14V287.905H198.324ZM142.86 291.63V293.546H148.676V291.63H142.86ZM158.193 291.63V293.546H164.01V291.63H158.193ZM169.667 291.63V293.546H175.853C175.853 292.642 175.484 291.63 175.484 291.63H169.667ZM181.087 291.63V293.546H186.904V291.63H181.087ZM189.281 291.63L189.963 293.546H195.319L196.006 291.63H189.281ZM198.324 291.63V293.546H204.14V291.63H198.324ZM139.105 295.356V297.274H152.536V295.356H139.105ZM154.334 295.356V297.274H175.009C175.444 296.835 175.694 295.356 175.694 295.356H154.334ZM177.333 295.356V297.274H186.904V295.356H177.333ZM190.604 295.356L191.305 297.274H194.03L194.688 295.356H190.604ZM198.324 295.356V297.274H208V295.356H198.324ZM139.105 299.084V301H152.536V299.084H139.105ZM154.334 299.084V300.997H168.929C171.518 300.997 173.473 299.084 173.473 299.084H154.334ZM177.333 299.084V301H186.904V299.084H177.333ZM191.933 299.084L192.607 300.995L192.723 300.997L193.408 299.084H191.933ZM198.324 299.084V301H208V299.084H198.324Z" fill="white"/>
+<defs>
+<filter id="filter0_bii_101:42" x="267.577" y="164.322" width="187.425" height="214.516" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feGaussianBlur in="BackgroundImage" stdDeviation="3.115"/>
+<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_101:42"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_backgroundBlur_101:42" result="shape"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dx="-13.6152" dy="13.6152"/>
+<feGaussianBlur stdDeviation="6.8076"/>
+<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
+<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
+<feBlend mode="normal" in2="shape" result="effect2_innerShadow_101:42"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dx="13.6152" dy="-13.6152"/>
+<feGaussianBlur stdDeviation="6.8076"/>
+<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.584157 0 0 0 0 0.584157 0 0 0 0 0.584157 0 0 0 0.1 0"/>
+<feBlend mode="normal" in2="effect2_innerShadow_101:42" result="effect3_innerShadow_101:42"/>
+</filter>
+</defs>
+</svg>
diff --git a/public/img/poweredby/videos/002.png b/public/img/poweredby/videos/002.png
new file mode 100644
index 0000000..f0bafc7
--- /dev/null
+++ b/public/img/poweredby/videos/002.png
Binary files differ
diff --git a/public/img/poweredby/videos/002.svg b/public/img/poweredby/videos/002.svg
new file mode 100644
index 0000000..74c9e5f
--- /dev/null
+++ b/public/img/poweredby/videos/002.svg
@@ -0,0 +1,86 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="335" fill="#C4C4C4"/>
+<rect width="542" height="335" fill="#91C2EA"/>
+<mask id="mask0_101:43" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="542" height="335">
+<rect width="542" height="335" fill="#ED1C24"/>
+</mask>
+<g mask="url(#mask0_101:43)">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M834.86 29.7958L13.4601 360.04L12.8725 358.504L834.272 28.2602L834.86 29.7958Z" fill="url(#paint0_linear_101:43)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M791.762 25.9923L56.5005 363.813L55.8423 362.308L791.104 24.487L791.762 25.9923Z" fill="url(#paint1_linear_101:43)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M753.812 19.6598L94.6603 370.103L93.9193 368.639L753.071 18.1954L753.812 19.6598Z" fill="url(#paint2_linear_101:43)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M720.365 10.805L128.073 378.907L127.238 377.496L719.531 9.39441L720.365 10.805Z" fill="url(#paint3_linear_101:43)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M691.028 -0.705246L157.513 390.483L156.576 389.141L690.092 -2.04691L691.028 -0.705246Z" fill="url(#paint4_linear_101:43)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M665.406 -15.2739L183.237 404.831L182.195 403.574L664.364 -16.5307L665.406 -15.2739Z" fill="url(#paint5_linear_101:43)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M643.11 -32.8951L205.64 422.354L204.493 421.197L641.964 -34.0527L643.11 -32.8951Z" fill="url(#paint6_linear_101:43)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M623.872 -53.838L224.976 443.323L223.733 442.275L622.63 -54.8859L623.872 -53.838Z" fill="url(#paint7_linear_101:43)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M607.426 -78.5041L241.633 467.872L240.306 466.939L606.099 -79.4375L607.426 -78.5041Z" fill="url(#paint8_linear_101:43)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M593.508 -107.432L255.621 496.551L254.225 495.731L592.112 -108.253L593.508 -107.432Z" fill="url(#paint9_linear_101:43)"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M581.853 -140.753L267.198 529.768L265.748 529.053L580.402 -141.468L581.853 -140.753Z" fill="url(#paint10_linear_101:43)"/>
+</g>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M134.954 265.907H169.846V300.331H134.954V265.907Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M135.963 266.902H168.836V299.336H135.963V266.902Z" fill="#FFF200"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M137.708 292.783L141.996 297.095L152.043 287.038L162.426 297.303L166.777 293.052L156.498 282.912L158.474 281.025V277.002L159.715 275.965V279.117L161.312 280.402L166.083 275.695L167.617 276.856C168.521 273.559 163.287 266.073 158.958 270.221L153.913 275.156L154.943 276.38L152.378 278.847L149.899 276.441L151.202 275.279L145.674 270.013C141.512 266.632 137.245 271.776 137.098 276.794L138.611 275.55L143.256 280.486L144.916 279.118V276.09L145.946 276.856V280.818L147.963 282.808L137.708 292.783Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M178.758 270.034V273.02H180.061C181.847 272.688 181.364 270.158 180.061 270.034H178.758ZM175.058 267.068V280.589H178.758V276.193L181.91 280.589H186.283L182.395 275.177C186.893 273.021 185.211 267.131 180.482 267.069H175.058V267.068ZM192.168 273.828C193.387 273.828 194.374 274.741 194.374 275.861C194.374 276.98 193.386 277.893 192.168 277.893C190.97 277.893 189.982 276.98 189.982 275.861C189.982 274.741 190.97 273.828 192.168 273.828ZM191.39 270.842C192.399 270.842 193.344 271.174 194.122 271.713V271.195H197.737L197.758 280.589H194.101L194.122 280.008C193.344 280.547 192.399 280.859 191.39 280.859C188.699 280.859 186.493 278.619 186.493 275.861C186.493 273.103 188.7 270.842 191.39 270.842ZM199.671 271.195H203.518V280.589H199.671V271.195ZM201.604 265.824C202.719 265.824 203.623 266.736 203.623 267.835C203.623 268.934 202.719 269.847 201.604 269.847C200.47 269.847 199.566 268.934 199.566 267.835C199.566 266.737 200.47 265.824 201.604 265.824ZM230.8 271.195H234.647V280.589H230.8V271.195ZM232.713 265.824C233.848 265.824 234.752 266.736 234.752 267.835C234.752 268.934 233.848 269.847 232.713 269.847C231.599 269.847 230.695 268.934 230.695 267.835C230.695 266.737 231.599 265.824 232.713 265.824ZM204.232 271.195V274.181H205.557V280.589H209.278V274.181H212.767V280.589H216.613V274.14H219.009V271.236H216.507V269.142C216.444 268.375 218.273 268.064 218.904 268.686V265.616C215.373 264.517 212.514 266.488 212.535 269.536V271.195H209.256V269.142C209.213 268.375 210.812 268.064 211.735 268.686V265.616C208.666 264.725 205.388 266.197 205.409 269.515V271.174L204.232 271.195ZM224.494 280.859C227.795 280.838 229.013 279.49 229.728 277.52H226.387C224.873 279.428 222.666 278.038 222.771 276.483H229.834C229.834 272.667 227.774 270.863 224.495 270.863C221.217 270.863 219.157 273.144 219.157 275.923C219.157 278.702 221.552 280.879 224.494 280.859ZM223.254 274.264C223.296 273.123 225.819 273.123 225.986 274.264H223.254ZM250.684 280.859C254.005 280.838 255.224 279.49 255.938 277.52H252.575C251.062 279.428 248.855 278.038 248.961 276.483H256.024C256.024 272.667 253.985 270.863 250.685 270.863C247.406 270.863 245.346 273.144 245.346 275.923C245.346 278.702 247.741 280.879 250.684 280.859ZM249.444 274.264C249.486 273.123 252.008 273.123 252.176 274.264H249.444ZM244.337 271.382L243.201 273.663C241.772 273.227 240.384 273.311 240.427 273.704C240.469 273.953 240.238 274.388 242.465 274.7C245.786 275.218 245.513 281.315 239.943 280.859C238.409 280.755 237.169 280.361 236.139 279.759L237.38 277.312C239.124 278.162 240.805 278.66 240.931 277.81C241.079 276.752 239.103 277.126 237.905 276.233C235.761 274.927 236.979 270.883 240.49 270.841C241.73 270.76 243.012 270.967 244.337 271.382ZM257.494 271.195V280.589H261.089V274.844C261.194 273.413 264.052 273.164 264.074 274.844V280.589H267.709V274.7C267.625 271.403 264.115 269.806 260.941 271.9V271.195H257.494ZM177.181 286.333L174.785 300.269H181.574C186.178 300.269 188.069 294.629 184.79 292.7C187.586 290.149 186.156 286.313 183.151 286.271L177.181 286.333ZM179.934 294.649L179.451 296.951H181.027C182.814 297.034 182.604 294.649 181.574 294.649H179.934ZM180.733 289.651L180.334 291.518L180.817 291.538C182.268 291.621 183.108 289.651 181.364 289.651H180.733ZM186.324 300.29H190.444L191.684 297.842H196.35L197.044 300.331H200.848L197.548 286.416H193.659L186.324 300.29ZM193.029 294.919H195.594L194.774 291.247L193.029 294.919ZM202.151 300.331H205.956L206.922 291.601L212.366 300.29H216.444L218.146 286.332H214.342L213.27 295.063L207.826 286.291H203.895L202.151 300.331ZM220.879 286.291L218.21 300.29H222.225L223.296 295.063L226.89 300.29H232.166L227.017 292.948L233.596 286.271H228.488L223.99 291.206L224.704 286.271L220.879 286.291Z" fill="black"/>
+<path d="M69.2967 297.463V296.458C68.5985 297.552 67.6497 298.252 66.4503 298.521C65.2509 298.791 64.0694 298.701 62.9058 298.234C61.7243 297.768 60.7218 296.888 59.8804 295.614C59.0391 294.34 58.6094 292.671 58.6094 290.589C58.6094 288.149 59.1644 286.192 60.2743 284.667C61.3842 283.159 63.1743 282.406 65.6447 282.406C67.5244 282.406 69.2609 282.908 70.872 283.931C72.4831 284.954 73.2708 286.838 73.2708 289.584V297.875C73.2708 300.621 72.4652 302.488 70.872 303.493C69.2609 304.498 67.5244 305 65.6447 305C62.0465 305 59.8088 303.313 58.9496 299.939H63.228C63.5324 300.496 64.0157 300.908 64.6602 301.213C65.3046 301.501 65.9491 301.59 66.5935 301.447C67.238 301.303 67.8287 300.926 68.3479 300.298C68.9028 299.652 69.2072 298.719 69.2967 297.463ZM62.6015 290.697C62.6015 293.407 63.3891 294.914 64.9466 295.201C66.504 295.489 67.6676 295.13 68.4016 294.107C68.7596 293.676 69.0102 292.994 69.1713 292.079C69.3325 291.163 69.3325 290.248 69.2072 289.333C69.0639 288.436 68.7417 287.628 68.2405 286.928C67.7392 286.228 66.9874 285.869 66.0028 285.869C64.6781 285.869 63.7651 286.354 63.2996 287.341C62.8342 288.31 62.6015 289.441 62.6015 290.697Z" fill="white"/>
+<path d="M87.6097 298.396H85.551C84.9603 298.396 84.477 298.216 84.1189 297.839C83.743 297.463 83.564 296.978 83.564 296.404V288.4C83.564 287.467 83.2776 286.767 82.7047 286.336C82.1319 285.905 81.5053 285.69 80.7892 285.69C80.0911 285.69 79.4645 285.905 78.9096 286.336C78.3546 286.767 78.0861 287.449 78.0861 288.4V298.414H73.9688V289.225C73.9688 286.551 74.6669 284.775 76.0453 283.877C77.4417 282.98 78.9633 282.477 80.646 282.406C82.3646 282.406 83.9578 282.854 85.4078 283.752C86.8579 284.649 87.5739 286.48 87.5739 289.225V298.396H87.6097Z" fill="white"/>
+<path d="M88.6124 284.111H92.7298C92.7298 286.3 92.7298 285.564 92.7298 286.121V298.414H88.6124V284.111Z" fill="white"/>
+<path d="M100.284 298.396C98.9954 298.467 97.5991 298.449 96.0954 298.342C94.5916 298.216 93.8398 297.265 93.8398 295.452V280.144H95.9522C96.4534 280.144 96.9188 280.342 97.2948 280.736C97.6886 281.131 97.8855 281.598 97.8855 282.154V282.693H100.284V283.518C100.284 284.11 100.087 284.595 99.6936 284.954C99.2998 285.331 98.8343 285.51 98.2794 285.51H97.8676V294.322C97.8676 294.986 98.2615 295.327 99.0491 295.327H100.284V298.396Z" fill="white"/>
+<path d="M111.49 293.568H114.426C113.997 295.219 113.173 296.475 111.956 297.337C110.739 298.234 109.217 298.683 107.373 298.683C105.135 298.683 103.399 297.965 102.146 296.511C100.893 295.094 100.266 293.084 100.266 290.445C100.266 287.933 100.875 285.977 102.092 284.559C103.345 283.105 105.082 282.388 107.319 282.388C109.665 282.388 111.49 283.088 112.779 284.505C114.032 285.959 114.659 287.969 114.659 290.571C114.659 290.733 114.659 290.858 114.659 290.984C114.659 291.109 114.659 291.181 114.659 291.217C114.659 291.415 114.641 291.558 114.605 291.63H104.455C104.491 292.85 104.795 293.748 105.332 294.34C105.834 294.968 106.603 295.273 107.624 295.273C108.286 295.273 108.859 295.129 109.324 294.86C109.45 294.824 109.557 294.753 109.647 294.645C109.736 294.555 109.844 294.447 109.969 294.322C110.005 294.196 110.148 294.053 110.416 293.855C110.667 293.676 111.025 293.568 111.49 293.568ZM104.455 288.992H110.452C110.381 287.933 110.094 287.143 109.629 286.641C109.127 286.085 108.394 285.815 107.463 285.815C106.603 285.815 105.905 286.085 105.35 286.641C104.777 287.179 104.491 287.969 104.455 288.992Z" fill="white"/>
+<path d="M53.6138 276.914H55.7262C56.2812 276.914 56.7466 277.112 57.1404 277.507C57.5343 277.901 57.7312 278.368 57.7312 278.924V298.414H53.6138V276.914Z" fill="white"/>
+<path d="M88.6122 280.145H90.7246C91.2795 280.145 91.745 280.342 92.1388 280.737C92.5326 281.132 92.7295 281.598 92.7295 282.155V283.393H88.6122V280.145Z" fill="white"/>
+<path d="M64.0154 280.36H63.3709V279.894C63.0487 280.253 62.6011 280.432 62.0462 280.432C61.527 280.432 61.0795 280.253 60.7036 279.912C60.3097 279.535 60.1128 279.068 60.1128 278.494C60.1128 277.902 60.3276 277.417 60.7394 277.04C61.1153 276.681 61.5808 276.52 62.0999 276.52C62.6369 276.52 63.0666 276.699 63.3888 277.076V276.609H64.0333V280.36H64.0154ZM63.353 278.494C63.353 278.135 63.2277 277.83 62.995 277.561C62.7444 277.309 62.4579 277.184 62.0999 277.184C61.724 277.184 61.4196 277.309 61.1511 277.579C60.9005 277.83 60.7752 278.099 60.7752 278.386C60.7752 278.763 60.8826 279.086 61.1153 279.355C61.348 279.642 61.6524 279.768 62.0283 279.768C62.3863 279.768 62.6906 279.642 62.9592 279.391C63.2277 279.158 63.353 278.853 63.353 278.494Z" fill="white"/>
+<path d="M68.6697 278.386C68.6697 278.978 68.4907 279.463 68.1327 279.84C67.7568 280.235 67.2913 280.432 66.7006 280.432C66.1635 280.432 65.7518 280.253 65.4296 279.912V281.598H64.7493V276.591H65.3938V277.04C65.5549 276.861 65.7518 276.735 65.9487 276.645C66.1635 276.556 66.3783 276.52 66.629 276.52C67.1481 276.52 67.6135 276.699 68.0074 277.04C68.4549 277.399 68.6697 277.848 68.6697 278.386ZM67.9716 278.476C67.9716 278.117 67.8463 277.812 67.5956 277.561C67.345 277.309 67.0228 277.184 66.6648 277.184C66.2888 277.184 65.9845 277.327 65.7339 277.596C65.5012 277.848 65.3938 278.153 65.3938 278.494C65.3938 278.817 65.4833 279.086 65.6802 279.337C65.9129 279.624 66.253 279.768 66.7006 279.768C67.0586 279.768 67.3629 279.642 67.6135 279.391C67.8642 279.158 67.9716 278.853 67.9716 278.476Z" fill="white"/>
+<path d="M73.1636 280.36H72.5192V279.894C72.1969 280.253 71.7494 280.432 71.1944 280.432C70.6753 280.432 70.2278 280.253 69.8518 279.912C69.458 279.535 69.2611 279.068 69.2611 278.494C69.2611 277.902 69.4759 277.417 69.8876 277.04C70.2636 276.681 70.729 276.52 71.2481 276.52C71.7852 276.52 72.2148 276.699 72.5371 277.076V276.609H73.1815V280.36H73.1636ZM72.5192 278.494C72.5192 278.135 72.3938 277.83 72.1611 277.561C71.9105 277.309 71.6241 277.184 71.2661 277.184C70.8901 277.184 70.5858 277.309 70.3173 277.579C70.0666 277.83 69.9413 278.099 69.9413 278.386C69.9413 278.763 70.0487 279.086 70.2815 279.355C70.5142 279.642 70.8185 279.768 71.1944 279.768C71.5525 279.768 71.8568 279.642 72.1253 279.391C72.3759 279.158 72.5192 278.853 72.5192 278.494Z" fill="white"/>
+<path d="M77.656 279.122C77.4412 279.553 77.1905 279.876 76.9041 280.091C76.5819 280.324 76.2059 280.45 75.7405 280.45C75.2214 280.45 74.7559 280.27 74.3621 279.894C73.9504 279.499 73.7355 279.032 73.7355 278.458H73.7713C73.7713 278.458 73.7713 278.476 73.7534 278.494C73.7534 277.902 73.9504 277.417 74.3621 277.04C74.7201 276.699 75.1498 276.52 75.651 276.52C76.1164 276.52 76.5103 276.645 76.8683 276.879C77.2084 277.112 77.477 277.453 77.6381 277.884H76.8862C76.6356 277.435 76.2238 277.202 75.6689 277.202C75.3109 277.202 75.0244 277.327 74.7917 277.579C74.559 277.83 74.4337 278.135 74.4337 278.494C74.4337 278.853 74.559 279.176 74.8096 279.427C75.0602 279.678 75.3646 279.804 75.7226 279.804C75.9553 279.804 76.188 279.75 76.4029 279.624C76.6177 279.499 76.7788 279.337 76.9041 279.14H77.656V279.122Z" fill="white"/>
+<path d="M81.5411 280.36H80.8609V278.206C80.8609 277.919 80.7713 277.668 80.5744 277.489C80.3954 277.309 80.1448 277.201 79.8584 277.201C79.5719 277.201 79.3392 277.291 79.1602 277.453C78.9812 277.632 78.8917 277.847 78.8917 278.135V280.36H78.2114V275.353H78.8917V276.914C79.1602 276.645 79.4824 276.519 79.8763 276.519C80.3059 276.519 80.6818 276.663 81.0041 276.968C81.3442 277.291 81.5232 277.704 81.5232 278.206V280.36H81.5411Z" fill="white"/>
+<path d="M85.9808 278.745H82.8122C82.8659 279.068 83.027 279.319 83.2776 279.517C83.5104 279.678 83.761 279.768 84.0295 279.768C84.2801 279.768 84.5128 279.696 84.7456 279.552C84.9783 279.409 85.1394 279.211 85.2289 278.978H85.9271C85.7481 279.481 85.4616 279.84 85.0857 280.091C84.7635 280.306 84.4054 280.414 84.0116 280.414C83.5104 280.414 83.0807 280.234 82.7227 279.875C82.3468 279.481 82.1498 279.014 82.1498 278.44C82.1498 277.848 82.3468 277.363 82.7585 277.004C83.1344 276.663 83.5641 276.502 84.0653 276.502C84.5666 276.502 85.0141 276.663 85.3721 277.004C85.7839 277.381 85.9987 277.901 85.9987 278.547V278.745H85.9808ZM85.2826 278.117C85.211 277.83 85.0499 277.614 84.8172 277.435C84.5845 277.255 84.3338 277.166 84.0474 277.166C83.6894 277.166 83.385 277.291 83.1523 277.525C82.9912 277.686 82.8659 277.883 82.8122 278.117H85.2826Z" fill="white"/>
+<path d="M35.7481 275.102C35.7481 275.102 23.3065 282.711 35.032 290.266C37.2876 291.738 45.4686 295.83 45.2359 299.616C45.2359 299.616 50.1946 292.258 42.9445 287.628C35.4974 282.89 33.6357 277.83 35.7481 275.102Z" fill="white"/>
+<path d="M31.416 289.638C31.416 289.638 26.9764 296.386 35.7124 297.768C36.5717 297.876 42.8909 298.54 44.5378 300.621C44.5378 300.621 44.3946 297.032 39.239 294.914C34.1012 292.797 31.9889 292.276 31.416 289.638Z" fill="white"/>
+<path d="M48.6014 282.549C43.2667 276.95 41.7809 273.487 44.0723 269C44.0723 269 28.1578 275.138 43.8754 286.031C49.4964 289.925 48.5656 293.909 48.5656 294.053C49.4427 293.138 53.936 288.149 48.6014 282.549Z" fill="white"/>
+<defs>
+<linearGradient id="paint0_linear_101:43" x1="419.552" y1="-138.945" x2="428.479" y2="527.239" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#B1C9DC"/>
+</linearGradient>
+<linearGradient id="paint1_linear_101:43" x1="419.552" y1="-138.945" x2="428.479" y2="527.239" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#B1C9DC"/>
+</linearGradient>
+<linearGradient id="paint2_linear_101:43" x1="419.552" y1="-138.945" x2="428.479" y2="527.239" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#B1C9DC"/>
+</linearGradient>
+<linearGradient id="paint3_linear_101:43" x1="419.552" y1="-138.945" x2="428.479" y2="527.239" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#B1C9DC"/>
+</linearGradient>
+<linearGradient id="paint4_linear_101:43" x1="419.552" y1="-138.945" x2="428.479" y2="527.239" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#B1C9DC"/>
+</linearGradient>
+<linearGradient id="paint5_linear_101:43" x1="419.552" y1="-138.945" x2="428.479" y2="527.239" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#B1C9DC"/>
+</linearGradient>
+<linearGradient id="paint6_linear_101:43" x1="419.552" y1="-138.945" x2="428.479" y2="527.239" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#B1C9DC"/>
+</linearGradient>
+<linearGradient id="paint7_linear_101:43" x1="419.552" y1="-138.945" x2="428.479" y2="527.239" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#B1C9DC"/>
+</linearGradient>
+<linearGradient id="paint8_linear_101:43" x1="419.552" y1="-138.945" x2="428.479" y2="527.239" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#B1C9DC"/>
+</linearGradient>
+<linearGradient id="paint9_linear_101:43" x1="419.552" y1="-138.945" x2="428.479" y2="527.239" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#B1C9DC"/>
+</linearGradient>
+<linearGradient id="paint10_linear_101:43" x1="419.552" y1="-138.945" x2="428.479" y2="527.239" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#B1C9DC"/>
+</linearGradient>
+</defs>
+</svg>
diff --git a/public/img/poweredby/videos/003.png b/public/img/poweredby/videos/003.png
new file mode 100644
index 0000000..bd2ef5f
--- /dev/null
+++ b/public/img/poweredby/videos/003.png
Binary files differ
diff --git a/public/img/poweredby/videos/003.svg b/public/img/poweredby/videos/003.svg
new file mode 100644
index 0000000..d4bfbe6
--- /dev/null
+++ b/public/img/poweredby/videos/003.svg
@@ -0,0 +1,59 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="335" fill="#0070CC"/>
+<mask id="mask0_101:44" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="277" y="149" width="265" height="186">
+<rect x="277" y="149" width="265" height="186" fill="#0070CC"/>
+</mask>
+<g mask="url(#mask0_101:44)">
+<path d="M541.5 294.5C541.5 298.85 538.11 303.126 531.639 307.114C525.197 311.085 515.842 314.679 504.237 317.704C481.035 323.753 448.954 327.5 413.5 327.5C378.046 327.5 345.965 323.753 322.763 317.704C311.158 314.679 301.803 311.085 295.361 307.114C288.89 303.126 285.5 298.85 285.5 294.5C285.5 290.15 288.89 285.874 295.361 281.886C301.803 277.915 311.158 274.321 322.763 271.296C345.965 265.247 378.046 261.5 413.5 261.5C448.954 261.5 481.035 265.247 504.237 271.296C515.842 274.321 525.197 277.915 531.639 281.886C538.11 285.874 541.5 290.15 541.5 294.5Z" stroke="white"/>
+<path d="M541.5 349.5C541.5 353.85 538.11 358.126 531.639 362.114C525.197 366.085 515.842 369.679 504.237 372.704C481.035 378.753 448.954 382.5 413.5 382.5C378.046 382.5 345.965 378.753 322.763 372.704C311.158 369.679 301.803 366.085 295.361 362.114C288.89 358.126 285.5 353.85 285.5 349.5C285.5 345.15 288.89 340.874 295.361 336.886C301.803 332.915 311.158 329.321 322.763 326.296C345.965 320.247 378.046 316.5 413.5 316.5C448.954 316.5 481.035 320.247 504.237 326.296C515.842 329.321 525.197 332.915 531.639 336.886C538.11 340.874 541.5 345.15 541.5 349.5Z" stroke="white"/>
+<path d="M541.5 236.5C541.5 240.85 538.11 245.126 531.639 249.114C525.197 253.085 515.842 256.679 504.237 259.704C481.035 265.753 448.954 269.5 413.5 269.5C378.046 269.5 345.965 265.753 322.763 259.704C311.158 256.679 301.803 253.085 295.361 249.114C288.89 245.126 285.5 240.85 285.5 236.5C285.5 232.15 288.89 227.874 295.361 223.886C301.803 219.915 311.158 216.321 322.763 213.296C345.965 207.247 378.046 203.5 413.5 203.5C448.954 203.5 481.035 207.247 504.237 213.296C515.842 216.321 525.197 219.915 531.639 223.886C538.11 227.874 541.5 232.15 541.5 236.5Z" stroke="white"/>
+<g filter="url(#filter0_bii_101:44)">
+<ellipse cx="412.5" cy="202.5" rx="128.5" ry="33.5" fill="white" fill-opacity="0.148"/>
+</g>
+</g>
+<path d="M65.2967 297.463V296.458C64.5985 297.552 63.6497 298.252 62.4503 298.521C61.2509 298.791 60.0694 298.701 58.9058 298.234C57.7243 297.768 56.7218 296.888 55.8804 295.614C55.0391 294.34 54.6094 292.671 54.6094 290.589C54.6094 288.149 55.1644 286.192 56.2743 284.667C57.3842 283.159 59.1743 282.406 61.6447 282.406C63.5244 282.406 65.2609 282.908 66.872 283.931C68.4831 284.954 69.2708 286.838 69.2708 289.584V297.875C69.2708 300.621 68.4652 302.488 66.872 303.493C65.2609 304.498 63.5244 305 61.6447 305C58.0465 305 55.8088 303.313 54.9496 299.939H59.228C59.5324 300.496 60.0157 300.908 60.6602 301.213C61.3046 301.501 61.9491 301.59 62.5935 301.447C63.238 301.303 63.8287 300.926 64.3479 300.298C64.9028 299.652 65.2072 298.719 65.2967 297.463ZM58.6015 290.697C58.6015 293.407 59.3891 294.914 60.9466 295.201C62.504 295.489 63.6676 295.13 64.4016 294.107C64.7596 293.676 65.0102 292.994 65.1713 292.079C65.3325 291.163 65.3325 290.248 65.2072 289.333C65.0639 288.436 64.7417 287.628 64.2405 286.928C63.7392 286.228 62.9874 285.869 62.0028 285.869C60.6781 285.869 59.7651 286.354 59.2996 287.341C58.8342 288.31 58.6015 289.441 58.6015 290.697Z" fill="white"/>
+<path d="M83.6097 298.396H81.551C80.9603 298.396 80.477 298.216 80.1189 297.839C79.743 297.463 79.564 296.978 79.564 296.404V288.4C79.564 287.467 79.2776 286.767 78.7047 286.336C78.1319 285.905 77.5053 285.69 76.7892 285.69C76.0911 285.69 75.4645 285.905 74.9096 286.336C74.3546 286.767 74.0861 287.449 74.0861 288.4V298.414H69.9688V289.225C69.9688 286.551 70.6669 284.775 72.0453 283.877C73.4417 282.98 74.9633 282.477 76.646 282.406C78.3646 282.406 79.9578 282.854 81.4078 283.752C82.8579 284.649 83.5739 286.48 83.5739 289.225V298.396H83.6097Z" fill="white"/>
+<path d="M84.6124 284.111H88.7298C88.7298 286.3 88.7298 285.564 88.7298 286.121V298.414H84.6124V284.111Z" fill="white"/>
+<path d="M96.2843 298.396C94.9954 298.467 93.5991 298.449 92.0954 298.342C90.5916 298.216 89.8398 297.265 89.8398 295.452V280.144H91.9522C92.4534 280.144 92.9188 280.342 93.2948 280.736C93.6886 281.131 93.8855 281.598 93.8855 282.154V282.693H96.2843V283.518C96.2843 284.11 96.0874 284.595 95.6936 284.954C95.2998 285.331 94.8343 285.51 94.2794 285.51H93.8676V294.322C93.8676 294.986 94.2615 295.327 95.0491 295.327H96.2843V298.396Z" fill="white"/>
+<path d="M107.49 293.568H110.426C109.997 295.219 109.173 296.475 107.956 297.337C106.739 298.234 105.217 298.683 103.373 298.683C101.135 298.683 99.399 297.965 98.1459 296.511C96.8928 295.094 96.2662 293.084 96.2662 290.445C96.2662 287.933 96.8749 285.977 98.0922 284.559C99.3453 283.105 101.082 282.388 103.319 282.388C105.665 282.388 107.49 283.088 108.779 284.505C110.032 285.959 110.659 287.969 110.659 290.571C110.659 290.733 110.659 290.858 110.659 290.984C110.659 291.109 110.659 291.181 110.659 291.217C110.659 291.415 110.641 291.558 110.605 291.63H100.455C100.491 292.85 100.795 293.748 101.332 294.34C101.834 294.968 102.603 295.273 103.624 295.273C104.286 295.273 104.859 295.129 105.324 294.86C105.45 294.824 105.557 294.753 105.647 294.645C105.736 294.555 105.844 294.447 105.969 294.322C106.005 294.196 106.148 294.053 106.416 293.855C106.667 293.676 107.025 293.568 107.49 293.568ZM100.455 288.992H106.452C106.381 287.933 106.094 287.143 105.629 286.641C105.127 286.085 104.394 285.815 103.463 285.815C102.603 285.815 101.905 286.085 101.35 286.641C100.777 287.179 100.491 287.969 100.455 288.992Z" fill="white"/>
+<path d="M49.6138 276.914H51.7262C52.2812 276.914 52.7466 277.112 53.1404 277.507C53.5343 277.901 53.7312 278.368 53.7312 278.924V298.414H49.6138V276.914Z" fill="white"/>
+<path d="M84.6122 280.145H86.7246C87.2795 280.145 87.7449 280.342 88.1388 280.737C88.5326 281.132 88.7295 281.598 88.7295 282.155V283.393H84.6122V280.145Z" fill="white"/>
+<path d="M60.0154 280.36H59.3709V279.894C59.0487 280.253 58.6011 280.432 58.0462 280.432C57.527 280.432 57.0795 280.253 56.7036 279.912C56.3097 279.535 56.1128 279.068 56.1128 278.494C56.1128 277.902 56.3276 277.417 56.7394 277.04C57.1153 276.681 57.5808 276.52 58.0999 276.52C58.6369 276.52 59.0666 276.699 59.3888 277.076V276.609H60.0333V280.36H60.0154ZM59.353 278.494C59.353 278.135 59.2277 277.83 58.995 277.561C58.7444 277.309 58.4579 277.184 58.0999 277.184C57.724 277.184 57.4196 277.309 57.1511 277.579C56.9005 277.83 56.7752 278.099 56.7752 278.386C56.7752 278.763 56.8826 279.086 57.1153 279.355C57.348 279.642 57.6524 279.768 58.0283 279.768C58.3863 279.768 58.6906 279.642 58.9592 279.391C59.2277 279.158 59.353 278.853 59.353 278.494Z" fill="white"/>
+<path d="M64.6697 278.386C64.6697 278.978 64.4907 279.463 64.1327 279.84C63.7568 280.235 63.2913 280.432 62.7006 280.432C62.1635 280.432 61.7518 280.253 61.4296 279.912V281.598H60.7493V276.591H61.3938V277.04C61.5549 276.861 61.7518 276.735 61.9487 276.645C62.1635 276.556 62.3783 276.52 62.629 276.52C63.1481 276.52 63.6135 276.699 64.0074 277.04C64.4549 277.399 64.6697 277.848 64.6697 278.386ZM63.9716 278.476C63.9716 278.117 63.8463 277.812 63.5956 277.561C63.345 277.309 63.0228 277.184 62.6648 277.184C62.2888 277.184 61.9845 277.327 61.7339 277.596C61.5012 277.848 61.3938 278.153 61.3938 278.494C61.3938 278.817 61.4833 279.086 61.6802 279.337C61.9129 279.624 62.253 279.768 62.7006 279.768C63.0586 279.768 63.3629 279.642 63.6135 279.391C63.8642 279.158 63.9716 278.853 63.9716 278.476Z" fill="white"/>
+<path d="M69.1636 280.36H68.5192V279.894C68.1969 280.253 67.7494 280.432 67.1944 280.432C66.6753 280.432 66.2278 280.253 65.8518 279.912C65.458 279.535 65.2611 279.068 65.2611 278.494C65.2611 277.902 65.4759 277.417 65.8876 277.04C66.2636 276.681 66.729 276.52 67.2481 276.52C67.7852 276.52 68.2148 276.699 68.5371 277.076V276.609H69.1815V280.36H69.1636ZM68.5192 278.494C68.5192 278.135 68.3938 277.83 68.1611 277.561C67.9105 277.309 67.6241 277.184 67.2661 277.184C66.8901 277.184 66.5858 277.309 66.3173 277.579C66.0666 277.83 65.9413 278.099 65.9413 278.386C65.9413 278.763 66.0487 279.086 66.2815 279.355C66.5142 279.642 66.8185 279.768 67.1944 279.768C67.5525 279.768 67.8568 279.642 68.1253 279.391C68.3759 279.158 68.5192 278.853 68.5192 278.494Z" fill="white"/>
+<path d="M73.656 279.122C73.4412 279.553 73.1905 279.876 72.9041 280.091C72.5819 280.324 72.2059 280.45 71.7405 280.45C71.2214 280.45 70.7559 280.27 70.3621 279.894C69.9504 279.499 69.7355 279.032 69.7355 278.458H69.7713C69.7713 278.458 69.7713 278.476 69.7534 278.494C69.7534 277.902 69.9504 277.417 70.3621 277.04C70.7201 276.699 71.1498 276.52 71.651 276.52C72.1164 276.52 72.5103 276.645 72.8683 276.879C73.2084 277.112 73.477 277.453 73.6381 277.884H72.8862C72.6356 277.435 72.2238 277.202 71.6689 277.202C71.3109 277.202 71.0244 277.327 70.7917 277.579C70.559 277.83 70.4337 278.135 70.4337 278.494C70.4337 278.853 70.559 279.176 70.8096 279.427C71.0602 279.678 71.3646 279.804 71.7226 279.804C71.9553 279.804 72.188 279.75 72.4029 279.624C72.6177 279.499 72.7788 279.337 72.9041 279.14H73.656V279.122Z" fill="white"/>
+<path d="M77.5411 280.36H76.8609V278.206C76.8609 277.919 76.7713 277.668 76.5744 277.489C76.3954 277.309 76.1448 277.201 75.8584 277.201C75.5719 277.201 75.3392 277.291 75.1602 277.453C74.9812 277.632 74.8917 277.847 74.8917 278.135V280.36H74.2114V275.353H74.8917V276.914C75.1602 276.645 75.4824 276.519 75.8763 276.519C76.3059 276.519 76.6818 276.663 77.0041 276.968C77.3442 277.291 77.5232 277.704 77.5232 278.206V280.36H77.5411Z" fill="white"/>
+<path d="M81.9808 278.745H78.8122C78.8659 279.068 79.027 279.319 79.2776 279.517C79.5103 279.678 79.761 279.768 80.0295 279.768C80.2801 279.768 80.5128 279.696 80.7456 279.552C80.9783 279.409 81.1394 279.211 81.2289 278.978H81.9271C81.748 279.481 81.4616 279.84 81.0857 280.091C80.7635 280.306 80.4054 280.414 80.0116 280.414C79.5103 280.414 79.0807 280.234 78.7227 279.875C78.3467 279.481 78.1498 279.014 78.1498 278.44C78.1498 277.848 78.3467 277.363 78.7585 277.004C79.1344 276.663 79.5641 276.502 80.0653 276.502C80.5665 276.502 81.0141 276.663 81.3721 277.004C81.7838 277.381 81.9987 277.901 81.9987 278.547V278.745H81.9808ZM81.2826 278.117C81.211 277.83 81.0499 277.614 80.8172 277.435C80.5844 277.255 80.3338 277.166 80.0474 277.166C79.6894 277.166 79.385 277.291 79.1523 277.525C78.9912 277.686 78.8659 277.883 78.8122 278.117H81.2826Z" fill="white"/>
+<path d="M31.7481 275.102C31.7481 275.102 19.3065 282.711 31.032 290.266C33.2876 291.738 41.4686 295.83 41.2359 299.616C41.2359 299.616 46.1946 292.258 38.9445 287.628C31.4974 282.89 29.6357 277.83 31.7481 275.102Z" fill="white"/>
+<path d="M27.416 289.638C27.416 289.638 22.9764 296.386 31.7124 297.768C32.5717 297.876 38.8909 298.54 40.5378 300.621C40.5378 300.621 40.3946 297.032 35.239 294.914C30.1012 292.797 27.9889 292.276 27.416 289.638Z" fill="white"/>
+<path d="M44.6014 282.549C39.2667 276.95 37.7809 273.487 40.0723 269C40.0723 269 24.1578 275.138 39.8754 286.031C45.4964 289.925 44.5656 293.909 44.5656 294.053C45.4427 293.138 49.936 288.149 44.6014 282.549Z" fill="white"/>
+<path d="M156.794 292.4H144.518C144.938 294.723 146.58 296.145 148.563 296.145C149.825 296.145 151.407 295.985 152.568 294.002L156.373 294.803C154.951 298.168 152.068 299.79 148.543 299.79C143.977 299.79 140.272 296.325 140.272 291.259C140.272 286.192 143.997 282.687 148.603 282.687C152.909 282.687 156.614 286.012 156.774 290.938V292.4H156.794ZM144.638 289.396H152.428C151.887 287.334 150.325 286.412 148.623 286.412C147.001 286.432 145.159 287.394 144.638 289.396Z" fill="white"/>
+<path d="M202.314 299.329H198.048V297.948C196.746 299.149 194.984 299.83 192.721 299.83C188.616 299.83 184.811 296.365 184.811 291.299C184.811 286.232 188.616 282.728 192.721 282.728C194.984 282.728 196.766 283.408 198.048 284.61V277H202.314V299.329ZM198.048 291.279C198.048 288.295 195.745 286.432 193.462 286.432C190.879 286.432 188.936 288.315 188.936 291.279C188.936 294.263 190.879 296.085 193.462 296.085C195.765 296.085 198.048 294.243 198.048 291.279Z" fill="white"/>
+<path d="M237.219 283.228H231.332V286.793H237.219C238.862 286.793 239.963 287.494 239.963 289.116V289.376H235.317C231.252 289.376 228.909 291.439 228.909 294.543C228.909 297.707 231.372 299.81 235.057 299.81C237.26 299.81 238.862 299.069 239.963 298.008V299.329H244.048V288.795C244.048 284.95 241.345 283.308 237.219 283.228ZM239.963 292.801C239.963 294.863 238.001 296.426 235.738 296.426C234.095 296.426 232.994 295.644 232.994 294.463C232.994 293.361 233.895 292.621 235.257 292.621H239.983V292.801H239.963Z" fill="white"/>
+<path d="M212.006 283.228H206.119V286.793H212.006C213.649 286.793 214.75 287.494 214.75 289.116V289.376H210.104C206.039 289.376 203.695 291.439 203.695 294.543C203.695 297.707 206.159 299.81 209.844 299.81C212.046 299.81 213.649 299.069 214.75 298.008V299.329H218.815V288.795C218.815 284.95 216.112 283.308 212.006 283.228ZM214.75 292.801C214.75 294.863 212.787 296.426 210.524 296.426C208.882 296.426 207.781 295.644 207.781 294.463C207.781 293.361 208.682 292.621 210.044 292.621H214.77V292.801H214.75Z" fill="white"/>
+<path d="M176.54 283.228H170.652V286.793H176.54C178.182 286.793 179.283 287.494 179.283 289.116V289.376H174.637C170.572 289.376 168.229 291.439 168.229 294.543C168.229 297.707 170.692 299.81 174.377 299.81C176.58 299.81 178.182 299.069 179.283 298.008V299.329H183.369V288.795C183.369 284.95 180.665 283.308 176.54 283.228ZM179.283 292.801C179.283 294.863 177.321 296.426 175.058 296.426C173.416 296.426 172.314 295.644 172.314 294.463C172.314 293.361 173.215 292.621 174.577 292.621H179.303V292.801H179.283Z" fill="white"/>
+<path d="M168.369 283.208C165.746 283.208 163.883 284.25 162.581 286.132V283.188H158.316V299.309H162.581V294.102C162.581 289.617 164.384 286.793 168.329 286.793H168.529V283.208C168.469 283.208 168.429 283.208 168.369 283.208Z" fill="white"/>
+<path d="M139.471 295.424C138.83 295.665 138.149 295.825 137.629 295.825C136.207 295.825 135.266 294.984 135.266 293.041V286.673H139.631V283.188H135.266V279.243H131V286.693V293.382C131 297.807 133.523 299.81 137.328 299.81C138.67 299.81 139.972 299.53 141.614 298.628C140.753 297.747 139.932 296.666 139.471 295.424Z" fill="white"/>
+<path d="M227.567 295.785C227.387 295.805 227.226 295.825 227.086 295.825C225.664 295.825 224.723 294.984 224.723 293.041V286.673H229.209V283.188H224.723V279.243H220.457V286.693V293.382C220.457 297.807 222.981 299.81 226.786 299.81C227.727 299.81 228.548 299.67 229.529 299.289C228.268 298.388 227.787 296.906 227.567 295.785Z" fill="white"/>
+<path d="M251.158 296.866C251.158 298.388 249.996 299.57 248.354 299.57C246.732 299.57 245.55 298.408 245.55 296.866C245.55 295.404 246.712 294.142 248.354 294.142C249.996 294.142 251.158 295.424 251.158 296.866Z" fill="#F06F37"/>
+<defs>
+<filter id="filter0_bii_101:44" x="273.2" y="158.2" width="278.6" height="88.6" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feGaussianBlur in="BackgroundImage" stdDeviation="4.32"/>
+<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_101:44"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_backgroundBlur_101:44" result="shape"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dx="-10.8" dy="10.8"/>
+<feGaussianBlur stdDeviation="5.4"/>
+<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
+<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.148 0"/>
+<feBlend mode="normal" in2="shape" result="effect2_innerShadow_101:44"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dx="10.8" dy="-10.8"/>
+<feGaussianBlur stdDeviation="5.4"/>
+<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.76 0 0 0 0 0.76 0 0 0 0 0.76 0 0 0 0.148 0"/>
+<feBlend mode="normal" in2="effect2_innerShadow_101:44" result="effect3_innerShadow_101:44"/>
+</filter>
+</defs>
+</svg>
diff --git a/public/img/poweredby/videos/004.png b/public/img/poweredby/videos/004.png
new file mode 100644
index 0000000..390b39e
--- /dev/null
+++ b/public/img/poweredby/videos/004.png
Binary files differ
diff --git a/public/img/poweredby/videos/004.svg b/public/img/poweredby/videos/004.svg
new file mode 100644
index 0000000..d85c3df
--- /dev/null
+++ b/public/img/poweredby/videos/004.svg
@@ -0,0 +1,98 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="335" fill="#004782"/>
+<mask id="mask0_101:45" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="262" y="116" width="280" height="219">
+<rect x="262" y="116" width="280" height="219" fill="#004782"/>
+</mask>
+<g mask="url(#mask0_101:45)">
+<path d="M589 189V279C589 284.523 584.523 289 579 289H300C294.477 289 290 284.523 290 279V189C290 183.477 294.477 179 300 179H579C584.523 179 589 183.477 589 189Z" stroke="url(#paint0_linear_101:45)"/>
+<path d="M589 216V251H290V216H589Z" stroke="url(#paint1_linear_101:45)"/>
+<path d="M508 155V325C508 330.523 503.523 335 498 335H344C338.477 335 334 330.523 334 325V155C334 149.477 338.477 145 344 145H498C503.523 145 508 149.477 508 155Z" stroke="url(#paint2_linear_101:45)"/>
+<path d="M199.001 441.575L462.327 178.249" stroke="white" stroke-opacity="0.1"/>
+<path d="M245.307 487.883L508.633 224.556" stroke="white" stroke-opacity="0.1"/>
+<path d="M291.614 534.19L554.94 270.864" stroke="white" stroke-opacity="0.1"/>
+<path d="M337.921 580.497L601.247 317.171" stroke="white" stroke-opacity="0.1"/>
+<rect width="58.6501" height="58.6501" transform="matrix(-0.707107 0.707107 0.707107 0.707107 338.216 210.39)" fill="white"/>
+<rect x="3.57628e-07" y="2.12132" width="55.9631" height="55.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 336.847 222.702)" stroke="white" stroke-width="3"/>
+<rect x="2.38419e-07" y="1.41421" width="56.9631" height="56.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 338.459 231.39)" stroke="white" stroke-width="2"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 338.959 241.189)" stroke="white"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 338.823 251.059)" stroke="white" stroke-opacity="0.8"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 339.378 260.237)" stroke="white" stroke-opacity="0.5"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 339.378 270.221)" stroke="white" stroke-opacity="0.5"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 339.378 280.205)" stroke="white" stroke-opacity="0.5"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 339.378 290.189)" stroke="white" stroke-opacity="0.4"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 339.37 300.18)" stroke="white" stroke-opacity="0.3"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 339.37 310.165)" stroke="white" stroke-opacity="0.2"/>
+<rect width="58.6501" height="58.6501" transform="matrix(-0.707107 0.707107 0.707107 0.707107 429.404 298.488)" fill="white"/>
+<rect x="3.57628e-07" y="2.12132" width="55.9631" height="55.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 428.035 310.801)" stroke="white" stroke-width="3"/>
+<rect x="2.38419e-07" y="1.41421" width="56.9631" height="56.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 429.646 319.488)" stroke="white" stroke-width="2"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 430.146 329.287)" stroke="white"/>
+<rect width="58.6501" height="58.6501" transform="matrix(-0.707107 0.707107 0.707107 0.707107 423.37 126)" fill="white"/>
+<rect x="3.57628e-07" y="2.12132" width="55.9631" height="55.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 422.001 138.312)" stroke="white" stroke-width="3"/>
+<rect x="2.38419e-07" y="1.41421" width="56.9631" height="56.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 423.613 146.999)" stroke="white" stroke-width="2"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 424.113 156.798)" stroke="white"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 423.977 166.669)" stroke="white" stroke-opacity="0.8"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 424.532 175.846)" stroke="white" stroke-opacity="0.5"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 424.532 185.831)" stroke="white" stroke-opacity="0.5"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 424.532 195.815)" stroke="white" stroke-opacity="0.5"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 424.532 205.798)" stroke="white" stroke-opacity="0.4"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 424.524 215.79)" stroke="white" stroke-opacity="0.3"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 424.524 225.775)" stroke="white" stroke-opacity="0.2"/>
+<rect width="58.6501" height="58.6501" transform="matrix(-0.707107 0.707107 0.707107 0.707107 507.463 211.801)" fill="white"/>
+<rect x="3.57628e-07" y="2.12132" width="55.9631" height="55.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 506.094 224.114)" stroke="white" stroke-width="3"/>
+<rect x="2.38419e-07" y="1.41421" width="56.9631" height="56.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 507.706 232.801)" stroke="white" stroke-width="2"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 508.206 242.6)" stroke="white"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 508.07 252.471)" stroke="white" stroke-opacity="0.8"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 508.625 261.648)" stroke="white" stroke-opacity="0.5"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 508.625 271.632)" stroke="white" stroke-opacity="0.5"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 508.625 281.616)" stroke="white" stroke-opacity="0.5"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 508.625 291.6)" stroke="white" stroke-opacity="0.4"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 508.618 301.591)" stroke="white" stroke-opacity="0.3"/>
+<rect x="1.19209e-07" y="0.707107" width="57.9631" height="57.9631" transform="matrix(-0.707107 0.707107 0.707107 0.707107 508.618 311.576)" stroke="white" stroke-opacity="0.2"/>
+</g>
+<path d="M69.2967 296.463V295.458C68.5985 296.552 67.6497 297.252 66.4503 297.521C65.2509 297.791 64.0694 297.701 62.9058 297.234C61.7243 296.768 60.7218 295.888 59.8804 294.614C59.0391 293.34 58.6094 291.671 58.6094 289.589C58.6094 287.149 59.1644 285.192 60.2743 283.667C61.3842 282.159 63.1743 281.406 65.6447 281.406C67.5244 281.406 69.2609 281.908 70.872 282.931C72.4831 283.954 73.2708 285.838 73.2708 288.584V296.875C73.2708 299.621 72.4652 301.488 70.872 302.493C69.2609 303.498 67.5244 304 65.6447 304C62.0465 304 59.8088 302.313 58.9496 298.939H63.228C63.5324 299.496 64.0157 299.908 64.6602 300.213C65.3046 300.501 65.9491 300.59 66.5935 300.447C67.238 300.303 67.8287 299.926 68.3479 299.298C68.9028 298.652 69.2072 297.719 69.2967 296.463ZM62.6015 289.697C62.6015 292.407 63.3891 293.914 64.9466 294.201C66.504 294.489 67.6676 294.13 68.4016 293.107C68.7596 292.676 69.0102 291.994 69.1713 291.079C69.3325 290.163 69.3325 289.248 69.2072 288.333C69.0639 287.436 68.7417 286.628 68.2405 285.928C67.7392 285.228 66.9874 284.869 66.0028 284.869C64.6781 284.869 63.7651 285.354 63.2996 286.341C62.8342 287.31 62.6015 288.441 62.6015 289.697Z" fill="white"/>
+<path d="M87.6097 297.396H85.551C84.9603 297.396 84.477 297.216 84.1189 296.839C83.743 296.463 83.564 295.978 83.564 295.404V287.4C83.564 286.467 83.2776 285.767 82.7047 285.336C82.1319 284.905 81.5053 284.69 80.7892 284.69C80.0911 284.69 79.4645 284.905 78.9096 285.336C78.3546 285.767 78.0861 286.449 78.0861 287.4V297.414H73.9688V288.225C73.9688 285.551 74.6669 283.775 76.0453 282.877C77.4417 281.98 78.9633 281.477 80.646 281.406C82.3646 281.406 83.9578 281.854 85.4078 282.752C86.8579 283.649 87.5739 285.48 87.5739 288.225V297.396H87.6097Z" fill="white"/>
+<path d="M88.6124 283.111H92.7298C92.7298 285.3 92.7298 284.564 92.7298 285.121V297.414H88.6124V283.111Z" fill="white"/>
+<path d="M100.284 297.396C98.9954 297.467 97.5991 297.449 96.0954 297.342C94.5916 297.216 93.8398 296.265 93.8398 294.452V279.144H95.9522C96.4534 279.144 96.9188 279.342 97.2948 279.736C97.6886 280.131 97.8855 280.598 97.8855 281.154V281.693H100.284V282.518C100.284 283.11 100.087 283.595 99.6936 283.954C99.2998 284.331 98.8343 284.51 98.2794 284.51H97.8676V293.322C97.8676 293.986 98.2615 294.327 99.0491 294.327H100.284V297.396Z" fill="white"/>
+<path d="M111.49 292.568H114.426C113.997 294.219 113.173 295.475 111.956 296.337C110.739 297.234 109.217 297.683 107.373 297.683C105.135 297.683 103.399 296.965 102.146 295.511C100.893 294.094 100.266 292.084 100.266 289.445C100.266 286.933 100.875 284.977 102.092 283.559C103.345 282.105 105.082 281.388 107.319 281.388C109.665 281.388 111.49 282.088 112.779 283.505C114.032 284.959 114.659 286.969 114.659 289.571C114.659 289.733 114.659 289.858 114.659 289.984C114.659 290.109 114.659 290.181 114.659 290.217C114.659 290.415 114.641 290.558 114.605 290.63H104.455C104.491 291.85 104.795 292.748 105.332 293.34C105.834 293.968 106.603 294.273 107.624 294.273C108.286 294.273 108.859 294.129 109.324 293.86C109.45 293.824 109.557 293.753 109.647 293.645C109.736 293.555 109.844 293.447 109.969 293.322C110.005 293.196 110.148 293.053 110.416 292.855C110.667 292.676 111.025 292.568 111.49 292.568ZM104.455 287.992H110.452C110.381 286.933 110.094 286.143 109.629 285.641C109.127 285.085 108.394 284.815 107.463 284.815C106.603 284.815 105.905 285.085 105.35 285.641C104.777 286.179 104.491 286.969 104.455 287.992Z" fill="white"/>
+<path d="M53.6138 275.914H55.7262C56.2812 275.914 56.7466 276.112 57.1404 276.507C57.5343 276.901 57.7312 277.368 57.7312 277.924V297.414H53.6138V275.914Z" fill="white"/>
+<path d="M88.6122 279.145H90.7246C91.2795 279.145 91.745 279.342 92.1388 279.737C92.5326 280.132 92.7295 280.598 92.7295 281.155V282.393H88.6122V279.145Z" fill="white"/>
+<path d="M64.0154 279.36H63.3709V278.894C63.0487 279.253 62.6011 279.432 62.0462 279.432C61.527 279.432 61.0795 279.253 60.7036 278.912C60.3097 278.535 60.1128 278.068 60.1128 277.494C60.1128 276.902 60.3276 276.417 60.7394 276.04C61.1153 275.681 61.5808 275.52 62.0999 275.52C62.6369 275.52 63.0666 275.699 63.3888 276.076V275.609H64.0333V279.36H64.0154ZM63.353 277.494C63.353 277.135 63.2277 276.83 62.995 276.561C62.7444 276.309 62.4579 276.184 62.0999 276.184C61.724 276.184 61.4196 276.309 61.1511 276.579C60.9005 276.83 60.7752 277.099 60.7752 277.386C60.7752 277.763 60.8826 278.086 61.1153 278.355C61.348 278.642 61.6524 278.768 62.0283 278.768C62.3863 278.768 62.6906 278.642 62.9592 278.391C63.2277 278.158 63.353 277.853 63.353 277.494Z" fill="white"/>
+<path d="M68.6697 277.386C68.6697 277.978 68.4907 278.463 68.1327 278.84C67.7568 279.235 67.2913 279.432 66.7006 279.432C66.1635 279.432 65.7518 279.253 65.4296 278.912V280.598H64.7493V275.591H65.3938V276.04C65.5549 275.861 65.7518 275.735 65.9487 275.645C66.1635 275.556 66.3783 275.52 66.629 275.52C67.1481 275.52 67.6135 275.699 68.0074 276.04C68.4549 276.399 68.6697 276.848 68.6697 277.386ZM67.9716 277.476C67.9716 277.117 67.8463 276.812 67.5956 276.561C67.345 276.309 67.0228 276.184 66.6648 276.184C66.2888 276.184 65.9845 276.327 65.7339 276.596C65.5012 276.848 65.3938 277.153 65.3938 277.494C65.3938 277.817 65.4833 278.086 65.6802 278.337C65.9129 278.624 66.253 278.768 66.7006 278.768C67.0586 278.768 67.3629 278.642 67.6135 278.391C67.8642 278.158 67.9716 277.853 67.9716 277.476Z" fill="white"/>
+<path d="M73.1636 279.36H72.5192V278.894C72.1969 279.253 71.7494 279.432 71.1944 279.432C70.6753 279.432 70.2278 279.253 69.8518 278.912C69.458 278.535 69.2611 278.068 69.2611 277.494C69.2611 276.902 69.4759 276.417 69.8876 276.04C70.2636 275.681 70.729 275.52 71.2481 275.52C71.7852 275.52 72.2148 275.699 72.5371 276.076V275.609H73.1815V279.36H73.1636ZM72.5192 277.494C72.5192 277.135 72.3938 276.83 72.1611 276.561C71.9105 276.309 71.6241 276.184 71.2661 276.184C70.8901 276.184 70.5858 276.309 70.3173 276.579C70.0666 276.83 69.9413 277.099 69.9413 277.386C69.9413 277.763 70.0487 278.086 70.2815 278.355C70.5142 278.642 70.8185 278.768 71.1944 278.768C71.5525 278.768 71.8568 278.642 72.1253 278.391C72.3759 278.158 72.5192 277.853 72.5192 277.494Z" fill="white"/>
+<path d="M77.656 278.122C77.4412 278.553 77.1905 278.876 76.9041 279.091C76.5819 279.324 76.2059 279.45 75.7405 279.45C75.2214 279.45 74.7559 279.27 74.3621 278.894C73.9504 278.499 73.7355 278.032 73.7355 277.458H73.7713C73.7713 277.458 73.7713 277.476 73.7534 277.494C73.7534 276.902 73.9504 276.417 74.3621 276.04C74.7201 275.699 75.1498 275.52 75.651 275.52C76.1164 275.52 76.5103 275.645 76.8683 275.879C77.2084 276.112 77.477 276.453 77.6381 276.884H76.8862C76.6356 276.435 76.2238 276.202 75.6689 276.202C75.3109 276.202 75.0244 276.327 74.7917 276.579C74.559 276.83 74.4337 277.135 74.4337 277.494C74.4337 277.853 74.559 278.176 74.8096 278.427C75.0602 278.678 75.3646 278.804 75.7226 278.804C75.9553 278.804 76.188 278.75 76.4029 278.624C76.6177 278.499 76.7788 278.337 76.9041 278.14H77.656V278.122Z" fill="white"/>
+<path d="M81.5411 279.36H80.8609V277.206C80.8609 276.919 80.7713 276.668 80.5744 276.489C80.3954 276.309 80.1448 276.201 79.8584 276.201C79.5719 276.201 79.3392 276.291 79.1602 276.453C78.9812 276.632 78.8917 276.847 78.8917 277.135V279.36H78.2114V274.353H78.8917V275.914C79.1602 275.645 79.4824 275.519 79.8763 275.519C80.3059 275.519 80.6818 275.663 81.0041 275.968C81.3442 276.291 81.5232 276.704 81.5232 277.206V279.36H81.5411Z" fill="white"/>
+<path d="M85.9808 277.745H82.8122C82.8659 278.068 83.027 278.319 83.2776 278.517C83.5104 278.678 83.761 278.768 84.0295 278.768C84.2801 278.768 84.5128 278.696 84.7456 278.552C84.9783 278.409 85.1394 278.211 85.2289 277.978H85.9271C85.7481 278.481 85.4616 278.84 85.0857 279.091C84.7635 279.306 84.4054 279.414 84.0116 279.414C83.5104 279.414 83.0807 279.234 82.7227 278.875C82.3468 278.481 82.1498 278.014 82.1498 277.44C82.1498 276.848 82.3468 276.363 82.7585 276.004C83.1344 275.663 83.5641 275.502 84.0653 275.502C84.5666 275.502 85.0141 275.663 85.3721 276.004C85.7839 276.381 85.9987 276.901 85.9987 277.547V277.745H85.9808ZM85.2826 277.117C85.211 276.83 85.0499 276.614 84.8172 276.435C84.5845 276.255 84.3338 276.166 84.0474 276.166C83.6894 276.166 83.385 276.291 83.1523 276.525C82.9912 276.686 82.8659 276.883 82.8122 277.117H85.2826Z" fill="white"/>
+<path d="M35.7481 274.102C35.7481 274.102 23.3065 281.711 35.032 289.266C37.2876 290.738 45.4686 294.83 45.2359 298.616C45.2359 298.616 50.1946 291.258 42.9445 286.628C35.4974 281.89 33.6357 276.83 35.7481 274.102Z" fill="white"/>
+<path d="M31.416 288.638C31.416 288.638 26.9764 295.386 35.7124 296.768C36.5717 296.876 42.8909 297.54 44.5378 299.621C44.5378 299.621 44.3946 296.032 39.239 293.914C34.1012 291.797 31.9889 291.276 31.416 288.638Z" fill="white"/>
+<path d="M48.6014 281.549C43.2667 275.95 41.7809 272.487 44.0723 268C44.0723 268 28.1578 274.138 43.8754 285.031C49.4964 288.925 48.5656 292.909 48.5656 293.053C49.4427 292.138 53.936 287.149 48.6014 281.549Z" fill="white"/>
+<g clip-path="url(#clip0_101:45)">
+<path d="M167.258 280.098C166.701 280.177 164.318 280.649 163.523 280.807C162.649 281.043 154.545 287.348 153.989 288.845C153.91 289.318 153.989 294.834 153.989 294.834L158.597 295.149L158.438 296.647C157.803 296.568 153.512 296.647 150.811 296.647C149.46 296.647 145.329 296.804 143.899 296.726L144.058 295.307C144.931 295.386 146.282 295.228 147.077 294.992C147.871 294.755 148.507 294.44 148.507 293.652V288.924C148.189 288.057 141.436 279.625 139.688 278.285C139.211 278.128 135.795 277.734 135 277.576L135.159 276.158H150.652L150.414 277.497C149.699 277.655 146.441 277.734 145.567 277.97C147.792 281.201 151.288 285.457 152.4 287.033C153.036 286.166 158.995 281.989 159.153 280.728C158.279 280.571 155.499 280.177 155.022 280.177L154.784 278.758H168.132L167.258 280.098V280.098Z" fill="#FF0132"/>
+<path d="M200.31 292.391C197.847 292.234 193.556 292.312 191.093 292.391L191.252 291.13C191.649 291.13 193.636 290.815 194.112 290.736V286.323C192.921 286.323 186.088 286.481 185.055 286.717V290.658C185.055 290.658 187.995 290.973 188.63 291.052L188.471 292.391C185.849 292.234 180.526 292.234 177.984 292.391L178.142 290.973C178.937 290.973 181.082 290.736 181.559 290.658C181.638 289.712 181.638 288.136 181.638 286.56V284.59C181.638 283.88 181.638 281.989 181.559 281.28C181.003 281.28 178.54 281.043 177.904 281.043L178.063 279.783C180.288 279.94 187.041 279.94 188.869 279.783L188.71 280.965C188.153 280.965 185.77 281.359 185.055 281.359V284.826H194.112V279.704C193.477 279.625 191.808 279.31 191.093 279.231L191.252 278.049C192.762 278.128 198.8 278.128 200.389 278.049L200.31 279.31C199.833 279.31 198.085 279.625 197.449 279.704V290.894C197.449 290.894 199.992 291.209 200.548 291.288L200.31 292.391H200.31Z" fill="#FF0132"/>
+<path d="M247.901 288.688H245.438V276H251L250.523 277.891L247.901 288.688ZM245.995 293.731L244.326 293.81L244.644 290.973L246.312 291.052L247.901 290.973L247.584 293.731H245.995Z" fill="#FF0132"/>
+<path d="M232.249 277.261C225.655 277.418 221.523 279.94 221.444 284.353V284.511C221.603 288.924 225.655 291.524 232.249 291.682H232.726C239.241 291.524 243.373 288.924 243.532 284.432C243.373 280.177 239.32 277.418 232.726 277.261H232.249ZM231.534 279.231H233.282C235.507 279.389 239.559 280.649 239.638 284.432C239.638 288.215 235.507 289.633 233.282 289.712H231.534C229.31 289.554 225.257 288.215 225.178 284.432C225.257 280.649 229.31 279.389 231.534 279.231Z" fill="#FF0132"/>
+<path d="M209.923 279.467C203.647 279.625 200.151 282.068 200.151 286.087V286.245C200.151 290.027 203.964 292.707 209.923 292.864H210.559C216.518 292.707 220.331 290.185 220.411 286.245V286.087C220.411 282.068 216.518 279.625 210.559 279.467H209.923ZM209.605 281.28H210.877C212.942 281.359 216.915 282.462 216.915 286.008V286.323C216.915 289.791 212.942 290.973 210.877 291.052H209.605C207.54 290.973 203.567 289.87 203.567 286.323V286.166V286.008C203.567 282.541 207.54 281.359 209.605 281.28Z" fill="#FF0132"/>
+<path d="M165.033 282.383L164.953 283.486L167.496 284.117C167.496 284.117 163.762 291.524 162.967 292.549C162.331 292.707 160.663 293.1 160.027 293.179L159.868 294.519C160.345 294.44 166.94 294.519 167.575 294.519L167.734 293.258L165.43 292.706C165.43 292.706 166.463 290.579 166.622 290.342C167.337 290.185 171.627 290.106 171.627 290.106L173.137 294.204C173.137 294.204 171.31 294.519 170.595 294.519L170.436 295.859H179.89L180.049 294.677C179.493 294.755 177.745 294.283 177.11 294.204C176.395 293.1 173.852 286.717 172.66 283.88L174.805 283.565L175.044 282.462H171.786C170.594 282.462 165.51 282.462 165.033 282.383ZM169.403 284.196L171.23 288.845H167.258C167.496 288.294 169.403 284.196 169.403 284.196Z" fill="#FF0132"/>
+<path d="M209.526 294.913C209.208 294.992 208.175 295.307 207.858 295.465C207.858 296.41 207.699 300.745 207.699 300.745C207.619 302.715 206.745 304.054 204.441 305L203.567 304.764C204.679 304.133 205.236 303.503 205.315 303.03C205.553 302.399 205.633 300.902 205.633 298.223C205.633 298.223 205.633 296.174 205.553 295.465C205.236 295.386 203.805 295.071 203.329 294.992V294.361C204.203 294.361 206.268 294.44 206.984 294.44C207.778 294.44 208.731 294.44 209.526 294.361V294.913L209.526 294.913Z" fill="#FF0132"/>
+<path d="M246.63 296.174C246.471 296.253 245.995 296.332 245.518 296.41C245.518 297.12 245.597 302.242 245.597 303.424C245.597 303.582 245.438 303.66 245.2 303.503C244.088 302.399 240.512 298.38 239.321 296.962C239.321 297.908 239.4 301.533 239.4 302.163C239.877 302.321 240.91 302.557 241.068 302.557L241.148 303.266H237.255V302.557C237.652 302.399 237.97 302.242 238.367 302.163C238.447 301.769 238.447 296.726 238.447 296.332C238.129 296.332 237.573 296.253 237.175 296.253V295.386H240.036C241.068 296.568 243.532 299.247 244.803 300.666C244.803 299.484 244.723 296.726 244.723 296.253C244.485 296.253 244.008 296.174 243.532 296.095L243.452 295.386C243.69 295.386 245.041 295.465 245.279 295.465C245.518 295.465 246.63 295.386 246.868 295.386C246.869 295.386 246.63 296.174 246.63 296.174H246.63Z" fill="#FF0132"/>
+<path d="M225.496 298.302C225.496 299.247 224.622 299.641 223.589 299.799V300.508C225.655 300.272 227.005 299.484 227.005 298.223V298.144C227.005 296.726 226.052 295.465 223.827 295.465H219.537L219.696 296.253C220.093 296.332 220.649 296.332 221.047 296.332C221.047 297.277 221.205 301.296 221.126 302.478C220.888 302.557 220.093 302.715 219.775 302.793L219.696 303.503H224.622V302.951C224.304 302.872 223.192 302.636 222.953 302.636C222.953 302.399 222.874 296.726 222.874 296.41C223.351 296.41 224.145 296.41 224.463 296.489C225.337 296.726 225.575 297.592 225.575 298.223" fill="#FF0132"/>
+<path d="M216.041 295.386L211.751 295.544V296.095L212.863 296.253C212.148 297.829 210.241 301.848 209.923 302.321C209.606 302.478 209.288 302.557 208.97 302.636L208.89 303.266H212.307V302.715L211.274 302.4C211.274 302.4 211.91 300.823 212.148 300.351H215.088L215.882 302.4C215.882 302.4 215.167 302.557 214.611 302.636L214.532 303.188H218.822L218.901 302.557C218.504 302.715 217.63 302.478 217.63 302.478C217.074 301.375 215.644 297.908 214.929 296.253L216.041 296.016V295.386ZM213.737 296.804L214.929 299.799H212.466C212.625 299.405 213.737 296.804 213.737 296.804Z" fill="#FF0132"/>
+<path d="M233.759 295.386L229.548 295.544V296.095L230.66 296.253C229.945 297.829 228.038 301.848 227.72 302.321C227.403 302.4 227.085 302.557 226.767 302.636L226.688 303.266C227.641 303.187 229.786 303.266 230.104 303.266V302.715L229.071 302.4C229.071 302.4 229.707 300.823 229.945 300.351H232.885L233.68 302.4C233.68 302.4 232.964 302.557 232.408 302.636L232.329 303.187H236.619L236.699 302.557C236.222 302.715 235.348 302.478 235.348 302.478C234.474 300.666 233.044 297.198 232.647 296.253L233.68 296.095L233.759 295.386ZM231.455 296.804L232.647 299.799H230.184C230.343 299.405 231.455 296.804 231.455 296.804Z" fill="#FF0132"/>
+</g>
+<defs>
+<linearGradient id="paint0_linear_101:45" x1="392.7" y1="237.746" x2="597.036" y2="196.411" gradientUnits="userSpaceOnUse">
+<stop stop-color="#ED1C24"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint1_linear_101:45" x1="392.7" y1="234.692" x2="544.174" y2="138.391" gradientUnits="userSpaceOnUse">
+<stop stop-color="#ED1C24"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint2_linear_101:45" x1="393.765" y1="246.47" x2="516.97" y2="238.073" gradientUnits="userSpaceOnUse">
+<stop stop-color="#ED1C24"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<clipPath id="clip0_101:45">
+<rect width="116" height="29" fill="white" transform="translate(135 276)"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/public/img/poweredby/videos/005.png b/public/img/poweredby/videos/005.png
new file mode 100644
index 0000000..67bda71
--- /dev/null
+++ b/public/img/poweredby/videos/005.png
Binary files differ
diff --git a/public/img/poweredby/videos/005.svg b/public/img/poweredby/videos/005.svg
new file mode 100644
index 0000000..c7fa64a
--- /dev/null
+++ b/public/img/poweredby/videos/005.svg
@@ -0,0 +1,159 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="335" fill="#0070CC"/>
+<mask id="mask0_101:46" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="252" y="47" width="290" height="288">
+<rect x="252" y="47" width="290" height="288" fill="#0070CC"/>
+</mask>
+<g mask="url(#mask0_101:46)">
+<path d="M293 335V258" stroke="url(#paint0_linear_101:46)"/>
+<path d="M274 354V277" stroke="url(#paint1_linear_101:46)"/>
+<path d="M255 385V308" stroke="url(#paint2_linear_101:46)"/>
+<path d="M312 335V258" stroke="url(#paint3_linear_101:46)"/>
+<path d="M330 335V248" stroke="url(#paint4_linear_101:46)"/>
+<path d="M349 335V238" stroke="url(#paint5_linear_101:46)"/>
+<path d="M368 335V228" stroke="url(#paint6_linear_101:46)"/>
+<path d="M386 335V198" stroke="url(#paint7_linear_101:46)"/>
+<path d="M405 335V148" stroke="url(#paint8_linear_101:46)"/>
+<path d="M423 335V118" stroke="url(#paint9_linear_101:46)"/>
+<path d="M442 335V98" stroke="url(#paint10_linear_101:46)"/>
+<path d="M460 335V88" stroke="url(#paint11_linear_101:46)"/>
+<path d="M479 335V68" stroke="url(#paint12_linear_101:46)"/>
+<path d="M497 335V68" stroke="url(#paint13_linear_101:46)"/>
+<path d="M516 335V48" stroke="url(#paint14_linear_101:46)"/>
+<g filter="url(#filter0_bii_101:46)">
+<path d="M351.91 296.128C313.488 303.08 268.077 331.338 266 354H554V77C554 77 534.414 77 522.841 99.4747C496.186 151.237 482.334 272.53 351.91 296.128Z" fill="white" fill-opacity="0.119"/>
+</g>
+</g>
+<path d="M69.2967 294.463V293.458C68.5985 294.552 67.6497 295.252 66.4503 295.521C65.2509 295.791 64.0694 295.701 62.9058 295.234C61.7243 294.768 60.7218 293.888 59.8804 292.614C59.0391 291.34 58.6094 289.671 58.6094 287.589C58.6094 285.149 59.1644 283.192 60.2743 281.667C61.3842 280.16 63.1743 279.406 65.6447 279.406C67.5244 279.406 69.2609 279.908 70.872 280.931C72.4831 281.954 73.2708 283.838 73.2708 286.584V294.875C73.2708 297.621 72.4652 299.488 70.872 300.493C69.2609 301.498 67.5244 302 65.6447 302C62.0465 302 59.8088 300.313 58.9496 296.939H63.228C63.5324 297.496 64.0157 297.908 64.6602 298.213C65.3046 298.501 65.9491 298.59 66.5935 298.447C67.238 298.303 67.8287 297.926 68.3479 297.298C68.9028 296.652 69.2072 295.719 69.2967 294.463ZM62.6015 287.697C62.6015 290.407 63.3891 291.914 64.9466 292.201C66.504 292.489 67.6676 292.13 68.4016 291.107C68.7596 290.676 69.0102 289.994 69.1713 289.079C69.3325 288.164 69.3325 287.248 69.2072 286.333C69.0639 285.436 68.7417 284.628 68.2405 283.928C67.7392 283.228 66.9874 282.869 66.0028 282.869C64.6781 282.869 63.7651 283.354 63.2996 284.341C62.8342 285.31 62.6015 286.441 62.6015 287.697Z" fill="white"/>
+<path d="M87.6097 295.396H85.551C84.9603 295.396 84.477 295.216 84.1189 294.84C83.743 294.463 83.564 293.978 83.564 293.404V285.4C83.564 284.467 83.2776 283.767 82.7047 283.336C82.1319 282.905 81.5053 282.69 80.7892 282.69C80.0911 282.69 79.4645 282.905 78.9096 283.336C78.3546 283.767 78.0861 284.449 78.0861 285.4V295.414H73.9688V286.225C73.9688 283.551 74.6669 281.775 76.0453 280.877C77.4417 279.98 78.9633 279.478 80.646 279.406C82.3646 279.406 83.9578 279.854 85.4078 280.752C86.8579 281.649 87.5739 283.48 87.5739 286.225V295.396H87.6097Z" fill="white"/>
+<path d="M88.6124 281.111H92.7298C92.7298 283.3 92.7298 282.564 92.7298 283.121V295.414H88.6124V281.111Z" fill="white"/>
+<path d="M100.284 295.396C98.9954 295.467 97.5991 295.449 96.0954 295.342C94.5916 295.216 93.8398 294.265 93.8398 292.452V277.144H95.9522C96.4534 277.144 96.9188 277.342 97.2948 277.736C97.6886 278.131 97.8855 278.598 97.8855 279.154V279.693H100.284V280.518C100.284 281.11 100.087 281.595 99.6936 281.954C99.2998 282.331 98.8343 282.51 98.2794 282.51H97.8676V291.322C97.8676 291.986 98.2615 292.327 99.0491 292.327H100.284V295.396Z" fill="white"/>
+<path d="M111.49 290.568H114.426C113.997 292.219 113.173 293.475 111.956 294.337C110.739 295.234 109.217 295.683 107.373 295.683C105.135 295.683 103.399 294.965 102.146 293.511C100.893 292.094 100.266 290.084 100.266 287.445C100.266 284.933 100.875 282.977 102.092 281.559C103.345 280.105 105.082 279.388 107.319 279.388C109.665 279.388 111.49 280.087 112.779 281.505C114.032 282.959 114.659 284.969 114.659 287.571C114.659 287.733 114.659 287.858 114.659 287.984C114.659 288.109 114.659 288.181 114.659 288.217C114.659 288.415 114.641 288.558 114.605 288.63H104.455C104.491 289.85 104.795 290.748 105.332 291.34C105.834 291.968 106.603 292.273 107.624 292.273C108.286 292.273 108.859 292.129 109.324 291.86C109.45 291.824 109.557 291.753 109.647 291.645C109.736 291.555 109.844 291.447 109.969 291.322C110.005 291.196 110.148 291.053 110.416 290.855C110.667 290.676 111.025 290.568 111.49 290.568ZM104.455 285.992H110.452C110.381 284.933 110.094 284.143 109.629 283.641C109.127 283.085 108.394 282.815 107.463 282.815C106.603 282.815 105.905 283.085 105.35 283.641C104.777 284.179 104.491 284.969 104.455 285.992Z" fill="white"/>
+<path d="M53.6138 273.914H55.7262C56.2812 273.914 56.7466 274.112 57.1404 274.507C57.5343 274.901 57.7312 275.368 57.7312 275.924V295.414H53.6138V273.914Z" fill="white"/>
+<path d="M88.6122 277.145H90.7246C91.2795 277.145 91.7449 277.342 92.1388 277.737C92.5326 278.132 92.7295 278.598 92.7295 279.155V280.393H88.6122V277.145Z" fill="white"/>
+<path d="M64.0154 277.36H63.3709V276.894C63.0487 277.252 62.6011 277.432 62.0462 277.432C61.527 277.432 61.0795 277.252 60.7036 276.911C60.3097 276.535 60.1128 276.068 60.1128 275.494C60.1128 274.902 60.3276 274.417 60.7394 274.04C61.1153 273.681 61.5808 273.52 62.0999 273.52C62.6369 273.52 63.0666 273.699 63.3888 274.076V273.609H64.0333V277.36H64.0154ZM63.353 275.494C63.353 275.135 63.2277 274.83 62.995 274.561C62.7444 274.309 62.4579 274.184 62.0999 274.184C61.724 274.184 61.4196 274.309 61.1511 274.578C60.9005 274.83 60.7752 275.099 60.7752 275.386C60.7752 275.763 60.8826 276.086 61.1153 276.355C61.348 276.642 61.6524 276.768 62.0283 276.768C62.3863 276.768 62.6906 276.642 62.9592 276.391C63.2277 276.158 63.353 275.853 63.353 275.494Z" fill="white"/>
+<path d="M68.6697 275.386C68.6697 275.978 68.4907 276.463 68.1327 276.84C67.7568 277.235 67.2913 277.432 66.7006 277.432C66.1635 277.432 65.7518 277.252 65.4296 276.911V278.598H64.7493V273.591H65.3938V274.04C65.5549 273.861 65.7518 273.735 65.9487 273.645C66.1635 273.556 66.3783 273.52 66.629 273.52C67.1481 273.52 67.6135 273.699 68.0074 274.04C68.4549 274.399 68.6697 274.848 68.6697 275.386ZM67.9716 275.476C67.9716 275.117 67.8463 274.812 67.5956 274.561C67.345 274.309 67.0228 274.184 66.6648 274.184C66.2888 274.184 65.9845 274.327 65.7339 274.596C65.5012 274.848 65.3938 275.153 65.3938 275.494C65.3938 275.817 65.4833 276.086 65.6802 276.337C65.9129 276.624 66.253 276.768 66.7006 276.768C67.0586 276.768 67.3629 276.642 67.6135 276.391C67.8642 276.158 67.9716 275.853 67.9716 275.476Z" fill="white"/>
+<path d="M73.1636 277.36H72.5192V276.894C72.1969 277.252 71.7494 277.432 71.1944 277.432C70.6753 277.432 70.2278 277.252 69.8518 276.911C69.458 276.535 69.2611 276.068 69.2611 275.494C69.2611 274.902 69.4759 274.417 69.8876 274.04C70.2636 273.681 70.729 273.52 71.2481 273.52C71.7852 273.52 72.2148 273.699 72.5371 274.076V273.609H73.1815V277.36H73.1636ZM72.5192 275.494C72.5192 275.135 72.3938 274.83 72.1611 274.561C71.9105 274.309 71.6241 274.184 71.2661 274.184C70.8901 274.184 70.5858 274.309 70.3173 274.578C70.0666 274.83 69.9413 275.099 69.9413 275.386C69.9413 275.763 70.0487 276.086 70.2815 276.355C70.5142 276.642 70.8185 276.768 71.1944 276.768C71.5525 276.768 71.8568 276.642 72.1253 276.391C72.3759 276.158 72.5192 275.853 72.5192 275.494Z" fill="white"/>
+<path d="M77.656 276.122C77.4412 276.553 77.1905 276.876 76.9041 277.091C76.5819 277.324 76.2059 277.45 75.7405 277.45C75.2214 277.45 74.7559 277.27 74.3621 276.894C73.9504 276.499 73.7355 276.032 73.7355 275.458H73.7713C73.7713 275.458 73.7713 275.476 73.7534 275.494C73.7534 274.902 73.9504 274.417 74.3621 274.04C74.7201 273.699 75.1498 273.52 75.651 273.52C76.1164 273.52 76.5103 273.645 76.8683 273.879C77.2084 274.112 77.477 274.453 77.6381 274.884H76.8862C76.6356 274.435 76.2238 274.202 75.6689 274.202C75.3109 274.202 75.0244 274.327 74.7917 274.578C74.559 274.83 74.4337 275.135 74.4337 275.494C74.4337 275.853 74.559 276.176 74.8096 276.427C75.0602 276.678 75.3646 276.804 75.7226 276.804C75.9553 276.804 76.188 276.75 76.4029 276.624C76.6177 276.499 76.7788 276.337 76.9041 276.14H77.656V276.122Z" fill="white"/>
+<path d="M81.5411 277.36H80.8609V275.206C80.8609 274.919 80.7713 274.668 80.5744 274.489C80.3954 274.309 80.1448 274.201 79.8584 274.201C79.5719 274.201 79.3392 274.291 79.1602 274.453C78.9812 274.632 78.8917 274.847 78.8917 275.135V277.36H78.2114V272.353H78.8917V273.914C79.1602 273.645 79.4824 273.519 79.8763 273.519C80.3059 273.519 80.6818 273.663 81.0041 273.968C81.3442 274.291 81.5232 274.704 81.5232 275.206V277.36H81.5411Z" fill="white"/>
+<path d="M85.9808 275.745H82.8122C82.8659 276.068 83.027 276.319 83.2776 276.517C83.5103 276.678 83.761 276.768 84.0295 276.768C84.2801 276.768 84.5128 276.696 84.7456 276.552C84.9783 276.409 85.1394 276.211 85.2289 275.978H85.9271C85.748 276.481 85.4616 276.84 85.0857 277.091C84.7635 277.306 84.4054 277.414 84.0116 277.414C83.5103 277.414 83.0807 277.234 82.7227 276.875C82.3467 276.481 82.1498 276.014 82.1498 275.44C82.1498 274.848 82.3467 274.363 82.7585 274.004C83.1344 273.663 83.5641 273.502 84.0653 273.502C84.5665 273.502 85.0141 273.663 85.3721 274.004C85.7838 274.381 85.9987 274.901 85.9987 275.547V275.745H85.9808ZM85.2826 275.117C85.211 274.83 85.0499 274.614 84.8172 274.435C84.5844 274.255 84.3338 274.166 84.0474 274.166C83.6894 274.166 83.385 274.291 83.1523 274.525C82.9912 274.686 82.8659 274.883 82.8122 275.117H85.2826Z" fill="white"/>
+<path d="M35.7481 272.102C35.7481 272.102 23.3065 279.711 35.032 287.266C37.2876 288.738 45.4686 292.83 45.2359 296.616C45.2359 296.616 50.1946 289.258 42.9445 284.628C35.4974 279.89 33.6357 274.83 35.7481 272.102Z" fill="white"/>
+<path d="M31.416 286.638C31.416 286.638 26.9764 293.386 35.7124 294.768C36.5717 294.876 42.8909 295.54 44.5378 297.621C44.5378 297.621 44.3946 294.032 39.239 291.915C34.1012 289.797 31.9889 289.276 31.416 286.638Z" fill="white"/>
+<path d="M48.6014 279.549C43.2667 273.95 41.7809 270.487 44.0723 266C44.0723 266 28.1578 272.138 43.8754 283.031C49.4964 286.925 48.5656 290.909 48.5656 291.053C49.4427 290.138 53.936 285.149 48.6014 279.549Z" fill="white"/>
+<path d="M198.454 285.549V280.936C198.454 280.053 198.061 279.513 197.274 279.513C196.291 279.513 195.603 280.593 195.603 282.016V285.549H193.981C193.981 285.549 193.981 280.445 193.981 280.298C193.981 279.709 193.932 278.875 193.883 278.384C193.883 278.384 194.62 278.384 195.21 278.384C195.357 278.384 195.407 278.433 195.407 278.581C195.407 278.728 195.407 279.464 195.407 279.464H195.456C195.652 279.12 196.144 278.237 197.668 278.237C199.24 278.237 200.076 279.268 200.076 280.494V285.549H198.454ZM185.724 283.979C185.773 283.979 185.822 284.028 185.822 284.126C185.871 284.469 185.871 285.009 185.871 285.206C185.527 285.353 184.839 285.696 184.004 285.696C181.841 285.696 180.514 284.42 180.514 281.967C180.514 279.66 181.693 278.237 184.004 278.237C184.79 278.237 185.478 278.482 185.871 278.728C185.871 278.973 185.871 279.562 185.822 279.807C185.822 279.906 185.773 279.955 185.724 279.955C185.675 279.955 185.626 279.955 185.576 279.906C185.036 279.66 184.544 279.513 184.102 279.513C182.726 279.513 182.136 280.396 182.136 281.918C182.136 283.292 182.578 284.322 184.102 284.322C184.692 284.322 185.183 284.126 185.527 283.979C185.675 284.028 185.675 283.979 185.724 283.979ZM191.327 285.549C191.18 285.549 191.081 285.5 191.081 285.304C191.081 285.058 191.032 284.617 191.032 284.617C190.934 284.764 190.344 285.647 188.87 285.647C187.444 285.647 186.658 284.568 186.658 283.341C186.658 281.672 188.28 280.838 190.688 280.838H190.983V280.593C190.983 279.856 190.442 279.464 189.459 279.464C188.575 279.464 187.837 279.758 187.542 279.906C187.542 279.906 187.493 279.955 187.444 279.955C187.395 279.955 187.346 279.906 187.346 279.807C187.346 279.562 187.297 279.022 187.297 278.679C187.592 278.581 188.575 278.188 189.656 278.188C191.769 278.188 192.703 279.169 192.703 280.74V283.537C192.703 284.568 192.802 285.206 192.851 285.5C192.703 285.549 191.475 285.549 191.327 285.549ZM190.983 281.967C190.983 281.967 190.737 281.967 190.688 281.967C188.624 281.967 188.231 282.654 188.231 283.39C188.231 283.979 188.624 284.519 189.361 284.519C190.393 284.519 190.934 283.537 190.934 282.506V281.967H190.983ZM170.585 283.979C170.684 283.979 170.684 284.077 170.684 284.126C170.733 284.42 170.733 285.107 170.733 285.304C170.536 285.353 169.701 285.696 168.521 285.696C166.26 285.696 164.884 284.519 164.884 281.967C164.884 279.807 166.063 278.237 168.177 278.237C170.241 278.237 171.224 279.611 171.224 281.329C171.224 281.525 171.224 281.869 171.175 282.31H166.604C166.604 283.537 167.391 284.42 168.816 284.42C169.602 284.42 170.241 284.126 170.487 284.028C170.487 284.028 170.536 283.979 170.585 283.979ZM166.604 281.28H169.602C169.651 280.151 169.062 279.464 168.128 279.464C167.194 279.464 166.604 280.151 166.604 281.28ZM162.082 285.549V280.985C162.082 280.151 161.738 279.513 160.903 279.513C159.969 279.513 159.428 280.544 159.428 282.016V285.549H157.806V280.985C157.806 280.249 157.511 279.562 156.626 279.562C155.643 279.562 155.152 280.593 155.152 282.114V285.598H153.53C153.53 285.598 153.53 281.083 153.53 280.396C153.53 279.709 153.481 278.777 153.432 278.433C153.432 278.433 154.267 278.433 154.71 278.433C154.857 278.433 154.906 278.482 154.906 278.63C154.906 278.826 154.906 279.513 154.906 279.513H154.955C155.054 279.317 155.594 278.286 157.069 278.286C158.445 278.286 158.986 279.268 159.133 279.611C159.281 279.366 159.87 278.286 161.296 278.286C162.77 278.286 163.753 279.071 163.753 280.642V285.598H162.082V285.549ZM174.075 282.065V285.549H172.453C172.453 285.549 172.453 280.74 172.453 280.249C172.453 279.758 172.404 278.777 172.355 278.433C172.355 278.433 173.092 278.433 173.682 278.433C173.829 278.433 173.878 278.482 173.878 278.63C173.878 278.826 173.878 279.513 173.878 279.513H173.928C174.075 279.219 174.517 278.286 175.844 278.286C176.287 278.286 176.631 278.433 176.68 278.433C176.68 278.728 176.631 279.415 176.631 279.611C176.631 279.709 176.582 279.758 176.533 279.758C176.483 279.758 176.434 279.758 176.434 279.758C176.336 279.709 176.09 279.66 175.746 279.66C174.911 279.611 174.075 280.249 174.075 282.065ZM177.565 285.549V278.433H179.187V285.598H177.565V285.549ZM177.565 277.403V275.832H179.236V277.403H177.565ZM151.023 285.549L150.286 283.439H146.305L145.567 285.549H143.847L147.435 276.176H149.303L152.793 285.549H151.023ZM148.271 277.894L146.698 282.163H149.794L148.271 277.894ZM196.93 297.425C199.044 297.425 200.076 296.542 200.076 295.266C200.076 293.99 199.191 293.45 198.208 293.156C197.913 293.057 197.668 292.959 197.422 292.91C196.783 292.714 196.439 292.419 196.439 291.978C196.439 291.536 196.832 291.242 197.668 291.242C198.405 291.242 199.044 291.536 199.29 291.683C199.339 291.683 199.388 291.732 199.437 291.732C199.486 291.732 199.535 291.683 199.535 291.585C199.535 291.34 199.584 290.898 199.584 290.506C199.388 290.407 198.7 290.064 197.52 290.064C195.8 290.064 194.718 290.996 194.718 292.174C194.718 293.352 195.505 293.843 196.39 294.137C196.586 294.186 196.979 294.333 197.176 294.382C198.11 294.677 198.356 294.971 198.356 295.364C198.356 295.904 197.766 296.198 196.734 296.198C195.898 296.198 195.308 295.904 195.112 295.806C195.063 295.806 195.063 295.756 194.964 295.756C194.866 295.756 194.866 295.904 194.866 295.953C194.866 296.051 194.817 296.787 194.817 297.032C195.013 297.032 195.8 297.425 196.93 297.425ZM193.146 295.707C193.244 295.707 193.244 295.806 193.293 295.855C193.342 296.149 193.342 296.836 193.342 297.032C193.146 297.081 192.31 297.425 191.13 297.425C188.87 297.425 187.493 296.247 187.493 293.695C187.493 291.536 188.673 289.966 190.786 289.966C192.851 289.966 193.834 291.34 193.834 293.057C193.834 293.254 193.834 293.597 193.785 294.039H189.214C189.214 295.266 190 296.149 191.425 296.149C192.212 296.149 192.851 295.855 193.097 295.756C193.047 295.707 193.047 295.707 193.146 295.707ZM189.115 292.959H192.113C192.163 291.831 191.573 291.144 190.639 291.144C189.705 291.193 189.164 291.88 189.115 292.959ZM184.643 297.278V292.665C184.643 291.781 184.249 291.242 183.463 291.242C182.48 291.242 181.792 292.321 181.792 293.744V297.278H180.17C180.17 297.278 180.17 292.174 180.17 292.027C180.17 291.438 180.121 290.604 180.071 290.113C180.071 290.113 180.858 290.113 181.399 290.113C181.546 290.113 181.595 290.162 181.595 290.309C181.595 290.456 181.595 291.193 181.595 291.193H181.644C181.841 290.849 182.332 289.966 183.856 289.966C185.38 289.966 186.265 290.996 186.265 292.223V297.278H184.643ZM169.848 293.794V297.278H168.226C168.226 297.278 168.226 292.469 168.226 291.978C168.226 291.487 168.177 290.506 168.128 290.162C168.128 290.162 168.816 290.162 169.455 290.162C169.602 290.162 169.651 290.211 169.651 290.358C169.651 290.555 169.651 291.242 169.651 291.242H169.701C169.848 290.947 170.29 290.015 171.618 290.015C172.06 290.015 172.404 290.162 172.453 290.162C172.453 290.456 172.404 291.144 172.404 291.34C172.404 291.438 172.355 291.487 172.306 291.487C172.256 291.487 172.207 291.487 172.207 291.487C172.109 291.438 171.863 291.389 171.519 291.389C170.634 291.34 169.848 291.978 169.848 293.794ZM175.009 297.278V287.512H173.387V297.278H175.009ZM164.835 297.278V290.113H166.457V297.278H164.835ZM164.786 289.082V287.512H166.457V289.082H164.786ZM176.778 297.278V290.113H178.4V297.278H176.778ZM176.778 289.082V287.512H178.45V289.082H176.778ZM162.377 297.278L161.64 295.168H157.659L156.872 297.278H155.152L158.691 287.905H160.608L164.147 297.278H162.377ZM159.625 289.622L158.101 293.892H161.197L159.625 289.622Z" fill="white"/>
+<path d="M219.589 299.928C221.604 303.265 224.848 303.167 225.733 303.167H236.153L223.865 288.297C218.213 288.543 215.214 292.174 215.804 293.695L219.589 299.928Z" fill="url(#paint15_linear_101:46)"/>
+<path d="M215.804 293.646C215.804 293.597 215.46 292.861 215.46 291.978C215.46 288.592 218.458 286.629 221.899 285.942L223.816 288.297C218.213 288.494 215.214 292.125 215.804 293.646Z" fill="url(#paint16_linear_101:46)"/>
+<path d="M220.523 282.605C215.362 282.605 211.479 283.439 211.479 285.5C211.479 286.236 211.725 286.874 212.364 288.003L215.804 293.646C215.804 293.597 215.46 292.861 215.46 291.978C215.46 288.592 218.458 286.629 221.899 285.942C222.882 285.745 223.914 285.647 224.897 285.647C225.733 285.647 226.519 285.696 227.109 285.893C226.814 284.568 225.88 282.605 220.523 282.605Z" fill="url(#paint17_linear_101:46)"/>
+<path d="M206.908 279.071C208.333 281.378 208.874 281.967 212.265 281.967C214.772 281.967 218.753 281.967 218.753 281.967L209.808 270.729C207.842 268.275 206.711 267.833 204.893 267.833H200.076L206.908 279.071Z" fill="url(#paint18_linear_101:46)"/>
+<defs>
+<filter id="filter0_bii_101:46" x="257.16" y="68.16" width="305.68" height="294.68" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feGaussianBlur in="BackgroundImage" stdDeviation="4.42"/>
+<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_101:46"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_backgroundBlur_101:46" result="shape"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dx="-3.4" dy="3.4"/>
+<feGaussianBlur stdDeviation="1.7"/>
+<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
+<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.458 0"/>
+<feBlend mode="normal" in2="shape" result="effect2_innerShadow_101:46"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dx="3.4" dy="-3.4"/>
+<feGaussianBlur stdDeviation="1.7"/>
+<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.84 0 0 0 0 0.84 0 0 0 0 0.84 0 0 0 0.458 0"/>
+<feBlend mode="normal" in2="effect2_innerShadow_101:46" result="effect3_innerShadow_101:46"/>
+</filter>
+<linearGradient id="paint0_linear_101:46" x1="293.5" y1="208" x2="293.5" y2="335" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint1_linear_101:46" x1="274.5" y1="227" x2="274.5" y2="354" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint2_linear_101:46" x1="255.5" y1="258" x2="255.5" y2="385" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint3_linear_101:46" x1="312.5" y1="208" x2="312.5" y2="335" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint4_linear_101:46" x1="330.5" y1="208" x2="330.5" y2="335" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint5_linear_101:46" x1="349.5" y1="208" x2="349.5" y2="335" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint6_linear_101:46" x1="368.5" y1="208" x2="368.5" y2="335" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint7_linear_101:46" x1="386.5" y1="208" x2="386.5" y2="335" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint8_linear_101:46" x1="405.5" y1="208" x2="405.5" y2="335" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint9_linear_101:46" x1="423.5" y1="208" x2="423.5" y2="335" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint10_linear_101:46" x1="442.5" y1="208" x2="442.5" y2="335" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint11_linear_101:46" x1="460.5" y1="208" x2="460.5" y2="335" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint12_linear_101:46" x1="479.5" y1="208" x2="479.5" y2="335" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint13_linear_101:46" x1="497.5" y1="208" x2="497.5" y2="335" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint14_linear_101:46" x1="516.5" y1="208" x2="516.5" y2="335" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint15_linear_101:46" x1="225.932" y1="287.887" x2="225.932" y2="310.827" gradientUnits="userSpaceOnUse">
+<stop stop-color="#E30613"/>
+<stop offset="0.1471" stop-color="#DF0813"/>
+<stop offset="0.2996" stop-color="#D30D13"/>
+<stop offset="0.4545" stop-color="#BF1213"/>
+<stop offset="0.6112" stop-color="#A51511"/>
+<stop offset="0.7677" stop-color="#86160D"/>
+<stop offset="0.81" stop-color="#7C150C"/>
+</linearGradient>
+<linearGradient id="paint16_linear_101:46" x1="215.47" y1="289.795" x2="223.856" y2="289.795" gradientUnits="userSpaceOnUse">
+<stop stop-color="#6F251A"/>
+<stop offset="0.1406" stop-color="#7F271B"/>
+<stop offset="0.5166" stop-color="#A92B1E"/>
+<stop offset="0.8162" stop-color="#C52B1E"/>
+<stop offset="1" stop-color="#CF2B1E"/>
+</linearGradient>
+<linearGradient id="paint17_linear_101:46" x1="214.549" y1="288.572" x2="223.885" y2="282.954" gradientUnits="userSpaceOnUse">
+<stop offset="0.1" stop-color="#F5F7FA"/>
+<stop offset="0.3638" stop-color="#E1E6EB"/>
+<stop offset="0.8932" stop-color="#B0BCC3"/>
+<stop offset="1" stop-color="#A5B3BA"/>
+</linearGradient>
+<linearGradient id="paint18_linear_101:46" x1="209.398" y1="283.851" x2="209.398" y2="268.002" gradientUnits="userSpaceOnUse">
+<stop stop-color="#212B6C"/>
+<stop offset="0.1391" stop-color="#0E4584"/>
+<stop offset="0.2977" stop-color="#00629F"/>
+<stop offset="0.4543" stop-color="#007AB8"/>
+<stop offset="0.6056" stop-color="#008ECC"/>
+<stop offset="0.75" stop-color="#009CDA"/>
+<stop offset="0.8847" stop-color="#00A4E3"/>
+<stop offset="1" stop-color="#00A7E5"/>
+</linearGradient>
+</defs>
+</svg>
diff --git a/public/img/poweredby/videos/006.png b/public/img/poweredby/videos/006.png
new file mode 100644
index 0000000..a972419
--- /dev/null
+++ b/public/img/poweredby/videos/006.png
Binary files differ
diff --git a/public/img/poweredby/videos/006.svg b/public/img/poweredby/videos/006.svg
new file mode 100644
index 0000000..9931e5c
--- /dev/null
+++ b/public/img/poweredby/videos/006.svg
@@ -0,0 +1,58 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="335" fill="#0070CC"/>
+<mask id="mask0_101:47" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="286" y="92" width="256" height="243">
+<rect x="286" y="92" width="256" height="243" fill="#0070CC"/>
+</mask>
+<g mask="url(#mask0_101:47)">
+<path d="M384.903 99V224.813" stroke="white" stroke-opacity="0.2" stroke-miterlimit="10"/>
+<path d="M400.042 105.913V224.813" stroke="white" stroke-opacity="0.2" stroke-width="1.6364" stroke-miterlimit="10"/>
+<path d="M415.181 112.826V224.813" stroke="white" stroke-opacity="0.2" stroke-width="2.2727" stroke-miterlimit="10"/>
+<path d="M430.32 119.669V224.813" stroke="white" stroke-opacity="0.2" stroke-width="2.9091" stroke-miterlimit="10"/>
+<path d="M445.528 126.582V224.813" stroke="white" stroke-opacity="0.2" stroke-width="3.5455" stroke-miterlimit="10"/>
+<path d="M460.667 133.495V224.813" stroke="white" stroke-opacity="0.2" stroke-width="4.1818" stroke-miterlimit="10"/>
+<path d="M475.806 140.408V224.813" stroke="white" stroke-opacity="0.2" stroke-width="4.8182" stroke-miterlimit="10"/>
+<path d="M490.945 147.32V224.813" stroke="white" stroke-opacity="0.2" stroke-width="5.4545" stroke-miterlimit="10"/>
+<path d="M506.084 154.233V224.813" stroke="white" stroke-opacity="0.2" stroke-width="6.0909" stroke-miterlimit="10"/>
+<path d="M521.223 161.146V224.813" stroke="white" stroke-opacity="0.2" stroke-width="6.7273" stroke-miterlimit="10"/>
+<path d="M536.362 167.99V224.813" stroke="white" stroke-opacity="0.2" stroke-width="7.3636" stroke-miterlimit="10"/>
+<path d="M482.512 389.89V237.117" stroke="white" stroke-opacity="0.2" stroke-miterlimit="10"/>
+<path d="M465.368 381.595V237.117" stroke="white" stroke-opacity="0.2" stroke-width="1.6364" stroke-miterlimit="10"/>
+<path d="M448.224 373.368V237.117" stroke="white" stroke-opacity="0.2" stroke-width="2.2727" stroke-miterlimit="10"/>
+<path d="M431.081 365.073V237.117" stroke="white" stroke-opacity="0.2" stroke-width="2.9091" stroke-miterlimit="10"/>
+<path d="M413.937 356.778V237.117" stroke="white" stroke-opacity="0.2" stroke-width="3.5455" stroke-miterlimit="10"/>
+<path d="M396.793 348.482V237.117" stroke="white" stroke-opacity="0.2" stroke-width="4.1818" stroke-miterlimit="10"/>
+<path d="M379.649 340.256V237.117" stroke="white" stroke-opacity="0.2" stroke-width="4.8182" stroke-miterlimit="10"/>
+<path d="M362.575 331.961V237.117" stroke="white" stroke-opacity="0.2" stroke-width="5.4545" stroke-miterlimit="10"/>
+<path d="M345.431 323.665V237.117" stroke="white" stroke-opacity="0.2" stroke-width="6.0909" stroke-miterlimit="10"/>
+<path d="M328.287 315.37V237.117" stroke="white" stroke-opacity="0.2" stroke-width="6.7273" stroke-miterlimit="10"/>
+<path d="M311.144 307.075V237.117" stroke="white" stroke-opacity="0.2" stroke-width="7.3636" stroke-miterlimit="10"/>
+<path d="M294 298.849V237.117" stroke="white" stroke-opacity="0.2" stroke-width="8" stroke-miterlimit="10"/>
+<path d="M360.017 156.238V313.504" stroke="#F6F6F6" stroke-miterlimit="10"/>
+<path d="M377.506 164.395V317.098" stroke="#F6F6F6" stroke-width="1.7778" stroke-miterlimit="10"/>
+<path d="M394.927 172.483V320.762" stroke="#F6F6F6" stroke-width="2.5556" stroke-miterlimit="10"/>
+<path d="M412.347 180.64V324.357" stroke="#F6F6F6" stroke-width="3.3333" stroke-miterlimit="10"/>
+<path d="M429.767 188.728V328.021" stroke="#F6F6F6" stroke-width="4.1111" stroke-miterlimit="10"/>
+<path d="M447.187 196.885V331.615" stroke="#F6F6F6" stroke-width="4.8889" stroke-miterlimit="10"/>
+<path d="M464.607 204.973V335.279" stroke="#F6F6F6" stroke-width="5.6667" stroke-miterlimit="10"/>
+<path d="M482.028 213.13V338.874" stroke="#F6F6F6" stroke-width="6.4444" stroke-miterlimit="10"/>
+<path d="M499.448 221.218V342.468" stroke="#F6F6F6" stroke-width="7.2222" stroke-miterlimit="10"/>
+<path d="M516.937 229.375V346.132" stroke="#F6F6F6" stroke-width="8" stroke-miterlimit="10"/>
+</g>
+<path d="M63.2967 297.463V296.458C62.5985 297.552 61.6497 298.252 60.4503 298.521C59.2509 298.791 58.0694 298.701 56.9058 298.234C55.7243 297.768 54.7218 296.888 53.8804 295.614C53.0391 294.34 52.6094 292.671 52.6094 290.589C52.6094 288.149 53.1644 286.192 54.2743 284.667C55.3842 283.16 57.1743 282.406 59.6447 282.406C61.5244 282.406 63.2609 282.908 64.872 283.931C66.4831 284.954 67.2708 286.838 67.2708 289.584V297.875C67.2708 300.621 66.4652 302.488 64.872 303.493C63.2609 304.498 61.5244 305 59.6447 305C56.0465 305 53.8088 303.313 52.9496 299.939H57.228C57.5324 300.496 58.0157 300.908 58.6602 301.213C59.3046 301.501 59.9491 301.59 60.5935 301.447C61.238 301.303 61.8287 300.926 62.3479 300.298C62.9028 299.652 63.2072 298.719 63.2967 297.463ZM56.6015 290.697C56.6015 293.407 57.3891 294.914 58.9466 295.201C60.504 295.489 61.6676 295.13 62.4016 294.107C62.7596 293.676 63.0102 292.994 63.1713 292.079C63.3325 291.164 63.3325 290.248 63.2072 289.333C63.0639 288.436 62.7417 287.628 62.2405 286.928C61.7392 286.228 60.9874 285.869 60.0028 285.869C58.6781 285.869 57.7651 286.354 57.2996 287.341C56.8342 288.31 56.6015 289.441 56.6015 290.697Z" fill="white"/>
+<path d="M81.6097 298.396H79.551C78.9603 298.396 78.477 298.216 78.1189 297.84C77.743 297.463 77.564 296.978 77.564 296.404V288.4C77.564 287.467 77.2776 286.767 76.7047 286.336C76.1319 285.905 75.5053 285.69 74.7892 285.69C74.0911 285.69 73.4645 285.905 72.9096 286.336C72.3546 286.767 72.0861 287.449 72.0861 288.4V298.414H67.9688V289.225C67.9688 286.551 68.6669 284.775 70.0453 283.877C71.4417 282.98 72.9633 282.478 74.646 282.406C76.3646 282.406 77.9578 282.854 79.4078 283.752C80.8579 284.649 81.5739 286.48 81.5739 289.225V298.396H81.6097Z" fill="white"/>
+<path d="M82.6124 284.111H86.7298C86.7298 286.3 86.7298 285.564 86.7298 286.121V298.414H82.6124V284.111Z" fill="white"/>
+<path d="M94.2843 298.396C92.9954 298.467 91.5991 298.449 90.0954 298.342C88.5916 298.216 87.8398 297.265 87.8398 295.452V280.144H89.9522C90.4534 280.144 90.9188 280.342 91.2948 280.736C91.6886 281.131 91.8855 281.598 91.8855 282.154V282.693H94.2843V283.518C94.2843 284.11 94.0874 284.595 93.6936 284.954C93.2998 285.331 92.8343 285.51 92.2794 285.51H91.8676V294.322C91.8676 294.986 92.2615 295.327 93.0491 295.327H94.2843V298.396Z" fill="white"/>
+<path d="M105.49 293.568H108.426C107.997 295.219 107.173 296.475 105.956 297.337C104.739 298.234 103.217 298.683 101.373 298.683C99.1354 298.683 97.399 297.965 96.1459 296.511C94.8928 295.094 94.2662 293.084 94.2662 290.445C94.2662 287.933 94.8749 285.977 96.0922 284.559C97.3453 283.105 99.0817 282.388 101.319 282.388C103.665 282.388 105.49 283.087 106.779 284.505C108.032 285.959 108.659 287.969 108.659 290.571C108.659 290.733 108.659 290.858 108.659 290.984C108.659 291.109 108.659 291.181 108.659 291.217C108.659 291.415 108.641 291.558 108.605 291.63H98.4552C98.491 292.85 98.7953 293.748 99.3323 294.34C99.8336 294.968 100.603 295.273 101.624 295.273C102.286 295.273 102.859 295.129 103.324 294.86C103.45 294.824 103.557 294.753 103.647 294.645C103.736 294.555 103.844 294.447 103.969 294.322C104.005 294.196 104.148 294.053 104.416 293.855C104.667 293.676 105.025 293.568 105.49 293.568ZM98.4552 288.992H104.452C104.381 287.933 104.094 287.143 103.629 286.641C103.127 286.085 102.394 285.815 101.463 285.815C100.603 285.815 99.9052 286.085 99.3502 286.641C98.7774 287.179 98.491 287.969 98.4552 288.992Z" fill="white"/>
+<path d="M47.6138 276.914H49.7262C50.2812 276.914 50.7466 277.112 51.1404 277.507C51.5343 277.901 51.7312 278.368 51.7312 278.924V298.414H47.6138V276.914Z" fill="white"/>
+<path d="M82.6122 280.145H84.7246C85.2795 280.145 85.745 280.342 86.1388 280.737C86.5326 281.132 86.7295 281.598 86.7295 282.155V283.393H82.6122V280.145Z" fill="white"/>
+<path d="M58.0154 280.36H57.3709V279.894C57.0487 280.252 56.6011 280.432 56.0462 280.432C55.527 280.432 55.0795 280.252 54.7036 279.911C54.3097 279.535 54.1128 279.068 54.1128 278.494C54.1128 277.902 54.3276 277.417 54.7394 277.04C55.1153 276.681 55.5808 276.52 56.0999 276.52C56.6369 276.52 57.0666 276.699 57.3888 277.076V276.609H58.0333V280.36H58.0154ZM57.353 278.494C57.353 278.135 57.2277 277.83 56.995 277.561C56.7444 277.309 56.4579 277.184 56.0999 277.184C55.724 277.184 55.4196 277.309 55.1511 277.578C54.9005 277.83 54.7752 278.099 54.7752 278.386C54.7752 278.763 54.8826 279.086 55.1153 279.355C55.348 279.642 55.6524 279.768 56.0283 279.768C56.3863 279.768 56.6906 279.642 56.9592 279.391C57.2277 279.158 57.353 278.853 57.353 278.494Z" fill="white"/>
+<path d="M62.6697 278.386C62.6697 278.978 62.4907 279.463 62.1327 279.84C61.7568 280.235 61.2913 280.432 60.7006 280.432C60.1635 280.432 59.7518 280.252 59.4296 279.911V281.598H58.7493V276.591H59.3938V277.04C59.5549 276.861 59.7518 276.735 59.9487 276.645C60.1635 276.556 60.3783 276.52 60.629 276.52C61.1481 276.52 61.6135 276.699 62.0074 277.04C62.4549 277.399 62.6697 277.848 62.6697 278.386ZM61.9716 278.476C61.9716 278.117 61.8463 277.812 61.5956 277.561C61.345 277.309 61.0228 277.184 60.6648 277.184C60.2888 277.184 59.9845 277.327 59.7339 277.596C59.5012 277.848 59.3938 278.153 59.3938 278.494C59.3938 278.817 59.4833 279.086 59.6802 279.337C59.9129 279.624 60.253 279.768 60.7006 279.768C61.0586 279.768 61.3629 279.642 61.6135 279.391C61.8642 279.158 61.9716 278.853 61.9716 278.476Z" fill="white"/>
+<path d="M67.1636 280.36H66.5192V279.894C66.1969 280.252 65.7494 280.432 65.1944 280.432C64.6753 280.432 64.2278 280.252 63.8518 279.911C63.458 279.535 63.2611 279.068 63.2611 278.494C63.2611 277.902 63.4759 277.417 63.8876 277.04C64.2636 276.681 64.729 276.52 65.2481 276.52C65.7852 276.52 66.2148 276.699 66.5371 277.076V276.609H67.1815V280.36H67.1636ZM66.5192 278.494C66.5192 278.135 66.3938 277.83 66.1611 277.561C65.9105 277.309 65.6241 277.184 65.2661 277.184C64.8901 277.184 64.5858 277.309 64.3173 277.578C64.0666 277.83 63.9413 278.099 63.9413 278.386C63.9413 278.763 64.0487 279.086 64.2815 279.355C64.5142 279.642 64.8185 279.768 65.1944 279.768C65.5525 279.768 65.8568 279.642 66.1253 279.391C66.3759 279.158 66.5192 278.853 66.5192 278.494Z" fill="white"/>
+<path d="M71.656 279.122C71.4412 279.553 71.1905 279.876 70.9041 280.091C70.5819 280.324 70.2059 280.45 69.7405 280.45C69.2214 280.45 68.7559 280.27 68.3621 279.894C67.9504 279.499 67.7355 279.032 67.7355 278.458H67.7713C67.7713 278.458 67.7713 278.476 67.7534 278.494C67.7534 277.902 67.9504 277.417 68.3621 277.04C68.7201 276.699 69.1498 276.52 69.651 276.52C70.1164 276.52 70.5103 276.645 70.8683 276.879C71.2084 277.112 71.477 277.453 71.6381 277.884H70.8862C70.6356 277.435 70.2238 277.202 69.6689 277.202C69.3109 277.202 69.0244 277.327 68.7917 277.578C68.559 277.83 68.4337 278.135 68.4337 278.494C68.4337 278.853 68.559 279.176 68.8096 279.427C69.0602 279.678 69.3646 279.804 69.7226 279.804C69.9553 279.804 70.188 279.75 70.4029 279.624C70.6177 279.499 70.7788 279.337 70.9041 279.14H71.656V279.122Z" fill="white"/>
+<path d="M75.5411 280.36H74.8609V278.206C74.8609 277.919 74.7713 277.668 74.5744 277.489C74.3954 277.309 74.1448 277.201 73.8584 277.201C73.5719 277.201 73.3392 277.291 73.1602 277.453C72.9812 277.632 72.8917 277.847 72.8917 278.135V280.36H72.2114V275.353H72.8917V276.914C73.1602 276.645 73.4824 276.519 73.8763 276.519C74.3059 276.519 74.6818 276.663 75.0041 276.968C75.3442 277.291 75.5232 277.704 75.5232 278.206V280.36H75.5411Z" fill="white"/>
+<path d="M79.9808 278.745H76.8122C76.8659 279.068 77.027 279.319 77.2776 279.517C77.5104 279.678 77.761 279.768 78.0295 279.768C78.2801 279.768 78.5128 279.696 78.7456 279.552C78.9783 279.409 79.1394 279.211 79.2289 278.978H79.9271C79.7481 279.481 79.4616 279.84 79.0857 280.091C78.7635 280.306 78.4054 280.414 78.0116 280.414C77.5104 280.414 77.0807 280.234 76.7227 279.875C76.3468 279.481 76.1498 279.014 76.1498 278.44C76.1498 277.848 76.3468 277.363 76.7585 277.004C77.1344 276.663 77.5641 276.502 78.0653 276.502C78.5666 276.502 79.0141 276.663 79.3721 277.004C79.7839 277.381 79.9987 277.901 79.9987 278.547V278.745H79.9808ZM79.2826 278.117C79.211 277.83 79.0499 277.614 78.8172 277.435C78.5845 277.255 78.3338 277.166 78.0474 277.166C77.6894 277.166 77.385 277.291 77.1523 277.525C76.9912 277.686 76.8659 277.883 76.8122 278.117H79.2826Z" fill="white"/>
+<path d="M29.7481 275.102C29.7481 275.102 17.3065 282.711 29.032 290.266C31.2876 291.738 39.4686 295.83 39.2359 299.616C39.2359 299.616 44.1946 292.258 36.9445 287.628C29.4974 282.89 27.6357 277.83 29.7481 275.102Z" fill="white"/>
+<path d="M25.416 289.638C25.416 289.638 20.9764 296.386 29.7124 297.768C30.5717 297.876 36.8909 298.54 38.5378 300.621C38.5378 300.621 38.3946 297.032 33.239 294.915C28.1012 292.797 25.9889 292.276 25.416 289.638Z" fill="white"/>
+<path d="M42.6014 282.549C37.2667 276.95 35.7809 273.487 38.0723 269C38.0723 269 22.1578 275.138 37.8754 286.031C43.4964 289.925 42.5656 293.909 42.5656 294.053C43.4427 293.138 47.936 288.149 42.6014 282.549Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M180.499 292.245V296.743C179.196 297.762 176.129 298.888 172.779 298.888C167.613 298.888 162.648 295.38 162.648 289.263C162.648 283.383 167.671 279.543 172.665 279.543C175.847 279.543 177.461 280.643 178.597 280.643C179.196 280.643 179.592 279.918 179.617 279.692H180.133C180.133 281.837 180.324 284.302 180.554 285.637L180.013 285.663C178.992 282.383 175.529 280.788 172.892 280.845C168.642 280.905 166.309 284.673 166.309 288.975C166.309 293.607 168.828 297.527 173.063 297.527C174.563 297.527 176.549 297.145 177.262 296.307V292.243C177.262 289.982 176.07 289.428 175.163 289.428V288.885H182.65V289.428C181.743 289.43 180.499 289.983 180.499 292.245ZM157.574 285.523V299H156.804L144.095 283.383C144.157 283.575 144.183 283.99 144.183 284.532V293.987C144.183 297.293 144.944 298.252 146.621 298.252V298.747H140.266V298.252C141.995 298.252 142.735 297.295 142.735 293.987V282.678C142.735 281.087 141.398 280.24 139.788 280.24V279.692H145.257L156.101 292.793C156.07 292.243 156.07 292.133 156.07 291.645V285.522C156.07 283.253 156.07 280.24 153.742 280.24V279.692H159.788V280.24C157.459 280.242 157.574 283.255 157.574 285.523ZM134.391 282.973V295C134.391 296.107 134.137 298.252 136.463 298.252V298.747H129.064V298.252C131.386 298.252 131.157 296.107 131.157 295V282.973C131.157 280.705 129.887 280.242 129 280.242V279.693H136.605V280.242C135.64 280.242 134.391 280.705 134.391 282.973ZM197.462 292.48C197.384 292.327 197.009 292.093 196.342 291.793C195.895 291.565 195.153 291.338 194.852 291.338H194.252C194.028 291.567 193.805 291.875 193.805 291.875C193.805 291.868 194.7 291.95 195.153 292.022C195.445 292.093 195.669 292.328 195.965 292.555C195.894 292.78 196.94 293.477 196.94 293.477C196.94 293.627 196.789 293.927 196.789 293.927C196.42 293.627 195.523 293.168 194.773 292.943C194.55 292.858 194.03 292.858 193.586 292.943C193.586 293.09 193.436 293.318 193.436 293.318C193.806 293.478 194.628 293.697 194.998 294.005C195.445 294.233 195.744 294.535 196.039 294.845C196.039 295.148 195.895 296.14 195.895 296.14C195.67 295.607 195.447 295.147 195.223 294.988C194.987 294.838 194.737 294.711 194.477 294.61C194.18 294.463 194.03 294.463 193.436 294.307C193.285 294.307 192.988 294.463 192.988 294.382C192.988 294.382 192.838 294.76 192.988 295.068C193.51 295.447 193.738 295.68 193.956 295.983C194.181 296.448 194.328 296.745 194.253 297.123C194.181 297.588 193.883 298.042 193.738 298.503C193.655 298.728 193.436 298.8 193.436 298.8H192.836C192.836 298.12 193.283 297.433 193.133 296.672C193.061 296.518 192.914 296.362 192.763 296.362C192.685 296.362 192.464 296.45 192.314 297.123C192.236 297.657 192.314 298.275 192.314 298.8H191.493C191.419 297.817 191.419 296.747 191.716 295.835C191.794 295.607 192.091 295.148 192.169 294.92C191.948 294.847 191.722 294.794 191.493 294.76C191.196 294.692 190.977 294.692 190.904 294.76C190.754 294.988 190.676 295.07 190.529 295.378C190.457 295.607 190.377 295.833 190.377 295.908C190.377 295.983 190.824 295.908 190.904 295.983C191.274 296.293 190.977 296.973 190.977 296.973C190.824 296.82 191.044 296.293 190.299 296.67C190.299 296.902 190.299 297.203 190.23 297.507C190.23 297.742 190.23 297.885 190.299 298.118C190.299 298.343 190.377 298.57 190.455 298.798H189.632C189.632 298.798 189.263 297.74 189.335 297.047C189.409 296.448 189.48 295.832 189.56 295.377C189.113 295.302 188.663 295.302 188.517 295.68C188.438 295.983 188.813 296.21 188.813 296.517C188.663 296.592 188.142 296.745 187.992 297.122C187.773 297.815 188.063 298.118 188.217 298.798H187.471C187.248 298.57 186.726 297.507 186.878 296.9C187.025 296.59 187.25 296.21 187.623 296.063C187.55 295.753 187.623 295.445 187.842 295.145C187.96 294.917 188.13 294.722 188.338 294.576C188.546 294.429 188.785 294.337 189.035 294.305C189.409 294.23 189.707 294.38 189.935 294.462C190.154 293.847 190.604 293.625 191.196 293.625C191.571 293.625 191.941 293.775 192.316 294.003L192.541 293.317C192.988 292.177 193.213 291.188 193.806 290.117C194.031 290.117 194.552 290.042 194.775 290.117C195.67 290.42 196.265 290.728 196.64 291.025C196.942 291.188 196.864 291.483 197.682 291.793C197.607 291.95 197.534 292.252 197.462 292.48ZM194.398 279.453C193.655 279.833 193.358 280.22 193.211 280.363C192.986 280.667 192.539 281.13 192.389 281.36L192.316 280.44C192.238 280.222 192.238 280.222 192.238 279.757C192.611 279.523 192.764 279.37 193.133 279.15C193.283 278.997 193.805 278.837 194.55 278.613C194.55 278.92 194.477 279.15 194.398 279.453ZM193.061 284.175C192.988 284.328 192.836 284.398 192.836 284.398C192.821 284.238 192.769 284.083 192.686 283.947C192.613 283.718 192.613 283.49 192.541 283.26C192.541 283.032 192.468 282.19 192.468 282.045V281.662C192.766 281.513 193.135 281.28 193.438 281.13C193.36 281.513 193.286 281.662 193.286 282.27C193.286 282.425 193.438 282.883 193.511 283.417C193.358 283.718 193.283 283.947 193.061 284.175ZM194.398 275.795C194.18 275.95 194.108 275.87 194.03 276.025C193.655 276.335 193.508 276.483 193.211 276.707C193.061 276.86 193.061 276.86 192.914 277.09C192.914 277.09 192.836 276.253 192.764 275.795C193.061 275.642 193.211 275.487 193.51 275.258C193.438 274.805 193.36 274.502 193.36 274.125C193.36 273.895 193.36 273.667 193.51 273.432C193.656 273.128 194.031 273.128 194.328 273.203C194.255 273.735 194.181 273.895 194.181 274.502C194.181 274.572 194.328 274.96 194.4 275.103C194.485 275.244 194.536 275.402 194.552 275.567C194.55 275.642 194.477 275.722 194.398 275.795ZM194.628 277.468C194.552 277.628 194.477 277.548 194.327 277.698C194.253 277.778 193.436 278.39 193.358 278.458C193.192 278.561 193.043 278.688 192.914 278.837C192.836 278.613 192.836 278.388 192.764 278.155C192.764 278.085 192.764 277.548 192.836 277.318C192.836 277.163 193.508 276.942 193.883 276.862C194.03 276.862 194.628 276.708 194.7 276.862C194.773 277.015 194.628 277.015 194.628 277.468ZM193.358 285.548C193.358 285.697 193.133 285.858 193.133 285.858C193.133 285.548 193.061 285.162 193.061 285.012C192.988 284.862 192.914 284.782 192.914 284.628C192.986 284.555 193.133 284.485 193.285 284.398C193.358 284.252 193.738 284.022 193.806 283.947C194.031 284.177 194.11 284.252 194.253 284.628C194.18 284.712 193.738 285.092 193.358 285.548ZM194.03 287.147C193.883 287.302 193.738 287.375 193.586 287.452C193.455 287.027 193.279 286.618 193.061 286.232C193.061 286.232 194.181 285.78 194.477 285.78C194.55 285.923 194.628 286.158 194.773 286.313C194.628 286.46 194.18 286.923 194.03 287.147ZM194.998 288.29C194.927 288.518 194.998 288.673 194.927 288.895C194.927 289.052 193.956 289.582 193.956 289.582C194.03 289.278 193.956 289.052 193.956 288.823C193.97 288.582 193.918 288.342 193.806 288.13C193.738 287.98 193.738 287.833 193.656 287.678C193.656 287.6 194.181 287.6 194.4 287.6C194.63 287.6 194.927 287.45 195.072 287.528C194.998 287.753 194.998 288.132 194.998 288.29ZM204.836 271.837C204.611 271.837 204.463 271.757 204.238 271.68C204.091 271.532 203.425 271.297 203.049 271.297C202.602 271.297 202.304 271.91 201.779 272.208C201.56 272.292 201.107 272.362 200.663 272.522C200.366 272.665 200.216 272.752 200.216 272.595C200.143 272.292 200.143 271.988 200.143 271.678C199.92 271.605 199.616 271.605 199.398 271.455C199.248 271.988 199.095 272.207 198.951 272.44C198.648 272.29 198.351 272.207 198.049 271.988C197.679 271.753 196.789 271.227 196.712 271.067C196.42 271.375 195.523 271.907 194.998 272.207C194.844 272.475 194.67 272.731 194.477 272.972L193.738 272.662C193.883 272.358 194.03 272.205 194.18 271.905C194.477 271.453 194.925 271.065 195.222 270.765C196.037 270.457 196.037 270.308 197.007 270.153C197.382 270.605 198.424 271.292 198.424 271.292C198.424 271.452 198.503 271.223 198.799 270.308C199.024 270.458 199.174 270.458 199.399 270.607C199.468 270.607 199.696 270.687 199.696 270.687C199.765 270.687 200.216 270.458 200.29 270.383C200.44 270.31 201.107 270.155 201.107 270.155C201.185 270.228 200.882 270.767 200.882 270.837V271.453C200.96 271.453 201.035 271.453 201.185 271.373C201.56 271.225 201.632 270.538 201.779 270C202.004 270.075 202.154 270.075 202.379 270.075C202.379 270.383 202.229 270.837 202.45 270.837C202.675 270.837 202.975 270.538 203.426 270.155C204.166 270.458 204.914 270.922 205.581 271.373C205.358 271.532 205.139 271.837 204.836 271.837ZM206.101 281.737C205.055 281.13 204.019 281.05 203.497 280.897V281.513C203.794 281.588 203.946 281.737 204.238 281.817C204.389 281.892 205.508 282.498 205.878 282.733C205.878 282.882 205.878 283.192 205.726 283.192C204.686 282.498 204.019 282.27 203.196 281.893C203.049 282.047 202.975 282.27 202.747 282.425C202.675 282.498 202.154 282.045 201.852 281.893C201.633 281.738 201.185 281.663 200.882 281.59C200.81 281.59 200.81 281.435 200.81 281.36C200.738 281.13 200.665 280.897 200.738 280.823C201.107 280.668 201.257 280.365 201.257 280.13C201.257 279.907 201.482 280.22 201.7 280.13C201.852 279.987 201.93 279.833 201.852 279.677C201.852 279.523 201.779 279.368 201.633 279.368C200.89 279.07 200.064 279.07 199.321 279.368C199.098 279.453 199.098 279.755 199.176 279.985C199.249 280.288 199.546 280.128 199.765 279.985C199.843 279.985 199.696 280.22 199.843 280.438C199.993 280.752 200.29 280.822 200.29 280.895C200.29 281.128 200.29 281.128 200.218 281.278C200.218 281.432 200.218 281.588 200.066 281.66C199.62 281.735 199.251 281.89 198.801 282.043C198.578 282.117 198.354 282.343 198.129 282.343C197.982 282.343 197.832 282.043 197.759 281.963C197.607 281.963 197.607 281.89 197.311 281.963C196.57 282.267 195.523 282.8 194.773 283.257C194.628 283.108 194.702 282.878 194.628 282.73C195.455 282.191 196.329 281.731 197.239 281.357C197.311 281.277 197.239 281.047 197.161 280.893C197.161 280.893 196.64 280.82 195.67 281.127C195.072 281.277 194.4 281.658 194.328 281.658C194.328 281.658 194.255 281.43 194.255 281.127C194.703 280.893 195.225 280.663 195.672 280.515C196.199 280.36 196.715 280.36 197.24 280.285C197.162 280.285 197.162 280.125 197.162 280.062C196.944 279.598 196.574 279.22 196.199 278.832C196.042 278.54 195.897 278.15 195.897 277.997C196.04 277.853 196.199 278.082 196.422 278.082C196.325 277.81 196.272 277.524 196.265 277.235C196.197 276.938 196.197 276.938 196.197 276.553C196.197 276.097 196.344 275.867 196.265 275.792C196.135 275.686 195.984 275.608 195.823 275.563C195.672 275.483 195.6 275.483 195.527 275.333C195.298 274.957 195.073 274.653 195.073 274.27C195.073 273.89 195.225 273.582 195.377 273.198C195.448 272.895 195.823 272.747 196.042 272.592C196.267 272.438 196.49 272.518 196.715 272.518C197.241 272.518 197.684 272.815 198.053 273.045C198.322 273.253 198.509 273.554 198.579 273.892H199.251C199.62 273.962 199.995 274.042 200.441 274.272C200.962 273.808 201.854 273.733 202.307 273.733C202.307 272.898 202.902 272.44 203.349 272.44C203.719 272.36 203.949 272.29 204.464 272.52C204.838 272.75 205.359 273.505 205.359 273.583C205.511 273.893 205.433 274.272 205.433 274.723C205.359 275.027 205.359 275.257 205.359 275.337C205.286 275.64 204.918 275.87 204.688 275.95C204.688 276.482 204.536 276.787 204.464 277.237C204.464 277.467 204.391 277.695 204.317 277.925C204.536 277.855 204.614 277.697 204.838 277.697C204.688 278.692 204.464 278.543 204.239 278.995C204.155 279.326 204.003 279.636 203.796 279.905C203.717 279.985 203.646 280.065 203.427 280.218C203.275 280.288 203.427 280.362 203.427 280.437C204.167 280.437 205.058 280.665 206.253 281.277C206.331 281.36 206.181 281.513 206.101 281.737ZM195.82 298.798H194.7C194.627 298.727 194.7 298.57 194.772 298.502C194.923 298.118 194.772 297.272 195.294 297.272C195.597 297.432 195.819 297.815 195.894 297.968C195.894 298.118 195.82 298.798 195.82 298.798ZM195.669 285.698C195.523 285.625 195.372 285.55 195.372 285.465C195.289 285.168 195.238 284.863 195.222 284.555C195.222 284.252 195.372 283.947 195.523 283.947C195.669 284.022 195.895 284.102 195.965 284.252C196.112 284.485 195.965 284.783 196.037 285.013C196.11 285.395 196.34 286.083 196.34 286.083C196.112 285.922 195.894 285.858 195.669 285.698ZM196.789 289.512C196.712 289.583 196.487 289.655 196.342 289.74C196.195 289.74 195.967 289.887 195.742 289.815C195.894 289.432 195.965 289.357 196.112 289.053C196.112 288.985 196.195 288.825 196.262 288.595C196.262 288.133 196.419 287.53 196.419 287.53H196.861C196.939 287.452 197.086 287.375 197.157 287.53C197.157 287.755 197.086 288.06 197.157 288.217V288.75C197.087 288.897 196.862 289.43 196.789 289.512ZM197.311 273.358C197.087 273.203 196.94 273.203 196.789 273.203C196.487 273.278 195.967 273.432 195.82 273.895C195.82 273.965 195.742 274.275 195.965 274.572C196.112 274.875 196.419 275.105 196.57 275.258C196.789 275.258 196.862 274.875 197.237 274.658C197.384 274.503 197.831 274.195 197.831 274.195C197.903 274.195 197.903 274.125 197.903 274.045C197.757 273.508 197.607 273.508 197.311 273.358ZM197.534 286.615C197.384 286.385 197.311 286.082 197.237 285.858C197.159 285.623 197.007 285.465 196.862 285.245C196.94 285.16 197.007 284.553 197.007 284.553C197.086 284.483 197.237 284.627 197.309 284.627C197.532 284.782 197.606 284.937 197.679 285.09C197.757 285.243 197.831 285.622 197.831 285.622C197.831 286.157 197.607 286.312 197.534 286.615ZM199.024 276.335H198.049C197.679 276.335 197.384 276.335 197.007 276.398C197.159 276.708 197.532 277.015 197.679 277.163C197.831 277.318 197.981 277.468 198.278 277.468C198.576 277.398 198.576 277.468 198.726 277.398C198.726 277.548 198.798 277.778 198.726 277.927C198.726 278 198.798 278.613 198.501 278.693C198.276 278.767 197.979 278.922 197.829 279.15C197.678 279.368 197.604 279.757 197.829 279.907C197.979 279.987 198.126 279.757 198.349 279.677C198.574 279.603 198.574 279.453 198.646 279.225C198.796 279.072 199.093 278.997 199.171 278.837V278.613C199.245 277.927 199.245 277.778 199.316 277.318C199.316 277.238 199.395 276.788 199.395 276.707C199.399 276.557 199.249 276.398 199.024 276.335ZM198.874 289.127C198.728 289.43 198.578 289.51 198.353 289.653C198.206 289.653 197.534 289.813 197.534 289.813C197.607 289.653 197.759 289.51 197.832 289.28C197.887 289.01 197.988 288.753 198.129 288.518C198.279 288.518 198.426 288.443 198.578 288.443C198.728 288.443 198.953 288.443 198.953 288.518C199.024 288.825 198.951 288.897 198.874 289.127ZM198.353 280.753C198.128 280.753 197.832 280.823 197.832 280.823C197.832 280.823 197.904 281.132 197.982 281.28C198.207 281.205 198.279 281.13 198.426 281.05C198.426 281.05 198.729 280.897 198.801 280.822C198.649 280.753 198.503 280.753 198.353 280.753ZM202.305 283.718C202.305 283.798 202.155 284.102 202.004 284.252C201.779 283.947 201.332 283.643 201.332 283.643C201.404 283.947 201.332 284.022 201.258 284.398C201.258 284.485 200.74 284.485 200.74 284.485C200.291 284.252 200.218 283.947 200.218 283.947C200.218 284.022 200.145 284.555 199.843 284.555C199.546 284.555 199.321 284.555 199.321 284.33C199.249 284.102 199.249 283.947 199.249 283.718V283.415C199.024 283.488 198.874 283.718 198.728 283.867C198.649 283.867 198.578 283.717 198.503 283.717C198.369 283.453 198.269 283.172 198.206 282.882C198.953 282.345 199.696 282.268 200.368 282.268C201.108 282.268 201.854 282.343 202.452 282.732C202.45 283.032 202.45 283.415 202.305 283.718ZM199.399 274.875C199.249 274.875 199.024 275.028 198.799 275.188C198.576 275.418 198.424 275.487 198.424 275.72H198.799C199.174 275.72 199.248 275.87 199.399 275.64C199.618 275.337 199.841 275.188 199.841 274.873C199.841 274.725 199.545 274.805 199.399 274.875ZM199.249 287.678C199.249 287.678 198.503 286.923 198.503 286.613C198.503 286.383 198.206 286.007 198.576 286.007C198.576 285.858 198.951 286.08 199.096 286.08C199.173 286.077 199.249 286.097 199.315 286.138C199.381 286.179 199.434 286.239 199.466 286.31C199.545 286.538 199.466 286.765 199.545 286.99C199.545 287.218 199.763 287.598 199.545 287.833C199.399 287.678 199.399 287.753 199.249 287.678ZM208.712 296.67C208.639 296.592 208.639 296.517 208.639 296.448C208.489 296.138 208.489 295.908 208.41 295.605C208.339 295.523 208.192 295.445 208.114 295.377C207.889 295.217 207.672 295.145 207.514 295.067C207.368 295.067 207.072 294.917 206.926 294.917C206.926 295.067 207.368 295.217 207.592 295.907C207.67 295.982 207.743 296.59 207.743 296.743C207.592 296.743 207.514 296.9 207.368 296.972C207.072 296.36 206.556 295.68 206.478 295.523C206.253 295.302 205.951 294.608 205.581 294.608C205.139 294.608 204.988 294.69 204.534 294.843C204.389 294.843 204.389 294.987 204.166 295.147C204.166 295.147 203.947 294.987 203.869 294.987C203.796 294.987 203.497 294.918 203.119 294.843C202.977 294.758 202.747 294.69 202.604 294.758C202.53 294.758 202.305 294.987 202.23 295.068C202.157 295.147 202.079 295.303 202.005 295.447C202.005 295.447 202.452 295.607 202.604 295.607C202.822 295.682 203.119 295.91 203.119 295.91C203.275 295.91 203.426 295.682 203.572 295.607C203.717 295.607 204.019 295.607 204.166 295.682C204.613 295.757 205.056 295.91 205.056 296.362C205.056 296.672 204.916 296.745 205.056 297.273C205.056 297.588 205.728 297.508 206.031 297.742C205.88 297.885 205.728 298.12 205.509 298.188C205.358 298.188 205.056 298.345 204.838 298.12C204.759 298.503 204.613 298.8 204.613 298.8H203.717C203.797 298.72 203.85 298.616 203.869 298.503C204.019 298.12 204.092 297.742 204.166 297.357C204.238 297.122 204.238 296.902 204.238 296.67C203.946 296.592 203.794 296.592 203.571 296.745C203.479 296.849 203.428 296.983 203.426 297.123C203.347 297.358 203.426 297.507 203.347 297.817C203.275 298.188 203.197 298.12 203.197 298.8H202.604C202.604 298.8 202.53 298.503 202.53 298.12V297.742C202.604 297.507 202.604 297.432 202.604 297.048C202.604 296.82 202.604 296.67 202.38 296.518C202.23 296.45 202.077 296.45 201.932 296.362C201.837 296.604 201.786 296.862 201.78 297.123C201.702 297.273 201.854 298.8 201.854 298.8H201.258C200.962 298.188 200.665 297.048 200.665 296.82C200.738 296.362 200.738 296.065 201.037 295.755C201.037 295.755 201.037 295.68 200.962 295.68C200.74 295.68 200.665 295.605 200.515 295.755C200.291 295.833 200.066 295.983 200.066 295.983C199.995 296.592 199.843 297.272 199.921 297.657C200.066 298.118 200.218 298.503 200.291 298.8H199.47C199.178 298.345 198.954 298.12 198.876 297.508C198.803 296.45 199.401 295.305 199.401 295.22C199.513 295.04 199.666 294.89 199.847 294.784C200.029 294.678 200.233 294.619 200.441 294.612C200.74 294.612 200.962 294.693 201.258 294.922C201.483 294.467 201.633 294.31 201.78 294.157C202.155 293.778 203.499 294.007 203.796 294.085C203.796 294.085 203.869 293.928 203.869 293.85C203.869 293.697 204.239 292.782 204.239 292.627C204.464 292.025 204.688 291.418 205.056 290.882C205.358 290.732 205.358 290.807 205.728 290.657C206.103 290.572 206.556 290.732 206.776 290.807C207.073 290.963 207.297 291.028 207.593 291.11C207.705 291.169 207.805 291.247 207.89 291.342C207.89 291.57 208.115 291.953 207.89 291.953C207.515 291.797 207.37 291.718 207.073 291.65H205.881C205.713 291.809 205.563 291.986 205.434 292.18C205.361 292.255 205.288 292.33 205.288 292.408C205.73 292.408 205.73 292.33 205.955 292.33C206.56 292.408 206.705 292.483 207.075 292.627C207.3 292.718 207.595 292.783 207.892 292.945C207.97 293.092 208.042 293.547 208.042 293.547C207.97 293.547 207.745 293.547 207.517 293.318C207.298 293.318 206.851 293.168 206.033 293.09C205.805 293.09 205.058 293.09 204.991 293.243C204.839 293.478 204.918 293.848 204.991 294.083C205.433 293.848 206.183 293.848 206.631 293.777C206.851 293.777 208.267 294.463 208.414 294.535C208.789 294.76 209.164 295.068 209.314 295.755C209.16 296.138 208.935 296.21 208.712 296.67ZM200.368 290.117C200.145 290.195 199.993 290.345 199.765 290.42C199.662 290.544 199.538 290.649 199.399 290.73C199.321 290.73 199.024 290.655 199.024 290.655C199.024 290.277 199.399 290.118 199.545 289.887C199.616 289.583 199.616 289.357 199.616 289.128C199.763 288.985 200.063 288.985 200.143 288.985C200.216 288.897 200.663 288.825 200.663 288.825C200.663 288.825 200.513 290.042 200.368 290.117ZM199.92 292.555C199.696 292.177 199.616 291.95 199.616 291.647C199.763 291.565 199.841 291.647 199.991 291.565H200.591C200.663 292.02 200.591 292.252 200.738 292.713C200.81 292.857 200.81 293.013 200.882 293.088C200.882 293.088 200.143 293.013 199.92 292.555ZM200.738 287.375C200.665 287.53 200.29 287.68 200.216 287.835C200.143 287.6 200.216 287.452 200.216 287.302C200.216 287.067 200.216 286.923 200.143 286.768C200.143 286.615 200.065 286.387 200.143 286.157C200.143 285.922 200.738 285.858 201.035 285.778C201.107 286.157 201.185 286.54 201.107 286.767C201.035 286.992 200.882 287.147 200.738 287.375ZM201.852 274.875C201.482 274.805 200.738 274.572 201.035 274.875C201.035 275.028 201.257 275.028 201.404 275.188C201.56 275.188 201.56 275.487 201.56 275.64C201.93 275.64 202.304 275.72 202.45 275.567C203.274 275.19 202.004 274.875 201.852 274.875ZM201.779 276.335C201.56 276.398 201.332 276.632 201.332 276.708C201.332 276.708 201.483 277.548 201.483 277.628C201.483 278.155 201.562 278.155 201.562 278.693C201.78 278.837 201.854 278.837 202.004 278.997C202.075 279.15 202.154 279.3 202.229 279.453C202.53 279.602 202.9 279.757 203.119 279.985C203.197 279.985 203.426 279.602 203.426 279.453C203.716 279.453 203.05 279.15 202.747 278.92C202.675 278.92 202.602 278.835 202.602 278.835C202.45 278.692 202.379 278.387 202.075 278.308C202.075 278.308 202.004 278.308 202.004 278.233C202.004 277.998 201.93 277.088 201.93 277.088C202.075 277.397 202.379 277.397 202.529 277.397C202.821 277.397 203.049 277.317 203.196 277.088C203.196 277.013 203.274 276.858 203.346 276.858C203.496 276.785 203.642 276.705 203.716 276.555C203.794 276.555 203.867 276.395 203.867 276.395C203.196 276.335 201.779 276.335 201.779 276.335ZM202.379 287.452C202.075 287.302 202.004 287.302 201.779 287.22C201.7 287.147 201.7 286.992 201.7 286.768C201.7 286.615 201.632 286.313 201.632 286.008C201.632 285.86 201.777 285.78 202.002 285.625C202.074 285.625 202.152 285.55 202.449 285.465V286.69C202.527 286.993 202.674 287.68 202.674 287.68C202.674 287.68 202.379 287.528 202.379 287.452ZM202.602 292.48C202.304 292.252 202.004 292.093 201.779 291.793C201.7 291.565 201.7 291.415 201.633 291.188C201.779 291.107 201.93 291.188 202.075 291.188C202.304 291.188 202.529 291.338 202.529 291.338C202.602 291.648 202.675 292.022 202.747 292.328C202.747 292.328 202.675 292.48 202.602 292.48ZM203.426 290.195C203.119 290.195 202.747 290.117 202.675 289.963C202.379 289.512 202.379 289.43 202.075 289.127C201.93 289.052 201.93 288.895 201.852 288.748C202.075 288.673 202.227 288.673 202.45 288.673C202.602 288.592 202.747 288.592 202.899 288.592C203.049 288.748 202.975 288.982 203.117 289.125C203.346 289.353 203.716 289.812 203.946 289.962C203.795 290.085 203.616 290.165 203.426 290.195ZM202.075 280.667C202.004 280.752 202.004 280.752 202.004 280.977C202.379 280.977 202.602 281.205 202.899 281.28C202.899 281.28 202.975 280.897 202.975 280.823C202.747 280.753 202.529 280.593 202.075 280.667ZM204.686 273.432C204.534 273.278 204.463 273.203 204.091 273.128C203.947 273.088 203.795 273.087 203.651 273.128C203.507 273.168 203.377 273.248 203.274 273.358C203.117 273.587 202.899 273.895 202.975 274.195C203.496 274.348 203.867 274.658 204.236 275.105C204.351 275.106 204.463 275.07 204.557 275.002C204.65 274.933 204.72 274.836 204.756 274.725C204.836 274.348 204.914 273.737 204.686 273.432ZM204.166 287.147C204.092 287.147 203.717 287.147 203.644 287.067C203.497 286.992 203.119 286.312 203.119 286.082C203.05 285.779 203.05 285.464 203.119 285.162C203.119 285.162 203.572 285.322 203.717 285.395C204.092 285.395 203.796 285.922 203.947 286.082C203.947 286.157 204.019 286.615 204.317 287.067C204.317 287.067 204.238 287.067 204.166 287.147ZM204.914 289.205C204.389 288.823 204.316 288.593 204.166 288.215H205.139C205.431 288.518 205.581 288.593 205.801 288.748C205.951 288.895 206.03 289.052 206.331 289.278C205.801 289.355 205.206 289.43 204.914 289.205ZM204.836 285.778C204.758 285.778 204.611 285.623 204.533 285.465C204.388 285.092 204.314 284.713 204.314 284.713C204.388 284.713 204.533 284.713 204.611 284.783C204.836 284.783 204.836 284.783 204.986 284.863C204.986 285.013 205.283 285.55 205.506 285.78V285.923C205.276 285.92 205.048 285.871 204.836 285.778ZM206.926 288.443L206.253 288.06C205.951 287.907 205.88 287.753 205.803 287.678C205.681 287.543 205.582 287.388 205.509 287.22C205.659 286.992 205.951 286.992 206.103 286.838C206.253 286.768 206.333 286.69 206.478 286.69C206.628 286.838 206.701 286.993 206.775 287.147C206.926 287.452 207.072 287.6 207.368 287.678C207.592 287.835 207.743 287.982 207.889 288.13C207.889 288.13 207.368 288.518 206.926 288.443ZM205.878 279.523C205.659 279.3 205.659 278.997 205.581 278.693C205.431 278.458 205.659 278.31 205.801 278.085C205.801 278 205.878 277.857 205.951 277.777C206.101 278 206.253 278.155 206.331 278.457C206.478 278.92 206.701 279.905 206.701 279.905C206.398 279.677 206.101 279.757 205.878 279.523ZM206.331 274.348C206.244 274.131 206.193 273.9 206.181 273.665C206.181 273.357 205.951 272.752 205.803 272.362C205.661 272.132 205.661 271.68 205.661 271.68C206.033 271.837 206.333 271.91 206.63 272.06V272.363C206.703 272.977 206.928 273.51 207.072 274.047C207.072 274.277 207.223 274.503 207.145 274.727C207.145 274.727 206.701 274.572 206.331 274.348ZM207.514 285.395H206.775C206.628 285.395 206.4 285.395 206.331 285.247C206.089 285.011 205.864 284.756 205.659 284.485C205.801 284.398 205.878 284.33 206.031 284.252C206.103 284.252 206.181 284.177 206.333 284.177C206.558 284.4 206.776 284.557 207.073 284.713C207.37 284.863 207.745 285.013 208.042 285.162C207.889 285.322 207.743 285.322 207.514 285.395ZM208.489 277.318C208.41 277.318 208.339 277.238 208.192 277.163C207.817 276.86 207.672 276.483 207.368 276.173C207.145 276.025 206.998 275.95 206.848 275.795C206.701 275.722 206.556 275.722 206.478 275.567C206.331 275.487 206.628 275.337 206.701 275.188C206.848 275.103 206.998 274.875 207.223 274.875C207.442 275.105 207.592 275.338 207.817 275.568C207.889 275.568 208.114 275.797 208.339 276.025C208.489 276.1 208.562 276.173 208.562 276.253C208.714 276.557 208.937 277.015 208.937 277.627C208.857 277.548 208.56 277.318 208.489 277.318ZM209.082 279.368C209.01 279.298 208.489 278.692 208.337 278.692C208.19 278.543 207.742 278.457 207.67 278.457C207.504 278.376 207.326 278.325 207.143 278.308C207.07 278.153 207.07 277.925 207.07 277.857C206.998 277.697 206.773 277.468 206.7 277.238H207.07C207.367 277.318 207.59 277.398 207.67 277.398C207.815 277.468 208.264 277.698 208.41 277.857C208.714 278 208.857 277.927 209.082 278C209.16 278 209.379 278.835 209.686 279.3C209.686 279.37 209.827 279.603 209.686 279.603C209.535 279.677 209.31 279.523 209.082 279.368ZM207.815 284.328C207.67 284.25 207.67 284.175 207.59 284.02C207.512 284.02 207.367 283.487 207.222 283.333C207.367 283.258 207.44 283.258 207.59 283.258C207.742 283.258 208.037 283.19 208.112 283.258C208.19 283.333 208.262 283.487 208.337 283.642C208.409 283.717 208.56 284.02 208.639 284.173C208.712 284.248 209.01 284.248 208.857 284.483C208.489 284.328 208.19 284.398 207.815 284.328ZM208.039 282.345C207.907 282.286 207.801 282.179 207.742 282.045C207.588 281.779 207.463 281.498 207.367 281.205C207.367 280.977 207.295 280.593 207.295 280.363C207.295 280.363 207.592 280.438 207.815 280.438C207.887 280.518 207.967 280.518 208.039 280.518C208.112 280.667 208.112 280.822 208.112 281.05C208.19 281.28 208.337 281.513 208.409 281.892C208.487 282.118 208.559 282.268 208.559 282.498C208.41 282.498 208.264 282.345 208.039 282.345ZM208.935 287.067C208.56 287.22 208.114 287.375 207.889 287.147C207.514 286.767 207.368 286.385 207.368 286.385C207.514 286.232 207.968 286.082 208.04 286.007C208.339 286.458 208.787 286.613 209.312 286.767C209.457 286.767 209.457 287.067 209.312 287.067H208.935ZM208.337 298.798H207.514C207.514 298.652 207.67 298.343 207.817 298.04C207.817 297.588 208.264 297.815 208.489 297.74C208.639 298.187 208.56 298.502 208.337 298.798ZM210.352 285.922H209.754C209.535 286.007 209.456 286.007 209.379 285.922C209.16 285.778 209.082 285.698 208.859 285.548C208.937 285.393 209.01 285.32 209.162 285.32C209.381 285.09 209.381 285.09 209.609 285.09C209.756 285.32 210.651 285.857 210.651 285.857C210.649 286.007 210.502 285.922 210.352 285.922ZM209.239 294.153C209.239 293.847 209.01 292.78 209.01 292.623C209.01 292.48 208.937 292.405 208.937 292.093V291.793C209.084 291.875 209.24 291.95 209.312 292.022C209.457 292.093 209.687 292.555 209.687 292.623C209.687 293.775 209.829 294.69 209.829 294.69C209.607 294.535 209.607 294.232 209.239 294.153ZM209.456 283.335C209.377 283.112 209.456 282.883 209.456 282.653C209.377 281.738 209.159 280.977 209.009 280.363C209.009 280.363 209.159 280.29 209.377 280.22C209.534 280.22 209.607 280.22 209.752 280.13C209.981 280.518 210.054 280.823 210.201 281.737C210.351 282.802 210.502 283.717 210.502 283.717L209.456 283.335ZM210.953 287.907C210.953 287.907 210.874 287.528 210.577 287.22C210.723 286.992 210.953 286.54 210.953 286.54C211.243 286.838 211.394 286.838 211.394 287.53C211.243 287.678 211.243 287.6 210.953 287.907ZM214.075 285.012C214.075 285.012 214.222 285.393 214.3 285.548C214.3 285.697 214.372 285.858 214.45 286.007C214.45 286.007 214.3 286.08 214.003 286.08C213.935 286.155 213.853 286.155 213.707 286.155C213.632 285.92 213.632 285.777 213.482 285.548C213.482 285.393 213.257 285.245 213.257 285.245C213.107 285.32 212.882 285.245 212.81 285.245C212.435 285.245 212.216 284.937 212.138 284.937C212.216 285.09 212.435 285.548 212.513 285.697C212.513 285.777 212.736 286.155 212.736 286.538C212.736 286.532 212.363 286.458 212.138 286.613C211.991 286.155 211.841 286.08 211.766 285.778C211.688 285.245 211.616 284.938 211.465 284.782C211.093 284.398 211.093 284.627 210.646 284.25C210.646 284.25 210.574 283.945 210.646 283.797C211.688 284.25 212.433 284.397 213.177 284.397C213.705 284.397 214.449 284.327 215.12 284.1C215.344 284.25 215.417 284.553 215.417 284.782L214.075 285.012ZM211.243 292.48C211.171 292.327 211.243 291.647 211.171 291.483C211.096 291.262 210.723 290.878 210.723 290.878C210.723 290.568 210.953 290.42 211.019 290.195C211.173 290.345 211.394 290.57 211.394 290.728C211.468 291.187 211.546 291.793 211.619 291.875C211.618 292.177 211.468 292.252 211.243 292.48ZM211.993 290.195C211.993 290.195 211.768 289.885 211.768 289.813C211.618 289.582 211.544 289.43 211.393 289.205C211.544 288.895 211.544 288.983 211.618 288.823C211.69 288.673 211.768 288.29 211.768 288.358C211.993 288.443 212.066 288.673 212.14 288.823C212.14 288.895 212.29 289.205 212.29 289.205V289.43C212.29 289.583 211.993 290.195 211.993 290.195ZM222.801 295.833C222.571 295.833 222.426 295.833 222.202 295.755C222.352 294.843 222.499 293.695 222.499 292.48C222.499 289.813 221.529 286.082 219.67 284.102C218.92 283.26 218.029 282.883 217.133 282.883C216.686 282.883 216.387 283.417 216.387 284.023C216.684 284.103 217.204 283.87 217.429 283.87C217.8 283.87 218.028 283.948 218.325 284.487C218.396 284.63 218.55 284.715 218.621 284.785C218.471 284.865 216.611 284.94 216.611 284.94C216.611 285.163 216.684 285.397 216.829 285.627C217.061 285.627 217.278 285.7 217.503 285.7C217.733 285.7 218.029 285.627 218.326 285.7C218.623 285.78 218.998 285.7 219.367 285.78C219.592 286.232 219.445 286.768 219.445 286.768C219.295 286.768 218.84 286.46 218.7 286.387C218.251 286.313 217.059 286.462 217.059 286.462C217.059 286.617 217.356 286.692 217.356 286.77C217.428 286.927 217.204 287.15 217.278 287.303C217.501 287.303 217.731 287.377 217.954 287.303C218.396 287.222 218.55 287.068 219.293 287.377C219.443 287.453 219.813 287.908 220.037 287.908C220.184 288.133 220.335 288.752 220.335 288.752C220.11 288.752 219.59 288.293 219.443 288.218C218.996 288.062 218.771 288.133 218.396 288.133C218.173 288.133 217.798 288.218 217.575 288.293C217.653 288.597 217.731 288.677 218.028 288.987C218.398 289.208 218.84 289.13 219.365 289.283C219.74 289.433 219.882 289.587 220.037 289.742C220.184 289.888 220.262 290.12 220.262 290.422C220.262 290.422 218.996 289.967 218.7 290.043C218.55 290.043 218.396 289.965 218.396 290.118C218.47 290.422 218.55 290.655 218.55 290.88C218.771 290.962 218.918 291.027 219.215 291.108C219.365 291.19 219.59 291.418 219.74 291.648C219.882 291.795 219.882 291.952 219.813 292.178C219.365 292.022 219.068 292.022 218.621 291.717C218.55 291.567 218.396 291.567 218.325 291.648C218.325 291.648 218.101 292.023 218.101 292.178C218.101 292.178 218.918 292.482 219.07 292.482C219.518 292.782 219.217 292.86 219.518 293.243C219.518 293.695 219.518 293.777 219.215 293.927C219.215 294.005 219.143 293.848 219.143 293.848C218.918 293.695 218.621 293.477 218.325 293.318C218.028 293.168 217.954 293.09 217.8 293.168C217.731 293.168 217.654 293.393 217.654 293.547C217.654 293.697 217.654 293.778 217.733 293.85C217.801 294.007 218.029 294.007 218.175 294.157C218.471 294.31 218.84 294.612 218.84 294.612C219.07 294.762 218.918 295.148 218.996 295.448V295.527C218.7 295.22 218.396 295.072 218.101 294.922C217.876 294.847 217.8 294.847 217.575 294.762C217.501 294.762 217.278 294.612 217.204 294.537C217.204 294.762 217.133 295.22 216.908 295.22C216.609 295.22 216.537 295.148 216.314 295.148C216.164 295.148 215.787 295.07 215.345 295.38C215.345 295.38 215.122 295.91 215.195 296.142C215.274 296.363 215.716 296.295 215.716 296.52C215.716 296.823 215.419 297.207 215.419 297.207C215.419 297.207 215.044 296.748 215.044 296.903C214.975 297.125 214.975 297.358 214.975 297.59C214.975 297.972 215.122 298.345 214.975 298.802H214.372C214.153 298.427 214.074 297.818 214.002 297.435C214.002 296.823 214.299 296.215 214.522 295.837C214.522 295.837 213.777 295.683 213.48 296.143C213.351 296.267 213.255 296.422 213.202 296.594C213.149 296.767 213.14 296.95 213.177 297.127C213.255 297.437 213.48 298.575 213.552 298.803H212.808C212.433 298.123 212.215 297.592 212.215 296.597C212.215 295.685 212.958 294.848 213.85 294.923C214.072 294.923 214.219 295.073 214.449 295.073C214.595 294.615 214.891 294.087 215.641 294.087C215.937 294.087 216.312 294.158 216.386 294.237C216.906 293.247 217.729 291.422 217.651 290.425C217.651 290.047 217.573 289.745 217.354 289.36C216.683 287.84 215.641 286.087 215.641 283.34C215.641 282.658 216.312 281.972 217.203 281.972C218.25 281.972 219.292 282.578 220.26 283.568C221.901 285.4 223.239 288.68 223.239 292.56C223.243 293.695 223.019 294.918 222.801 295.833ZM212.66 293.088C212.66 293.088 212.811 292.405 212.811 292.327C212.738 292.092 212.436 292.02 212.436 291.875C212.365 291.565 212.515 291.338 212.218 290.96C212.29 290.878 212.811 290.502 212.811 290.502C212.86 290.649 212.885 290.804 212.883 290.96C212.961 291.107 213.035 291.338 213.108 291.483C213.108 291.715 213.108 292.48 212.66 293.088ZM214.075 290.502C214.003 290.57 214.3 291.717 214.075 291.793C214.075 291.793 213.41 289.512 213.337 289.28C213.107 288.675 212.738 288.06 212.29 287.45L213.18 287.3C213.258 287.528 213.258 287.905 213.41 288.058C213.555 288.29 213.853 288.748 213.937 288.895C213.937 289.052 214.005 289.353 214.075 289.582C214.222 289.738 214.3 289.963 214.3 290.193C214.155 290.277 214.155 290.345 214.075 290.502ZM215.045 288.06C215.045 288.06 214.302 287.375 214.005 287.067C213.937 286.923 213.412 286.615 213.557 286.54C213.71 286.54 214.679 286.923 214.679 286.923C214.824 287.067 215.047 287.147 215.125 287.375L215.045 288.06ZM215.275 290.57C215.275 290.043 214.977 289.512 214.895 289.43C214.824 289.28 214.677 288.518 214.599 288.358C214.822 288.29 214.895 288.673 215.045 288.673C215.197 288.673 215.349 288.823 215.572 288.823C215.644 288.983 215.791 289.428 215.717 289.653C215.644 289.885 215.572 290.345 215.275 290.57ZM218.326 297.047C218.326 297.047 217.801 296.448 217.279 296.448C217.279 296.448 216.831 296.82 216.909 297.122C217.206 297.122 217.358 297.272 217.576 297.432C217.654 297.432 217.878 297.588 217.878 297.657C217.878 297.885 217.733 298.187 217.654 298.343C217.503 298.187 217.206 297.817 217.061 297.742C216.909 297.742 216.758 297.742 216.758 297.885C216.611 298.188 216.611 298.572 216.461 298.8L215.787 298.728C215.714 298.425 215.787 297.97 215.859 297.433C216.162 295.985 216.609 295.525 216.984 295.525C217.426 295.525 218.248 295.757 218.698 296.593C218.551 296.745 218.473 296.972 218.326 297.047ZM230.926 289.885C230.77 289.885 230.395 289.813 230.395 289.813C230.395 289.813 230.326 290.195 230.249 290.568C230.395 290.728 230.625 290.803 230.771 290.958C230.771 291.262 230.625 291.713 230.474 292.02C230.328 291.948 230.178 291.792 229.953 291.713C229.803 291.948 229.729 292.25 229.579 292.478C229.658 292.713 229.803 292.713 230.178 293.087C230.104 293.473 229.874 293.773 229.658 294.08C229.504 293.923 229.131 293.625 229.131 293.625L228.537 294.305C228.684 294.608 228.912 294.842 229.057 295.145C228.912 295.523 228.537 295.907 228.537 295.907C228.466 295.678 228.095 295.445 227.944 295.217C227.944 295.217 227.647 295.302 227.122 295.523C227.269 295.982 227.497 296.448 227.497 296.818C227.269 297.047 227.053 297.202 226.75 297.355C226.453 296.818 226.225 296.447 226.153 296.208C225.778 296.208 225.335 296.515 225.335 296.515C225.335 296.668 225.705 297.355 225.705 297.967C225.408 298.117 224.886 298.185 224.886 298.185C224.663 297.43 224.444 296.59 223.996 296.063C225.481 295.907 226.897 295.067 227.647 294.082C228.986 292.327 229.658 290.345 229.581 288.29C229.581 286.767 229.209 285.16 228.537 283.717C227.872 282.188 225.705 279.298 223.768 278.083C223.621 277.925 223.471 277.855 223.174 277.775C223.101 277.695 222.951 277.775 222.871 277.855C222.406 278.071 221.898 278.173 221.387 278.153C220.715 278.153 219.37 277.627 219.073 277.467C219.22 277.397 219.448 277.467 219.673 277.397C219.745 277.397 220.042 277.317 220.267 277.237C220.267 277.237 220.715 277.162 220.86 277.237C220.715 277.013 220.115 276.482 220.115 276.482C220.49 276.397 220.937 276.333 221.387 276.397C221.53 276.397 221.684 276.482 221.829 276.482C221.604 276.252 221.457 275.95 221.155 275.72C220.937 275.567 220.49 275.64 220.115 275.72C219.97 275.87 219.595 275.793 219.595 275.793C219.073 275.793 219.818 276.395 219.818 276.395C219.818 276.395 219.818 276.628 218.843 276.785C218.734 276.843 218.636 276.92 218.553 277.012C218.178 276.48 217.656 275.793 217.281 275.415C217.208 275.255 216.911 275.025 216.614 274.653C217.879 274.343 219.368 273.503 219.672 273.732C219.817 273.892 219.885 273.962 220.04 274.27C220.113 274.423 220.187 274.498 220.338 274.722H220.859C221.155 274.722 221.155 274.722 221.155 274.653C220.937 274.27 220.562 273.732 220.562 273.732C222.204 273.962 222.869 275.185 223.396 276.022C223.541 276.25 223.699 276.48 223.994 276.628C224.288 276.858 224.441 277.012 224.806 277.235C224.806 277.315 224.588 277.465 224.588 277.465C224.588 277.465 224.885 277.625 225.108 277.853C225.26 277.853 225.333 277.853 225.48 277.773C225.855 277.997 226.373 278.608 226.373 278.608C226.373 278.608 226.077 278.688 226.077 278.832C226.077 278.917 226.373 279.145 226.373 279.145C226.452 279.145 226.598 278.992 226.748 278.992C227.052 279.295 227.265 279.518 227.495 279.828C227.495 279.828 227.12 280.215 227.35 280.215C227.422 280.285 227.569 280.513 227.569 280.513C227.719 280.433 227.872 280.433 228.022 280.433C228.241 280.587 228.314 280.817 228.537 281.125C228.466 281.2 228.314 281.275 228.241 281.428C228.162 281.428 228.392 281.732 228.464 281.732C228.611 281.812 228.761 281.732 228.911 281.732C229.056 281.887 229.207 282.113 229.286 282.34C229.207 282.42 229.056 282.493 228.984 282.567C228.984 282.728 229.056 282.877 229.129 283.025H229.656C229.801 283.253 229.874 283.408 230.029 283.792C229.873 283.862 229.728 283.862 229.578 283.94C229.656 284.17 229.728 284.323 229.801 284.478C229.951 284.478 230.176 284.478 230.326 284.548L230.551 285.543C230.395 285.543 230.248 285.543 230.029 285.618C230.103 285.773 230.176 286.002 230.176 286.225C230.395 286.305 230.623 286.378 230.77 286.453C230.848 286.683 230.926 287.14 230.926 287.595C230.926 287.673 230.623 287.595 230.473 287.595C230.395 287.902 230.473 288.21 230.473 288.438C230.623 288.438 230.848 288.513 230.998 288.67C231.008 289.076 230.984 289.483 230.926 289.885ZM218.92 274.428L218.253 274.805L218.842 275.258L219.295 274.962H219.67L218.92 274.428ZM219.968 298.343C219.885 298.503 219.885 298.727 219.817 298.798H219.071C219 298.798 218.842 298.798 218.775 298.727C218.917 298.575 219.019 298.389 219.071 298.187C219.112 298.078 219.183 297.985 219.276 297.919C219.369 297.852 219.48 297.816 219.593 297.815H220.04C220.04 298.04 219.968 298.187 219.968 298.343ZM220.785 295.605C220.714 295.523 220.488 294.918 220.415 294.843C220.263 294.758 220.185 294.758 220.113 294.608C220.04 294.462 220.185 294.38 220.185 294.23C220.263 294.08 220.263 294.002 220.263 293.923C220.415 293.923 220.415 294.002 220.56 294.08C220.638 294.152 220.712 294.462 220.712 294.532C220.784 294.532 221.009 294.688 221.009 294.757C220.857 295.068 220.857 295.523 220.785 295.605ZM221.232 293.695C221.089 293.545 220.935 293.015 220.714 292.943C220.64 292.858 220.937 292.715 220.937 292.557C220.937 292.328 220.859 292.178 220.937 291.952C221.01 292.023 221.089 292.255 221.155 292.33C221.309 292.33 221.309 292.945 221.309 293.017C221.385 293.167 221.457 294.003 221.232 293.695ZM221.68 298.798H220.784C220.935 298.57 220.935 298.187 221.154 297.968C221.232 297.883 221.307 297.883 221.457 297.968H221.829C221.979 298.04 221.979 298.187 221.979 298.275C221.977 298.57 221.827 298.652 221.68 298.798ZM222.499 275.028L221.68 275.258L221.977 275.642L222.868 276.335L222.499 275.028ZM223.468 298.343C223.171 298.343 223.096 298.425 222.868 298.275C222.868 298.04 222.946 297.885 223.096 297.507C223.169 297.357 223.243 297.123 223.243 297.123C223.468 297.433 223.764 298.12 223.843 298.12C223.843 298.188 223.993 298.345 223.843 298.427C223.764 298.425 223.618 298.343 223.468 298.343Z" fill="white"/>
+</svg>
diff --git a/public/img/poweredby/videos/007.png b/public/img/poweredby/videos/007.png
new file mode 100644
index 0000000..ea5bca7
--- /dev/null
+++ b/public/img/poweredby/videos/007.png
Binary files differ
diff --git a/public/img/poweredby/videos/007.svg b/public/img/poweredby/videos/007.svg
new file mode 100644
index 0000000..70dba2a
--- /dev/null
+++ b/public/img/poweredby/videos/007.svg
@@ -0,0 +1,103 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<path d="M71.2967 297.463V296.458C70.5985 297.552 69.6497 298.252 68.4503 298.521C67.2509 298.791 66.0694 298.701 64.9058 298.234C63.7243 297.768 62.7218 296.888 61.8804 295.614C61.0391 294.34 60.6094 292.671 60.6094 290.589C60.6094 288.149 61.1644 286.192 62.2743 284.667C63.3842 283.16 65.1743 282.406 67.6447 282.406C69.5244 282.406 71.2609 282.908 72.872 283.931C74.4831 284.954 75.2708 286.838 75.2708 289.584V297.875C75.2708 300.621 74.4652 302.488 72.872 303.493C71.2609 304.498 69.5244 305 67.6447 305C64.0465 305 61.8088 303.313 60.9496 299.939H65.228C65.5324 300.496 66.0157 300.908 66.6602 301.213C67.3046 301.501 67.9491 301.59 68.5935 301.447C69.238 301.303 69.8287 300.926 70.3479 300.298C70.9028 299.652 71.2072 298.719 71.2967 297.463ZM64.6015 290.697C64.6015 293.407 65.3891 294.914 66.9466 295.201C68.504 295.489 69.6676 295.13 70.4016 294.107C70.7596 293.676 71.0102 292.994 71.1713 292.079C71.3325 291.164 71.3325 290.248 71.2072 289.333C71.0639 288.436 70.7417 287.628 70.2405 286.928C69.7392 286.228 68.9874 285.869 68.0028 285.869C66.6781 285.869 65.7651 286.354 65.2996 287.341C64.8342 288.31 64.6015 289.441 64.6015 290.697Z" fill="white"/>
+<path d="M89.6097 298.396H87.551C86.9603 298.396 86.477 298.216 86.1189 297.84C85.743 297.463 85.564 296.978 85.564 296.404V288.4C85.564 287.467 85.2776 286.767 84.7047 286.336C84.1319 285.905 83.5053 285.69 82.7892 285.69C82.0911 285.69 81.4645 285.905 80.9096 286.336C80.3546 286.767 80.0861 287.449 80.0861 288.4V298.414H75.9688V289.225C75.9688 286.551 76.6669 284.775 78.0453 283.877C79.4417 282.98 80.9633 282.478 82.646 282.406C84.3646 282.406 85.9578 282.854 87.4078 283.752C88.8579 284.649 89.5739 286.48 89.5739 289.225V298.396H89.6097Z" fill="white"/>
+<path d="M90.6124 284.111H94.7298C94.7298 286.3 94.7298 285.564 94.7298 286.121V298.414H90.6124V284.111Z" fill="white"/>
+<path d="M102.284 298.396C100.995 298.467 99.5991 298.449 98.0954 298.342C96.5916 298.216 95.8398 297.265 95.8398 295.452V280.144H97.9522C98.4534 280.144 98.9188 280.342 99.2948 280.736C99.6886 281.131 99.8855 281.598 99.8855 282.154V282.693H102.284V283.518C102.284 284.11 102.087 284.595 101.694 284.954C101.3 285.331 100.834 285.51 100.279 285.51H99.8676V294.322C99.8676 294.986 100.261 295.327 101.049 295.327H102.284V298.396Z" fill="white"/>
+<path d="M113.49 293.568H116.426C115.997 295.219 115.173 296.475 113.956 297.337C112.739 298.234 111.217 298.683 109.373 298.683C107.135 298.683 105.399 297.965 104.146 296.511C102.893 295.094 102.266 293.084 102.266 290.445C102.266 287.933 102.875 285.977 104.092 284.559C105.345 283.105 107.082 282.388 109.319 282.388C111.665 282.388 113.49 283.087 114.779 284.505C116.032 285.959 116.659 287.969 116.659 290.571C116.659 290.733 116.659 290.858 116.659 290.984C116.659 291.109 116.659 291.181 116.659 291.217C116.659 291.415 116.641 291.558 116.605 291.63H106.455C106.491 292.85 106.795 293.748 107.332 294.34C107.834 294.968 108.603 295.273 109.624 295.273C110.286 295.273 110.859 295.129 111.324 294.86C111.45 294.824 111.557 294.753 111.647 294.645C111.736 294.555 111.844 294.447 111.969 294.322C112.005 294.196 112.148 294.053 112.416 293.855C112.667 293.676 113.025 293.568 113.49 293.568ZM106.455 288.992H112.452C112.381 287.933 112.094 287.143 111.629 286.641C111.127 286.085 110.394 285.815 109.463 285.815C108.603 285.815 107.905 286.085 107.35 286.641C106.777 287.179 106.491 287.969 106.455 288.992Z" fill="white"/>
+<path d="M55.6138 276.914H57.7262C58.2812 276.914 58.7466 277.112 59.1404 277.507C59.5343 277.901 59.7312 278.368 59.7312 278.924V298.414H55.6138V276.914Z" fill="white"/>
+<path d="M90.6122 280.145H92.7246C93.2795 280.145 93.7449 280.342 94.1388 280.737C94.5326 281.132 94.7295 281.598 94.7295 282.155V283.393H90.6122V280.145Z" fill="white"/>
+<path d="M66.0154 280.36H65.3709V279.894C65.0487 280.252 64.6011 280.432 64.0462 280.432C63.527 280.432 63.0795 280.252 62.7036 279.911C62.3097 279.535 62.1128 279.068 62.1128 278.494C62.1128 277.902 62.3276 277.417 62.7394 277.04C63.1153 276.681 63.5808 276.52 64.0999 276.52C64.6369 276.52 65.0666 276.699 65.3888 277.076V276.609H66.0333V280.36H66.0154ZM65.353 278.494C65.353 278.135 65.2277 277.83 64.995 277.561C64.7444 277.309 64.4579 277.184 64.0999 277.184C63.724 277.184 63.4196 277.309 63.1511 277.578C62.9005 277.83 62.7752 278.099 62.7752 278.386C62.7752 278.763 62.8826 279.086 63.1153 279.355C63.348 279.642 63.6524 279.768 64.0283 279.768C64.3863 279.768 64.6906 279.642 64.9592 279.391C65.2277 279.158 65.353 278.853 65.353 278.494Z" fill="white"/>
+<path d="M70.6697 278.386C70.6697 278.978 70.4907 279.463 70.1327 279.84C69.7568 280.235 69.2913 280.432 68.7006 280.432C68.1635 280.432 67.7518 280.252 67.4296 279.911V281.598H66.7493V276.591H67.3938V277.04C67.5549 276.861 67.7518 276.735 67.9487 276.645C68.1635 276.556 68.3783 276.52 68.629 276.52C69.1481 276.52 69.6135 276.699 70.0074 277.04C70.4549 277.399 70.6697 277.848 70.6697 278.386ZM69.9716 278.476C69.9716 278.117 69.8463 277.812 69.5956 277.561C69.345 277.309 69.0228 277.184 68.6648 277.184C68.2888 277.184 67.9845 277.327 67.7339 277.596C67.5012 277.848 67.3938 278.153 67.3938 278.494C67.3938 278.817 67.4833 279.086 67.6802 279.337C67.9129 279.624 68.253 279.768 68.7006 279.768C69.0586 279.768 69.3629 279.642 69.6135 279.391C69.8642 279.158 69.9716 278.853 69.9716 278.476Z" fill="white"/>
+<path d="M75.1636 280.36H74.5192V279.894C74.1969 280.252 73.7494 280.432 73.1944 280.432C72.6753 280.432 72.2278 280.252 71.8518 279.911C71.458 279.535 71.2611 279.068 71.2611 278.494C71.2611 277.902 71.4759 277.417 71.8876 277.04C72.2636 276.681 72.729 276.52 73.2481 276.52C73.7852 276.52 74.2148 276.699 74.5371 277.076V276.609H75.1815V280.36H75.1636ZM74.5192 278.494C74.5192 278.135 74.3938 277.83 74.1611 277.561C73.9105 277.309 73.6241 277.184 73.2661 277.184C72.8901 277.184 72.5858 277.309 72.3173 277.578C72.0666 277.83 71.9413 278.099 71.9413 278.386C71.9413 278.763 72.0487 279.086 72.2815 279.355C72.5142 279.642 72.8185 279.768 73.1944 279.768C73.5525 279.768 73.8568 279.642 74.1253 279.391C74.3759 279.158 74.5192 278.853 74.5192 278.494Z" fill="white"/>
+<path d="M79.656 279.122C79.4412 279.553 79.1905 279.876 78.9041 280.091C78.5819 280.324 78.2059 280.45 77.7405 280.45C77.2214 280.45 76.7559 280.27 76.3621 279.894C75.9504 279.499 75.7355 279.032 75.7355 278.458H75.7713C75.7713 278.458 75.7713 278.476 75.7534 278.494C75.7534 277.902 75.9504 277.417 76.3621 277.04C76.7201 276.699 77.1498 276.52 77.651 276.52C78.1164 276.52 78.5103 276.645 78.8683 276.879C79.2084 277.112 79.477 277.453 79.6381 277.884H78.8862C78.6356 277.435 78.2238 277.202 77.6689 277.202C77.3109 277.202 77.0244 277.327 76.7917 277.578C76.559 277.83 76.4337 278.135 76.4337 278.494C76.4337 278.853 76.559 279.176 76.8096 279.427C77.0602 279.678 77.3646 279.804 77.7226 279.804C77.9553 279.804 78.188 279.75 78.4029 279.624C78.6177 279.499 78.7788 279.337 78.9041 279.14H79.656V279.122Z" fill="white"/>
+<path d="M83.5411 280.36H82.8609V278.206C82.8609 277.919 82.7713 277.668 82.5744 277.489C82.3954 277.309 82.1448 277.201 81.8584 277.201C81.5719 277.201 81.3392 277.291 81.1602 277.453C80.9812 277.632 80.8917 277.847 80.8917 278.135V280.36H80.2114V275.353H80.8917V276.914C81.1602 276.645 81.4824 276.519 81.8763 276.519C82.3059 276.519 82.6818 276.663 83.0041 276.968C83.3442 277.291 83.5232 277.704 83.5232 278.206V280.36H83.5411Z" fill="white"/>
+<path d="M87.9808 278.745H84.8122C84.8659 279.068 85.027 279.319 85.2776 279.517C85.5103 279.678 85.761 279.768 86.0295 279.768C86.2801 279.768 86.5128 279.696 86.7456 279.552C86.9783 279.409 87.1394 279.211 87.2289 278.978H87.9271C87.748 279.481 87.4616 279.84 87.0857 280.091C86.7635 280.306 86.4054 280.414 86.0116 280.414C85.5103 280.414 85.0807 280.234 84.7227 279.875C84.3467 279.481 84.1498 279.014 84.1498 278.44C84.1498 277.848 84.3467 277.363 84.7585 277.004C85.1344 276.663 85.5641 276.502 86.0653 276.502C86.5665 276.502 87.0141 276.663 87.3721 277.004C87.7838 277.381 87.9987 277.901 87.9987 278.547V278.745H87.9808ZM87.2826 278.117C87.211 277.83 87.0499 277.614 86.8172 277.435C86.5844 277.255 86.3338 277.166 86.0474 277.166C85.6894 277.166 85.385 277.291 85.1523 277.525C84.9912 277.686 84.8659 277.883 84.8122 278.117H87.2826Z" fill="white"/>
+<path d="M37.7481 275.102C37.7481 275.102 25.3065 282.711 37.032 290.266C39.2876 291.738 47.4686 295.83 47.2359 299.616C47.2359 299.616 52.1946 292.258 44.9445 287.628C37.4974 282.89 35.6357 277.83 37.7481 275.102Z" fill="white"/>
+<path d="M33.416 289.638C33.416 289.638 28.9764 296.386 37.7124 297.768C38.5717 297.876 44.8909 298.54 46.5378 300.621C46.5378 300.621 46.3946 297.032 41.239 294.915C36.1012 292.797 33.9889 292.276 33.416 289.638Z" fill="white"/>
+<path d="M50.6014 282.549C45.2667 276.95 43.7809 273.487 46.0723 269C46.0723 269 30.1578 275.138 45.8754 286.031C51.4964 289.925 50.5656 293.909 50.5656 294.053C51.4427 293.138 55.936 288.149 50.6014 282.549Z" fill="white"/>
+<rect width="542" height="335" fill="#91C2EA"/>
+<mask id="mask0_101:34" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="251" y="52" width="291" height="283">
+<rect x="251" y="52" width="291" height="283" fill="#0070CC"/>
+</mask>
+<g mask="url(#mask0_101:34)">
+<path d="M340.93 189.699L457.721 257.128L457.721 391.987L340.93 324.557L340.93 189.699Z" fill="url(#paint0_linear_101:34)" fill-opacity="0.5" stroke="white" stroke-opacity="0.9"/>
+<rect width="134.859" height="134.859" transform="matrix(0.866025 -0.5 2.20305e-08 1 457.721 257.128)" fill="url(#paint1_linear_101:34)" fill-opacity="0.5" stroke="white" stroke-opacity="0.9"/>
+<path d="M457.721 122.269L574.513 189.699L457.721 257.128L340.93 189.699L457.721 122.269Z" fill="url(#paint2_linear_101:34)" fill-opacity="0.5" stroke="white" stroke-opacity="0.9"/>
+<path d="M399.862 290.843L458.257 257.128L458.257 189.699L399.862 223.413L399.862 290.843Z" fill="url(#paint3_linear_101:34)" fill-opacity="0.4" stroke="white" stroke-opacity="0.9"/>
+<rect width="67.4294" height="67.4294" transform="matrix(0.866025 0.5 2.20305e-08 -1 458.257 257.128)" fill="#0070CC" stroke="white" stroke-opacity="0.9"/>
+<path d="M458.257 324.557L516.653 290.843L458.257 257.128L399.862 290.843L458.257 324.557Z" fill="url(#paint4_linear_101:34)" fill-opacity="0.5" stroke="white" stroke-opacity="0.9"/>
+<path d="M282.36 290.81L340.755 257.096L340.755 189.666L282.36 223.381L282.36 290.81Z" fill="url(#paint5_linear_101:34)" fill-opacity="0.4" stroke="white" stroke-opacity="0.9"/>
+<rect width="67.4294" height="67.4294" transform="matrix(0.866025 0.5 2.20305e-08 -1 340.755 257.096)" fill="#0070CC" stroke="white" stroke-opacity="0.9"/>
+<path d="M340.755 324.525L399.151 290.81L340.755 257.096L282.36 290.81L340.755 324.525Z" fill="url(#paint6_linear_101:34)" fill-opacity="0.5" stroke="white" stroke-opacity="0.9"/>
+<path d="M515.687 290.861L574.343 256.996L574.343 189.265L515.687 223.13L515.687 290.861Z" fill="url(#paint7_linear_101:34)" fill-opacity="0.4" stroke="white" stroke-opacity="0.9"/>
+<path d="M574.343 324.727L633 290.861L574.343 256.996L515.687 290.861L574.343 324.727Z" fill="url(#paint8_linear_101:34)" fill-opacity="0.5" stroke="white" stroke-opacity="0.9"/>
+<path d="M604.153 146.227L457.26 60.4917L274.929 161.088L271.5 360.566" stroke="url(#paint9_linear_101:34)"/>
+<path d="M340.088 125.651V251.967" stroke="url(#paint10_linear_101:34)"/>
+<path d="M396.674 93.6427V219.96" stroke="url(#paint11_linear_101:34)"/>
+<path d="M517.846 93.6427V219.96" stroke="url(#paint12_linear_101:34)"/>
+<path d="M457.26 61.6349V187.952" stroke="url(#paint13_linear_101:34)"/>
+</g>
+<rect x="137" y="270" width="202.742" height="34.3712" rx="7" fill="url(#pattern0)"/>
+<defs>
+<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1">
+<use xlink:href="#image0_101:34" transform="scale(0.000390625 0.00230415)"/>
+</pattern>
+<linearGradient id="paint0_linear_101:34" x1="399.326" y1="223.413" x2="340.93" y2="324.557" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#2A95EC"/>
+</linearGradient>
+<linearGradient id="paint1_linear_101:34" x1="95.467" y1="-4.8614" x2="23.6789" y2="74.5" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#2995EC"/>
+</linearGradient>
+<linearGradient id="paint2_linear_101:34" x1="457.583" y1="122.269" x2="405.869" y2="232.969" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0676D1"/>
+<stop offset="1" stop-color="#3BA0F1"/>
+</linearGradient>
+<linearGradient id="paint3_linear_101:34" x1="441.2" y1="269.407" x2="408.968" y2="249.533" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#2A95EC"/>
+</linearGradient>
+<linearGradient id="paint4_linear_101:34" x1="458.188" y1="324.557" x2="432.331" y2="269.207" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#3198EB"/>
+</linearGradient>
+<linearGradient id="paint5_linear_101:34" x1="323.698" y1="269.374" x2="291.466" y2="249.501" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#2A95EC"/>
+</linearGradient>
+<linearGradient id="paint6_linear_101:34" x1="340.686" y1="324.525" x2="314.829" y2="269.175" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#2A93E7"/>
+</linearGradient>
+<linearGradient id="paint7_linear_101:34" x1="557.21" y1="269.329" x2="524.834" y2="249.367" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#2A95EC"/>
+</linearGradient>
+<linearGradient id="paint8_linear_101:34" x1="574.274" y1="324.727" x2="548.301" y2="269.129" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#2A96ED"/>
+</linearGradient>
+<linearGradient id="paint9_linear_101:34" x1="437.827" y1="60.4917" x2="437.827" y2="360.566" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0.6"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint10_linear_101:34" x1="340.588" y1="125.651" x2="340.588" y2="251.967" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0.6"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint11_linear_101:34" x1="397.174" y1="93.6427" x2="397.174" y2="219.96" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0.6"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint12_linear_101:34" x1="518.346" y1="93.6427" x2="518.346" y2="219.96" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0.6"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint13_linear_101:34" x1="457.76" y1="61.6349" x2="457.76" y2="187.952" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0.6"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<image id="image0_101:34" width="2560" height="434" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAACgAAAAGyCAIAAACnMwoLAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QA/wD/AP+gvaeTAAAAB3RJTUUH4QgBEjIYeL71GgAAgABJREFUeNrs3XV8FNfeP/DZ3cjG3Yi7kRAgQHB3p1SgjltpkULprbe3QqFUsCL10kKxGO4a4q4E4u66ydrzR+7NwyUQnZ05M/t5v35/PL9esnPmzMzuzHzP5xyBPJcCAAAAAAAAAAAAAAAAAAAeEKILAAAAAAAAAAAAAAAAAAD4AQVgAAAAAAAAAAAAAAAAAACeQAEYAAAAAAAAAAAAAAAAAIAnUAAGAAAAAAAAAAAAAAAAAOAJFIABAAAAAAAAAAAAAAAAAHgCBWAAAAAAAAAAAAAAAAAAAJ5AARgAAAAAAAAAAAAAAAAAgCdQAAYAAAAAAAAAAAAAAAAA4AkUgAEAAAAAAAAAAAAAAAAAeAIFYAAAAAAAAAAAAAAAAAAAnkABGAAAAAAAAAAAAAAAAACAJ1AABgAAAAAAAAAAAAAAAADgCRSAAQAAAAAAAAAAAAAAAAB4AgVgAAAAAAAAAAAAAAAAAACeQAEYAAAAAAAAAAAAAAAAAIAnUAAGAAAAAAAAAAAAAAAAAOAJFIABAAAAAAAAAAAAAAAAAHgCBWAAAAAAAAAAAAAAAAAAAJ5AARgAAAAAAAAAAAAAAAAAgCdQAAYAAAAAAAAAAAAAAAAA4AkUgAEAAAAAAAAAAAAAAAAAeAIFYAAAAAAAAAAAAAAAAAAAnkABGAAAAAAAAAAAAAAAAACAJ1AABgAAAAAAAAAAAAAAAADgCRSAAQAAAAAAAAAAAAAAAAB4AgVgAAAAAAAAAAAAAAAAAACeQAEYAAAAAAAAAAAAAAAAAIAnUAAGAAAAAAAAAAAAAAAAAOAJFIABAAAAAAAAAAAAAAAAAHgCBWAAAAAAAAAAAAAAAAAAAJ5AARgAAAAAAAAAAAAAAAAAgCdQAAYAAAAAAAAAAAAAAAAA4AkUgAEAAAAAAAAAAAAAAAAAeAIFYAAAAAAAAAAAAAAAAAAAnkABGAAAAAAAAAAAAAAAAACAJ1AABgAAAAAAAAAAAAAAAADgCRSAAQAAAAAAAAAAAAAAAAB4AgVgAAAAAAAAAAAAAAAAAACeQAEYAAAAAAAAAAAAAAAAAIAnUAAGAAAAAAAAAAAAAAAAAOAJFIABAAAAAAAAAAAAAAAAAHgCBWAAAAAAAAAAAAAAAAAAAJ5AARgAAAAAAAAAAAAAAAAAgCdQAAYAAAAAAAAAAAAAAAAA4AkUgAEAAAAAAAAAAAAAAAAAeAIFYAAAAAAAAAAAAAAAAAAAnkABGAAAAAAAAAAAAAAAAACAJ1AABgAAAAAAAAAAAAAAAADgCRSAAQAAAAAAAAAAAAAAAAB4AgVgAAAAAAAAAAAAAAAAAACeQAEYAAAAAAAAAAAAAAAAAIAnUAAGAAAAAAAAAAAAAAAAAOAJFIABAAAAAAAAAAAAAAAAAHgCBWAAGiiVgoOXAg9eClQqBegNHqus1z0e4Yt+AAAAAAAAAAAAAAAAYmmgCwD6KLfCePn+uZeTXCmK+vPWgEOrTrlZV6Fb+OdsnMfKA3Mm9H+wMCgFvQEAAAAAAAAAAAAAAGRCAhigT36/ERCweW1b9ZeiqJtpjgO3rP3+zHBEgfmkpkm86uCcWV++VFhliN4AAAAAAAAAAAAAAACSIQEM0EtF1QarDswJj/V87L83tWhu+HV6eJzHwVWnHcxq0VFc1xb8RekXAAAAAAAAAAAAAAA4AQlggN44HuHrv2ldx+pvu0uJrgM2rcOqwJyG4C8AAAAAAAAAAAAAAHAOEsAAPVNcbbDq4JywGM8u/2Vds/aqg3OO3/NFFJiLEPwFAAAAAAAAAAAAAAAuQgIYoAeOR/j6bVrXnepvO0SBOQfBXwAAAAAAAAAAAAAA4C4kgAG6pfvB347aosAnIn0OrAxGFJhwCP4CAAAAAAAAAAAAAACnIQEM0LVeBH87upjghigwyRD8BQAAAAAAAAAAAAAAHkACGKAzfQn+doQoMLEQ/AUAAAAAAAAAAAAAAH5AAhjgqWgJ/naEKDBREPwFAAAAAAAAAAAAAAA+QQIY4AnoDf52hCgwIRD8BQAAAAAAAAAAAAAAnkECGOBxxyN8/TevU131tx2iwCxC8BcAAAAAAAAAAAAAAHgJCWCA/1dcbbD60OzQaC/GttgeBT64ItjeHFFghiD4CwAAAAAAAAAAAAAAfIUEMMB/tAV/maz+truY4Oa/GVFgJiD4CwAAAAAAAAAAAAAA/IYEMAALwd+O2qLAJyN9DiAKrDII/gIAAAAAAAAAAAAAAO8hAQzqjsXgb0cXEAVWDQR/AQAAAAAAAAAAAABATSABDOqLhOBvR4gC0w7BXwAAAAAAAAAAAAAAUB9IAIOaIir42xGiwLRA8BcAAAAAAAAAAAAAANQNEsCgdkpq9FcfmhMS5UV4OxEF7iMEfwEAAAAAAAAAAAAAQA0hAQzq5XiEr9+mN8iv/ra7kOA24O21iAL3CIK/AAAAAAAAAAAAAACgtpAABnXBleBvR7VNYkSBuw/BXwAAAAAAAAAAAAAAUGdIAINa4FzwtyNEgbuE4C8AAAAAAAAAAAAAAAASwMBz3A3+doQocCcQ/AUAAAAAAAAAAAAAAKCQAAZ+40HwtyNEgR+D4C8AAAAAAAAAAAAAAEA7JICBn/gU/O2oLQp8Ksr7x+Uhah4FRvAXAAAAAAAAAAAAAADgUUgAAw/xMvjb0fl497YosHoeZQR/AQAAAAAAAAAAAAAAOkICGHilpEZ/zaHZwVHearK/7VHgAyuC7czq1OdAI/gLAAAAAAAAAAAAAADwREgAA38cj/D137xOfaq/7c7Hu/tvXqcmUWAEfwEAAAAAAAAAAAAAADqBBDDwgboFfztSkygwgr8AAAAAAAAAAAAAAACdQwIYOE9tg78d8TgKjOAvAAAAAAAAAAAAAABAdyABDByG4G9HvIwCI/gLAAAAAAAAAAAAAADQTUgAA1ch+NsJ3kSBEfwFAAAAAAAAAAAAAADoESSAgXtKa/VXH0TwtwttUeDTUd4/cjYKjOAvAAAAAAAAAAAAAABATyEBDBxzPMLXbxOCv911jptRYAR/AQAAAAAAAAAAAAAAegcJYOCM0lr9NQdnn0bpt4c4FwVG8BcAAAAAAAAAAAAAAKDXkAAGbmgL/qL622uciAIj+AsAAAAAAAAAAAAAANBHSAAD6RD8pQvhUWAEfwEAAAAAAAAAAAAAAPoOCWAgGoK/tDsX7z6AsCgwgr8AAAAAAAAAAAAAAAB0QQIYCIXgr+q0FVyDo71+XBFia8pyFBjBXwAAAAAAAAAAAAAAABohAQwkQvCXAWfjPPw3sRkFRvAXAAAAAAAAAAAAAACAdkgAA1kQ/GUSi1FgBH8BAAAAAAAAAAAAAABUAQlgIMjxCF//zQj+Mo3hKDCCvwAAAAAAAAAAAAAAAKqDBDAQobRWf+2hWacifdAVrGAsCozgLwAAAAAAAAAAAAAAgEohAQzsawv+ovrLOpVGgRH8BQAAAAAAAAAAAAAAYAASwMCmkhr9NYdmB2POZ2K0lWnPxrvvXRZqbdxA18e2yDSmfvZqdLYt1/tHIFAGOJXgPAEAAAAAAAAAAAAAAGIJ5LnoBGDH8QjftYdnV9TpoisIZKwr+fLFC8snRdP1gbVN4q1/Tjl0ebBSKeBonzhZ1BxadXp8/wc4PQAAAAAAAAAAAAAAgFgoAAML+BT8NdVvrmrQ4euRmjskjd4o8JlYj5UH5hZVG3Dsi1KgXD058ssXL+qJW3H9AgAAAAAAAAAAAAAAyUQfbkAnAKOOR/jO/urluIf9uL4jmiL55jm3Q975096s9nqqU6uMhxOqZxRZ/HRlsKl+82CXIlo+0N2mcumE2KpGndgHnDkBnCxqjm88umZapJaGHNcvAAAAAAAAAAAAAAAQDglgYE5Znd7aQ7NP3vPhwb74O5b+tObkQKfitv9vboXx8v1zLye58vXYzRiUuX95iK1pHV0feC7efcWPcwurDIn+fhQol02M2fHyOX0EfwEAAAAAAAAAAAAAgCNQAAaG8GbFX02RfMOsOx8/d+WxPKhSKTh0efDbv0+tl2jz8gjSvipwTZP4nT+nHLwUSOb+YsVfAAAAAAAAAAAAAADgIhSAQeV4HPztKLfCeNm+eVeSXfh6NGcMyvxxRXA/k3q6PvBsnMfKA3OIigK3BX+/fvm8gbgF1y8AAAAAAAAAAAAAAHALCsCgWrwP/naEKHBPERUFdrKoObjq9AQEfwEAAAAAAAAAAAAAgJtQAAZV4VPwd4BjyeE1pzoJ/naUU268fD+iwD1wJtZj5YG5RdUGrH0bIvgLAAAAAAAAAAAAAADchwIwqATPgr+fPH9FUyTv6d8iCtxT1Y06245MZiUKrFbB3/Qi85Aob3xNtRNrynS0pP/5v7VkOlpSsabMQKfFULfFSEdirCcx0m0RCRXoKAAAAAAAoEtVg86hy4Hoh3YiocJQ5z+jsUUihaFOi0ioNNRpMdZrNtRpMdKTGOq0iDVl6CgAAACAbkIBGGjGs+DvT2tPBjiW9OVDEAXuqeMRvusOzyqv02PoS1D9gr/H7vRf9N1z+LLqET1xaz+TehvjejuzOhuTejvTOlvTOgeLGm/bcn1xK/oHAAAAAAB6JKPY3Oet9eiHHtHSkFsYNjqY1Vqb1NuZ1dma1vUzqbczq/W2K7c0bET/AAAAADwKBWCgE4K/T9QWBd78+7QGiRYvjzvtUeDyOr21h2ediPBVdcvVc8VfFIDp5Whe42VX3t++zMu2vL99WYBTcZcrhQMAAAAAgJpDAZheZgZNvnZl3nblPnblPnZlg1yKjHUl6BYAAABQZygAAz3K6vTWMVKxYwAtwd+OcsqNl+2fd5W/UeCZgzL2rwihNwqsuvEE6rziLwrAKqUhUgxwLBnhmTfKK3dC/wem+s3oEwAAAAAAeAwKwKrmYlU90S97pGfeKK9cZ8tqdAgAAACoGxSAgQYMz9mrOvQGfzvifRTYRK/5i8UXaYwCq2hGcUfzmkOr1S742w4FYMYIhUo/+9JZgzMWBKXQPqYEAAAAAAC4CwVgJjma10wNyHpmWOpY3xwVvfABAAAAIA0KwNAnfAr+BjiWHFZB8LcjRIF7isYosDoHf9uhAMwKR/OaOUPSFwaljPTMEwiU6BAAAAAAAHWGAjArTPSaZw7OfDYoefKAbG0NGToEAAAAeAwFYOg93gR/xZqyD5+9umn2bZFQwcwWEQXuqdJa/TUHZ5+O8u7Lhzia1xxcFTzRL1vNr1wUgNnlZFGzdELM6+NjbegbJAEAAAAAANyCAjC7jHQli0YlrpgUPQBzNQEAAABPoQAMvcGn4O8w94LDq09525Yzv+mHZSbL9s+7luLM1/NEFVHgNYdmV9b3OAqM4O+jUAAmgaZIPn9Y2ttzbg5yLkZvAAAAAACoGxSACTHCI2/TnNtzBqcLhZioCQAAAHgFBWDoMQR/aYQocE+V1uqvPjg7uCdRYAR/H4MCMFEm+mV/9NzVER556AoAAAAAAPWBAjBRvPpVvLvg+qKRiSgDAwAAAG+gAAw9UF6ntxbBXxVAFLinuhkFRvD3iVAAJtCcIen/fuGij105ugIAAAAAQB2gAEwgf8fSzxddnD4wE10BAAAAPCD6cAM6AbrleITv7C9fis625fqOiDVln75w+eCqYEujRkKaZKIneWVMQj+T+mupzq0yEf9Onqxi81+uDjLRkwx2KaLlA33syl8eE3+/1CyjyPxp/8bRvObYxmPrp0doa8hx/T4qJd/yxD1f9ANRMorMD14eUlmvO9IrD2csAAAAAADvVTbo7jk3DP1AlNJa/SO3/GMe9AvyKDDRk6BDAAAAgNOQAIauldfprTs86zgvgr9B7vmHVp8mJPjbEaLAPXU8wnf1wTlVDTr/872G4G+nkAAmmYNZ7eE1pyb0f4CuAAAAAADgMSSASaarLf30+cvrp9/FjNAAAADAXUgAQxcQ/GWSmkSB+5nU+zuW0vKBPnblL49JyCoxy/xvFBjB3y4hAUyy2mbxHzcH1DaJx/rkaIgU6BAAAAAAAF5CAphkUrnoQoLbrQzH8b4PjXQxshwAAAA4CQlgeKrqRp1tRyYfvBTIg30Jcs8/vOaUV78KrjT4QanJsv3zrqfyNgq8MChl99IwC0PaivFtUeBnglIQ/O0SEsCcMNCp+Pjmv5wsatAVAAAAAAD8gwQwJ5gZNP315j8T/bLRFQAAAMA5KADDk52I8F13eFZZnR7Xd0RHS/rJ81fenHFXJORYlk6hEHx/dvh7f09sbtXk5Tlmadi4e2nYM0EpdH1gU4umrrYUF2+XUADm0DXyz6a/R3nhdxoAAAAAgG9QAOYKDZHi65fOr59xF10BAAAA3IIpoOFx1Y06G36dse3IlMYWLa7vy3D3/LB3f589OEMo4N6qLQIBFeSR/8LIpMRc69xyE/6daY0tWv9E9E8tsBznm6NHR+FWUwPz5XYLpoDm0DXy1y1/b7tyb7ty9AYAAAAAAJ9gCmiuUCgF5xPcqxt1pvjfFwjQHwAAAMAZKADD/wiP9Zz5xcs8mHm4bcXfA6uCLQ0bOb0jJvqSV8Ym9DOpv5rqLOXjqsCpBZa/XR/obFnjgxIXU1AA5hC5Qngq0sfZopquZbMBAAAAAIAEKABzS+R9u4JKo1mDM1ADBgAAAK4QogugTXWjzqqDc+Z89WJRtQHX92W4e37M9r1b5t7k3LTPTyQQKJdPio7fvmesTw4vz72yOr3ndj3//K7ny7k/5TgA7WRy4ZJ984/e9kNXAAAAAAAAsOXna4NW/DhXqUQFGAAAALgBCWCgKB4Ff3W0pJ8+f4UHwd+OTPQlr4yNRxQY+g4JYM5RKgUh0V6BrkVu1lXoDQAAAAAAHkACmIvic2yaWjQn+2ejKwAAAIB8SACrO94Ff/fxJvjbEaLAAGpLKhe9sOu55HxLdAUAAAAAAABbdoSOOnBpCPoBAAAAyIcCsFoLj/X037Tu4KVAru+Ijpb0i8UXr39y2NOmgvdHzcWq+vIHP+9fHqInbuXlDh6P8PXftO5EBCKqAP+jXqK94OvFVQ066AoAAAAAAAC2vPnzjJtpjugHAAAAIBwKwGqKT8HfER55/A7+dtQWBY7bvneMdw4vdxBRYIAnyi41XbZ/HvoBAAAAAACALa0y0YvfP1tZr4uuAAAAAJKhAKyOzsR68Cn4e+3jn9Qh+NuRq1WVOkSBT97zwTUL0C44yvvQ5cHoBwAAAAAAALYUVhmu+HEu+gEAAABIhgKweqmo0138/bOzv3qJB8FfiqJM9ZsHORepT/D3CRewULl8UnTkF/uD3PN5uYNldXrPfvPC4u+frajD0FqA/9j42/S8SiP0AwAAAAAAAFtOR3n/eXMA+gEAAACIhQKwGjkT6zFwy9qjt/14s0eFVYZT//3qq3ueqZdoq/OR9epXcfOTQ/uXh+hqS3m5g0dv+/ltegNRYIA2jRKtt36egX4AAAAAAABg0du/T61u1EE/AAAAAJlQAFYLNU3iVQfn8Cb4+5g/bgwYsGnt5SRXtb6Shcrlk6Ljv97D41WBn/3mhed3PY8oMABFUcFR3mdiPdAPAAAAAAAAbCmt1f/g7wnoBwAAACATCsD8dybWw2/jGzxY8bcTuRXGU//9yqqDc9Q8Cty+KjBfo8DHI3wRBQZo886RKQqFAP0AAAAAAADAlh8vDckoNkc/AAAAAIFQAOYzfgd/H6NUCg5eCgzYvPZKsotaX9L/jQKP9s7l5Q4iCgzQJiXf8uhdP/QDAAAAAAAAW+QK4WfHx6EfAAAAgEAoAPPWmVgP/03r+B387Sin3HjKZ6+uOjinQaKlzkff1arqygc/IQoMwG8f/zMeIWAAAAAAAAAW/X3HL7XAAv0AAAAApEEBmIfag7+FVYZquPttUeABm9ddRRR4UnTcdkSBAXgrq9gsPNYT/QAAAAAAAMAWhULw/dnh6AcAAAAgDQrAfHM2Th2Dvx3llBtPRhSYotysqy5/8PMXiy9qa8h4uYPHI3z9N687FYkoMKip784GoRMAAAAAAABY9MeNARibDgAAAKRBAZg/2oK/s75U0+BvR/9ZFfjttddSnNW5H0RCxZa5N6O/2jfUrYCXO1haq79wJ6LAoKauJrukFWK2MQAAAAAAANY0t2r+en0g+gEAAACIggIwTyD4+zQPy0wmffraqoNzGtU7CuxjV37zk0OIAgPwz5Fb/ugEAAAAAAAAFqEADAAAAKQRyHPRCdxW0yR+588pKP12ycWq+uCq0+N8Hqp5P6QWWCzZuyAq25avO7gwKGXP0lBzwyac809z7E7/Rd89R3gjDcQtGiJFr/+8sUWrVSZSkwPqaF6TvXuXQKDEuQ0AAAAAwBUZxeY+b61HP/BJ3PY9/o6l6AcAAAAghAa6gNNCorxWH5pTUqOPrujSg1KTyZ++9uaMu58+f1lHS8qhllc36hy70/+18XG0hHd97MpvfXrw65BRnx4f1yLj4TfA8QjfW+mO+5aFzBmSjtOeu05vPdL34RolNfq55ca55caZxeb37ttF3rfj5TzhuRXGd7PsR3jk4bQBAAAAAAAazRuStmZqJI0fWNes3SjRrG/Wflhukl5onpBrU1DJn1XM/r7j7+94EacNAAAAEAIFYK5C8LcXFArBrrARwVHeh1efGuOdw4k2n4t3X3lgbkGl4Z7zw35afSrQtZCGy16k2Db/xpzA9KX75vMyClxSoz9/x2JEgcHauMHauGGY+/+vfp2Sbxkc5R0c7RXzoJ9SKeDNnp6J9UABGACIvWWtaRRXN+rUNoqrG3XkCoFULmpo/s/CHK1ykZZIrq0p09WWaooU+uJWkUhhIG7RE7fam9bpiVvRgaxokGhVN+hUN4qrG3VqGnWkciFFUfUSbZlMSFFUi0yjfVSika5EKFRSFGWk02Ks32yi12yiJzHRa277jwAAwHUOFjUT/bJVuonMIrPLSa5HbvnfyXTgeneFx3h+vggFYAAAACAFpoDmpLNxHisPzCmsMkRX9I5QqFw6IeabV87qapMbBa5tEm/93xq/hkixcdbtj567Stc6vjK58JuwkR8dG8/LKDBFUVZGDXuWhc0fmopz/lGcmAL68oc/q3TC9rRCi33nh/5+I6CuWZsHx3SAY0ns9r04twGALQqF4GG5SWq+5f0S07xKo/wKo8Iqw/xKo5Ia/b6MttEXt9qb1VoZN9ia1tkY1zta1Pral/o7lproNaPP+65VJkortLhfbJZfaZRbYZRXblxQZVhQaVRZryOV93UZBSNdST+TejvzWnvTOgeLGkfzGgeLWj/7UjMDjMwDIEhJjX5ZrV7bUI/qBnF1o051o45ULqyXaMvkQoqimls1Ja0abU/QRrqS/1zgOhKhUGmsKzHRl5joNZvoNRvrSSyMGm2M67U05OjV7uPEFNDrZ9zd9epZZraVXmS+K2zkr9cC+v4zxKIHe75xNK/B6Q0AAAAkQAGYYxD8pZGrVdXh1adGe5N4DbQHfzv+T/3tyw7TFAVuk5JvydcocJuFQSl7l4XihWM7FIDb1TVrfxM6clf4iAaJFrd/ywXK3L07bU3rcHoDADPkCmFintWdDIeo+7apBZZphRZNLZqMbd3BrNbPscTPoTTAqWSwS6GLVTWOSDefI+5mOMQ+tEnKs0rJt8osNmsr8DDJ2rjB177Uz6HU36E0yDPf06YCxwWAAVK5KLPILLXAMrXA4mGZSX6lUUGlUX6FIb3jgIVCpbVRg4N5jZ1ZnYN5jWe/Cl+HMl+7MkOdFhyCJ0IB+IkelJps+WPqqUgfjh7WvctCV06OwukNAAAAJEABmEsQ/KWdUKhcO/XeVy9doCtT23cdg78dtUWBP37uCl0jrNUhCrx3eei8IWk45ykUgDsordV/96/Jv1wdyOnD+tebx54bkYzTGwBUR6kUxOdan4n1uJbiHHnfjpyhM/bmtWN9cib4Ppg+KNPSsBFH6lHldXoXE13vZDrcSnNMKbBUKMha/sDSsHG4Z95or9wxPjmDnIsFAkwcDUCPtmE6t9MdIzLtUgqs0gvNW2WsRSodzWt87MuGuBaO9Mwb5lFgIEY9+D9QAO7EiQjftYdnldfpce6wLhqZ+Mf64zi9AQAAgAQoAHMDgr8q5WNXfnj1qaFuBay35Hy8+4qnBH878nMo/WnNyUHOxXRtPSXfcsm++dGIAvMdCsBPxPURNuumRXz3+hkutvxhmYmS7Bf+nA4XNrdqFlfrE95IS6NGfZKWei2p0WcyzEpRlI6WzMakntgDJFcILyW6no7yOhPn2c1bFLYIhcohroVzAtOfH5HkbKnWseC0QovQaK+wGM+7WfakFX2fxta0btbgjDmB6eN8H4o1Zep8+B6WmXwVPJp/+6Wn3do2etVQp8VIt8VIV9L2//qZ1tua1qn5QadLfK71mRjPG+mOERn29RISFzoRCRUDHEtHeuVOC8jCxY4CcOdyK4znb1+ckGvNrcPqaF7zYM83vf7zeol2ea2u2l4U+jqtmiJF2zzz+Epn/SGlp8wNmzDlQ0eNEq1WuahVJmqUaCopQU2jmHO7EOBUIhIqVPf55XV69c3sjy020m2h940xIS+7HC1qVXr4gHwoAHNAJ7MBA11oX163p7oT/H1asxEF7j5EgSkUgDu96Xz2mxdupjly8bAOdimK/GI/55qdXmTuu4H0115JO3/wsSvn6PV+Ndll0qevEd7I1VMjdy8JI6c983csDonyYnKLE/o/uPj+LwQempR8y9+uB/x5a0BxtQHHnnAEyiC3ghdHJ7w4JkGt3kOV1Oj/cTPgl6sD0wotuLsX+uLWZ4JSXh8XO8orTz0zwfey7Ea8t0Ld9trMoMnGuMHVutKzX4WnTYW3Xbm3XTneI3fzCe5qsktItGdYjFdepRGHWq4nbp3if3/24IxZgzPUc5AuCsBdapRoPfPNCxcT3Lh1ZHP37rAz6+XqPL9eG7hk33x8swkESmNdiY6WzNG8xtaszt681sGs1t2mcpBLkZVRg3r2ieu6jTnlxiS3kLuj0vtCKhdlFJnllJmU1OgX1xiU1uoXVRmU1egX1xiU1OhLpHx4uVr58+fGuhLVff6yffN+vjaI9d18a+adna+co/EDdV/8gIS366UHvzQ3xKqIak0DXUAyBH+ZfGzeHjw6PNbz8OpTQ+hbXrebehT87djsc/EeP605OdCJhiiwhkixZe7NmYMy+BoFLq3Vf2bHIkSB4YksDBsvvPfL6kNzuDgddGKulVQu0hTJudXskChv8hsZFuPF3QIwJ/xxfcDniy7iLT85FApBeKzn1yGjbmc4cHQXlErB3Sz7u1n27xyZsnhUwrpp93zty3h8yJRKwZk4jwOXAs/FuzO/rC/tGiRav14b+Ou1ge42la+OjVs+MRrvLNRBZb1uZb1ucr5l+38RCpWeNhVD3AqHuBaO8Mod4FCKScIfk5Jv+ev1gX/eHFBSo8/F9jdKtE5F+pyK9NHSkM8OTH9tbNzUgPsIqcCj9MStpzb/NXf74stJrhxqduyDfr0uAEP7vU11o051I1VUbUBl/c//ZGdWN9ilcLBL0WT/7ECXQjXJCsfnWhNe/aUoKjzWk/cFYKVS8KDMJDnPKiXfMinfKjXfMqPITCoX4ZoFAGKhAEwuBH9ZeYQe9f5yJqPAbcHfQ5cHK5W9n50vMddq+LsrNsy6Q1cU2Ne+7PanB3kcBT4e4XszzRFRYOhIS0N+aOVpLZHswKUh3Gq5VC7KLDLjXIUjNNqT/EaGxXhumXsTV4fq1Eu0/7gRsGbqPXQF62Ry4R83BuwIHcXp/OijGiRaBy4NOXg5cNbgjK3zbg53z+ffITt6x2978OhHy2a8kVVs9t7fk744PWbJ+NiNs287mNXiIlUrCoUgrdAirdDit+sBFEVZGTVM9HswZcD9GQMz1XwcZ9uFv/vcsMj7dvzYo1aZ6ESE74kI334m9UsmxKybds8CC7rDf+loSU9t/mv0B8s4NBd0SoHlnCHpOHYqUlBpWFBpGBzl/cHRiVZGDTMHZc4enD55QLaOlpTHe82JkdMPy0xS8i15Oewyp9z4SrLL5STXK0kuZRxcmxwA1BkKwCTq3WzAQNfj9Pbg0WdiPQ+vPhWo4ijwhQS3FQfm5lfQME+XVC5SRRR4xqCMpYgCg5oRCJR7loa1yDR+vcaxHHBqAceetcrq9CLu25Pfzogsu4o6XeTPVGrfhaGrp0Qi2sWus3EeW/6Ymlpgwb9dUyoFodFeodFeMwZlfrn4Aj9eSykUgl+uD/z3iXHkx0H6qFGi9cPZoP0Xhiwenfjxs1fszVEGVlOltfpHbvkfueWvKZJP8Hvw/PDkuUPTVDohIYGaWzV/ujrom9CRfL3wi6oNPjsxbmfoyLZhH04WNTjzgaIoPXHric1/DXt3ZWU9NxbHTeHjqCxifxp+ujrop6uDjHUlr46LWzklytOmgpd7GhrtxYl2hsV48qYA3CoTXUhwC4/1uJLser/EFJcbAHCUEF1AmnPx7v6b16H6y67kfMuR7y/fdmRyq0wl83jUNolXHZwz44uXaan+tmuLAm87Mpmu6Uf625fd/vTgF4svsrU0sqodj/D127QumAtDKYHRn0ahcv/ykJGeedxqNudeNITHeioUAvLbKVcIz8Z74LpQqdQCi2spzugHtqQXmU/57NVZX77Ey+rvo87EegzcsmblgblVDTqc3pFrKc5D3lm9fP883ld/20nlol+vDfTZuP6jYxMaJVq4bNWZVC46H+++ZN98u5VvL93Pz7GqHcnkwn3nh7qs3bj+p5m8v/CbWzX3nB/m+eZbKw/MLa3VxzkPFEU5W1bvXx7CnTtbFICZVtMk/u7McN8Nb0z+9LWzcXx7dsurNIrL4UYCPjzWkwcdfiPNaen++f1WbJm7/cUDl4ag+gsAnIYCMEGqG3Ve27Ng5hcvY9pnQp6xtwePHv7uyuJqA3o/ub3G35dpn5+mLQo85oOldL3DbYsC3/38QIBjCS8PdGmt/oIdi17bs6C6UQenPbTT0pAf3XDUxqSeQ23m3NvAEI6MYqYoKizGExeFqu29MBSdwDy5QvhN2MjArau5tbReH3f50OXBPhvWt00qyznF1QbP7Fg08ZPX47kzEyaNmlo0Pz0xzuutN09E+OL6heZWzV+uDhz27soR760IifJSxbMVIc7Fuw/csnbdT7PUatpJmVx46PJgz/Vvfnl6jESKueuAWjAsdf7QVDyXQSeUSsGVZJdZX7404eMl97LseLNfodGc+Y2LyLIr5+xPVYNE64ezQf03vjH+oyW/XB2Il4QAwA8oABP0UBfw9trfbwSgK8hhrCtZNSWSxgpQXbP2qoNzZn35kqpr/JH37QZtWfPxP+PlCnqu8QGOJfe+2P/F4ou0rDFMoN9vBPTf+AaiwPAoG5P6PUvDONTgPFpnFFC1phbNS4mcKThdSHBT0YQQ0C4k2gsD4BiWU2487sMlb/8+tblVU932vbxO7/W9C+Zuf5Fbr6iO3vbz37zutNrfrhRVGzy36/kXv3+W60luoMu9LLv5OxYPeWcV/8rAJTX6875ePPOLl3k/Q8PT1Eu0//XXJL9Nb1xLxUwhQH372hmxJgcmJ6ttEtc0iXG8WHQ91Wnk+8uf/eaF3ApjHuxOcBRnRk7LFcJz8e6c6+GqBp2Pjk1wXrvprV9mpBVa4AoCAD5BAZiIW8NVB+cg+EuaGYMyk775YfmkaLo+8EKCm+qCvx1J5aJPjo8f/cEyuu5d2qLAUV/uG+xSxMsjXlKjv2DHoud3Pc+VhYWAAXOHpC0YlsqV1uZXcunh9nKSa1MLZ2pOdc3aN9OccEWolEwuPHgZ618weg0O3bbqTqaDOndCWIxnwNtrryS7cOJ54YVvn1uMkucj/r7tN2DzOg6NJQJVi8uxmb9j8cRPXk/Ks+LHHh27099/87pQ7syYojoPSk0mf/rahl+nq+GIJXiUnVndqimRnGhqXrkRjhe7lErByXs+A99ew9FJX9rVNIlvpHLpUTSUU7NnSaQaX4eM8lj/1qcnxuE2GwB4CQVglp3Hir/kMdaV7F8eErr1j340ZX/bgr+0r/jbHfey7AK3rt4ePJquKHB/+7I7nx3gcRT4eISv/2asCgz/b8cr57hythdUGnIo9RLCtbeZoZgFWvUOXQ5E0poZO0NHTv/8ZQx4oiiqpEZ/+uevfBM2kuRGZhSbj/jXin/u9sfxekxRtcGML17eGToSXQHtrqc6Bb6zesOv0zm9VnRTi+bLPyxc9N1z+KJup1AIvj8zPHDr6pR8rK6q1rbOu6mtwYEQcGEVCsBEqG0Sv753wTM7FnF3XuKzcR5SOZcekS5yZ/ass3Ee/Te+8c6fUzDbMwDwGArAbN6FtBUFEfwlCu3B34vMBn87kkg1th2ZPOaDpelF5rR8YFsUOPKL/YgCgzpwNK95dVwcJ5raKhM1tHDjXadCIQiP9eDWmRAeiwIwE1+/J+/5oB9USqkUvP371C1/TKVrZBgPyOTCt3+fumTffJmcxD45G+cx/N0VdN3F8Y9cIdzyx9SXf1iIXCA8elF/f2b44HdWR97n5AKQOeXGo99ffuSWPw5lR+lF5iPfW47RuurM0rDxmSAOTNFUWY96EkFOR3kP2baKo/NDcGj+5zZ1zdrkR5Yr63Vf+Pa5WV++9LDMBBcIAPAbXv2wA8FfAqko+DudjeBvRxFZ9oO3rKExCuznUIooMKiJd+bdEAkVnGhqdSM31pq6l21XWqvPrdPgQakJEicM2HdhKDpBdRQKwZpDswhPu7Ll12sDF+xYRNrU9L9dD5i7fXEt1hHsypFb/tM/f6WuWRtdAe2yis1Gf7Dsi1NjuLUq8PVUp2HvrorPtcYRfJp6ifYzO1/45Ph4dIXaWjEpigvPZSgAkyW/wmjsh0svJ3Fs5YgWmcZ5Di6pG0b24OlrKc6Dtq7B5DoAoCZQAGYagr9kmjEoM3HnbnqDvwM2sRn87agtCjz2g6UZxTRHgQc5F/PyrEAUGNo4WdRM8HvAiaZyZdGakChOrmYXhlmgVe9WumMC3nqrzJrDsw9cGoJ+eJrwWM9ZX75ETg34wKUhS/fPR1a7m26mOU797FW8cIdHyeTC9/6e9Py3z3FlOuizcR4zPn+log6PHl1QKgUf/zP+jcMzuVXdB7qM8sqzNa3Dcxn0VG2TeOYXL/1xYwCH2nwt2ZmL49tInj3r2/ARUz57Fe/kAUB94IUCoxD8JVB78JeuR4j24G9eJYmLvtzNsh+8ZTW9UeC7//6R91FgjtargC6vjo3nRDtrOPLiOzSakxcUZoFmBkLAKvLxP+NxC9ql66nOC3Yukkg1WG/J3vPD1hyapVCgttEDkfftJn38OmrA8JgTEb5jPlhWWEX6q96T93wW7CDi+4cr9l4YtuzHeRglo4YEAuWMQZmENxKzd5BJKhe9vm/B8QhfrjQ4hJtDkMmcPUuuEK74ce6m36bhhwMA1Aq+8pi7+Vt1cM7ML1/CICOiTB9Ic/D3UqIracHfjppbNbcdmTzuwyWZRWa0fKA6RIHn71j8/K7nMYxXbc0enK4p4sAQh1apiPxGZhWbpRVacPE0iMiyK6/Tw+Wgakdu+dfglRndDl0ejNkyu+ligturu59ht/J6IsL3zV9mINnWC/G51gu+XtQiQwkNHj8xxn20NKfcmNgWBkd5L/ruuVaZCAerR365OnDZ/nn4tlRD0wOyCG9hCy5nUikUgld+eOZKsgv5TVUqBRwdOU2RN3i6VSZa9N2zh68MxiUAAOoGBWAm3M5w8CO+KKhuTPWbf3/jeNg7dAZ/Vx6YO+3zV8gM/nZ0J9MhcNvq3eeC6Dot/RxKb3924L1nrnGiTtYLxyN8A95eezvDAZePGtIXtw51KyS/nVI5B140hMZw9SFWrhCe4+AKTJzTKNH67dpA9AONIu/bvfHTLPRDj37x3zs6ia2t30p3fIXtCjSn3Uhzem3PAnQgPOZBqcm4j5ZmFZsR2LY7mQ4vfr9QJsfLmd747XrA+0cnoh/UzTD3fMJb2Io0P8FaZBoLvl4U+9CG8HZGP+hH/vQVT0PU8kkyuXDRt8+d4E7yGwCARnjGYMIg5+IXRyeIhAp0BSGmD8yM/3rP4lGJdH1gW/D30OXB3KrxN0q03vx5xtgPaXsVoqUh//i5K3yNArfNNBXgWIIrSD2N831IfiM5ERwJiebwhOqhWAaYEfsuDsWYObpUNei8sAupsh776vToo7f9mN9uboXx/K8XYw7YPjp2p/9H/0xAP8Bj8iuMpn72alG1AVGtSi8yn7d9cXOrJg5Qr31xasyPF7HCvXqxNm5wMKsl+rlMjlsvotVLtBfuWET4tEOcfnCOyLIjZEl7pVKwbP+801HeOO0BQD2hAMwEHS3pF4svXv/ksKdNBXqDXW0r/tIY/G1q0XzrlxkcCv52dDvDYeCWNduDR9MVlfB3LL3z7wM8WxXYxar60ge/7F8eoiduxXWkngZwofYvlZH+s15Rp3snw567p8HFBDcU0hiQWWR2KdEV/UCLZfvn5VYYox96YeWBOXQtltHd73C5aPG3z2K9CVp8cXrMxQQ39AM8JrfCeNYXL5OzNmeDRGvB9sWV9bo4NH20/ueZN9Mc0Q9qxY/spzMpMv1c+EVYfXAOyS0M4XLNUq4Qno33IOKe8NSY328E4IQHALWFOxLmDHfPj/5q35sz7gqFSvQGK+YMSU/Z9T2NK/5eTnLtv/GNH84GcT2oJJFqZJea0jjwXFMkd7WqMtBp4cO3pFD55oy7CV/vHufzEBeROnPnwggeLU3SR12cifOQKzh871HXrH0j1QmXAwP2XhyKTui7o7f9gjHavbfqJdqLv3uOyan1//XXpIgse/Q8LRQKwSu7nyEt6wkkSMi1fm7X84Tcjaw6MCej2BwHpe9kcuGL3z9bXqeHrlAfjuY1RD+X8XRhLJ45dqf/L1cJXXomu9Q0Od+S091LwizQ5+LdP8SsMACg3lAAZpSutvSbV8/e+OQQosAMawv+ntp8xNq4gZYPbGrR3HZk8rTPX+FBqsbGpD54y5EfVwTTlW2tbtRZdXDOc7ue58Fgdher6ovv//LNq2d1taW4jtScu00V+Y3U0ZQR3kJOT2PVBrNAMyM8xgO51T6qrNd965cZ6Ie+iMux+fL0aGa2dS3F+ZuwEehzGpXV6S3dNx/9AB1dSnT96J/xrDfj4KXAv27743DQpbDK8JXdz2AJCfXhZFlD9HOZFl4gcMObv8zMryBxPr+QKM4/OF9ge/as6kad5fvn0TXZIQAAR6EAzILh7vkx2/dtmXsTqwIzY/rAzMSdu2kM/t5Mcxy4ZS2NcyazaGFQStLO3TMHZdD1geGxnv6b1h28FMj1nhEIlMsnRcdv34PgL7Q/w4uJL6+KyX7RIJFqXEzk/ISc4bEoADNBrhAeuBiIfuiLd/6cUoYsVJ99fnJsiurjFxKpxqqDc1C3oN2FBLc/bw5AP0BHX54ecyaWzakpcyuMN/8+DQeC9kv+4GXcPKgLc4Mmsh8eZThGnNAg0Xrv6CQCG8aDkdN1zdo305xYbMBbv8zAZDAAACgAs3UvKP1i8cVrH/+EKLBKqWLF321HJk/4ZMn9ElOud46NSX3wlj+PbjhqotdMywe2BX/nfPUiD26wsOIvPJG+DunnA+FR9ctJrg0SLa6fBg/LTFI4PhkXVxy6EiiRaqAfeiet0OI3LHZFh1aZ6E3VB6k/PT4uq9gMva0KG36djllhoSOFQvD6vgUsjpJZ/9NMHtwUEWjrH1MKqwzRD+qA8AcfTCHGIX/e9I/KtiWqSZX1uncyHXjQt2HsjbUKi/H84wZGAQIAoADMqhEeeW1RYKwKrAq0B39vpfMt+DtrMIK/j2sL/sYh+AtPoq9NegFYn+whC7yZPDkMs0AzoqJO9/hdX/RD72z9Y4pMjvt8elxNdlHpLHxZxWY7Q0ein1Wksl73/aMT0Q/wxF+Z9T/NZGXTf932x72EitQ1a7N1WIFhemQ/mhmIW3CMuEKpFGz5fSpRTQqP9eDHnXxYDDs55uZWzTWHZuPcBgCgKAq5Cpa1RYFnB2Ys3Tc/swgD/+lhrCv58sULNJZ+m1o0Pz0xbkfoKB6Ufm1M6vcvD6Gx9FvdqLPtyGQelH4pinK2rD60+jRKv/D0pwjSfzTpmu1ARc/VYTwqAG+ddxNXBAP2XRj60pgE9ENP3c5wIHyucl1tqYtltb64RU/cqiFSyOTCyjq9nHLjmiYxmQ1+96/JswZnqGjI5vtHJ0rlIsJPKoFAaW3cYKwrMdFr1tNpbZWKaht1qhvFpbX65Cf1f7466K2Zd7z6YeIleNw/d/s/PyJ5/tBUZu8nNd/5cwo6X3VOR3lfTXYZ3/8BuoLfFGSvm9DPtB7HiENupDldTHCbPOA+Ie0JjvLmR8c+KDVJLbDwsStneLsHLgViNggAgDYoABNhhEde7Fd7PznOkxIju6YFZP24ItjOjLYqyK10x6X75vNgzmeKohYGpexfEULXnM8URZ2J9Vh5YC4P5nwWCJTLJsbsePmcPuZ8hqerl2iT3DwDcYuhDrkjzaOybYv5sgDPvft25XV6FoaNuChULSLLPuZBv8EuReiKHvnq9GgCW2Vp2DhzUMaswIxBLkX2pnUCwROKqQWVhheT3E7e8zkX707ULXFaocXxCN/nRiTT/snR2bbHI8hNug9xLZwakDXcI3+Ye8ETbyBlcmF8jk1Elv3NNMfwWI/mVk0C90ImF/7ryOQTm//ClwN0tOnXadMCsnS0mJus9YezQQWVRL+VFgkVfvZlQ93zLY0aTfQkxrrNWpry6kadmkZxdaNOQo511H1bwu+K3zkyOeLfB574QwO80dSiSXLz7AgemAtP9P25IEIKwM2tmheTXHnTsWExXgwXgJtaNLcHj8YpDQDQBgVgUrRFgWcNzli2H1HgXkLwtxO0B39rmsTv/DmFP8HfVafH+SL4C52RK4SEJ4BpHPiiCqE8mupQrhCejXN/ZWw8rgsG7Ds/9NDq0+iH7kvOtzwT50FUk2xM6rfNv7F8YrSWhrzL77HXx8W+Pi42rdDiX39NIir98NnJcc8OT6G9nPDBsQlK8jJMIqFi0aikLXNu+tqXdfEwKVIEuhYGuhaumxZR16x96HLgjpCRpbX6pO1RcLRXVLbtENdCfEXAY3IrjL8JG/GvBdeZ2Vx1o8724FFkdoWWhnz+sNQl42KDPPI7HxQrVwiT8y2PR/geuhRYRuQa29HZtv/cVcmoHSBHYyvRq2j3M0MBmGPOxbvfLzF1s65ivSWXk1waebRIfHisx5a5jM6e9ePFISU1+jilAQDaYG0wsoz0zIv9ai9WBe6FaQFZCTtoXvF30NY1WPH3ic7EevhtfIM3K/7Gf70H1V/oUlWDjpLsecZsyX7LEMKXaazahLK0mpEa+vuOX1WDDvqh+74JG0nUl9WCYanp3363duq9Lqu/j/K2LT+5+a/f1p0Qa8oI2ZGUfMvLSS70fmZCrvWFBDfSTqEBjiV3Pjv469oTXVZ/H2Oo07Jx1u20b79fM+UeacE7pVKwI2QUvh/gib4KHs3Ym+LvwodXNxL3o6YhUrw959aD3d8cWf/PJP/sLqdEEgkVAxxLPn3+cs6+nb+sPWljQuJUt58cH0/4rTv0EckVMoFAaWeCAjDHKBSCPeeHkdCSYH49ON/NtK+o02VsczK5cGfYSJzPAADtUAAmTlsU+NpHh91tKtEb3WGkK9m/PCR82+90pd+aWjS3HZk8/uMlWcWcj2LbmNSffvvI0Q1H6Zr2uaZJvOrgnNlfvcSDaZ+dLasvvf/L/uUhmPYZuiOT+C8EH7syYtv2oNQkOd+ST+fDxQTXVpkI1wUDmls1f746CP3Q/Z/pY3f6k9Oe9565dmzD0V7/zr44OuHMu78ZiEmZ3H433a8Fd4aOJK0+8cLIpNufHQzsQ1LWSFfyw9LwYxuOklO8b3Mq0vtBqQm+JaCjRonW14yMD2iUaO29MJS03fe2Lb/16cEvX7zQizqutobs5THxiTt2E5i1TSu0CI/1wOnNY4VV5L6RcDSv1cNLBg769drAFhnLk34pFIIwHk2dRVGUXCE8F+/O2OYuJLjxZuUpAABaYApoQo30zIvbjlWBu0b7ir+3MxyW7pvPg9IvRVELg1L2LQ8x1ceKv4/Dir/QC5nF5oS3cKBTMbFt419etl6ifT3FmZBlonjvx4tDNsy8g8lRuuOvm/7kLMK6bGLMx89d6eOHjPXJ+f2NEwt2LiLhfvhMrEdBpSFdt50FlYZEVespilo0MvHXdSdFQkXfP2rBsFQdrb+f2fEC6y9S28kVwu/ODP/u9TP4ougmX/uyxB27e/GHNU1ihUJQXq9XXGXwoMwk5kG/iAyH+Fxrknf2wKUhW+besjJqUOlWfr42qLJel6gdnz4w85+NR/u4BLKpfvNfbx4b7p6/8bdpRA1q2Rk6ksZJsIA0OeXkjukZQPBzWfd525aHbP2j+/++sUWruVWzplGcX2l0v8Q0LscmIsOe8PXCH1PbJL6a7DwtIIvFNtzNsidzav0+vg14aUwCM9v67UYA17tLJFT4O5QOcC7xtSuzNamzNavT0ZJqacj1tFl7gWlIzHhcAOgFFIDJ1RYFnjkoc9n+efyoR9LLSFfyFa0r/ja3avKm4m5jUr9vWejswHS6PhAr/gKkF5BeAB7gVEJs20KieThhclisBwrAzMguNT2f4D59YCa6oks/XR1MSEtGeOT9sCSMlo+aHZi+Zc7NL0+PYX2n5ArhX7f9355zi5ZP+/naIKmcoIkEFgxL/WUtPdXfNtMHZh7dcOyZnS/IFaRMOvXHjYAvX7zYx1oXdMlYV0JRlKl+s6dNxTjfh0vGx1IUlV9h9E9E/x8vDrlfYkpgm5taNL8JHfHVSxdUtwmFQvDdmeFE7fWUAfePb/qbrrD++hl35QrB5t+nkbODN9KcYh70G+xShKuSl3LLjYltWwDBz2Xdp6Uhd7Gq7ssnyOTCiCz7Y3f6/3O3P1eKmsFRXuwWgEOiePjgfDHRtVUm6tFyML1T0yQO5eybB5FQMTXg/oujEib7Z5sZNOFLHgDogimgSTfKKxerAnc0LSArkdYVf29nOAzcwp8VfxN37Kax+nsm1sN/0zqs+Atq7na6I+HP59625WS2rapB5xbZvdc7YVgGmEEEzplJoLRCi9iHNiS0RCRU7F0eSuNbnveeue5qVUXCrv15cwAtn6NUCn69NpCck8fJouanNac0RAp6P3Z2YDpd9XJa1DSJT0V647uCFfbmtRtn3U7b9d2f6/9xtqwmsIWHrwxualHhDArXUp2JmoR8qFvByc1/0TtV+4ZZd7bOu0naYcXVx0tKpSCjkNzhuQGOxThGFEVpiBSjvHK/XxKes2/ngZXBHv04sM5daIwXu28FQ2J4eKNS2yRm5oXAyXs+Ein3om6aIvmyiTFZP3wbuvWPF0YmofoLAPRCAZgDdLWlXyy+ePXDn7AqMKWCFX+bWzW3HZk87qOlfFrxl65pn9tX/C2sMuR652DFX+jjtRD1wJbkFg51K2BgRG3vnI3zkMl5eL+RU27Ms4WNSXYu3h2Ld3bpRIQvIS1ZMiHWz6GUxg9smxeHhF1LyrPKoGNFgGspzg/LSDmlhULl4TWnVLTW8ofPXh3gSFAQ6iesKc72yfbCyKTEHbvfmB4hEJA1vrm6UYeuER5PPveuEHTu6WhJf1l3UhVp+I+fuzLImaDS19+3/chZGQFolF5kXtMkJvaLLsgzH8foUdoasqUTYpJ2/PDNq2eNdCUkN7W42iAy247FEzuziJ8TQIYysrAxk4sN02WQc3HEFz/+uCLY0bwG3xUAoJI7E3QBVyAKTFHUVBUEfwdtRfD3yc7GIfgL8B/XUpwJL2FO9s8mtm28nP+5DULAjFEoBD9eHIJ+6NzJez4kNENLQ/7hwqu0f+y8oWmEDIUMp+MF1h+3BpBz5iybED3O56HqzofDa06R8/xyLcW5oNIQXxfs0tWWfvvamb/fOqarTdZ03HsvDFPRJ9c0iU9HERTq+nzRJU+bClV8sqZI/vPaE9oaMkL2tLZJTMiPI9DrXqYdsW0LcCyxNGzEMepIQ6R4c8bd5G9+GOtD9JuZG6lOrD04R/F2npJw1ReAFQrB9VRnbnXLK2Pjb312MMCxBN8PAKA6KABz7FG5LQrsZl2lbvveFvw9o4LgLw+G16ko+DvrSwR/Af7jr1v+hLdwsj+hi9G2yDQuJLjx9cQIi/bE1cGYn68NQoinE9mlpgm51iS0ZHZguo1JPe0fKxIq1k27R8SFH+PRx0+QyYWhxHx7aGnI351/Q6WbGOhUPDcwjZD9VSoFp6NQDSLCwqCUM9t+0yPpFj0x1yo6WyUzvoREeZHzE+bnULpuWoTqPr+/fdkb0yPIOax/3/HD5cY/19PILfNMHnAfB6gT/UzqL77/K2nTxT8q8j5rU3/xcgHg9keV1AIL1f6I51tV1OlyqE/enHH35zUnyRkyBQB8hQIw94zyyo3bvketosC0B3/vZCL4+1QI/gI8pqxOj/AMq4lec6BrEZltu57iVNeszddz4162XVmdHq4RZlTW6x693R/98DQX4kkZabFsQoyKPvm5EUm0L1LbCxGZ9n0s5NxIc6qsJ+X91Mtj4u3Na1W9lXcXXCdnvt+T97AMMClGe+ee2vyXpoigNSz+UM0s0Cfu+ZKzj+/Ov67qNwkbZt1RxfzSvXM50YXH96LqSSoXhcWQOwpzij8KwF0QCRWfL7q469WzpK0F0CaKpSmgS2r072Xb8fi4h8eq9rK9muTCod5YNDJx5yvn8G0AAAxAAZiT2qLAVz7gfxRYRcHfsR/yIfhrbdxwajOCv0/mZFFz8b1fEfwFWvx6bWCrTERyC+cMSRcJFWS2LTiaz5MkKxSCs7EeuEYYs+/iUHTC01xKciWhGfbmtZP8VDUjvaVh44T+D1jfxxaZxr2sPr2eOxlJSgJVKFQyE8EZ5Fw8lZhE1K10x3KM3SHGRL/sna8S9AL06G0/qZzmu756ifalRFdCdtCrX8UzQakMPKguGR9LyC63yDTO4G6NX64mO1c16JDZNgvDxpFeeThG3bF+xt1dr54lsGEFlYZF1QbMbzcsxpMHGZXOd1Cln387w4ErXeFpU7F/RQiZAyAAgH9QAOaw0d48jwIj+NuJhUEpSTt/mDMEwd/HtQV/E3bsHk/AO2Lggbpm7Z2hIwlv5Ctj48lsmFIp4P0quWGxmAWaOdHZtn0svPGVTC68lkLEXIjTAzJVel86PSCLhN28kebUlz8nJ6492ivH1Yqh4aTkVIPkCuFlTmVEeG/NlEhy7tvL6vSuJtP8dXo+3k0i1SBkBzfMus3MqMGNs2+T82r7dBRy/7zyy/WBxLZt0ahEomY1INwb0yM2zLpDYMNislmYBTo4muffVHcz7VU6BU5qviVXumL3sjCEVQCAMSgAcxtfo8Btwd/wd/6gecXfD5cg+NsRgr8AndgePJrwnJCTRc1Y7xwy2xb70Kag0pDfZ8jFBNcWmQauFMbsu4AQ8BPE5djUNIlJaMnUANWmPCeoLF7cI1F9eC34sMwku9SUkDPnhZHJjG1r5uAMQ50WQnacnDgmUBQlECj3LQslZ8Zg2icvuZhIypgPbQ0ZA/Hf9hvUkZ6k5CCvJLvwO1enVvIqjU5E+BLbPGIH5hLrqxcvjPbOJa1VWSVMvzlskGhd4fvoNLlCeDbOXUUf3iLTyC4z5UQ/TAvImoC8CgAwCAVgPmiLAr8xPYIf00dMDchK+HrP8knRdO3OnUyHwVtWbw8eLVdw/oRH8PdpEPwFVcgsMvvuzHDCG/nymHhiv/xDo714f5LUS7RvpDjhYmHMP3f7Y+7Wju6SMeOZpkiu6tcZvnblFoaNrO9pQo51r/+WnOyppki+YGgKY5sTa8rmDU0jZN8vJ6EATBZ3m8p/LbhOSGPCYryUSgGt5xspV/3UgfdN9JoZ29zzI5IJ2fHKet3Yh/1wofHDt2EjZHJCX+z4O5YOdCrGMeoRkVDxy9oTRroSolqVV2HE8BYvJBA0V4QKf2FVNntWRqEZsd8Mj9lIZOodAHgMBWCe0NWWfvvamXPv/uZgVsvdvWgP/tqb07MX7cHfjGJzrh9iBH87geAvqIJULnp598KmFk2SGynWlK2YHEVs8xgrAGuK5Cz+/IXGYBZo5kikGj9dGYR+eMzdLHsSmjHUrVDVEU+BQDnQmf1Xq4VVhmW9HYhwNYWUUtC4/g/NDZuY3OJzw0mpBuVVGmUVm1FAkrdm3iVheAdFUQWVhjEPaCsWZpeaPiwzIaSTF41IZHJzC4cna4gUhOw7Jn7nh6xis/0XhhDbvPUz7uIY9YKTRc2Hz14lqknMF4CZnP/ZxaqarY69kOAmlYtU8clpBdyY/9nevBbxXwBgGArAvDLJPzth524as7NMmjLgPr3B37tZ9gj+Pg2CvwBdevfIpGg21v7pkVfHxfUzqSezbbkVxvG51sxsy9+xdIqKJ57tRDiWAWbWgUtDePDLTq+IDCIKwINdCxnYCgkFYIqi0gosenmDSsbBoihqIuP3TqO9c8hZGTEiy54CkuhoSddMjSSkMRfpmyS8j0uG00hTJJ8+iNFl1C0NG4d75BOy+9eJORDQF5t+m0bs2isOZrUvjkrAMeqd1VMiiVrYLq/cmMnNyeTCM7EejG1u8+xbbHVsbZP4ZpqjKj75YbkJJ071eUPS+DF5JwBwCF6f8Y2hTsv+5SFnt/3OoShwW/D3zLbf6Q3+jv1gKYK/HfEs+HsBwV9QjR/OBn0TNpLwRmqIFG/PuUVs85ic/3m4R95Yn4ds7WlOuXFSnhWuGiY7nMlXJOQrq9PLqzQioSXMTHs4wKGEhJ3t3Tq+xdUGuRXGhJw5YxhfP15f3BroUkTI7kdk2eHbgzSrp0QSshLw5WTa0qIRmaQMNRjsUmQgZnodbua/Z54mMsuO3pm9gXk/XxtE8rDLTXNua2nIcZh6R0tD/v4zBIWAGb5bu5XhWNWgw8y2dLSkr46LY3HO7TDVzJ5VWsuNRYLG+uTgegcAhqEAzE+TB9znShQYwd9OLAxKSdyxm8bg77l49wGb+RP8jd+xB3OngCr8dj1g42/TyW/n4lGJzpbVxDYvJJq5FzTDPfLZfZQKwyzQzNp7YSg6oV0SU1H7LjGTzXUhIyDSuwmE790npehoIG4ZzEYtdoxvDiE9EIkEMHksDBsXj0okoSV3MxyaW+lZBIScAvBYNq4+ct50VzfqZGDidy5Lzrdc/9NMYptnY1K/dEIMDlNfPDci2YaYqa1qmsRMDhkJiWJu5PQQ10KxpmyEZx7PHpxLa/U5cZ4PcS3AxQ4ADEMBmLfIjwIj+NsJa+OGk5v/OrrhqJkBPWuztQV/Z37xckElf4K/zI9hB3WwPXj0kn3zFQrSIwKGOi2fL7pIbPNqmsQ3Up0Y21yQR76taR2L84aFowDMrIuJrli/s10CGQVgHS2pt205AxtyIWPgS0GvUteRxBSAh3vms7I25zj2Zmt4TGKelUSqQQFhnh9BxELREqkGLYXb2iZxaqEFIX07no2rb7hHHjmZyHuZGPbBVfkVRrO/eLmpRZPYFm5/6TwhExhwl5aGfPnEaEIao1AImLxJCGFw6qwgj3yK1dE52aWmaSr4ZSyp5kABWEdLamtaj4sdABiGAjDPERsFVkXwN3Arr4K/c4ek0fWBCP4CdEe9RPv1vQu2HZnMiQniPnz2qo0JuQ8P5+PcpXIRM9uyMal3sqihKIrFWaDvZduV1enhImKMUinYhxDwfyXmEjEDuVe/CmYKimYGTSxOW9euol63F39FznTxgYws2NzRIGdSpoCWyYVpxFTmoN1Yn4fmhk0ktCQq27bvH5KQa03ImEKRUDGcjbyXrraUkIXbKYqKy7HBJcZFRdUG0/79KiGrXTzliytn0cgkHKm+e46MMUBtGBtwkJhr9bCMufVrh7vnU2zPz6+KEHAZFxLAjua1WAAYAJiHAjD/tUWBaQzaktYeiVSjLfibXoTg7+NqEfwF6J5b6Y6Dt6z+7XoAJ1rr51C6bloEyS0MjmFwFLN7ftv/weJAZoVCcBar0jLr12sDGyVa6AeKojLJmPjE2Yq5YK6NcQPr+9u7pdqSc0kpAPe3K2Nlu+aGTf2IGb2UlIvl24mjIVLMGZxOQktiHvSj4RwjZsyHq3W1vriVlU37O5YQ0gmJuOQ5KCHXevi/VpL8qkdTJP9+SRiKOrTwti1nZjqZ7mCsABwS7c3kfg3zKKAoarBLEVs/ChRFqWIx77pmbfLPcGO9ZlzmAMA8FIDVxZQB9xN3sB8Fpr0ZEVn2g7esQfD3ic7Fu/sj+AvQldwK48XfPzvuoyXZpaacaLCWhvzw6lOsTN3ZTVK56FycO2ObG+HZXgBmc2bRUMwCzayaJvFft/3QDxRFPSg1IaEZrlbMzcFuacR+Abiy5wngmiYxOQGm/g6lbG3aj5xqUJ41BeSZPzSVhGbEPuRVAdjPoYS9TZcS0glJuOQ5RakU7L8wdPQHywgfy/7eM9f725fheNFl+sBMQlrSJGWsAMzcyGlXqyorowaKojREChaXAb6TYV/Zq6l0OtEi48C6HjramCgeAFiAdY/USFv0dsHQ1BUH5uZXGDG/9e0vnV82MYau0q9EqvHxP+N3ho7kQenX2rhh77JQGku/tU3irX9O4UHpl6IoJ4uag6tOo/QLqpCUZ7UrfMTft/w48bTQ7ssXLwx2KSK5hTdSnWqbxIxtrm0dI4qi7MzqXK2q2CrkX0x0a5FpaGvIcGUxZt/5Ycsmxqh5J9RLtMvJmH6c2QJwI+v724v3VuRMOKytIfPoV8nW1v3sS8/Hu5PQD2kFmAKaRCO98oRCJeszJz8sM66s1+3jtEzkhP5ZrML2tyelAFzVoFNQaWhnVoerjHwJudZv/z71cpIr4e0c3//Bu/Ov43jRaPh/n+xY19LKxHpG+RVGsQ+Zm50+6JHuHeuTcyHBjZW+lSuE5+LdXxydwLnj1dcdlyOGBwAsQAFY7bQtvrv1zymHLg9mbJ3LKQPuH1gRTOMc1BFZ9kv3zufBnM8URS0MStm7LJSuOZ8pijoX777ywFwezPksECiXTYz5+uXzmPMZ6FVUbXDynu9ft/wisuw51/hZgzPWT48gvJEh0cxlYbU1ZI+uKDnWJ4etAnCDROt6itOUAfdxiTEmPtf6dobDSPZGr5PgYakxIS1xYXAKaHND9gvAdc3arTKRloa8+3+SW0bKwfK0rdQUydnaOjlxwJwyEwrIY6Qr6W9fxvpsvUqlIO6hzST/7L58yH1iZpfxZzH0T8wlT1HU/VIzFIAJF5Fl//3ZoH/u9idk/exOWBo2/r7uhFCIyZ/pNMy9gJCWaGkycacUGuPF2ItZ6r8LALcZw97ySRRFhcV60lsAbpVxoABc2aCLaxwAmIcCsJo+VDMWBUbwtxNWRg37liP4+2SO5jUHVwVP9MvGBQt9V92ok11imphnFfuw37VkZ3IyWD3laVPx85qT5C8xFcrgNFYDnYvFmv8fuh3r8/Cnq4PY23FPFIAZtu/8UHUvAJeRUl1wtmQuAayjRUTUvqpBx7onqxHnlJNSbnRh8GA9YevW1YT0Q26FkVIpwMKNBBrhmUvCcq3RD2z7UgBukGgRMkMDRVHetqxNUWuq32xt3FBSo09CP+SUGlM+uMKI0yoTxT7sdz7e7VSkDzkTp3dOW0P211vHbIhZ1Z43bE3rTPWbqxp0WG/Jo8+YqhPC7CpCQZ7/XwAOdCnU1ZYyttTxY87Hu0nlIrrGIyqVglY5BwrAJJzYAKCGUABWXwxEgScPuH9gZbCDGYK/T0B78Pd8vPsKBH+BLz4+Nv5zjTEURdU09v4WualFUyLVKK3VZ+uphvaH4bPv/Waq30x4O+NzrXMrjJl7iP3fWcLGsjqQOTzW84el4bh+mXTinu/O2nNWBKwIy5aHxEQYbUyYOwrMvJLrkqyH07jllBsTcrAcLWpY3LqTBSkF4OZWzZIafby+J9BIz7z9F4ay3oyYB31aBpicS14oVDpa1rLYAEeLGlIKwOXI/fdYbrnx8Qjftv9b0qrR3PqfB6u6Zu22QfkyubBeotWL39B6iXZ5rV5OmUl6kblEyqWXk0Kh8td1J8f5PsTpoZr7hBoS6mTaGipPANc2ia+nODO2R/riVr9H5uTX0pAP98hja6L12ibxrTTH8fSt9SYUKOVK0qcNKKvVq5do41UnADAMBWC11hYFnj8kjfbCIYK/nbAyati7PHQegr9PfDuA4C9QFEVRN9Kc0AmPMtFrPvPub47mNeQ3lcn4L9VhmSh781oXq+oHpey83cutME7MtfJ3LMUZy5hWmejQ5cH/WqC+q6+xdbZ3vPHT0ZIytjlCCsCCHr5lIqdaz24B2NqoQVtD1iIj4jk0p8IYBWACDXQuJqEZibnWfTq7iLnk2y46FhvgYF5zL8uOhK54iAJwzwVHeQdHeaMfHvXta2eeHZ6MflARJ8tqJpfFfRpt1d9tnotzZ3Li4kDXQg2R4tH/MsY7l8WVtkNjPOkqAAsESj1taV2zNuHntlwhjMyywwtPAGAYlh8HampAVuKO3csnRdP1gZMH3E/YuXv5pGi6qr/3suwCt67eHjyaB9XfhUEpSTt301j9PR/v7r95HQ+qvwKBcvmk6ISde3AzBPAYU/3msG1/9Lcv40Rr2S0AU2yvZhQe64kzlmEHLwf2NIjJJ4S8y7YyZjSErU1KAbhnN7q5SAC3PX8KlQ4WtYR0BZYBJpObdRWLy1Q/cs0a9eX3hZywKeuxe3KGMOYQsxY7cJRAoPx80cW1U++hK1THwrCRhGboiVU+tDE4htEH5xEd1s3h04OzgQ43YrV3M+1xjQMA0w/g6AKg/hsFPrPtdzuzur58jqFOy/7lIWe3/U7XtM8Sqca2I5NHf7CMu2t2trMyajix+a+jG47SNe1zbZN41cE5M754mQfTPjua15z/12/7l4dgLhSAx9iZ1V376HCQez4nWltQacjkeG0Hs1pb08d/tsb5sDkbW1gMCsBMy68wCmX27QlhF50RCc2wZrYATEoCuCf/WKEQ5JUbEXLasFsAJqEB7VANIpOmSO5mXcV6M6RyUV5F7y9bzPr+SAOIGfOBBDD0gUioOLAyeOu8m+gKldLTbmW9DfriVlVPnNAqE52Lc2dyp4Z3eKUwzL2AySl8HnO/xJTGN70G4lZOnN4n72EhegBgGgrA8P/6GAVG8LcTCP4+DYK/AJ3w6ldx89ODvhzJ/lIUFRrtpWRw6Z0gzyfUxceyuhxXZLZdWZ0eTl2G7T0/VG33vbxOl4RmWBqpZQG4J3e8xTUGhEx6TFFUx6EzDOvjkFMaoRpE7i2QbTkJzXhYZtr7s4uY4QUY89GuqJqgr2LgFrGm7PjGv5eMj0VXqJqutpT1NpjpN6l6E9dTnGubxEzetQ5zL3jsP2pryIa6FbDYzzSGgLmSAE7ItY7OtsVlDgBMQgEY/kdbFDi8h1FgBH87oaLg78wvX0LwF4Df5g5Ju/XZQbq+V5kRwmwQc/iTgtEOZrXOlqxNdahQCM7EeODsZdjVFGce3DD0glIpqKwnogBsZchsAViLiAKwUNiDAnB+JSnxX6FQaabfzG4bLAwaCemNvuQ7QaW8bCtIaEZ2aV8KwMSsAczsJA1PfCImpCuImowBOMTFqvr6x4fnDElHVzDgsXVqWWFmoPI7JYbnf/awrnziO8mxrM4CTePsWfbmnHlt8uPFIbjMAYDRH1Z0AXQ0LSArccfurX9O6U7AdPKA+wdWBtNYooi8b7dk73x+vMldGJSyd1koXaVfiqIuJLitODA3n/vvqgQC5bKJMV+/fB6lX4COtDTkX754Yf30CLomVGBGXbP29RQnJrcY5PHkmbHH+OQ8ZO+ta2iM12vj43AaM0mpFOw7P/T7JeHqtuN1zdqtMhEJLTE1YLSgaG3UMNiliPW91uzJC0pCSvUURZnqN4uELL9atTQipQBc1aCDr1Aysb5sbZsHpb2/nSit1SekM1lfUNOCmEueoqiSGn13m0pcYtB984emHl592khXgq5ghqSV/TfVZir+2lQqBaHRjBaAnzh1FsV2Afhupn1Vg44pHQMTvcmYOKQ7frsR8NbMOxya5g0AuA4FYHiytijwvCFpK36cW1j15KSpoU7L9pfOL5sYQ1eJQioX7Qob8cHRCVK5iOsdaGXUsGdZ2PyhqXR9YG2TeOufUw5dHszk9Koq4mhec3BVMOZ8BngiT5uKX9adZHcupt65kODG5Kx6OlrSgc7FT/yfxvk8/PXaQLb64VKSa4tMQ9WrRsFjfr8R8Pnii/ocWfyJLoTM/0xRlJEuo8O5Jg+4P3nAfW4drMp6UgqNJKRvWS9HPXJcdCkgEiHzhPclAUzOVc/6kAtyQv8URVU14KqH7tIXt36x+OKaqffQFUySSNl/U22v4sUyYh70Y3hKvydOnUVR1DD3Am0NGVtz48vkwnPx7otHJfb9o7y4UwCWyYWbf5929t3fcLEDADMwBTR0ZlpAVuLOJ68KPMk/m94VfxNyrYO2rdx2ZDIPqr8Lg1ISd+ymsfp7IcFtwNtrD14K5Hr1Fyv+AnRCrCn7YOHVuB17uVj9pSgqOMqbyc0NcS3UFMmf+D+NYXUgc4NE61qyM85nhtU1a/9xI0Dd9rq8npQFp431mnESdo6cQiMJxVdLFIChK/1MiCgAP+xtArheok3OWrOsX/W62lI9YkZoVSL3D90zc1BG4s7dqP6q50+zi1WVSj8/hNn4L0VRwz3znvjfdbSkQ9wKWezqUJqmwvbsV8Ghk/xCghuLA9YBQN0gAQxdMNaV7F8eMjcwfeWBOW1RYAR/O4Hgbyf6mdTvXxEyc1AGLiuAjqYFZH2/JNxVxY+aqtM2epfJLQ5zf2qZ3MmixsmiJqfcmK3eCIvxmBqQhbOaYfsuDF01JVKtdrmKmNqVkQ4WdOjqYDWSUnKgcWmSXjMnpgBcL9GSykVPG04ELCIkAfygtytKkBP/pSjKnICr3tKw8aFEi4TewLAP6JKzZfW3r52ZNRgvLthBwvz5LpaqXYYglNkFgI10JT5PD8iO9cm5le7IVldfiHej5U7M27ZcS0NOyOI43bHup1mBroWYCBoAGIAEMHTL9IGZ8V/vWTQycZJ/dvyOPTQGf6OybQdvXc2P4O+ikYlJO+kM/p6Ld/ffvI4fwd9lE2NSdn2P6i9ARxP6P7j20eHwbb9zt/pLUdStdEeGV1Ic/pQFgNuwGwIOj/VU51Pai6Xx18n5ltdTndSqq8tryZkCGgvjdYGckoOZQTMBbWgipDeUSgGWASaTqX6zrraU9WbUNombWjQ5fckLBEpzQ/avOEz8DpzgZFHz44rgtG+/R/WXRcXVBqy3wdlKhQXgh2UmiblWTO7OELdCofCpr3DZXQa4pkl8K42G8rOutrTz9wOkaWrRfHbnCxV1+EkCAJVDAhh68BD+x/rjNH4ggr+dqGvW3vLHVH4Ef21M6vcvD8ETFMBjBALlRL8H7z9zbZRXLg92h/lprII6fcAb5/Pwt+sBbPVGboVxYq6Vv2Opep7bq6ZEvvXLDFY2vff8MHZfYTCsooGUKaANdZEA7gI5JQcDAuLahiRFxivrdayMGnCKEsjCoDG3xZj1ZpTX6zlq1/T0r8iZoUFPW0pCxp2cnwkUgOGJXK2qts67+crYeMwJwS65QphVbMb6c7pK5xNm/sF5hEdeZ4/V7vmaIjmLL2bDYj3G93/Q98+Z7H+fW6OBM4rNZ3zxyqUPfjbEXEoAoEooAAM7EnKtl+xZEJ9rzYN9WRiUsmdpKI0Dqy8kuK04MDe/wogfnbN/RYgJlgYEeIS5YdOrY+OWTYj26FfJm51ieBorV6uqzt/Xj2G7ChgW46W2BeBxvg+9bcvTCi2Y33RwlFdRtUE/k3o16eq6Jm1CWmKsix/6LpCz6iQJ75gMdFoJOjSoBpHKVL85t8KY9WaU1eo5mtfgkudHMyisAQz/S1Mknx2YsWJi9ES/7E4iksCYh2XGEinLb6rdrKtUOrdNcBTjCwB3OnJaT9wa6FJ0N8uexQfnna+c6/vnTPLPfu/vSdw64WMe9Jv95UshW//EdEoAoDooAAPTEPztBIK/ADymoyWd5J+9aETSvGFp2hoyPu1acr7lg1ITJrcY1NX8Ts6W1Q5mtXmVrI2kCYv1fHfBdfU81QUC5eqpket/msnKPcbBS4EfPntVTbq6qVWTkJbok1TPIxM5cUADMftlGE2RXEdL2kzGCVyNahCpTPSJGFlSUdebuRYqG0i55AmpvBoQUwDGJQ9tN6uDXYqeGZb6ytg4a2NMAkGQ+Bwb1tsw0LlYdR9eWa97O4PRBXeFQuVQ94LO/80Y3xwWC8D3S0zTi8z7vorQYOciS8PGsjo9bp3zt9Idx320NOyd321N6/ANAACqgAIwMCox12rJ3gVxBNzS9R2Cv513DoK/AG3MDJpmDMycOyR9iv99PTE/ayQhUd4Mb3G4e9cL/Iz1ffj7jQC2+iQq27a0Vl9tpxV9eUz8u0cmN0i0mN/0ocuB7y64oSbT9zVKSCkA62jJKOgUK5fDExEyEauhTgshBeCGFi2cn2QyJaMAXN6r9flqGsXEXPJEhIpIGHrSproRBWD1pSmSj/XNmReYNjsw3c4MtRYS3c5wYL0Ng12KVPfhZ+I8ZHIhk7vjbVtu3NUPwVjvnK9Oj2axz8NjPPteABYKlS+Nif8mbCTnTvvEXKuR7y8/9faRgU7F+BIAANqhAAwMaQv+fnhsQquM88FfS8PGPctCFwxD8PcJEPwFoCjK3rx2lGfuCM/8UV45/e3LeD+fWGiMJ8NbDPLsugA8zofNArBCITgT5/H6uFj1vAQMdVpeHJ3w48UhzG+6qNrgdKT3s8OT1aGfG4kpXOloSfHN37lmYuLahJRhDHRaS2uJ6JCmFk2cn2QiJAFcVqfP6fOKkOgtOWsAk/NtDIz96gV55o/yzBvllTvUrUBXG3csRLtJwBquQd0YatxrzM//3J3dGeGVpyFSMFyZflRYjOem2bf7/jlLJ8bsCh/BxTer+RVGo95bvuu1sysmReF7AADoJUQXAAMSc62Gv7ti25HJPKj+LgxKSdr5A43V34sJbv6b1x28FMiD6u/CoJSknbtR/QW8ZfC2LbcybtAUyWubxLzPGRRVG0Rl2zK5RX1xq59918vrsr8McLSnOl8Iq6dEsrXpveeHqkknE1JgEAqV2hpyCjrV3ErKuFtC1t8lZ0FQVIOIZaRDRHS1vFaX0+cVKVNAEzMLDsZ8qBWhUOlrX+ZoXmug0yKVibDoO+EKKg3jc63ZbYOxrkR1BWCJVONiohvDezS8GyOnDcQtg5yLWOz2O5kOVXTMz+/Vr2KUVx5Hz3+JVGP1wdmLv38WM1UAAL2QAAbVQvC3Ewj+AvBSvUT7QoLbhYT/f7SzMGwc4lY4xjtnlHduoEsRzyanDY/xZPhLbIhbgYZI0eU/c7GqtjevZXFe/UtJrhKphlhTTafG9XMoHe2dezPNkflN30hzSs637G9fxvtOJiQBLNaUCQRKCjpFTjVIh4zwk642qkHQ1XcLGXPLl9f3ZjVBgtZoJ6Pyqo8CMLBBoRBEZNlHPLK4qaFOS4BT8RifnDHeuUHu+XxdoIejgqO9WX85NsHvQXeeNHvnSpIL82uCdLOePcY7J/K+HVvdLpMLz8W7Lx6V2PePWjk5ipUnULocve13I9Vp37LQ2YHp+E4AAFqgAAwqhBV/O3ExwW3Fj3PzKrHiLwD/ldfpnYn1OBPrQVGUrrZ0mHv+OJ+cuUPS/BxKebB3wdFMT2M13KO7g7LH+uT8cWMAWz3TING6nuI8NSBLbc/81ZMj2Xr83nt+2N5lobzvYULeYmP+5y4pFAKJlJTHLm0yRqVoEzM4BglgYhEygqq8To/T5xUhdXQxMb8U5MzHAKyoa9a+keZ0I82JoihNkXyIa+Fon9yZgzJGeORjNBvr/rw5gPU2TFPls1twtDfDu2Oq39zNtXXH+uTsCB3FYs+HxXrSUgB+bnjy5yfHphZYcPdCKK42mPf14hdGJu14+ZyNST2+GQCgjzAFNKiEVC7aHjx62LureFD9tTRs/Gfj30c3HKWr+lvXrL3q4JzpX7zMg+qvjUn96bePHN1wFNVfgG5qatG8muzy4bEJAW+vdXtjw1u/zIh50I+7u9Mg0bqa7MLwRkf0oAD8kN3+CY1V61mgFwSl9mPpkfXPmwNqm8S87+FGCREJYB0tGQWdIqrESEjBXkxQARjVIEJpaxIxY0p9s3bv7vdwyf/P0SRmpYAWmYZcgfdgQFEUJZWL7mQ6fHV69JgPljmt3fTWLzNupTvyYHo2jkrMtbqXZcduGzRECtVNa6dQCMJimH42HObe3ZENI73yREIFi51/Ls5dKqdh5kiRUPHRs1d4cEX8fdvP8603P/5nPA8m1AQAduHGF1Ry3zbiX1jx98kuJrgN2MSfFX8Td+zGtCQAvfawzOSHs0FDt60asHnd3vPDCKnl9Ow7LdGN4VibQKAc6lbQzX88lu1lgMPVexlgTZH89fGxrGy6QaL1+40A3vcwEsBcQVSJkZAyjJiYcQOYD5ZYhIwS6N3tGTlXPSGXPFG/FBj2AR0VVBr+cDZo7IdL3de/9e+TY7FaMPO+OzuC9TZMH5hpZdSgog+/l21XUqPP8B4FuXf3wdlIVxLgVMJi59c2iW+nO9DyUQuGpQ52KeLBRdEo0frk+PhBW9acjvLG2BQA6DUUgIFO7cHf2IcI/j6Ol8FfU30EfwFokJxv+cZPM53XbXz/6ETmHwv7IoTx+Z89bSrNDLr7texqVWVnVsdi/+RVGiXkWqvzub1iUpTqltHq3L7zQ3n/nNwiI+IVtpaGnIJONUkJKjESUlQjJwHcJNXCKUomQiYNbpT05volaApoXPIdr3pM/A5P97DM5IOjE53Wbnrj8MzsUlN0CDOyS01ZXLin3Stj4lX44BzlxfwejfDM6/4/Hu2dw27/h9KUkBYIlDteOScU8mRS97RCi2d2LBr5/vJrqc74rgCAXkABGGiTlMer4G/izt0I/j61cxD8BVCBynrdz0+OdVm7cdXBOaW1HCgDyxXCM3EeDG80yDO/R/+e9VmgmZ/piyh2ZnWzBmWwsun0IvOrKTx/SJaRMYmlSIg187ogaSEpAYxq0GNHB1lAUhESXW1s7V0CGGsAk9gM0o4OEKupRXPvhWHeb61/ftfzWcVm6BBVe+/vSTI5y7e1loaNMwdnqu7zQ6KYXgBYJFQMcSvswYMz2wXgcPqWTxrjnbNychSfrpF7WXYTP359+uev8GClRQBgGArAQAOZXLg9ePTQbTwJ/h7bcPTohqMWho20fCCCvwDQIy0yjYOXAr3fWv9t+AhaVsFRndsZDhV1TE+PNtw9r0f/nv1ZoNV7GWCKotZOu8fWpvecG8bvvpXKyCgACxQUdEpBETT+j5DKKznzwcoVmFKPUMRMAd2bYiHrlQzSulGbpAQwIb+eQD65Qng8wnfA5rXv/jWZi4v1cMXFBLdjd/qz3oy3Zt7R1lDVN1VGsXl6kTnDe9TfvsxA3NL9fz/KO5fd1GxWsVlGMW299OXiC04WNTy7WC4kuA15Z9Xi75+lsaMAgPdw4wt9lZRnNfxfK/kU/H0mKIWuD7yU6IrgLwD0Qm2TeNNv0wa+veZKsguxjQxlY4HbIA+OJYCjsm25Na037cb7PvTqV8HKpsNiPfMrjHjct6QkgEUoAHdBQVKJUVNDgWb8z9HBmmqkIiQz2tiixemrXnX1jB42g6DFAhQY9gE90SLT+Or0aJ+N64/e9kNv0K6yXnfFj3NZb4aJXvPqqZGq+3xW5n/u6YOzqX6zn30puwcijL43DPri1oOrTgt5N1ORUik4etuv/8Y3Fn//bHK+Jb5DAKBLKABD7yH424m24O+0z1/hQfDX2rgBwV8AVqQVWkz57NUtf0wlJ0fyqNAYpp9jjXQlPrblPfoTN+sqW1M2lwFWKARn4z3U+TQWCJSrpkSysmmZXHjgciCP+1ZKxtg7TAHd9fcASSVGQhLbQgEpp40SBWBSEVK5bJWJejEjCzlXvUikJKMZBA0VImpWBuCKgkrDxd8/u+i75+ol2ugNusgVwpd+WEjCS7M3pkcY6rSo7vNZKQAP72EBmKKoMfyaPWtC/wcfPXuFnw8XCsHR234Bb699ZsciHryTBwDVPnqjC6B3kvKsRry3AsHfJ+JZ8Ddp5w8I/gKwRakU7AwdOer95TnlxkQ1LLXAgvkFsYI88nsxhncM26sZsRKVJspr4+N6NP8YjQ5eCmyR8XaBT6kcU0BzA1FpM0KSEOQUgJEFJJaWJimZ0aaWHs8CLVeQ8qZFJMSYD1z1QJtjd/oP3bYqMdcKXUHLc+6aQ7MvJLix3hIHs9pNs2+r7vPL6vQi7tszv1/DPfJ6+iesL590K92hsp7ORabenX/j2eHJPL6ITkd5D3ln9ZTPXo3IsqcAAJ54H44ugJ5qD/7GPOjH9X1B8LcT1sYNpzYj+AtAhKhs26B3V14laTrosBg2prFyL+jFX43zZXkW6EtJrhKphjqfwAbilhdGJbGy6fI6vZP3fHh8S0bE4wQSwF0hKm1GSBmGkKIUhSwgwcTErBrb0PO1P8n5WiTkK5qcS57CxO/QN5lFZiPfX/HHjQHoir5olYmW7p936PJgEhrz3evh+uJWVT44ezI/7sTCsNHVqrqnfzXaK0fA6o2iXCG8kEjnmACBQHlwVbCvfRm/L6jLSa4j31s+5bNXb6Q54esFAB5/HEAXQI8k51si+Ps0/Av+zhmC4C8AKcrr9GZ9+RK9cyL1BTvTWLnn9+KvWE8AN0q0rqU4q/kJvJqlWaApitp7bihfe5WUNYBRAO4KUXeGxBSAkQAGbpyrFEU1t2pw97wSUgj946oHmjW1aL62d8Huc0Hoit4pqDSc/Olrv14bSEJj5gxJV/WLr+Aob+b3a5h7QS9KueaGTb525ewekdAYmt94GIhbwt/53cmihvdX1uUk1/EfLRn/0ZJLia74ngGARx4HALpHKhd9emJc4NbVPAj+Whg2HqU1+Fsv0V59cDY/gr+2pnVh7/xBY/C3tFZ/0XfP7Tk/DEusAfSRRKqxcOcLJMQZS2v172XbMX3LIlQO7VUC2KNfZT+Tep49x3LOAMeSkZ55rGz6TqZDfK41/7pUJhcS8sMqFGIK6C4QVWwQYQrox44OblBJJSDmJOnFaBuCCsCEXPIkDRVC7h/6TqkUvPnzjB2ho9AVPdIi0/j+zPD+G9+4le5IQnsczWsOrTyt0k00SrQuJ7Ewj1cvFgBuM8ab5dmzzse5S+U0J47szWsvvP+LDdvvBJhxI81p6r9fHfne8jOxHngNCwAUCsDQTcn5liPfW/7RsQm0/wwzb2FQStLO3QvpC/7eTHMM3Lr6wKUh/Aj+xn+9Z/rATLo+8HiEr//mdcfu9F//08yxHy7NLDLD1QTQF60y0aLvnjt2pz+7zQiP9WD+zaaPbbmRrqSXz7Fsr2YUHuuJp6/VU1kMAQ/jX3/KCFpgEgngLpBTYhQIlIQU1UQiYqaARhaQVOQUgOU9n2+fnBIjIXMvi5AABj7a+seUz0+ORT90R0Ku9SfHx7us3bjh1+n1Em0SmqStITu28aiZQZNKt3IxybW5VZP5vevFAsBtxvqy/OBc0yS+ne5A+8e6WlWd/9ev5oZNanLFRWTZz/7qpaHbVoVGe+FFBICa00AXQOdkcuE3YSM/Oja+Rcb5s8XCsHH30jAaS79NLZqfnhi3I3QUD54hrY0b9i0LoXHqm7I6vbWHZj8aVbyd4TBo65oPFl7bPPsW1gsE6MvX8mt7FjhY1Aa557PVhpBoNuZ/7kN+dJzPw79v+7F41PIrjBLyrAIcS9T51H1mWMomo2mltfrMb/qv2/5fvXTBRI9XS9qT8yQvQgK4KwRlAYmpwSABDF0SEHNkuJ0AFiAB3PHoIAgBtHn/6EQny+rFoxLVZ5cvJbrGPvzPvIC1TdqP/Yy2ykSNLVqP/n9zykzSC81ZeQTo/EvpwMrgQNdCVW+IlfmfNUSKQJei3v3taO9cgUDJ7oNGWKznOF/6g8i+9mXXPjo8/fNX8iuM1ORqjX1oM+/rxUPdCj557srkAffxjQ2gnlAAhs4k51su3Tc/OtuWB/syc1DG/hUhNM4CejPNcdn++fdLTHnQOQuDUvYtD6FrzmeKoo5H+K49PLuiTvex/97cqrntyOSwGM9Dq0559KvEJQbQOy0yjWd2LLr3+X47szrmt97Uonk5iYVFZUZ49L4APIbtgcwURYXHeKp5AVhLQ750YgwrOYmmFs1frw18a+YdPvWnkph36UgAd0muRFz7ceQUgHH6EkvA5VECCoLG6GDWd3KPDvDD8v3z3G0qh6i+lEjOt8q2I5O5/vvyw+vhL41JUPkdoEJ4Js6D+R0McCrWE7f27m+tjBo8bSrTi8xZPEAhUV47Xj6nik/2ti2/89mBmV+8kphrpT7fUZH37aZ9/soIj7xPnr8yvv8DfGkDqBsUgOHJ+BT8NdFr/mLxxeWToun6QAR/O9Ex+NsRosDQJY9+lQbiFk2RvO25Rawp09GSURSlqy3V1pR1/rcNzVpSuUgqF1bW65bW6hdVGzRKtPjXRSU1+s/vev7KRz9ra8gY3vSlRNemFhamsRrmUdDrv/W0qbAxqS+uNmDxkIXFeP5rwXU1v7SXT4r+6vRoORvJm/0Xh7w5465AgB8d+gnRq10hp1pPzsEipxTdi9l9gaHTlZjqvEyOBHCfL3kRQXNFoABMFz1xq5ZIrilS6Ou0UhRlpCPp/Om+LRvaIhU1tWg2t2pKpDx5ISmRajz7zQv3Pv/RyqhBHY77+P4P/BxKk/K4Wj8TCJS7Xj27agoTa9PcSnfomItg4sHZraAvfz7G5yG7BeDsUtOMYnNPmwpVfHg/k/rLH/w0b/uLtzMcKHVyJ9Nh0qevTR5w/9PnL6vPgBUAoFAAhidKybdcguDvU/As+Lt3WSiNS548LfjbEaLA0Ll9y0PG+dA2509Ti2ZOuXFqgWVKvmVKgWX0fdvcCmMe9FJElv2//pqkorGxnWBl/mczgyYP6z59V4zxyTnK6izQ0Q9sS2r0rY0b1PnSdjCrnTU4g5WZ0LKKzS4muk7h0cxXmAKaQwgqBZGTABZiCmjoAqengCbnK5qQa01IIQHMVc+PTNo067ahTotIqBBryXS0ZAKB0lhX0vdPLqnRL6g0KqgyTMm3jMq2jc62ZXewZl/kVxi9tmfB2Xd/U5OzYv2Mu8v3z+Niy/XErb+sOblgWCqPH5wpihru2ae1osb65By4NITdIxUe4+k5q0JFH26q33zpg5/f/HkG67vJvIsJbpcSXecPTfv65XNOFjX4jQNQBygAw/8+3CL4+3Q8C/7uXRY6d0gaXR/YneBvR4gCAzN0taU+duU+duXtS4A/KDW5kuxyOdn1TKxHA5fzwd+fCVo8KmGQczFjW1QoBOGxnszv6TD3gj5mN8exXQBWKARn4jyWjI9V8+txzZRIVgrAFEXtOT+MVwVgYlqCKaC7vvyVyAJ2OG0EpIwbUKIURCpy5mzoRUxcQeGqJ/eXggeP80yyMmoY3NvFRLt8KWFt3BDoWjjvv+8lsorNTkX6nI7yjrxvy7kv5wsJbn/d9l80Ui0WA140MmnbkSmsZFv7wtG85tSWIwMYXJQnlKUCcJB7nwrAY3xyWD9YYTGeG2fdVt3na2nI9y0PDXQteuPwTB68AO/pre/Jez5n49zfnnPr7Tm3dLWl+KUD4DdMeAX/LyXfcuT7y7cdmcyDH7+ZgzISd+6msfp7K91x4Ja124NH8+BxcWFQSuKO3TRWf49H+PpteqOn1d82bVHgcR8tzSwywzUIjHGxql42MeavN48V/rj917UnJvplc3RiWLlCuOrAXCYn1I24b19Wp8f8nvZlAeD/Psc+ZP14hcZ44eqb6PeArYkfzsa555Qb8+fRnUICmDsHC3Htjk+hSABDV8g5MPKePwCS88xIyFVP1GBfXPXEcrep3DL35p3PDiTu2L10QoxYU8at9m/8ZXpVg446HCkdLenyidEcarBAoHx9XGzs13uZrP4m51tml7Iwd6C1cYOzZXVfPqGfSb27DcsT9d3OcKhuVPnVtHRCzLWPf3K1qlLD79vmVs1Pjo/vv/GNExG++PUB4DcUgIGiKEomF24PHj3knVU8mPbZRK95//KQkK1/0jXtc1OL5rYjk8d/vIQH0z5bGzec3PzX0Q1H6Zr2uaxO77ldzz+/6/k+jv1siwLzo74O3KIvbn1pTMKF936N/WrvgmGpXCwDxzzo98PZIMY2FxLF0jRWHvl9/ARPm0rWp1++nOTCm9XOek0gUK6aHMnKpuUK4Y8X+TPNFznLyiIB3CUkgEk+bXDzSfLvBSEt6cVIO1z1j1/yAqwBDD3gY1d+YGXw/R92vTg6gUMPaGV1elv/mKomx2j1lEhNkZwTTXWyqDm77fdDq0/TMnV5Tx6c2Zn0qI/x3zZjvHPYPWoyufBcvDsDGxrqVhCzfd9r4+PU88s2t8L4uV3PT/r0tZR8S/z0APAVCsBApeRbjkLw9ykQ/O3E8Qhf/03r6BoshigwsMvfsfSfjX/HfLVvmHsB5xr/75Nj6yXazGyLlWmsNESKQNfCPn6IQKBkfTKrRonW1WQXXG6vjovTE7eysumfrg7mTQ0eoVIOwRrAT2iJAAVg6PKHm5SW9GYKaFz1pH75UBSlxFXPETYm9b+tO3Hp/V8czWu40uZfrg9MLbBQh6Nja1r3TFAq4Y20Nm749rUzqd9+P5mNVWA4ugBwm7FkzALNzIYMxC2HV536Z+PfdEVlOOdqssugrWu2/DG1uVUTPz0A/IMCsFprD/5GIfjbAYK/nWgP/pbTPRMsosDArgGOJTc/ObT9pfM6WlxaB6WqQWff+aEMbCizyCy9yJz5HfSzL9Wno144joBZoMNiPXChGetKXhiRxMqmK+p0/7nbH4eAXkgAd0mJLOATThtSxg0oKNxzEoqc2J+Sy+eVSIACcIejgwQwp4zzfXjvix9JKEd16+xSCL44NVZNDs366XeJbZurVdWOl89lfb/rjekR2hoszCVeWGUY/aAfK/vOjwQwRVHn491kcubKFguGpSZ/88MLI5MotSSTC3eGjgzcujoiyx6/OwA8gwKw+kLwtxO30h15U4YkPPjbEaLAwC6RULFp9u2rH/3E+nTBPbIrbERTi8pHa7K1hG0QHaOYKYoaQ8Cbo/BYTyVeO1LUmmn32Nr0XkZGSzCAnFfpHF1DXU0PFkGnDTFHB+cvqeRyITEnCYfXACYlAUzSLwWues6xMGw8/96vzw5P5kRrj97pn1WsFq8yhrkX0FJrpJGWhnxhUMqF937N+O67DbPu6GqzNqo7NNqLlYc+LQ1536fOoijK3ry2jwsJ9111o86tDEcmt2hp2Pjn+n/C3vmDQ7MO0Cu9yHzMB0u3HZkslYvw0wPAGygAqyM+BX+NdSUqCv7y4JbdyqjhBEeCvx0hCgzsGuJaePuzA9625VxpcFmd3sHLgSp/jmWpADzCI4+Wz/HqV2FlxHJdP7/CKCHPCpdYgGMJXYe1pyLv20Vz//6HIqmSh1/qrp+4yJnumJgTRy5HKhq6emhVkPKyoheBUSFWuf5fRI1+E+BXi4M0RfLf1p2YPjCT/KbKFcIvg8eoyXF5Y3oECc0wM2h6aUzC0Q1HSw99eXTD0Yl+2awPTwxmaf7ngc7FYk16Es9EDJ6OYWH2rOkDMxN37t467yYr2XESvsG2B48e/+GS3Apj/PQA8OR1BLpA3aQWWPAm+DtjUGbSNz8g+PtEC4NSknbunsed4G9HiAIDu5wsai68/4uDWS1XGvzjhSEq/fzyOr07GexMB0TX0HISlgGmKCqMpdcBpFk9NZKtTe+9wIcQMDm5W8yl2fUTF0pBHVtCoQAMXZARlADu+XlF4Sv6f8hJer7GVc9RWhryYxuO+tqXkd/Uv2/51TSJ1eGgPBOUamtax8qm3ayrXhyd8MOS8Kgv9xUf2P7r2hMLg1IMdVpI6Ja6Zu1rKc6cfnCmKGosAbNAh8Wy8+CsL279fNHFxJ27Zwemq+f37d0s+8Ctq0Px4gKAH68j0AVq9Qi9PXh04NbVvAn+hm79A8HfjmgP/pYzGPztCFFgYFE/k/rwd38z0WvmRGszis1Vul7LmVgPORtZHCujBhcr2qafIuI5NsYTFxdFUc8EpVoaNrKy6WN3+lfW63K9A8kJMOEHuusnLmKKDeTUYMiZ3VeIRawJfnolpCVKisMJYEKueqJ+KQS46jlLV1v65/p/6Ao4qo5EqnH8rq86HBFNkXz1lEhWtnv5g59+W3dizdR7g5yLRUIFUd1yLs69VcbODLrDPWgrAJMwcjqzyIzFQIibddXpt4+ce/e3AY4lavh9W9WgM3/Hon+fHIsVrAA4/zoCXaAmUgssRn+wDMHfJ0LwtxPHI3z9mA3+doQoMLDIx678xxUhXGnt7zcGqO7DQ1ga/hnkQefKUmN9H7J+mGIe9iuuNsDFpa0hWzIhhq2flZ+vDcIhoIuCwkuBLhAU1yYnAaxEAhi6IFdyOAGMSRpI/qXAVc9pfg6lHz57lfx2/nZ9oJockeUTo3W0mF5qVyoX/XA2iNg+CWEvN0ljAtjZspqE6dDYCgG3mzzgfvSX+35de0INFwZWKgUfHJ34yu5nJFINCgA4CwVgNXhyVvwn+Bt5347r+4LgbydUEfx9nr3gb0eIAgNbnglKeWFkEieaeuyOn4pG+UikGheTXFnZqeG0FoC9bSvYSp22UygEZ+I8cGVRFLVicjRbA/Z/vDiE678mAgo1Re4cLHLi2uSsAUzMaSNAKYhU5CSAe/EtJ8Swj8cueTlBr55QAOa69TPukl+JuZNpf7/EVB0Oh7lh0yI2HpYPXg6sa9YmsEOkctFZlp717Mzq7M3pLNmO8c1hvT/DYth/cBYKlS+NSUj77vtvXj1rbdygbl+5R275T/n0NTWZ1h6Al1AA5rnUAotR7yP4+2R8KijSHvwNi/EcuGXN8Qiypi1CFBjY8v3r4Ua6EvLbWdWgczVZJasNXUlyaZRosbJT9BaASVkGOBazQFMURTma18wYlMnKph+UmpyLd+d075Fz78LK5PAce+JCKahjS8hJAGMyWFLJMQU0Ld1IRpCaqNXicdVznVhT9snzlwlvpFIpOHnPV02OyPoZd5nfaG2T+KcrgwnsjRupTmyVymiM/7YZ68P+7Fm3MxyrG3VIOLLaGrI3Z9y9/8OuXa+eZWvpa/aOgsPkT16vqNOlAICD8L6GtxQKwcFLgcPeXYXgb0ftdUQEfzuqbtRZdXDO3O0vEjtDKaLAwDwzg6Y32Xis7YWLiSrJ6QZHe7OyO5oi+WCXIno/k4QC8KVE16YWTVxZFEWtYWPZsDZ7zg/jdNeRE1tU4kV6l09cQhSAH0fOuAERSkGkkhJUAO75VY9JGh675JWYAhro9PzIZPILMCp6LiOQn0Pp+P4PmN/urvARUrmItN44HcnalMUjPPNofnD2Zv/BWSYXno93I+f46mhJ18+4e/+HXb+sPelqVaU+37qxD23GfbS0CEtZAXAQCsD8lF1qOuGTJasOzuHB++UZgzITd+6mN/g7cAuCv091Pd1KAABdxUlEQVQWHuvpt2ndwUuBhO84osDAvLdm3jXRaya/nRcS6A81KhSC8Fh2Zl4a6FxM+5pS4wgYyNzUonk91RmXFUVRk/2z3W0q2blYEt2yS01xCPqOnHU6yX3iEiAL+IRfFkJagimgyf1uUZCzBjCHE8CkrAGsQAEY6KQpki8ZH0t4I2+nO7A1hRLz3pwewfxGCyoNT0T4ENUPSqUgLIa1AvAw9wJ6P9DNuoqEkRahMV6knfBaGvKXx8Qnf/PDvuWhThY1anKZpxVaTPv3q4QEsgGgB7e+6AKeaQv+Bry99maaI9f3pT34S9cNB8+Cv8c3/U178HfOV+QGf5/wQIUoMDDISFeyeFQi+e1MLbAoqDSk9zOjsm3Z+mYI8sin/TN97Mot2F4GmKKo0BjMAk1RFCUQKFdNjmLrlmn/hSFc7jqCbj5xJnfxxCVAKehx5MQBUQoiFtYApudaU6AAjKuen14ZG0d4C1tkGjfTHdXkcMwclMFKGvKbsJFE9UNcjnVepRErmxZrygY5F9H+sSSEgM/Hu8nkJNYvtDTkKyZFpX/33aHVp736VajDlZ6Sb7ng60USqQYFANyBAjCvZJeaTvzkdX4Ef6cPpD/4y6cVfxN37J4/NJWuDwyP9fTnQvC3I0SBgUmvjovjRDuvJLvQ+4EsDrkd7k5/AZiQZYDDYz2VSpTN/nNl6WpLWdn0L9cGNbdy9ZZJgJoih564SFoDWIk4IKlHBx4jIyYB3IvvWySAH0PUavFCoQLXFw+4WFX7OZQS3kj1mQVaKFSum3aP+e3GPOh3jaR5lUKivNna9GCXIi0NOe0fO8Ynl/VerW7UuZ3hQOzJrymSvz4uNmnnD8Fb/hztncv7i/1GmtOru5/BCGAALv1Gowv4oT34eyPNiev70hb8DXuH/uAvD2qE7cFfc0Oag7+cXsgBUWBg7JnKx66c/HZG3bel+Tk2mr0CsAoSwBRFjSWgAFxQaRifa43LiqIoE73mF0YksbLpqgadv+/4cbTfkADm0hMXScUGUuaDRQIYuiIn5rulFwtFYw3gx5tBkZQAxsrffDE7MJ3wFkZn26rP4XhtfKyBuIX57e4MJSgEzOKDc5BqHpzHELB8EkVRYcTPniUUKmcNzrj20eE7nx1YMCyV3z80xyN8Pzs5Dr9BAFyBAjAfIPjbCQR/O8Hd4G9HiAIDM6YMyCK/kfE5NvT+xKTkW7KyI7amdfbmtSp5jiVgJitOPMcyZi0by4a12X0mCP3fR3iP3iUBSTehiAM+RiTCKUwoqVxESEs0RD0ew4EE8OOXvJykAjB+uPhivO9DwlsYn2OjPuPkDHVaXhvPwoxZZ+PcUwssSOiB3ArjBPYG+I7wzFPFx3r1q7AxqWe9b0OivblyIQxzL/hn49+Z3337xvQItqa5YsCnJ8bRPvMcAKjs1he4rC34O3DLGgR/O0LwtxP8CP52hCgwqNrE/g/Ib2RCnjWNl0BIFGujmFX0EEtRVH/7Mrq+TvsiHAXg/wpwLAlyz2dl0/G51hFZ9lzsNAGF6gJ3nrhIypgSUwAmJgGMUhCpyFnwT0PI4QKwXCkk45InagpoXPU8McStkPCj2SDRyi41VZ8jsm5aBPNHRKkUfBs+goTdPx3JZpFymFuBij55lBf70xrfLzHl1qtdZ8vqb18783D3zi8WXyShgk7/A4VC8NL3C0tq9PFLBEA+FIA5rD342yjR4vq+0B78vZOJ4O9T8Sn42xGiwKBSo31yRcQvG9Yo0coqpe38D2WvSBnkrqqHWIFAOdorh/UjFf2gXzG/RuH0xeopkWxteu/5oVzsMXJCpXI5Hii6QNQPByE5PHJu0QWYAppU5GRGe3EJE7XyNxHNIGmoECZ+5w0DcYtXvwrCG0nv5EyEc7OumjEwk/nt/nlzQGkt+4UoFh+cnSxqVFdlHEvG7FnhsdwbPG1u2LRl7s2s77/dszTMzbqKZ9d7aa3+2kOz8UsEQD68r+EkBH870Vb/G/shH+p/loaN9AZ/a5rEvAz+doQoMKjuLYOLVTX57UzOtaLlc6oadG5nOLK1Fypax6jNOF/2n2OVSsGZOA9cVm2eHZFiYdjIyqaP3/Utr9PjXI8hAcylJy4kgAk+bZAFJFaLTIOQlvRmCmhirnpCordkFYBx1fOIt10Z4S1MzLNSqyOyno2FXSRSjT3nhrG741UNOjfZe0Or0gfnMT45JJxaoZydPUtHS7pqSmTaru/+2fg3W7NeqcjpKO8zsXihAUA6FIC550GpyaRPEfx9Mp4Ff5N2/kBj8PdMrIffxjf4GvztCFFgUBEf4t8yUBT1sNyEru8NtiZgFGvKBjkXqfA51puINcNCMQv0f2lryF4fH8vKpltkGoevDOZcj5GTAFaiANzlExdJxQZCqkEyYuaDRRaQWI0tpDztIgFMwzcPSXNFYOJ3PiE/VPew1EStjsiE/g/627PwvLz/4pCmFk0Wd/xsnAeLKxcMV2UB2MeunK1xuo+6neFY3ajD6ceBBcNSb3928NpHh2cOyuDNDDRv/jKzuVWTAgCSv3/QBRyiVAoOXgoM2LL2eqoT1/cFwd9OWBo2/rOR/uDv7K9eKlK/uUYRBQba+dpzoACcU25My+eExLC2APBglyItDbnqPr+/fZmZAfvLAF9OcsXzUruVk6PYmin3xwtDiFqekFvk+IXt+omLoFc8EikRqUpJKynhTmQBidVAzHBnHS0Zd8+rFpmIhGa0ykXknFq46vnEzbqS8Bbm0vRcxhUCgfKN6XeZ325lve6v1wayuOPB0V4sbl2luVKBQDnam/1lgGVy4YV4Nx5cI6O9c0O2/hn91b5nglJ48Hv0oNTk65BR+DECIBledXHpKxUr/j4N/4K/C4Yh+EsbRIGBXnY0DVtRqZwyGl40tMg0WHzEUuk0VhRFCYXK0V7sP8c2tWheTXbGZdXGyaJm+sAsVjadV2kUHsOx2asImgIaBeCuaGvJyWkMKQVgKSljX7Q15DhFyUROAVhfp6Wnf6IpIuW8ImSwRQsxYz4oitLUUOD64g1bla17SpfcCmN1Oygvjk5kZaDtt2dGsDWgs0WmcT7ena0O19WWDnAqUekmxmIWaLoFOJYc23A0ccfuF0cn9GKlCaJ8Fz68tkmM3yMAYqEAzAEI/nYCwd9OqHPwtyNEgYEu1sYN5Dcyj44XDdeSnesl2mztwnAPla+OM84Xs0ATZ82USLY2vefCMG71FTlTQEtJynWRSUdLSk5jWlqJOF6E1KEpitLVbsUpSiaCCsA9P0nEPQ8N8/taI+eSpyhKl6TvZOgjUwJm9OlccY0BOSuaM3bbs3xiNPPbvV9iGsJSDPdKkguLv1lDXAtVPeqIkOWTzie4y+S8KmR425b/tu5E6q7vl06I0eLskMSaJvHe80PxewRALBSASfeg1GTiJ6/xI/g7LSArYQfNwd/BW1Yj+PtECP521B4FzipGFBh6z4oLBeD8CqO+f0gIq4VJlU5j9Z/nWDIGMp+J88QSqu0m+99nay23y0kuGcXmHOorgUBJSMJM3V5r9oIOMaUgCtUgso8OPIqcArCeuMf1Ql1tKS55Mi95irBBOdBH5sQXgBUKQWGl2o3IXz0lkpXb1G9CR7CyvyzP/6z6kdP97ctM9ZtZP6+qGnRuZzjw73pxtao6sDI4/bvvXhkbz9aKSH303ZnhPChbAPAV3teQS6kUHLo8eNPv03jwHWqsK/nyxQs0ln6bWzU/OT5uZ+hIHqzYZ2nYuGdZKI2l35om8Tt/TkHp92luZzgM3LLmg4XXNs++hfWfoDdfaHrN5DeyrllbKhf15albqRSEsvcca2NS39yq8aDURKVb0dNu1Re3sv5+uaDSMC7HepBzMS4uiqKEQuXKyVFv/z6Vlfuu/ReG7Hr1LIe6S1tTTkL6lpBEKcmISpsRMvcyOWsAIwtILIISwOIeJ4DJKTGiAIyrnu+PZhLyG1nZoOtiVa1Wx8XOrG7+sLRjd/ozvN07mQ53s+yHq34k8aMUCkEYqyOnGdhfoVA5yjs3JMqL9VMrPNaTkPmoaedoXvPzmpNvz7n53t+TgqO8udX48jq9I7f8aXztDwA0QgGYUA9KTZbtn3c9lQ/rAk4LyPpxRbCdGW2rZt7JdFi2dx63YjpPszAoZc/SULrmfKYo6mycx8oDcwqrDHERdaItChwW43l49Sl3m0p0CPQIVxYLrG4UWxo29vrPox/0Y/GbpLjawH39BvU5qcJjPVEAbrdkQsyHxyY0tbBQo/r12sDPnr/Mob4iZKIwol7rk0kkVGiK5ITMld0iJWMKaHIKwNooBRGqppGI9eTEmrJejKgjJ1neQsZXdDMxl7xYU4ZBwHyiJeLAo1lNg44aHpr1M+4yXwCmKOqb0JH/bPybyS1GZtsVs7rs2ryvF6vPeRUW7bn9pfM83kEfu/KTm/+6luq84ZcZiblWHGr5n7cGoAAMQCZMAU2cthV/B25Zy4Pqr5GuZP/ykPBtv9NV/f3PFL4fLuFB9VdFK/7O+vIlVH+7qS0KjFWBoafEmtyYK7K6sU8vGsKwMC2Tz7Ho7UcY60qeG5HMyqZrm8RHbvlzqK+0yfg6whTQ3UHQfLCtZCSACZoCGgVgYu9kdElohr5Ob1aJ1tUiZW3pZjIu+ZZWXPLA53uhrr7NxGp4aIa75w91K2B+u8FRXtmlpkxuMTQaj3LMySg2V4c13cb5PIz6Yt/3S8KNdCVcafOtdIeccmOcogAEQgGYLA/L/rPibwMvVvxNpHXF37tZ9m0r/vJg2ueFQSmJO3fTOO3z2TgP/03rMO1zT2FVYOgFLY4kgKv6NtI8NNoLx5oxMQ/6FVUboB/arZ4cydam914YpuROLoiQCQkISZQSjpwCcD0ZTxn1zdqkHBpUg0hVUUdEAdikV2t/kHPJE/JiobGVlPcbCP3zjIZIQX6ku48Dc7lr/YwI5jcqVwi/DRvO5BZDor1xJTJJTQZPa4gUa6feS9yxe8agTE40WKkUHLk5AOcnAIFQACboi/LgpcCAtxH8fYK2Kt3YD5byI/h7bMPRoxuOWvRhatZHIfjbd4gCQ49I5dz46aztw0jznHLjhFxrHGsm7wHOxHqgH9oFuhaykhigKCox1yrqvh1XOkpbAwlgziBnPlhCKq915BSAUQ0iVWU9ESUTa+MGTl/yhFxrdU245EElZHIh+U/xalsAfmZYSj+Teua3++uNgZX1DA0hyio2Sy2wwJXIpLBYNYpc25nVhW7947d1Jwx1WshvbQhSBABEQgGYCA/LTCZ9iuDvk/Ev+PtMUApdH4jgL10QBYbu40qpoy+zayL+y7zQGPT5/1gzlbUQcEmNPld6SUsTCWDO0NMmZT7YegkRZRhyEsB64lacnwRqkGgRcsdlbdyb6gU5yfKGZjJC/8S86EDon2caWzjwDo2cZe+ZvlPVkK+awsItfaNE68eLQ5jZFipezLud7lDTpF7Tqr84OiHyi/0BjiWEtzMux4acIZ4A0A4FYJa1B3+vpSD4+zgEfzuB4K9K7iMRBYZuPU9qcqKdrX0oyeA5lnlXkl0IWaWPEM8OTzY3bEI/dI6Qde/kCiHO3i6Z6jcT0hIScngKhaCBmFf2vZvgF1StskGXkJb0LgFMznlV10zEW/J6YhLAxrjkefZo1sKBOxCuzCClCismRYvZuF/dc34YM6OI8ODMxgUlOh/nrm577W5TefvfB14ZG09yI2Vy4Z0MB5yiAKRBAZhNfAr+TkXw9+kQ/OUQRIGhSxX1elx5LurdH9Y0iW+mOeJAM6ypRfNKsgv6oZ1YU/b6uFj0Q+e0iVmSvJ77t7KqZqrfhIPVrqFFi5zBdmYGGGtColJiJmPoXQGYnPOKlCmgJdrEXPIoAPNKIxfuQFpl6jtXioVh46KRicxvt6RG/8+b/qreSlmd3t1Me1yGzFOrWaAffUD+afWpbfNvkNxIHsTbAPgHS3axQ6kUHLo8ePPv03hQ+jXSlXz14gUaS7/NrZqfHB+3M3QkD0q/loaNu5eG0Vj6rWkSv/PnFJR+Va0tCvzBwmubZ98SCpXoEHhURZ0uJ9rZ2tsC8Lk4914Xj6FPz7ExHjMHZaAf2q2cHLUzbCSmZOiEATFrQdU3a1vSNMdJd7co0Y7MYn+1ZherKmfL6u78S3IS7SRUg+pJmh3OTB/VIBLlVxgR0hJro95MAU3QJd+EWd//95LHmA9+aeDCFNBq/mz1xoyIn68NYn67u8JGvj4uTiBQ4fuc8FhPHry35KJz8e4yuVBDpFC3HRcIlJ+9cMnCsHHjr9PJbGHkfTucnwCkQQGYBQ/LTJbtn8ePQTFTA7IOrAima85niqLuZtkv2zs/vcicB52zMChl99IwC/reh56N81h5YA7mfGZGWxQ4LMbz8OpT7jaV6BBol1tuzIl2Sns70jwEi9GyJDzWU6kMU+lLCm5xtqyeFpB1JtYDXfE0RnoSQlrCfKg0rcBiymevsr7jX7544e05t7rzL82ISQDXNOqw3obqRoJWbjNFHJBI+ZWkFIBtTBp6dV6Rcsk3tGjJFUKRkOW35HXETAFNzrcx0KKSC2Nz1TkBTFHUAMeSsT4Pr6cy/Qo0tcDiXLz79IGZqttEcBQenNlR1aBzJ9NhjHeOeu7+mzPuVtTrfn5yLIFtw2SKAATCSCVG8W/F3zMqWPGXB9VfC8PGo1jxlxewKjA84Y62hBt3tMpelRFbZaJz6regDiEKqwzjcqzRD49aMyUSndAJY11iCsCMv9lvImPV4e4va0fOpKPlBLwrr6gjZTEFfXGrtoaMAvLkV5Ly1GNj0punXTNiFppVKASVDewP+yBnCRVMAc0z90tQbOCAN2dEsLLdHaEjVXgv2qJ5OckVB5ctYTGe6rz7nzx35eUx8QQ2rLhGvxFrAwEQBgVg5jwoNZn4CU9W/KUoSk9bSmPwl6IoiVSjoNKIHyv+Ju3cvZC+aZ/DYjz7b3wD0z6zpW1owqRPX3tQaoLeAIqi0gstONHO7pclHnUj1am2SYyjzN5zLEaR/4+pA7JcrKrRD09jREwBuIHxxR2bW7hWACYmc0ZC8bWslphSELKApMqrMCahGUKh0t2mqjenFknzDJNwxeGqBxW5X2pKfiO1NdV9pNGswRms3NJfS3GOfWijog+/lOjaRMbtqHoKV+8CsECg3L00zNWqirSGKZUCTnwtA6gVFIAZ+vo7eClw4Ja1zM95ojpF1Qazvnzp+V3PV9E0oNhEr/n3N46HvfOHrWkdR/vERK/517UnaA/+zt3+YnG1Aa4jdl1PdfbfvA5RYFAoBLEPbDjR1N4VgEOiUYBkk5oPZH7CfapQuXJyFPrhaYx0yVkDmOnRjYS8cRNrdT8BTErJoZyAAnA5soDQFULWAHY0r9HRkvbiD3W1pb37Q1VgfdhHi0yjDmsAg2pwYrpRsdoXgEVCxdqp91jZ9DcqCwEHx3jjAmRRepG5ms82rC9u/XntSaGQuAWksktQAAYgCwrATLia4rzp92kNfJwD4XiEb8Dba8/F0zZf6PSBmXHb974wMolzXfFMUErqt9+/NCaBrg9E8Jc0za2an50ce41HwzigF1ILLeol2pxoavfLEu2USkEoCsCsin1oU4QRP//r9XGx5LxDJ42RDikJ4KoGpmcV5twU0OQsNFtRr6tUsjyajaAsIE2jNoF2mWS81fXoV9H7s4ugid9ZvuLKawlapRXLfvMMJyoNKABTFPX6+FgDMQsjF49H+OapYFF5uUIYHuOBw8qu8Fh1Hzw90jNvwdBU0lpVRcDCEwDwKBSAmTCh/4PEHbvH93/Ay70rrDKc+cXLNEaBzQya/lz/T+jWP/qZ1HOiB0z0mvcvDzm24aglTa+QahH8JfXWKvqLfRN4eiFDN11KdONKU3vxoiEhz0oVj8fQfUqlIBwh4A53Bc8OT0E/PJGRHikF4Ip6xgvAXJsC2s6slpCD1SoTsR7FKydmDWA7kzoKyFNQaUjIghRefSgA9yPm7GL9iisj5pKnKMrGuB6XGG9UN+pkIgHMlbtWXckrY+OZ365ULvrhTBDtH3snw76cpG829RSKB2eK2rbgukBAVgi4gSORCQD1gQIwQ5wsai6+9+v+5SH64lZe7uDxCF+/TW/QGB2bMSgzcefu5ZOiCd/xmYMy6G3nuXh3/83rEPwlio6W9IvFF699dNijXyV6Q82diXPnSlMNej43bEgUprFiX1gsnmMft4alKePIZ6yrvgXgmkYiikPdf6Vra1KvKZITcryKa/TZbgApYxydLGvwTUKgtAJLQlriZdv7ArCjBSlnVwnbl3xZrT4hXaEhUtgTMxwH+u56qpNcwYG3moY6LThYFEW9MT2ClelqD10OpH1QERZOIsHtdIcaMoaLsSjAsWSkZx5RTeLlBKgAnIYCMHMEAuXySdHxX+/haxS4pEZ/3teL6V0VeP/ykJCtf9oQGQVubx5dSeW24O/ML14uqDTE9UKOkZ55sV/t3TL3JoFLawDDSmv1ObSUu7VRj7+aMP8zCa4kuzSTMbctOYa4Fg5xLUQ/POFWhJxZheuYLgDXNhPxuke725Pti4QKB3NSqg555cbsNiC3zJiQrnC2rMY3CYFSiCkAe/Yr58HZlVvB8hWXV0HKJW9vVqshUuAS489tc5ILN57LTBpwsCiKcrepnBaQxfx265q1D10eTO9nhkRj5DT7pHLRhXg39MPUAfeJag8KwACkQQGYac6W1byPAvtvXkdjFWHmoIy47XufCSJr+kcEf9UBgr/wmL9v+8nknPndtDbu2YuG/AqjuBxrHGXWNbVoXkl2QT88ZvWUSHRCR7ampMwvWtGgpglg3Z4sUE1OHDCX9QIw2w0g8KDAo1ILLAhpSV8SwE7EnF155UZsX/JGuORBFa6mcOOe2coYBeD/eHP6XVa2+8O5IKlcRNenpeRb3ufC4tPqIDQGQ9ipyYQVgAlZqQcA2qEAzIL2KPA434e83MHiagN6o8AWho3HNhw9uuGoBU2L7PYFgr9qYoQHgr/wPxQKwd7zw7jSWkOdFl1taY/+JCzGU6kU4ECT8RyLWaAf99yIZDODJvTDY2yMG0RCIpJMlYyvgkbIhG/WPVlLkpxqELtxwNomMTnz9SEBTKaobDsivmNN6q2MGnhwduWUmbD8nUPMmA9nC1zy/JGUZ0XOYJEu7haMsPL0f0z0e+BjV878dvMrjI7d6U/Xp2H+Z3Kci3fn0Bh9FfGwISuyIsJMGwCEQQGYvWcPy+pL7/+CKHD3LQxKSdy5e8GwVBZ3ivbg73kEf8nTFvy9/jGCv/A/Tkd5c2icr41xj98yBGPwLDHCUYx/0jfza+Pi0A+P0RTJrYwaSWhJYRXTS7qSkAAWCpU9mmuBoPlgWS3G5BBTCtLWkPXi5xJUfnU3iZPziZgCeqhbQV/+3JGYFaYLqw1ojL71AjlTQDtboQDMH7RP6qs61kgA/5dAoHxjegQrm94VNoKuj0LqlBxVDTp3Mh3UvBOMdCViTRk57dESyXFmAhAFBWCWb33UJApc3UhPFNjSsPGfjX8f3XDU3JDpGJCKgr8zEPwlDIK/8ERyhfCDoxM51GBXm6oe/fu6Zu3rKc440IQoqjaIfWiDfnjMyslR+GbuyM6MiGVly+r0GF67uoame8s+3pf2aC1JJxSA27ZOzALAjpa1+FYh0N0MB4WCiFFQQ936tPy8o3mNQEDECSZXCPMr2HzkJGfYhxOmgOaL5lbNP28O4ERT+5nU93RmJn57aXS8qX4z89uNy7GhZZ2domqDyPu2OI7kCI/xQCcQNVeWliYKwABkQQGYfeoQBfbbtC6MvgktFwalJO7YPX8oc1FgBH/VAYK/0Ilvw4enFVpwqME+tmU9/VJqlYlwoMkRhlmgO3C1qprifx/98BhClgFWKgV5lYwu8Zhfwf6Kkj0Nj5Kz9iS7c2Ym51sR0g9OmAyWSLfSSYnyBLnn9+XPxZoyG2Jif+ns3cfWNWsXVRuQctVj1ne+OHLLv5qAoWDd4W1XhuP1KF1t6bKJ0axsemfoSDoe07wwVxNhD84IZFNSkl7maGmgAAxAFhSAidAWBY75au9o71xe7mBbFHjlgbl1zdq0fKCVUcPxTX//tu6EqkcOmhs2HVn/D43BX4qikvKsFn33LIK/RBntnRv/9R4Ef+GJEnOt3v97Irfa3NOllbCOEWnCY1EAfoI1UyPRCY+xM6sjpCV5DMY6W2QaJbX6rO+yjWnPbg69bcsJOVjVjTos3ogmEVMAJueIwKOukTElibaGbJh7QR8/xN2mgpS72TxrtjadnG9FTrHEk5gjAn3RINH68NgEvj6XqcUt/ZRIDTZWCT2f4JbS5yUGgqPw4EyW9CJzDq3VpSKNzE7F1DkDnsbbALgLBWCCuFlXXf3wJ75GgZVKwaHLg302rKcx1fTi6ITkb36YNyRNRW2eMSgzbvue50cm0fuxfg6lKd/8MDswHec8CdqCv5c/+NnNugq9AR21yDRe3bOwRabBrWb72PdgpLlULjob545jTZTYhzYYJ9TR9IBMZ2R3/hchCWCKophMAOdXGJIwQ2xPRwea6jeTc7xYjOEm5ZJSAPZ3KMF3CGkKqwzv3bcjoSXDPfN1tPo6a6u/YykhHZuYx9p1l5hjTUgn2JrWMb+SFKjCl6fHFBMTK++SLxLAHdib1zI5pV87pVLQx5WAGyRa17BwEnnUPARcL9FulGiR0x5TffzUApAFBWCyqMOqwHO3v0jjqsBWRg0nNv91dMNRehc8MNaV7F8eErr1DxqDv4+yMak//faRoxuOsrL2CbQb4ZEXs33flrk3RUIFegM6kiuEr+1ZkEjMq+pu0hTJe/Si4VaaI1emUFMfSqXgbBxWM+pw2ypUrpwchX54lAMZawBTFJVdytzQ+7wKYxJ2uadTQFMU5edASjUoiaVqkESqkVViRkgn9HfAS3ninIr0ISQtOp6O53GCLvlc1qqwKfkWxFzypbjEeCC1wKKPNTyG+TnixHuCN6ZHsLLdI7f8+zJ64Fy8u0SqgcNHmrBYtX5wJm3guLGuBOckAFFQACaROqwK7L9pHY3zW7atCjxnCD2Z2hmDMpO++YHGFX87bzaiwKxoC/5e+/gnzAMGT6NUClYcmHvsTn/OtXyQS7Gudg8yKyFYbpZIoTguT/L6uFixpgz90M7DlpRfMSYLirlkFIDtel59J6calMBSJi8l31ImJ+IJVCRU+NqjAEyck/d8CGnJRP/svn8IOZd8ZrFZM0vzQ7I4+/Rj/FEA5r56ifazOxdxqAKnqy0d5FyEA9fRSM+8QNdC5rfbItPYc35Yr/88OMobx45At9Ica5vEarv7qX2e2JxexvooAAOQBQVgQvE+ClxUbTB3++JVB+fUS+hZFdjauOHU5r5malUd/O0IUWBWIPgLXZLKRasOzvnl6kBuPk73bDn5UCwATKQryS5NLZroh8eYGzY9OzwZ/dDO06aCkNXrmSwA5zC43nBnnd+vx9X3IWy863yiWxmOrGz3ZpoTIT3Q376s7xP8Ar3yKo1upTuQ0BJr44ZhrgV9/xx/xxItDTkJeySTC+9lsTC3dotMIzrblpATLJCYb2DoHaVSsGTv/PQicw61eahbASFfAgRaz1II+MeLQ3o3Xy4WTiKWVC46H++mtrsfl2NDVHv6mdThnAQgCgrARON3FFipFBy8FDhg09rLSa50febCoJSknb1cXpex4O8Tm40oMDMQ/IXuKKvTm/75y4cuD+Zo+8d496AAnJhr9bDMBAedQM2tmleSXdAPHa2eEolOaKerLSVkFuj8CqOqBoYmkyckT+ZtW97TPxnumUfImZNfYfSglIUv/+vEFICDPPLxBUKa788MlyuIeEExOzCdlrE1Yk1ZgFMxId17PZWFqy8i046csOYwtwJcZdwlVwhX/DiXnEkCumm0Vy6O3dM8NyLZ1pSFQlFVg87P1wb14g9vYuEkgoXFqu/sWdeSCVqXWiBQ2pujAAxAFixdQLq2KPBEv+xl++ddT3Xm3w7mVhhP/fcryybGfP3yeQNxS98/0Nq44fTbR45H+K4+OKebLyKNdSVfvniBldJvu7YocI+aDT013D3/8NpTKP1C587EeizbP6+0Vp+rv+sixcievGgIi2E//ntm2+/uJF2YS/YtuJnmSEJLQmO8Zg3OwFX5mGHuBYNdimIe9ENXtPG1L80pNyahJcn5VmO8cxjYUMJD9gvAFoaN5oZNPf2rfib1dmZ1hKzUdSPVycWqmsktKhSCW2R8u1IUNdQVpSCy1DaJDxMz9m7OYNoG5gZ55EfetyNhp66lOH/47FWGN0pO6L+fSb29eS0uNI6SykWv7llw9LYf51rO1yn9aKEpkq+YFP3hsQnMb/q7M8NXT4ns6YRwIQTMm7V13s1lE6LJOYg/Xxv0+cmxJLTkXLy7XCFUw0n+Kut1I4mZaYOiKAuDJm0NLNgEQBYUgLnBxar68ge/HLo8eNPv03o3VwnJ2qLAF+LdDq4KnuiXTctnLgxKGemZt+rgnLCu1lCcPjDzxxUhrAw8fFqzVx+ajRlZ6aWjJf1g4bVNs29jzmfoRFax2cbfpp+J9eD0Xoz2zunRlPKsP8famNRPGXBfIFCS04czBmYSUgA+E+uhVAqI6hxCrJ4auWzfPPRDm8EuReFkjHm/l2XHQAG4ok6XhDWA+/d2Lckg9/zjlb4kHK9rqc6vjY9jcouJ+VbkDHMM8kQCmCwHLgXWNWuT0BJT/eaJ/g/o+rTh7vnfU8MJ+YpubtVkeOZzVmLHTzTMHZc8V2WXmr70/UJCBlL0iJlB0ygkgDu1YnLU5yfHtMiYfjX9oNTkdKT3M0EpPfqrkCj2X9M9OzyZ4dF7nVsYlEJIAbiyXvdOhv1ob7W74v667U/I7CltnCyrKQAgDKaA5oz/rAq8fc9YH34OIWyLAtO4KrCNSX3wlj+PbjhqovfkWkjbir9h7/xBSPW3vdlYFZhew93zseIvdC4x12rFj3P9N6/jevWXoqgFQ9O6/4+Lqg2i2Y5RTg24T1qBc0pAFiEtKao2QM71iV4YkYRfyXaDXYoIacllRiYtv51BxPiMwN52+4T+Dwg5XmfjPaRyEZNbDI70JmTf+5nUe/XDlDAEKanR//LUGEIa8+zwZBrDK2N9cwi5z2mRaVxIYHSJxOpGndtkLOpMUdT4/ghico9MLjxwacjgLau5WP2lKGp2YIaGCK8gOmNp2PjCqCRWNv1N2Ige/fv4XGvWByBaGzcEOJYQdQT9Hf6vvfsMiOJc/z6+7NI70pFioaoUCxbsBbC3aIpHY2xRNE3jMdEUExNPElNMtWOKaSbGXmLsGrtgFxVQAUVBlN7Z5XnB+fvk2IEt98x+P6/OMbA7c8/MMvde87uvLE+nQkE25pH5H/nRaEyWbG8j1CYFN+QGGxAOBWCJqYkCL5qw3oauwI9nWPuzCfMW3hss7tPy4qlPvzbsss8P3+zTn341MJKuwPVS0/F3z5x4ln3Gfd0usvphT0TPOWNazpgSv7N1RZVK6nukVFYPbnuuNnOk4OpqE8Nuc+/wZNGGMdw3y8OxSJCN2ST9hxJ09PE+uttxxqGGOAXg/ef99JDh2HVWiJYobZpeq9svamu1m/rLKbDecVqvjcZ/2R8myL6LcxRQY+r3ffNKLAXZmFFdT2jx1dwdikJ9swXZtV/0u4Lu6sPN9B/se5BeYVz1UqLWKP841Dx8+gtxSwdoKyGgf0Miz3EoH+mlvgcN8r6Hkn3+Pl+LZwrXHzX8Q2zRYcI9OW1iUt1LmHuqTcbXBnjNkWZnM9yE2qRm3tkKAIKhACw9RIFry88lb+sbPyyasL6mx7CYwd97eTgWrZlOFLjuCP7ivsoqTf8+7/fx+k4x74/2fP61MQuG7j4rn/bqnYOveNXmCdz1xww8RzJVaQT8Ps7EpDo6LEWQjRGhSbOYJkUfUSpZHFuhUCg8nQp9nYXoa1hSbnbwoo+u32XnmSYi7GydC8D+HrcbueYJcvL8qsdq0NHUhsnXnQXZ8WhKQSLZcjzwtwMtBNmYAM9b7f213B9anAcONiYE6bOW9oswHVt9nfN5IFgqLmU5zVnV3f+FqU/Of+p8pot0d8TZroTHDh5HhN+Nrs2uGOStaxUCFmH9594RyQIewdgIUSbOSddcU7MaGM+1U1phNuuXaNG2qpn3TT7WANHQA1iqmrjnbn/ruy82d3hrZc/SCjOZ7V1NFHj7qaZLJ67rro2F8mqq5tHhKd/82e7VAfvFiXY90rD2Z9sHZExcMujPEwGc9o/Jyrzyvad2vNz3ILUBY5ZfYpmdb5NTZH270DqnwDrjlsO5a64Xrrqeu+Yqg6Tvg0yszaoGRWXmuwxdR2nnf/VBq/QbfB67Ym+ECFty/IrHtdv2gj+xZBD+Hrejw1K28sdRoVAoFF2bXxbkjF17JKSbLp9QTLrmKsJz7r7O+fUp4saEJy/ZHinC8Vp3NKS4zFw/Cwv9tC9ckOtFqazmS3lxnLvqOvLLYeJsz+SYI1rPV8WEpcyv5VqjOlJaYbb2SMioLif08F7XbtvvFaYBcHR4CteasNQa5cXrzscvex5O9v7rVMDFTGd57NezXU9YmlVxfB/HS30PGqRf+IaE4OTrzgGetx75k2k5jifSPAx/9yLk+iW9QlOVymqNxkSEjdmYEPSygTLl+vfmrz1TbghX8G7d5JoCgGAoAEuYUlk9tf+BQZFJ4xcN2SPM5EqLLmc7Rb8/enzPhI9Hba0J79ZTI9e8j0dtldw4eDsXbJq5YtWh5nFLB94usuLMf7gOARnLJq+hr5vUDf5oRJ0bJqk1yoJSCyMcNDf74iHtarHO2F8n/csqDXwbIOZTzELNY6urTTYlBj3f6ygfC/eaHHOEAnCNbs1EKQD/sj9s3sit5qZqHb3+r2LkybrVr5fkkLZJghSAC0otlu5o80q/A7p+o1uF1t/uaiXI9RIVmO7uUMTnhghu5NkO+HCUOIs/O1iXjemRqP1PjOaXHa3LBNnN+RujRnY+qYdFRL/Y3EGtEWXBuSFtk7jc6uzABd+ZP2szZJZXbFmhNs3Ot7l+2+5Gvm12vo04p4q21CQQOHke04DWFxq55l256ajn99VoTD7f3OGbcRsf+ZMbjhm+cVJk02su9iUCHj5X++JWjTOPpTYUYWOMpwD824EWX2zuINpWNXHPlVDgCjAeFIAlr4l77o63v122o/WrK3oXl5nLbO9qosDbTvovnbS2hzaiwNI1rP3ZTsFpccsGirDyjJgszapmD9/16oD9rPksA9Jt9WRAY3sk1Krosv6Y4T9MYkUtAAs1j92QQAH4/vq0TDbIt0UC6tr8iiBbklNgvSkxaEhbnTS9U2uUgqRIuzev102pUNWgTzd0jIs9YmGq25TSl1vaFwkzT6EUJIiUGw2GfPwvoT7Dx3RP1Mpjx3cxN1X3a31BkI+vk2keG44FDYw8r9N3uVVovXhbpCCH1cG6rEfoJa64OjuW2lCQW2IJ6db8MquOPz6VUjOl9+F/r4jV/1v/sKflu8N3PrKwuk6Ab+FiwsRdySAmPEWQT4l9SX75JZYO1mXyvmQ2JwaOWTDU4A8l3KtDYDofaICA6AEsB//oCnxFljt45aZjzPujtdgVWKLoCvyw+4yAjIR5C+j4C6NlbVH5Yp9Dj//zao1y8/FAw26zu0NRq8bXRZ7HCrIlu840Lik34yS/l0qpoTReo7FbrjhLXyz8S1df+q8+3OxytpMIN9717CBbUw0S5Hhl5tp9t6ulTt8iv8Ty6y3txZk3DdbNAwqolW0n/Tu8MfHcVVdxNsncVP1S30M6evEn2gl01r2/upuuvzUW6pmPvi0v6voZF+Aurw38m0GolbE9Emz10pDiLiXlZgu3tX34z+QWW+1L8jP4EMW2TBb28IlTnK5Uq/466S/vi2Xp9jZPfPqMwddyuy+5ViUAqaMALB81UeBFE9bbGOK2SddqosAR06cYvGOlwQ1rf/b0p1/p+qltCbE0q/pgxLY9c+JZ9hnGbGL00VottrP/gu+tQmsDT2IjUvSwAqEM5rGlFWY7TjflJL+vsT0S+Va3xoA2otwY7DjddPsp7Z+x1dUmn2zoKMIOtmmS6elUWM8XGdn5pDgnz9u/9czKt9Xd67/2U4w4a/x2DEqvT/9m1F9mrt2kpQP7fThStNY2Y3sk+Lno6tyIjUh2shHlEd6ES17xO3W4JHvydef5m6LEObIjOp3iuoM+RQWm03a6thyty57tctwgb73gz3YPr6VtOR5QqVYZdnwa2Ja2bSpua9X2gVftrcoF2ZgNCUFyvUxu5NmO+HL4pKUDK6pUAm6eiUl1bHiyAoB4KADLijFEgaPfHz1p6cAi2S12XStEgf//jSbBX0ChsLGs+HctHzMXYf3n3mJPD4Sax25MDOI8vy9X++JhHc4yDgqFQqgnw177MVbrLbRX7A0XZHE5rdTae4Ze8nHJF+R45RRYxy0doKMX//NEwLIdrcU5Ocd0S+TjwlBSsxrM+iU66OVXlm5vI1rLT0uzqllD9ur09Z/pKFAZcvoPvS9l6WRBBbVGOeaboeK0pvJyKoyNoBQHvZo9fBeDUAcv9D1skIeDswtsftwbLvjEuWdoqshfeZmp1OL07PvzRID82orfLLCZs6p7yCsvr9wfKuxGhvpmezsX8FEGCIgCsAwZQxQ4fPoLRIGNPApcE/zdS/AXUCim9Tvg7lBUq1/ZYOh5rEqpEfzReKHmsZsSAwXs8SOIuNgjDIJCoWjvn1H/WKq2nEjz+HSjNtO6twqt//1jb0H2TisdjlVKzbNdTohz/qw7GrJ8l/YTgTfybCcsGizOx5edZTmPjOhZQanF/gu+n2zo1G7WxMCXXvlobWcxmxpMijnSsIFuv7Uc00Oghw8KyyzGLhyqiwjRB2u6HEz2EWdPn+16nAeFoU89WlzqVb8+EUYryDMn1kDTw/kbOz7oycXyKtM/jwcYfHB6Cx+sFKd90q1C64MXfeRxUWTl2/52oMVT859qPGXau793LygVuiviwDZJfI4BYjJlCGSpJgrcI/TShEWD95xrJL8drIkCj++Z8MmoP23lWOd+TDVR4FWHmk9eNsDgq7nqU/uAjPjJayj9AgqFool77muD99XqV85ddU250cCwm9226TXx1zCICU9ZezREhC25nmuXcMmrjcALfxlQh4CMlo2uH7/iaeTjoFRW/6vTyU82dBJke974pVe43w2tfBlUpVaO+vqJnAIh7nPaNL3WzPumVl5qTPfED9d2FiejELd0oKN12VDtdSq9WWAT8/5zmbl24lwmT3c6bcwTh9rKyred+XN0bX+rrNK0sMSisMzidpHV5WwnEfp2P5KbffFbw3br+l1aNb7euklmwiUvQfZ6X5Lf058/uXLqb2YqtbZec/G2yHd+7y7UX8axPQj9Q3/MTdVfjdvIONTZy30P/nnCANXW85kum48H9m994d7/tPtM48IyA1fdTEyqY4RfySBGpGe7P9sYlXTVVYqXQFGZeXmVaeZtuys3Hc9ddZPETdQdIzrTcEFQK/ZGCDsD8nAsEqeVlYxRAJazpu63t7/1bfzO1q+u6F0suzWTa6LA2081XTZpbbfml435QA9rf7ZTcNrkZQPWiVGo0ClLs6rZw3e9OmA/j3IDNT5/brOVeWWtfmWDCOs/t5RAexih5rEbE4IoAD/I5N6HJywazDg82/WEOAVgtUY54ovh6177qWNQej1fatr3fbaeCBBkv7TYu7exW+6QtkmrDjUXZNeq1MoRXwz/bepKrawuk1NgHfv+6LMZbuJcIEpl9Sv9DvBBUauDOG9dZ2PY049GbnW0LtPDG03tf2Dkl8PE2fF1R0Oe+Xz4zy//bm6qhRpw/M7WU+L7C7VgycDW55u63+Zaht5M7X+Ah9TrIzosNaThzaRrBijdfbax430LwOsEmDiH+WZ5CbPMz0NuawO9bl3MdBbkr5sxfDsqlMim14I8+fQT1PQVvYXdts4haRSA9TERZghkfoCV1RN6HTs+b0GXkCuy3MHL2U693nuOrsAejkWrp/+ycupKZ7sSGe8mHX+BuzwZdaZfqwu1/S0RCsCxERIoANfMYwXZmI0JtAF+oKejTjvZlDIOzX2yI0V6SiC32Cp6znPf7WpZ51corzIdv3DwN1vbCbJHWu/i+eqA/UKdQpVq1bDPnn7vj25V6npNEg9c9I18Pe5kmodQe9e35UW+l8e9OgWnjepyUj/vNbz9GT+XPKF2f82RZh1mTTyV5l6fFykotRi3aMjziweJ1q7i1YH7OcOhNwGet94YsodxqA8Tk+oX+xwyyFvvOdfoWGrDu/6xutpEhIlzTLg0GpnHhCVzDhutcT0SGARAWBSAjUJT99uy7woc8e8pu882NvIDPaz92VOffD0oUoZ9F+j4C9yrkWvewgnra/tbN/JsD6d6G3bL3eyLWzfOZB5bKyfSPK7esue0vy9ri8rR3Y4zDgqF4oXeh4TanvIq03GLhgz4aOSJ2tcCz2S49XxnzLe7W4mzO093Ou1ir80n7dr6X+3a7IpQh0ytUb7zW4+2MydtP9W0Dr9+9Zb9pKUDu84el37LQbSrY/qAv/mIwL1/PhZPXGdiUq2ftzNVaab2Fy6GfiLNo92sSe/+3r0OK+1XqZW/H2wR/uoL9XnWR0eiAtOjAtM5yaEf5qbqH19cZUOXgXob2fmkoR7r/GxT1F3/cjS1oQidLHpHSKOwGiuRQjW0ztmu5F+dTzIOgLAoABvNkVZWT+h17MgHi9oHZMhyBy9nO0W//9wr3/UtKTcz5gNdEwX+dvJqB72sY6YfBH+Be5mqNCteWlWHFQs3JQZpNAbOZ8REpCiV1ZIYZ3HmsdXVJpsSCQE/0KToo3r7Bl9kT3U84+1cINpWbU4MjHw9bsBHI7/d3epmgc0jT/WES16jv3mi5YwpB5N9hNoRXdTX331yh4An0sk0j9i5o9vOnLRga7tLWY9uP1ZQarE5MfBfXw4PeGnq0u1tDP5X5j5/d8JTOoek8RGBu3w8cqueny4d3zPBxyVftHGoqFLNWdXdb/L0sQuH7EvyK6s0feQH9flMl/+s7tr0xWlPf/6kgA98KBSKOU/t5AyH3rz39A56tWiFjWWFoaKEfxxqfuWm4z//Zb0A8V87y/KoIGk8y9K12RUL0yrOYSM0oecxa4tKxgEQFj2AjUuwV86+Ocvk2hVYozH5akv7jQlBRt4VuFKtupFnV1ohh0I4HX+BB5k3cmvdYg0izGOl8hTznXlseZUQ90sbE4MmRh/l5L+vAM9bvcJSt530N/JxMFOpX+h96PWfYgS8SducGLg5MVCl1AR43A5qeDPIK8fTscjKvNLRpszEpDqnwCa7wOZyttNfJ/1v5NkKOLa9wlJbNrqu9ZftHJLWr9UFMR/vSLjklXDJS6Ho5+5Q1D4wI6ThzQa2pU62pfZW5WUVprnFVrnFVtdu2x+66HPumquARd87lMrqD/71F5+TuEu/Vhf0/1fVyrxy9vBd4xcOFnBAyipNv9/d8vvdLc1N1S0bX2/T5Jq7Y5GTTZmTbamZSp1XbJlbbJVTYH32qtvhZJ/bRVYiH9zYiOTuLS5xkkM/Bkaen9aP9ca1ZnLvI59vjqpnN4o6qFIrv9zc4bPRW4SaOHcPvayVNu16YGNZ0TE4feeZJpzDRsXeqnxqvwOMAyAyCsBGpyYK3CP00viFg/cmNZLfDtZ0BR7fM+GTUX/aGt8KPKfS3MctHJp42VMG+9I+IGNZ3NqQhje5bIG7TIw++nLfg3X4xZJysx2nDTwlUyqro0MlszyUUPPYXWcaF5eZs7jcg0yOPkIBWKFQTIo5+tmGjtmPCtoailqjPJ/pcj7TRXIDO3v4Lh298txntm85EShyATUr33bd0ZB1R0MkelE8HXU6wu8GHw74p0auefFxaw2ydMSzXU7M3xh1NsNN2MGpqFIdTvY+nOwt0YOrVFZ/MGIbJzn0o2Wj6z++sEoqixtJgp9L3qDIpD8ONdf/Wy/f2ert4btqFtlKudFAhA/q2DAprascG5FCAdjYTO1/QLstcgBo/96YITBOd7oCy3KVBuPsClylVs5b17ndrEkyqP7e6fhL9Re4V3R4ypdjNtXtd7efamrw5QEim16T1gwhNkKUWXdphRkz6ofo1/qir3M+42BnWf7msN2Mg3bFhKforpdkqG9WXPQRBllHHKzLPiT+i/9la1mx5t8/udoXG+TdVUrNF89tpm2B7kyMPhrOMx/Qi4YNCta99hNPZ2rdS30OGeR9C8sslm5vU/O/NwgQ/1UoFLHSWTpLoVBEh9EG2Lh4OxdM68/6B4DoKAAb8bFXVk/odezEx990Cbkiyx2siQJPWjqwSHaLXd/rdLp7hzcmzvw5uqJKJfV9aRdw9dhHC+n4C9xXp+C0VdN+NVXV8epYe8zw+a3ekprEijaP3ZBAG+AHUik1z7NEtkKhUCie73XM3+M246DFU+ujf23V6VvMHbFdwLag8vCfZ7Y3bFDAOOCfs+AVL6wK88sy4DZ0b3Hp2a4nOBa64OlU+P7T2xkH6IGbffGWWT/wJ0ZHc95IA/VU/nJzh5pv1dYJMHEO8sxp7JYroQMX5pvl6VTICWw8Pn9usy1PwADiT38YAiNnDFHgljOm7D4n2yhwTfC37Uz5BH/3zVlG8Be4ry4hVzbPXFHnO2y1RrklMdDgexEbLrECsFDz2M3HA6urTbgWHmRczwQL0yrGwUyl/mcDM9TT+J4Juq4V2VmWf1XXpR3wEFGB6c/34rkQ/I/5o7cMjDxv8M34ZNSfbgaKIMvbN+M21izfCuiUm33xjtnLm/tkMxQ6MqX3YYO8b2au3coDoTkF1gcu+Bh+4txSYhNnE5Pq6LBUzl4jMSgyaUjbc4wDID4KwJB/FPhSllOvOc9NWjqwWHZR4NPp7lFvPk/wFzAGsRHJG17/sT4rjB1K9jZ4W1AX+xJDPc0tj3ns9Vy7Y5e8uBwexM2++In2zEIVCoWiX6sLT3U8zTho5aSa8+QOPbzRgDbnx3ZPZMC1yN6q/Nspq+nLiH/6eNTWF3ofEmFLGtiWLjNQE2IZG93t+KDIJMYBuubjkr9j9vJm3jy2rkNPRp3xcCwyyFt/trHjxoQgtcbwX5jHhktvRWXJPe2NuvF2Llg6cR3jAEgCBWD8l1F0BZZRFPhO8DdB+pUAgr/AI43tnrh+xk/1XF1HhD5G0aEpUvwuXqh57EZWgX6ouFh6qf7X589tdrYrYRzq6ZvxG/TWtvyLMZvIEmnRkonrWAsd/zT3me1Cdarr1+rCtP4HOC7a0twn++uxGxkH6Fq434397y2l+qtrFqZVEw3U2+VUmvu7v/cw+AhYmlV1bXZFcgeuV2gqz97JnplKveLFVcw0AamgAIx/nA3/FwXuHJImyx2UTRT4TIYbwV/ASKiUmv88s23ppLV17vt7x/qjhi8A92kpySeChZrHbqIA/FBRgekRfjcYB4VC4WZfvDxuDfGy+ni64+mh7fSXKbe2qPz1lZU2dNLShrjYI8M7nGEccOduav7oLa8P3ivahs19ZnuHgAwOUP3ZWFb8+spKWT7LDqH0bXVx97vx9P3Vj4nRRw3V2yX9loPBd79LsytW5tL7THOxL2ndOJOzV96+Gb9RrmuIArJEARh3a+p+e+fby2UfBd5zrpEUt/+/wd/XCf4CRsHTqXDbW9+9Nnhf/V/qwnWXC9ddDHzPoayOluAyVqLNY0+keWTkOHB1PERc7GEGoUb/1hdmDPqbcaibAM9bCyes1/ObNvO++dOLq3gqrp56hqbOpw02/o+1ReXv01a+1PeggNtmplKvmv5LI9c8DlN9qJSaH19YRSITOmWq0sx9Zvv6GT/ZW5UzGvrh7lD0VEfjfZard4RU11KOkeaUH4/ptcH7xvVIYBwACaEALAdllaYzf45uNWOytoqCNVHg4/PkHAXuOWeM5KLAZzLcOr41YebP0eVVplI/BG39Cf4Cj9Cn5cWEjxZqa90nEdZ/bt04082+mHlsPVVXm2w+HsgF8hDPdDztaF3GONSY8+SO7i0uMQ61ZWVeuXLqSoN8yTugzfkvntvMIaizUN+s36etNFOpGQooFApPp8Kds5eL3BfWw7Fo06wfGtiWcrDq7IvnNg+MPM84QHd8nfP/evO71wfvZWEVPXuxz0Gj3XfpllEpAMvY1P4H/vPMNsYBkBYKwJJ3KNmn9YzJ89Z1Ppnmod1lgf09bu94+9sPRmyzNKuS37hJKwp8J/h7LLWh1EfeTKWeMWjf3jnxBH+BB3GyKf128uqNr//o7lCkrdfccMzw6wZL9ylm0eaxG1gF+qFsLCue7XaccahhqtL88eqvLItduwmSsnrFi3+EG27Q4mKPCLhWrST4ueRtfH2FA4+AQKFQKBSxEcmJ8xZENr0m+HYGe+Ws+ffPLF9cN68P3hsXe4RxgI6YmFSP75lw8tOvpdiNVQZaNb4u11zKI+9npPuNWfuADO7EZGnW0D2fjPqTcQAkhwKwhNUEf7u8Pe585n9X9fxvmXDmpMTLnlp5C5VSM2PQvqMfLmzrf1WWY3gpy6nXe6JHgc/KKPgb7nfj0AeLPxixjVgG8KCvGEZ0OnXq06+f7XpCiy97s8Dm4EUfg+9dbEsJF4CFmsfuOtNE6s3sdW1SzFEiGnc4WJdtmvVDU/fbDMVj+mTUn0PanjPsNsx9ZvusoXs4FrXi73F795x4b2daM0Jhbqr+eNTWTa//KJWlRzoFp22aucLOkqVla2fW0D1zn9nOOEBHQhre/OvN7xc/v45lnw3oJaMMAcdK+clpU5Wme/PLnLpyYqrSLH5+3XtP7WAoACmiACxVR1K827wWN29dZ7Xm7oN4Ot096g1tRoGbed/cN2fZByO2WZjKMAqs0Zgs3d6m5YzJe5MaibZtNRX9SBkFfw9/sJgQEvAgbf2v/v3eshUvrvJyKtTuK29KCLz3j4WeOduVtBU+gvPwOU8PYdbRLas03XG6CZfMQwR55vRg3eN/8HAs+uut7/w9qAE/2uzhu14Wo1foe0/tmMP3LLWZsOx6J97XOZ+hQLuAqwfmLpnWf7+0ngTqEnJl65vfO9mwFvTjev/p7XwZDR1xsimdP3rL8Y8XcD9pcIMiz/u55BnbXveOkPYqyrERrAItH97OBTve/nZ8T/r+AlJFAVh6KtWqees6d3l7XNI114f/TLtZk45f0U4U2FSlmTFo37GPZBsFTs1qIFpX4LMZbp0I/gLGIdzvxurpvxx4f2n7gAxdvP76BMM3AO4Vlir1nt+xYq0CHcyF83BTWBDyfzVyzds7ZxmPYT3c7OG73h62S5zteWPonoUTNnD79Ehdm13ZNTte649PQXJc7EuWTFz395ylLRtdl+L2twu4uuud5Y3dcjmUD2duql78/LqZQ1gqH9pna1kxc8jei19+/lLfg/z9FYFKqZnS+7BR7bKZSt1d4k8exIQnc+rKw9B25xI+XNApOI2hAKSLArDEnEzzaD9z4syfoyvVj073nkpz7zDr+cf84cdBFFg/7gR/jxL8BeSuQ0DG79N+Tfho4aDIJB3lVEorzLafbmrwPe0TIflJYLRIBeDNxwM1GhOuoIfo1+qCjwtZwP/h7lC0853lPUNTGYp7qZSar8ZuEqr6W+P5Xkf/eut7V4ksY2sQk2KObH3zexf7EobCmFmaVb3Y51DS/C/G9UhQKiXcAiDUN+vQ3MXdWDzzwdzsi/968zuiSNA6J5vS1wfvTf3qs/ef3t7Aliy+QMb2SLSxrDCe/Y0KypD6quONXPOCPHM4dSXNy6nw92m//j7tV+6xAamjACwZ/w31zpx4Is1D17/1EMYTBS4pNzPIBpy76krwF5A9C9OqpzuePjh3yd/vLx3a7pxOlyjcKUC/WBOT6phwyS8DJdQ89kae7bFLDbmUHn7H8nzPY4zDXRysy7bMWjFr6B56JP+TnWX56um/TI4VNF/SJeTK4Q8Wy/Xeuz6sLSoXTVj/zbiN3GoaMyvzypf6Hkz+av7nz22WR83Gxb5k6xvfv9z3IB/U92rrf/Xwh4s6hxBFgjYFe+V8M25j2oJP5z6znVKHgJxsSkd1OWE8+xsri/hsDKtAS5atZcU7T+48//kXQ9udYzQAGTBlCCThVJr72AVD67yec01ueGr/A3Oe2qmV70dqosCfbez4zm/dZVCnvEtNFHjn6SbL4tZ2Cbmit/etUitlM6RmKrUWzzdATiL8bjzXPfFfnU/q7TvK9ccMv1Zwq8bX3R2K5DGPvXDdRZCN2ZQYSEHo4cb1THjvj24VVSqG4p9USs17T+3oEJAxZuHQnAJrBiTUN2vltJWCxxT8XPL2zVn2wdouc//oqq2lfaSuXcDVb6esJl9izNzsi0d3O/5KvwMejkUy2zVTleaz0Vv6tbo4btHgjBwHjnXNBPOtYbtfG7TPVKVhNKAVtpYVwzqcHdMtkdVNxfdin0OLt0VWVxvFAkjyKJ3Ghqd8taU9p660OFqXTel9+KU+B3kUBpDVzIIhEFylWjV/Y9Ts33rU8+vLmijw7rONl09eE9LwplYmpTMG7evX6sK4hUNksFLxvWqiwON6JHz27BZri0pdv925q67jFg45kuItg6EL97uxfMpq1nwG7lApNVFBGQPbnB8UmdTU/bY+31qjMdmYEGT46V+ETJoACTWP3Xgs+N0nd3J9PYS7Q9HQdud+3R/KUNyrb6uLZz79aup3fX7ZH2a0g2BiUj0x+ujHI7fq4U5PK/febz2xu2/Li+MWDjmd7m7MZ6+lWdUbQ/fMoA5krJTK6h4tLk3oeWxgm/PmpnJ+2LRnaOrJj7+Z+n2fH/ZEGEnZ40HC/LKWT14t0dbOEI2zXUm/VhcHRSbFhKVI4gYACoUi2CsnJjxl64kA2e+ph2ORPL5M6xJyxcK0Sn6RIbnOiToFp4/plvhE+7O2xrTcOmAk+CAW2ul097ELhiZe9tTWCx5J8W7zWtzs4bteHbBfpdTCNybNfbL/fm+p7KPA8XFrdLfMlEZj8vWf7Wf+HF1WSfAXkBV7q/KuzS8Pijzfv9UFQ7VvPJLqfSPP1uBD0VsuBeCuzS5bmlUJ8nF9Mt09I8eBNrcPFxdzhALwg7jaF//40qqRXU6+EN//craTse1+Y7fcpRPXdW9xSVqb3bpJ5rEPFy7ZHvnO791vFRpjgHtou3PzRm5t7JbLJWxsVEpN+4CrAyPPP9HurPGcAA7WZcvj1ozvmfDq973l8axwbbnYl7w7fOeEXse08vUFjFljt9wBbc4PijzfOTiN00mKXupzyBgKwDHhKfJY/9/GsqJTSNqO0005dQX/YHy64+nRXY8HeN5iNAC5ogAsqJrVgOsf/L1XWaXpzJ+j1x0Njp+8JthLC2umGUMUuMecsTqKAqfcaDB+0ZB9SX4yGCiCv4BCoWjkmhcVlB4VmB4VnN7CJ9vgXy5sOGb4+K+TTWk7uaxUbG1R2TFYlHlsdbXJpsSgSTFHuO4eolNwWphf1qk0d4biQXpHJJ+b/+WS7ZFz/+iaXWBjDLtsbVE5Y9C+6QP2W5lLMvdjqtJMjj38TKdTc1Z1W/xXpPFEK1o3yZw3amu3Zpe5bI2Ki31Jp6C0/m0uGPBxOoOLCkw/8P7Sn/aFvfVrr/RbxrIitKVZVVzskTef2O1oXcaFgDpQKTWhPtlRQWlRwRkdg9N8nXloUtpiw1OCvXLOZ7rIezd7hyfLZl9iwlMpAAvIzrK8W4vLMWGp0WEp1H0BY0ABWERnMtzGLhiacMlLd29xKNmn9YzJRIEfU00UeP95v/i4NdpquKjRmMTvbD3thz4l5WZSHx+CvzBaVuaVIQ1zQryzm3tnN/O+2brpNS+nQqG2cEOC4RsA9wpLldMqnbHhKeLMYzckUAB+tLiYI3FLBzAOD2Fuqn6h96HnuiV+sbnD11vay7gMbG6qHtM9cdaQPd7OBVLfFyeb0vmjt/x74N+fb4pasq1NYZmFjE/Rrs2uvDZon2y6CeAR31CoNEFeOR0CM6IC09sHZdDmuYaJSfXILief6njm531hH6/vlHTNVcY7a29VPinmyMt9D8qvuzN0ysayIqThzWbeN5t5Z7dsdL1d4FU7y3KGRU4fgy/0PvTC8v4y3keVUtMrLFU2uxMTlvyaIoZT1+CszCtDfbMiGl1v2fhGRKPrrRpn0kUFMK7pFUMglJrgr35qqDVR4PVHg5cRBX485666dnpr/KsD9r/z5C4L06r6vFRqVoPxCwfvTWokg2GhIROMYarZwLbU3aG4oXN+wwaFvs553s4F3g0K/D1vNXbNVSrFXaAp5UaDsxluBt+MPvL6yj4mPGXGj7GCbMzus42Ly8xt6NPzUCM6nXz9p+j8EkuG4uFsLSveGLpn+sD9v/4d+tWW9seveMps70Z3PT590N8yCwB5ORXOG7n19cF7F/7VNn5H67QcRzntnYVp1YA2F17pf6BDQAZXqFw/djwci9zsiwK8bgV55gQ1zAnyymnqflvenX3rw0ylHt3t+KguJ9YnBH+1pf2ec41k1hu4iXvu+B7HJsUcdSD1iwczN1V7ORV6O+f7OOc3bFDg7Vzg73E7uOHNRq558lg7Fw/ybNcTb/7aK0++d/VtmmY625XIZndCfbO9nAozc+04dfXD3qrc1b7Yzb7Y1y3PzyWvkWuen2teY/fcpm63qfgCxsxEncYgiOJshtvYhUOO6b10amVe+faw3dqKAiv0W8Y2iGbeN+scBZZf8PfdJ3fyHY20nM90WX80hHG4w86yvOZu2MG6rKaa62RTVvN/G9iWNLArle66c2cz3DYlGn4J6LHdE1zs5TOPra42mb8pqkqtFGR7RnQ6+ZAsY1qO40q9d8AV8IivPRpyUeD14vxc8p7qeFq0rdp/wfeX/WG/H2yRUyDtRrPBXjnjeiaM65Eg+3KCRmOy80yT+F2t1x0JlvpNeKhv1tjuiSM6nZTTn4/Hl5lr9+PeCNnsjqlKUxPCc7QpMzGptjavbGBX6uFY6GZfrPX2OsbmUpbT93tafr+nZUaOtNeFtjKvHNru3NjuiV2bXTGqAl5Wvu3s33pwJt9vXlauNKmZl5UqFAp7q/IGtqVOtqVOtqXOdiXyXhX8dLr7luOBImyJm33Rc92PizY+648Gn8+U7RIIrRpnyikBrFAoVh9ulnLDmQ83rVAqqx2syhQKhampxs6y3MJUbW1RaWVR6WBV5mxX4mxXKt1FGf88EXAqzcPgmxHZ9Fr3Fpe0+IKfbuio1ig5dR/C2zl/RKdTjIOuUQAWgggV0w4BGfFT1mhxia2zGW5yjQLXfJExrX+to8AEfwEAgLTuUbefbrryQOjWE/5Z+bYS2nJPp8LBbZNGdj7Z3vjCo7nFVpsSAtcnBG89EVBUZi6ZealJdavG1we0OT+wzflwvxtcfcBj0mhM9p5vtDEhaP3R4NSsBhLacgfrstiIlEFtkvq0TCbyCwAAAGh/ok0B2ODOXXUdu2CoCIXSmijw9AF/a2tFU2OIAi+fvDqy6bXHmZbH72z96orexdL5Gu5BCP4CAGBsqqtNTqR5bDvpv/Wk/+Fk79IKERcyMVOpI5te69wsrX/rC+39M0Reol8/yqtMd59pvOVEwP7zfifT3MV8At3TqbBTcFr35pf7tbogg97MgMG/W9iYELw3ye/ABV8xex+YqjStGmd2DE7vE5HcpdkV6caVAAAAAPFRADYkMeujUYHp8XFrAr1uaesFiQJfynIav2jInnONZLC/BH8BAOAO9nSG++GLPkdSGx5LbXgx07lSrTLUxthaVrT1v9o5JK1LyJW2/ldZUfZBCkotDl7w3X/B92hqw3NX3a7esjfUlthYVjRreDPM70bHoPSOwWn+Hrc5OoDWqTXKMxlu+5IaHbzocybd/YJBP6h9nfOb+WS39b/aKTi9XUCGrWUFBwgAAADQAwrABpNyo8H4RUP2JfkJuG1EgWuruU92fNyae6PA1dUmy3YQ/AUAALJVpVZeynK6kOl6PtPlYqZL+i2HzNv2127baT18plRWezoWBnrlBHnlBHvlBHvlBDbM8XXON6qGkdqSW2x1Jt3tbIb7hevO6TcdM245pOc43Cyw0fqcws8l38c1z6dBQRP32829s1v4ZjVyzSOcDehZpVp1IdP5bLr72atuaTmO6Tcd0nMcr92203pV2N2hyNcl39s53881L8jrVnOfrBY+2SzvDAAAABgEBWADqFkNeNoPfUrKzUTezo5B6fFxawI8tRkFHrtwyDGjiQIT/AUAAEarpNws/ZZDdr5tQYlFfollfollfolFQalFbrFVzQ8UlFqo1f9/UWIzldrWqkKhUNhblauUGgtTtatDsatdsbtjkYtdiatDsatdCbVenSqtMEvLccgttsottMottsottrpdZFVYal5YZqFQKNRqZUGpxT9/3tK8ysq8UqFQWJhW2VlVONmUOtmWNrAtdbQpc7Ip9XQqdLMvZlQBkb+XuJ5ndyPPNq/Y6naRVW6xVW6RZV6JZV6xZbXCRKFQ5JdYajQm//wVe6tylUqjUCjsLMsdrMudbEudbEqdbMocbUudbUp8XfMtzaoYWAAAAEAQFID1LTWrwfiFg/cmNZLE1lpbVL71BFHgWqiJArdpkknwFwAAAAAAAAAAAPpHAVh/NBqTzzdHvb2yR2mFmbS2vEeLS8vi1vq55GnrBU+nu49dMDTxsqcsD7SpShPslXMmw00G+9Kq8fXlk1eH+mZx/QIAAAAAAAAAAEgCBWA9kfpqwESBjQ3BXwAAAAAAAAAAACmiAKwPP/8d9vziQZIL/t7ryagzP7/0uxa7r51Kcx+3ULZRYOlq1fh6fNzqMD+CvwAAAAAAAAAAABKjZAj04K+T/jKo/vZpefGTUX9qsfqrUCjC/LIOzl38wYhtFqZVnCciMFOpZwzat//9JVR/AQAAAAAAAAAApIjVd/FojtZlH/7rrwm9junkFFRpZgza17fVhXELhxxLbchoG1CYX1Z83OpWja8zFAAAAAAAAAAAABJFARiP0DsiefHz67ydC3T6Li18sve/t5SuwAb7IFBppvXfT8dfAAAAAAAAAAAAqaPShgdysC77SGfB3/uci0SBDSTUN2v5ZIK/AAAAAAAAAAAAckABGPenn+Dvve5EgWf/1qOiSsWB0O31T/AXAAAAAAAAAABAXigA4256Dv7e56T8vyjw2AVDEy55cUR0hOAvAAAAAAAAAACA/FAAxv+IjUheYojg771a+GQfeH8JUWCdXPYEfwEAAAAAAAAAAGSKAjD+y+DB3/ucnUSBdYDgLwAAAAAAAAAAgIxRAIZCIVLw915EgbV2tRP8BQAAAAAAAAAAkDsKwMauJvg7vmeCiUm1uKepSjNj0L4+LS+OWziEKHDdhPpmxcetad0kk6EAAAAAAAAAAACQMQrARi0mPGXJ8+t8XPIlsbWhvllEgetykRP8BQAAAAAAAAAAMBoUgI2UJIK/9zlfiQLXEsFfAAAAAAAAAAAAo0IB2BhJK/h7L6LAj3VtE/wFAAAAAAAAAAAwPhSAjYu9Vfm8kVslF/y9z4n7f1HgsQuGJl725MjepYVP9vLJqwn+AgAAAAAAAAAAGBsKwEYkOjxlqZSDv/cK9c06OHcxUeD/uaQJ/gIAAAAAAAAAABgxCsBGQTbB3/ucwUSB/6GFT3Z83Jo2Ta9xzgMAAAAAAAAAABgnCsDyFx2esmTiOl/nfBnvI1HgmuDvO0/usjCt4pwHAAAAAAAAAAAwWhSA5UzGwd/7nMpGHAUm+AsAAAAAAAAAAIAaFIBlq1dY6tJJa+Ud/L1XqG/WgblL5m+MMpIoMMFfAAAAAAAAAAAA/BMFYBkyquDvvcxU6hmD9vWOuDhuocyjwAR/AQAAAAAAAAAAcBcKwHJjnMHfe4X5yTkKTPAXAAAAAAAAAAAA90UBWD6sLSrfemL39AF/K5XVjIZCvlFggr8AAAAAAAAAAAB4EArAMtE5JG3ZpDX+HrcZirvIKQpM8BcAAAAAAAAAAAAPRwFY8gj+PtKdKPDYBUOPX5FqFLi5T/Zygr8AAAAAAAAAAAB4KArA0kbw9/GF+WUd/I8ko8AEfwEAAAAAAAAAAPCYKABLFcHfOpBiFLi5T3Z83JpIgr8AAAAAAAAAAAB4DBSAJalTcFp8HMHfOpJKFJjgLwAAAAAAAAAAAGqLArDEEPzVCvGjwAR/AQAAAAAAAAAAUAcUgKWkU3DasklrAzxvMRRaIWYUmOAvAAAAAAAAAAAA6owCsDQQ/NUR0aLABH8BAAAAAAAAAABQHxSAJaBjUHp83BqCv7pzJwr89soelWrDRIEJ/gIAAAAAAAAAAKD+KAALzcq88u1hBH/1oSYKHBuRPG7BEP1HgQn+AgAAAAAAAAAAQCsoAIurY1D6sklrAr0I/upPuN8NPUeBCf4CAAAAAAAAAABAiygAi4jgrwHdiQKP/WboiTQPnb4XwV8AAAAAAAAAAABoFwVg4UQFpsfHEfw1sHC/G4c+WKy7KDDBXwAAAAAAAAAAAOgCBWCBEPwViu6iwM28b8bHrWnrf5VBBgAAAAAAAAAAgHZRABYFwV8xaTcKTPAXAAAAAAAAAAAAOkUB2PAI/gpOW1Fggr8AAAAAAAAAAADQNQrABhYVmL5s8togzxyGQnD1iQIT/AUAAAAAAAAAAIB+UAA2mJrg76sD9quUGkZDEuoWBSb4CwAAAAAAAAAAAL2hAGwYHQIy4qesIfgrRY8fBVYpNa8O2D97+C5LM4K/AAAAAAAAAAAA0AcKwPpG8FcGaqLAMRHJ4x4cBSb4CwAAAAAAAAAAAP1TMgT61CEgI2HewhmD9lH9lYEIvxv75y6592gqldUTeh07/J9FVH8BAAAAAAAAAACgZySA9cTSrGr28F0Ef+V3WD8YsW1wZNK4hUOSrrkqFAp/j9vLJq3pHJLG4AAAAAAAAAAAAED/TNQUqnRvwdZ2vUJTAr1uMRRyVVZp+s5vPRQKxTtP7qTjLwAAAAAAAAAAAAyFAjAAAAAAAAAAAAAAyAQ9gAEAAAAAAAAAAABAJigAAwAAAAAAAAAAAIBMUAAGAAAAAAAAAAAAAJmgAAwAAAAAAAAAAAAAMkEBGAAAAAAAAAAAAABkggIwAAAAAAAAAAAAAMgEBWAAAAAAAAAAAAAAkAkKwAAAAAAAAAAAAAAgExSAAQAAAAAAAAAAAEAmKAADAAAAAAAAAAAAgExQAAYAAAAAAAAAAAAAmaAADAAAAAAAAAAAAAAyQQEYAAAAAAAAAAAAAGSCAjAAAAAAAAAAAAAAyAQFYAAAAAAAAAAAAACQCQrAAAAAAAAAAAAAACATFIABAAAAAAAAAAAAQCYoAAMAAAAAAAAAAACATFAABgAAAAAAAAAAAACZoAAMAAAAAAAAAAAAADJBARgAAAAAAAAAAAAAZIICMAAAAAAAAAAAAADIBAVgAAAAAAAAAAAAAJAJCsAAAAAAAAAAAAAAIBMUgAEAAAAAAAAAAABAJigAAwAAAAAAAAAAAIBMUAAGAAAAAAAAAAAAAJmgAAwAAAAAAAAAAAAAMkEBGAAAAAAAAAAAAABkggIwAAAAAAAAAAAAAMgEBWAAAAAAAAAAAAAAkAkKwAAAAAAAAAAAAAAgExSAAQAAAAAAAAAAAEAmKAADAAAAAAAAAAAAgExQAAYAAAAAAAAAAAAAmaAADAAAAAAAAAAAAAAyQQEYAAAAAAAAAAAAAGSCAjAAAAAAAAAAAAAAyAQFYAAAAAAAAAAAAACQCQrAAAAAAAAAAAAAACATFIABAAAAAAAAAAAAQCYoAAMAAAAAAAAAAACATFAABgAAAAAAAAAAAACZoAAMAAAAAAAAAAAAADJBARgAAAAAAAAAAAAAZIICMAAAAAAAAAAAAADIBAVgAAAAAAAAAAAAAJAJCsAAAAAAAAAAAAAAIBMUgAEAAAAAAAAAAABAJigAAwAAAAAAAAAAAIBMUAAGAAAAAAAAAAAAAJmgAAwAAAAAAAAAAAAAMkEBGAAAAAAAAAAAAABk4v8Bw9QYgU2KSXQAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTctMDgtMDFUMTg6NTA6MjQrMDA6MDC4WFCsAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE3LTA4LTAxVDE4OjUwOjI0KzAwOjAwyQXoEAAAAABJRU5ErkJggg=="/>
+</defs>
+</svg>
diff --git a/public/img/poweredby/videos/008.png b/public/img/poweredby/videos/008.png
new file mode 100644
index 0000000..165ae83
--- /dev/null
+++ b/public/img/poweredby/videos/008.png
Binary files differ
diff --git a/public/img/poweredby/videos/008.svg b/public/img/poweredby/videos/008.svg
new file mode 100644
index 0000000..2201f09
--- /dev/null
+++ b/public/img/poweredby/videos/008.svg
@@ -0,0 +1,74 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="335" fill="#0070CC"/>
+<mask id="mask0_101:35" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="300" y="126" width="242" height="209">
+<rect x="300" y="126" width="242" height="209" fill="#0070CC"/>
+</mask>
+<g mask="url(#mask0_101:35)">
+<rect x="345" y="249.134" width="10.1437" height="241" transform="rotate(-30.7424 345 249.134)" fill="url(#paint0_linear_101:35)"/>
+<rect x="345" y="179.185" width="10.1437" height="241" transform="rotate(-30.7424 345 179.185)" fill="url(#paint1_linear_101:35)"/>
+<rect x="417" y="213.186" width="10.1437" height="241" transform="rotate(-30.7424 417 213.186)" fill="url(#paint2_linear_101:35)"/>
+<rect x="426" y="138.185" width="10.1437" height="241" transform="rotate(-30.7424 426 138.185)" fill="url(#paint3_linear_101:35)"/>
+<circle cx="348" cy="244" r="6" fill="#BDDAF2"/>
+<circle cx="350" cy="177" r="6" fill="#BDDAF2"/>
+<circle cx="422" cy="210" r="6" fill="#BDDAF2"/>
+<circle cx="432" cy="137" r="6" fill="#BDDAF2"/>
+<path d="M509.722 142.556C510.643 143.953 510.909 145.792 510.492 148.078C510.074 150.367 508.979 153.062 507.236 156.107C503.751 162.198 497.737 169.597 489.649 177.82C473.479 194.26 449.099 213.919 420.339 232.888C391.579 251.858 363.91 266.532 342.432 274.924C331.689 279.121 322.52 281.737 315.55 282.543C312.064 282.946 309.155 282.893 306.887 282.375C304.621 281.859 303.035 280.89 302.114 279.494C301.193 278.097 300.927 276.258 301.344 273.972C301.761 271.683 302.857 268.988 304.6 265.943C308.085 259.852 314.099 252.453 322.187 244.23C338.356 227.79 362.737 208.131 391.497 189.162C420.257 170.192 447.925 155.518 469.404 147.126C480.147 142.929 489.316 140.313 496.286 139.507C499.772 139.104 502.68 139.157 504.949 139.675C507.215 140.191 508.801 141.16 509.722 142.556Z" stroke="url(#paint4_linear_101:35)"/>
+<path d="M526.722 166.556C527.643 167.953 527.909 169.792 527.492 172.078C527.074 174.367 525.979 177.062 524.236 180.107C520.751 186.198 514.737 193.597 506.649 201.82C490.479 218.26 466.099 237.919 437.339 256.888C408.579 275.858 380.91 290.532 359.432 298.924C348.689 303.121 339.52 305.737 332.55 306.543C329.064 306.946 326.155 306.893 323.887 306.375C321.621 305.859 320.035 304.89 319.114 303.494C318.193 302.097 317.927 300.258 318.344 297.972C318.761 295.683 319.857 292.988 321.6 289.943C325.085 283.852 331.099 276.453 339.187 268.23C355.356 251.79 379.737 232.131 408.497 213.162C437.257 194.192 464.925 179.518 486.404 171.126C497.147 166.929 506.316 164.313 513.286 163.507C516.772 163.104 519.68 163.157 521.949 163.675C524.215 164.191 525.801 165.16 526.722 166.556Z" stroke="url(#paint5_linear_101:35)"/>
+<path d="M543.722 190.556C544.643 191.953 544.909 193.792 544.492 196.078C544.074 198.367 542.979 201.062 541.236 204.107C537.751 210.198 531.737 217.597 523.649 225.82C507.479 242.26 483.099 261.919 454.339 280.888C425.579 299.858 397.91 314.532 376.432 322.924C365.689 327.121 356.52 329.737 349.55 330.543C346.064 330.946 343.155 330.893 340.887 330.375C338.621 329.859 337.035 328.89 336.114 327.494C335.193 326.097 334.927 324.258 335.344 321.972C335.761 319.683 336.857 316.988 338.6 313.943C342.085 307.852 348.099 300.453 356.187 292.23C372.356 275.79 396.737 256.131 425.497 237.162C454.257 218.192 481.925 203.518 503.404 195.126C514.147 190.929 523.316 188.313 530.286 187.507C533.772 187.104 536.68 187.157 538.949 187.675C541.215 188.191 542.801 189.16 543.722 190.556Z" stroke="url(#paint6_linear_101:35)"/>
+</g>
+<path d="M72.2967 294.463V293.458C71.5985 294.552 70.6497 295.252 69.4503 295.521C68.2509 295.791 67.0694 295.701 65.9058 295.234C64.7243 294.768 63.7218 293.888 62.8804 292.614C62.0391 291.34 61.6094 289.671 61.6094 287.589C61.6094 285.149 62.1644 283.192 63.2743 281.667C64.3842 280.16 66.1743 279.406 68.6447 279.406C70.5244 279.406 72.2609 279.908 73.872 280.931C75.4831 281.954 76.2708 283.838 76.2708 286.584V294.875C76.2708 297.621 75.4652 299.488 73.872 300.493C72.2609 301.498 70.5244 302 68.6447 302C65.0465 302 62.8088 300.313 61.9496 296.939H66.228C66.5324 297.496 67.0157 297.908 67.6602 298.213C68.3046 298.501 68.9491 298.59 69.5935 298.447C70.238 298.303 70.8287 297.926 71.3479 297.298C71.9028 296.652 72.2072 295.719 72.2967 294.463ZM65.6015 287.697C65.6015 290.407 66.3891 291.914 67.9466 292.201C69.504 292.489 70.6676 292.13 71.4016 291.107C71.7596 290.676 72.0102 289.994 72.1713 289.079C72.3325 288.164 72.3325 287.248 72.2072 286.333C72.0639 285.436 71.7417 284.628 71.2405 283.928C70.7392 283.228 69.9874 282.869 69.0028 282.869C67.6781 282.869 66.7651 283.354 66.2996 284.341C65.8342 285.31 65.6015 286.441 65.6015 287.697Z" fill="white"/>
+<path d="M90.6097 295.396H88.551C87.9603 295.396 87.477 295.216 87.1189 294.84C86.743 294.463 86.564 293.978 86.564 293.404V285.4C86.564 284.467 86.2776 283.767 85.7047 283.336C85.1319 282.905 84.5053 282.69 83.7892 282.69C83.0911 282.69 82.4645 282.905 81.9096 283.336C81.3546 283.767 81.0861 284.449 81.0861 285.4V295.414H76.9688V286.225C76.9688 283.551 77.6669 281.775 79.0453 280.877C80.4417 279.98 81.9633 279.478 83.646 279.406C85.3646 279.406 86.9578 279.854 88.4078 280.752C89.8579 281.649 90.5739 283.48 90.5739 286.225V295.396H90.6097Z" fill="white"/>
+<path d="M91.6124 281.111H95.7298C95.7298 283.3 95.7298 282.564 95.7298 283.121V295.414H91.6124V281.111Z" fill="white"/>
+<path d="M103.284 295.396C101.995 295.467 100.599 295.449 99.0954 295.342C97.5916 295.216 96.8398 294.265 96.8398 292.452V277.144H98.9522C99.4534 277.144 99.9188 277.342 100.295 277.736C100.689 278.131 100.886 278.598 100.886 279.154V279.693H103.284V280.518C103.284 281.11 103.087 281.595 102.694 281.954C102.3 282.331 101.834 282.51 101.279 282.51H100.868V291.322C100.868 291.986 101.261 292.327 102.049 292.327H103.284V295.396Z" fill="white"/>
+<path d="M114.49 290.568H117.426C116.997 292.219 116.173 293.475 114.956 294.337C113.739 295.234 112.217 295.683 110.373 295.683C108.135 295.683 106.399 294.965 105.146 293.511C103.893 292.094 103.266 290.084 103.266 287.445C103.266 284.933 103.875 282.977 105.092 281.559C106.345 280.105 108.082 279.388 110.319 279.388C112.665 279.388 114.49 280.087 115.779 281.505C117.032 282.959 117.659 284.969 117.659 287.571C117.659 287.733 117.659 287.858 117.659 287.984C117.659 288.109 117.659 288.181 117.659 288.217C117.659 288.415 117.641 288.558 117.605 288.63H107.455C107.491 289.85 107.795 290.748 108.332 291.34C108.834 291.968 109.603 292.273 110.624 292.273C111.286 292.273 111.859 292.129 112.324 291.86C112.45 291.824 112.557 291.753 112.647 291.645C112.736 291.555 112.844 291.447 112.969 291.322C113.005 291.196 113.148 291.053 113.416 290.855C113.667 290.676 114.025 290.568 114.49 290.568ZM107.455 285.992H113.452C113.381 284.933 113.094 284.143 112.629 283.641C112.127 283.085 111.394 282.815 110.463 282.815C109.603 282.815 108.905 283.085 108.35 283.641C107.777 284.179 107.491 284.969 107.455 285.992Z" fill="white"/>
+<path d="M56.6138 273.914H58.7262C59.2812 273.914 59.7466 274.112 60.1404 274.507C60.5343 274.901 60.7312 275.368 60.7312 275.924V295.414H56.6138V273.914Z" fill="white"/>
+<path d="M91.6122 277.145H93.7246C94.2795 277.145 94.745 277.342 95.1388 277.737C95.5326 278.132 95.7295 278.598 95.7295 279.155V280.393H91.6122V277.145Z" fill="white"/>
+<path d="M67.0154 277.36H66.3709V276.894C66.0487 277.252 65.6011 277.432 65.0462 277.432C64.527 277.432 64.0795 277.252 63.7036 276.911C63.3097 276.535 63.1128 276.068 63.1128 275.494C63.1128 274.902 63.3276 274.417 63.7394 274.04C64.1153 273.681 64.5808 273.52 65.0999 273.52C65.6369 273.52 66.0666 273.699 66.3888 274.076V273.609H67.0333V277.36H67.0154ZM66.353 275.494C66.353 275.135 66.2277 274.83 65.995 274.561C65.7444 274.309 65.4579 274.184 65.0999 274.184C64.724 274.184 64.4196 274.309 64.1511 274.578C63.9005 274.83 63.7752 275.099 63.7752 275.386C63.7752 275.763 63.8826 276.086 64.1153 276.355C64.348 276.642 64.6524 276.768 65.0283 276.768C65.3863 276.768 65.6906 276.642 65.9592 276.391C66.2277 276.158 66.353 275.853 66.353 275.494Z" fill="white"/>
+<path d="M71.6697 275.386C71.6697 275.978 71.4907 276.463 71.1327 276.84C70.7568 277.235 70.2913 277.432 69.7006 277.432C69.1635 277.432 68.7518 277.252 68.4296 276.911V278.598H67.7493V273.591H68.3938V274.04C68.5549 273.861 68.7518 273.735 68.9487 273.645C69.1635 273.556 69.3783 273.52 69.629 273.52C70.1481 273.52 70.6135 273.699 71.0074 274.04C71.4549 274.399 71.6697 274.848 71.6697 275.386ZM70.9716 275.476C70.9716 275.117 70.8463 274.812 70.5956 274.561C70.345 274.309 70.0228 274.184 69.6648 274.184C69.2888 274.184 68.9845 274.327 68.7339 274.596C68.5012 274.848 68.3938 275.153 68.3938 275.494C68.3938 275.817 68.4833 276.086 68.6802 276.337C68.9129 276.624 69.253 276.768 69.7006 276.768C70.0586 276.768 70.3629 276.642 70.6135 276.391C70.8642 276.158 70.9716 275.853 70.9716 275.476Z" fill="white"/>
+<path d="M76.1636 277.36H75.5192V276.894C75.1969 277.252 74.7494 277.432 74.1944 277.432C73.6753 277.432 73.2278 277.252 72.8518 276.911C72.458 276.535 72.2611 276.068 72.2611 275.494C72.2611 274.902 72.4759 274.417 72.8876 274.04C73.2636 273.681 73.729 273.52 74.2481 273.52C74.7852 273.52 75.2148 273.699 75.5371 274.076V273.609H76.1815V277.36H76.1636ZM75.5192 275.494C75.5192 275.135 75.3938 274.83 75.1611 274.561C74.9105 274.309 74.6241 274.184 74.2661 274.184C73.8901 274.184 73.5858 274.309 73.3173 274.578C73.0666 274.83 72.9413 275.099 72.9413 275.386C72.9413 275.763 73.0487 276.086 73.2815 276.355C73.5142 276.642 73.8185 276.768 74.1944 276.768C74.5525 276.768 74.8568 276.642 75.1253 276.391C75.3759 276.158 75.5192 275.853 75.5192 275.494Z" fill="white"/>
+<path d="M80.656 276.122C80.4412 276.553 80.1905 276.876 79.9041 277.091C79.5819 277.324 79.2059 277.45 78.7405 277.45C78.2214 277.45 77.7559 277.27 77.3621 276.894C76.9504 276.499 76.7355 276.032 76.7355 275.458H76.7713C76.7713 275.458 76.7713 275.476 76.7534 275.494C76.7534 274.902 76.9504 274.417 77.3621 274.04C77.7201 273.699 78.1498 273.52 78.651 273.52C79.1164 273.52 79.5103 273.645 79.8683 273.879C80.2084 274.112 80.477 274.453 80.6381 274.884H79.8862C79.6356 274.435 79.2238 274.202 78.6689 274.202C78.3109 274.202 78.0244 274.327 77.7917 274.578C77.559 274.83 77.4337 275.135 77.4337 275.494C77.4337 275.853 77.559 276.176 77.8096 276.427C78.0602 276.678 78.3646 276.804 78.7226 276.804C78.9553 276.804 79.188 276.75 79.4029 276.624C79.6177 276.499 79.7788 276.337 79.9041 276.14H80.656V276.122Z" fill="white"/>
+<path d="M84.5411 277.36H83.8609V275.206C83.8609 274.919 83.7713 274.668 83.5744 274.489C83.3954 274.309 83.1448 274.201 82.8584 274.201C82.5719 274.201 82.3392 274.291 82.1602 274.453C81.9812 274.632 81.8917 274.847 81.8917 275.135V277.36H81.2114V272.353H81.8917V273.914C82.1602 273.645 82.4824 273.519 82.8763 273.519C83.3059 273.519 83.6818 273.663 84.0041 273.968C84.3442 274.291 84.5232 274.704 84.5232 275.206V277.36H84.5411Z" fill="white"/>
+<path d="M88.9808 275.745H85.8122C85.8659 276.068 86.027 276.319 86.2776 276.517C86.5104 276.678 86.761 276.768 87.0295 276.768C87.2801 276.768 87.5128 276.696 87.7456 276.552C87.9783 276.409 88.1394 276.211 88.2289 275.978H88.9271C88.7481 276.481 88.4616 276.84 88.0857 277.091C87.7635 277.306 87.4054 277.414 87.0116 277.414C86.5104 277.414 86.0807 277.234 85.7227 276.875C85.3468 276.481 85.1498 276.014 85.1498 275.44C85.1498 274.848 85.3468 274.363 85.7585 274.004C86.1344 273.663 86.5641 273.502 87.0653 273.502C87.5666 273.502 88.0141 273.663 88.3721 274.004C88.7839 274.381 88.9987 274.901 88.9987 275.547V275.745H88.9808ZM88.2826 275.117C88.211 274.83 88.0499 274.614 87.8172 274.435C87.5845 274.255 87.3338 274.166 87.0474 274.166C86.6894 274.166 86.385 274.291 86.1523 274.525C85.9912 274.686 85.8659 274.883 85.8122 275.117H88.2826Z" fill="white"/>
+<path d="M38.7481 272.102C38.7481 272.102 26.3065 279.711 38.032 287.266C40.2876 288.738 48.4686 292.83 48.2359 296.616C48.2359 296.616 53.1946 289.258 45.9445 284.628C38.4974 279.89 36.6357 274.83 38.7481 272.102Z" fill="white"/>
+<path d="M34.416 286.638C34.416 286.638 29.9764 293.386 38.7124 294.768C39.5717 294.876 45.8909 295.54 47.5378 297.621C47.5378 297.621 47.3946 294.032 42.239 291.915C37.1012 289.797 34.9889 289.276 34.416 286.638Z" fill="white"/>
+<path d="M51.6014 279.549C46.2667 273.95 44.7809 270.487 47.0723 266C47.0723 266 31.1578 272.138 46.8754 283.031C52.4964 286.925 51.5656 290.909 51.5656 291.053C52.4427 290.138 56.936 285.149 51.6014 279.549Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M179.971 278.915C173.736 278.915 172.305 279.628 171.18 282.891L168.216 290.844H171.589L173.429 286.052H180.584L181.504 283.707H174.247L174.553 282.993C175.064 281.566 175.882 281.26 177.927 281.26H183.139L184.059 278.915H179.971ZM185.592 278.915L181.095 290.844H184.571L188.966 278.915H185.592ZM202.253 278.915H190.295L189.477 281.26H193.668L190.09 290.844H193.565L197.143 281.26H201.334L202.253 278.915ZM208.591 281.26C210.328 281.26 211.555 281.158 211.044 282.687C210.84 283.197 209.919 285.848 209.919 285.848L208.08 290.844H211.453C211.453 290.844 214.212 283.401 214.519 282.687C215.439 279.934 213.19 278.813 209.511 278.813H209.408C205.729 278.813 203.275 279.628 202.049 282.075C201.742 282.687 198.778 290.844 198.778 290.844H202.151L203.991 285.848C203.991 285.848 205.013 283.197 205.32 282.687C205.933 281.566 206.853 281.26 208.591 281.26ZM224.536 278.915C218.404 278.915 216.87 280.444 216.053 282.789L214.519 286.868C214.11 287.887 214.11 288.703 214.621 289.315C215.337 290.232 217.177 290.844 219.835 290.844H224.127L224.945 288.499H220.039C218.915 288.499 218.097 288.295 217.892 287.989C217.79 287.785 217.79 287.683 217.79 287.479C217.79 287.275 217.79 287.072 217.892 286.765C217.892 286.765 218.097 286.256 218.199 286.052C218.608 286.052 225.865 286.052 225.865 286.052L226.785 283.707H219.119L219.426 282.993C219.937 281.566 221.367 281.26 224.23 281.26H227.705L228.523 278.915H224.536ZM233.122 278.915C230.976 278.915 229.647 280.444 228.931 281.973L228.523 282.993C228.216 283.809 228.318 284.726 228.727 285.338C229.136 285.95 229.851 286.052 230.669 286.052H235.678C236.393 286.052 236.7 286.154 236.597 286.664C236.393 287.275 235.984 288.397 234.758 288.499H226.479L225.558 290.844H234.86C236.597 290.844 238.335 290.13 239.153 287.989L239.562 286.97C239.868 286.154 239.868 285.236 239.46 284.624C238.949 284.012 238.029 283.707 237.211 283.707H233.122C232.1 283.707 231.18 283.911 231.896 282.381C232.304 281.668 232.815 281.26 233.735 281.26H240.788L241.708 278.915H233.122ZM246.615 278.915C244.468 278.915 243.139 280.444 242.423 281.973L242.014 282.993C241.708 283.809 241.708 284.726 242.22 285.338C242.628 285.95 243.344 286.052 244.161 286.052H249.17C249.885 286.052 250.192 286.154 250.09 286.664C249.885 287.275 249.476 288.397 248.25 288.499H239.971L239.051 290.844H248.352C250.09 290.844 251.827 290.13 252.645 287.989L253.054 286.97C253.361 286.154 253.361 285.236 252.85 284.624C252.44 284.012 251.521 283.707 250.703 283.707H246.615C245.592 283.707 244.672 283.911 245.388 282.381C245.797 281.668 246.308 281.26 247.228 281.26H254.281L255.2 278.915H246.615Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M140.107 284.012C138.267 287.683 138.165 291.557 139.698 294.413C141.13 297.064 143.787 298.797 147.262 299.307C154.724 300.326 163.617 295.228 167.092 287.887C168.829 284.217 168.932 280.444 167.399 277.487C165.967 274.836 163.31 273.103 159.835 272.695C152.475 271.676 143.582 276.672 140.107 284.012Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M143.582 285.848C142.458 289.111 142.663 292.169 144.298 294.413C145.831 296.554 148.285 297.675 151.351 297.675C157.79 297.675 164.945 292.374 167.194 285.95C168.318 282.687 168.114 279.628 166.478 277.385C164.945 275.244 162.492 274.123 159.426 274.123C152.986 274.123 145.831 279.424 143.582 285.848Z" fill="#0070CC"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M154.52 288.295L153.804 290.13C153.804 290.232 153.702 290.436 153.497 290.436H152.578C152.578 290.436 152.578 290.436 152.475 290.334V290.232L153.191 288.295H152.578L151.862 290.232C151.862 290.334 151.862 290.538 151.964 290.64C152.066 290.844 152.169 290.844 152.475 290.844H153.395C153.906 290.844 154.315 290.538 154.417 290.334L155.133 288.295H154.52Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M150.022 288.295C149.613 288.295 149.205 288.601 149.102 288.805L148.489 290.232C148.489 290.334 148.489 290.538 148.591 290.64C148.694 290.844 148.898 290.844 149.102 290.844H150.124C150.533 290.844 150.942 290.64 151.044 290.334L151.555 288.907C151.657 288.805 151.657 288.601 151.555 288.499C151.453 288.397 151.249 288.295 151.044 288.295H150.533H150.022ZM150.022 288.805H150.84H150.942V288.907L150.431 290.13C150.431 290.232 150.329 290.436 150.124 290.436H149.307H149.205C149.102 290.334 149.102 290.334 149.205 290.232L149.307 289.926L149.613 289.009C149.716 289.009 149.716 288.805 150.022 288.805Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M156.87 288.295C156.462 288.295 155.951 288.397 155.951 288.703L155.031 290.844H155.746C155.746 290.844 156.053 290.13 156.053 290.028H156.768C156.87 290.028 157.177 290.028 157.381 290.232L157.79 290.844H158.608L158.404 290.64C158.404 290.64 158.199 290.13 157.994 290.028L157.892 289.926C158.199 289.926 158.505 289.722 158.505 289.62L158.915 288.703C158.915 288.703 158.915 288.601 158.813 288.499C158.711 288.397 158.403 288.295 158.097 288.295H157.586H156.87ZM156.87 288.703H157.892C158.199 288.703 158.199 288.805 158.199 288.805L157.892 289.416C157.892 289.416 157.79 289.518 157.586 289.518H156.462C156.257 289.518 156.257 289.416 156.257 289.416L156.462 288.907C156.564 288.805 156.666 288.703 156.87 288.703Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M147.773 288.295L147.364 289.314H145.933L146.24 288.295H145.627L144.605 290.844H145.32L145.729 289.824H147.16L146.853 290.844H147.467L148.489 288.295H147.773Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M155.235 286.664L155.644 285.644H148.898C147.875 285.644 148.693 283.911 149.716 283.911H153.191C153.804 283.911 154.417 283.911 155.031 283.503C155.644 282.993 156.155 282.381 156.462 281.77L156.666 281.056C157.177 279.934 156.666 278.915 155.133 278.915H149.818L149.102 280.546H153.906C155.235 280.546 154.724 281.158 154.622 281.566C154.417 282.177 153.804 282.279 153.089 282.279H149.92C149.307 282.279 148.693 282.483 147.978 282.993C147.365 283.401 146.853 284.012 146.649 284.624L146.342 285.338C146.138 285.95 146.138 286.358 146.24 286.664H155.235ZM146.24 286.664C146.444 287.173 147.058 287.377 147.773 287.377H154.928L155.235 286.664H146.24Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M163.208 286.664V286.562H165.865L166.376 284.828H163.923L164.945 282.177H162.901L161.879 284.828H159.835C158.71 284.828 158.915 284.114 158.915 284.114L161.163 278.915H159.017L156.666 284.522C156.462 284.93 156.564 285.44 156.87 285.746C157.177 286.256 157.893 286.562 158.813 286.562H161.163V286.664H163.208ZM161.163 286.664L159.528 290.844H161.572L163.208 286.664H161.163Z" fill="white"/>
+<defs>
+<linearGradient id="paint0_linear_101:35" x1="350.072" y1="249.134" x2="350.072" y2="490.134" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0.36"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint1_linear_101:35" x1="350.072" y1="179.185" x2="350.072" y2="420.185" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0.36"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint2_linear_101:35" x1="422.072" y1="213.186" x2="422.072" y2="454.186" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0.36"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint3_linear_101:35" x1="431.072" y1="138.185" x2="431.072" y2="379.185" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0.36"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint4_linear_101:35" x1="391.222" y1="188.744" x2="420.614" y2="233.306" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0"/>
+<stop offset="1" stop-color="white"/>
+</linearGradient>
+<linearGradient id="paint5_linear_101:35" x1="408.222" y1="212.744" x2="437.614" y2="257.306" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0"/>
+<stop offset="1" stop-color="white"/>
+</linearGradient>
+<linearGradient id="paint6_linear_101:35" x1="425.222" y1="236.744" x2="454.614" y2="281.306" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0"/>
+<stop offset="1" stop-color="white"/>
+</linearGradient>
+</defs>
+</svg>
diff --git a/public/img/poweredby/videos/009.png b/public/img/poweredby/videos/009.png
new file mode 100644
index 0000000..e5d39b3
--- /dev/null
+++ b/public/img/poweredby/videos/009.png
Binary files differ
diff --git a/public/img/poweredby/videos/009.svg b/public/img/poweredby/videos/009.svg
new file mode 100644
index 0000000..9319004
--- /dev/null
+++ b/public/img/poweredby/videos/009.svg
@@ -0,0 +1,83 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="335" fill="#91C2EA"/>
+<mask id="mask0_101:36" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="146" y="0" width="396" height="335">
+<rect x="146" width="396" height="335" fill="#0070CC" fill-opacity="0.6"/>
+</mask>
+<g mask="url(#mask0_101:36)">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M135.303 472.506L748.909 -184.89L749.208 -184.611L135.601 472.785L135.303 472.506Z" fill="#0070CC" fill-opacity="0.6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M362.808 -311.005C362.806 -311.006 362.805 -311.007 362.886 -311.194C362.966 -311.382 362.968 -311.381 362.97 -311.38L362.982 -311.375L363.029 -311.354C363.071 -311.336 363.133 -311.309 363.215 -311.273C363.379 -311.201 363.623 -311.092 363.943 -310.948C364.583 -310.659 365.528 -310.225 366.748 -309.647C369.188 -308.49 372.728 -306.754 377.129 -304.436C385.932 -299.798 398.181 -292.83 411.973 -283.507C439.553 -264.862 473.309 -236.791 497.983 -199.094C522.66 -161.394 538.255 -114.064 529.505 -56.9166C520.756 0.226501 487.67 67.1622 415.035 144.087C269.8 297.899 193.099 380.073 152.708 423.794C132.513 445.654 121.395 457.901 115.326 464.682C112.291 468.073 110.52 470.097 109.507 471.273C109.001 471.86 108.684 472.236 108.494 472.464C108.4 472.578 108.337 472.656 108.298 472.704C108.278 472.728 108.265 472.745 108.256 472.756L108.245 472.77L108.083 472.646C107.921 472.52 107.922 472.52 107.922 472.52L107.923 472.519L107.925 472.515L107.936 472.502C107.945 472.49 107.959 472.472 107.98 472.447C108.02 472.397 108.084 472.319 108.18 472.203C108.372 471.973 108.69 471.595 109.197 471.006C110.212 469.827 111.986 467.802 115.021 464.41C121.092 457.626 132.212 445.378 152.408 423.517C192.801 379.794 269.502 297.619 414.738 143.807C487.337 66.9201 520.369 0.0570984 529.101 -56.9785C537.833 -114.01 522.273 -161.239 497.641 -198.871C473.007 -236.506 439.299 -264.541 411.744 -283.169C397.967 -292.482 385.73 -299.442 376.939 -304.074C372.543 -306.39 369.008 -308.123 366.573 -309.278C365.356 -309.855 364.413 -310.287 363.775 -310.575C363.456 -310.719 363.213 -310.827 363.05 -310.899C362.969 -310.935 362.907 -310.962 362.866 -310.98L362.82 -311L362.808 -311.005Z" fill="#0070CC" fill-opacity="0.6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M335.439 -311.005C335.437 -311.006 335.436 -311.007 335.516 -311.194C335.597 -311.382 335.599 -311.381 335.601 -311.38L335.613 -311.375L335.66 -311.354C335.702 -311.336 335.764 -311.309 335.846 -311.273C336.01 -311.201 336.254 -311.092 336.574 -310.948C337.214 -310.659 338.159 -310.225 339.379 -309.647C341.819 -308.49 345.359 -306.754 349.76 -304.436C358.562 -299.798 370.812 -292.83 384.603 -283.507C412.184 -264.862 445.939 -236.791 470.614 -199.094C495.291 -161.394 510.886 -114.064 502.136 -56.9166C493.387 0.226501 460.301 67.1622 387.666 144.087C242.431 297.899 165.73 380.073 125.339 423.794C105.143 445.654 94.0255 457.901 87.9567 464.682C84.9223 468.073 83.1506 470.097 82.1378 471.273C81.6314 471.86 81.315 472.236 81.1254 472.464C81.0306 472.578 80.9677 472.656 80.9286 472.704C80.909 472.728 80.8955 472.745 80.887 472.756L80.8758 472.77L80.7139 472.646C80.5524 472.52 80.5527 472.52 80.5527 472.52L80.5535 472.519L80.5562 472.515L80.5667 472.502C80.5761 472.49 80.5904 472.472 80.6106 472.447C80.6511 472.397 80.7153 472.319 80.811 472.203C81.0025 471.973 81.3207 471.595 81.8282 471.006C82.8432 469.827 84.6168 467.802 87.6522 464.41C93.723 457.626 104.843 445.378 125.039 423.517C165.432 379.794 242.133 297.619 387.368 143.807C459.968 66.9201 493 0.0570984 501.732 -56.9785C510.464 -114.01 494.904 -161.239 470.272 -198.871C445.638 -236.506 411.93 -264.541 384.375 -283.169C370.598 -292.482 358.361 -299.442 349.569 -304.074C345.174 -306.39 341.639 -308.123 339.204 -309.278C337.987 -309.855 337.044 -310.287 336.406 -310.575C336.087 -310.719 335.844 -310.827 335.681 -310.899C335.6 -310.935 335.538 -310.962 335.497 -310.98L335.451 -311L335.439 -311.005Z" fill="#0070CC" fill-opacity="0.6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M308.076 -311.005C308.073 -311.006 308.072 -311.007 308.153 -311.194C308.234 -311.382 308.235 -311.381 308.238 -311.38L308.25 -311.375L308.297 -311.354C308.338 -311.336 308.4 -311.309 308.482 -311.273C308.646 -311.201 308.89 -311.092 309.21 -310.948C309.851 -310.659 310.796 -310.225 312.015 -309.647C314.455 -308.49 317.995 -306.754 322.396 -304.436C331.199 -299.798 343.448 -292.83 357.24 -283.507C384.82 -264.862 418.576 -236.791 443.25 -199.094C467.927 -161.394 483.522 -114.064 474.772 -56.9166C466.023 0.226501 432.938 67.1622 360.302 144.087C215.067 297.899 138.367 380.073 97.9754 423.794C77.7798 445.654 66.6618 457.901 60.593 464.682C57.5586 468.073 55.7869 470.097 54.7741 471.273C54.2677 471.86 53.9513 472.236 53.7617 472.464C53.6669 472.578 53.604 472.656 53.5649 472.704C53.5453 472.728 53.5318 472.745 53.5232 472.756L53.5121 472.77L53.3502 472.646C53.1887 472.52 53.189 472.52 53.189 472.52L53.1898 472.519L53.1925 472.515L53.203 472.502C53.2123 472.49 53.2267 472.472 53.2469 472.447C53.2873 472.397 53.3515 472.319 53.4473 472.203C53.6388 471.973 53.9569 471.595 54.4645 471.006C55.4795 469.827 57.2531 467.802 60.2885 464.41C66.3593 457.626 77.4789 445.378 97.6753 423.517C138.068 379.794 214.769 297.619 360.005 143.807C432.604 66.9201 465.636 0.0570984 474.368 -56.9785C483.1 -114.01 467.54 -161.239 442.908 -198.871C418.274 -236.506 384.566 -264.541 357.011 -283.169C343.234 -292.482 330.997 -299.442 322.206 -304.074C317.81 -306.39 314.275 -308.123 311.84 -309.278C310.623 -309.855 309.68 -310.287 309.042 -310.575C308.723 -310.719 308.48 -310.827 308.317 -310.899C308.236 -310.935 308.174 -310.962 308.133 -310.98L308.087 -311L308.076 -311.005Z" fill="#0070CC" fill-opacity="0.6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M275.23 -311.005C275.227 -311.006 275.226 -311.007 275.307 -311.194C275.388 -311.382 275.389 -311.381 275.392 -311.38L275.404 -311.375L275.451 -311.354C275.492 -311.336 275.554 -311.309 275.636 -311.273C275.8 -311.201 276.044 -311.092 276.364 -310.948C277.005 -310.659 277.95 -310.225 279.169 -309.647C281.609 -308.49 285.149 -306.754 289.55 -304.436C298.353 -299.798 310.602 -292.83 324.394 -283.507C351.974 -264.862 385.73 -236.791 410.404 -199.094C435.081 -161.394 450.676 -114.064 441.926 -56.9166C433.177 0.226501 400.091 67.1622 327.456 144.087C182.221 297.899 105.521 380.073 65.1294 423.794C44.9337 445.654 33.8157 457.901 27.7469 464.682C24.7125 468.073 22.9408 470.097 21.928 471.273C21.4216 471.86 21.1052 472.236 20.9156 472.464C20.8209 472.578 20.7579 472.656 20.7188 472.704C20.6993 472.728 20.6857 472.745 20.6772 472.756L20.666 472.77L20.5041 472.646C20.3426 472.52 20.343 472.52 20.343 472.52L20.3437 472.519L20.3464 472.515L20.3569 472.502C20.3663 472.49 20.3806 472.472 20.4008 472.447C20.4413 472.397 20.5055 472.319 20.6012 472.203C20.7927 471.973 21.1109 471.595 21.6184 471.006C22.6335 469.827 24.407 467.802 27.4424 464.41C33.5132 457.626 44.6329 445.378 64.8292 423.517C105.222 379.794 181.923 297.619 327.159 143.807C399.758 66.9201 432.79 0.0570984 441.522 -56.9785C450.254 -114.01 434.694 -161.239 410.062 -198.871C385.428 -236.506 351.72 -264.541 324.165 -283.169C310.388 -292.482 298.151 -299.442 289.36 -304.074C284.964 -306.39 281.429 -308.123 278.994 -309.278C277.777 -309.855 276.834 -310.287 276.196 -310.575C275.877 -310.719 275.634 -310.827 275.471 -310.899C275.39 -310.935 275.328 -310.962 275.287 -310.98L275.241 -311L275.23 -311.005Z" fill="#0070CC" fill-opacity="0.6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M153.911 477.98L767.517 -179.416L767.816 -179.137L154.209 478.259L153.911 477.98Z" fill="#0070CC" fill-opacity="0.6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M172.524 483.453L786.13 -173.943L786.429 -173.664L172.823 483.732L172.524 483.453Z" fill="#0070CC" fill-opacity="0.6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M191.137 488.927L804.743 -168.469L805.042 -168.191L191.436 489.205L191.137 488.927Z" fill="#0070CC" fill-opacity="0.6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M209.751 494.401L823.357 -162.995L823.656 -162.717L210.049 494.679L209.751 494.401Z" fill="#0070CC" fill-opacity="0.6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M228.364 499.874L841.97 -157.522L842.269 -157.243L228.663 500.153L228.364 499.874Z" fill="#0070CC" fill-opacity="0.6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M246.967 505.348L860.573 -152.048L860.871 -151.769L247.265 505.627L246.967 505.348Z" fill="#0070CC" fill-opacity="0.6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M265.58 510.822L879.186 -146.574L879.485 -146.295L265.879 511.101L265.58 510.822Z" fill="#0070CC" fill-opacity="0.6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M284.193 516.296L897.799 -141.1L898.098 -140.821L284.492 516.575L284.193 516.296Z" fill="#0070CC" fill-opacity="0.6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M302.796 521.769L916.402 -135.627L916.701 -135.348L303.095 522.048L302.796 521.769Z" fill="#0070CC" fill-opacity="0.6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M321.409 527.243L935.015 -130.153L935.314 -129.874L321.708 527.522L321.409 527.243Z" fill="#0070CC" fill-opacity="0.6"/>
+<path d="M297.418 170.364L302.817 175.07L304.175 168.166L297.418 170.364Z" fill="#0070CC" fill-opacity="0.6"/>
+<path d="M380.133 147.456L385.899 151.705L386.687 144.713L380.133 147.456Z" fill="#0070CC" fill-opacity="0.6"/>
+<path d="M432.81 173.837L438.204 178.551L439.57 171.648L432.81 173.837Z" fill="#0070CC" fill-opacity="0.6"/>
+<path d="M439.941 293.133L445.292 297.896L446.721 291.006L439.941 293.133Z" fill="#0070CC" fill-opacity="0.6"/>
+<path d="M424.468 396.552L418.99 391.937L417.748 398.863L424.468 396.552Z" fill="#0070CC" fill-opacity="0.6"/>
+<path d="M567.33 167.202L561.852 162.587L560.611 169.513L567.33 167.202Z" fill="#0070CC" fill-opacity="0.6"/>
+<path d="M414.297 73.021L420.503 76.5979L420.503 69.5614L414.297 73.021Z" fill="#0070CC" fill-opacity="0.6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M135.303 472.506L748.909 -184.89L749.208 -184.611L135.601 472.785L135.303 472.506Z" stroke="#0070CC"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M362.808 -311.005C362.806 -311.006 362.805 -311.007 362.886 -311.194C362.966 -311.382 362.968 -311.381 362.97 -311.38L362.982 -311.375L363.029 -311.354C363.071 -311.336 363.133 -311.309 363.215 -311.273C363.379 -311.201 363.623 -311.092 363.943 -310.948C364.583 -310.659 365.528 -310.225 366.748 -309.647C369.188 -308.49 372.728 -306.754 377.129 -304.436C385.932 -299.798 398.181 -292.83 411.973 -283.507C439.553 -264.862 473.309 -236.791 497.983 -199.094C522.66 -161.394 538.255 -114.064 529.505 -56.9166C520.756 0.226501 487.67 67.1622 415.035 144.087C269.8 297.899 193.099 380.073 152.708 423.794C132.513 445.654 121.395 457.901 115.326 464.682C112.291 468.073 110.52 470.097 109.507 471.273C109.001 471.86 108.684 472.236 108.494 472.464C108.4 472.578 108.337 472.656 108.298 472.704C108.278 472.728 108.265 472.745 108.256 472.756L108.245 472.77L108.083 472.646C107.921 472.52 107.922 472.52 107.922 472.52L107.923 472.519L107.925 472.515L107.936 472.502C107.945 472.49 107.959 472.472 107.98 472.447C108.02 472.397 108.084 472.319 108.18 472.203C108.372 471.973 108.69 471.595 109.197 471.006C110.212 469.827 111.986 467.802 115.021 464.41C121.092 457.626 132.212 445.378 152.408 423.517C192.801 379.794 269.502 297.619 414.738 143.807C487.337 66.9201 520.369 0.0570984 529.101 -56.9785C537.833 -114.01 522.273 -161.239 497.641 -198.871C473.007 -236.506 439.299 -264.541 411.744 -283.169C397.967 -292.482 385.73 -299.442 376.939 -304.074C372.543 -306.39 369.008 -308.123 366.573 -309.278C365.356 -309.855 364.413 -310.287 363.775 -310.575C363.456 -310.719 363.213 -310.827 363.05 -310.899C362.969 -310.935 362.907 -310.962 362.866 -310.98L362.82 -311L362.808 -311.005Z" stroke="#0070CC"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M335.439 -311.005C335.437 -311.006 335.436 -311.007 335.516 -311.194C335.597 -311.382 335.599 -311.381 335.601 -311.38L335.613 -311.375L335.66 -311.354C335.702 -311.336 335.764 -311.309 335.846 -311.273C336.01 -311.201 336.254 -311.092 336.574 -310.948C337.214 -310.659 338.159 -310.225 339.379 -309.647C341.819 -308.49 345.359 -306.754 349.76 -304.436C358.562 -299.798 370.812 -292.83 384.603 -283.507C412.184 -264.862 445.939 -236.791 470.614 -199.094C495.291 -161.394 510.886 -114.064 502.136 -56.9166C493.387 0.226501 460.301 67.1622 387.666 144.087C242.431 297.899 165.73 380.073 125.339 423.794C105.143 445.654 94.0255 457.901 87.9567 464.682C84.9223 468.073 83.1506 470.097 82.1378 471.273C81.6314 471.86 81.315 472.236 81.1254 472.464C81.0306 472.578 80.9677 472.656 80.9286 472.704C80.909 472.728 80.8955 472.745 80.887 472.756L80.8758 472.77L80.7139 472.646C80.5524 472.52 80.5527 472.52 80.5527 472.52L80.5535 472.519L80.5562 472.515L80.5667 472.502C80.5761 472.49 80.5904 472.472 80.6106 472.447C80.6511 472.397 80.7153 472.319 80.811 472.203C81.0025 471.973 81.3207 471.595 81.8282 471.006C82.8432 469.827 84.6168 467.802 87.6522 464.41C93.723 457.626 104.843 445.378 125.039 423.517C165.432 379.794 242.133 297.619 387.368 143.807C459.968 66.9201 493 0.0570984 501.732 -56.9785C510.464 -114.01 494.904 -161.239 470.272 -198.871C445.638 -236.506 411.93 -264.541 384.375 -283.169C370.598 -292.482 358.361 -299.442 349.569 -304.074C345.174 -306.39 341.639 -308.123 339.204 -309.278C337.987 -309.855 337.044 -310.287 336.406 -310.575C336.087 -310.719 335.844 -310.827 335.681 -310.899C335.6 -310.935 335.538 -310.962 335.497 -310.98L335.451 -311L335.439 -311.005Z" stroke="#0070CC"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M308.076 -311.005C308.073 -311.006 308.072 -311.007 308.153 -311.194C308.234 -311.382 308.235 -311.381 308.238 -311.38L308.25 -311.375L308.297 -311.354C308.338 -311.336 308.4 -311.309 308.482 -311.273C308.646 -311.201 308.89 -311.092 309.21 -310.948C309.851 -310.659 310.796 -310.225 312.015 -309.647C314.455 -308.49 317.995 -306.754 322.396 -304.436C331.199 -299.798 343.448 -292.83 357.24 -283.507C384.82 -264.862 418.576 -236.791 443.25 -199.094C467.927 -161.394 483.522 -114.064 474.772 -56.9166C466.023 0.226501 432.938 67.1622 360.302 144.087C215.067 297.899 138.367 380.073 97.9754 423.794C77.7798 445.654 66.6618 457.901 60.593 464.682C57.5586 468.073 55.7869 470.097 54.7741 471.273C54.2677 471.86 53.9513 472.236 53.7617 472.464C53.6669 472.578 53.604 472.656 53.5649 472.704C53.5453 472.728 53.5318 472.745 53.5232 472.756L53.5121 472.77L53.3502 472.646C53.1887 472.52 53.189 472.52 53.189 472.52L53.1898 472.519L53.1925 472.515L53.203 472.502C53.2123 472.49 53.2267 472.472 53.2469 472.447C53.2873 472.397 53.3515 472.319 53.4473 472.203C53.6388 471.973 53.9569 471.595 54.4645 471.006C55.4795 469.827 57.2531 467.802 60.2885 464.41C66.3593 457.626 77.4789 445.378 97.6753 423.517C138.068 379.794 214.769 297.619 360.005 143.807C432.604 66.9201 465.636 0.0570984 474.368 -56.9785C483.1 -114.01 467.54 -161.239 442.908 -198.871C418.274 -236.506 384.566 -264.541 357.011 -283.169C343.234 -292.482 330.997 -299.442 322.206 -304.074C317.81 -306.39 314.275 -308.123 311.84 -309.278C310.623 -309.855 309.68 -310.287 309.042 -310.575C308.723 -310.719 308.48 -310.827 308.317 -310.899C308.236 -310.935 308.174 -310.962 308.133 -310.98L308.087 -311L308.076 -311.005Z" stroke="#0070CC"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M275.23 -311.005C275.227 -311.006 275.226 -311.007 275.307 -311.194C275.388 -311.382 275.389 -311.381 275.392 -311.38L275.404 -311.375L275.451 -311.354C275.492 -311.336 275.554 -311.309 275.636 -311.273C275.8 -311.201 276.044 -311.092 276.364 -310.948C277.005 -310.659 277.95 -310.225 279.169 -309.647C281.609 -308.49 285.149 -306.754 289.55 -304.436C298.353 -299.798 310.602 -292.83 324.394 -283.507C351.974 -264.862 385.73 -236.791 410.404 -199.094C435.081 -161.394 450.676 -114.064 441.926 -56.9166C433.177 0.226501 400.091 67.1622 327.456 144.087C182.221 297.899 105.521 380.073 65.1294 423.794C44.9337 445.654 33.8157 457.901 27.7469 464.682C24.7125 468.073 22.9408 470.097 21.928 471.273C21.4216 471.86 21.1052 472.236 20.9156 472.464C20.8209 472.578 20.7579 472.656 20.7188 472.704C20.6993 472.728 20.6857 472.745 20.6772 472.756L20.666 472.77L20.5041 472.646C20.3426 472.52 20.343 472.52 20.343 472.52L20.3437 472.519L20.3464 472.515L20.3569 472.502C20.3663 472.49 20.3806 472.472 20.4008 472.447C20.4413 472.397 20.5055 472.319 20.6012 472.203C20.7927 471.973 21.1109 471.595 21.6184 471.006C22.6335 469.827 24.407 467.802 27.4424 464.41C33.5132 457.626 44.6329 445.378 64.8292 423.517C105.222 379.794 181.923 297.619 327.159 143.807C399.758 66.9201 432.79 0.0570984 441.522 -56.9785C450.254 -114.01 434.694 -161.239 410.062 -198.871C385.428 -236.506 351.72 -264.541 324.165 -283.169C310.388 -292.482 298.151 -299.442 289.36 -304.074C284.964 -306.39 281.429 -308.123 278.994 -309.278C277.777 -309.855 276.834 -310.287 276.196 -310.575C275.877 -310.719 275.634 -310.827 275.471 -310.899C275.39 -310.935 275.328 -310.962 275.287 -310.98L275.241 -311L275.23 -311.005Z" stroke="#0070CC"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M153.911 477.98L767.517 -179.416L767.816 -179.137L154.209 478.259L153.911 477.98Z" stroke="#0070CC"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M172.524 483.453L786.13 -173.943L786.429 -173.664L172.823 483.732L172.524 483.453Z" stroke="#0070CC"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M191.137 488.927L804.743 -168.469L805.042 -168.191L191.436 489.205L191.137 488.927Z" stroke="#0070CC"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M209.751 494.401L823.357 -162.995L823.656 -162.717L210.049 494.679L209.751 494.401Z" stroke="#0070CC"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M228.364 499.874L841.97 -157.522L842.269 -157.243L228.663 500.153L228.364 499.874Z" stroke="#0070CC"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M246.967 505.348L860.573 -152.048L860.871 -151.769L247.265 505.627L246.967 505.348Z" stroke="#0070CC"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M265.58 510.822L879.186 -146.574L879.485 -146.295L265.879 511.101L265.58 510.822Z" stroke="#0070CC"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M284.193 516.296L897.799 -141.1L898.098 -140.821L284.492 516.575L284.193 516.296Z" stroke="#0070CC"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M302.796 521.769L916.402 -135.627L916.701 -135.348L303.095 522.048L302.796 521.769Z" stroke="#0070CC"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M321.409 527.243L935.015 -130.153L935.314 -129.874L321.708 527.522L321.409 527.243Z" stroke="#0070CC"/>
+<path d="M297.418 170.364L302.817 175.07L304.175 168.166L297.418 170.364Z" stroke="#0070CC"/>
+<path d="M380.133 147.456L385.899 151.705L386.687 144.713L380.133 147.456Z" stroke="#0070CC"/>
+<path d="M432.81 173.837L438.204 178.551L439.57 171.648L432.81 173.837Z" stroke="#0070CC"/>
+<path d="M439.941 293.133L445.292 297.896L446.721 291.006L439.941 293.133Z" stroke="#0070CC"/>
+<path d="M424.468 396.552L418.99 391.937L417.748 398.863L424.468 396.552Z" stroke="#0070CC"/>
+<path d="M567.33 167.202L561.852 162.587L560.611 169.513L567.33 167.202Z" stroke="#0070CC"/>
+<path d="M414.297 73.021L420.503 76.5979L420.503 69.5614L414.297 73.021Z" stroke="#0070CC"/>
+</g>
+<path d="M72.2967 291.462V290.457C71.5985 291.552 70.6497 292.252 69.4503 292.521C68.2509 292.79 67.0694 292.701 65.9058 292.234C64.7243 291.768 63.7218 290.888 62.8804 289.614C62.0391 288.34 61.6094 286.671 61.6094 284.589C61.6094 282.148 62.1644 280.192 63.2743 278.667C64.3842 277.159 66.1743 276.406 68.6447 276.406C70.5244 276.406 72.2609 276.908 73.872 277.931C75.4831 278.954 76.2708 280.838 76.2708 283.584V291.875C76.2708 294.621 75.4652 296.487 73.872 297.492C72.2609 298.497 70.5244 299 68.6447 299C65.0465 299 62.8088 297.313 61.9496 293.939H66.228C66.5324 294.495 67.0157 294.908 67.6602 295.213C68.3046 295.5 68.9491 295.59 69.5935 295.446C70.238 295.303 70.8287 294.926 71.3479 294.298C71.9028 293.652 72.2072 292.719 72.2967 291.462ZM65.6015 284.697C65.6015 287.407 66.3891 288.914 67.9466 289.201C69.504 289.488 70.6676 289.129 71.4016 288.106C71.7596 287.676 72.0102 286.994 72.1713 286.079C72.3325 285.163 72.3325 284.248 72.2072 283.333C72.0639 282.435 71.7417 281.628 71.2405 280.928C70.7392 280.228 69.9874 279.869 69.0028 279.869C67.6781 279.869 66.7651 280.354 66.2996 281.341C65.8342 282.31 65.6015 283.44 65.6015 284.697Z" fill="white"/>
+<path d="M90.6097 292.396H88.551C87.9603 292.396 87.477 292.216 87.1189 291.839C86.743 291.462 86.564 290.978 86.564 290.404V282.4C86.564 281.466 86.2776 280.766 85.7047 280.336C85.1319 279.905 84.5053 279.69 83.7892 279.69C83.0911 279.69 82.4645 279.905 81.9096 280.336C81.3546 280.766 81.0861 281.448 81.0861 282.4V292.414H76.9688V283.225C76.9688 280.551 77.6669 278.774 79.0453 277.877C80.4417 276.98 81.9633 276.477 83.646 276.406C85.3646 276.406 86.9578 276.854 88.4078 277.751C89.8579 278.649 90.5739 280.479 90.5739 283.225V292.396H90.6097Z" fill="white"/>
+<path d="M91.6124 278.111H95.7298C95.7298 280.3 95.7298 279.564 95.7298 280.121V292.414H91.6124V278.111Z" fill="white"/>
+<path d="M103.284 292.395C101.995 292.467 100.599 292.449 99.0954 292.342C97.5916 292.216 96.8398 291.265 96.8398 289.452V274.144H98.9522C99.4534 274.144 99.9188 274.341 100.295 274.736C100.689 275.131 100.886 275.598 100.886 276.154V276.692H103.284V277.518C103.284 278.11 103.087 278.595 102.694 278.954C102.3 279.331 101.834 279.51 101.279 279.51H100.868V288.322C100.868 288.986 101.261 289.327 102.049 289.327H103.284V292.395Z" fill="white"/>
+<path d="M114.49 287.568H117.426C116.997 289.219 116.173 290.475 114.956 291.337C113.739 292.234 112.217 292.683 110.373 292.683C108.135 292.683 106.399 291.965 105.146 290.511C103.893 289.093 103.266 287.083 103.266 284.445C103.266 281.933 103.875 279.977 105.092 278.559C106.345 277.105 108.082 276.387 110.319 276.387C112.665 276.387 114.49 277.087 115.779 278.505C117.032 279.959 117.659 281.969 117.659 284.571C117.659 284.732 117.659 284.858 117.659 284.984C117.659 285.109 117.659 285.181 117.659 285.217C117.659 285.414 117.641 285.558 117.605 285.63H107.455C107.491 286.85 107.795 287.747 108.332 288.34C108.834 288.968 109.603 289.273 110.624 289.273C111.286 289.273 111.859 289.129 112.324 288.86C112.45 288.824 112.557 288.752 112.647 288.645C112.736 288.555 112.844 288.447 112.969 288.322C113.005 288.196 113.148 288.053 113.416 287.855C113.667 287.676 114.025 287.568 114.49 287.568ZM107.455 282.992H113.452C113.381 281.933 113.094 281.143 112.629 280.641C112.127 280.084 111.394 279.815 110.463 279.815C109.603 279.815 108.905 280.084 108.35 280.641C107.777 281.179 107.491 281.969 107.455 282.992Z" fill="white"/>
+<path d="M56.6138 270.914H58.7262C59.2812 270.914 59.7466 271.112 60.1404 271.507C60.5343 271.901 60.7312 272.368 60.7312 272.924V292.414H56.6138V270.914Z" fill="white"/>
+<path d="M91.6122 274.145H93.7246C94.2795 274.145 94.7449 274.342 95.1388 274.737C95.5326 275.132 95.7295 275.598 95.7295 276.155V277.393H91.6122V274.145Z" fill="white"/>
+<path d="M67.0154 274.36H66.3709V273.893C66.0487 274.252 65.6011 274.432 65.0462 274.432C64.527 274.432 64.0795 274.252 63.7036 273.911C63.3097 273.535 63.1128 273.068 63.1128 272.494C63.1128 271.901 63.3276 271.417 63.7394 271.04C64.1153 270.681 64.5808 270.52 65.0999 270.52C65.6369 270.52 66.0666 270.699 66.3888 271.076V270.609H67.0333V274.36H67.0154ZM66.353 272.494C66.353 272.135 66.2277 271.83 65.995 271.56C65.7444 271.309 65.4579 271.184 65.0999 271.184C64.724 271.184 64.4196 271.309 64.1511 271.578C63.9005 271.83 63.7752 272.099 63.7752 272.386C63.7752 272.763 63.8826 273.086 64.1153 273.355C64.348 273.642 64.6524 273.768 65.0283 273.768C65.3863 273.768 65.6906 273.642 65.9592 273.391C66.2277 273.158 66.353 272.853 66.353 272.494Z" fill="white"/>
+<path d="M71.6697 272.386C71.6697 272.978 71.4907 273.463 71.1327 273.84C70.7568 274.234 70.2913 274.432 69.7006 274.432C69.1635 274.432 68.7518 274.252 68.4296 273.911V275.598H67.7493V270.591H68.3938V271.04C68.5549 270.861 68.7518 270.735 68.9487 270.645C69.1635 270.555 69.3783 270.52 69.629 270.52C70.1481 270.52 70.6135 270.699 71.0074 271.04C71.4549 271.399 71.6697 271.848 71.6697 272.386ZM70.9716 272.476C70.9716 272.117 70.8463 271.812 70.5956 271.56C70.345 271.309 70.0228 271.184 69.6648 271.184C69.2888 271.184 68.9845 271.327 68.7339 271.596C68.5012 271.848 68.3938 272.153 68.3938 272.494C68.3938 272.817 68.4833 273.086 68.6802 273.337C68.9129 273.624 69.253 273.768 69.7006 273.768C70.0586 273.768 70.3629 273.642 70.6135 273.391C70.8642 273.158 70.9716 272.853 70.9716 272.476Z" fill="white"/>
+<path d="M76.1636 274.36H75.5192V273.893C75.1969 274.252 74.7494 274.432 74.1944 274.432C73.6753 274.432 73.2278 274.252 72.8518 273.911C72.458 273.535 72.2611 273.068 72.2611 272.494C72.2611 271.901 72.4759 271.417 72.8876 271.04C73.2636 270.681 73.729 270.52 74.2481 270.52C74.7852 270.52 75.2148 270.699 75.5371 271.076V270.609H76.1815V274.36H76.1636ZM75.5192 272.494C75.5192 272.135 75.3938 271.83 75.1611 271.56C74.9105 271.309 74.6241 271.184 74.2661 271.184C73.8901 271.184 73.5858 271.309 73.3173 271.578C73.0666 271.83 72.9413 272.099 72.9413 272.386C72.9413 272.763 73.0487 273.086 73.2815 273.355C73.5142 273.642 73.8185 273.768 74.1944 273.768C74.5525 273.768 74.8568 273.642 75.1253 273.391C75.3759 273.158 75.5192 272.853 75.5192 272.494Z" fill="white"/>
+<path d="M80.656 273.122C80.4412 273.552 80.1905 273.875 79.9041 274.091C79.5819 274.324 79.2059 274.45 78.7405 274.45C78.2214 274.45 77.7559 274.27 77.3621 273.893C76.9504 273.499 76.7355 273.032 76.7355 272.458H76.7713C76.7713 272.458 76.7713 272.476 76.7534 272.494C76.7534 271.901 76.9504 271.417 77.3621 271.04C77.7201 270.699 78.1498 270.52 78.651 270.52C79.1164 270.52 79.5103 270.645 79.8683 270.878C80.2084 271.112 80.477 271.453 80.6381 271.883H79.8862C79.6356 271.435 79.2238 271.201 78.6689 271.201C78.3109 271.201 78.0244 271.327 77.7917 271.578C77.559 271.83 77.4337 272.135 77.4337 272.494C77.4337 272.853 77.559 273.176 77.8096 273.427C78.0602 273.678 78.3646 273.804 78.7226 273.804C78.9553 273.804 79.188 273.75 79.4029 273.624C79.6177 273.499 79.7788 273.337 79.9041 273.14H80.656V273.122Z" fill="white"/>
+<path d="M84.5411 274.36H83.8609V272.206C83.8609 271.919 83.7713 271.668 83.5744 271.488C83.3954 271.309 83.1448 271.201 82.8584 271.201C82.5719 271.201 82.3392 271.291 82.1602 271.452C81.9812 271.632 81.8917 271.847 81.8917 272.134V274.36H81.2114V269.353H81.8917V270.914C82.1602 270.645 82.4824 270.519 82.8763 270.519C83.3059 270.519 83.6818 270.663 84.0041 270.968C84.3442 271.291 84.5232 271.704 84.5232 272.206V274.36H84.5411Z" fill="white"/>
+<path d="M88.9808 272.745H85.8122C85.8659 273.068 86.027 273.319 86.2776 273.516C86.5103 273.678 86.761 273.768 87.0295 273.768C87.2801 273.768 87.5128 273.696 87.7456 273.552C87.9783 273.409 88.1394 273.211 88.2289 272.978H88.9271C88.748 273.481 88.4616 273.839 88.0857 274.091C87.7635 274.306 87.4054 274.414 87.0116 274.414C86.5103 274.414 86.0807 274.234 85.7227 273.875C85.3467 273.481 85.1498 273.014 85.1498 272.44C85.1498 271.847 85.3467 271.363 85.7585 271.004C86.1344 270.663 86.5641 270.501 87.0653 270.501C87.5665 270.501 88.0141 270.663 88.3721 271.004C88.7838 271.381 88.9987 271.901 88.9987 272.547V272.745H88.9808ZM88.2826 272.117C88.211 271.829 88.0499 271.614 87.8172 271.435C87.5844 271.255 87.3338 271.165 87.0474 271.165C86.6894 271.165 86.385 271.291 86.1523 271.524C85.9912 271.686 85.8659 271.883 85.8122 272.117H88.2826Z" fill="white"/>
+<path d="M38.7481 269.102C38.7481 269.102 26.3065 276.711 38.032 284.266C40.2876 285.738 48.4686 289.83 48.2359 293.616C48.2359 293.616 53.1946 286.258 45.9445 281.628C38.4974 276.89 36.6357 271.83 38.7481 269.102Z" fill="white"/>
+<path d="M34.416 283.638C34.416 283.638 29.9764 290.386 38.7124 291.768C39.5717 291.876 45.8909 292.54 47.5378 294.621C47.5378 294.621 47.3946 291.032 42.239 288.914C37.1012 286.797 34.9889 286.276 34.416 283.638Z" fill="white"/>
+<path d="M51.6014 276.549C46.2667 270.95 44.7809 267.487 47.0723 263C47.0723 263 31.1578 269.138 46.8754 280.031C52.4964 283.925 51.5656 287.909 51.5656 288.053C52.4427 287.138 56.936 282.149 51.6014 276.549Z" fill="white"/>
+<path d="M148.895 291.062V290.032C148.187 291.154 147.226 291.871 146.01 292.147C144.794 292.423 143.597 292.331 142.417 291.853C141.22 291.375 140.204 290.473 139.351 289.167C138.498 287.861 138.063 286.15 138.063 284.017C138.063 281.515 138.625 279.51 139.75 277.946C140.875 276.401 142.689 275.628 145.193 275.628C147.099 275.628 148.858 276.143 150.491 277.192C152.124 278.241 152.923 280.172 152.923 282.986V291.485C152.923 294.3 152.106 296.213 150.491 297.243C148.858 298.273 147.099 298.788 145.193 298.788C141.546 298.788 139.278 297.059 138.407 293.601H142.744C143.052 294.171 143.542 294.594 144.195 294.907C144.849 295.201 145.502 295.293 146.155 295.146C146.808 294.999 147.407 294.612 147.933 293.968C148.496 293.306 148.804 292.35 148.895 291.062ZM142.109 284.127C142.109 286.905 142.907 288.45 144.486 288.744C146.064 289.039 147.244 288.671 147.988 287.622C148.35 287.181 148.604 286.482 148.768 285.543C148.931 284.605 148.931 283.667 148.804 282.729C148.659 281.809 148.332 280.981 147.824 280.264C147.316 279.547 146.554 279.179 145.556 279.179C144.214 279.179 143.288 279.675 142.817 280.687C142.345 281.68 142.109 282.839 142.109 284.127Z" fill="white"/>
+<path d="M167.457 292.019H165.371C164.772 292.019 164.282 291.835 163.919 291.448C163.538 291.062 163.357 290.565 163.357 289.977V281.772C163.357 280.816 163.066 280.098 162.486 279.657C161.905 279.215 161.27 278.995 160.544 278.995C159.837 278.995 159.202 279.215 158.639 279.657C158.077 280.098 157.805 280.797 157.805 281.772V292.037H153.631V282.619C153.631 279.878 154.339 278.057 155.736 277.137C157.151 276.217 158.694 275.702 160.399 275.628C162.141 275.628 163.756 276.088 165.226 277.008C166.695 277.928 167.421 279.804 167.421 282.619V292.019H167.457Z" fill="white"/>
+<path d="M168.473 277.376H172.646C172.646 279.621 172.646 278.866 172.646 279.437V292.037H168.473V277.376Z" fill="white"/>
+<path d="M180.304 292.019C178.997 292.093 177.582 292.075 176.058 291.964C174.534 291.835 173.772 290.861 173.772 289.003V273.312H175.913C176.421 273.312 176.893 273.514 177.274 273.919C177.673 274.323 177.872 274.802 177.872 275.372V275.924H180.304V276.77C180.304 277.377 180.104 277.874 179.705 278.241C179.306 278.628 178.834 278.812 178.272 278.812H177.854V287.844C177.854 288.524 178.253 288.874 179.052 288.874H180.304V292.019Z" fill="white"/>
+<path d="M191.661 287.07H194.637C194.201 288.763 193.367 290.05 192.133 290.933C190.899 291.853 189.357 292.313 187.488 292.313C185.22 292.313 183.46 291.577 182.19 290.087C180.92 288.634 180.285 286.574 180.285 283.87C180.285 281.294 180.902 279.289 182.135 277.836C183.406 276.346 185.166 275.61 187.434 275.61C189.81 275.61 191.661 276.328 192.967 277.781C194.238 279.271 194.873 281.331 194.873 283.998C194.873 284.164 194.873 284.293 194.873 284.421C194.873 284.55 194.873 284.624 194.873 284.661C194.873 284.863 194.854 285.01 194.818 285.084H184.53C184.567 286.335 184.875 287.254 185.42 287.861C185.928 288.505 186.708 288.818 187.742 288.818C188.413 288.818 188.994 288.671 189.466 288.395C189.593 288.358 189.702 288.284 189.792 288.174C189.883 288.082 189.992 287.972 190.119 287.843C190.155 287.714 190.3 287.567 190.572 287.365C190.826 287.181 191.189 287.07 191.661 287.07ZM184.53 282.38H190.609C190.536 281.294 190.246 280.485 189.774 279.97C189.266 279.4 188.522 279.124 187.579 279.124C186.708 279.124 186 279.4 185.438 279.97C184.857 280.522 184.567 281.331 184.53 282.38Z" fill="white"/>
+<path d="M133 270H135.141C135.703 270 136.175 270.202 136.574 270.607C136.974 271.012 137.173 271.49 137.173 272.06V292.037H133V270Z" fill="white"/>
+<path d="M168.472 273.312H170.613C171.176 273.312 171.647 273.514 172.046 273.919C172.446 274.324 172.645 274.802 172.645 275.372V276.642H168.472V273.312Z" fill="white"/>
+<path d="M161.037 300.785V300.463L166.189 297.273L166.605 297.962L162.262 300.574L166.616 303.142L166.2 303.809L161.037 300.785Z" fill="white"/>
+<path d="M171.677 302.675C171.677 302.438 171.586 302.256 171.403 302.13C171.221 301.997 170.995 301.893 170.725 301.819C170.455 301.737 170.16 301.663 169.839 301.597C169.525 301.53 169.234 301.441 168.964 301.33C168.694 301.219 168.468 301.071 168.285 300.885C168.103 300.693 168.012 300.426 168.012 300.085C168.012 299.803 168.07 299.563 168.187 299.363C168.311 299.162 168.471 298.999 168.668 298.873C168.865 298.74 169.095 298.644 169.358 298.584C169.62 298.518 169.894 298.484 170.178 298.484C170.688 298.484 171.126 298.551 171.491 298.685C171.863 298.81 172.158 298.944 172.377 299.085L172.027 299.785C171.786 299.652 171.524 299.526 171.239 299.407C170.962 299.281 170.612 299.218 170.189 299.218C170.028 299.218 169.868 299.237 169.708 299.274C169.554 299.303 169.412 299.351 169.281 299.418C169.157 299.485 169.055 299.574 168.975 299.685C168.902 299.789 168.865 299.918 168.865 300.074C168.865 300.267 168.956 300.415 169.139 300.519C169.321 300.622 169.547 300.711 169.817 300.785C170.087 300.852 170.379 300.919 170.692 300.985C171.013 301.045 171.308 301.134 171.578 301.252C171.848 301.371 172.074 301.53 172.256 301.73C172.439 301.93 172.53 302.201 172.53 302.541C172.53 303.053 172.329 303.475 171.928 303.809C171.534 304.142 170.94 304.309 170.145 304.309C169.904 304.309 169.667 304.287 169.434 304.242C169.201 304.198 168.982 304.138 168.778 304.064C168.574 303.99 168.388 303.909 168.22 303.82C168.052 303.723 167.914 303.627 167.804 303.531L168.242 302.808C168.329 302.897 168.446 302.99 168.592 303.086C168.738 303.175 168.898 303.257 169.073 303.331C169.248 303.405 169.434 303.464 169.631 303.508C169.835 303.553 170.039 303.575 170.244 303.575C170.441 303.575 170.623 303.56 170.791 303.531C170.966 303.494 171.119 303.442 171.25 303.375C171.381 303.301 171.483 303.208 171.556 303.097C171.637 302.979 171.677 302.838 171.677 302.675Z" fill="white"/>
+<path d="M177.197 298.618H178.75V302.408C178.75 302.771 178.772 303.119 178.816 303.453H179.549V304.175H178.094L178.061 303.231H178.017C177.828 303.549 177.576 303.809 177.262 304.009C176.949 304.209 176.57 304.309 176.125 304.309C175.789 304.309 175.501 304.268 175.261 304.186C175.027 304.112 174.834 303.979 174.681 303.786C174.528 303.594 174.415 303.338 174.342 303.019C174.269 302.693 174.232 302.29 174.232 301.808V299.363H173.499V298.618H175.085V301.63C175.085 301.934 175.096 302.208 175.118 302.453C175.147 302.69 175.202 302.893 175.282 303.064C175.363 303.227 175.479 303.353 175.632 303.442C175.793 303.523 176.004 303.564 176.267 303.564C176.646 303.564 176.974 303.438 177.251 303.186C177.536 302.934 177.751 302.619 177.897 302.241V299.363H177.197V298.618Z" fill="white"/>
+<path d="M182.432 304.175V300.474C182.432 300.318 182.425 300.17 182.411 300.029C182.403 299.881 182.378 299.752 182.334 299.64C182.298 299.522 182.239 299.429 182.159 299.363C182.086 299.296 181.988 299.263 181.864 299.263C181.616 299.263 181.404 299.366 181.229 299.574C181.061 299.781 180.934 300.041 180.846 300.352V304.175H180.015V298.618H180.584L180.748 299.296H180.792C180.865 299.185 180.934 299.081 180.999 298.985C181.072 298.881 181.153 298.792 181.24 298.718C181.335 298.644 181.444 298.588 181.568 298.551C181.692 298.507 181.849 298.484 182.039 298.484C182.148 298.484 182.261 298.503 182.378 298.54C182.494 298.57 182.6 298.622 182.695 298.696C182.797 298.762 182.885 298.855 182.958 298.974C183.031 299.092 183.078 299.237 183.1 299.407C183.268 299.118 183.453 298.892 183.658 298.729C183.869 298.566 184.157 298.484 184.522 298.484C184.763 298.484 184.956 298.525 185.102 298.607C185.255 298.688 185.372 298.807 185.452 298.962C185.539 299.111 185.598 299.292 185.627 299.507C185.663 299.715 185.681 299.948 185.681 300.207V304.175H184.85V300.396C184.85 300.241 184.843 300.096 184.828 299.963C184.814 299.822 184.784 299.7 184.741 299.596C184.704 299.492 184.65 299.411 184.577 299.351C184.511 299.292 184.42 299.263 184.303 299.263C184.048 299.263 183.833 299.366 183.658 299.574C183.483 299.781 183.351 300.078 183.264 300.463V304.175H182.432Z" fill="white"/>
+<path d="M188.773 304.175V300.474C188.773 300.318 188.766 300.17 188.751 300.029C188.744 299.881 188.718 299.752 188.675 299.64C188.638 299.522 188.58 299.429 188.5 299.363C188.427 299.296 188.328 299.263 188.204 299.263C187.956 299.263 187.745 299.366 187.57 299.574C187.402 299.781 187.274 300.041 187.187 300.352V304.175H186.355V298.618H186.924L187.088 299.296H187.132C187.205 299.185 187.274 299.081 187.34 298.985C187.413 298.881 187.493 298.792 187.581 298.718C187.675 298.644 187.785 298.588 187.909 298.551C188.033 298.507 188.19 298.484 188.379 298.484C188.489 298.484 188.602 298.503 188.718 298.54C188.835 298.57 188.941 298.622 189.036 298.696C189.138 298.762 189.225 298.855 189.298 298.974C189.371 299.092 189.418 299.237 189.44 299.407C189.608 299.118 189.794 298.892 189.998 298.729C190.21 298.566 190.498 298.484 190.862 298.484C191.103 298.484 191.296 298.525 191.442 298.607C191.595 298.688 191.712 298.807 191.792 298.962C191.88 299.111 191.938 299.292 191.967 299.507C192.004 299.715 192.022 299.948 192.022 300.207V304.175H191.191V300.396C191.191 300.241 191.183 300.096 191.169 299.963C191.154 299.822 191.125 299.7 191.081 299.596C191.045 299.492 190.99 299.411 190.917 299.351C190.852 299.292 190.76 299.263 190.644 299.263C190.388 299.263 190.173 299.366 189.998 299.574C189.823 299.781 189.692 300.078 189.604 300.463V304.175H188.773Z" fill="white"/>
+<path d="M193.396 304.175V303.431H195.3V299.363H193.396V298.618H196.175V303.431H198.034V304.175H193.396ZM195.004 297.04C195.004 296.839 195.07 296.669 195.201 296.528C195.332 296.38 195.5 296.306 195.704 296.306C195.916 296.306 196.091 296.38 196.229 296.528C196.375 296.669 196.448 296.839 196.448 297.04C196.448 297.232 196.375 297.395 196.229 297.529C196.091 297.662 195.916 297.729 195.704 297.729C195.5 297.729 195.332 297.662 195.201 297.529C195.07 297.395 195.004 297.232 195.004 297.04Z" fill="white"/>
+<path d="M198.927 298.618H200.229V297.517L201.082 297.273V298.618H204.003V299.363H201.082V301.986C201.082 302.527 201.21 302.927 201.465 303.186C201.728 303.445 202.1 303.575 202.581 303.575C202.909 303.575 203.194 303.512 203.434 303.386C203.682 303.26 203.905 303.123 204.102 302.975L204.386 303.631C204.131 303.838 203.824 304.005 203.467 304.131C203.117 304.257 202.756 304.32 202.384 304.32C202.092 304.32 201.815 304.275 201.553 304.186C201.297 304.105 201.071 303.975 200.874 303.797C200.678 303.62 200.521 303.394 200.404 303.119C200.287 302.838 200.229 302.504 200.229 302.119V299.363H198.927V298.618Z" fill="white"/>
+<path d="M205.837 303.809L205.421 303.142L209.775 300.574L205.432 297.962L205.848 297.273L211 300.463V300.785L205.837 303.809Z" fill="white"/>
+</svg>
diff --git a/public/img/poweredby/videos/010.png b/public/img/poweredby/videos/010.png
new file mode 100644
index 0000000..3657bf9
--- /dev/null
+++ b/public/img/poweredby/videos/010.png
Binary files differ
diff --git a/public/img/poweredby/videos/010.svg b/public/img/poweredby/videos/010.svg
new file mode 100644
index 0000000..c9783eb
--- /dev/null
+++ b/public/img/poweredby/videos/010.svg
@@ -0,0 +1,60 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="335" fill="#91C2EA"/>
+<mask id="mask0_101:37" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="275" y="116" width="265" height="219">
+<rect x="275" y="116" width="265" height="219" fill="#91C2EA"/>
+</mask>
+<g mask="url(#mask0_101:37)">
+<path d="M367.737 231L523.211 321L523.211 351L367.737 261L367.737 231Z" fill="#BDDAF2" stroke="white"/>
+<rect width="89.8222" height="30" transform="matrix(0.865453 -0.50099 2.19725e-08 1 523.211 321)" fill="#BDDAF2" stroke="white"/>
+<path d="M445.474 186L600.948 276L523.211 321L367.737 231L445.474 186Z" fill="#BDDAF2" stroke="white"/>
+<path d="M367.737 201L445.474 246L445.474 276L367.737 231L367.737 201Z" fill="#BDDAF2" stroke="white"/>
+<rect width="89.8222" height="30" transform="matrix(0.865453 -0.50099 2.19725e-08 1 445.474 246)" fill="#BDDAF2" stroke="white"/>
+<path d="M445.474 156L523.211 201L445.474 246L367.737 201L445.474 156Z" fill="#BDDAF2" stroke="white"/>
+<path d="M367.737 171L445.474 216L445.474 246L367.737 201L367.737 171Z" fill="#BDDAF2" stroke="white"/>
+<rect width="89.8222" height="30" transform="matrix(0.865453 -0.50099 2.19725e-08 1 445.474 216)" fill="#BDDAF2" stroke="white"/>
+<path d="M445.474 126L523.211 171L445.474 216L367.737 171L445.474 126Z" fill="#BDDAF2" stroke="white"/>
+<path d="M290 276L367.737 321L367.737 351L290 306L290 276Z" fill="#BDDAF2" stroke="white"/>
+<rect width="89.8222" height="30" transform="matrix(0.865453 -0.50099 2.19725e-08 1 367.737 321)" fill="#BDDAF2" stroke="white"/>
+<path d="M367.737 231L445.474 276L367.737 321L290 276L367.737 231Z" fill="#BDDAF2" stroke="white"/>
+<path d="M290 246L367.737 291L367.737 321L290 276L290 246Z" fill="#BDDAF2" stroke="white"/>
+<rect width="89.8222" height="30" transform="matrix(0.865453 -0.50099 2.19725e-08 1 367.737 291)" fill="#BDDAF2" stroke="white"/>
+<path d="M367.737 201L445.474 246L367.737 291L290 246L367.737 201Z" fill="#BDDAF2" stroke="white"/>
+<path d="M445.474 246L523.211 291L523.211 321L445.474 276L445.474 246Z" fill="#BDDAF2" stroke="white"/>
+<rect width="89.8222" height="30" transform="matrix(0.865453 -0.50099 2.19725e-08 1 523.211 291)" fill="#BDDAF2" stroke="white"/>
+<path d="M523.211 201L600.948 246L523.211 291L445.474 246L523.211 201Z" fill="#BDDAF2" stroke="white"/>
+<path d="M367.737 321L445.474 366L445.474 396L367.737 351L367.737 321Z" fill="#BDDAF2" stroke="white"/>
+<rect width="89.8222" height="30" transform="matrix(0.865453 -0.50099 2.19725e-08 1 445.474 366)" fill="#BDDAF2" stroke="white"/>
+<path d="M445.474 276L523.211 321L445.474 366L367.737 321L445.474 276Z" fill="#BDDAF2" stroke="white"/>
+</g>
+<path d="M154.895 289.062V288.032C154.187 289.154 153.226 289.871 152.01 290.147C150.794 290.423 149.597 290.331 148.417 289.853C147.22 289.375 146.204 288.473 145.351 287.167C144.498 285.861 144.063 284.15 144.063 282.017C144.063 279.515 144.625 277.51 145.75 275.946C146.875 274.401 148.689 273.628 151.193 273.628C153.099 273.628 154.858 274.143 156.491 275.192C158.124 276.241 158.923 278.172 158.923 280.986V289.485C158.923 292.3 158.106 294.213 156.491 295.243C154.858 296.273 153.099 296.788 151.193 296.788C147.546 296.788 145.278 295.059 144.407 291.601H148.744C149.052 292.171 149.542 292.594 150.195 292.907C150.849 293.201 151.502 293.293 152.155 293.146C152.808 292.999 153.407 292.612 153.933 291.968C154.496 291.306 154.804 290.35 154.895 289.062ZM148.109 282.127C148.109 284.905 148.907 286.45 150.486 286.744C152.064 287.039 153.244 286.671 153.988 285.622C154.35 285.181 154.604 284.482 154.768 283.543C154.931 282.605 154.931 281.667 154.804 280.729C154.659 279.809 154.332 278.981 153.824 278.264C153.316 277.547 152.554 277.179 151.556 277.179C150.214 277.179 149.288 277.675 148.817 278.687C148.345 279.68 148.109 280.839 148.109 282.127Z" fill="white"/>
+<path d="M173.457 290.019H171.371C170.772 290.019 170.282 289.835 169.919 289.448C169.538 289.062 169.357 288.565 169.357 287.977V279.772C169.357 278.816 169.066 278.098 168.486 277.657C167.905 277.215 167.27 276.995 166.544 276.995C165.837 276.995 165.202 277.215 164.639 277.657C164.077 278.098 163.805 278.797 163.805 279.772V290.037H159.631V280.619C159.631 277.878 160.339 276.057 161.736 275.137C163.151 274.217 164.694 273.702 166.399 273.628C168.141 273.628 169.756 274.088 171.226 275.008C172.695 275.928 173.421 277.804 173.421 280.619V290.019H173.457Z" fill="white"/>
+<path d="M174.473 275.376H178.646C178.646 277.621 178.646 276.866 178.646 277.437V290.037H174.473V275.376Z" fill="white"/>
+<path d="M186.304 290.019C184.997 290.093 183.582 290.075 182.058 289.964C180.534 289.835 179.772 288.861 179.772 287.003V271.312H181.913C182.421 271.312 182.893 271.514 183.274 271.919C183.673 272.323 183.872 272.802 183.872 273.372V273.924H186.304V274.77C186.304 275.377 186.104 275.874 185.705 276.241C185.306 276.628 184.834 276.812 184.272 276.812H183.854V285.844C183.854 286.524 184.253 286.874 185.052 286.874H186.304V290.019Z" fill="white"/>
+<path d="M197.661 285.07H200.637C200.201 286.763 199.367 288.05 198.133 288.933C196.899 289.853 195.357 290.313 193.488 290.313C191.22 290.313 189.46 289.577 188.19 288.087C186.92 286.634 186.285 284.574 186.285 281.87C186.285 279.294 186.902 277.289 188.135 275.836C189.406 274.346 191.165 273.61 193.434 273.61C195.81 273.61 197.661 274.328 198.967 275.781C200.238 277.271 200.873 279.331 200.873 281.998C200.873 282.164 200.873 282.293 200.873 282.421C200.873 282.55 200.873 282.624 200.873 282.661C200.873 282.863 200.854 283.01 200.818 283.084H190.53C190.567 284.335 190.875 285.254 191.42 285.861C191.928 286.505 192.708 286.818 193.742 286.818C194.413 286.818 194.994 286.671 195.466 286.395C195.593 286.358 195.702 286.284 195.792 286.174C195.883 286.082 195.992 285.972 196.119 285.843C196.155 285.714 196.3 285.567 196.572 285.365C196.826 285.181 197.189 285.07 197.661 285.07ZM190.53 280.38H196.609C196.536 279.294 196.246 278.485 195.774 277.97C195.266 277.4 194.522 277.124 193.579 277.124C192.708 277.124 192 277.4 191.438 277.97C190.857 278.522 190.567 279.331 190.53 280.38Z" fill="white"/>
+<path d="M139 268H141.141C141.703 268 142.175 268.202 142.574 268.607C142.974 269.012 143.173 269.49 143.173 270.06V290.037H139V268Z" fill="white"/>
+<path d="M174.472 271.312H176.613C177.176 271.312 177.647 271.514 178.046 271.919C178.446 272.324 178.645 272.802 178.645 273.372V274.642H174.472V271.312Z" fill="white"/>
+<path d="M167.037 298.785V298.463L172.189 295.273L172.605 295.962L168.262 298.574L172.616 301.142L172.2 301.809L167.037 298.785Z" fill="white"/>
+<path d="M177.677 300.675C177.677 300.438 177.586 300.256 177.403 300.13C177.221 299.997 176.995 299.893 176.725 299.819C176.455 299.737 176.16 299.663 175.839 299.597C175.525 299.53 175.234 299.441 174.964 299.33C174.694 299.219 174.468 299.071 174.285 298.885C174.103 298.693 174.012 298.426 174.012 298.085C174.012 297.803 174.07 297.563 174.187 297.363C174.311 297.162 174.471 296.999 174.668 296.873C174.865 296.74 175.095 296.644 175.358 296.584C175.62 296.518 175.894 296.484 176.178 296.484C176.688 296.484 177.126 296.551 177.491 296.685C177.863 296.81 178.158 296.944 178.377 297.085L178.027 297.785C177.786 297.652 177.524 297.526 177.239 297.407C176.962 297.281 176.612 297.218 176.189 297.218C176.028 297.218 175.868 297.237 175.708 297.274C175.554 297.303 175.412 297.351 175.281 297.418C175.157 297.485 175.055 297.574 174.975 297.685C174.902 297.789 174.865 297.918 174.865 298.074C174.865 298.267 174.956 298.415 175.139 298.519C175.321 298.622 175.547 298.711 175.817 298.785C176.087 298.852 176.379 298.919 176.692 298.985C177.013 299.045 177.308 299.134 177.578 299.252C177.848 299.371 178.074 299.53 178.256 299.73C178.439 299.93 178.53 300.201 178.53 300.541C178.53 301.053 178.329 301.475 177.928 301.809C177.534 302.142 176.94 302.309 176.145 302.309C175.904 302.309 175.667 302.287 175.434 302.242C175.201 302.198 174.982 302.138 174.778 302.064C174.574 301.99 174.388 301.909 174.22 301.82C174.052 301.723 173.914 301.627 173.804 301.531L174.242 300.808C174.329 300.897 174.446 300.99 174.592 301.086C174.738 301.175 174.898 301.257 175.073 301.331C175.248 301.405 175.434 301.464 175.631 301.508C175.835 301.553 176.039 301.575 176.244 301.575C176.441 301.575 176.623 301.56 176.791 301.531C176.966 301.494 177.119 301.442 177.25 301.375C177.381 301.301 177.483 301.208 177.556 301.097C177.637 300.979 177.677 300.838 177.677 300.675Z" fill="white"/>
+<path d="M183.197 296.618H184.75V300.408C184.75 300.771 184.772 301.119 184.816 301.453H185.549V302.175H184.094L184.061 301.231H184.017C183.828 301.549 183.576 301.809 183.262 302.009C182.949 302.209 182.57 302.309 182.125 302.309C181.789 302.309 181.501 302.268 181.261 302.186C181.027 302.112 180.834 301.979 180.681 301.786C180.528 301.594 180.415 301.338 180.342 301.019C180.269 300.693 180.232 300.29 180.232 299.808V297.363H179.499V296.618H181.085V299.63C181.085 299.934 181.096 300.208 181.118 300.453C181.147 300.69 181.202 300.893 181.282 301.064C181.363 301.227 181.479 301.353 181.632 301.442C181.793 301.523 182.004 301.564 182.267 301.564C182.646 301.564 182.974 301.438 183.251 301.186C183.536 300.934 183.751 300.619 183.897 300.241V297.363H183.197V296.618Z" fill="white"/>
+<path d="M188.432 302.175V298.474C188.432 298.318 188.425 298.17 188.411 298.029C188.403 297.881 188.378 297.752 188.334 297.64C188.298 297.522 188.239 297.429 188.159 297.363C188.086 297.296 187.988 297.263 187.864 297.263C187.616 297.263 187.404 297.366 187.229 297.574C187.061 297.781 186.934 298.041 186.846 298.352V302.175H186.015V296.618H186.584L186.748 297.296H186.792C186.865 297.185 186.934 297.081 186.999 296.985C187.072 296.881 187.153 296.792 187.24 296.718C187.335 296.644 187.444 296.588 187.568 296.551C187.692 296.507 187.849 296.484 188.039 296.484C188.148 296.484 188.261 296.503 188.378 296.54C188.494 296.57 188.6 296.622 188.695 296.696C188.797 296.762 188.885 296.855 188.958 296.974C189.031 297.092 189.078 297.237 189.1 297.407C189.268 297.118 189.453 296.892 189.658 296.729C189.869 296.566 190.157 296.484 190.522 296.484C190.763 296.484 190.956 296.525 191.102 296.607C191.255 296.688 191.372 296.807 191.452 296.962C191.539 297.111 191.598 297.292 191.627 297.507C191.663 297.715 191.681 297.948 191.681 298.207V302.175H190.85V298.396C190.85 298.241 190.843 298.096 190.828 297.963C190.814 297.822 190.784 297.7 190.741 297.596C190.704 297.492 190.65 297.411 190.577 297.351C190.511 297.292 190.42 297.263 190.303 297.263C190.048 297.263 189.833 297.366 189.658 297.574C189.483 297.781 189.351 298.078 189.264 298.463V302.175H188.432Z" fill="white"/>
+<path d="M194.773 302.175V298.474C194.773 298.318 194.766 298.17 194.751 298.029C194.744 297.881 194.718 297.752 194.675 297.64C194.638 297.522 194.58 297.429 194.5 297.363C194.427 297.296 194.328 297.263 194.204 297.263C193.956 297.263 193.745 297.366 193.57 297.574C193.402 297.781 193.274 298.041 193.187 298.352V302.175H192.355V296.618H192.924L193.088 297.296H193.132C193.205 297.185 193.274 297.081 193.34 296.985C193.413 296.881 193.493 296.792 193.581 296.718C193.675 296.644 193.785 296.588 193.909 296.551C194.033 296.507 194.19 296.484 194.379 296.484C194.489 296.484 194.602 296.503 194.718 296.54C194.835 296.57 194.941 296.622 195.036 296.696C195.138 296.762 195.225 296.855 195.298 296.974C195.371 297.092 195.418 297.237 195.44 297.407C195.608 297.118 195.794 296.892 195.998 296.729C196.21 296.566 196.498 296.484 196.862 296.484C197.103 296.484 197.296 296.525 197.442 296.607C197.595 296.688 197.712 296.807 197.792 296.962C197.88 297.111 197.938 297.292 197.967 297.507C198.004 297.715 198.022 297.948 198.022 298.207V302.175H197.191V298.396C197.191 298.241 197.183 298.096 197.169 297.963C197.154 297.822 197.125 297.7 197.081 297.596C197.045 297.492 196.99 297.411 196.917 297.351C196.852 297.292 196.76 297.263 196.644 297.263C196.388 297.263 196.173 297.366 195.998 297.574C195.823 297.781 195.692 298.078 195.604 298.463V302.175H194.773Z" fill="white"/>
+<path d="M199.396 302.175V301.431H201.3V297.363H199.396V296.618H202.175V301.431H204.034V302.175H199.396ZM201.004 295.04C201.004 294.839 201.07 294.669 201.201 294.528C201.332 294.38 201.5 294.306 201.704 294.306C201.916 294.306 202.091 294.38 202.229 294.528C202.375 294.669 202.448 294.839 202.448 295.04C202.448 295.232 202.375 295.395 202.229 295.529C202.091 295.662 201.916 295.729 201.704 295.729C201.5 295.729 201.332 295.662 201.201 295.529C201.07 295.395 201.004 295.232 201.004 295.04Z" fill="white"/>
+<path d="M204.927 296.618H206.229V295.517L207.082 295.273V296.618H210.003V297.363H207.082V299.986C207.082 300.527 207.21 300.927 207.465 301.186C207.728 301.445 208.1 301.575 208.581 301.575C208.909 301.575 209.194 301.512 209.434 301.386C209.682 301.26 209.905 301.123 210.102 300.975L210.386 301.631C210.131 301.838 209.824 302.005 209.467 302.131C209.117 302.257 208.756 302.32 208.384 302.32C208.092 302.32 207.815 302.275 207.553 302.186C207.297 302.105 207.071 301.975 206.874 301.797C206.678 301.62 206.521 301.394 206.404 301.119C206.287 300.838 206.229 300.504 206.229 300.119V297.363H204.927V296.618Z" fill="white"/>
+<path d="M211.837 301.809L211.421 301.142L215.775 298.574L211.432 295.962L211.848 295.273L217 298.463V298.785L211.837 301.809Z" fill="white"/>
+<path d="M70.2967 287.462V286.457C69.5985 287.552 68.6497 288.252 67.4503 288.521C66.2509 288.79 65.0694 288.701 63.9058 288.234C62.7243 287.768 61.7218 286.888 60.8804 285.614C60.0391 284.34 59.6094 282.671 59.6094 280.589C59.6094 278.148 60.1644 276.192 61.2743 274.667C62.3842 273.159 64.1743 272.406 66.6447 272.406C68.5244 272.406 70.2609 272.908 71.872 273.931C73.4831 274.954 74.2708 276.838 74.2708 279.584V287.875C74.2708 290.621 73.4652 292.487 71.872 293.492C70.2609 294.497 68.5244 295 66.6447 295C63.0465 295 60.8088 293.313 59.9496 289.939H64.228C64.5324 290.495 65.0157 290.908 65.6602 291.213C66.3046 291.5 66.9491 291.59 67.5935 291.446C68.238 291.303 68.8287 290.926 69.3479 290.298C69.9028 289.652 70.2072 288.719 70.2967 287.462ZM63.6015 280.697C63.6015 283.407 64.3891 284.914 65.9466 285.201C67.504 285.488 68.6676 285.129 69.4016 284.106C69.7596 283.676 70.0102 282.994 70.1713 282.079C70.3325 281.163 70.3325 280.248 70.2072 279.333C70.0639 278.435 69.7417 277.628 69.2405 276.928C68.7392 276.228 67.9874 275.869 67.0028 275.869C65.6781 275.869 64.7651 276.354 64.2996 277.341C63.8342 278.31 63.6015 279.44 63.6015 280.697Z" fill="white"/>
+<path d="M88.6097 288.396H86.551C85.9603 288.396 85.477 288.216 85.1189 287.839C84.743 287.462 84.564 286.978 84.564 286.404V278.4C84.564 277.466 84.2776 276.766 83.7047 276.336C83.1319 275.905 82.5053 275.69 81.7892 275.69C81.0911 275.69 80.4645 275.905 79.9096 276.336C79.3546 276.766 79.0861 277.448 79.0861 278.4V288.414H74.9688V279.225C74.9688 276.551 75.6669 274.774 77.0453 273.877C78.4417 272.98 79.9633 272.477 81.646 272.406C83.3646 272.406 84.9578 272.854 86.4078 273.751C87.8579 274.649 88.5739 276.479 88.5739 279.225V288.396H88.6097Z" fill="white"/>
+<path d="M89.6124 274.111H93.7298C93.7298 276.3 93.7298 275.564 93.7298 276.121V288.414H89.6124V274.111Z" fill="white"/>
+<path d="M101.284 288.395C99.9954 288.467 98.5991 288.449 97.0954 288.342C95.5916 288.216 94.8398 287.265 94.8398 285.452V270.144H96.9522C97.4534 270.144 97.9188 270.341 98.2948 270.736C98.6886 271.131 98.8855 271.598 98.8855 272.154V272.692H101.284V273.518C101.284 274.11 101.087 274.595 100.694 274.954C100.3 275.331 99.8343 275.51 99.2794 275.51H98.8676V284.322C98.8676 284.986 99.2615 285.327 100.049 285.327H101.284V288.395Z" fill="white"/>
+<path d="M112.49 283.568H115.426C114.997 285.219 114.173 286.475 112.956 287.337C111.739 288.234 110.217 288.683 108.373 288.683C106.135 288.683 104.399 287.965 103.146 286.511C101.893 285.093 101.266 283.083 101.266 280.445C101.266 277.933 101.875 275.977 103.092 274.559C104.345 273.105 106.082 272.387 108.319 272.387C110.665 272.387 112.49 273.087 113.779 274.505C115.032 275.959 115.659 277.969 115.659 280.571C115.659 280.732 115.659 280.858 115.659 280.984C115.659 281.109 115.659 281.181 115.659 281.217C115.659 281.414 115.641 281.558 115.605 281.63H105.455C105.491 282.85 105.795 283.747 106.332 284.34C106.834 284.968 107.603 285.273 108.624 285.273C109.286 285.273 109.859 285.129 110.324 284.86C110.45 284.824 110.557 284.752 110.647 284.645C110.736 284.555 110.844 284.447 110.969 284.322C111.005 284.196 111.148 284.053 111.416 283.855C111.667 283.676 112.025 283.568 112.49 283.568ZM105.455 278.992H111.452C111.381 277.933 111.094 277.143 110.629 276.641C110.127 276.084 109.394 275.815 108.463 275.815C107.603 275.815 106.905 276.084 106.35 276.641C105.777 277.179 105.491 277.969 105.455 278.992Z" fill="white"/>
+<path d="M54.6138 266.914H56.7262C57.2812 266.914 57.7466 267.112 58.1404 267.507C58.5343 267.901 58.7312 268.368 58.7312 268.924V288.414H54.6138V266.914Z" fill="white"/>
+<path d="M89.6122 270.145H91.7246C92.2795 270.145 92.745 270.342 93.1388 270.737C93.5326 271.132 93.7295 271.598 93.7295 272.155V273.393H89.6122V270.145Z" fill="white"/>
+<path d="M65.0154 270.36H64.3709V269.893C64.0487 270.252 63.6011 270.432 63.0462 270.432C62.527 270.432 62.0795 270.252 61.7036 269.911C61.3097 269.535 61.1128 269.068 61.1128 268.494C61.1128 267.901 61.3276 267.417 61.7394 267.04C62.1153 266.681 62.5808 266.52 63.0999 266.52C63.6369 266.52 64.0666 266.699 64.3888 267.076V266.609H65.0333V270.36H65.0154ZM64.353 268.494C64.353 268.135 64.2277 267.83 63.995 267.56C63.7444 267.309 63.4579 267.184 63.0999 267.184C62.724 267.184 62.4196 267.309 62.1511 267.578C61.9005 267.83 61.7752 268.099 61.7752 268.386C61.7752 268.763 61.8826 269.086 62.1153 269.355C62.348 269.642 62.6524 269.768 63.0283 269.768C63.3863 269.768 63.6906 269.642 63.9592 269.391C64.2277 269.158 64.353 268.853 64.353 268.494Z" fill="white"/>
+<path d="M69.6697 268.386C69.6697 268.978 69.4907 269.463 69.1327 269.84C68.7568 270.234 68.2913 270.432 67.7006 270.432C67.1635 270.432 66.7518 270.252 66.4296 269.911V271.598H65.7493V266.591H66.3938V267.04C66.5549 266.861 66.7518 266.735 66.9487 266.645C67.1635 266.555 67.3783 266.52 67.629 266.52C68.1481 266.52 68.6135 266.699 69.0074 267.04C69.4549 267.399 69.6697 267.848 69.6697 268.386ZM68.9716 268.476C68.9716 268.117 68.8463 267.812 68.5956 267.56C68.345 267.309 68.0228 267.184 67.6648 267.184C67.2888 267.184 66.9845 267.327 66.7339 267.596C66.5012 267.848 66.3938 268.153 66.3938 268.494C66.3938 268.817 66.4833 269.086 66.6802 269.337C66.9129 269.624 67.253 269.768 67.7006 269.768C68.0586 269.768 68.3629 269.642 68.6135 269.391C68.8642 269.158 68.9716 268.853 68.9716 268.476Z" fill="white"/>
+<path d="M74.1636 270.36H73.5192V269.893C73.1969 270.252 72.7494 270.432 72.1944 270.432C71.6753 270.432 71.2278 270.252 70.8518 269.911C70.458 269.535 70.2611 269.068 70.2611 268.494C70.2611 267.901 70.4759 267.417 70.8876 267.04C71.2636 266.681 71.729 266.52 72.2481 266.52C72.7852 266.52 73.2148 266.699 73.5371 267.076V266.609H74.1815V270.36H74.1636ZM73.5192 268.494C73.5192 268.135 73.3938 267.83 73.1611 267.56C72.9105 267.309 72.6241 267.184 72.2661 267.184C71.8901 267.184 71.5858 267.309 71.3173 267.578C71.0666 267.83 70.9413 268.099 70.9413 268.386C70.9413 268.763 71.0487 269.086 71.2815 269.355C71.5142 269.642 71.8185 269.768 72.1944 269.768C72.5525 269.768 72.8568 269.642 73.1253 269.391C73.3759 269.158 73.5192 268.853 73.5192 268.494Z" fill="white"/>
+<path d="M78.656 269.122C78.4412 269.552 78.1905 269.875 77.9041 270.091C77.5819 270.324 77.2059 270.45 76.7405 270.45C76.2214 270.45 75.7559 270.27 75.3621 269.893C74.9504 269.499 74.7355 269.032 74.7355 268.458H74.7713C74.7713 268.458 74.7713 268.476 74.7534 268.494C74.7534 267.901 74.9504 267.417 75.3621 267.04C75.7201 266.699 76.1498 266.52 76.651 266.52C77.1164 266.52 77.5103 266.645 77.8683 266.878C78.2084 267.112 78.477 267.453 78.6381 267.883H77.8862C77.6356 267.435 77.2238 267.201 76.6689 267.201C76.3109 267.201 76.0244 267.327 75.7917 267.578C75.559 267.83 75.4337 268.135 75.4337 268.494C75.4337 268.853 75.559 269.176 75.8096 269.427C76.0602 269.678 76.3646 269.804 76.7226 269.804C76.9553 269.804 77.188 269.75 77.4029 269.624C77.6177 269.499 77.7788 269.337 77.9041 269.14H78.656V269.122Z" fill="white"/>
+<path d="M82.5411 270.36H81.8609V268.206C81.8609 267.919 81.7713 267.668 81.5744 267.488C81.3954 267.309 81.1448 267.201 80.8584 267.201C80.5719 267.201 80.3392 267.291 80.1602 267.452C79.9812 267.632 79.8917 267.847 79.8917 268.134V270.36H79.2114V265.353H79.8917V266.914C80.1602 266.645 80.4824 266.519 80.8763 266.519C81.3059 266.519 81.6818 266.663 82.0041 266.968C82.3442 267.291 82.5232 267.704 82.5232 268.206V270.36H82.5411Z" fill="white"/>
+<path d="M86.9808 268.745H83.8122C83.8659 269.068 84.027 269.319 84.2776 269.516C84.5104 269.678 84.761 269.768 85.0295 269.768C85.2801 269.768 85.5128 269.696 85.7456 269.552C85.9783 269.409 86.1394 269.211 86.2289 268.978H86.9271C86.7481 269.481 86.4616 269.839 86.0857 270.091C85.7635 270.306 85.4054 270.414 85.0116 270.414C84.5104 270.414 84.0807 270.234 83.7227 269.875C83.3468 269.481 83.1498 269.014 83.1498 268.44C83.1498 267.847 83.3468 267.363 83.7585 267.004C84.1344 266.663 84.5641 266.501 85.0653 266.501C85.5666 266.501 86.0141 266.663 86.3721 267.004C86.7839 267.381 86.9987 267.901 86.9987 268.547V268.745H86.9808ZM86.2826 268.117C86.211 267.829 86.0499 267.614 85.8172 267.435C85.5845 267.255 85.3338 267.165 85.0474 267.165C84.6894 267.165 84.385 267.291 84.1523 267.524C83.9912 267.686 83.8659 267.883 83.8122 268.117H86.2826Z" fill="white"/>
+<path d="M36.7481 265.102C36.7481 265.102 24.3065 272.711 36.032 280.266C38.2876 281.738 46.4686 285.83 46.2359 289.616C46.2359 289.616 51.1946 282.258 43.9445 277.628C36.4974 272.89 34.6357 267.83 36.7481 265.102Z" fill="white"/>
+<path d="M32.416 279.638C32.416 279.638 27.9764 286.386 36.7124 287.768C37.5717 287.876 43.8909 288.54 45.5378 290.621C45.5378 290.621 45.3946 287.032 40.239 284.914C35.1012 282.797 32.9889 282.276 32.416 279.638Z" fill="white"/>
+<path d="M49.6014 272.549C44.2667 266.95 42.7809 263.487 45.0723 259C45.0723 259 29.1578 265.138 44.8754 276.031C50.4964 279.925 49.5656 283.909 49.5656 284.053C50.4427 283.138 54.936 278.149 49.6014 272.549Z" fill="white"/>
+</svg>
diff --git a/public/img/poweredby/videos/011.png b/public/img/poweredby/videos/011.png
new file mode 100644
index 0000000..4daf5f7
--- /dev/null
+++ b/public/img/poweredby/videos/011.png
Binary files differ
diff --git a/public/img/poweredby/videos/011.svg b/public/img/poweredby/videos/011.svg
new file mode 100644
index 0000000..3b9ac73
--- /dev/null
+++ b/public/img/poweredby/videos/011.svg
@@ -0,0 +1,57 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="335" fill="#91C2EA"/>
+<mask id="mask0_101:40" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="251" y="57" width="290" height="276">
+<rect x="251" y="57.7266" width="290" height="275.273" fill="#0070CC"/>
+</mask>
+<g mask="url(#mask0_101:40)">
+<path d="M363.039 65.6562V208.178" stroke="white" stroke-opacity="0.2" stroke-miterlimit="10"/>
+<path d="M380.188 73.4873V208.179" stroke="white" stroke-opacity="0.2" stroke-width="1.6364" stroke-miterlimit="10"/>
+<path d="M397.338 81.3181V208.179" stroke="white" stroke-opacity="0.2" stroke-width="2.2727" stroke-miterlimit="10"/>
+<path d="M414.488 89.0706V208.178" stroke="white" stroke-opacity="0.2" stroke-width="2.9091" stroke-miterlimit="10"/>
+<path d="M431.716 96.9016V208.179" stroke="white" stroke-opacity="0.2" stroke-width="3.5455" stroke-miterlimit="10"/>
+<path d="M448.865 104.732V208.178" stroke="white" stroke-opacity="0.2" stroke-width="4.1818" stroke-miterlimit="10"/>
+<path d="M466.015 112.563V208.179" stroke="white" stroke-opacity="0.2" stroke-width="4.8182" stroke-miterlimit="10"/>
+<path d="M483.165 120.394V208.178" stroke="white" stroke-opacity="0.2" stroke-width="5.4545" stroke-miterlimit="10"/>
+<path d="M500.314 128.225V208.178" stroke="white" stroke-opacity="0.2" stroke-width="6.0909" stroke-miterlimit="10"/>
+<path d="M517.464 136.056V208.178" stroke="white" stroke-opacity="0.2" stroke-width="6.7273" stroke-miterlimit="10"/>
+<path d="M534.613 143.808V208.178" stroke="white" stroke-opacity="0.2" stroke-width="7.3636" stroke-miterlimit="10"/>
+<path d="M473.611 395.18V222.117" stroke="white" stroke-opacity="0.2" stroke-miterlimit="10"/>
+<path d="M454.19 385.783V222.117" stroke="white" stroke-opacity="0.2" stroke-width="1.6364" stroke-miterlimit="10"/>
+<path d="M434.77 376.464V222.117" stroke="white" stroke-opacity="0.2" stroke-width="2.2727" stroke-miterlimit="10"/>
+<path d="M415.349 367.067V222.117" stroke="white" stroke-opacity="0.2" stroke-width="2.9091" stroke-miterlimit="10"/>
+<path d="M395.928 357.67V222.117" stroke="white" stroke-opacity="0.2" stroke-width="3.5455" stroke-miterlimit="10"/>
+<path d="M376.508 348.273V222.117" stroke="white" stroke-opacity="0.2" stroke-width="4.1818" stroke-miterlimit="10"/>
+<path d="M357.087 338.954V222.117" stroke="white" stroke-opacity="0.2" stroke-width="4.8182" stroke-miterlimit="10"/>
+<path d="M337.745 329.557V222.117" stroke="white" stroke-opacity="0.2" stroke-width="5.4545" stroke-miterlimit="10"/>
+<path d="M318.324 320.16V222.117" stroke="white" stroke-opacity="0.2" stroke-width="6.0909" stroke-miterlimit="10"/>
+<path d="M298.904 310.763V222.117" stroke="white" stroke-opacity="0.2" stroke-width="6.7273" stroke-miterlimit="10"/>
+<path d="M279.483 301.366V222.117" stroke="white" stroke-opacity="0.2" stroke-width="7.3636" stroke-miterlimit="10"/>
+<path d="M260.062 292.047V222.117" stroke="white" stroke-opacity="0.2" stroke-width="8" stroke-miterlimit="10"/>
+<path d="M334.847 130.496V308.649" stroke="#0070CC" stroke-miterlimit="10"/>
+<path d="M354.66 139.737V312.721" stroke="#0070CC" stroke-width="1.7778" stroke-miterlimit="10"/>
+<path d="M374.393 148.899V316.871" stroke="#0070CC" stroke-width="2.5556" stroke-miterlimit="10"/>
+<path d="M394.127 158.139V320.943" stroke="#0070CC" stroke-width="3.3333" stroke-miterlimit="10"/>
+<path d="M413.861 167.301V325.094" stroke="#0070CC" stroke-width="4.1111" stroke-miterlimit="10"/>
+<path d="M433.595 176.542V329.166" stroke="#0070CC" stroke-width="4.8889" stroke-miterlimit="10"/>
+<path d="M453.329 185.704V333.316" stroke="#0070CC" stroke-width="5.6667" stroke-miterlimit="10"/>
+<path d="M473.063 194.944V337.388" stroke="#0070CC" stroke-width="6.4444" stroke-miterlimit="10"/>
+<path d="M492.797 204.106V341.46" stroke="#0070CC" stroke-width="7.2222" stroke-miterlimit="10"/>
+<path d="M512.609 213.347V345.611" stroke="#0070CC" stroke-width="8" stroke-miterlimit="10"/>
+</g>
+<path d="M69.2967 297.462V296.457C68.5985 297.552 67.6497 298.252 66.4503 298.521C65.2509 298.79 64.0694 298.701 62.9058 298.234C61.7243 297.768 60.7218 296.888 59.8804 295.614C59.0391 294.34 58.6094 292.671 58.6094 290.589C58.6094 288.148 59.1644 286.192 60.2743 284.667C61.3842 283.159 63.1743 282.406 65.6447 282.406C67.5244 282.406 69.2609 282.908 70.872 283.931C72.4831 284.954 73.2708 286.838 73.2708 289.584V297.875C73.2708 300.621 72.4652 302.487 70.872 303.492C69.2609 304.497 67.5244 305 65.6447 305C62.0465 305 59.8088 303.313 58.9496 299.939H63.228C63.5324 300.495 64.0157 300.908 64.6602 301.213C65.3046 301.5 65.9491 301.59 66.5935 301.446C67.238 301.303 67.8287 300.926 68.3479 300.298C68.9028 299.652 69.2072 298.719 69.2967 297.462ZM62.6015 290.697C62.6015 293.407 63.3891 294.914 64.9466 295.201C66.504 295.488 67.6676 295.129 68.4016 294.106C68.7596 293.676 69.0102 292.994 69.1713 292.079C69.3325 291.163 69.3325 290.248 69.2072 289.333C69.0639 288.435 68.7417 287.628 68.2405 286.928C67.7392 286.228 66.9874 285.869 66.0028 285.869C64.6781 285.869 63.7651 286.354 63.2996 287.341C62.8342 288.31 62.6015 289.44 62.6015 290.697Z" fill="white"/>
+<path d="M87.6097 298.396H85.551C84.9603 298.396 84.477 298.216 84.1189 297.839C83.743 297.462 83.564 296.978 83.564 296.404V288.4C83.564 287.466 83.2776 286.766 82.7047 286.336C82.1319 285.905 81.5053 285.69 80.7892 285.69C80.0911 285.69 79.4645 285.905 78.9096 286.336C78.3546 286.766 78.0861 287.448 78.0861 288.4V298.414H73.9688V289.225C73.9688 286.551 74.6669 284.774 76.0453 283.877C77.4417 282.98 78.9633 282.477 80.646 282.406C82.3646 282.406 83.9578 282.854 85.4078 283.751C86.8579 284.649 87.5739 286.479 87.5739 289.225V298.396H87.6097Z" fill="white"/>
+<path d="M88.6124 284.111H92.7298C92.7298 286.3 92.7298 285.564 92.7298 286.121V298.414H88.6124V284.111Z" fill="white"/>
+<path d="M100.284 298.395C98.9954 298.467 97.5991 298.449 96.0954 298.342C94.5916 298.216 93.8398 297.265 93.8398 295.452V280.144H95.9522C96.4534 280.144 96.9188 280.341 97.2948 280.736C97.6886 281.131 97.8855 281.598 97.8855 282.154V282.692H100.284V283.518C100.284 284.11 100.087 284.595 99.6936 284.954C99.2998 285.331 98.8343 285.51 98.2794 285.51H97.8676V294.322C97.8676 294.986 98.2615 295.327 99.0491 295.327H100.284V298.395Z" fill="white"/>
+<path d="M111.49 293.568H114.426C113.997 295.219 113.173 296.475 111.956 297.337C110.739 298.234 109.217 298.683 107.373 298.683C105.135 298.683 103.399 297.965 102.146 296.511C100.893 295.093 100.266 293.083 100.266 290.445C100.266 287.933 100.875 285.977 102.092 284.559C103.345 283.105 105.082 282.387 107.319 282.387C109.665 282.387 111.49 283.087 112.779 284.505C114.032 285.959 114.659 287.969 114.659 290.571C114.659 290.732 114.659 290.858 114.659 290.984C114.659 291.109 114.659 291.181 114.659 291.217C114.659 291.414 114.641 291.558 114.605 291.63H104.455C104.491 292.85 104.795 293.747 105.332 294.34C105.834 294.968 106.603 295.273 107.624 295.273C108.286 295.273 108.859 295.129 109.324 294.86C109.45 294.824 109.557 294.752 109.647 294.645C109.736 294.555 109.844 294.447 109.969 294.322C110.005 294.196 110.148 294.053 110.416 293.855C110.667 293.676 111.025 293.568 111.49 293.568ZM104.455 288.992H110.452C110.381 287.933 110.094 287.143 109.629 286.641C109.127 286.084 108.394 285.815 107.463 285.815C106.603 285.815 105.905 286.084 105.35 286.641C104.777 287.179 104.491 287.969 104.455 288.992Z" fill="white"/>
+<path d="M53.6138 276.914H55.7262C56.2812 276.914 56.7466 277.112 57.1404 277.507C57.5343 277.901 57.7312 278.368 57.7312 278.924V298.414H53.6138V276.914Z" fill="white"/>
+<path d="M88.6122 280.145H90.7246C91.2795 280.145 91.7449 280.342 92.1388 280.737C92.5326 281.132 92.7295 281.598 92.7295 282.155V283.393H88.6122V280.145Z" fill="white"/>
+<path d="M64.0154 280.36H63.3709V279.893C63.0487 280.252 62.6011 280.432 62.0462 280.432C61.527 280.432 61.0795 280.252 60.7036 279.911C60.3097 279.535 60.1128 279.068 60.1128 278.494C60.1128 277.901 60.3276 277.417 60.7394 277.04C61.1153 276.681 61.5808 276.52 62.0999 276.52C62.6369 276.52 63.0666 276.699 63.3888 277.076V276.609H64.0333V280.36H64.0154ZM63.353 278.494C63.353 278.135 63.2277 277.83 62.995 277.56C62.7444 277.309 62.4579 277.184 62.0999 277.184C61.724 277.184 61.4196 277.309 61.1511 277.578C60.9005 277.83 60.7752 278.099 60.7752 278.386C60.7752 278.763 60.8826 279.086 61.1153 279.355C61.348 279.642 61.6524 279.768 62.0283 279.768C62.3863 279.768 62.6906 279.642 62.9592 279.391C63.2277 279.158 63.353 278.853 63.353 278.494Z" fill="white"/>
+<path d="M68.6697 278.386C68.6697 278.978 68.4907 279.463 68.1327 279.84C67.7568 280.234 67.2913 280.432 66.7006 280.432C66.1635 280.432 65.7518 280.252 65.4296 279.911V281.598H64.7493V276.591H65.3938V277.04C65.5549 276.861 65.7518 276.735 65.9487 276.645C66.1635 276.555 66.3783 276.52 66.629 276.52C67.1481 276.52 67.6135 276.699 68.0074 277.04C68.4549 277.399 68.6697 277.848 68.6697 278.386ZM67.9716 278.476C67.9716 278.117 67.8463 277.812 67.5956 277.56C67.345 277.309 67.0228 277.184 66.6648 277.184C66.2888 277.184 65.9845 277.327 65.7339 277.596C65.5012 277.848 65.3938 278.153 65.3938 278.494C65.3938 278.817 65.4833 279.086 65.6802 279.337C65.9129 279.624 66.253 279.768 66.7006 279.768C67.0586 279.768 67.3629 279.642 67.6135 279.391C67.8642 279.158 67.9716 278.853 67.9716 278.476Z" fill="white"/>
+<path d="M73.1636 280.36H72.5192V279.893C72.1969 280.252 71.7494 280.432 71.1944 280.432C70.6753 280.432 70.2278 280.252 69.8518 279.911C69.458 279.535 69.2611 279.068 69.2611 278.494C69.2611 277.901 69.4759 277.417 69.8876 277.04C70.2636 276.681 70.729 276.52 71.2481 276.52C71.7852 276.52 72.2148 276.699 72.5371 277.076V276.609H73.1815V280.36H73.1636ZM72.5192 278.494C72.5192 278.135 72.3938 277.83 72.1611 277.56C71.9105 277.309 71.6241 277.184 71.2661 277.184C70.8901 277.184 70.5858 277.309 70.3173 277.578C70.0666 277.83 69.9413 278.099 69.9413 278.386C69.9413 278.763 70.0487 279.086 70.2815 279.355C70.5142 279.642 70.8185 279.768 71.1944 279.768C71.5525 279.768 71.8568 279.642 72.1253 279.391C72.3759 279.158 72.5192 278.853 72.5192 278.494Z" fill="white"/>
+<path d="M77.656 279.122C77.4412 279.552 77.1905 279.875 76.9041 280.091C76.5819 280.324 76.2059 280.45 75.7405 280.45C75.2214 280.45 74.7559 280.27 74.3621 279.893C73.9504 279.499 73.7355 279.032 73.7355 278.458H73.7713C73.7713 278.458 73.7713 278.476 73.7534 278.494C73.7534 277.901 73.9504 277.417 74.3621 277.04C74.7201 276.699 75.1498 276.52 75.651 276.52C76.1164 276.52 76.5103 276.645 76.8683 276.878C77.2084 277.112 77.477 277.453 77.6381 277.883H76.8862C76.6356 277.435 76.2238 277.201 75.6689 277.201C75.3109 277.201 75.0244 277.327 74.7917 277.578C74.559 277.83 74.4337 278.135 74.4337 278.494C74.4337 278.853 74.559 279.176 74.8096 279.427C75.0602 279.678 75.3646 279.804 75.7226 279.804C75.9553 279.804 76.188 279.75 76.4029 279.624C76.6177 279.499 76.7788 279.337 76.9041 279.14H77.656V279.122Z" fill="white"/>
+<path d="M81.5411 280.36H80.8609V278.206C80.8609 277.919 80.7713 277.668 80.5744 277.488C80.3954 277.309 80.1448 277.201 79.8584 277.201C79.5719 277.201 79.3392 277.291 79.1602 277.452C78.9812 277.632 78.8917 277.847 78.8917 278.134V280.36H78.2114V275.353H78.8917V276.914C79.1602 276.645 79.4824 276.519 79.8763 276.519C80.3059 276.519 80.6818 276.663 81.0041 276.968C81.3442 277.291 81.5232 277.704 81.5232 278.206V280.36H81.5411Z" fill="white"/>
+<path d="M85.9808 278.745H82.8122C82.8659 279.068 83.027 279.319 83.2776 279.516C83.5103 279.678 83.761 279.768 84.0295 279.768C84.2801 279.768 84.5128 279.696 84.7456 279.552C84.9783 279.409 85.1394 279.211 85.2289 278.978H85.9271C85.748 279.481 85.4616 279.839 85.0857 280.091C84.7635 280.306 84.4054 280.414 84.0116 280.414C83.5103 280.414 83.0807 280.234 82.7227 279.875C82.3467 279.481 82.1498 279.014 82.1498 278.44C82.1498 277.847 82.3467 277.363 82.7585 277.004C83.1344 276.663 83.5641 276.501 84.0653 276.501C84.5665 276.501 85.0141 276.663 85.3721 277.004C85.7838 277.381 85.9987 277.901 85.9987 278.547V278.745H85.9808ZM85.2826 278.117C85.211 277.829 85.0499 277.614 84.8172 277.435C84.5844 277.255 84.3338 277.165 84.0474 277.165C83.6894 277.165 83.385 277.291 83.1523 277.524C82.9912 277.686 82.8659 277.883 82.8122 278.117H85.2826Z" fill="white"/>
+<path d="M35.7481 275.102C35.7481 275.102 23.3065 282.711 35.032 290.266C37.2876 291.738 45.4686 295.83 45.2359 299.616C45.2359 299.616 50.1946 292.258 42.9445 287.628C35.4974 282.89 33.6357 277.83 35.7481 275.102Z" fill="white"/>
+<path d="M31.416 289.638C31.416 289.638 26.9764 296.386 35.7124 297.768C36.5717 297.876 42.8909 298.54 44.5378 300.621C44.5378 300.621 44.3946 297.032 39.239 294.914C34.1012 292.797 31.9889 292.276 31.416 289.638Z" fill="white"/>
+<path d="M48.6014 282.549C43.2667 276.95 41.7809 273.487 44.0723 269C44.0723 269 28.1578 275.138 43.8754 286.031C49.4964 289.925 48.5656 293.909 48.5656 294.053C49.4427 293.138 53.936 288.149 48.6014 282.549Z" fill="white"/>
+</svg>
diff --git a/public/img/poweredby/videos/012.png b/public/img/poweredby/videos/012.png
new file mode 100644
index 0000000..e98c63c
--- /dev/null
+++ b/public/img/poweredby/videos/012.png
Binary files differ
diff --git a/public/img/poweredby/videos/012.svg b/public/img/poweredby/videos/012.svg
new file mode 100644
index 0000000..cf79da0
--- /dev/null
+++ b/public/img/poweredby/videos/012.svg
@@ -0,0 +1,98 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="335" fill="#91C2EA"/>
+<mask id="mask0_101:41" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="282" y="0" width="260" height="335">
+<rect x="282" width="260" height="335" fill="#91C2EA"/>
+</mask>
+<g mask="url(#mask0_101:41)">
+<path d="M376.923 321.819C415.798 364.246 417.922 383.996 413.257 390.17C454.995 376.564 427.967 345.107 404.931 318.296L404.843 318.194C399.342 311.792 349.677 254.602 342.514 233.074C338.369 234.455 331.697 243.538 328.418 253.531C325.14 263.523 359.389 303.22 376.923 321.819Z" fill="url(#paint0_linear_101:41)"/>
+<path d="M459.783 175.343C498.963 217.935 501.126 237.713 496.445 243.871C538.607 230.422 514.152 200.182 490.921 173.259C485.379 166.836 432.247 107.98 425 86.4098C420.838 87.7826 411.408 99.6625 413.123 110.04C416.328 129.427 441.614 156.146 459.257 174.787L459.783 175.343Z" fill="url(#paint1_linear_101:41)"/>
+<path d="M345.793 371.704C403.828 377.056 431.108 369.885 435.459 362.666C438.666 413.463 399.034 398.463 325 392.577C265.774 387.869 248.971 404.327 247.973 413.145C230.552 359.346 273.248 365.014 345.793 371.704Z" fill="url(#paint2_linear_101:41)"/>
+<path d="M428.957 224.557C503.998 231.244 514.435 222.414 518.821 215.127C521.847 266.28 482.198 251.316 408.05 245.658C348.732 241.131 331.838 257.77 330.807 266.656C313.55 212.53 356.303 218.083 428.957 224.557Z" fill="url(#paint3_linear_101:41)"/>
+<path d="M512.618 73.2518C587.66 79.939 598.097 71.1084 602.482 63.8213C605.509 114.975 565.859 100.01 491.712 94.3523C432.394 89.8257 415.5 106.465 414.468 115.35C397.212 61.2245 439.965 66.7775 512.618 73.2518Z" fill="url(#paint4_linear_101:41)"/>
+<g opacity="0.21">
+<path d="M383.36 325.055C326.118 319.173 309.001 329.254 306.831 336.68C292.844 295.069 334.216 297.988 369.476 300.477L369.61 300.486C378.03 301.081 453.559 306.812 475.108 299.715C476.473 303.865 473.165 314.64 467.102 323.233C461.04 331.826 408.748 328.028 383.36 325.055Z" fill="url(#paint5_linear_101:41)"/>
+<path d="M451.464 171.163C393.907 165.134 376.745 175.2 374.596 182.631C360.232 140.772 399.09 142.353 434.557 144.931C443.018 145.546 521.951 153.065 543.586 146.011C544.967 150.169 541.061 164.825 531.709 169.641C514.239 178.638 477.711 174.288 452.224 171.253L451.464 171.163Z" fill="url(#paint6_linear_101:41)"/>
+<path d="M361.904 379.801C322.98 336.423 312.457 310.252 315.654 302.453C272.978 330.189 308.663 353.043 357.56 408.941C396.677 453.66 393.495 476.964 387.015 483.027C440.582 464.906 410.558 434.025 361.904 379.801Z" fill="url(#paint7_linear_101:41)"/>
+<path d="M430.364 225.265C380.222 169.035 381.081 155.391 384.312 147.523C341.456 175.617 377.123 198.506 425.906 254.632C464.932 299.533 461.659 323.018 455.145 329.147C508.876 310.7 478.91 279.704 430.364 225.265Z" fill="url(#paint8_linear_101:41)"/>
+</g>
+<path d="M214 451.5L342.5 185" stroke="url(#paint9_linear_101:41)"/>
+<path d="M439 451.5L567.5 185" stroke="url(#paint10_linear_101:41)"/>
+<path d="M322 254.5L450.5 -12" stroke="url(#paint11_linear_101:41)"/>
+<path d="M367 133.5L495.5 -133" stroke="url(#paint12_linear_101:41)"/>
+<path d="M286 269.5L414.5 3" stroke="url(#paint13_linear_101:41)"/>
+</g>
+<path d="M81.2967 294.462V293.457C80.5985 294.552 79.6497 295.252 78.4503 295.521C77.2509 295.79 76.0694 295.701 74.9058 295.234C73.7243 294.768 72.7218 293.888 71.8804 292.614C71.0391 291.34 70.6094 289.671 70.6094 287.589C70.6094 285.148 71.1644 283.192 72.2743 281.667C73.3842 280.159 75.1743 279.406 77.6447 279.406C79.5244 279.406 81.2609 279.908 82.872 280.931C84.4831 281.954 85.2708 283.838 85.2708 286.584V294.875C85.2708 297.621 84.4652 299.487 82.872 300.492C81.2609 301.497 79.5244 302 77.6447 302C74.0465 302 71.8088 300.313 70.9496 296.939H75.228C75.5324 297.495 76.0157 297.908 76.6602 298.213C77.3046 298.5 77.9491 298.59 78.5935 298.446C79.238 298.303 79.8287 297.926 80.3479 297.298C80.9028 296.652 81.2072 295.719 81.2967 294.462ZM74.6015 287.697C74.6015 290.407 75.3891 291.914 76.9466 292.201C78.504 292.488 79.6676 292.129 80.4016 291.106C80.7596 290.676 81.0102 289.994 81.1713 289.079C81.3325 288.163 81.3325 287.248 81.2072 286.333C81.0639 285.435 80.7417 284.628 80.2405 283.928C79.7392 283.228 78.9874 282.869 78.0028 282.869C76.6781 282.869 75.7651 283.354 75.2996 284.341C74.8342 285.31 74.6015 286.44 74.6015 287.697Z" fill="white"/>
+<path d="M99.6097 295.396H97.551C96.9603 295.396 96.477 295.216 96.1189 294.839C95.743 294.462 95.564 293.978 95.564 293.404V285.4C95.564 284.466 95.2776 283.766 94.7047 283.336C94.1319 282.905 93.5053 282.69 92.7892 282.69C92.0911 282.69 91.4645 282.905 90.9096 283.336C90.3546 283.766 90.0861 284.448 90.0861 285.4V295.414H85.9688V286.225C85.9688 283.551 86.6669 281.774 88.0453 280.877C89.4417 279.98 90.9633 279.477 92.646 279.406C94.3646 279.406 95.9578 279.854 97.4078 280.751C98.8579 281.649 99.5739 283.479 99.5739 286.225V295.396H99.6097Z" fill="white"/>
+<path d="M100.612 281.111H104.73C104.73 283.3 104.73 282.564 104.73 283.121V295.414H100.612V281.111Z" fill="white"/>
+<path d="M112.284 295.395C110.995 295.467 109.599 295.449 108.095 295.342C106.592 295.216 105.84 294.265 105.84 292.452V277.144H107.952C108.453 277.144 108.919 277.341 109.295 277.736C109.689 278.131 109.886 278.598 109.886 279.154V279.692H112.284V280.518C112.284 281.11 112.087 281.595 111.694 281.954C111.3 282.331 110.834 282.51 110.279 282.51H109.868V291.322C109.868 291.986 110.261 292.327 111.049 292.327H112.284V295.395Z" fill="white"/>
+<path d="M123.49 290.568H126.426C125.997 292.219 125.173 293.475 123.956 294.337C122.739 295.234 121.217 295.683 119.373 295.683C117.135 295.683 115.399 294.965 114.146 293.511C112.893 292.093 112.266 290.083 112.266 287.445C112.266 284.933 112.875 282.977 114.092 281.559C115.345 280.105 117.082 279.387 119.319 279.387C121.665 279.387 123.49 280.087 124.779 281.505C126.032 282.959 126.659 284.969 126.659 287.571C126.659 287.732 126.659 287.858 126.659 287.984C126.659 288.109 126.659 288.181 126.659 288.217C126.659 288.414 126.641 288.558 126.605 288.63H116.455C116.491 289.85 116.795 290.747 117.332 291.34C117.834 291.968 118.603 292.273 119.624 292.273C120.286 292.273 120.859 292.129 121.324 291.86C121.45 291.824 121.557 291.752 121.647 291.645C121.736 291.555 121.844 291.447 121.969 291.322C122.005 291.196 122.148 291.053 122.416 290.855C122.667 290.676 123.025 290.568 123.49 290.568ZM116.455 285.992H122.452C122.381 284.933 122.094 284.143 121.629 283.641C121.127 283.084 120.394 282.815 119.463 282.815C118.603 282.815 117.905 283.084 117.35 283.641C116.777 284.179 116.491 284.969 116.455 285.992Z" fill="white"/>
+<path d="M65.6138 273.914H67.7262C68.2812 273.914 68.7466 274.112 69.1404 274.507C69.5343 274.901 69.7312 275.368 69.7312 275.924V295.414H65.6138V273.914Z" fill="white"/>
+<path d="M100.612 277.145H102.725C103.28 277.145 103.745 277.342 104.139 277.737C104.533 278.132 104.73 278.598 104.73 279.155V280.393H100.612V277.145Z" fill="white"/>
+<path d="M76.0154 277.36H75.3709V276.893C75.0487 277.252 74.6011 277.432 74.0462 277.432C73.527 277.432 73.0795 277.252 72.7036 276.911C72.3097 276.535 72.1128 276.068 72.1128 275.494C72.1128 274.901 72.3276 274.417 72.7394 274.04C73.1153 273.681 73.5808 273.52 74.0999 273.52C74.6369 273.52 75.0666 273.699 75.3888 274.076V273.609H76.0333V277.36H76.0154ZM75.353 275.494C75.353 275.135 75.2277 274.83 74.995 274.56C74.7444 274.309 74.4579 274.184 74.0999 274.184C73.724 274.184 73.4196 274.309 73.1511 274.578C72.9005 274.83 72.7752 275.099 72.7752 275.386C72.7752 275.763 72.8826 276.086 73.1153 276.355C73.348 276.642 73.6524 276.768 74.0283 276.768C74.3863 276.768 74.6906 276.642 74.9592 276.391C75.2277 276.158 75.353 275.853 75.353 275.494Z" fill="white"/>
+<path d="M80.6697 275.386C80.6697 275.978 80.4907 276.463 80.1327 276.84C79.7568 277.234 79.2913 277.432 78.7006 277.432C78.1635 277.432 77.7518 277.252 77.4296 276.911V278.598H76.7493V273.591H77.3938V274.04C77.5549 273.861 77.7518 273.735 77.9487 273.645C78.1635 273.555 78.3783 273.52 78.629 273.52C79.1481 273.52 79.6135 273.699 80.0074 274.04C80.4549 274.399 80.6697 274.848 80.6697 275.386ZM79.9716 275.476C79.9716 275.117 79.8463 274.812 79.5956 274.56C79.345 274.309 79.0228 274.184 78.6648 274.184C78.2888 274.184 77.9845 274.327 77.7339 274.596C77.5012 274.848 77.3938 275.153 77.3938 275.494C77.3938 275.817 77.4833 276.086 77.6802 276.337C77.9129 276.624 78.253 276.768 78.7006 276.768C79.0586 276.768 79.3629 276.642 79.6135 276.391C79.8642 276.158 79.9716 275.853 79.9716 275.476Z" fill="white"/>
+<path d="M85.1636 277.36H84.5192V276.893C84.1969 277.252 83.7494 277.432 83.1944 277.432C82.6753 277.432 82.2278 277.252 81.8518 276.911C81.458 276.535 81.2611 276.068 81.2611 275.494C81.2611 274.901 81.4759 274.417 81.8876 274.04C82.2636 273.681 82.729 273.52 83.2481 273.52C83.7852 273.52 84.2148 273.699 84.5371 274.076V273.609H85.1815V277.36H85.1636ZM84.5192 275.494C84.5192 275.135 84.3938 274.83 84.1611 274.56C83.9105 274.309 83.6241 274.184 83.2661 274.184C82.8901 274.184 82.5858 274.309 82.3173 274.578C82.0666 274.83 81.9413 275.099 81.9413 275.386C81.9413 275.763 82.0487 276.086 82.2815 276.355C82.5142 276.642 82.8185 276.768 83.1944 276.768C83.5525 276.768 83.8568 276.642 84.1253 276.391C84.3759 276.158 84.5192 275.853 84.5192 275.494Z" fill="white"/>
+<path d="M89.656 276.122C89.4412 276.552 89.1905 276.875 88.9041 277.091C88.5819 277.324 88.2059 277.45 87.7405 277.45C87.2214 277.45 86.7559 277.27 86.3621 276.893C85.9504 276.499 85.7355 276.032 85.7355 275.458H85.7713C85.7713 275.458 85.7713 275.476 85.7534 275.494C85.7534 274.901 85.9504 274.417 86.3621 274.04C86.7201 273.699 87.1498 273.52 87.651 273.52C88.1164 273.52 88.5103 273.645 88.8683 273.878C89.2084 274.112 89.477 274.453 89.6381 274.883H88.8862C88.6356 274.435 88.2238 274.201 87.6689 274.201C87.3109 274.201 87.0244 274.327 86.7917 274.578C86.559 274.83 86.4337 275.135 86.4337 275.494C86.4337 275.853 86.559 276.176 86.8096 276.427C87.0602 276.678 87.3646 276.804 87.7226 276.804C87.9553 276.804 88.188 276.75 88.4029 276.624C88.6177 276.499 88.7788 276.337 88.9041 276.14H89.656V276.122Z" fill="white"/>
+<path d="M93.5411 277.36H92.8609V275.206C92.8609 274.919 92.7713 274.668 92.5744 274.488C92.3954 274.309 92.1448 274.201 91.8584 274.201C91.5719 274.201 91.3392 274.291 91.1602 274.452C90.9812 274.632 90.8917 274.847 90.8917 275.134V277.36H90.2114V272.353H90.8917V273.914C91.1602 273.645 91.4824 273.519 91.8763 273.519C92.3059 273.519 92.6818 273.663 93.0041 273.968C93.3442 274.291 93.5232 274.704 93.5232 275.206V277.36H93.5411Z" fill="white"/>
+<path d="M97.9808 275.745H94.8122C94.8659 276.068 95.027 276.319 95.2776 276.516C95.5104 276.678 95.761 276.768 96.0295 276.768C96.2801 276.768 96.5128 276.696 96.7456 276.552C96.9783 276.409 97.1394 276.211 97.2289 275.978H97.9271C97.7481 276.481 97.4616 276.839 97.0857 277.091C96.7635 277.306 96.4054 277.414 96.0116 277.414C95.5104 277.414 95.0807 277.234 94.7227 276.875C94.3468 276.481 94.1498 276.014 94.1498 275.44C94.1498 274.847 94.3468 274.363 94.7585 274.004C95.1344 273.663 95.5641 273.501 96.0653 273.501C96.5666 273.501 97.0141 273.663 97.3721 274.004C97.7839 274.381 97.9987 274.901 97.9987 275.547V275.745H97.9808ZM97.2826 275.117C97.211 274.829 97.0499 274.614 96.8172 274.435C96.5845 274.255 96.3338 274.165 96.0474 274.165C95.6894 274.165 95.385 274.291 95.1523 274.524C94.9912 274.686 94.8659 274.883 94.8122 275.117H97.2826Z" fill="white"/>
+<path d="M47.7481 272.102C47.7481 272.102 35.3065 279.711 47.032 287.266C49.2876 288.738 57.4686 292.83 57.2359 296.616C57.2359 296.616 62.1946 289.258 54.9445 284.628C47.4974 279.89 45.6357 274.83 47.7481 272.102Z" fill="white"/>
+<path d="M43.416 286.638C43.416 286.638 38.9764 293.386 47.7124 294.768C48.5717 294.876 54.8909 295.54 56.5378 297.621C56.5378 297.621 56.3946 294.032 51.239 291.914C46.1012 289.797 43.9889 289.276 43.416 286.638Z" fill="white"/>
+<path d="M60.6014 279.549C55.2667 273.95 53.7809 270.487 56.0723 266C56.0723 266 40.1578 272.138 55.8754 283.031C61.4964 286.925 60.5656 290.909 60.5656 291.053C61.4427 290.138 65.936 285.149 60.6014 279.549Z" fill="white"/>
+<defs>
+<linearGradient id="paint0_linear_101:41" x1="405.977" y1="264.97" x2="355.832" y2="364.743" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#0070CC" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint1_linear_101:41" x1="488.839" y1="118.495" x2="438.694" y2="218.268" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#0070CC" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint2_linear_101:41" x1="367.155" y1="328.337" x2="309.092" y2="443.863" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint3_linear_101:41" x1="450.516" y1="180.797" x2="391.925" y2="297.374" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="#91C2EA"/>
+</linearGradient>
+<linearGradient id="paint4_linear_101:41" x1="534.178" y1="29.4918" x2="475.587" y2="146.068" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="#91C2EA"/>
+</linearGradient>
+<linearGradient id="paint5_linear_101:41" x1="411.645" y1="267.819" x2="361.5" y2="367.592" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#0070CC" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint6_linear_101:41" x1="479.746" y1="113.925" x2="429.601" y2="213.698" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="#0070CC" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint7_linear_101:41" x1="383.959" y1="336.782" x2="325.896" y2="452.309" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint8_linear_101:41" x1="452.617" y1="181.853" x2="394.026" y2="298.429" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="#91C2EA"/>
+</linearGradient>
+<linearGradient id="paint9_linear_101:41" x1="278.25" y1="185" x2="278.25" y2="451.5" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint10_linear_101:41" x1="503.25" y1="185" x2="503.25" y2="451.5" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint11_linear_101:41" x1="386.25" y1="-12" x2="386.25" y2="254.5" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint12_linear_101:41" x1="431.25" y1="-133" x2="431.25" y2="133.5" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint13_linear_101:41" x1="350.25" y1="3" x2="350.25" y2="269.5" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+</defs>
+</svg>
diff --git a/public/img/poweredby/videos/013.png b/public/img/poweredby/videos/013.png
new file mode 100644
index 0000000..ca6d485
--- /dev/null
+++ b/public/img/poweredby/videos/013.png
Binary files differ
diff --git a/public/img/poweredby/videos/013.svg b/public/img/poweredby/videos/013.svg
new file mode 100644
index 0000000..b8bd035
--- /dev/null
+++ b/public/img/poweredby/videos/013.svg
@@ -0,0 +1,211 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="335" fill="#91C2EA"/>
+<mask id="mask0_101:48" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="172" y="0" width="370" height="335">
+<rect x="172" width="370" height="335" fill="#91C2EA"/>
+</mask>
+<g mask="url(#mask0_101:48)">
+<path d="M442.359 471.733C457.224 433.736 503.132 438.165 530.394 410.818C558.452 382.698 547.499 365.868 584.894 327.191C608.508 302.638 720.991 305.216 751.346 289.884C787.809 271.406 790.423 235.711 830.418 225.113C854.274 218.754 878.13 212.395 902.049 206.14" fill="url(#paint0_linear_101:48)"/>
+<path d="M435.037 459.713C444.99 434.451 468.719 427.883 491.408 418.222C502.67 413.37 513.652 407.829 522.701 398.88C550.681 371.095 540.344 353.889 577.862 316.571C585.316 309.165 600.931 304.529 619.898 301.004C659.855 293.581 713.271 289.999 738.162 280.717C740.201 279.905 742.241 279.093 743.844 278.26C773.432 262.822 780.879 236.22 804.549 221.234C809.722 217.941 815.751 215.129 822.994 213.154C846.889 206.628 870.706 200.436 894.664 194.015" fill="url(#paint1_linear_101:48)"/>
+<path d="M427.654 447.587C437.504 422.388 461.066 415.778 483.755 406.116C494.914 401.327 505.897 395.786 514.945 386.837C542.847 359.386 533.23 341.743 570.767 305.845C578.349 298.649 594.092 294.221 613.019 290.863C653.373 283.629 705.717 278.98 730.661 269.092C732.701 268.281 734.573 267.427 736.28 266.531C765.408 250.8 773.418 224.429 797.126 209.275C802.402 205.919 808.328 203.17 815.571 201.196C839.402 194.565 863.322 188.311 887.344 181.994" fill="url(#paint2_linear_101:48)"/>
+<path d="M420.27 435.461C430.081 410.429 453.515 403.61 476 394.074C487.159 389.285 497.975 383.702 506.984 374.92C534.808 347.803 525.807 329.784 563.468 295.244C571.216 288.09 587.047 284.039 605.871 280.743C646.519 273.76 697.894 267.982 722.93 257.321C724.97 256.51 726.842 255.656 728.485 254.655C757.256 238.569 765.662 212.386 789.37 197.232C794.646 193.877 800.675 191.065 807.752 189.049C831.622 182.251 855.605 176.101 879.73 169.721" fill="url(#paint3_linear_101:48)"/>
+<path d="M412.886 423.335C422.658 398.47 445.926 391.609 468.347 381.969C479.403 377.242 490.219 371.659 499.292 362.982C527.038 336.199 518.756 317.742 556.398 284.79C564.376 277.782 580.231 274.002 599.017 270.874C640.022 264.246 690.325 257.402 715.454 245.968C717.43 245.052 719.303 244.198 720.945 243.198C749.358 226.756 758.161 200.761 781.909 185.441C787.184 182.085 793.15 179.169 800.329 177.09C824.136 170.188 848.285 164.08 872.41 157.7" fill="url(#paint4_linear_101:48)"/>
+<path d="M405.566 411.314C415.235 386.511 438.44 379.546 460.758 369.968C471.814 365.241 482.566 359.553 491.6 351.043C519.102 324.552 511.768 305.805 549.367 274.168C557.575 267.307 573.455 263.799 592.099 260.9C633.5 254.461 682.731 246.55 708.017 234.448C709.992 233.532 711.802 232.573 713.508 231.677C741.461 214.942 750.826 189.178 774.51 173.753C779.889 170.335 785.854 167.419 792.931 165.402C816.776 158.333 840.926 152.225 865.153 145.783" fill="url(#paint5_linear_101:48)"/>
+<path d="M398.182 399.188C407.812 374.553 430.787 367.44 453.105 357.862C464.059 353.198 474.811 347.511 483.845 339C511.269 312.844 504.717 293.763 542.273 263.443C550.711 256.728 566.718 253.429 585.221 250.76C626.979 244.676 675.177 235.531 700.452 222.719C702.364 221.698 704.237 220.844 705.88 219.844C733.539 202.858 743.237 177.178 766.921 161.753C772.236 158.23 778.265 155.418 785.381 153.235C809.265 145.998 833.376 140.057 857.706 133.553" fill="url(#paint6_linear_101:48)"/>
+<path d="M390.798 387.062C400.389 362.594 423.237 355.273 445.286 345.715C456.176 340.947 466.889 335.426 475.923 326.916C503.333 301.198 497.499 281.679 535.012 252.675C543.617 246.002 559.776 243.184 578.176 240.577C620.228 234.745 667.354 224.532 692.785 211.052C694.697 210.032 696.506 209.073 698.149 208.073C725.451 190.731 735.546 165.24 759.332 149.752C764.647 146.229 770.779 143.355 777.792 141.234C801.613 133.893 825.826 127.89 850.322 121.427" fill="url(#paint7_linear_101:48)"/>
+<path d="M383.414 374.937C392.903 350.531 415.648 343.272 437.633 333.61C448.42 328.904 459.07 323.279 468.168 314.873C495.499 289.489 490.448 269.638 527.982 242.054C536.816 235.528 553 232.981 571.361 230.541C613.873 225.002 659.927 213.723 685.451 199.47C687.363 198.449 689.108 197.386 690.751 196.386C717.593 178.751 728.25 153.49 751.973 137.898C757.39 134.313 763.42 131.501 770.471 129.213C794.331 121.705 818.608 115.806 843.041 109.239" fill="url(#paint8_linear_101:48)"/>
+<path d="M376.094 362.916C385.646 338.615 408.161 331.209 430.044 321.61C440.831 316.904 451.378 311.341 460.476 302.935C487.729 277.886 483.524 257.806 520.848 231.495C529.913 225.116 546.121 222.84 564.443 220.568C607.248 215.28 652.231 202.934 677.847 187.908C679.695 186.783 681.504 185.825 683.084 184.72C709.632 166.834 720.519 141.719 744.447 126.002C749.865 122.417 755.933 119.438 762.882 117.213C786.781 109.538 811.058 103.639 835.657 97.1137" fill="url(#paint9_linear_101:48)"/>
+<path d="M368.71 350.79C378.223 326.655 400.611 319.041 422.391 309.504C433.076 304.861 443.662 299.131 452.72 290.892C479.895 266.176 476.64 245.805 513.754 220.769C523.048 214.536 539.281 212.532 557.564 210.427C600.727 205.494 644.74 192.019 670.346 176.283C672.194 175.158 673.94 174.095 675.519 172.99C701.71 154.748 712.994 129.823 736.922 114.106C742.339 110.52 748.407 107.541 755.357 105.316C779.192 97.5365 803.635 91.6796 828.234 85.1545" fill="url(#paint10_linear_101:48)"/>
+<path d="M361.327 338.664C370.737 314.592 393.022 307.041 414.636 297.462C425.32 292.818 435.804 287.151 444.862 278.912C471.959 254.531 469.652 233.868 506.557 210.106C516.081 204.02 532.339 202.287 550.582 200.349C594.142 195.605 637.044 181.23 662.782 164.554C664.63 163.429 666.375 162.366 667.891 161.157C693.686 142.727 705.404 117.822 729.435 102.043C734.853 98.4573 741.024 95.416 747.909 93.086C771.784 85.1394 796.227 79.2826 820.992 72.7995" fill="url(#paint11_linear_101:48)"/>
+<path d="M353.943 326.538C363.314 302.634 385.472 294.873 406.983 285.356C417.501 280.671 428.048 275.108 437.067 267.037C464.023 242.884 462.689 222.203 499.487 199.652C509.242 193.712 525.588 192.356 543.728 190.48C587.645 186.091 629.514 170.483 655.305 153.201C657.09 151.971 658.835 150.908 660.415 149.804C685.852 131.018 698.031 106.407 721.998 90.5225C727.518 86.8746 733.586 83.8959 740.472 81.5658C764.385 73.4522 788.789 67.7624 813.594 61.1122" fill="url(#paint12_linear_101:48)"/>
+<path d="M346.623 314.517C355.955 290.78 377.883 282.872 399.394 273.356C409.912 268.67 420.293 263.066 429.376 255.099C456.15 231.343 455.932 210.412 492.354 189.093C502.441 183.237 518.709 182.216 536.811 180.507C581.084 176.474 621.882 159.798 647.868 141.682C649.653 140.452 651.335 139.284 652.914 138.179C677.955 119.205 690.569 94.6154 714.473 78.6266C719.993 74.9787 725.997 71.8954 732.985 69.5029C756.835 61.2848 781.342 55.5324 806.313 48.9242" fill="url(#paint13_linear_101:48)"/>
+<path d="M339.239 302.391C348.468 278.716 370.333 270.704 391.741 261.25C402.259 256.565 412.537 251.022 421.62 243.055C448.317 219.634 449.111 198.517 485.26 178.367C495.577 172.658 511.869 171.907 529.829 170.428C574.46 166.751 614.289 148.946 640.201 130.015C641.986 128.785 643.667 127.617 645.183 126.408C669.867 107.078 682.877 82.6767 706.884 66.6255C712.404 62.9775 718.511 59.8318 725.333 57.3972C749.222 49.012 773.792 43.3642 798.763 36.756" fill="url(#paint14_linear_101:48)"/>
+<path d="M331.855 290.266C341.046 266.758 362.743 258.704 383.985 249.208C394.401 244.585 404.718 238.876 413.762 231.076C440.381 207.989 442.251 186.789 478.063 167.704C488.61 162.142 504.927 161.663 522.848 160.351C567.875 156.862 606.593 138.157 632.598 118.453C634.318 117.118 636 115.951 637.516 114.742C661.906 95.1607 675.313 70.9481 699.255 54.7923C704.814 50.9773 710.883 47.9986 717.807 45.5015C741.735 36.9493 766.306 31.3014 791.379 24.6308" fill="url(#paint15_linear_101:48)"/>
+<path d="M324.535 278.245C333.687 254.904 355.257 246.641 376.396 237.207C386.812 232.584 397.026 226.938 406.07 219.138C432.611 196.385 435.39 175.061 471.096 157.188C481.873 151.771 498.278 151.669 516.096 150.419C561.481 147.286 599.127 127.514 625.263 106.87C626.984 105.536 628.666 104.368 630.118 103.054C654.048 83.1804 667.954 59.094 691.999 42.8757C697.558 39.0607 703.665 35.9149 710.487 33.4803C734.351 24.8235 759.088 19.2177 784.162 12.547" fill="url(#paint16_linear_101:48)"/>
+<path d="M317.151 266.119C326.303 242.778 347.604 234.535 368.743 225.102C378.993 220.437 389.207 214.79 398.315 207.095C424.777 184.676 428.633 163.27 463.899 146.524C474.906 141.254 491.336 141.423 509.115 140.341C554.857 137.563 591.534 116.662 617.659 95.3081C619.38 93.9736 620.998 92.7016 622.45 91.3876C646.087 71.2625 660.325 47.26 684.371 31.0417C689.93 27.2267 696.037 24.0809 702.795 21.5418C726.698 12.718 751.333 7.1747 776.675 0.483507" fill="url(#paint17_linear_101:48)"/>
+<path d="M309.767 253.993C318.88 230.819 340.117 222.472 361.027 212.892C371.276 208.227 381.388 202.642 390.495 194.947C416.88 172.862 421.875 151.479 456.74 135.693C468.08 130.508 484.432 131.011 502.172 130.095C548.272 127.673 583.876 105.706 610.095 83.5787C611.752 82.1397 613.37 80.8677 614.822 79.5537C638.165 59.1775 652.8 35.3636 676.884 18.9782C682.546 15.1007 688.653 11.955 695.411 9.41584C719.354 0.424938 744.051 -5.01385 769.394 -11.705" fill="url(#paint18_linear_101:48)"/>
+<path d="M302.384 241.868C311.457 218.861 332.568 210.304 353.271 200.85C363.418 196.247 373.466 190.558 382.637 182.967C408.841 161.279 415.015 139.751 449.544 125.031C461.177 120.096 477.554 120.871 495.191 120.018C541.75 117.889 576.347 94.9588 602.53 71.8502C604.188 70.4111 605.806 69.1391 607.258 67.8251C630.141 47.1559 645.274 23.468 669.359 7.08261C675.02 3.2051 681.128 0.0593421 687.822 -2.5843C711.701 -11.6797 736.501 -17.181 761.947 -23.9347" fill="url(#paint19_linear_101:48)"/>
+<path d="M295.063 229.846C304.034 206.901 324.978 198.303 345.682 188.848C355.829 184.246 365.877 178.557 374.843 171.091C400.968 149.737 408.282 128.232 442.474 114.576C454.337 109.788 470.738 110.834 488.337 110.148C535.19 108.27 568.778 84.378 595.054 60.4966C596.711 59.0576 598.266 57.681 599.718 56.367C622.307 35.4467 637.773 11.8428 661.858 -4.54252C667.519 -8.42002 673.666 -11.7329 680.424 -14.272C704.341 -23.5345 729.206 -28.9312 754.651 -35.6849" fill="url(#paint20_linear_101:48)"/>
+<path d="M287.68 217.72C296.611 194.943 317.428 186.136 338.029 176.743C348.073 172.204 358.058 166.41 367.151 159.154C393.135 138.029 401.549 116.713 435.443 103.955C447.6 99.4181 463.962 100.631 481.522 100.113C528.732 98.5902 561.415 73.6732 587.656 48.8099C589.147 47.3289 590.804 45.8899 592.256 44.5759C614.552 23.4045 630.414 -0.0108787 654.538 -16.5633C660.302 -20.5033 666.346 -23.7536 673.04 -26.3973C696.933 -35.9313 721.861 -41.2236 747.473 -47.9353" fill="url(#paint21_linear_101:48)"/>
+<path d="M280.296 205.595C289.188 182.985 309.839 174.135 330.377 164.638C340.42 160.099 350.302 154.368 359.395 147.111C385.301 126.321 394.855 105.027 428.246 93.2921C440.633 88.9017 457.084 90.491 474.54 90.0347C522.108 88.868 553.719 62.8842 580.052 37.2482C581.543 35.7671 583.2 34.3281 584.589 32.9095C606.488 11.5496 622.786 -11.8442 646.909 -28.3967C652.674 -32.3367 658.82 -35.6495 665.451 -38.3977C689.28 -48.0363 714.272 -53.224 739.922 -60.1028" fill="url(#paint22_linear_101:48)"/>
+<path d="M272.912 193.469C281.702 170.921 302.289 161.968 322.621 152.596C332.499 148.014 342.38 142.283 351.537 135.131C377.365 114.674 388.059 93.4035 421.049 82.6287C433.73 78.4893 450.141 80.2458 467.559 79.9565C515.484 79.1454 546.189 52.1367 572.449 25.686C573.939 24.2049 575.533 22.6613 576.921 21.2428C598.527 -0.368169 615.158 -23.678 639.32 -40.3975C645.085 -44.3375 651.231 -47.6504 657.862 -50.3986C681.73 -60.2042 706.722 -65.3919 732.539 -72.2287" fill="url(#paint23_linear_101:48)"/>
+<path d="M265.592 181.448C274.343 159.067 294.7 149.967 315.032 140.595C324.91 136.013 334.689 130.345 343.846 123.192C369.596 103.07 381.39 81.9887 414.082 72.1117C427.056 68.2234 443.429 70.1469 460.705 70.0872C508.987 69.6317 538.787 41.5983 565.012 14.1657C566.439 12.5801 568.096 11.141 569.421 9.61798C590.669 -12.3486 607.76 -35.3654 631.859 -52.1894C637.559 -56.234 643.808 -59.6093 650.336 -62.295C674.244 -72.2677 699.299 -77.3508 725.116 -84.1876" fill="url(#paint24_linear_101:48)"/>
+<path d="M258.208 169.323C266.92 147.109 287.15 137.8 307.379 128.49C317.257 123.908 326.869 118.198 336.09 111.15C361.659 91.4248 374.593 70.3658 406.988 61.3865C420.358 57.6868 436.653 59.9444 453.826 59.9473C502.466 59.8474 531.257 30.8516 557.511 2.54174C558.938 0.956155 560.531 -0.587405 561.92 -2.00592C582.772 -24.1611 600.195 -47.0939 624.397 -63.9804C630.2 -68.0875 636.346 -71.4003 642.977 -74.1485C666.821 -84.2257 692.042 -89.2669 717.859 -96.1036" fill="url(#paint25_linear_101:48)"/>
+<path d="M250.824 157.196C259.536 134.983 279.56 125.798 299.726 116.385C309.501 111.865 319.217 106.092 328.335 99.1072C353.826 79.7158 367.963 58.7838 399.791 50.7229C413.455 47.2742 429.71 49.6989 446.781 49.7643C495.841 50.1245 523.664 19.9994 549.78 -9.22978C551.207 -10.8154 552.634 -12.4009 554.125 -13.882C574.684 -36.2882 592.44 -59.1369 616.744 -76.086C622.547 -80.1931 628.693 -83.5059 635.261 -86.3586C659.143 -96.603 684.365 -101.644 710.285 -108.543" fill="url(#paint26_linear_101:48)"/>
+<path d="M243.44 145.071C252.113 123.024 272.01 113.631 291.971 104.342C301.746 99.8226 311.295 94.0078 320.476 87.1272C345.826 67.9653 361.127 47.3274 392.594 40.0598C406.449 36.9247 422.768 39.4539 439.8 39.6863C489.217 40.4022 516.07 9.14777 542.279 -20.8542C543.706 -22.4398 545.133 -24.0253 546.561 -25.6109C566.826 -48.2682 584.978 -70.9284 609.218 -87.982C615.022 -92.0891 621.207 -95.569 627.774 -98.4217C651.696 -108.833 676.878 -113.707 702.901 -120.669" fill="url(#paint27_linear_101:48)"/>
+<path d="M236.12 133.049C244.754 111.17 264.421 101.63 284.382 92.341C293.99 87.7796 303.603 82.0693 312.785 75.1887C338.056 56.361 354.458 35.9126 385.627 29.5428C399.775 26.6588 416.119 29.4595 433.048 29.7545C482.823 30.8259 508.834 -1.34876 534.905 -32.27C536.269 -33.9601 537.696 -35.5457 539.123 -37.1313C558.992 -59.9771 577.58 -82.6158 601.923 -99.7319C607.829 -103.902 613.911 -107.319 620.479 -110.172C644.337 -120.688 669.622 -125.624 695.811 -132.544" fill="url(#paint28_linear_101:48)"/>
+<path d="M228.736 120.924C237.268 99.1069 256.935 89.5669 276.729 80.2361C286.337 75.6747 295.784 69.9224 304.926 63.2088C330.12 44.7152 347.623 24.4564 378.43 18.8798C392.872 16.2469 409.177 19.2147 426.067 19.6767C476.199 21.1037 501.305 -12.0957 527.341 -43.9988C528.704 -45.6889 530.132 -47.2745 531.495 -48.9646C551.07 -72.0615 569.991 -94.6162 594.334 -111.732C600.24 -115.902 606.425 -119.382 612.929 -122.339C636.762 -133.127 662.175 -137.854 688.363 -144.774" fill="url(#paint29_linear_101:48)"/>
+<path d="M221.352 108.798C229.845 87.1481 249.384 77.3991 269.012 68.0262C278.518 63.5273 287.965 57.7751 297.171 51.166C322.286 33.0065 340.89 12.9372 371.233 8.21644C386.032 5.93912 402.298 9.074 419.085 9.59853C469.575 11.3812 493.775 -22.8431 519.737 -55.5609C521.101 -57.251 522.464 -58.9412 523.828 -60.6313C543.109 -83.9792 562.426 -106.345 586.808 -123.629C592.714 -127.798 598.899 -131.278 605.403 -134.235C629.275 -145.19 654.688 -149.917 680.979 -156.9" fill="url(#paint30_linear_101:48)"/>
+<path d="M214.032 96.7767C222.422 75.1892 241.795 65.3982 261.32 56.0879C270.826 51.589 280.209 45.7322 289.376 39.2902C314.311 21.5274 334.079 1.75208 364.099 -2.34244C379.193 -4.3687 395.419 -1.06675 412.168 -0.375161C463.014 1.76308 486.309 -33.486 512.133 -67.1231C513.497 -68.8133 514.861 -70.5034 516.161 -72.298C535.149 -95.8971 554.798 -118.179 579.18 -135.462C585.189 -139.695 591.31 -143.279 597.814 -146.236C621.623 -157.295 647.201 -161.981 673.493 -168.963" fill="url(#paint31_linear_101:48)"/>
+<path d="M206.649 84.6513C214.999 63.2309 234.245 53.2308 253.668 43.983C263.071 39.5467 272.454 33.6898 281.621 27.2479C306.414 9.71458 327.346 -9.76668 357.069 -12.9634C372.417 -14.5715 388.707 -11.165 405.353 -10.4109C456.62 -7.81252 478.946 -44.1909 504.799 -78.7054C506.099 -80.5 507.463 -82.1901 508.826 -83.8802C527.418 -107.668 547.502 -129.928 571.821 -147.316C577.83 -151.548 583.951 -155.133 590.391 -158.194C614.239 -169.421 639.715 -174.044 666.275 -181.047" fill="url(#paint32_linear_101:48)"/>
+<path d="M199.265 72.5254C207.576 51.272 226.656 41.23 246.015 31.8776C255.354 27.3367 264.634 21.5424 273.865 15.205C298.58 -1.9942 320.51 -21.2234 349.974 -23.6894C365.616 -25.0464 381.867 -21.4728 398.371 -20.4891C449.996 -17.5351 471.48 -54.8338 497.195 -90.2676C498.495 -92.0622 499.795 -93.8569 501.159 -95.547C519.457 -119.586 539.938 -141.658 564.295 -159.213C570.24 -163.549 576.528 -167.092 582.865 -170.091C606.752 -181.484 632.292 -186.003 658.789 -193.11" fill="url(#paint33_linear_101:48)"/>
+<path d="M191.881 60.3998C200.154 39.3135 219.106 29.0624 238.362 19.7725C247.599 15.2942 256.879 9.49994 266.11 3.16248C290.747 -13.7026 313.739 -32.5752 342.777 -34.3525C358.674 -35.2914 374.822 -31.6553 391.39 -30.5671C443.372 -27.2575 463.95 -65.581 489.528 -101.934C490.828 -103.729 492.128 -105.523 493.428 -107.318C511.432 -131.608 532.246 -153.596 556.603 -171.151C562.548 -175.487 568.773 -179.134 575.213 -182.196C599.036 -193.694 624.678 -198.275 651.341 -205.34" fill="url(#paint34_linear_101:48)"/>
+<path d="M184.561 48.3783C192.833 27.292 211.517 17.0614 230.67 7.83408C239.907 3.35574 249.021 -2.48054 258.315 -8.71346C282.874 -25.2444 306.864 -43.8649 335.644 -44.9114C351.795 -45.4322 368.007 -41.6916 384.472 -40.5409C436.772 -36.7086 456.484 -76.224 482.091 -113.454C483.327 -115.353 484.627 -117.148 485.927 -118.943C503.638 -143.484 524.784 -165.388 549.244 -183.005C555.292 -187.404 561.516 -191.051 567.854 -194.05C591.716 -205.715 617.422 -210.192 644.085 -217.257" fill="url(#paint35_linear_101:48)"/>
+<path d="M177.177 36.253C185.41 15.3338 204.03 4.99864 223.017 -4.27066C256.488 -20.4968 289.258 -55.2106 328.613 -55.5323C345.019 -55.6349 361.231 -51.8943 377.657 -50.5765C430.315 -46.3887 449.184 -86.8243 474.59 -125.078C492.617 -152.105 515.435 -175.886 541.719 -194.901C570.647 -215.812 602.834 -220.51 636.637 -229.487" fill="url(#paint36_linear_101:48)"/>
+</g>
+<path d="M72.2967 297.462V296.457C71.5985 297.552 70.6497 298.252 69.4503 298.521C68.2509 298.79 67.0694 298.701 65.9058 298.234C64.7243 297.768 63.7218 296.888 62.8804 295.614C62.0391 294.34 61.6094 292.671 61.6094 290.589C61.6094 288.148 62.1644 286.192 63.2743 284.667C64.3842 283.159 66.1743 282.406 68.6447 282.406C70.5244 282.406 72.2609 282.908 73.872 283.931C75.4831 284.954 76.2708 286.838 76.2708 289.584V297.875C76.2708 300.621 75.4652 302.487 73.872 303.492C72.2609 304.497 70.5244 305 68.6447 305C65.0465 305 62.8088 303.313 61.9496 299.939H66.228C66.5324 300.495 67.0157 300.908 67.6602 301.213C68.3046 301.5 68.9491 301.59 69.5935 301.446C70.238 301.303 70.8287 300.926 71.3479 300.298C71.9028 299.652 72.2072 298.719 72.2967 297.462ZM65.6015 290.697C65.6015 293.407 66.3891 294.914 67.9466 295.201C69.504 295.488 70.6676 295.129 71.4016 294.106C71.7596 293.676 72.0102 292.994 72.1713 292.079C72.3325 291.163 72.3325 290.248 72.2072 289.333C72.0639 288.435 71.7417 287.628 71.2405 286.928C70.7392 286.228 69.9874 285.869 69.0028 285.869C67.6781 285.869 66.7651 286.354 66.2996 287.341C65.8342 288.31 65.6015 289.44 65.6015 290.697Z" fill="white"/>
+<path d="M90.6097 298.396H88.551C87.9603 298.396 87.477 298.216 87.1189 297.839C86.743 297.462 86.564 296.978 86.564 296.404V288.4C86.564 287.466 86.2776 286.766 85.7047 286.336C85.1319 285.905 84.5053 285.69 83.7892 285.69C83.0911 285.69 82.4645 285.905 81.9096 286.336C81.3546 286.766 81.0861 287.448 81.0861 288.4V298.414H76.9688V289.225C76.9688 286.551 77.6669 284.774 79.0453 283.877C80.4417 282.98 81.9633 282.477 83.646 282.406C85.3646 282.406 86.9578 282.854 88.4078 283.751C89.8579 284.649 90.5739 286.479 90.5739 289.225V298.396H90.6097Z" fill="white"/>
+<path d="M91.6124 284.111H95.7298C95.7298 286.3 95.7298 285.564 95.7298 286.121V298.414H91.6124V284.111Z" fill="white"/>
+<path d="M103.284 298.395C101.995 298.467 100.599 298.449 99.0954 298.342C97.5916 298.216 96.8398 297.265 96.8398 295.452V280.144H98.9522C99.4534 280.144 99.9188 280.341 100.295 280.736C100.689 281.131 100.886 281.598 100.886 282.154V282.692H103.284V283.518C103.284 284.11 103.087 284.595 102.694 284.954C102.3 285.331 101.834 285.51 101.279 285.51H100.868V294.322C100.868 294.986 101.261 295.327 102.049 295.327H103.284V298.395Z" fill="white"/>
+<path d="M114.49 293.568H117.426C116.997 295.219 116.173 296.475 114.956 297.337C113.739 298.234 112.217 298.683 110.373 298.683C108.135 298.683 106.399 297.965 105.146 296.511C103.893 295.093 103.266 293.083 103.266 290.445C103.266 287.933 103.875 285.977 105.092 284.559C106.345 283.105 108.082 282.387 110.319 282.387C112.665 282.387 114.49 283.087 115.779 284.505C117.032 285.959 117.659 287.969 117.659 290.571C117.659 290.732 117.659 290.858 117.659 290.984C117.659 291.109 117.659 291.181 117.659 291.217C117.659 291.414 117.641 291.558 117.605 291.63H107.455C107.491 292.85 107.795 293.747 108.332 294.34C108.834 294.968 109.603 295.273 110.624 295.273C111.286 295.273 111.859 295.129 112.324 294.86C112.45 294.824 112.557 294.752 112.647 294.645C112.736 294.555 112.844 294.447 112.969 294.322C113.005 294.196 113.148 294.053 113.416 293.855C113.667 293.676 114.025 293.568 114.49 293.568ZM107.455 288.992H113.452C113.381 287.933 113.094 287.143 112.629 286.641C112.127 286.084 111.394 285.815 110.463 285.815C109.603 285.815 108.905 286.084 108.35 286.641C107.777 287.179 107.491 287.969 107.455 288.992Z" fill="white"/>
+<path d="M56.6138 276.914H58.7262C59.2812 276.914 59.7466 277.112 60.1404 277.507C60.5343 277.901 60.7312 278.368 60.7312 278.924V298.414H56.6138V276.914Z" fill="white"/>
+<path d="M91.6122 280.145H93.7246C94.2795 280.145 94.7449 280.342 95.1388 280.737C95.5326 281.132 95.7295 281.598 95.7295 282.155V283.393H91.6122V280.145Z" fill="white"/>
+<path d="M67.0154 280.36H66.3709V279.893C66.0487 280.252 65.6011 280.432 65.0462 280.432C64.527 280.432 64.0795 280.252 63.7036 279.911C63.3097 279.535 63.1128 279.068 63.1128 278.494C63.1128 277.901 63.3276 277.417 63.7394 277.04C64.1153 276.681 64.5808 276.52 65.0999 276.52C65.6369 276.52 66.0666 276.699 66.3888 277.076V276.609H67.0333V280.36H67.0154ZM66.353 278.494C66.353 278.135 66.2277 277.83 65.995 277.56C65.7444 277.309 65.4579 277.184 65.0999 277.184C64.724 277.184 64.4196 277.309 64.1511 277.578C63.9005 277.83 63.7752 278.099 63.7752 278.386C63.7752 278.763 63.8826 279.086 64.1153 279.355C64.348 279.642 64.6524 279.768 65.0283 279.768C65.3863 279.768 65.6906 279.642 65.9592 279.391C66.2277 279.158 66.353 278.853 66.353 278.494Z" fill="white"/>
+<path d="M71.6697 278.386C71.6697 278.978 71.4907 279.463 71.1327 279.84C70.7568 280.234 70.2913 280.432 69.7006 280.432C69.1635 280.432 68.7518 280.252 68.4296 279.911V281.598H67.7493V276.591H68.3938V277.04C68.5549 276.861 68.7518 276.735 68.9487 276.645C69.1635 276.555 69.3783 276.52 69.629 276.52C70.1481 276.52 70.6135 276.699 71.0074 277.04C71.4549 277.399 71.6697 277.848 71.6697 278.386ZM70.9716 278.476C70.9716 278.117 70.8463 277.812 70.5956 277.56C70.345 277.309 70.0228 277.184 69.6648 277.184C69.2888 277.184 68.9845 277.327 68.7339 277.596C68.5012 277.848 68.3938 278.153 68.3938 278.494C68.3938 278.817 68.4833 279.086 68.6802 279.337C68.9129 279.624 69.253 279.768 69.7006 279.768C70.0586 279.768 70.3629 279.642 70.6135 279.391C70.8642 279.158 70.9716 278.853 70.9716 278.476Z" fill="white"/>
+<path d="M76.1636 280.36H75.5192V279.893C75.1969 280.252 74.7494 280.432 74.1944 280.432C73.6753 280.432 73.2278 280.252 72.8518 279.911C72.458 279.535 72.2611 279.068 72.2611 278.494C72.2611 277.901 72.4759 277.417 72.8876 277.04C73.2636 276.681 73.729 276.52 74.2481 276.52C74.7852 276.52 75.2148 276.699 75.5371 277.076V276.609H76.1815V280.36H76.1636ZM75.5192 278.494C75.5192 278.135 75.3938 277.83 75.1611 277.56C74.9105 277.309 74.6241 277.184 74.2661 277.184C73.8901 277.184 73.5858 277.309 73.3173 277.578C73.0666 277.83 72.9413 278.099 72.9413 278.386C72.9413 278.763 73.0487 279.086 73.2815 279.355C73.5142 279.642 73.8185 279.768 74.1944 279.768C74.5525 279.768 74.8568 279.642 75.1253 279.391C75.3759 279.158 75.5192 278.853 75.5192 278.494Z" fill="white"/>
+<path d="M80.656 279.122C80.4412 279.552 80.1905 279.875 79.9041 280.091C79.5819 280.324 79.2059 280.45 78.7405 280.45C78.2214 280.45 77.7559 280.27 77.3621 279.893C76.9504 279.499 76.7355 279.032 76.7355 278.458H76.7713C76.7713 278.458 76.7713 278.476 76.7534 278.494C76.7534 277.901 76.9504 277.417 77.3621 277.04C77.7201 276.699 78.1498 276.52 78.651 276.52C79.1164 276.52 79.5103 276.645 79.8683 276.878C80.2084 277.112 80.477 277.453 80.6381 277.883H79.8862C79.6356 277.435 79.2238 277.201 78.6689 277.201C78.3109 277.201 78.0244 277.327 77.7917 277.578C77.559 277.83 77.4337 278.135 77.4337 278.494C77.4337 278.853 77.559 279.176 77.8096 279.427C78.0602 279.678 78.3646 279.804 78.7226 279.804C78.9553 279.804 79.188 279.75 79.4029 279.624C79.6177 279.499 79.7788 279.337 79.9041 279.14H80.656V279.122Z" fill="white"/>
+<path d="M84.5411 280.36H83.8609V278.206C83.8609 277.919 83.7713 277.668 83.5744 277.488C83.3954 277.309 83.1448 277.201 82.8584 277.201C82.5719 277.201 82.3392 277.291 82.1602 277.452C81.9812 277.632 81.8917 277.847 81.8917 278.134V280.36H81.2114V275.353H81.8917V276.914C82.1602 276.645 82.4824 276.519 82.8763 276.519C83.3059 276.519 83.6818 276.663 84.0041 276.968C84.3442 277.291 84.5232 277.704 84.5232 278.206V280.36H84.5411Z" fill="white"/>
+<path d="M88.9808 278.745H85.8122C85.8659 279.068 86.027 279.319 86.2776 279.516C86.5103 279.678 86.761 279.768 87.0295 279.768C87.2801 279.768 87.5128 279.696 87.7456 279.552C87.9783 279.409 88.1394 279.211 88.2289 278.978H88.9271C88.748 279.481 88.4616 279.839 88.0857 280.091C87.7635 280.306 87.4054 280.414 87.0116 280.414C86.5103 280.414 86.0807 280.234 85.7227 279.875C85.3467 279.481 85.1498 279.014 85.1498 278.44C85.1498 277.847 85.3467 277.363 85.7585 277.004C86.1344 276.663 86.5641 276.501 87.0653 276.501C87.5665 276.501 88.0141 276.663 88.3721 277.004C88.7838 277.381 88.9987 277.901 88.9987 278.547V278.745H88.9808ZM88.2826 278.117C88.211 277.829 88.0499 277.614 87.8172 277.435C87.5844 277.255 87.3338 277.165 87.0474 277.165C86.6894 277.165 86.385 277.291 86.1523 277.524C85.9912 277.686 85.8659 277.883 85.8122 278.117H88.2826Z" fill="white"/>
+<path d="M38.7481 275.102C38.7481 275.102 26.3065 282.711 38.032 290.266C40.2876 291.738 48.4686 295.83 48.2359 299.616C48.2359 299.616 53.1946 292.258 45.9445 287.628C38.4974 282.89 36.6357 277.83 38.7481 275.102Z" fill="white"/>
+<path d="M34.416 289.638C34.416 289.638 29.9764 296.386 38.7124 297.768C39.5717 297.876 45.8909 298.54 47.5378 300.621C47.5378 300.621 47.3946 297.032 42.239 294.914C37.1012 292.797 34.9889 292.276 34.416 289.638Z" fill="white"/>
+<path d="M51.6014 282.549C46.2667 276.95 44.7809 273.487 47.0723 269C47.0723 269 31.1578 275.138 46.8754 286.031C52.4964 289.925 51.5656 293.909 51.5656 294.053C52.4427 293.138 56.936 288.149 51.6014 282.549Z" fill="white"/>
+<defs>
+<linearGradient id="paint0_linear_101:48" x1="675.336" y1="344.11" x2="642.922" y2="290.88" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint1_linear_101:48" x1="667.952" y1="331.986" x2="636.376" y2="280.131" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint2_linear_101:48" x1="660.633" y1="319.967" x2="629.763" y2="269.271" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint3_linear_101:48" x1="653.071" y1="307.665" x2="623.069" y2="258.394" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint4_linear_101:48" x1="645.752" y1="295.645" x2="616.569" y2="247.721" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint5_linear_101:48" x1="638.496" y1="283.729" x2="609.999" y2="236.931" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint6_linear_101:48" x1="631.05" y1="271.501" x2="603.358" y2="226.025" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint7_linear_101:48" x1="623.667" y1="259.376" x2="596.633" y2="214.981" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint8_linear_101:48" x1="616.336" y1="247.221" x2="590.095" y2="204.128" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint9_linear_101:48" x1="608.952" y1="235.097" x2="583.498" y2="193.295" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint10_linear_101:48" x1="601.582" y1="223.108" x2="576.779" y2="182.376" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint11_linear_101:48" x1="594.238" y1="210.817" x2="570.208" y2="171.354" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint12_linear_101:48" x1="586.943" y1="199.068" x2="563.552" y2="160.655" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint13_linear_101:48" x1="579.611" y1="186.913" x2="556.972" y2="149.733" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint14_linear_101:48" x1="572.114" y1="174.715" x2="550.195" y2="138.72" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint15_linear_101:48" x1="564.731" y1="162.591" x2="543.452" y2="127.647" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint16_linear_101:48" x1="557.462" y1="150.539" x2="536.837" y2="116.668" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint17_linear_101:48" x1="550.288" y1="138.873" x2="529.993" y2="105.543" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint18_linear_101:48" x1="543.468" y1="127.558" x2="523.185" y2="94.2478" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint19_linear_101:48" x1="536.728" y1="116.489" x2="516.352" y2="83.0267" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint20_linear_101:48" x1="530.083" y1="105.693" x2="509.568" y2="72.0019" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint21_linear_101:48" x1="523.605" y1="94.8226" x2="502.876" y2="60.7807" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint22_linear_101:48" x1="516.932" y1="83.9803" x2="495.951" y2="49.5253" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint23_linear_101:48" x1="510.368" y1="73.2001" x2="489.059" y2="38.2067" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint24_linear_101:48" x1="503.899" y1="62.6916" x2="482.213" y2="27.0789" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint25_linear_101:48" x1="497.384" y1="51.9945" x2="475.279" y2="15.6924" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint26_linear_101:48" x1="490.846" y1="41.2575" x2="468.352" y2="4.31636" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint27_linear_101:48" x1="484.35" y1="30.5886" x2="461.389" y2="-7.11651" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint28_linear_101:48" x1="478.087" y1="20.1876" x2="454.549" y2="-18.4657" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint29_linear_101:48" x1="471.633" y1="9.5904" x2="447.55" y2="-29.9588" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint30_linear_101:48" x1="465.196" y1="-0.981021" x2="440.526" y2="-41.4944" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint31_linear_101:48" x1="458.777" y1="-11.4062" x2="433.513" y2="-52.896" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint32_linear_101:48" x1="452.502" y1="-21.8269" x2="426.468" y2="-64.5804" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint33_linear_101:48" x1="446.057" y1="-32.2962" x2="419.3" y2="-76.2365" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint34_linear_101:48" x1="439.65" y1="-42.8171" x2="412.171" y2="-87.9439" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint35_linear_101:48" x1="433.345" y1="-53.1723" x2="404.997" y2="-99.7241" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint36_linear_101:48" x1="427.028" y1="-63.5442" x2="397.606" y2="-111.861" gradientUnits="userSpaceOnUse">
+<stop stop-color="#0070CC"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+</defs>
+</svg>
diff --git a/public/img/poweredby/videos/014.png b/public/img/poweredby/videos/014.png
new file mode 100644
index 0000000..5da0579
--- /dev/null
+++ b/public/img/poweredby/videos/014.png
Binary files differ
diff --git a/public/img/poweredby/videos/014.svg b/public/img/poweredby/videos/014.svg
new file mode 100644
index 0000000..5fffd23
--- /dev/null
+++ b/public/img/poweredby/videos/014.svg
@@ -0,0 +1,328 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="335" fill="#91C2EA"/>
+<mask id="mask0_101:49" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="277" y="85" width="265" height="250">
+<rect x="277" y="85" width="265" height="250" fill="#91C2EA"/>
+</mask>
+<g mask="url(#mask0_101:49)">
+<g filter="url(#filter0_bii_101:49)">
+<path d="M421 155.16C421 148.829 427.364 144.477 433.264 146.773L592.264 208.657C595.722 210.002 598 213.333 598 217.044V376.84C598 383.171 591.636 387.523 585.736 385.227L426.736 323.343C423.278 321.998 421 318.667 421 314.956V155.16Z" fill="white" fill-opacity="0.1"/>
+</g>
+<path d="M351 91L356.573 93.2233V99.2233L351 97V91Z" fill="#0070CC"/>
+<path d="M363.075 95.8172L368.647 98.0406V104.041L363.075 101.817V95.8172Z" fill="#0070CC"/>
+<path d="M375.149 100.634L380.722 102.858V108.858L375.149 106.634V100.634Z" fill="#0070CC"/>
+<path d="M387.224 105.452L392.796 107.675V113.675L387.224 111.452V105.452Z" fill="#0070CC"/>
+<path d="M399.298 110.269L404.871 112.492V118.492L399.298 116.269V110.269Z" fill="#0070CC"/>
+<path d="M411.373 115.086L416.945 117.31V123.31L411.373 121.086V115.086Z" fill="#0070CC"/>
+<path d="M423.447 119.903L429.02 122.127V128.127L423.447 125.903V119.903Z" fill="#0070CC"/>
+<path d="M435.522 124.721L441.095 126.944V132.944L435.522 130.721V124.721Z" fill="#0070CC"/>
+<path d="M447.596 129.538L453.169 131.761V137.761L447.596 135.538V129.538Z" fill="#0070CC"/>
+<path d="M459.671 134.355L465.244 136.579V142.579L459.671 140.355V134.355Z" fill="#0070CC"/>
+<path d="M471.745 139.172L477.318 141.396V147.396L471.745 145.172V139.172Z" fill="#0070CC"/>
+<path d="M483.82 143.99L489.393 146.213V152.213L483.82 149.99V143.99Z" fill="#0070CC"/>
+<path d="M495.894 148.807L501.467 151.03V157.03L495.894 154.807V148.807Z" fill="#0070CC"/>
+<path d="M351 104L356.573 106.223V112.223L351 110V104Z" fill="#0070CC"/>
+<path d="M363.075 108.817L368.647 111.041V117.041L363.075 114.817V108.817Z" fill="#0070CC"/>
+<path d="M375.149 113.634L380.722 115.858V121.858L375.149 119.634V113.634Z" fill="#0070CC"/>
+<path d="M387.224 118.452L392.796 120.675V126.675L387.224 124.452V118.452Z" fill="#0070CC"/>
+<path d="M399.298 123.269L404.871 125.492V131.492L399.298 129.269V123.269Z" fill="#0070CC"/>
+<path d="M411.373 128.086L416.945 130.31V136.31L411.373 134.086V128.086Z" fill="#0070CC"/>
+<path d="M423.447 132.903L429.02 135.127V141.127L423.447 138.903V132.903Z" fill="#0070CC"/>
+<path d="M435.522 137.721L441.095 139.944V145.944L435.522 143.721V137.721Z" fill="#0070CC"/>
+<path d="M447.596 142.538L453.169 144.761V150.761L447.596 148.538V142.538Z" fill="#0070CC"/>
+<path d="M459.671 147.355L465.244 149.579V155.579L459.671 153.355V147.355Z" fill="#0070CC"/>
+<path d="M471.745 152.172L477.318 154.396V160.396L471.745 158.172V152.172Z" fill="#0070CC"/>
+<path d="M483.82 156.99L489.393 159.213V165.213L483.82 162.99V156.99Z" fill="#0070CC"/>
+<path d="M495.894 161.807L501.467 164.03V170.03L495.894 167.807V161.807Z" fill="#0070CC"/>
+<path d="M351 117L356.573 119.223V125.223L351 123V117Z" fill="#0070CC"/>
+<path d="M363.075 121.817L368.647 124.041V130.041L363.075 127.817V121.817Z" fill="#0070CC"/>
+<path d="M375.149 126.634L380.722 128.858V134.858L375.149 132.634V126.634Z" fill="#0070CC"/>
+<path d="M387.224 131.452L392.796 133.675V139.675L387.224 137.452V131.452Z" fill="#0070CC"/>
+<path d="M399.298 136.269L404.871 138.492V144.492L399.298 142.269V136.269Z" fill="#0070CC"/>
+<path d="M411.373 141.086L416.945 143.31V149.31L411.373 147.086V141.086Z" fill="#0070CC"/>
+<path d="M423.447 145.903L429.02 148.127V154.127L423.447 151.903V145.903Z" fill="#0070CC"/>
+<path d="M435.522 150.721L441.095 152.944V158.944L435.522 156.721V150.721Z" fill="#0070CC"/>
+<path d="M447.596 155.538L453.169 157.761V163.761L447.596 161.538V155.538Z" fill="#0070CC"/>
+<path d="M459.671 160.355L465.244 162.579V168.579L459.671 166.355V160.355Z" fill="#0070CC"/>
+<path d="M471.745 165.172L477.318 167.396V173.396L471.745 171.172V165.172Z" fill="#0070CC"/>
+<path d="M483.82 169.99L489.393 172.213V178.213L483.82 175.99V169.99Z" fill="#0070CC"/>
+<path d="M495.894 174.807L501.467 177.03V183.03L495.894 180.807V174.807Z" fill="#0070CC"/>
+<path d="M351 130L356.573 132.223V138.223L351 136V130Z" fill="#0070CC"/>
+<path d="M363.075 134.817L368.647 137.041V143.041L363.075 140.817V134.817Z" fill="#0070CC"/>
+<path d="M375.149 139.634L380.722 141.858V147.858L375.149 145.634V139.634Z" fill="#0070CC"/>
+<path d="M387.224 144.452L392.796 146.675V152.675L387.224 150.452V144.452Z" fill="#0070CC"/>
+<path d="M399.298 149.269L404.871 151.492V157.492L399.298 155.269V149.269Z" fill="#0070CC"/>
+<path d="M411.373 154.086L416.945 156.31V162.31L411.373 160.086V154.086Z" fill="#0070CC"/>
+<path d="M423.447 158.903L429.02 161.127V167.127L423.447 164.903V158.903Z" fill="#0070CC"/>
+<path d="M435.522 163.721L441.095 165.944V171.944L435.522 169.721V163.721Z" fill="#0070CC"/>
+<path d="M447.596 168.538L453.169 170.761V176.761L447.596 174.538V168.538Z" fill="#0070CC"/>
+<path d="M459.671 173.355L465.244 175.579V181.579L459.671 179.355V173.355Z" fill="#0070CC"/>
+<path d="M471.745 178.172L477.318 180.396V186.396L471.745 184.172V178.172Z" fill="#0070CC"/>
+<path d="M483.82 182.99L489.393 185.213V191.213L483.82 188.99V182.99Z" fill="#0070CC"/>
+<path d="M495.894 187.807L501.467 190.03V196.03L495.894 193.807V187.807Z" fill="#0070CC"/>
+<path d="M351 143L356.573 145.223V151.223L351 149V143Z" fill="#0070CC"/>
+<path d="M363.075 147.817L368.647 150.041V156.041L363.075 153.817V147.817Z" fill="#0070CC"/>
+<path d="M375.149 152.634L380.722 154.858V160.858L375.149 158.634V152.634Z" fill="#0070CC"/>
+<path d="M387.224 157.452L392.796 159.675V165.675L387.224 163.452V157.452Z" fill="#0070CC"/>
+<path d="M399.298 162.269L404.871 164.492V170.492L399.298 168.269V162.269Z" fill="#0070CC"/>
+<path d="M411.373 167.086L416.945 169.31V175.31L411.373 173.086V167.086Z" fill="#0070CC"/>
+<path d="M423.447 171.903L429.02 174.127V180.127L423.447 177.903V171.903Z" fill="#0070CC"/>
+<path d="M435.522 176.721L441.095 178.944V184.944L435.522 182.721V176.721Z" fill="#0070CC"/>
+<path d="M447.596 181.538L453.169 183.761V189.761L447.596 187.538V181.538Z" fill="#0070CC"/>
+<path d="M459.671 186.355L465.244 188.579V194.579L459.671 192.355V186.355Z" fill="#0070CC"/>
+<path d="M471.745 191.172L477.318 193.396V199.396L471.745 197.172V191.172Z" fill="#0070CC"/>
+<path d="M483.82 195.99L489.393 198.213V204.213L483.82 201.99V195.99Z" fill="#0070CC"/>
+<path d="M495.894 200.807L501.467 203.03V209.03L495.894 206.807V200.807Z" fill="#0070CC"/>
+<path d="M351 156L356.573 158.223V164.223L351 162V156Z" fill="#0070CC"/>
+<path d="M363.075 160.817L368.647 163.041V169.041L363.075 166.817V160.817Z" fill="#0070CC"/>
+<path d="M375.149 165.634L380.722 167.858V173.858L375.149 171.634V165.634Z" fill="#0070CC"/>
+<path d="M387.224 170.452L392.796 172.675V178.675L387.224 176.452V170.452Z" fill="#0070CC"/>
+<path d="M399.298 175.269L404.871 177.492V183.492L399.298 181.269V175.269Z" fill="#0070CC"/>
+<path d="M411.373 180.086L416.945 182.31V188.31L411.373 186.086V180.086Z" fill="#0070CC"/>
+<path d="M423.447 184.903L429.02 187.127V193.127L423.447 190.903V184.903Z" fill="#0070CC"/>
+<path d="M435.522 189.721L441.095 191.944V197.944L435.522 195.721V189.721Z" fill="#0070CC"/>
+<path d="M447.596 194.538L453.169 196.761V202.761L447.596 200.538V194.538Z" fill="#0070CC"/>
+<path d="M459.671 199.355L465.244 201.579V207.579L459.671 205.355V199.355Z" fill="#0070CC"/>
+<path d="M471.745 204.172L477.318 206.396V212.396L471.745 210.172V204.172Z" fill="#0070CC"/>
+<path d="M483.82 208.99L489.393 211.213V217.213L483.82 214.99V208.99Z" fill="#0070CC"/>
+<path d="M495.894 213.807L501.467 216.03V222.03L495.894 219.807V213.807Z" fill="#0070CC"/>
+<path d="M351 169L356.573 171.223V177.223L351 175V169Z" fill="#0070CC"/>
+<path d="M363.075 173.817L368.647 176.041V182.041L363.075 179.817V173.817Z" fill="#0070CC"/>
+<path d="M375.149 178.634L380.722 180.858V186.858L375.149 184.634V178.634Z" fill="#0070CC"/>
+<path d="M387.224 183.452L392.796 185.675V191.675L387.224 189.452V183.452Z" fill="#0070CC"/>
+<path d="M399.298 188.269L404.871 190.492V196.492L399.298 194.269V188.269Z" fill="#0070CC"/>
+<path d="M411.373 193.086L416.945 195.31V201.31L411.373 199.086V193.086Z" fill="#0070CC"/>
+<path d="M423.447 197.903L429.02 200.127V206.127L423.447 203.903V197.903Z" fill="#0070CC"/>
+<path d="M435.522 202.721L441.095 204.944V210.944L435.522 208.721V202.721Z" fill="#0070CC"/>
+<path d="M447.596 207.538L453.169 209.761V215.761L447.596 213.538V207.538Z" fill="#0070CC"/>
+<path d="M459.671 212.355L465.244 214.579V220.579L459.671 218.355V212.355Z" fill="#0070CC"/>
+<path d="M471.745 217.172L477.318 219.396V225.396L471.745 223.172V217.172Z" fill="#0070CC"/>
+<path d="M483.82 221.99L489.393 224.213V230.213L483.82 227.99V221.99Z" fill="#0070CC"/>
+<path d="M495.894 226.807L501.467 229.03V235.03L495.894 232.807V226.807Z" fill="#0070CC"/>
+<path d="M351 182L356.573 184.223V190.223L351 188V182Z" fill="#0070CC"/>
+<path d="M363.075 186.817L368.647 189.041V195.041L363.075 192.817V186.817Z" fill="#0070CC"/>
+<path d="M375.149 191.634L380.722 193.858V199.858L375.149 197.634V191.634Z" fill="#0070CC"/>
+<path d="M387.224 196.452L392.796 198.675V204.675L387.224 202.452V196.452Z" fill="#0070CC"/>
+<path d="M399.298 201.269L404.871 203.492V209.492L399.298 207.269V201.269Z" fill="#0070CC"/>
+<path d="M411.373 206.086L416.945 208.31V214.31L411.373 212.086V206.086Z" fill="#0070CC"/>
+<path d="M423.447 210.903L429.02 213.127V219.127L423.447 216.903V210.903Z" fill="#0070CC"/>
+<path d="M435.522 215.721L441.095 217.944V223.944L435.522 221.721V215.721Z" fill="#0070CC"/>
+<path d="M447.596 220.538L453.169 222.761V228.761L447.596 226.538V220.538Z" fill="#0070CC"/>
+<path d="M459.671 225.355L465.244 227.579V233.579L459.671 231.355V225.355Z" fill="#0070CC"/>
+<path d="M471.745 230.172L477.318 232.396V238.396L471.745 236.172V230.172Z" fill="#0070CC"/>
+<path d="M483.82 234.99L489.393 237.213V243.213L483.82 240.99V234.99Z" fill="#0070CC"/>
+<path d="M495.894 239.807L501.467 242.03V248.03L495.894 245.807V239.807Z" fill="#0070CC"/>
+<path d="M351 195L356.573 197.223V203.223L351 201V195Z" fill="#0070CC"/>
+<path d="M363.075 199.817L368.647 202.041V208.041L363.075 205.817V199.817Z" fill="#0070CC"/>
+<path d="M375.149 204.634L380.722 206.858V212.858L375.149 210.634V204.634Z" fill="#0070CC"/>
+<path d="M387.224 209.452L392.796 211.675V217.675L387.224 215.452V209.452Z" fill="#0070CC"/>
+<path d="M399.298 214.269L404.871 216.492V222.492L399.298 220.269V214.269Z" fill="#0070CC"/>
+<path d="M411.373 219.086L416.945 221.31V227.31L411.373 225.086V219.086Z" fill="#0070CC"/>
+<path d="M423.447 223.903L429.02 226.127V232.127L423.447 229.903V223.903Z" fill="#0070CC"/>
+<path d="M435.522 228.721L441.095 230.944V236.944L435.522 234.721V228.721Z" fill="#0070CC"/>
+<path d="M447.596 233.538L453.169 235.761V241.761L447.596 239.538V233.538Z" fill="#0070CC"/>
+<path d="M459.671 238.355L465.244 240.579V246.579L459.671 244.355V238.355Z" fill="#0070CC"/>
+<path d="M471.745 243.172L477.318 245.396V251.396L471.745 249.172V243.172Z" fill="#0070CC"/>
+<path d="M483.82 247.99L489.393 250.213V256.213L483.82 253.99V247.99Z" fill="#0070CC"/>
+<path d="M495.894 252.807L501.467 255.03V261.03L495.894 258.807V252.807Z" fill="#0070CC"/>
+<path d="M351 208L356.573 210.223V216.223L351 214V208Z" fill="#0070CC"/>
+<path d="M363.075 212.817L368.647 215.041V221.041L363.075 218.817V212.817Z" fill="#0070CC"/>
+<path d="M375.149 217.634L380.722 219.858V225.858L375.149 223.634V217.634Z" fill="#0070CC"/>
+<path d="M387.224 222.452L392.796 224.675V230.675L387.224 228.452V222.452Z" fill="#0070CC"/>
+<path d="M399.298 227.269L404.871 229.492V235.492L399.298 233.269V227.269Z" fill="#0070CC"/>
+<path d="M411.373 232.086L416.945 234.31V240.31L411.373 238.086V232.086Z" fill="#0070CC"/>
+<path d="M423.447 236.903L429.02 239.127V245.127L423.447 242.903V236.903Z" fill="#0070CC"/>
+<path d="M435.522 241.721L441.095 243.944V249.944L435.522 247.721V241.721Z" fill="#0070CC"/>
+<path d="M447.596 246.538L453.169 248.761V254.761L447.596 252.538V246.538Z" fill="#0070CC"/>
+<path d="M459.671 251.355L465.244 253.579V259.579L459.671 257.355V251.355Z" fill="#0070CC"/>
+<path d="M471.745 256.172L477.318 258.396V264.396L471.745 262.172V256.172Z" fill="#0070CC"/>
+<path d="M483.82 260.99L489.393 263.213V269.213L483.82 266.99V260.99Z" fill="#0070CC"/>
+<path d="M495.894 265.807L501.467 268.03V274.03L495.894 271.807V265.807Z" fill="#0070CC"/>
+<path d="M351 221L356.573 223.223V229.223L351 227V221Z" fill="#0070CC"/>
+<path d="M363.075 225.817L368.647 228.041V234.041L363.075 231.817V225.817Z" fill="#0070CC"/>
+<path d="M375.149 230.634L380.722 232.858V238.858L375.149 236.634V230.634Z" fill="#0070CC"/>
+<path d="M387.224 235.452L392.796 237.675V243.675L387.224 241.452V235.452Z" fill="#0070CC"/>
+<path d="M399.298 240.269L404.871 242.492V248.492L399.298 246.269V240.269Z" fill="#0070CC"/>
+<path d="M411.373 245.086L416.945 247.31V253.31L411.373 251.086V245.086Z" fill="#0070CC"/>
+<path d="M423.447 249.903L429.02 252.127V258.127L423.447 255.903V249.903Z" fill="#0070CC"/>
+<path d="M435.522 254.721L441.095 256.944V262.944L435.522 260.721V254.721Z" fill="#0070CC"/>
+<path d="M447.596 259.538L453.169 261.761V267.761L447.596 265.538V259.538Z" fill="#0070CC"/>
+<path d="M459.671 264.355L465.244 266.579V272.579L459.671 270.355V264.355Z" fill="#0070CC"/>
+<path d="M471.745 269.172L477.318 271.396V277.396L471.745 275.172V269.172Z" fill="#0070CC"/>
+<path d="M483.82 273.99L489.393 276.213V282.213L483.82 279.99V273.99Z" fill="#0070CC"/>
+<path d="M495.894 278.807L501.467 281.03V287.03L495.894 284.807V278.807Z" fill="#0070CC"/>
+<path d="M351 234L356.573 236.223V242.223L351 240V234Z" fill="#0070CC"/>
+<path d="M363.075 238.817L368.647 241.041V247.041L363.075 244.817V238.817Z" fill="#0070CC"/>
+<path d="M375.149 243.634L380.722 245.858V251.858L375.149 249.634V243.634Z" fill="#0070CC"/>
+<path d="M387.224 248.452L392.796 250.675V256.675L387.224 254.452V248.452Z" fill="#0070CC"/>
+<path d="M399.298 253.269L404.871 255.492V261.492L399.298 259.269V253.269Z" fill="#0070CC"/>
+<path d="M411.373 258.086L416.945 260.31V266.31L411.373 264.086V258.086Z" fill="#0070CC"/>
+<path d="M423.447 262.903L429.02 265.127V271.127L423.447 268.903V262.903Z" fill="#0070CC"/>
+<path d="M435.522 267.721L441.095 269.944V275.944L435.522 273.721V267.721Z" fill="#0070CC"/>
+<path d="M447.596 272.538L453.169 274.761V280.761L447.596 278.538V272.538Z" fill="#0070CC"/>
+<path d="M459.671 277.355L465.244 279.579V285.579L459.671 283.355V277.355Z" fill="#0070CC"/>
+<path d="M471.745 282.172L477.318 284.396V290.396L471.745 288.172V282.172Z" fill="#0070CC"/>
+<path d="M483.82 286.99L489.393 289.213V295.213L483.82 292.99V286.99Z" fill="#0070CC"/>
+<path d="M495.894 291.807L501.467 294.03V300.03L495.894 297.807V291.807Z" fill="#0070CC"/>
+<path d="M351 247L356.573 249.223V255.223L351 253V247Z" fill="#0070CC"/>
+<path d="M363.075 251.817L368.647 254.041V260.041L363.075 257.817V251.817Z" fill="#0070CC"/>
+<path d="M375.149 256.634L380.722 258.858V264.858L375.149 262.634V256.634Z" fill="#0070CC"/>
+<path d="M387.224 261.452L392.796 263.675V269.675L387.224 267.452V261.452Z" fill="#0070CC"/>
+<path d="M399.298 266.269L404.871 268.492V274.492L399.298 272.269V266.269Z" fill="#0070CC"/>
+<path d="M411.373 271.086L416.945 273.31V279.31L411.373 277.086V271.086Z" fill="#0070CC"/>
+<path d="M423.447 275.903L429.02 278.127V284.127L423.447 281.903V275.903Z" fill="#0070CC"/>
+<path d="M435.522 280.721L441.095 282.944V288.944L435.522 286.721V280.721Z" fill="#0070CC"/>
+<path d="M447.596 285.538L453.169 287.761V293.761L447.596 291.538V285.538Z" fill="#0070CC"/>
+<path d="M459.671 290.355L465.244 292.579V298.579L459.671 296.355V290.355Z" fill="#0070CC"/>
+<path d="M471.745 295.172L477.318 297.396V303.396L471.745 301.172V295.172Z" fill="#0070CC"/>
+<path d="M483.82 299.99L489.393 302.213V308.213L483.82 305.99V299.99Z" fill="#0070CC"/>
+<path d="M495.894 304.807L501.467 307.03V313.03L495.894 310.807V304.807Z" fill="#0070CC"/>
+<path d="M351 260L356.573 262.223V268.223L351 266V260Z" fill="#0070CC"/>
+<path d="M363.075 264.817L368.647 267.041V273.041L363.075 270.817V264.817Z" fill="#0070CC"/>
+<path d="M375.149 269.634L380.722 271.858V277.858L375.149 275.634V269.634Z" fill="#0070CC"/>
+<path d="M387.224 274.452L392.796 276.675V282.675L387.224 280.452V274.452Z" fill="#0070CC"/>
+<path d="M399.298 279.269L404.871 281.492V287.492L399.298 285.269V279.269Z" fill="#0070CC"/>
+<path d="M411.373 284.086L416.945 286.31V292.31L411.373 290.086V284.086Z" fill="#0070CC"/>
+<path d="M423.447 288.903L429.02 291.127V297.127L423.447 294.903V288.903Z" fill="#0070CC"/>
+<path d="M435.522 293.721L441.095 295.944V301.944L435.522 299.721V293.721Z" fill="#0070CC"/>
+<path d="M447.596 298.538L453.169 300.761V306.761L447.596 304.538V298.538Z" fill="#0070CC"/>
+<path d="M459.671 303.355L465.244 305.579V311.579L459.671 309.355V303.355Z" fill="#0070CC"/>
+<path d="M471.745 308.172L477.318 310.396V316.396L471.745 314.172V308.172Z" fill="#0070CC"/>
+<path d="M483.82 312.99L489.393 315.213V321.213L483.82 318.99V312.99Z" fill="#0070CC"/>
+<path d="M495.894 317.807L501.467 320.03V326.03L495.894 323.807V317.807Z" fill="#0070CC"/>
+<path d="M351 273L356.573 275.223V281.223L351 279V273Z" fill="#0070CC"/>
+<path d="M363.075 277.817L368.647 280.041V286.041L363.075 283.817V277.817Z" fill="#0070CC"/>
+<path d="M375.149 282.634L380.722 284.858V290.858L375.149 288.634V282.634Z" fill="#0070CC"/>
+<path d="M387.224 287.452L392.796 289.675V295.675L387.224 293.452V287.452Z" fill="#0070CC"/>
+<path d="M399.298 292.269L404.871 294.492V300.492L399.298 298.269V292.269Z" fill="#0070CC"/>
+<path d="M411.373 297.086L416.945 299.31V305.31L411.373 303.086V297.086Z" fill="#0070CC"/>
+<path d="M423.447 301.903L429.02 304.127V310.127L423.447 307.903V301.903Z" fill="#0070CC"/>
+<path d="M435.522 306.721L441.095 308.944V314.944L435.522 312.721V306.721Z" fill="#0070CC"/>
+<path d="M447.596 311.538L453.169 313.761V319.761L447.596 317.538V311.538Z" fill="#0070CC"/>
+<path d="M459.671 316.355L465.244 318.579V324.579L459.671 322.355V316.355Z" fill="#0070CC"/>
+<path d="M471.745 321.172L477.318 323.396V329.396L471.745 327.172V321.172Z" fill="#0070CC"/>
+<path d="M483.82 325.99L489.393 328.213V334.213L483.82 331.99V325.99Z" fill="#0070CC"/>
+<path d="M495.894 330.807L501.467 333.03V339.03L495.894 336.807V330.807Z" fill="#0070CC"/>
+<path d="M351 286L356.573 288.223V294.223L351 292V286Z" fill="#0070CC"/>
+<path d="M363.075 290.817L368.647 293.041V299.041L363.075 296.817V290.817Z" fill="#0070CC"/>
+<path d="M375.149 295.634L380.722 297.858V303.858L375.149 301.634V295.634Z" fill="#0070CC"/>
+<path d="M387.224 300.452L392.796 302.675V308.675L387.224 306.452V300.452Z" fill="#0070CC"/>
+<path d="M399.298 305.269L404.871 307.492V313.492L399.298 311.269V305.269Z" fill="#0070CC"/>
+<path d="M411.373 310.086L416.945 312.31V318.31L411.373 316.086V310.086Z" fill="#0070CC"/>
+<path d="M423.447 314.903L429.02 317.127V323.127L423.447 320.903V314.903Z" fill="#0070CC"/>
+<path d="M435.522 319.721L441.095 321.944V327.944L435.522 325.721V319.721Z" fill="#0070CC"/>
+<path d="M447.596 324.538L453.169 326.761V332.761L447.596 330.538V324.538Z" fill="#0070CC"/>
+<path d="M459.671 329.355L465.244 331.579V337.579L459.671 335.355V329.355Z" fill="#0070CC"/>
+<path d="M471.745 334.172L477.318 336.396V342.396L471.745 340.172V334.172Z" fill="#0070CC"/>
+<path d="M483.82 338.99L489.393 341.213V347.213L483.82 344.99V338.99Z" fill="#0070CC"/>
+<path d="M495.894 343.807L501.467 346.03V352.03L495.894 349.807V343.807Z" fill="#0070CC"/>
+<path d="M351 299L356.573 301.223V307.223L351 305V299Z" fill="#0070CC"/>
+<path d="M363.075 303.817L368.647 306.041V312.041L363.075 309.817V303.817Z" fill="#0070CC"/>
+<path d="M375.149 308.634L380.722 310.858V316.858L375.149 314.634V308.634Z" fill="#0070CC"/>
+<path d="M387.224 313.452L392.796 315.675V321.675L387.224 319.452V313.452Z" fill="#0070CC"/>
+<path d="M399.298 318.269L404.871 320.492V326.492L399.298 324.269V318.269Z" fill="#0070CC"/>
+<path d="M411.373 323.086L416.945 325.31V331.31L411.373 329.086V323.086Z" fill="#0070CC"/>
+<path d="M423.447 327.903L429.02 330.127V336.127L423.447 333.903V327.903Z" fill="#0070CC"/>
+<path d="M435.522 332.721L441.095 334.944V340.944L435.522 338.721V332.721Z" fill="#0070CC"/>
+<path d="M447.596 337.538L453.169 339.761V345.761L447.596 343.538V337.538Z" fill="#0070CC"/>
+<path d="M459.671 342.355L465.244 344.579V350.579L459.671 348.355V342.355Z" fill="#0070CC"/>
+<path d="M471.745 347.172L477.318 349.396V355.396L471.745 353.172V347.172Z" fill="#0070CC"/>
+<path d="M483.82 351.99L489.393 354.213V360.213L483.82 357.99V351.99Z" fill="#0070CC"/>
+<path d="M495.894 356.807L501.467 359.03V365.03L495.894 362.807V356.807Z" fill="#0070CC"/>
+<path d="M351 312L356.573 314.223V320.223L351 318V312Z" fill="#0070CC"/>
+<path d="M363.075 316.817L368.647 319.041V325.041L363.075 322.817V316.817Z" fill="#0070CC"/>
+<path d="M375.149 321.634L380.722 323.858V329.858L375.149 327.634V321.634Z" fill="#0070CC"/>
+<path d="M387.224 326.452L392.796 328.675V334.675L387.224 332.452V326.452Z" fill="#0070CC"/>
+<path d="M399.298 331.269L404.871 333.492V339.492L399.298 337.269V331.269Z" fill="#0070CC"/>
+<path d="M411.373 336.086L416.945 338.31V344.31L411.373 342.086V336.086Z" fill="#0070CC"/>
+<path d="M423.447 340.903L429.02 343.127V349.127L423.447 346.903V340.903Z" fill="#0070CC"/>
+<path d="M435.522 345.721L441.095 347.944V353.944L435.522 351.721V345.721Z" fill="#0070CC"/>
+<path d="M447.596 350.538L453.169 352.761V358.761L447.596 356.538V350.538Z" fill="#0070CC"/>
+<path d="M459.671 355.355L465.244 357.579V363.579L459.671 361.355V355.355Z" fill="#0070CC"/>
+<path d="M471.745 360.172L477.318 362.396V368.396L471.745 366.172V360.172Z" fill="#0070CC"/>
+<path d="M483.82 364.99L489.393 367.213V373.213L483.82 370.99V364.99Z" fill="#0070CC"/>
+<path d="M495.894 369.807L501.467 372.03V378.03L495.894 375.807V369.807Z" fill="#0070CC"/>
+<path d="M351 325L356.573 327.223V333.223L351 331V325Z" fill="#0070CC"/>
+<path d="M363.075 329.817L368.647 332.041V338.041L363.075 335.817V329.817Z" fill="#0070CC"/>
+<path d="M375.149 334.634L380.722 336.858V342.858L375.149 340.634V334.634Z" fill="#0070CC"/>
+<path d="M387.224 339.452L392.796 341.675V347.675L387.224 345.452V339.452Z" fill="#0070CC"/>
+<path d="M399.298 344.269L404.871 346.492V352.492L399.298 350.269V344.269Z" fill="#0070CC"/>
+<path d="M411.373 349.086L416.945 351.31V357.31L411.373 355.086V349.086Z" fill="#0070CC"/>
+<path d="M423.447 353.903L429.02 356.127V362.127L423.447 359.903V353.903Z" fill="#0070CC"/>
+<path d="M435.522 358.721L441.095 360.944V366.944L435.522 364.721V358.721Z" fill="#0070CC"/>
+<path d="M447.596 363.538L453.169 365.761V371.761L447.596 369.538V363.538Z" fill="#0070CC"/>
+<path d="M459.671 368.355L465.244 370.579V376.579L459.671 374.355V368.355Z" fill="#0070CC"/>
+<path d="M471.745 373.172L477.318 375.396V381.396L471.745 379.172V373.172Z" fill="#0070CC"/>
+<path d="M483.82 377.99L489.393 380.213V386.213L483.82 383.99V377.99Z" fill="#0070CC"/>
+<path d="M495.894 382.807L501.467 385.03V391.03L495.894 388.807V382.807Z" fill="#0070CC"/>
+<path d="M351 338L356.573 340.223V346.223L351 344V338Z" fill="#0070CC"/>
+<path d="M363.075 342.817L368.647 345.041V351.041L363.075 348.817V342.817Z" fill="#0070CC"/>
+<path d="M375.149 347.634L380.722 349.858V355.858L375.149 353.634V347.634Z" fill="#0070CC"/>
+<path d="M387.224 352.452L392.796 354.675V360.675L387.224 358.452V352.452Z" fill="#0070CC"/>
+<path d="M399.298 357.269L404.871 359.492V365.492L399.298 363.269V357.269Z" fill="#0070CC"/>
+<path d="M411.373 362.086L416.945 364.31V370.31L411.373 368.086V362.086Z" fill="#0070CC"/>
+<path d="M423.447 366.903L429.02 369.127V375.127L423.447 372.903V366.903Z" fill="#0070CC"/>
+<path d="M435.522 371.721L441.095 373.944V379.944L435.522 377.721V371.721Z" fill="#0070CC"/>
+<path d="M447.596 376.538L453.169 378.761V384.761L447.596 382.538V376.538Z" fill="#0070CC"/>
+<path d="M459.671 381.355L465.244 383.579V389.579L459.671 387.355V381.355Z" fill="#0070CC"/>
+<path d="M471.745 386.172L477.318 388.396V394.396L471.745 392.172V386.172Z" fill="#0070CC"/>
+<path d="M483.82 390.99L489.393 393.213V399.213L483.82 396.99V390.99Z" fill="#0070CC"/>
+<path d="M495.894 395.807L501.467 398.03V404.03L495.894 401.807V395.807Z" fill="#0070CC"/>
+<g filter="url(#filter1_bii_101:49)">
+<path d="M304 186.16C304 179.829 310.364 175.477 316.264 177.773L475.264 239.657C478.722 241.002 481 244.333 481 248.044V407.84C481 414.171 474.636 418.523 468.736 416.227L309.736 354.343C306.278 352.998 304 349.667 304 345.956V186.16Z" fill="white" fill-opacity="0.1"/>
+</g>
+</g>
+<path d="M72.2967 294.462V293.457C71.5985 294.552 70.6497 295.252 69.4503 295.521C68.2509 295.79 67.0694 295.701 65.9058 295.234C64.7243 294.768 63.7218 293.888 62.8804 292.614C62.0391 291.34 61.6094 289.671 61.6094 287.589C61.6094 285.148 62.1644 283.192 63.2743 281.667C64.3842 280.159 66.1743 279.406 68.6447 279.406C70.5244 279.406 72.2609 279.908 73.872 280.931C75.4831 281.954 76.2708 283.838 76.2708 286.584V294.875C76.2708 297.621 75.4652 299.487 73.872 300.492C72.2609 301.497 70.5244 302 68.6447 302C65.0465 302 62.8088 300.313 61.9496 296.939H66.228C66.5324 297.495 67.0157 297.908 67.6602 298.213C68.3046 298.5 68.9491 298.59 69.5935 298.446C70.238 298.303 70.8287 297.926 71.3479 297.298C71.9028 296.652 72.2072 295.719 72.2967 294.462ZM65.6015 287.697C65.6015 290.407 66.3891 291.914 67.9466 292.201C69.504 292.488 70.6676 292.129 71.4016 291.106C71.7596 290.676 72.0102 289.994 72.1713 289.079C72.3325 288.163 72.3325 287.248 72.2072 286.333C72.0639 285.435 71.7417 284.628 71.2405 283.928C70.7392 283.228 69.9874 282.869 69.0028 282.869C67.6781 282.869 66.7651 283.354 66.2996 284.341C65.8342 285.31 65.6015 286.44 65.6015 287.697Z" fill="white"/>
+<path d="M90.6097 295.396H88.551C87.9603 295.396 87.477 295.216 87.1189 294.839C86.743 294.462 86.564 293.978 86.564 293.404V285.4C86.564 284.466 86.2776 283.766 85.7047 283.336C85.1319 282.905 84.5053 282.69 83.7892 282.69C83.0911 282.69 82.4645 282.905 81.9096 283.336C81.3546 283.766 81.0861 284.448 81.0861 285.4V295.414H76.9688V286.225C76.9688 283.551 77.6669 281.774 79.0453 280.877C80.4417 279.98 81.9633 279.477 83.646 279.406C85.3646 279.406 86.9578 279.854 88.4078 280.751C89.8579 281.649 90.5739 283.479 90.5739 286.225V295.396H90.6097Z" fill="white"/>
+<path d="M91.6124 281.111H95.7298C95.7298 283.3 95.7298 282.564 95.7298 283.121V295.414H91.6124V281.111Z" fill="white"/>
+<path d="M103.284 295.395C101.995 295.467 100.599 295.449 99.0954 295.342C97.5916 295.216 96.8398 294.265 96.8398 292.452V277.144H98.9522C99.4534 277.144 99.9188 277.341 100.295 277.736C100.689 278.131 100.886 278.598 100.886 279.154V279.692H103.284V280.518C103.284 281.11 103.087 281.595 102.694 281.954C102.3 282.331 101.834 282.51 101.279 282.51H100.868V291.322C100.868 291.986 101.261 292.327 102.049 292.327H103.284V295.395Z" fill="white"/>
+<path d="M114.49 290.568H117.426C116.997 292.219 116.173 293.475 114.956 294.337C113.739 295.234 112.217 295.683 110.373 295.683C108.135 295.683 106.399 294.965 105.146 293.511C103.893 292.093 103.266 290.083 103.266 287.445C103.266 284.933 103.875 282.977 105.092 281.559C106.345 280.105 108.082 279.387 110.319 279.387C112.665 279.387 114.49 280.087 115.779 281.505C117.032 282.959 117.659 284.969 117.659 287.571C117.659 287.732 117.659 287.858 117.659 287.984C117.659 288.109 117.659 288.181 117.659 288.217C117.659 288.414 117.641 288.558 117.605 288.63H107.455C107.491 289.85 107.795 290.747 108.332 291.34C108.834 291.968 109.603 292.273 110.624 292.273C111.286 292.273 111.859 292.129 112.324 291.86C112.45 291.824 112.557 291.752 112.647 291.645C112.736 291.555 112.844 291.447 112.969 291.322C113.005 291.196 113.148 291.053 113.416 290.855C113.667 290.676 114.025 290.568 114.49 290.568ZM107.455 285.992H113.452C113.381 284.933 113.094 284.143 112.629 283.641C112.127 283.084 111.394 282.815 110.463 282.815C109.603 282.815 108.905 283.084 108.35 283.641C107.777 284.179 107.491 284.969 107.455 285.992Z" fill="white"/>
+<path d="M56.6138 273.914H58.7262C59.2812 273.914 59.7466 274.112 60.1404 274.507C60.5343 274.901 60.7312 275.368 60.7312 275.924V295.414H56.6138V273.914Z" fill="white"/>
+<path d="M91.6122 277.145H93.7246C94.2795 277.145 94.745 277.342 95.1388 277.737C95.5326 278.132 95.7295 278.598 95.7295 279.155V280.393H91.6122V277.145Z" fill="white"/>
+<path d="M67.0154 277.36H66.3709V276.893C66.0487 277.252 65.6011 277.432 65.0462 277.432C64.527 277.432 64.0795 277.252 63.7036 276.911C63.3097 276.535 63.1128 276.068 63.1128 275.494C63.1128 274.901 63.3276 274.417 63.7394 274.04C64.1153 273.681 64.5808 273.52 65.0999 273.52C65.6369 273.52 66.0666 273.699 66.3888 274.076V273.609H67.0333V277.36H67.0154ZM66.353 275.494C66.353 275.135 66.2277 274.83 65.995 274.56C65.7444 274.309 65.4579 274.184 65.0999 274.184C64.724 274.184 64.4196 274.309 64.1511 274.578C63.9005 274.83 63.7752 275.099 63.7752 275.386C63.7752 275.763 63.8826 276.086 64.1153 276.355C64.348 276.642 64.6524 276.768 65.0283 276.768C65.3863 276.768 65.6906 276.642 65.9592 276.391C66.2277 276.158 66.353 275.853 66.353 275.494Z" fill="white"/>
+<path d="M71.6697 275.386C71.6697 275.978 71.4907 276.463 71.1327 276.84C70.7568 277.234 70.2913 277.432 69.7006 277.432C69.1635 277.432 68.7518 277.252 68.4296 276.911V278.598H67.7493V273.591H68.3938V274.04C68.5549 273.861 68.7518 273.735 68.9487 273.645C69.1635 273.555 69.3783 273.52 69.629 273.52C70.1481 273.52 70.6135 273.699 71.0074 274.04C71.4549 274.399 71.6697 274.848 71.6697 275.386ZM70.9716 275.476C70.9716 275.117 70.8463 274.812 70.5956 274.56C70.345 274.309 70.0228 274.184 69.6648 274.184C69.2888 274.184 68.9845 274.327 68.7339 274.596C68.5012 274.848 68.3938 275.153 68.3938 275.494C68.3938 275.817 68.4833 276.086 68.6802 276.337C68.9129 276.624 69.253 276.768 69.7006 276.768C70.0586 276.768 70.3629 276.642 70.6135 276.391C70.8642 276.158 70.9716 275.853 70.9716 275.476Z" fill="white"/>
+<path d="M76.1636 277.36H75.5192V276.893C75.1969 277.252 74.7494 277.432 74.1944 277.432C73.6753 277.432 73.2278 277.252 72.8518 276.911C72.458 276.535 72.2611 276.068 72.2611 275.494C72.2611 274.901 72.4759 274.417 72.8876 274.04C73.2636 273.681 73.729 273.52 74.2481 273.52C74.7852 273.52 75.2148 273.699 75.5371 274.076V273.609H76.1815V277.36H76.1636ZM75.5192 275.494C75.5192 275.135 75.3938 274.83 75.1611 274.56C74.9105 274.309 74.6241 274.184 74.2661 274.184C73.8901 274.184 73.5858 274.309 73.3173 274.578C73.0666 274.83 72.9413 275.099 72.9413 275.386C72.9413 275.763 73.0487 276.086 73.2815 276.355C73.5142 276.642 73.8185 276.768 74.1944 276.768C74.5525 276.768 74.8568 276.642 75.1253 276.391C75.3759 276.158 75.5192 275.853 75.5192 275.494Z" fill="white"/>
+<path d="M80.656 276.122C80.4412 276.552 80.1905 276.875 79.9041 277.091C79.5819 277.324 79.2059 277.45 78.7405 277.45C78.2214 277.45 77.7559 277.27 77.3621 276.893C76.9504 276.499 76.7355 276.032 76.7355 275.458H76.7713C76.7713 275.458 76.7713 275.476 76.7534 275.494C76.7534 274.901 76.9504 274.417 77.3621 274.04C77.7201 273.699 78.1498 273.52 78.651 273.52C79.1164 273.52 79.5103 273.645 79.8683 273.878C80.2084 274.112 80.477 274.453 80.6381 274.883H79.8862C79.6356 274.435 79.2238 274.201 78.6689 274.201C78.3109 274.201 78.0244 274.327 77.7917 274.578C77.559 274.83 77.4337 275.135 77.4337 275.494C77.4337 275.853 77.559 276.176 77.8096 276.427C78.0602 276.678 78.3646 276.804 78.7226 276.804C78.9553 276.804 79.188 276.75 79.4029 276.624C79.6177 276.499 79.7788 276.337 79.9041 276.14H80.656V276.122Z" fill="white"/>
+<path d="M84.5411 277.36H83.8609V275.206C83.8609 274.919 83.7713 274.668 83.5744 274.488C83.3954 274.309 83.1448 274.201 82.8584 274.201C82.5719 274.201 82.3392 274.291 82.1602 274.452C81.9812 274.632 81.8917 274.847 81.8917 275.134V277.36H81.2114V272.353H81.8917V273.914C82.1602 273.645 82.4824 273.519 82.8763 273.519C83.3059 273.519 83.6818 273.663 84.0041 273.968C84.3442 274.291 84.5232 274.704 84.5232 275.206V277.36H84.5411Z" fill="white"/>
+<path d="M88.9808 275.745H85.8122C85.8659 276.068 86.027 276.319 86.2776 276.516C86.5104 276.678 86.761 276.768 87.0295 276.768C87.2801 276.768 87.5128 276.696 87.7456 276.552C87.9783 276.409 88.1394 276.211 88.2289 275.978H88.9271C88.7481 276.481 88.4616 276.839 88.0857 277.091C87.7635 277.306 87.4054 277.414 87.0116 277.414C86.5104 277.414 86.0807 277.234 85.7227 276.875C85.3468 276.481 85.1498 276.014 85.1498 275.44C85.1498 274.847 85.3468 274.363 85.7585 274.004C86.1344 273.663 86.5641 273.501 87.0653 273.501C87.5666 273.501 88.0141 273.663 88.3721 274.004C88.7839 274.381 88.9987 274.901 88.9987 275.547V275.745H88.9808ZM88.2826 275.117C88.211 274.829 88.0499 274.614 87.8172 274.435C87.5845 274.255 87.3338 274.165 87.0474 274.165C86.6894 274.165 86.385 274.291 86.1523 274.524C85.9912 274.686 85.8659 274.883 85.8122 275.117H88.2826Z" fill="white"/>
+<path d="M38.7481 272.102C38.7481 272.102 26.3065 279.711 38.032 287.266C40.2876 288.738 48.4686 292.83 48.2359 296.616C48.2359 296.616 53.1946 289.258 45.9445 284.628C38.4974 279.89 36.6357 274.83 38.7481 272.102Z" fill="white"/>
+<path d="M34.416 286.638C34.416 286.638 29.9764 293.386 38.7124 294.768C39.5717 294.876 45.8909 295.54 47.5378 297.621C47.5378 297.621 47.3946 294.032 42.239 291.914C37.1012 289.797 34.9889 289.276 34.416 286.638Z" fill="white"/>
+<path d="M51.6014 279.549C46.2667 273.95 44.7809 270.487 47.0723 266C47.0723 266 31.1578 272.138 46.8754 283.031C52.4964 286.925 51.5656 290.909 51.5656 291.053C52.4427 290.138 56.936 285.149 51.6014 279.549Z" fill="white"/>
+<defs>
+<filter id="filter0_bii_101:49" x="409.1" y="134.252" width="200.8" height="263.496" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feGaussianBlur in="BackgroundImage" stdDeviation="5.95"/>
+<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_101:49"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_backgroundBlur_101:49" result="shape"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dx="-2.83333" dy="2.83333"/>
+<feGaussianBlur stdDeviation="1.41667"/>
+<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
+<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0"/>
+<feBlend mode="normal" in2="shape" result="effect2_innerShadow_101:49"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dx="2.83333" dy="-2.83333"/>
+<feGaussianBlur stdDeviation="1.41667"/>
+<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.84 0 0 0 0 0.84 0 0 0 0 0.84 0 0 0 0.4 0"/>
+<feBlend mode="normal" in2="effect2_innerShadow_101:49" result="effect3_innerShadow_101:49"/>
+</filter>
+<filter id="filter1_bii_101:49" x="296.1" y="169.252" width="192.8" height="255.496" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feGaussianBlur in="BackgroundImage" stdDeviation="3.95"/>
+<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_101:49"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_backgroundBlur_101:49" result="shape"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dx="-2.83333" dy="2.83333"/>
+<feGaussianBlur stdDeviation="1.41667"/>
+<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
+<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0"/>
+<feBlend mode="normal" in2="shape" result="effect2_innerShadow_101:49"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dx="2.83333" dy="-2.83333"/>
+<feGaussianBlur stdDeviation="1.41667"/>
+<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.84 0 0 0 0 0.84 0 0 0 0 0.84 0 0 0 0.4 0"/>
+<feBlend mode="normal" in2="effect2_innerShadow_101:49" result="effect3_innerShadow_101:49"/>
+</filter>
+</defs>
+</svg>
diff --git a/public/img/poweredby/videos/015.png b/public/img/poweredby/videos/015.png
new file mode 100644
index 0000000..d9913d7
--- /dev/null
+++ b/public/img/poweredby/videos/015.png
Binary files differ
diff --git a/public/img/poweredby/videos/015.svg b/public/img/poweredby/videos/015.svg
new file mode 100644
index 0000000..cc87b7a
--- /dev/null
+++ b/public/img/poweredby/videos/015.svg
@@ -0,0 +1,55 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="335" fill="#0070CC"/>
+<path d="M69.2967 297.463V296.458C68.5985 297.552 67.6497 298.252 66.4503 298.521C65.2509 298.791 64.0694 298.701 62.9058 298.234C61.7243 297.768 60.7218 296.888 59.8804 295.614C59.0391 294.34 58.6094 292.671 58.6094 290.589C58.6094 288.149 59.1644 286.192 60.2743 284.667C61.3842 283.16 63.1743 282.406 65.6447 282.406C67.5244 282.406 69.2609 282.908 70.872 283.931C72.4831 284.954 73.2708 286.838 73.2708 289.584V297.875C73.2708 300.621 72.4652 302.488 70.872 303.493C69.2609 304.498 67.5244 305 65.6447 305C62.0465 305 59.8088 303.313 58.9496 299.939H63.228C63.5324 300.496 64.0157 300.908 64.6602 301.213C65.3046 301.501 65.9491 301.59 66.5935 301.447C67.238 301.303 67.8287 300.926 68.3479 300.298C68.9028 299.652 69.2072 298.719 69.2967 297.463ZM62.6015 290.697C62.6015 293.407 63.3891 294.914 64.9466 295.201C66.504 295.489 67.6676 295.13 68.4016 294.107C68.7596 293.676 69.0102 292.994 69.1713 292.079C69.3325 291.164 69.3325 290.248 69.2072 289.333C69.0639 288.436 68.7417 287.628 68.2405 286.928C67.7392 286.228 66.9874 285.869 66.0028 285.869C64.6781 285.869 63.7651 286.354 63.2996 287.341C62.8342 288.31 62.6015 289.441 62.6015 290.697Z" fill="white"/>
+<path d="M87.6097 298.396H85.551C84.9603 298.396 84.477 298.216 84.1189 297.84C83.743 297.463 83.564 296.978 83.564 296.404V288.4C83.564 287.467 83.2776 286.767 82.7047 286.336C82.1319 285.905 81.5053 285.69 80.7892 285.69C80.0911 285.69 79.4645 285.905 78.9096 286.336C78.3546 286.767 78.0861 287.449 78.0861 288.4V298.414H73.9688V289.225C73.9688 286.551 74.6669 284.775 76.0453 283.877C77.4417 282.98 78.9633 282.478 80.646 282.406C82.3646 282.406 83.9578 282.854 85.4078 283.752C86.8579 284.649 87.5739 286.48 87.5739 289.225V298.396H87.6097Z" fill="white"/>
+<path d="M88.6124 284.11H92.7298C92.7298 286.3 92.7298 285.564 92.7298 286.12V298.414H88.6124V284.11Z" fill="white"/>
+<path d="M100.284 298.395C98.9954 298.467 97.5991 298.449 96.0954 298.342C94.5916 298.216 93.8398 297.265 93.8398 295.452V280.144H95.9522C96.4534 280.144 96.9188 280.341 97.2948 280.736C97.6886 281.131 97.8855 281.598 97.8855 282.154V282.692H100.284V283.518C100.284 284.11 100.087 284.595 99.6936 284.954C99.2998 285.331 98.8343 285.51 98.2794 285.51H97.8676V294.322C97.8676 294.986 98.2615 295.327 99.0491 295.327H100.284V298.395Z" fill="white"/>
+<path d="M111.49 293.568H114.426C113.997 295.219 113.173 296.476 111.956 297.337C110.739 298.234 109.217 298.683 107.373 298.683C105.135 298.683 103.399 297.965 102.146 296.511C100.893 295.094 100.266 293.084 100.266 290.446C100.266 287.933 100.875 285.977 102.092 284.559C103.345 283.106 105.082 282.388 107.319 282.388C109.665 282.388 111.49 283.088 112.779 284.505C114.032 285.959 114.659 287.969 114.659 290.571C114.659 290.733 114.659 290.858 114.659 290.984C114.659 291.11 114.659 291.181 114.659 291.217C114.659 291.415 114.641 291.558 114.605 291.63H104.455C104.491 292.85 104.795 293.748 105.332 294.34C105.834 294.968 106.603 295.273 107.624 295.273C108.286 295.273 108.859 295.13 109.324 294.86C109.45 294.824 109.557 294.753 109.647 294.645C109.736 294.555 109.844 294.448 109.969 294.322C110.005 294.196 110.148 294.053 110.416 293.855C110.667 293.676 111.025 293.568 111.49 293.568ZM104.455 288.992H110.452C110.381 287.933 110.094 287.143 109.629 286.641C109.127 286.085 108.394 285.815 107.463 285.815C106.603 285.815 105.905 286.085 105.35 286.641C104.777 287.179 104.491 287.969 104.455 288.992Z" fill="white"/>
+<path d="M53.6138 276.915H55.7262C56.2812 276.915 56.7466 277.112 57.1404 277.507C57.5343 277.902 57.7312 278.368 57.7312 278.925V298.414H53.6138V276.915Z" fill="white"/>
+<path d="M88.6122 280.145H90.7246C91.2795 280.145 91.7449 280.342 92.1388 280.737C92.5326 281.132 92.7295 281.598 92.7295 282.155V283.393H88.6122V280.145Z" fill="white"/>
+<path d="M64.0154 280.361H63.3709V279.894C63.0487 280.253 62.6011 280.432 62.0462 280.432C61.527 280.432 61.0795 280.253 60.7036 279.912C60.3097 279.535 60.1128 279.068 60.1128 278.494C60.1128 277.902 60.3276 277.417 60.7394 277.04C61.1153 276.682 61.5808 276.52 62.0999 276.52C62.6369 276.52 63.0666 276.699 63.3888 277.076V276.61H64.0333V280.361H64.0154ZM63.353 278.494C63.353 278.135 63.2277 277.83 62.995 277.561C62.7444 277.31 62.4579 277.184 62.0999 277.184C61.724 277.184 61.4196 277.31 61.1511 277.579C60.9005 277.83 60.7752 278.099 60.7752 278.386C60.7752 278.763 60.8826 279.086 61.1153 279.356C61.348 279.643 61.6524 279.768 62.0283 279.768C62.3863 279.768 62.6906 279.643 62.9592 279.391C63.2277 279.158 63.353 278.853 63.353 278.494Z" fill="white"/>
+<path d="M68.6697 278.386C68.6697 278.979 68.4907 279.463 68.1327 279.84C67.7568 280.235 67.2913 280.432 66.7006 280.432C66.1635 280.432 65.7518 280.253 65.4296 279.912V281.599H64.7493V276.592H65.3938V277.04C65.5549 276.861 65.7518 276.735 65.9487 276.646C66.1635 276.556 66.3783 276.52 66.629 276.52C67.1481 276.52 67.6135 276.699 68.0074 277.04C68.4549 277.399 68.6697 277.848 68.6697 278.386ZM67.9716 278.476C67.9716 278.117 67.8463 277.812 67.5956 277.561C67.345 277.31 67.0228 277.184 66.6648 277.184C66.2888 277.184 65.9845 277.328 65.7339 277.597C65.5012 277.848 65.3938 278.153 65.3938 278.494C65.3938 278.817 65.4833 279.086 65.6802 279.338C65.9129 279.625 66.253 279.768 66.7006 279.768C67.0586 279.768 67.3629 279.643 67.6135 279.391C67.8642 279.158 67.9716 278.853 67.9716 278.476Z" fill="white"/>
+<path d="M73.1636 280.361H72.5192V279.894C72.1969 280.253 71.7494 280.432 71.1944 280.432C70.6753 280.432 70.2278 280.253 69.8518 279.912C69.458 279.535 69.2611 279.068 69.2611 278.494C69.2611 277.902 69.4759 277.417 69.8876 277.04C70.2636 276.682 70.729 276.52 71.2481 276.52C71.7852 276.52 72.2148 276.699 72.5371 277.076V276.61H73.1815V280.361H73.1636ZM72.5192 278.494C72.5192 278.135 72.3938 277.83 72.1611 277.561C71.9105 277.31 71.6241 277.184 71.2661 277.184C70.8901 277.184 70.5858 277.31 70.3173 277.579C70.0666 277.83 69.9413 278.099 69.9413 278.386C69.9413 278.763 70.0487 279.086 70.2815 279.356C70.5142 279.643 70.8185 279.768 71.1944 279.768C71.5525 279.768 71.8568 279.643 72.1253 279.391C72.3759 279.158 72.5192 278.853 72.5192 278.494Z" fill="white"/>
+<path d="M77.656 279.122C77.4412 279.553 77.1905 279.876 76.9041 280.091C76.5819 280.325 76.2059 280.45 75.7405 280.45C75.2214 280.45 74.7559 280.271 74.3621 279.894C73.9504 279.499 73.7355 279.032 73.7355 278.458H73.7713C73.7713 278.458 73.7713 278.476 73.7534 278.494C73.7534 277.902 73.9504 277.417 74.3621 277.04C74.7201 276.699 75.1498 276.52 75.651 276.52C76.1164 276.52 76.5103 276.646 76.8683 276.879C77.2084 277.112 77.477 277.453 77.6381 277.884H76.8862C76.6356 277.435 76.2238 277.202 75.6689 277.202C75.3109 277.202 75.0244 277.328 74.7917 277.579C74.559 277.83 74.4337 278.135 74.4337 278.494C74.4337 278.853 74.559 279.176 74.8096 279.427C75.0602 279.679 75.3646 279.804 75.7226 279.804C75.9553 279.804 76.188 279.75 76.4029 279.625C76.6177 279.499 76.7788 279.338 76.9041 279.14H77.656V279.122Z" fill="white"/>
+<path d="M81.5411 280.36H80.8609V278.206C80.8609 277.919 80.7713 277.668 80.5744 277.489C80.3954 277.309 80.1448 277.201 79.8584 277.201C79.5719 277.201 79.3392 277.291 79.1602 277.453C78.9812 277.632 78.8917 277.848 78.8917 278.135V280.36H78.2114V275.353H78.8917V276.914C79.1602 276.645 79.4824 276.52 79.8763 276.52C80.3059 276.52 80.6818 276.663 81.0041 276.968C81.3442 277.291 81.5232 277.704 81.5232 278.206V280.36H81.5411Z" fill="white"/>
+<path d="M85.9808 278.745H82.8122C82.8659 279.068 83.027 279.319 83.2776 279.516C83.5103 279.678 83.761 279.768 84.0295 279.768C84.2801 279.768 84.5128 279.696 84.7456 279.552C84.9783 279.409 85.1394 279.211 85.2289 278.978H85.9271C85.748 279.481 85.4616 279.839 85.0857 280.091C84.7635 280.306 84.4054 280.414 84.0116 280.414C83.5103 280.414 83.0807 280.234 82.7227 279.875C82.3467 279.481 82.1498 279.014 82.1498 278.44C82.1498 277.847 82.3467 277.363 82.7585 277.004C83.1344 276.663 83.5641 276.501 84.0653 276.501C84.5665 276.501 85.0141 276.663 85.3721 277.004C85.7838 277.381 85.9987 277.901 85.9987 278.547V278.745H85.9808ZM85.2826 278.117C85.211 277.829 85.0499 277.614 84.8172 277.435C84.5844 277.255 84.3338 277.165 84.0474 277.165C83.6894 277.165 83.385 277.291 83.1523 277.524C82.9912 277.686 82.8659 277.883 82.8122 278.117H85.2826Z" fill="white"/>
+<path d="M35.7481 275.102C35.7481 275.102 23.3065 282.711 35.032 290.267C37.2876 291.738 45.4686 295.83 45.2359 299.617C45.2359 299.617 50.1946 292.259 42.9445 287.629C35.4974 282.891 33.6357 277.83 35.7481 275.102Z" fill="white"/>
+<path d="M31.416 289.638C31.416 289.638 26.9764 296.386 35.7124 297.768C36.5717 297.876 42.8909 298.54 44.5378 300.621C44.5378 300.621 44.3946 297.032 39.239 294.914C34.1012 292.797 31.9889 292.276 31.416 289.638Z" fill="white"/>
+<path d="M48.6014 282.549C43.2667 276.95 41.7809 273.487 44.0723 269C44.0723 269 28.1578 275.138 43.8754 286.031C49.4964 289.925 48.5656 293.909 48.5656 294.053C49.4427 293.138 53.936 288.149 48.6014 282.549Z" fill="white"/>
+<rect x="340.513" y="197.859" width="130.822" height="106.641" rx="10.5" stroke="white"/>
+<rect x="444.748" y="224.764" width="67.252" height="59.4374" rx="8" fill="#BDDAF2"/>
+<path d="M490.455 246.193L499.009 254.725L490.455 263.256" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M466.128 263.106L457.574 254.575L466.128 246.043" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M474.252 265.941L482.759 243.412" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M368.051 144.97H440.748C442.957 144.97 444.748 146.761 444.748 148.97V197.209" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+<mask id="path-24-inside-1_101:50" fill="white">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M418.403 212.809H418.517V211.816C418.517 211.81 418.517 211.803 418.517 211.797C418.517 211.79 418.517 211.784 418.517 211.777V175.545H386.885V212.809H386.999C387.943 216.954 394.613 220.166 402.701 220.166C410.789 220.166 417.459 216.954 418.403 212.809Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M418.403 212.809H418.517V211.816C418.517 211.81 418.517 211.803 418.517 211.797C418.517 211.79 418.517 211.784 418.517 211.777V175.545H386.885V212.809H386.999C387.943 216.954 394.613 220.166 402.701 220.166C410.789 220.166 417.459 216.954 418.403 212.809Z" fill="#0070CC"/>
+<path d="M418.517 212.809V213.809H419.517V212.809H418.517ZM418.403 212.809V211.809H417.605L417.428 212.586L418.403 212.809ZM418.517 211.816L417.517 211.812V211.816H418.517ZM418.517 211.777H417.517L417.517 211.782L418.517 211.777ZM418.517 175.545H419.517V174.545H418.517V175.545ZM386.885 175.545V174.545H385.885V175.545H386.885ZM386.885 212.809H385.885V213.809H386.885V212.809ZM386.999 212.809L387.974 212.586L387.797 211.809H386.999V212.809ZM418.517 211.809H418.403V213.809H418.517V211.809ZM417.517 211.816V212.809H419.517V211.816H417.517ZM417.517 211.797C417.517 211.802 417.517 211.807 417.517 211.812L419.517 211.821C419.517 211.813 419.517 211.805 419.517 211.797H417.517ZM417.517 211.782C417.517 211.787 417.517 211.792 417.517 211.797H419.517C419.517 211.789 419.517 211.781 419.517 211.773L417.517 211.782ZM417.517 175.545V211.777H419.517V175.545H417.517ZM386.885 176.545H418.517V174.545H386.885V176.545ZM387.885 212.809V175.545H385.885V212.809H387.885ZM386.999 211.809H386.885V213.809H386.999V211.809ZM402.701 219.166C398.78 219.166 395.24 218.386 392.598 217.138C389.917 215.871 388.346 214.22 387.974 212.586L386.024 213.031C386.596 215.542 388.832 217.57 391.744 218.946C394.695 220.34 398.534 221.166 402.701 221.166V219.166ZM417.428 212.586C417.056 214.22 415.484 215.871 412.803 217.138C410.161 218.386 406.622 219.166 402.701 219.166V221.166C406.867 221.166 410.707 220.34 413.658 218.946C416.57 217.57 418.806 215.542 419.378 213.031L417.428 212.586Z" fill="white" mask="url(#path-24-inside-1_101:50)"/>
+<path d="M417.929 200.335C417.929 204.428 411.128 207.746 402.738 207.746C394.348 207.746 387.547 204.428 387.547 200.335" stroke="white"/>
+<path d="M417.892 188.227C417.892 192.32 411.09 195.638 402.701 195.638C394.311 195.638 387.51 192.32 387.51 188.227" stroke="white"/>
+<path d="M418.017 175.87C418.017 177.822 416.461 179.717 413.657 181.153C410.878 182.576 407.006 183.471 402.701 183.471C398.396 183.471 394.523 182.576 391.745 181.153C388.94 179.717 387.385 177.822 387.385 175.87C387.385 173.918 388.94 172.023 391.745 170.587C394.523 169.164 398.396 168.269 402.701 168.269C407.006 168.269 410.878 169.164 413.657 170.587C416.461 172.023 418.017 173.918 418.017 175.87Z" fill="#0070CC" stroke="white"/>
+<ellipse cx="437.413" cy="122.816" rx="3.36601" ry="3.35737" fill="#BDDAF2"/>
+<ellipse cx="437.413" cy="157.732" rx="3.36601" ry="3.35737" fill="#BDDAF2"/>
+<ellipse cx="437.413" cy="105.357" rx="3.36601" ry="3.35737" fill="#BDDAF2"/>
+<ellipse cx="437.413" cy="140.274" rx="3.36601" ry="3.35737" fill="#BDDAF2"/>
+<ellipse cx="454.917" cy="122.816" rx="3.36601" ry="3.35737" fill="#BDDAF2"/>
+<ellipse cx="454.917" cy="157.732" rx="3.36601" ry="3.35737" fill="#BDDAF2"/>
+<ellipse cx="454.917" cy="105.357" rx="3.36601" ry="3.35737" fill="#BDDAF2"/>
+<ellipse cx="454.917" cy="140.274" rx="3.36601" ry="3.35737" fill="#BDDAF2"/>
+<ellipse cx="472.42" cy="122.816" rx="3.36601" ry="3.35737" fill="#BDDAF2"/>
+<ellipse cx="472.42" cy="157.732" rx="3.36601" ry="3.35737" fill="#BDDAF2"/>
+<ellipse cx="472.42" cy="105.357" rx="3.36601" ry="3.35737" fill="#BDDAF2"/>
+<ellipse cx="472.42" cy="140.274" rx="3.36601" ry="3.35737" fill="#BDDAF2"/>
+<ellipse cx="489.923" cy="122.816" rx="3.36601" ry="3.35737" fill="#BDDAF2"/>
+<ellipse cx="489.923" cy="157.732" rx="3.36601" ry="3.35737" fill="#BDDAF2"/>
+<ellipse cx="489.923" cy="105.357" rx="3.36601" ry="3.35737" fill="#BDDAF2"/>
+<ellipse cx="489.923" cy="140.274" rx="3.36601" ry="3.35737" fill="#BDDAF2"/>
+<ellipse cx="362.151" cy="144.426" rx="5.8998" ry="5.88465" fill="#BDDAF2"/>
+<rect x="297.5" y="215.493" width="70.0508" height="68.589" rx="5.5" fill="#0070CC" stroke="white"/>
+<path d="M308.118 233.681H357.854" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M308.34 245.395H358.076" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M308.34 257.109H358.076" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M308.34 268.823H358.076" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+</svg>
diff --git a/public/img/poweredby/videos/016.png b/public/img/poweredby/videos/016.png
new file mode 100644
index 0000000..87d9024
--- /dev/null
+++ b/public/img/poweredby/videos/016.png
Binary files differ
diff --git a/public/img/poweredby/videos/016.svg b/public/img/poweredby/videos/016.svg
new file mode 100644
index 0000000..1417b85
--- /dev/null
+++ b/public/img/poweredby/videos/016.svg
@@ -0,0 +1,73 @@
+<svg width="543" height="335" viewBox="0 0 543 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="0.214905" width="542" height="335" fill="#0070CC"/>
+<mask id="mask0_101:51" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="306" y="64" width="237" height="271">
+<rect x="306" y="64" width="236.215" height="271" fill="#0070CC"/>
+</mask>
+<g mask="url(#mask0_101:51)">
+<path d="M479.735 149.105L578.073 205.845L578.073 231.16L479.735 174.42L479.735 149.105Z" fill="url(#paint0_linear_101:51)"/>
+<path d="M446.955 168.09L479.735 149.177L479.735 174.394L446.955 193.307L446.955 168.09Z" fill="#A4CAEA"/>
+<path d="M479.735 174.395L578.073 231.134L545.294 250.047L446.955 193.308L479.735 174.395Z" fill="url(#paint1_linear_101:51)"/>
+<path d="M446.758 193.426L479.877 174.276M479.877 174.276L578.073 231.094M479.877 174.276V148.94" stroke="#0070CC" stroke-width="2" stroke-linecap="square" stroke-dasharray="2 6"/>
+<path d="M447.377 278.538L545.715 335.277L545.715 360.592L447.377 303.853L447.377 278.538Z" fill="url(#paint2_linear_101:51)"/>
+<path d="M414.597 297.522L447.377 278.609L447.377 303.827L414.597 322.74L414.597 297.522Z" fill="#A4CAEA"/>
+<path d="M447.377 303.827L545.715 360.566L512.935 379.48L414.597 322.74L447.377 303.827Z" fill="url(#paint3_linear_101:51)"/>
+<path d="M414.4 322.858L447.519 303.709M447.519 303.709L545.715 360.527M447.519 303.709V278.373" stroke="#0070CC" stroke-width="2" stroke-linecap="square" stroke-dasharray="2 6"/>
+<path d="M381.042 166.091L575.646 278.649L575.646 303.963L478.344 247.685L381.042 191.406L381.042 166.091Z" fill="url(#paint4_linear_101:51)"/>
+<path d="M348.263 185.076L381.042 166.163L381.042 191.38L348.263 210.293L348.263 185.076Z" fill="#A4CAEA"/>
+<path d="M381.042 191.38L576.455 304.747L543.676 323.66L348.263 210.293L381.042 191.38Z" fill="url(#paint5_linear_101:51)"/>
+<path d="M348.066 210.411L381.185 191.262M381.185 191.262L576.455 304.707M381.185 191.262V165.926" stroke="#0070CC" stroke-width="2" stroke-linecap="square" stroke-dasharray="2 6"/>
+<path d="M376.879 312.333V183.57L497.222 120.644V249.406L376.879 312.333Z" stroke="url(#paint6_linear_101:51)"/>
+<path d="M355.037 300.198V171.436L475.381 108.509V237.272L355.037 300.198Z" stroke="url(#paint7_linear_101:51)"/>
+<path d="M332.387 288.873V160.11L452.73 97.1841V225.947L332.387 288.873Z" stroke="url(#paint8_linear_101:51)"/>
+<path d="M381.042 166.091L575.646 278.649L575.646 303.963L478.344 247.685L381.042 191.406L381.042 166.091Z" fill="url(#paint9_linear_101:51)"/>
+<path d="M348.263 185.076L381.042 166.163L381.042 191.38L348.263 210.293L348.263 185.076Z" fill="#A4CAEA"/>
+<path d="M381.042 191.38L576.455 304.747L543.676 323.66L348.263 210.293L381.042 191.38Z" fill="url(#paint10_linear_101:51)"/>
+<path d="M348.066 210.411L381.185 191.262M381.185 191.262L576.455 304.707M381.185 191.262V165.926" stroke="#0070CC" stroke-width="2" stroke-linecap="square" stroke-dasharray="2 6"/>
+</g>
+<defs>
+<linearGradient id="paint0_linear_101:51" x1="528.904" y1="177.475" x2="517.946" y2="196.467" gradientUnits="userSpaceOnUse">
+<stop stop-color="#F5F5F5" stop-opacity="0.12"/>
+<stop offset="1" stop-color="#BDDAF2"/>
+</linearGradient>
+<linearGradient id="paint1_linear_101:51" x1="467.791" y1="184.535" x2="591.864" y2="189.256" gradientUnits="userSpaceOnUse">
+<stop stop-color="#BDDAF2"/>
+<stop offset="1" stop-color="#BDDAF2" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint2_linear_101:51" x1="496.546" y1="306.908" x2="485.588" y2="325.9" gradientUnits="userSpaceOnUse">
+<stop stop-color="#F5F5F5" stop-opacity="0.12"/>
+<stop offset="1" stop-color="#BDDAF2"/>
+</linearGradient>
+<linearGradient id="paint3_linear_101:51" x1="435.433" y1="313.967" x2="559.506" y2="318.689" gradientUnits="userSpaceOnUse">
+<stop stop-color="#BDDAF2"/>
+<stop offset="1" stop-color="#BDDAF2" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint4_linear_101:51" x1="430.211" y1="194.463" x2="419.253" y2="213.455" gradientUnits="userSpaceOnUse">
+<stop stop-color="#F5F5F5" stop-opacity="0.17"/>
+<stop offset="1" stop-color="#BDDAF2"/>
+</linearGradient>
+<linearGradient id="paint5_linear_101:51" x1="379.21" y1="203.949" x2="566.369" y2="203.751" gradientUnits="userSpaceOnUse">
+<stop stop-color="#BDDAF2"/>
+<stop offset="1" stop-color="#BDDAF2" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint6_linear_101:51" x1="437.051" y1="119.818" x2="437.051" y2="313.158" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint7_linear_101:51" x1="415.209" y1="107.684" x2="415.209" y2="301.024" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint8_linear_101:51" x1="392.558" y1="96.3584" x2="392.558" y2="289.699" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint9_linear_101:51" x1="430.211" y1="194.463" x2="419.253" y2="213.455" gradientUnits="userSpaceOnUse">
+<stop stop-color="#F5F5F5" stop-opacity="0.17"/>
+<stop offset="1" stop-color="#BDDAF2"/>
+</linearGradient>
+<linearGradient id="paint10_linear_101:51" x1="379.21" y1="203.949" x2="566.369" y2="203.751" gradientUnits="userSpaceOnUse">
+<stop stop-color="#BDDAF2"/>
+<stop offset="1" stop-color="#BDDAF2" stop-opacity="0"/>
+</linearGradient>
+</defs>
+</svg>
diff --git a/public/img/poweredby/videos/017.png b/public/img/poweredby/videos/017.png
new file mode 100644
index 0000000..7c1719b
--- /dev/null
+++ b/public/img/poweredby/videos/017.png
Binary files differ
diff --git a/public/img/poweredby/videos/017.svg b/public/img/poweredby/videos/017.svg
new file mode 100644
index 0000000..b51af1a
--- /dev/null
+++ b/public/img/poweredby/videos/017.svg
@@ -0,0 +1,38 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="335" fill="#0070CC"/>
+<mask id="mask0_101:52" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="250" y="0" width="288" height="335">
+<rect x="250" width="288" height="335" fill="#0070CC"/>
+</mask>
+<g mask="url(#mask0_101:52)">
+<path d="M337.922 175.468L433.268 230.386L433.268 364.752L337.922 309.834L337.922 175.468Z" fill="#0070CC" stroke="#F6F6F6"/>
+<rect width="30.5641" height="134.366" transform="matrix(0.866274 -0.49957 2.20558e-08 1 433.239 230.436)" fill="#0070CC" stroke="#F6F6F6"/>
+<path d="M364.399 160.199L459.66 215.264L433.198 230.56L337.938 175.495L364.399 160.199Z" fill="#0070CC" stroke="#F6F6F6"/>
+<path d="M296.841 199.288L392.186 254.206L392.186 388.572L296.841 333.654L296.841 199.288Z" fill="#0070CC" stroke="#F6F6F6"/>
+<rect width="30.5641" height="134.366" transform="matrix(0.866274 -0.49957 2.20558e-08 1 392.158 254.256)" fill="#0070CC" stroke="#F6F6F6"/>
+<path d="M323.318 184.019L418.579 239.084L392.117 254.38L296.857 199.315L323.318 184.019Z" fill="#0070CC" stroke="#F6F6F6"/>
+<path d="M255.76 223.108L351.105 278.026L351.105 412.393L255.76 357.474L255.76 223.108Z" fill="#0070CC" stroke="#F6F6F6"/>
+<rect width="30.5641" height="134.366" transform="matrix(0.866274 -0.49957 2.20558e-08 1 351.077 278.076)" fill="#0070CC" stroke="#F6F6F6"/>
+<path d="M282.236 207.839L377.497 262.905L351.036 278.201L255.775 223.135L282.236 207.839Z" fill="#0070CC" stroke="#F6F6F6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M267.491 249.147C267.491 248.595 267.879 248.371 268.357 248.647L311.093 273.321C311.572 273.597 311.959 274.269 311.959 274.821V282.593C311.959 283.145 311.572 283.369 311.093 283.093L268.357 258.419C267.879 258.143 267.491 257.471 267.491 256.919L267.491 249.147ZM267.491 266.25C267.491 265.697 267.879 265.473 268.358 265.749L290.991 278.785C291.469 279.061 291.857 279.732 291.857 280.284V288.056C291.857 288.609 291.469 288.833 290.991 288.557L268.358 275.521C267.879 275.245 267.491 274.574 267.491 274.022L267.491 266.25ZM268.358 282.85C267.879 282.574 267.491 282.799 267.491 283.351V291.123C267.491 291.675 267.879 292.347 268.358 292.622L325.951 325.795C326.429 326.071 326.817 325.847 326.817 325.294V317.522C326.817 316.97 326.429 316.299 325.951 316.023L268.358 282.85Z" fill="#0070CC"/>
+<path d="M268.357 248.647L268.107 249.08L268.357 248.647ZM267.491 249.147L267.991 249.147V249.147H267.491ZM311.093 273.321L311.343 272.888V272.888L311.093 273.321ZM311.093 283.093L311.343 282.66L311.093 283.093ZM268.357 258.419L268.607 257.986H268.607L268.357 258.419ZM267.491 256.919L266.991 256.919L267.491 256.919ZM268.358 265.749L268.607 265.315H268.607L268.358 265.749ZM267.491 266.25H267.991H267.491ZM290.991 278.785L291.24 278.352L290.991 278.785ZM290.991 288.557L290.741 288.991H290.741L290.991 288.557ZM268.358 275.521L268.607 275.088H268.607L268.358 275.521ZM267.491 274.022H266.991H267.491ZM268.358 282.85L268.607 282.417H268.607L268.358 282.85ZM267.491 291.123H267.991H267.491ZM268.358 292.622L268.108 293.055H268.108L268.358 292.622ZM325.951 325.795L325.701 326.229H325.701L325.951 325.795ZM325.951 316.023L325.701 316.456H325.701L325.951 316.023ZM268.607 248.214C268.277 248.023 267.861 247.942 267.495 248.153C267.129 248.365 266.991 248.766 266.991 249.147H267.991C267.991 249.066 268.006 249.023 268.013 249.008C268.018 248.995 268.016 249.007 267.995 249.019C267.974 249.032 267.962 249.028 267.976 249.029C267.992 249.031 268.036 249.039 268.107 249.08L268.607 248.214ZM311.343 272.888L268.607 248.214L268.107 249.08L310.843 273.754L311.343 272.888ZM312.459 274.821C312.459 274.436 312.328 274.045 312.139 273.717C311.95 273.39 311.676 273.08 311.343 272.888L310.843 273.754C310.989 273.838 311.148 274.002 311.273 274.217C311.397 274.433 311.459 274.653 311.459 274.821H312.459ZM312.459 282.593V274.821H311.459V282.593H312.459ZM310.843 283.526C311.174 283.717 311.59 283.798 311.956 283.587C312.322 283.375 312.459 282.974 312.459 282.593H311.459C311.459 282.675 311.445 282.717 311.438 282.732C311.432 282.745 311.435 282.733 311.456 282.721C311.477 282.709 311.488 282.712 311.475 282.711C311.458 282.71 311.414 282.701 311.343 282.66L310.843 283.526ZM268.107 258.852L310.843 283.526L311.343 282.66L268.607 257.986L268.107 258.852ZM266.991 256.919C266.991 257.304 267.123 257.695 267.312 258.023C267.501 258.35 267.774 258.66 268.107 258.852L268.607 257.986C268.462 257.902 268.302 257.738 268.178 257.523C268.053 257.307 267.991 257.087 267.991 256.919L266.991 256.919ZM266.991 249.147L266.991 256.919L267.991 256.919L267.991 249.147L266.991 249.147ZM268.607 265.315C268.277 265.125 267.86 265.044 267.495 265.256C267.129 265.467 266.991 265.868 266.991 266.25H267.991C267.991 266.168 268.005 266.125 268.013 266.11C268.018 266.098 268.016 266.11 267.995 266.122C267.974 266.134 267.963 266.13 267.976 266.131C267.993 266.133 268.037 266.141 268.108 266.182L268.607 265.315ZM291.24 278.352L268.607 265.315L268.108 266.182L290.741 279.218L291.24 278.352ZM292.357 280.284C292.357 279.9 292.225 279.508 292.036 279.181C291.847 278.854 291.573 278.544 291.24 278.352L290.741 279.218C290.886 279.302 291.046 279.466 291.17 279.681C291.295 279.897 291.357 280.117 291.357 280.284H292.357ZM292.357 288.056V280.284H291.357V288.056H292.357ZM290.741 288.991C291.072 289.181 291.488 289.262 291.853 289.05C292.219 288.839 292.357 288.438 292.357 288.056H291.357C291.357 288.138 291.343 288.181 291.336 288.196C291.33 288.208 291.332 288.196 291.353 288.184C291.374 288.172 291.385 288.176 291.372 288.175C291.355 288.173 291.311 288.165 291.24 288.124L290.741 288.991ZM268.108 275.954L290.741 288.991L291.24 288.124L268.607 275.088L268.108 275.954ZM266.991 274.022C266.991 274.406 267.123 274.798 267.312 275.125C267.501 275.452 267.775 275.762 268.108 275.954L268.607 275.088C268.462 275.004 268.302 274.84 268.178 274.625C268.053 274.409 267.991 274.189 267.991 274.022H266.991ZM266.991 266.25L266.991 274.022H267.991L267.991 266.25H266.991ZM267.991 283.351C267.991 283.27 268.005 283.227 268.013 283.212C268.018 283.199 268.016 283.211 267.995 283.223C267.974 283.235 267.963 283.231 267.976 283.232C267.993 283.234 268.037 283.243 268.108 283.283L268.607 282.417C268.277 282.226 267.86 282.146 267.495 282.357C267.129 282.569 266.991 282.969 266.991 283.351H267.991ZM267.991 291.123V283.351H266.991V291.123H267.991ZM268.607 292.189C268.462 292.105 268.302 291.941 268.178 291.726C268.053 291.511 267.991 291.291 267.991 291.123L266.991 291.123C266.991 291.508 267.123 291.899 267.312 292.227C267.501 292.554 267.775 292.863 268.108 293.055L268.607 292.189ZM326.2 325.362L268.607 292.189L268.108 293.055L325.701 326.229L326.2 325.362ZM326.317 325.294C326.317 325.376 326.303 325.419 326.296 325.434C326.29 325.446 326.292 325.434 326.313 325.422C326.334 325.41 326.345 325.414 326.332 325.413C326.315 325.411 326.271 325.403 326.2 325.362L325.701 326.229C326.032 326.419 326.448 326.5 326.814 326.288C327.179 326.077 327.317 325.676 327.317 325.294H326.317ZM326.317 317.522V325.294H327.317V317.522H326.317ZM325.701 316.456C325.846 316.54 326.006 316.704 326.13 316.919C326.255 317.135 326.317 317.355 326.317 317.522H327.317C327.317 317.138 327.185 316.746 326.996 316.419C326.807 316.092 326.533 315.782 326.2 315.59L325.701 316.456ZM268.108 283.283L325.701 316.456L326.2 315.59L268.607 282.417L268.108 283.283Z" fill="#F6F6F6"/>
+<path d="M433.162 183.269L528.508 238.187L528.508 372.553L433.162 317.635L433.162 183.269Z" fill="#0070CC" stroke="#F6F6F6"/>
+<rect width="30.5641" height="134.366" transform="matrix(0.866274 -0.49957 2.20558e-08 1 528.479 238.236)" fill="#0070CC" stroke="#F6F6F6"/>
+<path d="M459.639 168L554.9 223.065L528.439 238.361L433.178 183.296L459.639 168Z" fill="#0070CC" stroke="#F6F6F6"/>
+<path d="M392.081 207.088L487.427 262.007L487.427 396.373L392.081 341.455L392.081 207.088Z" fill="#0070CC" stroke="#F6F6F6"/>
+<rect width="30.5641" height="134.366" transform="matrix(0.866274 -0.49957 2.20558e-08 1 487.398 262.057)" fill="#0070CC" stroke="#F6F6F6"/>
+<path d="M418.558 191.82L513.819 246.885L487.358 262.181L392.097 207.116L418.558 191.82Z" fill="#0070CC" stroke="#F6F6F6"/>
+<path d="M351 230.909L446.345 285.827L446.345 420.193L351 365.275L351 230.909Z" fill="#0070CC" stroke="#F6F6F6"/>
+<rect width="30.5641" height="134.366" transform="matrix(0.866274 -0.49957 2.20558e-08 1 446.317 285.876)" fill="#0070CC" stroke="#F6F6F6"/>
+<path d="M377.477 215.64L472.738 270.705L446.276 286.001L351.016 230.936L377.477 215.64Z" fill="#0070CC" stroke="#F6F6F6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M362.731 256.948C362.731 256.396 363.119 256.172 363.597 256.448L406.334 281.122C406.812 281.398 407.2 282.069 407.2 282.622V290.394C407.2 290.946 406.812 291.17 406.334 290.894L363.597 266.22C363.119 265.944 362.731 265.272 362.731 264.72V256.948ZM362.731 274.05C362.731 273.498 363.119 273.274 363.598 273.549L386.231 286.586C386.71 286.862 387.097 287.533 387.097 288.085V295.857C387.097 296.409 386.71 296.634 386.231 296.358L363.598 283.322C363.119 283.046 362.731 282.375 362.731 281.822V274.05ZM363.598 290.651C363.119 290.375 362.731 290.599 362.731 291.152V298.924C362.731 299.476 363.119 300.147 363.598 300.423L421.191 333.596C421.67 333.872 422.058 333.647 422.058 333.095V325.323C422.058 324.771 421.67 324.1 421.191 323.824L363.598 290.651Z" fill="#0070CC"/>
+<path d="M363.597 256.448L363.847 256.015L363.597 256.448ZM406.334 281.122L406.584 280.689L406.334 281.122ZM406.334 290.894L406.584 290.461V290.461L406.334 290.894ZM363.597 266.22L363.347 266.653L363.347 266.653L363.597 266.22ZM363.598 273.549L363.848 273.116H363.848L363.598 273.549ZM386.231 286.586L386.481 286.153L386.231 286.586ZM386.231 296.358L385.981 296.791H385.981L386.231 296.358ZM363.598 283.322L363.848 282.888H363.848L363.598 283.322ZM363.598 290.651L363.848 290.218L363.848 290.218L363.598 290.651ZM363.598 300.423L363.348 300.856H363.348L363.598 300.423ZM421.191 333.596L421.441 333.163H421.441L421.191 333.596ZM421.191 323.824L421.441 323.391H421.441L421.191 323.824ZM363.847 256.015C363.517 255.824 363.101 255.743 362.735 255.954C362.369 256.165 362.231 256.567 362.231 256.948H363.231C363.231 256.866 363.246 256.824 363.253 256.809C363.259 256.796 363.256 256.808 363.235 256.82C363.214 256.832 363.202 256.829 363.216 256.83C363.233 256.831 363.277 256.84 363.347 256.881L363.847 256.015ZM406.584 280.689L363.847 256.015L363.347 256.881L406.084 281.555L406.584 280.689ZM407.7 282.622C407.7 282.237 407.568 281.846 407.379 281.518C407.19 281.191 406.917 280.881 406.584 280.689L406.084 281.555C406.229 281.639 406.389 281.803 406.513 282.018C406.638 282.234 406.7 282.454 406.7 282.622H407.7ZM407.7 290.394V282.622H406.7V290.394H407.7ZM406.084 291.327C406.414 291.518 406.83 291.599 407.196 291.388C407.562 291.176 407.7 290.775 407.7 290.394H406.7C406.7 290.475 406.685 290.518 406.678 290.533C406.673 290.546 406.675 290.534 406.696 290.522C406.717 290.509 406.729 290.513 406.715 290.512C406.699 290.51 406.654 290.502 406.584 290.461L406.084 291.327ZM363.347 266.653L406.084 291.327L406.584 290.461L363.847 265.787L363.347 266.653ZM362.231 264.72C362.231 265.105 362.363 265.496 362.552 265.824C362.741 266.151 363.014 266.461 363.347 266.653L363.847 265.787C363.702 265.703 363.543 265.539 363.418 265.324C363.294 265.108 363.231 264.888 363.231 264.72H362.231ZM362.231 256.948V264.72H363.231V256.948H362.231ZM363.848 273.116C363.517 272.926 363.101 272.845 362.735 273.057C362.369 273.268 362.231 273.669 362.231 274.05H363.231C363.231 273.969 363.246 273.926 363.253 273.911C363.259 273.899 363.256 273.91 363.235 273.922C363.215 273.934 363.203 273.931 363.217 273.932C363.234 273.933 363.278 273.942 363.348 273.983L363.848 273.116ZM386.481 286.153L363.848 273.116L363.348 273.983L385.981 287.019L386.481 286.153ZM387.597 288.085C387.597 287.7 387.466 287.309 387.277 286.982C387.087 286.654 386.814 286.345 386.481 286.153L385.981 287.019C386.127 287.103 386.286 287.267 386.411 287.482C386.535 287.697 386.597 287.917 386.597 288.085H387.597ZM387.597 295.857V288.085H386.597V295.857H387.597ZM385.981 296.791C386.312 296.982 386.728 297.062 387.094 296.851C387.46 296.64 387.597 296.239 387.597 295.857H386.597C386.597 295.939 386.583 295.981 386.576 295.996C386.57 296.009 386.573 295.997 386.593 295.985C386.614 295.973 386.626 295.977 386.612 295.976C386.595 295.974 386.551 295.965 386.481 295.925L385.981 296.791ZM363.348 283.755L385.981 296.791L386.481 295.925L363.848 282.888L363.348 283.755ZM362.231 281.822C362.231 282.207 362.363 282.599 362.552 282.926C362.741 283.253 363.015 283.563 363.348 283.755L363.848 282.888C363.702 282.805 363.543 282.641 363.418 282.426C363.294 282.21 363.231 281.99 363.231 281.822H362.231ZM362.231 274.05V281.822H363.231V274.05H362.231ZM363.231 291.152C363.231 291.07 363.246 291.028 363.253 291.012C363.259 291 363.256 291.012 363.235 291.024C363.215 291.036 363.203 291.032 363.217 291.033C363.234 291.035 363.278 291.043 363.348 291.084L363.848 290.218C363.517 290.027 363.101 289.947 362.735 290.158C362.369 290.369 362.231 290.77 362.231 291.152H363.231ZM363.231 298.924V291.152H362.231V298.924H363.231ZM363.848 299.99C363.702 299.906 363.543 299.742 363.418 299.527C363.294 299.312 363.231 299.091 363.231 298.924H362.231C362.231 299.308 362.363 299.7 362.552 300.027C362.741 300.355 363.015 300.664 363.348 300.856L363.848 299.99ZM421.441 333.163L363.848 299.99L363.348 300.856L420.941 334.029L421.441 333.163ZM421.558 333.095C421.558 333.177 421.543 333.219 421.536 333.235C421.53 333.247 421.533 333.235 421.554 333.223C421.574 333.211 421.586 333.215 421.572 333.214C421.555 333.212 421.511 333.203 421.441 333.163L420.941 334.029C421.272 334.22 421.688 334.3 422.054 334.089C422.42 333.878 422.558 333.477 422.558 333.095H421.558ZM421.558 325.323V333.095H422.558V325.323H421.558ZM420.941 324.257C421.087 324.341 421.246 324.505 421.371 324.72C421.495 324.935 421.558 325.155 421.558 325.323H422.558C422.558 324.938 422.426 324.547 422.237 324.22C422.047 323.892 421.774 323.583 421.441 323.391L420.941 324.257ZM363.348 291.084L420.941 324.257L421.441 323.391L363.848 290.218L363.348 291.084Z" fill="#F6F6F6"/>
+<path d="M528.162 161.269L623.508 216.187L623.508 350.553L528.162 295.635L528.162 161.269Z" fill="#0070CC" stroke="#F6F6F6"/>
+<path d="M554.639 146L649.9 201.065L623.439 216.361L528.178 161.296L554.639 146Z" fill="#0070CC" stroke="#F6F6F6"/>
+<path d="M487.081 185.088L582.427 240.007L582.427 374.373L487.081 319.455L487.081 185.088Z" fill="#0070CC" stroke="#F6F6F6"/>
+<path d="M513.558 169.82L608.819 224.885L582.358 240.181L487.097 185.116L513.558 169.82Z" fill="#0070CC" stroke="#F6F6F6"/>
+<path d="M446 208.909L541.345 263.827L541.345 398.193L446 343.275L446 208.909Z" fill="#0070CC" stroke="#F6F6F6"/>
+<path d="M472.477 193.64L567.738 248.705L541.276 264.001L446.016 208.936L472.477 193.64Z" fill="#0070CC" stroke="#F6F6F6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M457.731 234.948C457.731 234.396 458.119 234.172 458.597 234.448L501.334 259.122C501.812 259.398 502.2 260.069 502.2 260.622V268.394C502.2 268.946 501.812 269.17 501.334 268.894L458.597 244.22C458.119 243.944 457.731 243.272 457.731 242.72V234.948ZM457.731 252.05C457.731 251.498 458.119 251.274 458.598 251.549L481.231 264.586C481.71 264.862 482.097 265.533 482.097 266.085V273.857C482.097 274.409 481.71 274.634 481.231 274.358L458.598 261.322C458.119 261.046 457.731 260.375 457.731 259.822V252.05ZM458.598 268.651C458.119 268.375 457.731 268.599 457.731 269.152V276.924C457.731 277.476 458.119 278.147 458.598 278.423L516.191 311.596C516.67 311.872 517.058 311.647 517.058 311.095V303.323C517.058 302.771 516.67 302.1 516.191 301.824L458.598 268.651Z" fill="#0070CC"/>
+<path d="M458.597 234.448L458.847 234.015L458.597 234.448ZM501.334 259.122L501.584 258.689L501.334 259.122ZM501.334 268.894L501.584 268.461V268.461L501.334 268.894ZM458.597 244.22L458.347 244.653L458.347 244.653L458.597 244.22ZM458.598 251.549L458.848 251.116H458.848L458.598 251.549ZM481.231 264.586L481.481 264.153L481.231 264.586ZM481.231 274.358L480.981 274.791H480.981L481.231 274.358ZM458.598 261.322L458.848 260.888H458.848L458.598 261.322ZM458.598 268.651L458.848 268.218L458.848 268.218L458.598 268.651ZM458.598 278.423L458.348 278.856H458.348L458.598 278.423ZM516.191 311.596L516.441 311.163H516.441L516.191 311.596ZM516.191 301.824L516.441 301.391H516.441L516.191 301.824ZM458.847 234.015C458.517 233.824 458.101 233.743 457.735 233.954C457.369 234.165 457.231 234.567 457.231 234.948H458.231C458.231 234.866 458.246 234.824 458.253 234.809C458.259 234.796 458.256 234.808 458.235 234.82C458.214 234.832 458.202 234.829 458.216 234.83C458.233 234.831 458.277 234.84 458.347 234.881L458.847 234.015ZM501.584 258.689L458.847 234.015L458.347 234.881L501.084 259.555L501.584 258.689ZM502.7 260.622C502.7 260.237 502.568 259.846 502.379 259.518C502.19 259.191 501.917 258.881 501.584 258.689L501.084 259.555C501.229 259.639 501.389 259.803 501.513 260.018C501.638 260.234 501.7 260.454 501.7 260.622H502.7ZM502.7 268.394V260.622H501.7V268.394H502.7ZM501.084 269.327C501.414 269.518 501.83 269.599 502.196 269.388C502.562 269.176 502.7 268.775 502.7 268.394H501.7C501.7 268.475 501.685 268.518 501.678 268.533C501.673 268.546 501.675 268.534 501.696 268.522C501.717 268.509 501.729 268.513 501.715 268.512C501.699 268.51 501.654 268.502 501.584 268.461L501.084 269.327ZM458.347 244.653L501.084 269.327L501.584 268.461L458.847 243.787L458.347 244.653ZM457.231 242.72C457.231 243.105 457.363 243.496 457.552 243.824C457.741 244.151 458.014 244.461 458.347 244.653L458.847 243.787C458.702 243.703 458.543 243.539 458.418 243.324C458.294 243.108 458.231 242.888 458.231 242.72H457.231ZM457.231 234.948V242.72H458.231V234.948H457.231ZM458.848 251.116C458.517 250.926 458.101 250.845 457.735 251.057C457.369 251.268 457.231 251.669 457.231 252.05H458.231C458.231 251.969 458.246 251.926 458.253 251.911C458.259 251.899 458.256 251.91 458.235 251.922C458.215 251.934 458.203 251.931 458.217 251.932C458.234 251.933 458.278 251.942 458.348 251.983L458.848 251.116ZM481.481 264.153L458.848 251.116L458.348 251.983L480.981 265.019L481.481 264.153ZM482.597 266.085C482.597 265.7 482.466 265.309 482.277 264.982C482.087 264.654 481.814 264.345 481.481 264.153L480.981 265.019C481.127 265.103 481.286 265.267 481.411 265.482C481.535 265.697 481.597 265.917 481.597 266.085H482.597ZM482.597 273.857V266.085H481.597V273.857H482.597ZM480.981 274.791C481.312 274.982 481.728 275.062 482.094 274.851C482.46 274.64 482.597 274.239 482.597 273.857H481.597C481.597 273.939 481.583 273.981 481.576 273.996C481.57 274.009 481.573 273.997 481.593 273.985C481.614 273.973 481.626 273.977 481.612 273.976C481.595 273.974 481.551 273.965 481.481 273.925L480.981 274.791ZM458.348 261.755L480.981 274.791L481.481 273.925L458.848 260.888L458.348 261.755ZM457.231 259.822C457.231 260.207 457.363 260.599 457.552 260.926C457.741 261.253 458.015 261.563 458.348 261.755L458.848 260.888C458.702 260.805 458.543 260.641 458.418 260.426C458.294 260.21 458.231 259.99 458.231 259.822H457.231ZM457.231 252.05V259.822H458.231V252.05H457.231ZM458.231 269.152C458.231 269.07 458.246 269.028 458.253 269.012C458.259 269 458.256 269.012 458.235 269.024C458.215 269.036 458.203 269.032 458.217 269.033C458.234 269.035 458.278 269.043 458.348 269.084L458.848 268.218C458.517 268.027 458.101 267.947 457.735 268.158C457.369 268.369 457.231 268.77 457.231 269.152H458.231ZM458.231 276.924V269.152H457.231V276.924H458.231ZM458.848 277.99C458.702 277.906 458.543 277.742 458.418 277.527C458.294 277.312 458.231 277.091 458.231 276.924H457.231C457.231 277.308 457.363 277.7 457.552 278.027C457.741 278.355 458.015 278.664 458.348 278.856L458.848 277.99ZM516.441 311.163L458.848 277.99L458.348 278.856L515.941 312.029L516.441 311.163ZM516.558 311.095C516.558 311.177 516.543 311.219 516.536 311.235C516.53 311.247 516.533 311.235 516.553 311.223C516.574 311.211 516.586 311.215 516.572 311.214C516.555 311.212 516.511 311.203 516.441 311.163L515.941 312.029C516.272 312.22 516.688 312.3 517.054 312.089C517.42 311.878 517.558 311.477 517.558 311.095H516.558ZM516.558 303.323V311.095H517.558V303.323H516.558ZM515.941 302.257C516.087 302.341 516.246 302.505 516.371 302.72C516.495 302.935 516.558 303.155 516.558 303.323H517.558C517.558 302.938 517.426 302.547 517.237 302.22C517.047 301.892 516.774 301.583 516.441 301.391L515.941 302.257ZM458.348 269.084L515.941 302.257L516.441 301.391L458.848 268.218L458.348 269.084Z" fill="#F6F6F6"/>
+</g>
+</svg>
diff --git a/public/img/poweredby/videos/018.png b/public/img/poweredby/videos/018.png
new file mode 100644
index 0000000..37c0755
--- /dev/null
+++ b/public/img/poweredby/videos/018.png
Binary files differ
diff --git a/public/img/poweredby/videos/018.svg b/public/img/poweredby/videos/018.svg
new file mode 100644
index 0000000..9bd6aa4
--- /dev/null
+++ b/public/img/poweredby/videos/018.svg
@@ -0,0 +1,19 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="335" fill="#91C2EA"/>
+<mask id="mask0_101:53" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="134" y="148" width="408" height="187">
+<rect x="134" y="148" width="408" height="187" fill="#0070CC"/>
+</mask>
+<g mask="url(#mask0_101:53)">
+<path d="M239.155 452C234.948 452.007 230.745 451.732 226.575 451.178C192.283 446.604 161.166 423.537 131.361 380.647L131 380.127L131.476 379.709L324.718 206.924L325.165 207.66C334.384 222.274 344.035 230.439 354.696 232.603C371.229 235.964 388.223 224.149 404.655 212.723C421.332 201.182 438.586 189.122 455.724 192.613C466.746 194.849 476.686 203.173 486.092 218.061L562.768 264.961C569.696 264.382 576.665 264.546 583.557 265.452C617.849 270.025 648.966 293.093 678.771 335.983L680.719 338.796L562.422 266.404C510.025 270.891 457.008 315.454 405.535 358.82C351.046 404.71 294.841 452 239.155 452ZM132.962 380.373C162.349 422.57 193.034 445.292 226.734 449.764C285.882 457.641 346.228 406.888 404.568 357.781C455.595 314.862 508.136 270.66 560.374 265.221L485.053 219.129L484.967 218.984C475.748 204.37 466.097 196.191 455.378 194.027C438.845 190.665 421.851 202.48 405.419 213.906C388.742 225.447 371.503 237.508 354.35 234.017C343.458 231.809 333.648 223.673 324.343 209.145L132.962 380.373ZM564.889 266.289L675.54 333.992C646.687 293.28 616.464 271.323 583.369 266.909C577.244 266.107 571.055 265.894 564.889 266.274V266.289Z" fill="#0070CC"/>
+<path d="M259.366 415.732C255.506 415.734 251.65 415.474 247.825 414.953C217.472 410.784 189.932 390.183 163.503 351.953L164.7 351.131C190.812 389 218.078 409.413 248.085 413.525C300.135 420.651 353.239 376.406 404.597 333.602C456.215 290.597 509.578 246.207 562.249 253.42C592.66 257.59 620.258 278.191 646.629 316.421L645.432 317.243C619.32 279.359 592.054 258.96 562.047 254.849C510.011 247.722 456.893 291.968 405.535 334.771C357.668 374.602 308.301 415.732 259.366 415.732Z" fill="#0070CC"/>
+<path d="M279.563 379.464C276.098 379.463 272.636 379.217 269.205 378.728C242.646 374.963 218.583 356.814 195.63 323.244L196.813 322.436C219.549 355.617 243.31 373.592 269.436 377.257C314.374 383.633 360.322 345.894 404.64 309.453C449.261 272.737 495.397 234.796 540.956 241.259C567.515 245.024 591.578 263.173 614.53 296.743L613.347 297.551C590.611 264.37 566.851 246.395 540.725 242.73C495.787 236.354 449.838 274.093 405.52 310.535C364.29 344.465 321.746 379.464 279.563 379.464Z" fill="#0070CC"/>
+<path d="M299.789 343.196C296.685 343.2 293.584 342.974 290.513 342.518C267.835 339.142 247.234 323.446 227.686 294.55L228.883 293.814C248.244 322.364 268.469 337.858 290.729 341.162C328.555 346.803 367.189 315.555 404.612 285.332C442.25 254.921 481.173 223.471 519.619 229.198C542.297 232.574 562.898 248.256 582.446 277.166L581.249 277.974C561.888 249.424 541.663 233.93 519.403 230.627C481.577 225 442.943 256.234 405.52 286.457C370.911 314.343 335.22 343.196 299.789 343.196Z" fill="#0070CC"/>
+<path d="M320.015 306.957C317.271 306.961 314.531 306.749 311.821 306.322C293.066 303.336 275.986 290.092 259.77 265.841L260.968 265.033C276.952 288.938 293.658 301.979 312.052 304.894C342.78 309.755 374.215 285.014 404.626 261.081C435.268 236.96 466.963 212.031 498.311 216.979C517.066 219.965 534.146 233.209 550.362 257.46L549.15 258.267C533.18 234.363 516.474 221.321 498.08 218.407C467.367 213.546 435.917 238.287 405.506 262.22C377.475 284.249 348.623 306.957 320.015 306.957Z" fill="#0070CC"/>
+<path d="M340.27 270.732C337.852 270.738 335.438 270.53 333.057 270.112C318.111 267.515 304.608 256.71 291.783 237.104L292.994 236.311C305.589 255.57 318.774 266.159 333.302 268.698C356.932 272.81 381.14 254.546 404.554 236.873C428.213 219.028 452.68 200.562 476.931 204.789C491.877 207.4 505.38 218.191 518.191 237.797L516.993 238.59C504.399 219.345 491.213 208.742 476.686 206.217C453.041 202.091 428.848 220.37 405.434 237.955C384.155 254.156 362.169 270.732 340.27 270.732Z" fill="#0070CC"/>
+<path d="M459.074 193.486L458.364 194.742L586.738 267.343L587.448 266.087L459.074 193.486Z" fill="#0070CC"/>
+<path d="M432.482 196.474L431.297 197.296L495.486 289.824L496.671 289.001L432.482 196.474Z" fill="#0070CC"/>
+<path d="M405.795 213.315H404.352V358.329H405.795V213.315Z" fill="#0070CC"/>
+<path d="M377.468 229.435L313.399 426.973L314.771 427.418L378.841 229.88L377.468 229.435Z" fill="#0070CC"/>
+<path d="M350.695 232.084L222.478 449.581L223.72 450.313L351.938 232.817L350.695 232.084Z" fill="#0070CC"/>
+</g>
+</svg>
diff --git a/public/img/poweredby/videos/019.png b/public/img/poweredby/videos/019.png
new file mode 100644
index 0000000..fec2961
--- /dev/null
+++ b/public/img/poweredby/videos/019.png
Binary files differ
diff --git a/public/img/poweredby/videos/019.svg b/public/img/poweredby/videos/019.svg
new file mode 100644
index 0000000..b78d465
--- /dev/null
+++ b/public/img/poweredby/videos/019.svg
@@ -0,0 +1,118 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="335" fill="#0070CC"/>
+<mask id="mask0_53:36" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="237" y="116" width="305" height="219">
+<rect x="237" y="116" width="305" height="219" fill="#0070CC"/>
+</mask>
+<g mask="url(#mask0_53:36)">
+<path d="M441 289V146" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M441 289V146" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M437 290L422 147" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M437 290L422 147" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M433 290L403 150" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M433 290L403 150" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M429 291L385 155" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M429 291L385 155" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M425 293L367 162" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M425 293L367 162" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M422 294L350 170" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M422 294L350 170" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M419 296L335 181" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M419 296L335 181" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M416 299L320 193" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M416 299L320 193" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M413 302L307 206" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M413 302L307 206" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M410 305L295 221" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M410 305L295 221" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M408 308L284 236" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M408 308L284 236" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M407 311L276 253" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M407 311L276 253" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M405 315L269 271" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M405 315L269 271" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M404 319L264 289" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M404 319L264 289" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M404 323L261 308" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M404 323L261 308" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M403 327H260" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M403 327H260" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M404 331L261 346" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M404 331L261 346" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M404 334L264 364" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M404 334L264 364" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M477 334L617 364" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M477 334L617 364" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M478 331L620 346" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M478 331L620 346" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M478 327H621" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M478 327H621" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M478 323L620 308" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M478 323L620 308" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M477 319L617 289" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M477 319L617 289" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M476 315L612 271" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M476 315L612 271" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M475 311L605 253" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M475 311L605 253" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M473 308L597 236" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M473 308L597 236" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M471 305L587 221" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M471 305L587 221" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M468 302L575 206" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M468 302L575 206" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M466 299L561 193" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M466 299L561 193" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M463 296L547 181" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M463 296L547 181" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M459 294L531 170" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M459 294L531 170" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M456 293L514 162" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M456 293L514 162" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M452 291L496 155" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M452 291L496 155" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M448 290L478 150" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M448 290L478 150" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M445 290L459 147" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
+<path d="M445 290L459 147" stroke="white" stroke-opacity="0.1" stroke-width="2"/>
+<path d="M450.255 290.974L487.266 152.846" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M446.133 290.904L468.655 148.895" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M442.269 289.869L449.526 146.875" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M438.146 289.8L430.845 147.046" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M433.765 290.696L411.647 149.148" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M430.608 290.886L393.155 152.476" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M427.193 292.041L375.819 159.219" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M423.519 294.162L358.225 166.928" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M419.845 296.284L342.303 176.12" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M416.17 298.405L326.83 187.503" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M413.462 300.785L312.322 199.145" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M411.72 303.424L300.195 213.495" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M408.752 306.77L288.775 229.07" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M406.751 310.375L279.286 245.163" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M405.716 314.239L271.471 262.739" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M403.715 317.844L265.587 280.833" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M403.645 321.966L261.636 299.444" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M402.869 324.864L259.875 317.607" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M402.8 328.986L260.046 336.288" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M403.696 333.368L262.148 355.486" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M403.886 336.524L265.476 373.977" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M404.782 340.906L271.96 392.279" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M406.904 344.58L279.928 408.908" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M409.284 347.289L288.861 425.796" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M411.405 350.962L300.244 441.269" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M413.785 353.671L312.145 454.811" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M477.195 333.391L618.238 355.655" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M477.264 329.269L620.258 336.526" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M477.333 325.146L620.087 317.845" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M477.403 321.024L617.984 298.646" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M476.247 317.609L614.657 280.156" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M475.092 314.193L608.88 263.078" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M472.97 310.519L601.171 245.484" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M471.815 307.103L591.013 229.303" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M469.694 303.429L580.596 214.088" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M466.348 300.462L567.988 199.322" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M463.709 298.719L553.638 187.195" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M460.363 295.753L538.063 175.775" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M456.758 293.751L521.97 166.286" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+<path d="M453.86 292.975L504.394 158.471" stroke="white" stroke-opacity="0.5" stroke-width="2"/>
+</g>
+</svg>
diff --git a/public/img/poweredby/videos/020.png b/public/img/poweredby/videos/020.png
new file mode 100644
index 0000000..c598b54
--- /dev/null
+++ b/public/img/poweredby/videos/020.png
Binary files differ
diff --git a/public/img/poweredby/videos/020.svg b/public/img/poweredby/videos/020.svg
new file mode 100644
index 0000000..b38ee70
--- /dev/null
+++ b/public/img/poweredby/videos/020.svg
@@ -0,0 +1,25 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="335" fill="#91C2EA"/>
+<mask id="mask0_26:29" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="274" y="116" width="268" height="219">
+<rect x="274.598" y="116" width="267.402" height="219" fill="#91C2EA"/>
+</mask>
+<g mask="url(#mask0_26:29)">
+<path d="M459.421 311.399L459.421 311.399L459.418 311.394C458.677 309.91 458.638 308.851 458.876 308.069C459.12 307.267 459.708 306.579 460.563 305.955C461.42 305.329 462.46 304.829 463.489 304.369C463.648 304.298 463.811 304.226 463.974 304.155C464.795 303.793 465.632 303.424 466.196 303.042L466.202 303.038L466.208 303.034C467.766 301.944 469.561 301.711 471.616 301.444C471.649 301.44 471.681 301.436 471.713 301.432C473.727 301.17 476.019 300.859 477.923 299.258L477.93 299.252L477.937 299.246C479.071 298.256 480.727 297.977 482.497 298.548C482.894 298.744 483.222 298.922 483.481 299.204C483.845 299.634 484.024 300.262 484.006 300.939C483.988 301.619 483.777 302.178 483.564 302.451C483.286 302.741 482.925 302.953 482.418 303.209C482.357 303.24 482.293 303.272 482.226 303.306C481.772 303.532 481.205 303.815 480.701 304.216L480.701 304.216L480.695 304.221C479.814 304.934 479.217 305.968 478.757 307C478.393 307.817 478.079 308.721 477.784 309.572C477.705 309.799 477.628 310.021 477.552 310.238C477.173 311.306 476.809 312.229 476.365 312.927C475.928 313.615 475.487 313.968 474.996 314.086L474.984 314.088L474.973 314.091C474.254 314.281 473.353 313.993 472.075 313.408C471.916 313.335 471.75 313.258 471.58 313.178C471.13 312.967 470.65 312.743 470.187 312.556C469.54 312.296 468.828 312.067 468.098 312.015L468.096 312.015C467.02 311.941 466.084 312.251 465.296 312.566C465.068 312.657 464.857 312.746 464.657 312.83C464.117 313.057 463.655 313.251 463.14 313.372L463.116 313.378L463.092 313.384C461.993 313.7 460.347 313.279 459.421 311.399Z" stroke="#0070CC" stroke-width="2" stroke-miterlimit="10"/>
+<path d="M482.254 311.007L482.254 311.007L482.251 311.018C482.079 311.635 481.921 312.268 481.761 312.909C481.495 313.974 481.223 315.062 480.868 316.145C480.305 317.859 479.623 319.224 478.707 319.989C477.91 320.643 476.978 320.804 475.781 320.676C474.821 320.561 473.792 320.169 472.627 319.613C472.097 319.361 471.559 319.084 470.995 318.794C470.941 318.767 470.888 318.74 470.834 318.712C470.22 318.397 469.577 318.069 468.917 317.762C467.745 317.187 466.524 316.717 465.276 316.63C463.86 316.466 462.577 316.746 461.381 317.132C460.838 317.308 460.294 317.512 459.765 317.71C459.712 317.73 459.659 317.749 459.607 317.769C459.02 317.989 458.443 318.201 457.847 318.384L457.847 318.384L457.838 318.387C454.872 319.33 451.638 317.641 449.876 313.901C449.275 312.623 448.851 311.382 448.599 310.176C448.261 308.33 448.124 306.294 448.392 304.5C448.662 302.691 449.32 301.269 450.438 300.443C450.564 300.35 450.788 300.263 451.181 300.22C451.571 300.178 452.027 300.189 452.556 300.214C452.64 300.218 452.727 300.222 452.816 300.227C453.252 300.249 453.733 300.273 454.179 300.262C454.71 300.248 455.32 300.183 455.863 299.932L455.87 299.928L455.877 299.925C456.791 299.483 457.639 299.046 458.442 298.632C459.888 297.887 461.193 297.215 462.494 296.716L462.503 296.712L462.513 296.708C464.372 295.95 466.057 294.905 467.64 293.922C467.823 293.809 468.005 293.696 468.185 293.585C469.958 292.49 471.626 291.519 473.452 290.975C474.146 290.769 475.01 290.866 476.15 291.039C476.217 291.049 476.285 291.06 476.354 291.07C477.334 291.221 478.524 291.404 479.617 291.192C480.089 291.144 480.465 291.01 480.869 290.749L480.883 290.739L480.897 290.73C482.993 289.272 485.641 289.225 488.268 290.395L488.282 290.401L488.295 290.407C488.963 290.68 489.608 291.1 490.23 291.843L490.366 292.006L490.391 292.018C491.16 293.114 491.543 294.587 491.575 296.026C491.607 297.534 491.252 298.792 490.784 299.417L490.773 299.432L490.762 299.447C490.341 300.054 489.778 300.449 489.068 300.845C488.912 300.931 488.742 301.021 488.562 301.117C487.98 301.424 487.299 301.784 486.715 302.241C486.28 302.573 485.885 302.909 485.512 303.349C484.59 304.407 483.966 305.705 483.481 307.018C483.1 308.051 482.786 309.152 482.489 310.193C482.41 310.469 482.332 310.741 482.254 311.007Z" stroke="#0070CC" stroke-width="2" stroke-miterlimit="10"/>
+<path d="M481.23 326.808L481.224 326.812L481.218 326.816C479.818 327.778 478.228 327.737 476.433 327.285C475.041 326.927 473.623 326.239 472.102 325.397C471.578 325.107 471.032 324.793 470.474 324.471C469.462 323.889 468.407 323.282 467.352 322.744C465.769 321.9 464.21 321.411 462.732 321.172L462.719 321.17L462.706 321.168C460.868 320.92 459.182 321.246 457.575 321.739C456.775 321.984 455.977 322.277 455.19 322.566L455.152 322.58C454.371 322.868 453.597 323.152 452.796 323.405C447.666 325.005 442.983 321.955 440.437 316.457C439.572 314.429 438.821 312.456 438.489 310.536L438.49 310.536L438.487 310.523C437.978 307.779 437.548 304.475 437.746 301.495C437.946 298.482 438.77 296.053 440.51 294.735C440.681 294.615 441.038 294.513 441.717 294.543C442.377 294.573 443.153 294.714 444.016 294.884C444.106 294.902 444.197 294.92 444.288 294.938C445.044 295.089 445.855 295.25 446.596 295.325C447.402 295.407 448.322 295.412 449.086 295.053L449.086 295.053L449.096 295.048C450.299 294.464 451.465 293.844 452.583 293.249C453.169 292.937 453.741 292.633 454.3 292.344C455.95 291.489 457.53 290.743 459.168 290.224C462.136 289.302 464.545 287.282 466.762 285.386C466.833 285.326 466.904 285.265 466.974 285.205C469.17 283.326 471.192 281.596 473.569 280.706L473.574 280.704C473.875 280.589 474.308 280.57 474.925 280.697C475.536 280.823 476.222 281.068 476.98 281.368C477.195 281.453 477.418 281.543 477.646 281.635C478.189 281.856 478.757 282.086 479.296 282.275C480.062 282.545 480.885 282.776 481.674 282.804C482.219 282.831 482.848 282.769 483.436 282.426L483.469 282.407L483.5 282.386C486.622 280.238 490.474 280.429 494.092 282.14C495.135 282.652 496.122 283.31 497.08 284.529L497.41 284.948C498.507 286.62 499.074 288.806 499.162 290.916C499.257 293.194 498.786 295.153 498.062 296.159L498.054 296.17L498.047 296.18C497.368 297.177 496.489 297.787 495.443 298.385C495.239 298.501 495.023 298.619 494.8 298.742C493.926 299.222 492.934 299.766 492.057 300.52L492.048 300.528L492.039 300.536C491.547 300.98 490.977 301.555 490.509 302.208C488.415 305.089 487.464 309.051 486.652 312.434C486.563 312.808 486.475 313.175 486.387 313.533L486.385 313.54C486.198 314.327 486.026 315.163 485.847 316.027C485.508 317.67 485.148 319.413 484.632 321.106C483.845 323.686 482.791 325.767 481.23 326.808Z" stroke="#0070CC" stroke-width="2" stroke-miterlimit="10"/>
+<path d="M490.581 316.181L490.581 316.182C490.343 317.196 490.123 318.296 489.893 319.445C489.463 321.588 489 323.901 488.324 326.142C487.287 329.578 485.856 332.415 483.652 333.771C481.744 334.926 479.388 334.675 477.022 333.89C475.217 333.279 473.425 332.297 471.557 331.188C471.116 330.926 470.668 330.656 470.216 330.383C468.79 329.521 467.315 328.63 465.817 327.869C463.805 326.75 461.93 326.1 460.065 325.809L460.062 325.808C456.285 325.229 452.844 326.52 449.31 327.845C448.779 328.044 448.246 328.244 447.709 328.438L447.708 328.439C444.125 329.744 440.834 329.19 438.007 327.44C435.151 325.67 432.744 322.655 431.088 319.036L431.088 319.036L431.083 319.026C429.848 316.402 428.923 313.69 428.426 311.016C427.764 307.434 427.04 302.881 427.16 298.727C427.281 294.517 428.26 291.048 430.666 289.257L430.668 289.255C430.936 289.055 431.473 288.934 432.442 289.035C433.372 289.131 434.464 289.403 435.647 289.714C435.768 289.746 435.891 289.778 436.015 289.811C437.057 290.087 438.153 290.377 439.147 290.538C440.218 290.711 441.41 290.781 442.36 290.33L442.36 290.33L442.366 290.327C444.04 289.519 445.634 288.644 447.165 287.804C447.899 287.401 448.618 287.007 449.324 286.631C451.532 285.457 453.674 284.435 455.979 283.771C459.784 282.703 462.742 279.886 465.452 277.187C465.633 277.006 465.814 276.825 465.993 276.646C468.569 274.072 470.96 271.682 473.832 270.471C474.181 270.331 474.708 270.332 475.496 270.575C476.273 270.816 477.152 271.244 478.114 271.76C478.441 271.935 478.782 272.123 479.129 272.315C479.764 272.665 480.419 273.026 481.038 273.337C482.001 273.82 483.015 274.257 483.974 274.419L484.02 274.427L484.066 274.43L484.097 274.433C484.387 274.455 484.763 274.483 485.125 274.456C485.499 274.427 485.967 274.334 486.383 274.025C490.467 271.219 495.42 271.615 500.118 273.919C501.463 274.579 502.859 275.496 504.061 277.166C504.103 277.24 504.146 277.296 504.178 277.334C504.205 277.367 504.23 277.394 504.248 277.414C505.862 279.788 506.697 282.96 506.844 285.977C506.994 289.026 506.433 291.698 505.487 293.124L505.482 293.132C504.563 294.545 503.357 295.374 501.968 296.164C501.713 296.309 501.448 296.454 501.176 296.603C500.006 297.245 498.707 297.957 497.573 298.993L497.554 299.011L497.536 299.029L497.507 299.058C496.886 299.689 496.189 300.397 495.624 301.255C494.096 303.396 493.12 305.962 492.386 308.545C491.886 310.304 491.484 312.132 491.103 313.862C490.927 314.662 490.755 315.44 490.581 316.181Z" stroke="#0070CC" stroke-width="2" stroke-miterlimit="10"/>
+<path d="M494.721 318.68C494.455 319.875 494.208 321.194 493.947 322.584C493.443 325.271 492.888 328.225 492.053 331.071C490.784 335.393 488.978 339.006 486.117 340.637L486.114 340.639C483.554 342.112 480.505 341.607 477.583 340.49C475.375 339.624 473.216 338.35 470.975 336.953C470.58 336.706 470.182 336.456 469.781 336.204C467.933 335.041 466.021 333.838 464.039 332.811C461.625 331.495 459.435 330.686 457.191 330.344L457.189 330.343C452.499 329.637 448.212 331.262 443.592 333.013C443.221 333.154 442.847 333.296 442.471 333.437L442.47 333.437C437.872 335.172 433.685 334.452 430.116 332.203C426.515 329.933 423.516 326.082 421.461 321.555C419.972 318.203 418.738 314.825 418.16 311.421L418.16 311.421L418.159 311.415C417.369 306.943 416.344 301.126 416.369 295.794C416.395 290.394 417.501 285.882 420.578 283.606C420.965 283.325 421.711 283.207 422.966 283.39C424.173 283.566 425.586 283.978 427.091 284.435C427.229 284.477 427.368 284.52 427.508 284.562C428.853 284.973 430.253 285.399 431.513 285.649C432.853 285.914 434.3 286.041 435.422 285.507C437.554 284.503 439.573 283.374 441.524 282.283C442.368 281.81 443.2 281.345 444.024 280.9C446.78 279.41 449.505 278.104 452.531 277.319C457.174 276.151 460.654 272.553 463.841 269.044C464.111 268.747 464.378 268.451 464.645 268.156C467.612 264.871 470.397 261.788 473.834 260.238L473.837 260.237C474.237 260.055 474.869 260.066 475.85 260.434C476.805 260.793 477.894 261.416 479.075 262.156C479.501 262.423 479.945 262.709 480.395 262.999C481.149 263.485 481.919 263.982 482.648 264.415C483.816 265.11 485.027 265.739 486.152 266.009L486.18 266.016L486.209 266.021C487.036 266.17 488.023 266.306 488.951 265.705L488.962 265.698L488.973 265.69C494.113 262.166 500.262 262.753 505.953 265.669L505.961 265.673L505.968 265.677C507.614 266.484 509.345 267.625 510.886 269.772C510.91 269.822 510.937 269.868 510.964 269.911C511.012 269.987 511.06 270.047 511.093 270.086L511.117 270.121C513.18 273.172 514.254 277.177 514.465 280.951C514.677 284.759 514.003 288.116 512.803 289.929L512.799 289.935C511.626 291.736 510.083 292.768 508.341 293.757C508.071 293.91 507.793 294.063 507.51 294.219C506.012 295.047 504.371 295.953 502.961 297.336C502.072 298.185 501.273 299.105 500.606 300.176C498.83 302.834 497.681 306.019 496.816 309.231C496.201 311.52 495.716 313.878 495.261 316.097C495.079 316.985 494.901 317.851 494.721 318.68ZM494.721 318.68C494.722 318.679 494.722 318.678 494.722 318.677L495.698 318.894L494.721 318.682C494.721 318.682 494.721 318.681 494.721 318.68Z" stroke="#0070CC" stroke-width="2" stroke-miterlimit="10"/>
+<path d="M498.813 321.273L498.812 321.278C498.533 322.617 498.271 324.1 497.993 325.669C497.415 328.946 496.77 332.599 495.761 336.093C494.267 341.266 492.081 345.65 488.522 347.614C485.428 349.28 481.702 348.585 478.131 347.088C475.521 345.964 473.003 344.417 470.421 342.748C469.942 342.438 469.46 342.124 468.975 341.808C466.868 340.433 464.705 339.022 462.459 337.787C459.693 336.232 457.114 335.298 454.593 334.88L454.593 334.88L454.582 334.878C448.81 333.984 443.606 335.989 437.767 338.237C437.642 338.285 437.517 338.334 437.392 338.382L437.391 338.382C431.776 340.548 426.712 339.655 422.422 336.909C418.096 334.141 414.53 329.464 412.089 324.065C410.287 320.047 408.81 315.965 408.071 311.828L408.07 311.822C408.046 311.694 408.022 311.566 407.998 311.436C407.028 306.204 405.758 299.353 405.696 293.025C405.633 286.47 406.876 280.888 410.624 278.082C411.14 277.718 412.1 277.609 413.635 277.876C415.119 278.133 416.853 278.686 418.679 279.289C418.834 279.34 418.99 279.392 419.147 279.444C420.795 279.989 422.497 280.553 424.022 280.891C425.634 281.248 427.333 281.427 428.619 280.811L428.624 280.809C431.068 279.624 433.384 278.304 435.626 277.025C436.748 276.386 437.852 275.756 438.944 275.16C442.258 273.35 445.559 271.783 449.277 270.889L449.284 270.888C454.677 269.554 458.651 265.198 462.309 260.893C462.641 260.501 462.972 260.11 463.3 259.721C466.677 255.72 469.886 251.919 473.908 249.981L473.915 249.978C474.382 249.748 475.131 249.773 476.298 250.262C477.43 250.737 478.723 251.55 480.115 252.51C480.677 252.898 481.269 253.32 481.867 253.746C482.692 254.333 483.527 254.929 484.308 255.452C485.666 256.361 487.049 257.186 488.309 257.589C489.446 257.995 490.565 258.059 491.562 257.45L491.585 257.436L491.607 257.421C497.719 253.221 505.161 254.046 511.824 257.502C513.83 258.547 515.91 259.928 517.796 262.579C517.797 262.58 517.797 262.581 517.798 262.582C517.823 262.627 517.847 262.664 517.866 262.692C517.89 262.728 517.916 262.762 517.934 262.787L517.938 262.799L518.013 262.91C520.509 266.592 521.803 271.432 522.072 275.98C522.343 280.563 521.561 284.629 520.141 286.82C518.686 289.063 516.788 290.324 514.693 291.509C514.371 291.691 514.042 291.872 513.707 292.056C511.908 293.047 509.969 294.115 508.313 295.77C507.274 296.771 506.383 297.899 505.611 299.063L505.609 299.066C503.493 302.279 502.172 306.117 501.192 309.98C500.557 312.487 500.05 315.07 499.571 317.518C499.316 318.819 499.068 320.081 498.813 321.273Z" stroke="#0070CC" stroke-width="2" stroke-miterlimit="10"/>
+<path d="M527.584 283.759L527.588 283.753C529.263 281.174 530.151 276.404 529.823 271.046C529.496 265.725 527.981 260.047 525.088 255.716L525.015 255.608L524.999 255.56C524.961 255.511 524.895 255.419 524.833 255.293C522.611 252.167 520.197 250.556 517.848 249.28C510.114 245.237 501.564 244.197 494.481 249.068C493.351 249.87 491.929 249.607 490.786 249.182C489.361 248.661 487.779 247.647 486.208 246.522C485.301 245.873 484.34 245.143 483.388 244.421C482.704 243.902 482.025 243.386 481.374 242.907C479.771 241.726 478.271 240.711 476.961 240.101C475.608 239.47 474.733 239.402 474.194 239.654C471.7 240.896 469.462 242.828 467.308 245.127C465.58 246.973 463.943 249.012 462.279 251.086C461.861 251.607 461.442 252.13 461.018 252.653C456.872 257.771 452.366 262.897 446.157 264.327L446.154 264.328C441.745 265.331 437.854 267.183 433.98 269.315C432.756 269.988 431.525 270.694 430.279 271.41C427.616 272.938 424.881 274.508 421.99 275.883C421.243 276.241 420.385 276.344 419.517 276.316C418.642 276.288 417.69 276.124 416.712 275.889C414.952 275.465 412.983 274.777 411.063 274.105C410.857 274.033 410.652 273.962 410.448 273.89C408.302 273.142 406.251 272.454 404.499 272.129C402.685 271.792 401.522 271.914 400.892 272.389L400.886 272.394L400.886 272.394C398.677 274.033 397.218 276.508 396.332 279.583C395.444 282.662 395.147 286.284 395.223 290.116C395.365 297.277 396.798 304.981 397.906 310.937C397.985 311.362 398.063 311.778 398.138 312.184L527.584 283.759ZM527.584 283.759C525.912 286.377 523.701 287.853 521.262 289.242C520.889 289.454 520.51 289.665 520.125 289.879C518.027 291.043 515.78 292.29 513.851 294.224C512.682 295.357 511.609 296.723 510.731 298.104C508.326 301.847 506.803 306.291 505.679 310.779C504.881 313.965 504.271 317.229 503.697 320.305C503.464 321.549 503.238 322.762 503.007 323.926C502.703 325.423 502.416 327.093 502.111 328.867C501.453 332.698 500.712 337.017 499.531 341.133C497.8 347.171 495.231 352.326 491 354.566M527.584 283.759L491 354.566M491 354.566C487.25 356.548 482.805 355.518 478.665 353.68M491 354.566L478.665 353.68M478.665 353.68C475.68 352.341 472.822 350.501 469.908 348.532C469.415 348.198 468.919 347.86 468.421 347.521C466.002 345.873 463.526 344.187 460.951 342.733C457.837 340.941 454.863 339.88 451.978 339.413C445.325 338.321 439.322 340.672 432.42 343.377C425.774 345.937 419.823 344.851 414.808 341.599C409.755 338.322 405.623 332.822 402.799 326.555C400.782 321.913 399.039 317.052 398.138 312.184L478.665 353.68Z" stroke="#0070CC" stroke-width="2" stroke-miterlimit="10"/>
+<path d="M493.373 361.468L493.363 361.473C489.107 363.713 483.889 362.443 479.198 360.271C475.817 358.676 472.598 356.545 469.316 354.298C468.921 354.027 468.524 353.755 468.127 353.482C465.243 351.499 462.293 349.472 459.193 347.749C455.676 345.761 452.393 344.544 449.138 344.027C441.736 342.759 435.037 345.344 427.214 348.363L427.196 348.37L427.187 348.374C419.536 351.405 412.687 350.152 406.925 346.398C401.124 342.618 396.401 336.276 393.193 329.14L393.191 329.136C390.758 323.781 388.777 318.225 387.793 312.611L387.792 312.607C387.643 311.773 387.484 310.901 387.319 309.998C386.114 303.388 384.6 295.089 384.388 287.322C384.268 282.914 384.569 278.735 385.56 275.175C386.549 271.62 388.207 268.745 390.755 266.841L390.759 266.838C391.102 266.579 391.604 266.407 392.324 266.363C393.043 266.32 393.913 266.411 394.918 266.616C396.933 267.029 399.301 267.862 401.768 268.756C401.965 268.827 402.162 268.898 402.359 268.97C404.608 269.786 406.912 270.622 408.964 271.138C410.084 271.419 411.167 271.616 412.157 271.657C413.139 271.697 414.1 271.587 414.926 271.19C418.262 269.602 421.397 267.781 424.45 266.009C425.864 265.188 427.261 264.378 428.651 263.605C433.082 261.143 437.543 259.01 442.645 257.898L442.651 257.896C449.653 256.33 454.669 250.45 459.297 244.53C459.779 243.914 460.256 243.296 460.732 242.681C462.579 240.295 464.399 237.943 466.326 235.814C468.743 233.144 471.268 230.896 474.103 229.454C474.744 229.134 475.758 229.229 477.295 229.988C478.783 230.723 480.482 231.94 482.295 233.348C483.015 233.908 483.761 234.505 484.513 235.107C485.607 235.981 486.711 236.864 487.761 237.655C489.534 238.989 491.313 240.184 492.92 240.801C494.276 241.389 495.729 241.578 496.981 240.768L496.992 240.76L497.003 240.753C505.142 235.17 514.915 236.479 523.622 241.065C526.306 242.507 529.177 244.413 531.649 248.023L531.704 248.103L531.758 248.156C531.763 248.164 531.774 248.18 531.792 248.208C531.824 248.256 531.895 248.37 532.001 248.492C535.3 253.447 537.041 259.925 537.433 265.988C537.828 272.114 536.834 277.59 534.905 280.557L534.901 280.564L534.897 280.57C532.982 283.613 530.438 285.311 527.654 286.893C527.229 287.135 526.796 287.375 526.358 287.618C523.964 288.944 521.421 290.353 519.249 292.559C517.917 293.911 516.714 295.404 515.722 297.012C513.026 301.288 511.328 306.354 510.073 311.469C509.211 314.983 508.546 318.577 507.918 321.976C507.634 323.511 507.357 325.006 507.073 326.435C506.717 328.201 506.386 330.182 506.034 332.291C505.312 336.618 504.5 341.48 503.194 346.116C501.248 353.017 498.317 358.936 493.373 361.468Z" stroke="#0070CC" stroke-width="2" stroke-miterlimit="10"/>
+<path d="M479.7 366.784L479.706 366.787C484.954 369.36 490.86 370.838 495.819 368.346C501.43 365.496 504.743 358.8 506.925 351.039C508.42 345.72 509.333 340.116 510.137 335.179C510.504 332.926 510.849 330.812 511.215 328.926M479.7 366.784L512.197 329.117M479.7 366.784C475.937 364.97 472.37 362.588 468.749 360.078C468.242 359.726 467.734 359.372 467.223 359.016C464.113 356.849 460.941 354.639 457.612 352.725C453.717 350.419 450.039 349.076 446.503 348.484L446.498 348.483C438.292 347.144 430.798 349.915 422.119 353.314L422.116 353.315C413.432 356.744 405.693 355.298 399.205 351.035C392.676 346.746 387.388 339.578 383.796 331.574L383.793 331.568C381.045 325.543 378.824 319.287 377.678 312.943C377.49 311.899 377.288 310.802 377.077 309.661C375.713 302.273 374.007 293.028 373.723 284.365C373.56 279.369 373.872 274.626 374.972 270.587C376.07 266.552 377.934 263.286 380.825 261.135C381.235 260.831 381.828 260.638 382.658 260.598C383.488 260.559 384.485 260.675 385.627 260.922C387.918 261.417 390.607 262.393 393.395 263.431C393.609 263.511 393.823 263.591 394.037 263.671C396.589 264.623 399.195 265.596 401.511 266.2C402.77 266.529 403.982 266.759 405.085 266.813C406.179 266.866 407.239 266.749 408.144 266.314C411.801 264.565 415.256 262.553 418.634 260.586C420.276 259.63 421.899 258.685 423.518 257.786C428.513 255.012 433.573 252.609 439.372 251.388L439.373 251.387C447.144 249.738 452.677 243.123 457.786 236.402C458.351 235.659 458.911 234.915 459.469 234.172C461.473 231.506 463.452 228.872 465.547 226.481C468.219 223.432 471.017 220.855 474.168 219.2L474.169 219.199C474.871 218.83 475.999 218.948 477.718 219.836C479.376 220.693 481.276 222.106 483.3 223.736C484.117 224.394 484.965 225.096 485.817 225.802C487.026 226.804 488.246 227.814 489.409 228.723C491.4 230.281 493.384 231.672 495.162 232.404L495.172 232.408C496.581 232.969 498.251 233.384 499.62 232.4M479.7 366.784L495.542 231.479M511.215 328.926L512.197 329.117M511.215 328.926C511.215 328.927 511.215 328.928 511.215 328.929L512.197 329.117M511.215 328.926C511.526 327.311 511.827 325.617 512.137 323.877C512.812 320.081 513.527 316.059 514.464 312.12C515.834 306.357 517.702 300.646 520.693 295.833L520.698 295.824C521.846 294.02 523.069 292.339 524.552 290.833M512.197 329.117C512.513 327.474 512.817 325.765 513.128 324.015C514.784 314.703 516.646 304.239 521.542 296.361C522.67 294.589 523.85 292.971 525.266 291.534M524.552 290.833C524.552 290.834 524.551 290.835 524.55 290.835L525.266 291.534M524.552 290.833C524.553 290.833 524.553 290.832 524.553 290.832L525.266 291.534M524.552 290.833C526.988 288.337 529.849 286.749 532.559 285.245C533.023 284.987 533.484 284.732 533.936 284.475C537.068 282.697 539.954 280.794 542.138 277.398M525.266 291.534C527.591 289.15 530.31 287.639 533.023 286.132C536.676 284.102 540.32 282.078 542.982 277.934M542.982 277.934L542.136 277.4C542.137 277.399 542.137 277.398 542.138 277.398M542.982 277.934C547.594 270.635 547.375 252.246 539.658 240.581M542.982 277.934L542.14 277.394C542.139 277.395 542.139 277.396 542.138 277.398M542.138 277.398C544.279 274.008 545.383 267.838 544.945 260.958C544.512 254.14 542.577 246.839 538.868 241.199M539.658 240.581L538.957 241.293C538.925 241.262 538.896 241.23 538.868 241.199M539.658 240.581C539.593 240.516 539.547 240.445 539.501 240.374C539.455 240.303 539.409 240.232 539.344 240.168C536.406 235.885 533.042 233.654 529.942 231.94M539.658 240.581L538.824 241.132C538.839 241.155 538.854 241.177 538.868 241.199M538.868 241.199C538.771 241.087 538.704 240.983 538.669 240.929L538.662 240.918C538.643 240.89 538.633 240.874 538.627 240.866M538.627 240.866L538.642 240.881C538.631 240.87 538.623 240.859 538.623 240.859C538.623 240.86 538.624 240.861 538.627 240.866ZM538.627 240.866L538.574 240.813L538.519 240.734C535.706 236.632 532.494 234.494 529.464 232.818M529.464 232.818C529.466 232.819 529.468 232.82 529.469 232.821L529.942 231.94M529.464 232.818C529.462 232.817 529.46 232.816 529.458 232.815L529.942 231.94M529.464 232.818C519.775 227.625 508.813 226.117 499.62 232.4M529.942 231.94C520.07 226.646 508.67 224.996 499.045 231.582M499.045 231.582L499.633 232.391C499.628 232.394 499.624 232.397 499.62 232.4M499.045 231.582C498.142 232.237 496.947 232.039 495.542 231.479M499.045 231.582L499.61 232.407C499.613 232.405 499.617 232.402 499.62 232.4M495.542 231.479C492.947 230.411 489.721 227.738 486.479 225.051C481.53 220.951 476.544 216.819 473.703 218.314C467.805 221.413 463.225 227.509 458.656 233.589C452.978 241.146 447.317 248.679 439.166 250.409L495.542 231.479Z" stroke="#0070CC" stroke-width="2" stroke-miterlimit="10"/>
+<path d="M480.229 373.374L480.232 373.375C486.031 376.282 492.712 378.005 498.181 375.253L498.186 375.251C504.516 372.11 508.212 364.637 510.62 356.018C512.272 350.105 513.267 343.873 514.141 338.406C514.538 335.917 514.91 333.586 515.308 331.516L515.308 331.516C515.67 329.637 516.02 327.664 516.38 325.634C517.111 321.511 517.883 317.155 518.885 312.886C520.386 306.494 522.43 300.158 525.714 294.812L525.717 294.808C526.984 292.768 528.411 290.943 529.966 289.257L529.974 289.248L529.983 289.239C532.659 286.475 535.813 284.727 538.817 283.062C539.335 282.775 539.849 282.49 540.356 282.203C543.832 280.231 547.053 278.106 549.48 274.28C551.877 270.502 553.087 263.625 552.585 255.985C552.088 248.406 549.919 240.295 545.79 234.061C545.734 233.996 545.691 233.934 545.658 233.886C545.611 233.814 545.57 233.743 545.546 233.702C545.527 233.668 545.515 233.649 545.507 233.636L545.47 233.6L545.416 233.521C542.257 228.922 538.674 226.477 535.343 224.654C524.579 218.867 512.42 217.166 502.326 224.107C500.896 225.1 499.103 224.772 497.486 224.048C495.544 223.199 493.37 221.62 491.178 219.851C489.911 218.828 488.582 217.695 487.264 216.571C486.312 215.759 485.365 214.952 484.451 214.194C482.222 212.347 480.124 210.739 478.292 209.757C476.395 208.741 475.127 208.58 474.326 209.002C470.836 210.859 467.753 213.753 464.819 217.17C462.524 219.846 460.358 222.793 458.17 225.773C457.556 226.609 456.941 227.447 456.32 228.282C450.729 235.805 444.687 243.168 436.13 244.953L436.127 244.954C429.593 246.298 423.96 248.983 418.419 252.084C416.636 253.081 414.852 254.129 413.048 255.188C409.287 257.397 405.44 259.656 401.339 261.618M480.229 373.374L400.906 260.716M480.229 373.374C476.072 371.303 472.143 368.63 468.182 365.856C467.746 365.551 467.31 365.244 466.873 364.937C463.357 362.467 459.793 359.963 456.064 357.843M480.229 373.374L455.566 358.71M401.339 261.618C401.339 261.618 401.338 261.618 401.338 261.619L400.906 260.716M401.339 261.618C401.34 261.618 401.34 261.617 401.341 261.617L400.906 260.716M401.339 261.618C400.357 262.091 399.197 262.216 397.99 262.15C396.775 262.083 395.434 261.82 394.036 261.445C391.472 260.758 388.584 259.66 385.747 258.581C385.499 258.487 385.251 258.392 385.004 258.299C381.897 257.12 378.891 256.01 376.329 255.442C375.051 255.16 373.931 255.023 372.996 255.066C372.06 255.108 371.38 255.326 370.904 255.683L370.9 255.686L370.9 255.686C367.663 258.085 365.598 261.741 364.398 266.251C363.196 270.766 362.881 276.067 363.096 281.642C363.46 291.094 365.336 301.156 366.846 309.252C367.118 310.715 367.379 312.114 367.617 313.433M400.906 260.716C397.94 262.147 392.038 259.903 386.092 257.642C379.658 255.196 373.173 252.73 370.304 254.883C357.464 264.397 362.575 291.809 365.865 309.452C366.137 310.911 366.397 312.303 366.633 313.613M367.617 313.433C367.617 313.432 367.617 313.432 367.616 313.431L366.633 313.613M367.617 313.433C367.617 313.434 367.617 313.435 367.617 313.436L366.633 313.613M367.617 313.433C368.924 320.505 371.386 327.462 374.375 334.19M366.633 313.613C367.959 320.788 370.452 327.824 373.462 334.597M373.462 334.597L374.374 334.189C374.374 334.189 374.375 334.19 374.375 334.19M373.462 334.597C381.538 352.641 397.293 367.279 417.465 359.341M373.462 334.597L374.375 334.191C374.375 334.191 374.375 334.19 374.375 334.19M374.375 334.19C378.364 343.101 384.217 351.092 391.478 355.877C398.697 360.635 407.338 362.251 417.097 358.411M417.465 359.341L417.097 358.412C417.097 358.412 417.097 358.411 417.097 358.411M417.465 359.341C427.085 355.532 435.053 352.721 443.702 354.184C447.468 354.804 451.344 356.252 455.566 358.71M417.465 359.341L417.099 358.411C417.098 358.411 417.098 358.411 417.097 358.411M417.097 358.411C426.692 354.612 434.908 351.682 443.868 353.198M455.566 358.71L456.06 357.841C456.061 357.841 456.062 357.842 456.064 357.843M455.566 358.71L456.069 357.846C456.067 357.845 456.065 357.844 456.064 357.843M443.868 353.198C443.867 353.198 443.866 353.198 443.864 353.198L443.702 354.184L443.869 353.198C443.869 353.198 443.868 353.198 443.868 353.198ZM443.868 353.198C447.774 353.841 451.762 355.339 456.064 357.843" stroke="#0070CC" stroke-width="2" stroke-miterlimit="10"/>
+<path d="M480.757 379.964L480.763 379.967C487.122 383.277 494.487 385.206 500.658 382.207L480.757 379.964ZM480.757 379.964C476.207 377.638 471.938 374.669 467.626 371.601C467.257 371.339 466.888 371.076 466.519 370.813C462.584 368.008 458.59 365.161 454.361 362.758C449.643 360.051 445.269 358.428 441.083 357.71C431.337 355.937 422.417 359.109 411.918 363.305L411.917 363.305C401.191 367.603 391.67 365.814 383.714 360.55C375.715 355.258 369.271 346.427 364.899 336.65L364.899 336.649C361.618 329.322 358.843 321.696 357.426 313.801L357.426 313.8C357.151 312.278 356.847 310.658 356.529 308.958C354.872 300.118 352.815 289.141 352.387 278.811C352.132 272.659 352.459 266.798 353.769 261.801C355.077 256.808 357.345 252.748 360.922 250.083C361.466 249.68 362.237 249.444 363.283 249.405C364.328 249.367 365.575 249.529 366.991 249.854C369.829 250.504 373.155 251.756 376.583 253.08C376.847 253.183 377.112 253.285 377.378 253.388C380.518 254.603 383.708 255.838 386.535 256.613C388.072 257.035 389.542 257.332 390.869 257.411C392.187 257.489 393.445 257.358 394.504 256.848C399.074 254.688 403.354 252.174 407.547 249.711C409.481 248.575 411.397 247.449 413.314 246.375C419.427 242.948 425.652 239.975 432.882 238.522L432.685 237.541L432.882 238.522C442.242 236.64 448.792 228.528 454.862 220.193C455.545 219.255 456.223 218.314 456.898 217.375C459.264 214.086 461.607 210.829 464.095 207.873C467.288 204.079 470.655 200.863 474.486 198.805L474.491 198.802C475.382 198.316 476.789 198.509 478.875 199.656C480.889 200.763 483.197 202.572 485.643 204.643C486.653 205.498 487.697 206.407 488.746 207.321C490.188 208.576 491.638 209.84 493.023 210.982C495.428 212.966 497.801 214.729 499.906 215.675C501.721 216.497 503.607 216.881 505.193 215.854L505.205 215.847L505.216 215.839C516.367 208.189 529.746 210.162 541.479 216.488C545.119 218.462 549.043 221.138 552.545 226.23L552.559 226.25M480.757 379.964L552.559 226.25M552.559 226.25L552.574 226.269M552.559 226.25L552.574 226.269M552.574 226.269C552.611 226.318 552.636 226.359 552.688 226.45L552.693 226.458C552.742 226.543 552.814 226.667 552.919 226.807C557.459 233.693 559.857 242.658 560.413 251.024C560.973 259.437 559.657 267.019 557.005 271.187C554.322 275.405 550.764 277.754 546.944 279.93C546.396 280.242 545.839 280.552 545.278 280.865C541.978 282.703 538.529 284.625 535.606 287.659C533.79 289.451 532.256 291.498 530.895 293.735C527.263 299.592 525.023 306.559 523.394 313.591C522.298 318.321 521.467 323.142 520.683 327.694C520.304 329.89 519.937 332.023 519.555 334.053M552.574 226.269L519.555 334.053M519.555 334.053C519.104 336.369 518.683 338.994 518.232 341.804C517.275 347.768 516.185 354.564 514.387 361.016C511.739 370.521 507.667 378.788 500.659 382.207L519.555 334.053Z" stroke="#0070CC" stroke-width="2" stroke-miterlimit="10"/>
+<path d="M481.286 386.554L481.282 386.552C476.34 383.969 471.71 380.712 467.047 377.342C466.57 376.998 466.093 376.652 465.615 376.306C461.435 373.278 457.2 370.211 452.724 367.576L452.719 367.574C447.661 364.634 442.969 362.855 438.412 362.087C427.79 360.272 418.256 363.652 406.823 368.167L406.819 368.168C395.02 372.877 384.589 370.9 375.897 365.131C367.162 359.333 360.153 349.677 355.398 339.032L355.397 339.029C351.803 331.04 348.864 322.685 347.285 314.058C346.973 312.339 346.627 310.503 346.263 308.574C344.446 298.95 342.193 287.015 341.696 275.777C341.397 269.038 341.735 262.613 343.153 257.136C344.57 251.665 347.044 247.212 350.966 244.299C351.579 243.85 352.442 243.595 353.596 243.558C354.751 243.522 356.124 243.709 357.677 244.072C360.788 244.799 364.432 246.186 368.178 247.651C368.479 247.769 368.781 247.887 369.083 248.005C372.506 249.346 375.974 250.704 379.048 251.566C380.724 252.035 382.322 252.369 383.763 252.466C385.195 252.563 386.552 252.432 387.691 251.896L387.697 251.893C392.567 249.556 397.136 246.854 401.614 244.206C403.81 242.908 405.984 241.622 408.162 240.399C414.825 236.655 421.63 233.418 429.559 231.855L429.56 231.855C439.664 229.851 446.729 221.013 453.285 211.886C454.04 210.834 454.789 209.777 455.537 208.723C458.072 205.147 460.585 201.601 463.253 198.379C466.702 194.213 470.343 190.673 474.49 188.399C475.481 187.86 477.032 188.102 479.298 189.384C481.489 190.624 483.999 192.637 486.653 194.935C487.756 195.891 488.895 196.905 490.038 197.923C491.596 199.311 493.162 200.706 494.661 201.972C497.267 204.173 499.831 206.127 502.101 207.191C504.044 208.142 506.143 208.579 507.801 207.411C520.009 199.056 534.581 201.229 547.298 208.165C551.26 210.36 555.498 213.248 559.324 218.768C559.462 219.091 559.664 219.355 559.787 219.515L559.791 219.521C564.763 227.038 567.38 236.836 567.994 245.972C568.611 255.158 567.19 263.449 564.32 267.994L564.319 267.995C561.392 272.642 557.519 275.206 553.366 277.571C552.76 277.916 552.145 278.258 551.526 278.603C547.942 280.598 544.201 282.679 541.01 285.988C539.013 288.016 537.38 290.27 535.898 292.624L535.894 292.631L535.89 292.637C531.978 299.065 529.569 306.675 527.812 314.347C526.654 319.404 525.768 324.552 524.929 329.423C524.499 331.919 524.082 334.342 523.647 336.644C523.184 339.082 522.748 341.841 522.282 344.796C521.244 351.367 520.054 358.905 518.067 366.043C515.182 376.409 510.727 385.457 503.048 389.192L503.047 389.192C496.368 392.45 488.204 390.203 481.286 386.554Z" stroke="#0070CC" stroke-width="2" stroke-miterlimit="10"/>
+<path d="M481.807 393.141L481.807 393.141C476.47 390.3 471.486 386.771 466.462 383.144C466.08 382.868 465.697 382.591 465.314 382.314C460.681 378.965 455.988 375.572 450.994 372.671L450.99 372.668C445.513 369.523 440.541 367.674 435.607 366.779L435.601 366.778C424.224 364.786 413.967 368.326 401.62 373.24L401.614 373.242C388.809 378.423 377.498 376.272 368.08 369.994C358.617 363.687 351.037 353.185 345.899 341.673L345.897 341.67C341.958 332.925 338.705 323.902 337.043 314.531L337.043 314.531C336.674 312.452 336.255 310.213 335.812 307.851C333.886 297.567 331.523 284.949 330.964 273.04C330.621 265.725 330.964 258.743 332.484 252.786C334.003 246.832 336.676 241.977 340.941 238.796C341.609 238.299 342.551 238.02 343.808 237.983C345.064 237.946 346.557 238.153 348.244 238.553C351.623 239.354 355.586 240.876 359.657 242.479C359.979 242.606 360.302 242.733 360.625 242.861C364.35 244.331 368.123 245.82 371.462 246.765C373.28 247.279 375.009 247.645 376.564 247.754C378.11 247.862 379.566 247.723 380.781 247.15L380.783 247.149C386.121 244.614 391.122 241.658 396.032 238.756C398.36 237.38 400.666 236.017 402.979 234.716C410.214 230.646 417.612 227.121 426.237 225.449C431.708 224.395 436.326 221.462 440.443 217.576C444.552 213.698 448.209 208.825 451.748 203.825C452.565 202.671 453.374 201.511 454.182 200.354C456.895 196.469 459.588 192.613 462.449 189.109C466.157 184.568 470.082 180.705 474.569 178.229C475.097 177.941 475.771 177.857 476.652 178.038C477.544 178.22 478.587 178.663 479.767 179.346C482.129 180.713 484.839 182.921 487.702 185.435C488.897 186.484 490.128 187.595 491.364 188.711C493.043 190.226 494.731 191.749 496.348 193.135C499.167 195.551 501.93 197.692 504.368 198.871L504.377 198.876L504.387 198.88C506.479 199.84 508.602 200.361 510.418 199.154L510.429 199.146C523.693 190.079 539.411 192.549 553.18 200.003C557.55 202.399 562.157 205.594 566.298 211.531C566.437 211.853 566.638 212.116 566.761 212.276L566.764 212.28C572.144 220.483 574.975 231.097 575.64 240.985C576.309 250.921 574.777 259.902 571.661 264.88C568.517 269.902 564.31 272.689 559.803 275.262C559.151 275.634 558.49 276.003 557.825 276.374C553.931 278.548 549.878 280.811 546.44 284.395L546.432 284.403C544.347 286.628 542.587 289.004 540.995 291.58L540.994 291.583C536.734 298.522 534.128 306.764 532.243 315.077C530.991 320.597 530.046 326.211 529.153 331.514C528.705 334.174 528.27 336.757 527.817 339.209C527.323 341.831 526.86 344.804 526.363 347.993C525.257 355.094 523.984 363.263 521.841 370.995C518.729 382.218 513.892 392.044 505.492 396.071L505.487 396.073C498.14 399.646 489.275 397.123 481.807 393.141Z" stroke="#0070CC" stroke-width="2" stroke-miterlimit="10"/>
+<path d="M482.334 399.731L482.33 399.729C476.6 396.631 471.257 392.813 465.855 388.911C465.632 388.75 465.408 388.588 465.184 388.426C460.02 384.694 454.785 380.911 449.165 377.717C443.312 374.257 437.872 372.311 432.663 371.343L432.656 371.342C420.524 369.172 409.565 372.952 396.313 378.263L396.311 378.264C382.511 383.829 370.31 381.485 360.154 374.7C349.954 367.886 341.791 356.565 336.269 344.188C332.09 334.741 328.597 325.018 326.773 314.919L326.773 314.917C326.379 312.751 325.934 310.421 325.465 307.963C323.34 296.842 320.718 283.112 320.077 270.161C319.685 262.261 320.036 254.716 321.663 248.28C323.289 241.848 326.168 236.599 330.778 233.17C331.516 232.627 332.55 232.33 333.916 232.297C335.282 232.265 336.902 232.499 338.727 232.94C342.382 233.824 346.665 235.488 351.056 237.237C351.395 237.372 351.736 237.507 352.076 237.643C356.105 239.25 360.178 240.875 363.781 241.908C365.738 242.47 367.596 242.869 369.264 242.99C370.922 243.111 372.476 242.964 373.767 242.353L373.769 242.353C379.51 239.621 384.873 236.433 390.142 233.3C392.64 231.814 395.116 230.342 397.602 228.936C405.375 224.542 413.347 220.734 422.709 218.94C428.571 217.818 433.518 214.669 437.927 210.485C442.329 206.309 446.243 201.054 450.03 195.654C450.926 194.377 451.815 193.092 452.701 191.811C455.581 187.646 458.44 183.511 461.477 179.748C465.441 174.835 469.641 170.645 474.444 167.954C475.033 167.627 475.775 167.535 476.732 167.731C477.701 167.93 478.829 168.415 480.101 169.16C482.648 170.651 485.565 173.061 488.641 175.8C489.936 176.953 491.27 178.176 492.609 179.402C494.4 181.042 496.198 182.689 497.921 184.189C500.944 186.82 503.901 189.146 506.503 190.422C508.776 191.537 511.032 191.979 512.911 190.763L512.922 190.756L512.934 190.748C527.1 181.027 544.089 183.668 558.846 191.736L558.849 191.737C563.658 194.349 568.625 197.794 573.047 204.303L573.062 204.326L573.079 204.348C573.141 204.43 573.214 204.534 573.302 204.661L573.308 204.67C573.383 204.776 573.47 204.902 573.555 205.015C579.368 213.85 582.421 225.3 583.144 235.96C583.87 246.668 582.233 256.358 578.898 261.714L578.898 261.714C575.511 267.165 570.969 270.174 566.118 272.94C565.412 273.343 564.698 273.741 563.979 274.142C559.792 276.475 555.447 278.897 551.769 282.747L551.763 282.753C549.549 285.109 547.608 287.722 545.912 290.511L545.909 290.516C541.41 298.013 538.654 306.89 536.652 315.837C535.348 321.659 534.352 327.576 533.409 333.178C532.907 336.161 532.42 339.054 531.909 341.797L531.909 341.798C531.403 344.543 530.925 347.65 530.412 350.983C529.226 358.689 527.854 367.601 525.521 376.022C522.173 388.105 516.953 398.711 507.883 403.055C499.99 406.82 490.366 404.118 482.334 399.731Z" stroke="#0070CC" stroke-width="2" stroke-miterlimit="10"/>
+<path d="M482.854 406.317L482.853 406.316C476.732 402.963 471.049 398.849 465.326 394.637C464.948 394.359 464.569 394.079 464.19 393.8C458.854 389.869 453.457 385.892 447.678 382.48L447.674 382.478C441.409 378.815 435.655 376.713 430.074 375.694L430.07 375.694C417.108 373.375 405.351 377.34 391.263 383.024L391.262 383.024C376.401 389.039 363.304 386.544 352.42 379.273C341.491 371.972 332.763 359.827 326.845 346.543C322.377 336.504 318.617 326.003 316.633 315.177C316.202 312.81 315.713 310.256 315.196 307.559C312.922 295.688 310.115 281.031 309.409 267.198C308.976 258.716 309.338 250.609 311.074 243.694C312.808 236.782 315.894 231.139 320.852 227.462L320.852 227.462C321.657 226.864 322.78 226.542 324.254 226.509C325.727 226.476 327.471 226.733 329.433 227.214C333.361 228.177 337.965 229.987 342.678 231.885C343.051 232.035 343.424 232.186 343.798 232.337C348.115 234.079 352.475 235.838 356.329 236.961C358.426 237.572 360.414 238.007 362.195 238.143C363.966 238.278 365.618 238.125 366.986 237.477L366.987 237.476C373.094 234.566 378.807 231.172 384.426 227.833C387.14 226.22 389.833 224.62 392.537 223.094C400.884 218.385 409.457 214.306 419.518 212.402L419.519 212.402C425.752 211.219 431.008 207.86 435.693 203.383C440.37 198.914 444.527 193.283 448.553 187.488C449.509 186.111 450.458 184.726 451.404 183.344C454.462 178.878 457.501 174.439 460.731 170.397C464.954 165.111 469.436 160.594 474.575 157.68C475.203 157.33 475.997 157.237 477.022 157.457C478.059 157.679 479.265 158.21 480.623 159.019C483.341 160.637 486.458 163.242 489.743 166.197C491.129 167.443 492.555 168.762 493.986 170.085C495.898 171.854 497.818 173.63 499.661 175.249C502.893 178.092 506.047 180.604 508.816 181.996L508.824 182C511.159 183.145 513.662 183.733 515.621 182.373C530.845 171.945 549.027 174.786 564.771 183.465L564.779 183.469C569.896 186.232 575.201 189.906 579.962 196.901C580.061 197.054 580.153 197.187 580.236 197.305C580.322 197.429 580.398 197.539 580.48 197.665L580.483 197.67C586.704 207.155 590.002 219.448 590.802 230.884C591.605 242.358 589.882 252.747 586.293 258.491L586.292 258.492C582.649 264.333 577.767 267.546 572.568 270.507C571.847 270.918 571.117 271.326 570.383 271.735C565.867 274.254 561.191 276.863 557.25 281.05L557.244 281.057C554.858 283.64 552.788 286.382 550.984 289.387C546.153 297.431 543.201 306.939 541.066 316.517C539.659 322.832 538.596 329.24 537.592 335.297C537.076 338.405 536.576 341.421 536.052 344.284L536.052 344.286C535.526 347.19 535.029 350.478 534.495 354.006C533.243 362.291 531.791 371.898 529.291 380.965C525.719 393.916 520.116 405.3 510.325 409.935L510.322 409.937C501.76 414.016 491.436 411.038 482.854 406.317Z" stroke="#0070CC" stroke-width="2" stroke-miterlimit="10"/>
+<path d="M540.172 346.948L540.171 346.952C539.621 350.002 539.1 353.457 538.54 357.166C537.206 366.007 535.654 376.294 532.974 386C529.163 399.802 523.177 411.967 512.715 416.919C503.609 421.188 492.607 418.007 483.375 412.903C476.861 409.293 470.819 404.889 464.737 400.428L464.263 400.08C458.356 395.745 452.398 391.374 445.999 387.728C439.398 383.837 433.332 381.581 427.384 380.513L427.381 380.512C413.696 378.097 401.217 382.22 386.22 388.302C370.324 394.714 356.337 392.025 344.726 384.245C333.069 376.434 323.777 363.463 317.476 349.312L317.476 349.311C312.691 338.601 308.694 327.404 306.625 315.828L306.625 315.827C306.139 313.117 305.579 310.179 304.986 307.068C302.591 294.499 299.659 279.113 298.889 264.572C298.41 255.51 298.776 246.843 300.613 239.447C302.449 232.054 305.733 226.008 311.032 222.062L311.035 222.06C311.896 221.414 313.098 221.07 314.671 221.036C316.243 221.003 318.105 221.282 320.197 221.801C324.385 222.841 329.299 224.788 334.326 226.828C334.718 226.987 335.111 227.146 335.504 227.306C340.116 229.181 344.772 231.075 348.886 232.284C351.122 232.941 353.237 233.409 355.13 233.558C357.014 233.706 358.763 233.544 360.206 232.859L360.208 232.858C366.718 229.752 372.802 226.122 378.788 222.549C381.677 220.826 384.543 219.115 387.424 217.484C396.319 212.446 405.466 208.085 416.225 206.072C422.856 204.84 428.438 201.271 433.409 196.496C438.372 191.728 442.776 185.708 447.042 179.506C448.058 178.028 449.066 176.541 450.072 175.056C453.309 170.28 456.528 165.53 459.952 161.206C464.435 155.544 469.202 150.702 474.682 147.586L474.683 147.585C475.361 147.199 476.213 147.099 477.305 147.336C478.409 147.575 479.69 148.147 481.132 149.018C484.015 150.761 487.323 153.565 490.81 156.745C492.26 158.066 493.749 159.461 495.244 160.862C497.298 162.786 499.363 164.72 501.35 166.487C504.787 169.544 508.141 172.243 511.096 173.746C513.634 175.122 516.19 175.661 518.292 174.269L518.298 174.265L518.304 174.261C534.585 163.123 553.912 166.262 570.704 175.457C576.167 178.453 581.814 182.361 586.918 189.852L586.932 189.874L586.949 189.895C587.077 190.064 587.238 190.311 587.429 190.607L587.431 190.61C594.047 200.742 597.565 213.87 598.424 226.078C599.285 238.324 597.456 249.419 593.612 255.553L593.609 255.557C589.723 261.828 584.525 265.256 578.992 268.408C578.213 268.851 577.425 269.29 576.633 269.732C571.836 272.406 566.871 275.173 562.664 279.629C560.109 282.279 557.935 285.236 556.034 288.442C550.895 296.982 547.767 307.114 545.505 317.33C544.039 323.952 542.925 330.677 541.87 337.042C541.302 340.472 540.751 343.799 540.172 346.948Z" stroke="#0070CC" stroke-width="2" stroke-miterlimit="10"/>
+<path d="M545.299 349.614C544.729 352.79 544.184 356.421 543.597 360.337C540.189 383.067 535.335 415.436 515.581 424.705C505.346 429.505 493.255 425.837 483.408 420.362C476.136 416.324 469.425 411.359 462.71 406.393C456.578 401.857 450.443 397.319 443.876 393.482C421.024 380.144 404.328 384.813 381.495 394.094L545.299 349.614ZM545.299 349.614C545.911 346.252 546.489 342.725 547.083 339.098C550.526 318.089 554.521 293.713 568.848 278.538M545.299 349.614L568.848 278.538M381.119 393.167C392.538 388.526 402.552 384.98 412.612 384.308C422.717 383.633 432.801 385.86 444.38 392.619L444.38 392.619C450.995 396.484 457.17 401.051 463.291 405.579C463.587 405.798 463.883 406.017 464.179 406.235C470.608 410.988 477.002 415.661 483.893 419.488L483.894 419.488C493.676 424.927 505.38 428.385 515.156 423.8C526.301 418.571 532.663 405.607 536.705 390.924C539.548 380.596 541.189 369.648 542.596 360.262C543.186 356.325 543.735 352.663 544.315 349.437L544.315 349.435C544.921 346.107 545.495 342.601 546.088 338.986C547.515 330.278 549.046 320.936 551.363 311.937C554.647 299.185 559.549 286.931 568.12 277.853C568.121 277.853 568.121 277.852 568.121 277.852L568.848 278.538M381.119 393.167L577.086 166.233C582.948 169.431 589.103 173.741 594.665 181.895C609.567 203.673 610.384 239.023 601.827 252.785C596.944 260.638 590.188 264.417 583.408 268.21C578.306 271.065 573.19 273.927 568.848 278.538M381.119 393.167C364.204 400.013 349.329 397.132 336.977 388.835C324.58 380.508 314.697 366.697 307.974 351.692L307.061 352.101L307.974 351.692C302.874 340.313 298.61 328.338 296.354 315.957C295.831 313.036 295.224 309.859 294.581 306.488C292.044 293.201 288.935 276.914 288.1 261.509C287.578 251.86 287.953 242.624 289.896 234.743C291.839 226.865 295.328 220.42 300.973 216.227L300.976 216.225C301.896 215.537 303.181 215.177 304.86 215.15C306.536 215.123 308.522 215.43 310.75 215.991C315.211 217.115 320.447 219.204 325.8 221.387C326.196 221.549 326.593 221.711 326.99 221.873C331.924 223.889 336.904 225.924 341.299 227.223C343.677 227.926 345.923 228.426 347.931 228.587C349.928 228.746 351.776 228.576 353.294 227.854L353.296 227.853C360.171 224.568 366.606 220.732 372.943 216.954C376.048 215.102 379.129 213.265 382.228 211.513C391.698 206.16 401.445 201.528 412.903 199.405L381.119 393.167Z" stroke="#0070CC" stroke-width="2" stroke-miterlimit="10"/>
+</g>
+</svg>
diff --git a/public/img/poweredby/videos/021.png b/public/img/poweredby/videos/021.png
new file mode 100644
index 0000000..c7269ba
--- /dev/null
+++ b/public/img/poweredby/videos/021.png
Binary files differ
diff --git a/public/img/poweredby/videos/021.svg b/public/img/poweredby/videos/021.svg
new file mode 100644
index 0000000..8fdd8c2
--- /dev/null
+++ b/public/img/poweredby/videos/021.svg
@@ -0,0 +1,23 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="335" fill="#0070CC"/>
+<mask id="mask0_53:37" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="269" y="68" width="273" height="267">
+<rect x="269" y="68" width="273" height="267" fill="#0070CC"/>
+</mask>
+<g mask="url(#mask0_53:37)">
+<path d="M266 370.401L558.1 71" stroke="url(#paint0_linear_53:37)" stroke-miterlimit="10"/>
+<path d="M315.279 356.788C332.709 356.788 346.839 342.658 346.839 325.228C346.839 307.798 332.709 293.668 315.279 293.668C297.849 293.668 283.719 307.798 283.719 325.228C283.719 342.658 297.849 356.788 315.279 356.788Z" stroke="white" stroke-miterlimit="10"/>
+<path d="M335.888 344.011C358.022 344.011 375.965 326.068 375.965 303.934C375.965 281.8 358.022 263.857 335.888 263.857C313.754 263.857 295.811 281.8 295.811 303.934C295.811 326.068 313.754 344.011 335.888 344.011Z" stroke="white" stroke-miterlimit="10"/>
+<path d="M356.497 331.312C383.377 331.312 405.168 309.521 405.168 282.641C405.168 255.761 383.377 233.97 356.497 233.97C329.617 233.97 307.826 255.761 307.826 282.641C307.826 309.521 329.617 331.312 356.497 331.312Z" stroke="white" stroke-miterlimit="10"/>
+<path d="M377.182 318.536C408.766 318.536 434.37 292.932 434.37 261.348C434.37 229.764 408.766 204.16 377.182 204.16C345.598 204.16 319.994 229.764 319.994 261.348C319.994 292.932 345.598 318.536 377.182 318.536Z" stroke="white" stroke-miterlimit="10"/>
+<path d="M397.791 305.836C434.121 305.836 463.572 276.384 463.572 240.054C463.572 203.724 434.121 174.273 397.791 174.273C361.461 174.273 332.01 203.724 332.01 240.054C332.01 276.384 361.461 305.836 397.791 305.836Z" stroke="white" stroke-miterlimit="10"/>
+<path d="M418.476 293.06C459.51 293.06 492.775 259.795 492.775 218.761C492.775 177.727 459.51 144.462 418.476 144.462C377.442 144.462 344.177 177.727 344.177 218.761C344.177 259.795 377.442 293.06 418.476 293.06Z" stroke="white" stroke-miterlimit="10"/>
+<path d="M439.085 280.36C484.865 280.36 521.977 243.248 521.977 197.467C521.977 151.687 484.865 114.575 439.085 114.575C393.305 114.575 356.193 151.687 356.193 197.467C356.193 243.248 393.305 280.36 439.085 280.36Z" stroke="white" stroke-miterlimit="10"/>
+<path d="M459.694 267.584C510.178 267.584 551.104 226.658 551.104 176.174C551.104 125.69 510.178 84.7646 459.694 84.7646C409.21 84.7646 368.284 125.69 368.284 176.174C368.284 226.658 409.21 267.584 459.694 267.584Z" stroke="white" stroke-miterlimit="10"/>
+</g>
+<defs>
+<linearGradient id="paint0_linear_53:37" x1="412.05" y1="71" x2="412.05" y2="370.401" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+</defs>
+</svg>
diff --git a/public/img/poweredby/videos/022.png b/public/img/poweredby/videos/022.png
new file mode 100644
index 0000000..308d61f
--- /dev/null
+++ b/public/img/poweredby/videos/022.png
Binary files differ
diff --git a/public/img/poweredby/videos/022.svg b/public/img/poweredby/videos/022.svg
new file mode 100644
index 0000000..5862ac4
--- /dev/null
+++ b/public/img/poweredby/videos/022.svg
@@ -0,0 +1,60 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="335" fill="#91C2EA"/>
+<mask id="mask0_26:33" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="253" y="0" width="289" height="335">
+<rect x="253" width="289" height="335" fill="#91C2EA"/>
+</mask>
+<g mask="url(#mask0_26:33)">
+<path d="M331.288 148.182C330.66 145.03 333.124 142.112 336.337 142.205L438.901 145.18C441.23 145.247 443.204 146.914 443.659 149.199L462.924 245.752C463.552 248.904 461.088 251.822 457.875 251.729L355.311 248.754C352.982 248.687 351.008 247.02 350.553 244.735L331.288 148.182Z" fill="url(#paint0_linear_26:33)"/>
+<path d="M373.632 186.64C373.003 183.488 375.468 180.57 378.68 180.663L481.244 183.638C483.573 183.705 485.547 185.372 486.003 187.657L505.267 284.21C505.896 287.362 503.431 290.28 500.219 290.187L397.654 287.212C395.325 287.145 393.352 285.478 392.896 283.193L373.632 186.64Z" fill="url(#paint1_linear_26:33)"/>
+<path d="M436.762 227.069C436.134 223.918 438.598 221 441.811 221.093L544.375 224.067C546.704 224.135 548.678 225.802 549.133 228.087L568.398 324.64C569.026 327.792 566.562 330.709 563.349 330.616L460.785 327.642C458.456 327.575 456.482 325.907 456.027 323.623L436.762 227.069Z" fill="url(#paint2_linear_26:33)"/>
+<path d="M485.386 256.117C484.757 252.966 487.222 250.048 490.434 250.141L592.998 253.115C595.327 253.183 597.301 254.85 597.757 257.135L617.021 353.688C617.65 356.839 615.185 359.757 611.973 359.664L509.408 356.69C507.079 356.622 505.106 354.955 504.65 352.67L485.386 256.117Z" fill="url(#paint3_linear_26:33)"/>
+<path d="M286.979 120.313C286.35 117.161 288.815 114.243 292.027 114.336L394.592 117.31C396.921 117.378 398.894 119.045 399.35 121.33L418.614 217.883C419.243 221.035 416.778 223.953 413.566 223.859L311.002 220.885C308.673 220.818 306.699 219.151 306.243 216.866L286.979 120.313Z" fill="url(#paint4_linear_26:33)"/>
+<path d="M286 198.5L466 378.5" stroke="url(#paint5_linear_26:33)"/>
+<path d="M271 159L451 339" stroke="url(#paint6_linear_26:33)"/>
+<path d="M480 121L660 301" stroke="url(#paint7_linear_26:33)"/>
+<path d="M439 68L619 248" stroke="url(#paint8_linear_26:33)"/>
+<path d="M472 145L652 325" stroke="url(#paint9_linear_26:33)"/>
+</g>
+<defs>
+<linearGradient id="paint0_linear_26:33" x1="383.997" y1="131.262" x2="410.215" y2="262.672" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint1_linear_26:33" x1="426.34" y1="169.72" x2="452.559" y2="301.13" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint2_linear_26:33" x1="489.471" y1="210.15" x2="515.689" y2="341.56" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint3_linear_26:33" x1="538.094" y1="239.198" x2="564.313" y2="370.608" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint4_linear_26:33" x1="339.687" y1="103.393" x2="365.906" y2="234.803" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint5_linear_26:33" x1="376" y1="198.5" x2="376" y2="378.5" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint6_linear_26:33" x1="361" y1="159" x2="361" y2="339" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint7_linear_26:33" x1="570" y1="121" x2="570" y2="301" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint8_linear_26:33" x1="529" y1="68" x2="529" y2="248" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+<linearGradient id="paint9_linear_26:33" x1="562" y1="145" x2="562" y2="325" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="white" stop-opacity="0"/>
+</linearGradient>
+</defs>
+</svg>
diff --git a/public/img/poweredby/videos/023.png b/public/img/poweredby/videos/023.png
new file mode 100644
index 0000000..489d5e1
--- /dev/null
+++ b/public/img/poweredby/videos/023.png
Binary files differ
diff --git a/public/img/poweredby/videos/023.svg b/public/img/poweredby/videos/023.svg
new file mode 100644
index 0000000..3de9eab
--- /dev/null
+++ b/public/img/poweredby/videos/023.svg
@@ -0,0 +1,110 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="335" fill="#91C2EA"/>
+<mask id="mask0_26:44" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="219" y="95" width="323" height="240">
+<rect x="219" y="95" width="323" height="240" fill="#91C2EA"/>
+</mask>
+<g mask="url(#mask0_26:44)">
+<mask id="mask1_26:44" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="311" y="103" width="245" height="233">
+<rect x="311" y="103" width="244.7" height="232.273" fill="#0070CC"/>
+</mask>
+<g mask="url(#mask1_26:44)">
+<path d="M405.537 109.691V229.95" stroke="white" stroke-opacity="0.2" stroke-miterlimit="10"/>
+<path d="M420.008 116.299V229.95" stroke="white" stroke-opacity="0.2" stroke-width="1.6364" stroke-miterlimit="10"/>
+<path d="M434.479 122.907V229.95" stroke="white" stroke-opacity="0.2" stroke-width="2.2727" stroke-miterlimit="10"/>
+<path d="M448.95 129.448V229.95" stroke="white" stroke-opacity="0.2" stroke-width="2.9091" stroke-miterlimit="10"/>
+<path d="M463.486 136.055V229.95" stroke="white" stroke-opacity="0.2" stroke-width="3.5455" stroke-miterlimit="10"/>
+<path d="M477.957 142.663V229.95" stroke="white" stroke-opacity="0.2" stroke-width="4.1818" stroke-miterlimit="10"/>
+<path d="M492.428 149.271V229.95" stroke="white" stroke-opacity="0.2" stroke-width="4.8182" stroke-miterlimit="10"/>
+<path d="M506.899 155.878V229.95" stroke="white" stroke-opacity="0.2" stroke-width="5.4545" stroke-miterlimit="10"/>
+<path d="M521.369 162.486V229.95" stroke="white" stroke-opacity="0.2" stroke-width="6.0909" stroke-miterlimit="10"/>
+<path d="M535.84 169.094V229.95" stroke="white" stroke-opacity="0.2" stroke-width="6.7273" stroke-miterlimit="10"/>
+<path d="M498.837 387.74V241.711" stroke="white" stroke-opacity="0.2" stroke-miterlimit="10"/>
+<path d="M482.45 379.811V241.711" stroke="white" stroke-opacity="0.2" stroke-width="1.6364" stroke-miterlimit="10"/>
+<path d="M466.063 371.948V241.711" stroke="white" stroke-opacity="0.2" stroke-width="2.2727" stroke-miterlimit="10"/>
+<path d="M449.676 364.019V241.711" stroke="white" stroke-opacity="0.2" stroke-width="2.9091" stroke-miterlimit="10"/>
+<path d="M433.289 356.09V241.711" stroke="white" stroke-opacity="0.2" stroke-width="3.5455" stroke-miterlimit="10"/>
+<path d="M416.902 348.16V241.711" stroke="white" stroke-opacity="0.2" stroke-width="4.1818" stroke-miterlimit="10"/>
+<path d="M400.515 340.297V241.711" stroke="white" stroke-opacity="0.2" stroke-width="4.8182" stroke-miterlimit="10"/>
+<path d="M384.195 332.368V241.711" stroke="white" stroke-opacity="0.2" stroke-width="5.4545" stroke-miterlimit="10"/>
+<path d="M367.808 324.439V241.711" stroke="white" stroke-opacity="0.2" stroke-width="6.0909" stroke-miterlimit="10"/>
+<path d="M351.421 316.51V241.711" stroke="white" stroke-opacity="0.2" stroke-width="6.7273" stroke-miterlimit="10"/>
+<path d="M335.034 308.581V241.711" stroke="white" stroke-opacity="0.2" stroke-width="7.3636" stroke-miterlimit="10"/>
+<path d="M318.647 300.718V241.711" stroke="white" stroke-opacity="0.2" stroke-width="8" stroke-miterlimit="10"/>
+<path d="M381.75 164.402V314.726" stroke="#0070CC" stroke-miterlimit="10"/>
+<path d="M398.467 172.2V318.162" stroke="#0070CC" stroke-width="1.7778" stroke-miterlimit="10"/>
+<path d="M415.118 179.931V321.664" stroke="#0070CC" stroke-width="2.5556" stroke-miterlimit="10"/>
+<path d="M431.77 187.728V325.1" stroke="#0070CC" stroke-width="3.3333" stroke-miterlimit="10"/>
+<path d="M448.421 195.458V328.602" stroke="#0070CC" stroke-width="4.1111" stroke-miterlimit="10"/>
+<path d="M465.072 203.255V332.038" stroke="#0070CC" stroke-width="4.8889" stroke-miterlimit="10"/>
+<path d="M481.723 210.986V335.54" stroke="#0070CC" stroke-width="5.6667" stroke-miterlimit="10"/>
+<path d="M498.375 218.783V338.976" stroke="#0070CC" stroke-width="6.4444" stroke-miterlimit="10"/>
+<path d="M515.026 226.514V342.412" stroke="#0070CC" stroke-width="7.2222" stroke-miterlimit="10"/>
+<path d="M531.743 234.312V345.915" stroke="#0070CC" stroke-width="8" stroke-miterlimit="10"/>
+</g>
+<g filter="url(#filter0_bii_26:44)">
+<path d="M269 140.16C269 133.829 275.364 129.477 281.264 131.773L440.264 193.657C443.722 195.002 446 198.333 446 202.044V361.84C446 368.171 439.636 372.523 433.736 370.227L274.736 308.343C271.278 306.998 269 303.667 269 299.956V140.16Z" fill="white" fill-opacity="0.1"/>
+</g>
+<g filter="url(#filter1_bii_26:44)">
+<path d="M282 171.157C282 164.826 288.362 160.474 294.262 162.769L391.262 200.491C394.721 201.836 397 205.167 397 208.879V305.843C397 312.174 390.638 316.526 384.738 314.231L287.738 276.509C284.279 275.164 282 271.833 282 268.121V171.157Z" fill="white" fill-opacity="0.1"/>
+</g>
+<g filter="url(#filter2_bii_26:44)">
+<path d="M383 215.188C383 208.849 389.378 204.496 395.28 206.807L421.28 216.983C424.73 218.334 427 221.66 427 225.364V250.812C427 257.151 420.622 261.504 414.72 259.193L388.72 249.017C385.27 247.666 383 244.34 383 240.636V215.188Z" fill="white" fill-opacity="0.1"/>
+</g>
+</g>
+<defs>
+<filter id="filter0_bii_26:44" x="261.1" y="123.252" width="192.8" height="255.496" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feGaussianBlur in="BackgroundImage" stdDeviation="3.95"/>
+<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_26:44"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_backgroundBlur_26:44" result="shape"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dx="-2.83333" dy="2.83333"/>
+<feGaussianBlur stdDeviation="1.41667"/>
+<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
+<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0"/>
+<feBlend mode="normal" in2="shape" result="effect2_innerShadow_26:44"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dx="2.83333" dy="-2.83333"/>
+<feGaussianBlur stdDeviation="1.41667"/>
+<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.84 0 0 0 0 0.84 0 0 0 0 0.84 0 0 0 0.4 0"/>
+<feBlend mode="normal" in2="effect2_innerShadow_26:44" result="effect3_innerShadow_26:44"/>
+</filter>
+<filter id="filter1_bii_26:44" x="274.1" y="154.248" width="130.8" height="168.504" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feGaussianBlur in="BackgroundImage" stdDeviation="3.95"/>
+<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_26:44"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_backgroundBlur_26:44" result="shape"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dx="-2.83333" dy="2.83333"/>
+<feGaussianBlur stdDeviation="1.41667"/>
+<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
+<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0"/>
+<feBlend mode="normal" in2="shape" result="effect2_innerShadow_26:44"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dx="2.83333" dy="-2.83333"/>
+<feGaussianBlur stdDeviation="1.41667"/>
+<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.84 0 0 0 0 0.84 0 0 0 0 0.84 0 0 0 0.4 0"/>
+<feBlend mode="normal" in2="effect2_innerShadow_26:44" result="effect3_innerShadow_26:44"/>
+</filter>
+<filter id="filter2_bii_26:44" x="375.1" y="198.279" width="59.8" height="69.4416" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feGaussianBlur in="BackgroundImage" stdDeviation="3.95"/>
+<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_26:44"/>
+<feBlend mode="normal" in="SourceGraphic" in2="effect1_backgroundBlur_26:44" result="shape"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dx="-2.83333" dy="2.83333"/>
+<feGaussianBlur stdDeviation="1.41667"/>
+<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
+<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0"/>
+<feBlend mode="normal" in2="shape" result="effect2_innerShadow_26:44"/>
+<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
+<feOffset dx="2.83333" dy="-2.83333"/>
+<feGaussianBlur stdDeviation="1.41667"/>
+<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
+<feColorMatrix type="matrix" values="0 0 0 0 0.84 0 0 0 0 0.84 0 0 0 0 0.84 0 0 0 0.4 0"/>
+<feBlend mode="normal" in2="effect2_innerShadow_26:44" result="effect3_innerShadow_26:44"/>
+</filter>
+</defs>
+</svg>
diff --git a/public/img/poweredby/videos/024.png b/public/img/poweredby/videos/024.png
new file mode 100644
index 0000000..912d928
--- /dev/null
+++ b/public/img/poweredby/videos/024.png
Binary files differ
diff --git a/public/img/poweredby/videos/024.svg b/public/img/poweredby/videos/024.svg
new file mode 100644
index 0000000..9c7885d
--- /dev/null
+++ b/public/img/poweredby/videos/024.svg
@@ -0,0 +1,42 @@
+<svg width="542" height="335" viewBox="0 0 542 335" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="542" height="335" fill="#91C2EA"/>
+<mask id="mask0_26:37" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="258" y="0" width="284" height="335">
+<rect x="258" width="284" height="335" fill="#91C2EA"/>
+</mask>
+<g mask="url(#mask0_26:37)">
+<path d="M702.994 -0.199219C703.209 28.1885 697.725 56.5762 686.972 82.8133C676.219 109.158 660.197 133.244 640.089 153.46C620.089 173.675 595.895 189.805 569.658 200.773C543.421 211.741 514.925 217.332 486.43 217.44C457.935 217.44 429.44 211.741 403.202 200.773C376.965 189.805 352.771 173.675 332.771 153.46C312.77 133.244 296.641 109.158 285.888 82.8133C275.135 56.4687 269.759 28.081 269.866 -0.199219C270.081 28.1885 275.78 56.3611 286.856 82.4907C297.716 108.62 313.846 132.384 333.954 152.277C353.954 172.17 377.826 188.192 403.955 198.945C429.977 209.698 458.257 215.289 486.43 215.182C514.603 215.182 542.883 209.698 568.905 198.945C595.035 188.192 618.906 172.17 638.907 152.277C658.907 132.384 675.036 108.513 686.004 82.4907C697.08 56.4687 702.779 28.1885 702.994 -0.199219Z" fill="#0070CC"/>
+<path d="M690.521 -0.199219C690.736 26.468 685.574 53.3503 675.466 78.082C665.359 102.921 650.197 125.61 631.272 144.643C612.347 163.675 589.658 178.944 564.819 189.267C540.087 199.59 513.205 204.859 486.323 204.966C459.44 204.966 432.666 199.59 407.826 189.267C383.095 178.944 360.298 163.783 341.373 144.643C322.448 125.61 307.394 102.814 297.179 78.082C287.071 53.2428 282.017 26.468 282.125 -0.199219C282.34 26.468 287.716 53.1352 298.147 77.6519C308.469 102.276 323.631 124.75 342.556 143.46C361.481 162.17 383.955 177.224 408.579 187.439C433.096 197.654 459.763 202.816 486.323 202.816C512.882 202.816 539.442 197.654 564.066 187.439C588.69 177.331 611.164 162.17 630.089 143.46C649.014 124.75 664.176 102.169 674.499 77.6519C684.929 53.1352 690.413 26.5755 690.521 -0.199219Z" fill="#0070CC"/>
+<path d="M678.155 -0.199219C678.37 24.8551 673.531 50.0169 664.068 73.3507C654.498 96.6846 640.304 117.975 622.562 135.933C604.82 153.89 583.421 168.191 560.195 177.869C536.861 187.547 511.7 192.601 486.43 192.601C461.161 192.601 435.999 187.547 412.665 177.869C389.331 168.191 368.041 153.89 350.298 135.933C332.556 118.083 318.362 96.6846 308.792 73.3507C299.329 50.0169 294.491 24.8551 294.706 -0.199219C294.921 24.8551 299.975 49.9094 309.76 72.9206C319.437 96.0394 333.739 117.115 351.481 134.75C369.223 152.277 390.407 166.471 413.418 176.041C436.537 185.611 461.483 190.45 486.43 190.45C511.377 190.45 536.324 185.611 559.443 176.041C582.561 166.579 603.637 152.385 621.379 134.75C639.122 117.115 653.423 96.0394 663.101 72.9206C672.886 49.9094 677.94 24.9626 678.155 -0.199219Z" fill="#0070CC"/>
+<path d="M665.789 -0.199219C666.004 23.2421 661.488 46.791 652.67 68.6195C643.745 90.4479 630.519 110.448 613.852 127.115C597.293 143.89 577.292 157.224 555.464 166.363C533.635 175.503 510.087 180.127 486.43 180.127C462.774 180.127 439.225 175.396 417.396 166.363C395.568 157.331 375.568 143.89 359.008 127.115C342.449 110.341 329.115 90.3403 320.19 68.6195C311.265 46.791 306.856 23.2421 307.071 -0.199219C307.286 23.2421 312.018 46.6835 321.158 68.1893C330.19 89.8027 343.524 109.481 360.191 125.933C376.75 142.384 396.536 155.611 418.149 164.535C439.762 173.46 463.096 177.977 486.43 177.977C509.764 177.977 533.098 173.46 554.711 164.535C576.325 155.611 596.002 142.384 612.669 125.933C629.229 109.481 642.562 89.6952 651.702 68.1893C660.842 46.6835 665.574 23.2421 665.789 -0.199219Z" fill="#0070CC"/>
+<path d="M653.423 -0.199219C653.638 21.6292 649.444 43.5651 641.272 63.8882C632.992 84.2112 620.627 102.814 605.142 118.405C589.658 133.997 571.056 146.471 550.84 154.965C530.517 163.46 508.581 167.761 486.538 167.869C464.602 167.869 442.558 163.46 422.235 154.965C401.912 146.471 383.31 134.105 367.933 118.405C352.449 102.814 340.083 84.2112 331.803 63.8882C323.523 43.5651 319.437 21.6292 319.652 -0.199219C319.868 21.6292 324.276 43.4576 332.878 63.458C341.266 83.566 353.739 101.953 369.223 117.223C384.708 132.492 403.095 144.858 423.203 153.137C443.311 161.417 465.032 165.718 486.753 165.611C508.474 165.611 530.195 161.417 550.303 153.137C570.411 144.858 588.798 132.492 604.282 117.223C619.766 101.953 632.132 83.566 640.627 63.458C648.692 43.4576 653.208 21.6292 653.423 -0.199219Z" fill="#0070CC"/>
+<path d="M640.949 -0.199219C641.165 20.0163 637.293 40.3393 629.659 59.1569C622.024 77.9745 610.519 95.1792 596.217 109.696C581.916 124.212 564.711 135.718 545.894 143.567C527.076 151.417 506.753 155.396 486.43 155.503C466.107 155.503 445.677 151.417 426.966 143.567C408.149 135.718 390.944 124.212 376.643 109.696C362.341 95.2867 350.943 77.9745 343.201 59.1569C335.567 40.3393 331.803 20.0163 331.911 -0.199219C332.126 20.0163 336.212 40.2318 344.169 58.7268C352.019 77.3293 363.524 94.3189 377.826 108.513C392.127 122.599 409.117 134.105 427.719 141.739C446.322 149.374 466.43 153.352 486.43 153.352C506.538 153.352 526.646 149.481 545.141 141.739C563.744 134.105 580.733 122.707 595.035 108.513C609.336 94.3189 620.842 77.3293 628.691 58.7268C636.648 40.2318 640.842 20.0163 640.949 -0.199219Z" fill="#0070CC"/>
+<path d="M628.584 -0.199219C628.799 18.4033 625.25 37.1134 618.261 54.4256C611.271 71.7378 600.734 87.6521 587.508 100.878C574.389 114.212 558.475 124.857 541.163 132.062C523.85 139.266 505.14 143.03 486.43 143.03C467.72 143.03 448.902 139.266 431.698 132.062C414.386 124.857 398.579 114.212 385.353 100.878C372.234 87.5446 361.696 71.7378 354.599 54.4256C347.61 37.1134 344.062 18.4033 344.277 -0.199219C344.492 18.4033 348.255 36.8983 355.567 53.9955C362.772 71.0926 373.309 86.6843 386.536 99.6954C399.654 112.706 415.353 123.137 432.451 130.234C449.548 137.331 468.043 140.879 486.43 140.879C504.925 140.879 523.42 137.331 540.41 130.234C557.507 123.244 573.099 112.706 586.325 99.6954C599.443 86.6843 610.089 71.0926 617.293 53.9955C624.605 36.8983 628.369 18.4033 628.584 -0.199219Z" fill="#0070CC"/>
+<path d="M616.218 -0.199219C616.433 16.7904 613.207 33.8875 606.863 49.6943C600.411 65.5011 590.841 80.0175 578.798 92.1683C566.754 104.319 552.345 113.997 536.539 120.664C520.732 127.223 503.635 130.664 486.538 130.664C469.44 130.664 452.343 127.223 436.537 120.664C420.73 114.104 406.213 104.427 394.278 92.1683C382.234 80.0175 372.664 65.5011 366.212 49.6943C359.868 33.8875 356.642 16.7904 356.857 -0.199219C357.073 16.7904 360.513 33.6725 367.18 49.2642C373.739 64.8559 383.417 79.0498 395.46 90.9855C407.504 102.814 421.698 112.384 437.289 118.836C452.881 125.287 469.763 128.513 486.538 128.513C503.42 128.513 520.194 125.287 535.786 118.836C551.378 112.384 565.679 102.814 577.615 90.9855C589.658 79.1573 599.228 64.8559 605.895 49.2642C612.562 33.6725 616.003 16.7904 616.218 -0.199219Z" fill="#0070CC"/>
+<path d="M603.852 -0.199219C604.067 15.1775 601.164 30.5541 595.465 44.8555C589.658 59.1569 580.948 72.2754 570.088 83.3509C559.227 94.4265 546.109 103.136 531.807 109.158C517.506 115.18 502.022 118.19 486.538 118.298C471.053 118.298 455.569 115.18 441.268 109.158C426.966 103.244 413.848 94.4265 402.987 83.3509C392.127 72.383 383.417 59.1569 377.611 44.8555C371.804 30.5541 368.901 15.0699 369.223 -0.199219C369.438 15.1775 372.557 30.4466 378.578 44.5329C384.492 58.6192 393.31 71.5227 404.17 82.1681C415.031 92.8135 427.934 101.523 442.02 107.33C456.107 113.137 471.376 116.147 486.538 116.04C501.807 116.04 516.968 113.137 531.055 107.33C545.141 101.523 558.044 92.921 568.905 82.1681C579.765 71.4152 588.475 58.6192 594.497 44.5329C600.411 30.4466 603.529 15.1775 603.852 -0.199219Z" fill="#0070CC"/>
+<path d="M591.378 -0.199219C591.594 13.5645 589.013 27.3283 583.851 40.1242C578.69 52.9202 570.948 64.6409 561.163 74.5336C551.485 84.4262 539.657 92.2759 526.861 97.6523C514.065 103.029 500.194 105.717 486.323 105.825C472.451 105.825 458.58 103.029 445.784 97.6523C432.988 92.2759 421.267 84.4262 411.482 74.5336C401.805 64.6409 393.955 52.9202 388.793 40.1242C383.632 27.3283 381.051 13.457 381.266 -0.199219C381.589 27.3283 393.095 54.3181 412.558 73.4583C422.235 83.0284 433.741 90.7705 446.429 95.9319C459.01 101.093 472.666 103.781 486.215 103.781C499.764 103.781 513.42 101.201 526.001 95.9319C538.582 90.7705 550.087 83.0284 559.873 73.4583C579.658 54.3181 591.056 27.3283 591.378 -0.199219Z" fill="#0070CC"/>
+<path d="M579.013 -0.199219C579.228 11.9516 576.97 24.1024 572.453 35.3929C567.937 46.6835 561.055 57.1138 552.453 65.8237C543.851 74.5336 533.528 81.5229 522.237 86.2542C510.947 90.9855 498.688 93.4587 486.43 93.4587C474.172 93.4587 461.913 90.9855 450.623 86.2542C439.332 81.5229 428.902 74.6411 420.407 65.8237C411.805 57.1138 405.031 46.6835 400.407 35.3929C395.891 24.1024 393.632 11.844 393.848 -0.199219C394.17 24.1024 404.385 47.8663 421.59 64.6409C430.192 73.0282 440.3 79.8025 451.376 84.4262C462.451 89.05 474.494 91.3081 486.43 91.3081C498.366 91.3081 510.409 89.05 521.485 84.4262C532.56 79.91 542.668 73.0282 551.27 64.6409C568.582 47.8663 578.69 24.1024 579.013 -0.199219Z" fill="#0070CC"/>
+<path d="M566.647 -0.199219C566.862 10.3386 564.926 20.8765 561.055 30.6617C557.077 40.4468 551.163 49.4793 543.743 57.0063C536.324 64.6409 527.291 70.555 517.506 74.7486C507.721 78.8347 497.075 80.9853 486.43 80.9853C475.785 80.9853 465.139 78.8347 455.354 74.7486C445.569 70.6625 436.537 64.6409 429.117 57.0063C421.697 49.4793 415.783 40.4468 411.805 30.6617C407.934 20.8765 405.998 10.2311 406.213 -0.199219C406.536 20.769 415.353 41.4146 430.3 55.931C437.719 63.1355 446.537 69.0496 456.107 73.0281C465.677 77.0067 476 78.9422 486.43 78.9422C496.753 78.9422 507.183 77.0067 516.753 73.0281C526.323 69.1571 535.141 63.243 542.56 55.931C557.507 41.4146 566.324 20.8765 566.647 -0.199219Z" fill="#0070CC"/>
+<path d="M554.281 -0.199219C554.496 8.7257 552.883 17.6506 549.657 25.9304C546.324 34.2101 541.377 41.8447 535.033 48.2964C528.797 54.7482 521.162 59.8021 512.882 63.3505C504.602 66.7915 495.57 68.6195 486.538 68.6195C477.505 68.6195 468.58 66.7915 460.193 63.3505C451.913 59.9096 444.279 54.7482 438.042 48.2964C431.805 41.8447 426.751 34.2101 423.418 25.9304C420.192 17.6506 418.472 8.61817 418.794 -0.199219C419.117 17.5431 426.644 34.8553 439.225 47.1136C445.461 53.2428 452.881 58.1891 460.946 61.5225C469.01 64.8559 477.72 66.5764 486.538 66.4689C495.247 66.4689 503.957 64.8559 512.13 61.5225C520.194 58.1891 527.614 53.2428 533.85 47.1136C546.431 34.8553 553.851 17.5431 554.281 -0.199219Z" fill="#0070CC"/>
+<path d="M541.808 -0.199219C542.023 7.00524 540.732 14.3172 538.044 21.1991C535.356 27.9734 531.27 34.3176 526.108 39.5866C515.893 50.232 501.162 56.2536 486.323 56.2536C471.591 56.2536 456.86 50.1244 446.537 39.5866C441.375 34.3176 437.289 28.0809 434.601 21.1991C431.913 14.4247 430.622 7.11277 430.838 -0.199219C431.268 14.3172 437.397 28.4035 447.612 38.4037C452.773 43.3501 458.795 47.4362 465.354 50.1244C471.914 52.8127 479.011 54.2105 486.215 54.2105C493.312 54.2105 500.409 52.8127 507.076 50.1244C513.635 47.4362 519.657 43.3501 524.818 38.4037C535.356 28.4035 541.485 14.3172 541.808 -0.199219Z" fill="#0070CC"/>
+<path d="M529.442 -0.199219C529.657 5.3923 528.689 11.0913 526.646 16.4678C524.603 21.7367 521.485 26.6831 517.399 30.7692C513.42 34.8553 508.581 38.1887 503.205 40.4468C497.936 42.7049 492.129 43.7802 486.323 43.8877C480.516 43.8877 474.817 42.7049 469.44 40.4468C464.172 38.1887 459.333 34.9628 455.247 30.7692C451.268 26.6831 448.15 21.7367 445.999 16.4678C443.956 11.1989 442.988 5.49983 443.203 -0.199219C443.634 11.0913 448.472 21.9518 456.429 29.5864C464.387 37.3285 475.247 41.7372 486.215 41.7372C497.183 41.7372 508.151 37.3285 516.001 29.5864C524.173 21.9518 529.119 11.0913 529.442 -0.199219Z" fill="#0070CC"/>
+<path d="M517.076 -0.199219C517.291 3.77936 516.646 7.86547 515.248 11.7365C513.85 15.5 511.592 19.0485 508.689 22.0593C505.893 25.0701 502.344 27.4358 498.581 29.0487C494.817 30.6617 490.624 31.5219 486.538 31.5219C482.344 31.5219 478.258 30.6617 474.494 29.0487C470.731 27.4358 467.182 25.0701 464.387 22.0593C461.483 19.0485 459.333 15.6076 457.827 11.7365C456.429 7.86547 455.784 3.88689 455.999 -0.199219C456.429 7.86547 459.978 15.3925 465.569 20.8765C471.161 26.2529 478.903 29.3713 486.645 29.3713C494.387 29.3713 502.022 26.2529 507.721 20.8765C513.097 15.5 516.646 7.86547 517.076 -0.199219Z" fill="#0070CC"/>
+<path d="M504.71 -0.199219C505.14 4.53206 503.42 9.58594 499.979 13.2419C498.258 15.0699 496.215 16.4678 493.85 17.5431C491.592 18.5109 489.011 19.0485 486.538 19.0485C484.064 19.0485 481.484 18.5109 479.226 17.5431C476.968 16.5753 474.817 15.0699 473.096 13.2419C469.656 9.58594 467.935 4.53206 468.365 -0.199219C468.795 4.53206 470.946 8.94075 474.279 12.0591C477.613 15.1774 482.021 16.8979 486.538 16.8979C491.054 16.8979 495.463 15.1774 498.796 12.0591C502.129 8.94075 504.28 4.53206 504.71 -0.199219Z" fill="#0070CC"/>
+<path d="M269.006 345.4C268.791 317.012 274.275 288.624 285.028 262.387C295.781 236.043 311.803 211.956 331.911 191.741C351.911 171.525 376.105 155.396 402.342 144.428C428.579 133.46 457.075 127.868 485.57 127.761C514.065 127.761 542.56 133.46 568.797 144.428C595.034 155.396 619.229 171.525 639.229 191.741C659.229 211.956 675.359 236.043 686.112 262.387C696.865 288.732 702.241 317.12 702.134 345.4C701.918 317.012 696.22 288.839 685.144 262.71C674.284 236.58 658.154 212.816 638.046 192.923C618.046 173.031 594.174 157.009 568.045 146.256C542.023 135.503 513.742 129.911 485.57 130.019C457.397 130.019 429.117 135.503 403.095 146.256C376.965 157.009 353.094 173.031 333.093 192.923C313.093 212.816 296.964 236.688 285.996 262.71C274.92 288.839 269.221 317.012 269.006 345.4Z" fill="white"/>
+<path d="M281.372 345.4C281.157 318.733 286.318 291.851 296.426 267.119C306.534 242.28 321.695 219.591 340.62 200.558C359.546 181.526 382.234 166.256 407.073 155.934C431.805 145.611 458.687 140.342 485.57 140.234C512.452 140.234 539.227 145.611 564.066 155.934C588.798 166.256 611.594 181.418 630.519 200.558C649.444 219.591 664.498 242.387 674.714 267.119C684.821 291.958 689.875 318.733 689.768 345.4C689.553 318.733 684.176 292.066 673.746 267.549C663.423 242.925 648.261 220.451 629.336 201.741C610.411 183.031 587.938 167.977 563.313 157.762C538.797 147.546 512.129 142.385 485.57 142.385C459.01 142.385 432.45 147.546 407.826 157.762C383.202 167.869 360.728 183.031 341.803 201.741C322.878 220.451 307.716 243.032 297.394 267.549C286.963 292.066 281.587 318.625 281.372 345.4Z" fill="white"/>
+<path d="M293.845 345.4C293.63 320.346 298.469 295.184 307.932 271.85C317.502 248.516 331.696 227.225 349.438 209.268C367.18 191.311 388.578 177.009 411.805 167.332C435.139 157.654 460.3 152.6 485.57 152.6C510.839 152.6 536.001 157.654 559.335 167.332C582.669 177.009 603.959 191.311 621.702 209.268C639.444 227.118 653.638 248.516 663.208 271.85C672.671 295.184 677.509 320.346 677.294 345.4C677.079 320.346 672.025 295.291 662.24 272.28C652.563 249.161 638.261 228.086 620.519 210.451C602.777 192.924 581.593 178.73 558.582 169.16C535.463 159.589 510.517 154.751 485.57 154.751C460.623 154.751 435.676 159.589 412.558 169.16C389.439 178.622 368.363 192.816 350.621 210.451C332.878 228.086 318.577 249.161 308.899 272.28C299.114 295.291 293.953 320.346 293.845 345.4Z" fill="white"/>
+<path d="M306.211 345.4C305.996 321.959 310.512 298.41 319.33 276.581C328.254 254.753 341.481 234.753 358.148 218.086C374.707 201.311 394.708 187.977 416.536 178.837C438.364 169.697 461.913 165.074 485.57 165.074C509.226 165.074 532.775 169.805 554.603 178.837C576.432 187.87 596.432 201.311 612.992 218.086C629.551 234.86 642.885 254.861 651.81 276.581C660.735 298.41 665.143 321.959 664.928 345.4C664.713 321.959 659.982 298.517 650.842 277.012C641.81 255.398 628.476 235.72 611.809 219.268C595.249 202.816 575.464 189.59 553.851 180.665C532.237 171.741 508.903 167.224 485.57 167.224C462.236 167.224 438.902 171.741 417.289 180.665C395.675 189.59 375.998 202.816 359.331 219.268C342.771 235.72 329.437 255.506 320.297 277.012C311.157 298.517 306.319 321.959 306.211 345.4Z" fill="white"/>
+<path d="M318.577 345.4C318.362 323.572 322.555 301.636 330.728 281.313C339.007 260.99 351.373 242.387 366.858 226.795C382.342 211.204 400.944 198.73 421.16 190.236C441.483 181.741 463.419 177.44 485.462 177.332C507.398 177.332 529.442 181.741 549.765 190.236C570.088 198.73 588.69 211.096 604.067 226.795C619.551 242.387 631.917 260.99 640.197 281.313C648.476 301.636 652.563 323.572 652.348 345.4C652.133 323.572 647.724 301.743 639.121 281.743C630.734 261.635 618.261 243.247 602.776 227.978C587.292 212.709 568.905 200.343 548.797 192.064C528.689 183.784 506.968 179.483 485.247 179.59C463.526 179.59 441.805 183.784 421.697 192.064C401.59 200.343 383.202 212.709 367.718 227.978C352.234 243.247 339.868 261.635 331.373 281.743C323.201 301.743 318.792 323.572 318.577 345.4Z" fill="white"/>
+<path d="M330.943 345.4C330.728 325.185 334.599 304.862 342.233 286.044C349.868 267.226 361.373 250.022 375.675 235.505C389.976 220.989 407.181 209.483 425.999 201.633C444.816 193.784 465.139 189.805 485.462 189.698C505.785 189.698 526.216 193.784 544.926 201.633C563.743 209.483 580.948 220.989 595.249 235.505C609.551 249.914 620.949 267.226 628.691 286.044C636.326 304.862 640.089 325.185 639.982 345.4C639.767 325.185 635.68 304.969 627.723 286.474C619.874 267.871 608.368 250.882 594.067 236.688C579.765 222.602 562.776 211.096 544.173 203.462C525.57 195.827 505.463 191.848 485.462 191.848C465.354 191.848 445.246 195.719 426.751 203.462C408.149 211.096 391.159 222.494 376.858 236.688C362.556 250.882 351.051 267.871 343.201 286.474C335.351 304.969 331.158 325.185 330.943 345.4Z" fill="white"/>
+<path d="M343.309 345.4C343.094 326.798 346.642 308.088 353.631 290.775C360.621 273.463 371.159 257.549 384.385 244.323C397.503 230.989 413.418 220.344 430.73 213.139C448.042 205.935 466.752 202.171 485.462 202.171C504.172 202.171 522.99 205.935 540.195 213.139C557.507 220.344 573.314 230.989 586.54 244.323C599.658 257.656 610.196 273.463 617.293 290.775C624.282 308.088 627.831 326.798 627.616 345.4C627.401 326.798 623.637 308.303 616.325 291.206C609.121 274.108 598.583 258.517 585.357 245.506C572.238 232.495 556.539 222.064 539.442 214.967C522.345 207.87 503.85 204.322 485.462 204.322C466.967 204.322 448.472 207.87 431.483 214.967C414.386 221.957 398.794 232.495 385.568 245.506C372.449 258.517 361.804 274.108 354.599 291.206C347.395 308.303 343.631 326.798 343.309 345.4Z" fill="white"/>
+<path d="M355.782 345.4C355.567 328.411 358.793 311.313 365.137 295.507C371.589 279.7 381.159 265.183 393.202 253.033C405.245 240.882 419.654 231.204 435.461 224.537C451.268 217.978 468.365 214.537 485.462 214.537C502.559 214.537 519.656 217.978 535.463 224.537C551.27 231.097 565.787 240.774 577.722 253.033C589.766 265.183 599.336 279.7 605.787 295.507C612.132 311.313 615.357 328.411 615.142 345.4C614.927 328.411 611.486 311.528 604.82 295.937C598.26 280.345 588.583 266.151 576.539 254.215C564.496 242.387 550.302 232.817 534.711 226.365C519.119 219.914 502.237 216.688 485.462 216.688C468.58 216.688 451.806 219.914 436.214 226.365C420.622 232.817 406.321 242.387 394.385 254.215C382.342 266.044 372.772 280.345 366.105 295.937C359.438 311.528 355.997 328.411 355.782 345.4Z" fill="white"/>
+<path d="M368.148 345.4C367.933 330.023 370.836 314.647 376.535 300.345C382.342 286.044 391.052 272.925 401.912 261.85C412.772 250.774 425.891 242.064 440.192 236.043C454.494 230.021 469.978 227.01 485.462 226.903C500.946 226.903 516.431 230.021 530.732 236.043C545.033 241.957 558.152 250.774 569.012 261.85C579.873 272.818 588.583 286.044 594.389 300.345C600.196 314.647 603.099 330.131 602.776 345.4C602.561 330.023 599.443 314.754 593.421 300.668C587.507 286.582 578.69 273.678 567.829 263.033C556.969 252.387 544.066 243.677 529.979 237.871C515.893 232.064 500.624 229.053 485.462 229.161C470.193 229.161 455.031 232.064 440.945 237.871C426.859 243.677 413.955 252.28 403.095 263.033C392.234 273.786 383.524 286.582 377.503 300.668C371.481 314.754 368.363 330.023 368.148 345.4Z" fill="white"/>
+<path d="M380.514 345.4C380.299 331.636 382.879 317.872 388.041 305.076C393.202 292.28 400.944 280.56 410.729 270.667C420.407 260.774 432.235 252.925 445.031 247.548C457.827 242.172 471.698 239.484 485.57 239.376C499.441 239.376 513.312 242.172 526.108 247.548C538.904 252.925 550.625 260.774 560.41 270.667C570.088 280.56 577.937 292.28 583.099 305.076C588.26 317.872 590.841 331.744 590.626 345.4C590.303 317.872 578.798 290.882 559.335 271.742C549.657 262.172 538.152 254.43 525.463 249.269C512.882 244.107 499.226 241.419 485.677 241.419C472.129 241.419 458.472 244 445.891 249.269C433.311 254.43 421.805 262.172 412.02 271.742C392.342 290.882 380.836 317.872 380.514 345.4Z" fill="white"/>
+<path d="M392.88 345.4C392.665 333.249 394.923 321.098 399.439 309.807C403.955 298.517 410.837 288.087 419.439 279.377C428.042 270.667 438.364 263.677 449.655 258.946C460.946 254.215 473.204 251.742 485.462 251.742C497.721 251.742 509.979 254.215 521.269 258.946C532.56 263.677 542.99 270.559 551.485 279.377C560.087 288.087 566.862 298.517 571.486 309.807C576.002 321.098 578.26 333.356 578.045 345.4C577.722 321.098 567.507 297.334 550.302 280.56C541.7 272.172 531.592 265.398 520.517 260.774C509.441 256.15 497.398 253.892 485.462 253.892C473.526 253.892 461.483 256.15 450.408 260.774C439.332 265.29 429.224 272.172 420.622 280.56C403.417 297.334 393.31 321.098 392.88 345.4Z" fill="white"/>
+<path d="M405.353 345.4C405.138 334.862 407.073 324.324 410.945 314.539C414.923 304.754 420.837 295.721 428.257 288.194C435.676 280.56 444.709 274.646 454.494 270.452C464.279 266.366 474.924 264.215 485.57 264.215C496.215 264.215 506.86 266.366 516.646 270.452C526.431 274.538 535.463 280.56 542.883 288.194C550.302 295.721 556.216 304.754 560.195 314.539C564.066 324.324 566.002 334.97 565.787 345.4C565.464 324.432 556.647 303.786 541.7 289.27C534.28 282.065 525.463 276.151 515.893 272.172C506.323 268.194 496 266.258 485.57 266.258C475.247 266.258 464.817 268.194 455.247 272.172C445.676 276.044 436.859 281.958 429.44 289.27C414.493 303.786 405.676 324.432 405.353 345.4Z" fill="white"/>
+<path d="M417.719 345.4C417.504 336.475 419.117 327.55 422.343 319.27C425.676 310.99 430.622 303.356 436.967 296.904C443.203 290.452 450.838 285.398 459.118 281.85C467.397 278.409 476.43 276.581 485.462 276.581C494.495 276.581 503.42 278.409 511.807 281.85C520.087 285.291 527.721 290.452 533.958 296.904C540.194 303.356 545.248 310.99 548.582 319.27C551.808 327.55 553.528 336.582 553.206 345.4C552.883 327.657 545.356 310.345 532.775 298.087C526.538 291.958 519.119 287.011 511.054 283.678C502.989 280.345 494.28 278.624 485.462 278.732C476.752 278.732 468.043 280.345 459.87 283.678C451.806 287.011 444.386 291.958 438.149 298.087C425.568 310.345 418.041 327.657 417.719 345.4Z" fill="white"/>
+<path d="M430.085 345.4C429.87 338.196 431.16 330.884 433.848 324.002C436.536 317.227 440.622 310.883 445.784 305.614C455.999 294.969 470.731 288.947 485.57 288.947C500.301 288.947 515.033 295.076 525.355 305.614C530.517 310.883 534.603 317.12 537.291 324.002C539.98 330.776 541.27 338.088 541.055 345.4C540.625 330.884 534.495 316.797 524.28 306.797C519.119 301.851 513.097 297.765 506.538 295.076C499.979 292.388 492.882 290.99 485.677 290.99C478.58 290.99 471.483 292.388 464.817 295.076C458.257 297.765 452.236 301.851 447.074 306.797C436.644 316.797 430.515 330.884 430.085 345.4Z" fill="white"/>
+<path d="M442.451 345.4C442.235 339.808 443.203 334.109 445.246 328.733C447.289 323.464 450.408 318.518 454.494 314.432C458.472 310.345 463.311 307.012 468.688 304.754C473.957 302.496 479.763 301.421 485.57 301.313C491.376 301.313 497.075 302.496 502.452 304.754C507.721 307.012 512.56 310.238 516.646 314.432C520.624 318.518 523.743 323.464 525.893 328.733C527.936 334.002 528.904 339.701 528.689 345.4C528.259 334.109 523.42 323.249 515.463 315.614C507.506 307.872 496.645 303.464 485.677 303.464C474.709 303.464 463.741 307.872 455.892 315.614C447.719 323.249 442.881 334.109 442.451 345.4Z" fill="white"/>
+<path d="M454.924 345.4C454.709 341.421 455.354 337.335 456.752 333.464C458.15 329.701 460.408 326.152 463.311 323.141C466.107 320.13 469.655 317.765 473.419 316.152C477.182 314.539 481.376 313.679 485.462 313.679C489.656 313.679 493.742 314.539 497.505 316.152C501.269 317.765 504.817 320.13 507.613 323.141C510.516 326.152 512.667 329.593 514.173 333.464C515.57 337.335 516.216 341.314 516 345.4C515.57 337.335 512.022 329.808 506.43 324.324C500.839 318.948 493.097 315.829 485.355 315.829C477.613 315.829 469.978 318.948 464.279 324.324C458.795 329.808 455.246 337.335 454.924 345.4Z" fill="white"/>
+<path d="M467.29 345.4C466.86 340.669 468.58 335.615 472.021 331.959C473.741 330.131 475.785 328.733 478.15 327.658C480.408 326.69 482.989 326.152 485.462 326.152C487.935 326.152 490.516 326.69 492.774 327.658C495.032 328.626 497.183 330.131 498.903 331.959C502.344 335.615 504.065 340.669 503.635 345.4C503.204 340.669 501.054 336.26 497.72 333.142C494.387 330.023 489.978 328.303 485.462 328.303C480.946 328.303 476.537 330.023 473.204 333.142C469.87 336.26 467.72 340.669 467.29 345.4Z" fill="white"/>
+</g>
+</svg>
diff --git a/public/img/resourses/block-book.svg b/public/img/resourses/block-book.svg
new file mode 100644
index 0000000..e9767bf
--- /dev/null
+++ b/public/img/resourses/block-book.svg
@@ -0,0 +1,9 @@
+<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M4.3396 11.2653H12.6314C12.7996 11.2653 12.9673 11.2865 13.1302 11.3285L23.2545 13.9362C23.4175 13.9782 23.5851 13.9994 23.7534 13.9994H43.6603C44.7649 13.9994 45.6603 14.8949 45.6603 15.9994V40.9499C45.6603 42.0545 44.7677 42.9499 43.6631 42.9499H29.7073C27.4673 42.9499 26.9354 43.66 26.4428 44.4916C26.1247 45.0286 25.5461 45.3274 24.922 45.3274H23.36C22.5031 45.3274 21.823 44.7248 21.3028 44.0439C20.8793 43.4897 20.2584 43.1467 19.1695 42.9713C19.076 42.9563 18.9809 42.9499 18.8863 42.9499H4.3396C3.23503 42.9499 2.3396 42.0545 2.3396 40.9499V13.2653C2.3396 12.1607 3.23503 11.2653 4.3396 11.2653Z" fill="white" stroke="black" stroke-width="1.7"/>
+<path d="M13.9583 7.12134C18.1702 7.12115 20.9537 9.67076 22.8545 11.7725C23.371 12.3437 24.3525 12.1789 24.7321 11.5089C25.7315 9.74495 27.8125 7.12143 31.3502 7.12143H39.5461C40.6507 7.12143 41.544 8.01686 41.544 9.12143V36.4576C41.544 37.7603 40.3133 38.74 39.0266 38.5369C37.381 38.2771 35.0611 38.0104 32.4707 38.0104C27.7995 38.0104 26.7383 38.8776 26.6052 39.0079C26.594 39.0188 26.5849 39.0304 26.5753 39.0427L25.9422 39.8538C25.1289 40.8958 23.5377 40.8645 22.7503 39.8027C22.3771 39.2992 21.8538 38.9204 21.2448 38.7722C20.0109 38.472 17.6524 38.0104 14.8148 38.0104C12.7189 38.0104 10.6823 38.2622 9.1665 38.5149C7.87879 38.7295 6.64282 37.7542 6.64282 36.4487V9.51903C6.64282 8.2708 7.79091 7.14702 9.03913 7.14456C10.9396 7.14082 13.3664 7.12136 13.9583 7.12134Z" fill="white" stroke="black" stroke-width="1.7"/>
+<path d="M12.1596 32.7685C20.7852 33.1691 23.9112 36.1807 24.3903 39.071V11.419C24.3903 5.31199 17.391 3.69447 12.4096 2.97222C11.2161 2.79916 10.1573 3.74094 10.1573 4.94699V30.7236C10.1573 31.8282 11.0562 32.7173 12.1596 32.7685Z" fill="white"/>
+<path d="M12.1596 32.7685L12.1202 33.6176H12.1202L12.1596 32.7685ZM12.4096 2.97222L12.5316 2.13101L12.4096 2.97222ZM23.5403 39.7765C23.5403 40.2459 23.9208 40.6265 24.3903 40.6265C24.8597 40.6265 25.2403 40.2459 25.2403 39.7765H23.5403ZM25.2288 38.932C24.6461 35.416 20.9332 32.3251 12.199 31.9195L12.1202 33.6176C20.6373 34.0132 23.1764 36.9453 23.5517 39.21L25.2288 38.932ZM11.0073 30.7236V4.94699H9.30735V30.7236H11.0073ZM12.2877 3.81342C14.7684 4.1731 17.6367 4.74315 19.8698 5.92728C22.0657 7.09167 23.5403 8.78034 23.5403 11.419H25.2403C25.2403 7.95062 23.2153 5.77704 20.6662 4.42537C18.1543 3.09343 15.0323 2.49358 12.5316 2.13101L12.2877 3.81342ZM23.5403 11.419V39.071H25.2403V11.419H23.5403ZM23.5403 39.071V39.7765H25.2403V39.071H23.5403ZM11.0073 4.94699C11.0073 4.24374 11.6217 3.71685 12.2877 3.81342L12.5316 2.13101C10.8105 1.88147 9.30735 3.23815 9.30735 4.94699H11.0073ZM12.199 31.9195C11.5215 31.888 11.0073 31.3468 11.0073 30.7236H9.30735C9.30735 32.3096 10.5909 33.5466 12.1202 33.6176L12.199 31.9195Z" fill="black"/>
+<path d="M27.6381 16.6928C27.6381 16.6928 29.1043 14.8263 31.1055 14.3082C33.1066 13.7901 38.623 14.3083 38.623 14.3083" stroke="#ED1C24" stroke-width="1.7" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M27.6381 21.517C27.6381 21.517 29.1043 19.6505 31.1055 19.1324C33.1066 18.6143 38.623 19.1325 38.623 19.1325" stroke="#ED1C24" stroke-width="1.7" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M27.6381 26.3407C27.6381 26.3407 29.1043 24.4742 31.1055 23.9561C33.1066 23.438 38.623 23.9562 38.623 23.9562" stroke="#ED1C24" stroke-width="1.7" stroke-linecap="round" stroke-linejoin="round"/>
+</svg>
diff --git a/public/img/resourses/block-email.svg b/public/img/resourses/block-email.svg
new file mode 100644
index 0000000..9a3ba2c
--- /dev/null
+++ b/public/img/resourses/block-email.svg
@@ -0,0 +1,21 @@
+<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M3.57312 19.8652C3.57312 19.1463 3.93242 18.475 4.5306 18.0762L22.8071 5.89182C23.5294 5.41033 24.4703 5.41033 25.1925 5.89182L43.4691 18.0762C44.0672 18.475 44.4265 19.1463 44.4265 19.8652V42.3665C44.4265 43.554 43.4639 44.5167 42.2764 44.5167H5.7233C4.53579 44.5167 3.57312 43.554 3.57312 42.3665V19.8652Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M43.3515 42.3665V19.8652C43.3515 19.5058 43.1718 19.1701 42.8727 18.9707L24.5962 6.78635C24.2351 6.5456 23.7646 6.5456 23.4035 6.78635L5.12695 18.9707C4.82786 19.1701 4.64821 19.5058 4.64821 19.8652V42.3665C4.64821 42.9602 5.12954 43.4416 5.7233 43.4416H42.2764C42.8701 43.4416 43.3515 42.9602 43.3515 42.3665ZM4.5306 18.0762C3.93242 18.475 3.57312 19.1463 3.57312 19.8652V42.3665C3.57312 43.554 4.53579 44.5167 5.7233 44.5167H42.2764C43.4639 44.5167 44.4265 43.554 44.4265 42.3665V19.8652C44.4265 19.1463 44.0672 18.475 43.4691 18.0762L25.1925 5.89182C24.4703 5.41033 23.5294 5.41033 22.8071 5.89182L4.5306 18.0762Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M25.0716 6.07327C24.4227 5.64065 23.5773 5.64065 22.9284 6.07327L4.65182 18.2576C4.11436 18.6159 3.79154 19.2191 3.79154 19.8651V42.3663C3.79154 43.4333 4.65648 44.2982 5.72344 44.2982H42.2765C43.3435 44.2982 44.2084 43.4333 44.2084 42.3663V19.8651C44.2084 19.2191 43.8856 18.6159 43.3481 18.2576L25.0716 6.07327ZM22.6862 5.71003C23.4818 5.17965 24.5182 5.17965 25.3138 5.71003L43.5903 17.8944C44.2492 18.3337 44.645 19.0732 44.645 19.8651V42.3663C44.645 43.6744 43.5846 44.7348 42.2765 44.7348H5.72344C4.41538 44.7348 3.35498 43.6744 3.35498 42.3663V19.8651C3.35498 19.0732 3.75075 18.3337 4.40966 17.8944L22.6862 5.71003ZM24.4753 6.9678C24.1875 6.77593 23.8125 6.77593 23.5247 6.9678L5.24817 19.1522C5.00981 19.3111 4.86663 19.5786 4.86663 19.8651V42.3663C4.86663 42.8395 5.25024 43.2231 5.72344 43.2231H42.2765C42.7497 43.2231 43.1333 42.8395 43.1333 42.3663V19.8651C43.1333 19.5786 42.9902 19.3111 42.7518 19.1522L24.4753 6.9678ZM23.2825 6.60456C23.717 6.31493 24.283 6.31493 24.7174 6.60456L42.9939 18.7889C43.3538 19.0288 43.5699 19.4326 43.5699 19.8651V42.3663C43.5699 43.0806 42.9908 43.6597 42.2765 43.6597H5.72344C5.00913 43.6597 4.43007 43.0806 4.43007 42.3663V19.8651C4.43007 19.4326 4.6462 19.0288 5.00601 18.7889L23.2825 6.60456Z" fill="black"/>
+<path d="M9.30701 8.32161V24.448V35.9156C9.30701 37.301 10.4301 38.4241 11.8156 38.4241H34.7508C37.1258 38.4241 39.0512 36.4988 39.0512 34.1238V24.448V8.32161C39.0512 5.94659 37.1258 4.02125 34.7508 4.02125H13.6074C11.2323 4.02125 9.30701 5.94658 9.30701 8.32161Z" fill="white" stroke="black" stroke-width="0.5"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M13.6074 4.55906C11.5293 4.55906 9.84462 6.24373 9.84462 8.32187V35.9158C9.84462 37.0044 10.7271 37.8868 11.8156 37.8868H34.7509C36.829 37.8868 38.5137 36.2022 38.5137 34.124V8.32187C38.5137 6.24373 36.829 4.55906 34.7509 4.55906H13.6074ZM8.76953 8.32187C8.76953 5.64997 10.9355 3.48397 13.6074 3.48397H34.7509C37.4228 3.48397 39.5888 5.64997 39.5888 8.32187V34.124C39.5888 36.7959 37.4228 38.9619 34.7509 38.9619H11.8156C10.1333 38.9619 8.76953 37.5982 8.76953 35.9158V8.32187Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M8.55121 8.32169C8.55121 5.52923 10.8149 3.2655 13.6074 3.2655H34.7508C37.5433 3.2655 39.807 5.52924 39.807 8.32169V34.1239C39.807 36.9163 37.5433 39.18 34.7508 39.18H11.8156C10.0127 39.18 8.55121 37.7185 8.55121 35.9157V8.32169ZM13.6074 3.70206C11.056 3.70206 8.98777 5.77034 8.98777 8.32169V35.9157C8.98777 37.4774 10.2538 38.7435 11.8156 38.7435H34.7508C37.3022 38.7435 39.3705 36.6752 39.3705 34.1239V8.32169C39.3705 5.77034 37.3022 3.70206 34.7508 3.70206H13.6074ZM13.6074 4.77716C11.6498 4.77716 10.0629 6.3641 10.0629 8.32169V35.9157C10.0629 36.8837 10.8476 37.6684 11.8156 37.6684H34.7508C36.7084 37.6684 38.2954 36.0815 38.2954 34.1239V8.32169C38.2954 6.3641 36.7084 4.77716 34.7508 4.77716H13.6074ZM9.6263 8.32169C9.6263 6.12299 11.4087 4.34059 13.6074 4.34059H34.7508C36.9495 4.34059 38.7319 6.12299 38.7319 8.32169V34.1239C38.7319 36.3226 36.9495 38.105 34.7508 38.105H11.8156C10.6065 38.105 9.6263 37.1248 9.6263 35.9157V8.32169Z" fill="black"/>
+<path d="M30.8089 32.3322L43.71 23.7315V41.5529C43.71 42.1606 43.0012 42.4925 42.5344 42.1035L30.8089 32.3322Z" fill="white" stroke="black" stroke-width="0.5"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M44.2477 22.727L29.9119 32.2842L42.1904 42.5164C43.0074 43.1972 44.2477 42.6162 44.2477 41.5528V22.727ZM43.1726 24.7359V41.5528C43.1726 41.7047 42.9954 41.7877 42.8787 41.6905L31.7062 32.3801L43.1726 24.7359Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M44.4658 22.3192L29.5474 32.2648L42.0506 42.6841C43.0097 43.4833 44.4658 42.8013 44.4658 41.5528V22.3192ZM44.0293 23.1349V41.5528C44.0293 42.4312 43.0048 42.911 42.33 42.3487L30.276 32.3037L44.0293 23.1349ZM43.3907 24.328L31.3418 32.3606L42.5711 41.7184L42.3667 41.9637L42.7021 42.2432L42.9476 41.9486C43.1681 41.9735 43.3907 41.8065 43.3907 41.5528V24.328ZM42.9542 25.1437V41.4694L32.0704 32.3996L42.9542 25.1437Z" fill="black"/>
+<path d="M21.4102 28.9183L5.09207 42.5326C4.5775 42.9619 4.88108 43.7997 5.55123 43.7997H42.477C43.1439 43.7997 43.4493 42.9688 42.9412 42.5369L26.9503 28.9438C25.3558 27.5884 23.0171 27.5776 21.4102 28.9183Z" fill="white" stroke="black" stroke-width="0.5"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M26.602 29.3533C25.2068 28.1673 23.1604 28.1579 21.7543 29.331L5.43624 42.9453C5.30759 43.0526 5.38349 43.2621 5.55102 43.2621H42.4768C42.6435 43.2621 42.7199 43.0543 42.5929 42.9464L26.602 29.3533ZM21.0656 28.5055C22.8734 26.9972 25.5044 27.0093 27.2983 28.5342L43.2892 42.1272C44.1783 42.8831 43.6438 44.3371 42.4768 44.3371H5.55102C4.37827 44.3371 3.847 42.8711 4.7475 42.1198L21.0656 28.5055Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M20.9259 28.3378C22.8152 26.7615 25.565 26.7741 27.4397 28.3678L43.4306 41.9608C44.4746 42.8482 43.847 44.5554 42.4769 44.5554H5.55111C4.17426 44.5554 3.55053 42.8342 4.60776 41.9521L20.9259 28.3378ZM27.157 28.7004C25.4441 27.2444 22.9317 27.2328 21.2055 28.673L4.88743 42.2873C4.14364 42.9079 4.58245 44.1188 5.55111 44.1188H42.4769C43.4408 44.1188 43.8823 42.9178 43.1479 42.2935L27.157 28.7004ZM26.4607 29.5195C25.1464 28.4024 23.2187 28.3935 21.8943 29.4985L5.65901 43.0437H42.3705L26.4607 29.5195ZM21.6146 29.1633C23.1022 27.9222 25.2673 27.9321 26.7434 29.1869L42.7343 42.78C43.0161 43.0195 42.8467 43.4803 42.4769 43.4803H5.55111C5.17948 43.4803 5.01113 43.0157 5.29649 42.7776L21.6146 29.1633Z" fill="black"/>
+<path d="M17.1911 32.3322L4.28998 23.7315V41.5529C4.28998 42.1606 4.99872 42.4925 5.46554 42.1035L17.1911 32.3322Z" fill="white" stroke="black" stroke-width="0.5"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M3.75232 22.727L18.0881 32.2842L5.80956 42.5164C4.99262 43.1972 3.75232 42.6162 3.75232 41.5528V22.727ZM4.82741 24.7359V41.5528C4.82741 41.7047 5.00459 41.7877 5.1213 41.6905L16.2938 32.3801L4.82741 24.7359Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M3.53418 22.3192L18.4526 32.2648L5.94944 42.6841C4.99033 43.4833 3.53418 42.8013 3.53418 41.5528V22.3192ZM3.97074 23.1349V41.5528C3.97074 42.4312 4.99519 42.911 5.66996 42.3487L17.724 32.3037L3.97074 23.1349ZM4.60927 24.328L16.6582 32.3606L5.42887 41.7184L5.63326 41.9637L5.29788 42.2432L5.05241 41.9486C4.8319 41.9735 4.60927 41.8065 4.60927 41.5528V24.328ZM5.04583 25.1437V41.4694L15.9296 32.3996L5.04583 25.1437Z" fill="black"/>
+<path d="M24.2252 12.8807C23.4614 12.8807 22.8219 13.2103 22.3068 13.8696C21.7857 14.5228 21.5252 15.3333 21.5252 16.301C21.5252 17.2929 21.7769 18.1004 22.2801 18.7234C22.7775 19.3464 23.4258 19.6578 24.2252 19.6578C24.9771 19.6578 25.5781 19.3403 26.0281 18.7052C26.484 18.0702 26.7119 17.2294 26.7119 16.1831C26.7119 15.167 26.4899 14.3625 26.0458 13.7698C25.6018 13.1771 24.9949 12.8807 24.2252 12.8807ZM24.4561 8.68012C26.5402 8.68012 28.2395 9.31822 29.554 10.5944C30.8684 11.8767 31.5256 13.5309 31.5256 15.5571C31.5256 16.9966 31.2918 18.1125 30.824 18.9048C30.3563 19.6972 29.699 20.0933 28.8523 20.0933C28.2425 20.0933 27.7481 19.9209 27.3692 19.5762C26.9843 19.2314 26.7682 18.7566 26.7208 18.1518H26.6853C26.2057 19.428 25.3827 20.0661 24.2163 20.0661C23.2985 20.0661 22.5495 19.7153 21.9693 19.0137C21.389 18.3121 21.0989 17.4048 21.0989 16.2919C21.0989 15.173 21.389 14.2567 21.9693 13.543C22.5555 12.8293 23.3045 12.4724 24.2163 12.4724C24.7788 12.4724 25.288 12.6388 25.7439 12.9714C26.1998 13.3101 26.5106 13.7486 26.6764 14.2869H26.7119V12.672H27.1382V17.671C27.1382 19.0197 27.7155 19.6941 28.8701 19.6941C29.5806 19.6941 30.1313 19.3343 30.522 18.6145C30.9128 17.8948 31.1082 16.8726 31.1082 15.548C31.1082 13.6428 30.4865 12.0884 29.2431 10.8847C28.0057 9.68112 26.404 9.07931 24.4383 9.07931C22.4726 9.07931 20.8413 9.74766 19.5447 11.0843C18.2539 12.415 17.6085 14.0994 17.6085 16.1377C17.6085 18.2667 18.2421 19.9996 19.5091 21.3363C20.7762 22.6669 22.4104 23.3322 24.4117 23.3322C25.6669 23.3322 26.632 23.2264 27.307 23.0147V23.432C26.6794 23.6316 25.7143 23.7314 24.4117 23.7314C22.2861 23.7314 20.5512 23.0268 19.2072 21.6175C17.8631 20.2082 17.1911 18.3816 17.1911 16.1377C17.1911 13.9724 17.875 12.1882 19.2427 10.7849C20.6104 9.38173 22.3482 8.68012 24.4561 8.68012Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M26.3536 13.0337V12.3137H27.4966V17.671C27.4966 18.3026 27.633 18.7094 27.8435 18.9553C28.0448 19.1905 28.3639 19.3358 28.8701 19.3358C29.4266 19.3358 29.8675 19.0691 30.2071 18.4435C30.557 17.7991 30.7499 16.8458 30.7499 15.548C30.7499 13.729 30.1601 12.2712 28.9939 11.1422C27.8327 10.0128 26.3248 9.43767 24.4383 9.43767C22.5635 9.43767 21.027 10.0709 19.8019 11.3339C18.5827 12.5907 17.9669 14.1824 17.9669 16.1377C17.9669 18.1903 18.575 19.8298 19.7691 21.0895C20.962 22.3421 22.499 22.9738 24.4117 22.9738C25.6541 22.9738 26.5764 22.8682 27.1998 22.6727L27.6654 22.5267V23.6941L27.4156 23.7735C26.7333 23.9905 25.7225 24.0898 24.4117 24.0898C22.198 24.0898 20.3661 23.3519 18.9479 21.8648C17.5305 20.3787 16.8328 18.4587 16.8328 16.1377C16.8328 13.8897 17.546 12.0122 18.9861 10.5348C20.4267 9.05678 22.2597 8.32176 24.4561 8.32176C26.6196 8.32176 28.413 8.9871 29.8036 10.3373C31.1947 11.6943 31.884 13.4453 31.884 15.5571C31.884 17.0277 31.6464 18.2167 31.1326 19.087C30.6072 19.9771 29.8386 20.4517 28.8524 20.4517C28.1718 20.4517 27.586 20.2574 27.129 19.8422C26.9016 19.6382 26.7262 19.3983 26.6001 19.1269C26.4089 19.4213 26.1857 19.6709 25.9279 19.8707C25.4461 20.2443 24.8689 20.4245 24.2163 20.4245C23.1927 20.4245 22.3421 20.0268 21.6931 19.2421C21.0487 18.4628 20.7406 17.469 20.7406 16.2919C20.7406 15.1091 21.0485 14.1075 21.6912 13.3169L21.6924 13.3155C22.3456 12.5202 23.1956 12.1141 24.2163 12.1141C24.855 12.1141 25.4381 12.3047 25.9551 12.6819L25.9576 12.6837C26.1022 12.7912 26.2343 12.9079 26.3536 13.0337ZM24.2252 13.239C23.5832 13.239 23.0438 13.5084 22.5892 14.0902L22.587 14.0931C22.1244 14.673 21.8836 15.401 21.8836 16.301C21.8836 17.2311 22.1185 17.953 22.5589 18.4982L22.5602 18.4998C22.9894 19.0373 23.5345 19.2995 24.2252 19.2995C24.8562 19.2995 25.3501 19.0422 25.7357 18.498L25.737 18.4962C26.1365 17.9397 26.3536 17.1795 26.3536 16.1831C26.3536 15.2161 26.1422 14.496 25.7591 13.9847C25.3857 13.4863 24.8872 13.239 24.2252 13.239Z" fill="#ED1C24"/>
+<path d="M24.2252 12.8807C23.4614 12.8807 22.8219 13.2103 22.3068 13.8696C21.7857 14.5228 21.5252 15.3333 21.5252 16.301C21.5252 17.2929 21.7769 18.1004 22.2801 18.7234C22.7775 19.3464 23.4258 19.6578 24.2252 19.6578C24.9771 19.6578 25.5781 19.3403 26.0281 18.7052C26.484 18.0702 26.7119 17.2294 26.7119 16.1831C26.7119 15.167 26.4899 14.3625 26.0458 13.7698C25.6018 13.1771 24.9949 12.8807 24.2252 12.8807ZM24.4561 8.68012C26.5402 8.68012 28.2395 9.31822 29.554 10.5944C30.8684 11.8767 31.5256 13.5309 31.5256 15.5571C31.5256 16.9966 31.2918 18.1125 30.824 18.9048C30.3563 19.6972 29.699 20.0933 28.8523 20.0933C28.2425 20.0933 27.7481 19.9209 27.3692 19.5762C26.9843 19.2314 26.7682 18.7566 26.7208 18.1518H26.6853C26.2057 19.428 25.3827 20.0661 24.2163 20.0661C23.2985 20.0661 22.5495 19.7153 21.9693 19.0137C21.389 18.3121 21.0989 17.4048 21.0989 16.2919C21.0989 15.173 21.389 14.2567 21.9693 13.543C22.5555 12.8293 23.3045 12.4724 24.2163 12.4724C24.7788 12.4724 25.288 12.6388 25.7439 12.9714C26.1998 13.3101 26.5106 13.7486 26.6764 14.2869H26.7119V12.672H27.1382V17.671C27.1382 19.0197 27.7155 19.6941 28.8701 19.6941C29.5806 19.6941 30.1313 19.3343 30.522 18.6145C30.9128 17.8948 31.1082 16.8726 31.1082 15.548C31.1082 13.6428 30.4865 12.0884 29.2431 10.8847C28.0057 9.68112 26.404 9.07931 24.4383 9.07931C22.4726 9.07931 20.8413 9.74766 19.5447 11.0843C18.2539 12.415 17.6085 14.0994 17.6085 16.1377C17.6085 18.2667 18.2421 19.9996 19.5091 21.3363C20.7762 22.6669 22.4104 23.3322 24.4117 23.3322C25.6669 23.3322 26.632 23.2264 27.307 23.0147V23.432C26.6794 23.6316 25.7143 23.7314 24.4117 23.7314C22.2861 23.7314 20.5512 23.0268 19.2072 21.6175C17.8631 20.2082 17.1911 18.3816 17.1911 16.1377C17.1911 13.9724 17.875 12.1882 19.2427 10.7849C20.6104 9.38173 22.3482 8.68012 24.4561 8.68012Z" stroke="#ED1C24" stroke-width="0.5"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M26.3536 13.0337V12.3137H27.4966V17.671C27.4966 18.3026 27.633 18.7094 27.8435 18.9553C28.0448 19.1905 28.3639 19.3358 28.8701 19.3358C29.4266 19.3358 29.8675 19.0691 30.2071 18.4435C30.557 17.7991 30.7499 16.8458 30.7499 15.548C30.7499 13.729 30.1601 12.2712 28.9939 11.1422C27.8327 10.0128 26.3248 9.43767 24.4383 9.43767C22.5635 9.43767 21.027 10.0709 19.8019 11.3339C18.5827 12.5907 17.9669 14.1824 17.9669 16.1377C17.9669 18.1903 18.575 19.8298 19.7691 21.0895C20.962 22.3421 22.499 22.9738 24.4117 22.9738C25.6541 22.9738 26.5764 22.8682 27.1998 22.6727L27.6654 22.5267V23.6941L27.4156 23.7735C26.7333 23.9905 25.7225 24.0898 24.4117 24.0898C22.198 24.0898 20.3661 23.3519 18.9479 21.8648C17.5305 20.3787 16.8328 18.4587 16.8328 16.1377C16.8328 13.8897 17.546 12.0122 18.9861 10.5348C20.4267 9.05678 22.2597 8.32176 24.4561 8.32176C26.6196 8.32176 28.413 8.9871 29.8036 10.3373C31.1947 11.6943 31.884 13.4453 31.884 15.5571C31.884 17.0277 31.6464 18.2167 31.1326 19.087C30.6072 19.9771 29.8386 20.4517 28.8524 20.4517C28.1718 20.4517 27.586 20.2574 27.129 19.8422C26.9016 19.6382 26.7262 19.3983 26.6001 19.1269C26.4089 19.4213 26.1857 19.6709 25.9279 19.8707C25.4461 20.2443 24.8689 20.4245 24.2163 20.4245C23.1927 20.4245 22.3421 20.0268 21.6931 19.2421C21.0487 18.4628 20.7406 17.469 20.7406 16.2919C20.7406 15.1091 21.0485 14.1075 21.6912 13.3169L21.6924 13.3155C22.3456 12.5202 23.1956 12.1141 24.2163 12.1141C24.855 12.1141 25.4381 12.3047 25.9551 12.6819L25.9576 12.6837C26.1022 12.7912 26.2343 12.9079 26.3536 13.0337ZM24.2252 13.239C23.5832 13.239 23.0438 13.5084 22.5892 14.0902L22.587 14.0931C22.1244 14.673 21.8836 15.401 21.8836 16.301C21.8836 17.2311 22.1185 17.953 22.5589 18.4982L22.5602 18.4998C22.9894 19.0373 23.5345 19.2995 24.2252 19.2995C24.8562 19.2995 25.3501 19.0422 25.7357 18.498L25.737 18.4962C26.1365 17.9397 26.3536 17.1795 26.3536 16.1831C26.3536 15.2161 26.1422 14.496 25.7591 13.9847C25.3857 13.4863 24.8872 13.239 24.2252 13.239Z" stroke="#ED1C24" stroke-width="0.5"/>
+</svg>
diff --git a/public/img/resourses/block-video.svg b/public/img/resourses/block-video.svg
new file mode 100644
index 0000000..94242a9
--- /dev/null
+++ b/public/img/resourses/block-video.svg
@@ -0,0 +1,10 @@
+<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="12.85" y="9.85" width="31.3" height="34.3" rx="3.15" fill="white" stroke="black" stroke-width="1.7"/>
+<path d="M20.7619 23.176L16.8887 27.2686C16.5238 27.6542 16.5238 28.2577 16.8887 28.6433L20.7619 32.7359" stroke="#ED1C24" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M35.2381 32.7358L39.1113 28.6433C39.4762 28.2577 39.4762 27.6541 39.1113 27.2685L35.2381 23.176" stroke="#ED1C24" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
+<circle cx="23.5" cy="27.5" r="1.5" fill="#ED1C24"/>
+<circle cx="28.5" cy="27.5" r="1.5" fill="#ED1C24"/>
+<circle cx="32.5" cy="27.5" r="1.5" fill="#ED1C24"/>
+<rect x="4.85" y="3.85" width="21.3" height="15.3" rx="3.15" fill="white" stroke="black" stroke-width="1.7"/>
+<path d="M25.822 11.6276C25.7272 11.5689 25.7272 11.4311 25.822 11.3724L33.4211 6.6717C33.521 6.60988 33.65 6.68176 33.65 6.79926L33.65 16.2007C33.65 16.3182 33.521 16.3901 33.4211 16.3283L25.822 11.6276Z" fill="white" stroke="black" stroke-width="1.7"/>
+</svg>
diff --git a/public/img/resourses/book-cover.jpg b/public/img/resourses/book-cover.jpg
new file mode 100644
index 0000000..4bd3d8c
--- /dev/null
+++ b/public/img/resourses/book-cover.jpg
Binary files differ
diff --git a/public/img/resourses/hero.svg b/public/img/resourses/hero.svg
new file mode 100644
index 0000000..1904875
--- /dev/null
+++ b/public/img/resourses/hero.svg
@@ -0,0 +1,63 @@
+<svg width="442" height="482" viewBox="0 0 442 482" fill="none" xmlns="http://www.w3.org/2000/svg">
+<circle cx="325" cy="29" r="8" fill="#2D2D2D"/>
+<circle cx="86.5" cy="28.5" r="4.5" fill="#ED1C24"/>
+<circle cx="86.5" cy="77.5" r="4.5" fill="#ED1C24"/>
+<circle cx="86.5" cy="4.5" r="4.5" fill="#ED1C24"/>
+<circle cx="86.5" cy="52.5" r="4.5" fill="#ED1C24"/>
+<circle cx="110.5" cy="28.5" r="4.5" fill="#ED1C24"/>
+<circle cx="110.5" cy="77.5" r="4.5" fill="#ED1C24"/>
+<circle cx="110.5" cy="4.5" r="4.5" fill="#ED1C24"/>
+<circle cx="110.5" cy="52.5" r="4.5" fill="#ED1C24"/>
+<circle cx="135.5" cy="28.5" r="4.5" fill="#ED1C24"/>
+<circle cx="135.5" cy="77.5" r="4.5" fill="#ED1C24"/>
+<circle cx="135.5" cy="4.5" r="4.5" fill="#ED1C24"/>
+<circle cx="135.5" cy="52.5" r="4.5" fill="#ED1C24"/>
+<circle cx="159.5" cy="28.5" r="4.5" fill="#ED1C24"/>
+<circle cx="159.5" cy="77.5" r="4.5" fill="#ED1C24"/>
+<circle cx="159.5" cy="4.5" r="4.5" fill="#ED1C24"/>
+<circle cx="159.5" cy="52.5" r="4.5" fill="#ED1C24"/>
+<path d="M126 206.837V203.776L119 203.5C109 194 117 179.5 121 179.5H125.49V41C125.49 40.4477 125.042 40 124.49 40H11.7143C7.63254 40 1.00005 42.0408 1 50.7143V192.041C1 206.837 11.7143 206.837 11.7143 206.837H126Z" fill="white" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M17.3264 179.796V40" stroke="#2D2D2D"/>
+<path d="M126 203.776V206.837H11.7143C11.7143 206.837 1 206.837 1 192.041V50.7143C1.00005 42.0408 7.63254 40 11.7143 40H124.49C125.042 40 125.49 40.4477 125.49 41V179.791" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M120.5 180C112.976 183.129 111.609 200.646 120.388 203.776" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M125.489 179.796H12.2242C1.5101 179.796 0.999855 203.775 12.2242 203.775H125.489" stroke="#2D2D2D" stroke-linecap="round"/>
+<path d="M85.1837 215.511V188.98H101.51V215.511L93.3469 208.368L85.1837 215.511Z" fill="#ED1C24" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M125.5 152.5H388C399.046 152.5 408 161.454 408 172.5V308.5C408 319.546 399.046 328.5 388 328.5H325" stroke="#2D2D2D"/>
+<path d="M112.5 351H89C77.9543 351 69 359.954 69 371V461C69 472.046 77.9543 481 89 481H360C371.046 481 380 472.046 380 461V390.208C380 379.163 371.046 370.208 360 370.208H249.5" stroke="black"/>
+<path d="M238.5 139V49.5C238.5 38.4543 247.454 29.5 258.5 29.5H321.5" stroke="#2D2D2D"/>
+<rect x="373" y="201" width="69" height="61" rx="8" fill="#0070CC"/>
+<path d="M419.909 222.993L428.687 231.749L419.909 240.505" stroke="#F6F6F6" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M394.942 240.351L386.163 231.594L394.942 222.839" stroke="#F6F6F6" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M403.28 243.26L412.01 220.139" stroke="#F6F6F6" stroke-linecap="round" stroke-linejoin="round"/>
+<rect x="202.5" y="110.5" width="73" height="71" rx="9.5" fill="#2D2D2D" stroke="#2D2D2D"/>
+<rect x="221" y="136" width="31" height="23" rx="3" fill="#F6F6F6"/>
+<path d="M247 147L260.5 139.206L260.5 154.794L247 147Z" fill="#F6F6F6"/>
+<rect x="139.5" y="240.5" width="184" height="180" rx="5.5" fill="white" stroke="#2D2D2D"/>
+<path d="M167.736 288.653H297.223" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M168.315 319.149H297.802" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M168.315 349.649H297.802" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M168.315 380.146H297.802" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<circle cx="150.5" cy="248.5" r="3.5" fill="#2D2D2D"/>
+<circle cx="159.5" cy="248.5" r="3.5" fill="#2D2D2D"/>
+<circle cx="168.5" cy="248.5" r="3.5" fill="#2D2D2D"/>
+<path d="M140.096 255.657H322.765" stroke="#2D2D2D"/>
+<rect x="127.5" y="253.5" width="184" height="180" rx="5.5" fill="white" stroke="#2D2D2D"/>
+<path d="M155.993 301.7H285.48" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M156.572 332.197H286.059" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M156.572 362.697H286.059" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M156.572 393.193H286.059" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M128.353 268.705H311.022" stroke="#2D2D2D"/>
+<rect x="114.5" y="266.5" width="184" height="180" rx="5.5" fill="white" stroke="#2D2D2D"/>
+<path d="M142.945 314.749H272.432" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M143.525 345.245H273.011" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M143.525 375.745H273.011" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M143.525 406.242H273.011" stroke="#2D2D2D" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M115.305 281.753H297.974" stroke="#2D2D2D"/>
+<circle cx="126.5" cy="274.5" r="3.5" fill="#2D2D2D"/>
+<circle cx="135.5" cy="274.5" r="3.5" fill="#2D2D2D"/>
+<circle cx="144.5" cy="274.5" r="3.5" fill="#2D2D2D"/>
+<circle cx="139.5" cy="261.5" r="3.5" fill="#2D2D2D"/>
+<circle cx="148.5" cy="261.5" r="3.5" fill="#2D2D2D"/>
+<circle cx="157.5" cy="261.5" r="3.5" fill="#2D2D2D"/>
+<path d="M262 446L252 409L290.5 419L278 428L287 437.5L281 443.5L271 434L262 446Z" fill="#2D2D2D"/>
+</svg>
diff --git a/public/img/resourses/icon-training.svg b/public/img/resourses/icon-training.svg
new file mode 100644
index 0000000..2ae0b4b
--- /dev/null
+++ b/public/img/resourses/icon-training.svg
@@ -0,0 +1,10 @@
+<svg width="44" height="45" viewBox="0 0 44 45" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="1" y="1" width="42" height="35" rx="2" fill="white" stroke="black" stroke-width="1.7"/>
+<path d="M2 31.25H43.0031" stroke="black" stroke-width="1.7" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M17 43L19 36H26L28 43" stroke="black" stroke-width="1.7" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M11 44H33.5" stroke="black" stroke-width="1.7" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M15 24V16V14H30.5V24C24.7301 25.714 21.3317 25.7429 15 24Z" fill="white" stroke="#ED1C24" stroke-width="1.7" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M23 21L9 14.5L23 8L37 14.5L23 21Z" fill="white" stroke="#ED1C24" stroke-width="1.7" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M9 14.5V21.5" stroke="#ED1C24" stroke-width="1.7" stroke-linecap="round" stroke-linejoin="round"/>
+<circle cx="9" cy="23" r="1.5" fill="#ED1C24" stroke="#ED1C24"/>
+</svg>
diff --git a/public/img/resourses/icon-youtube.svg b/public/img/resourses/icon-youtube.svg
new file mode 100644
index 0000000..5d41a90
--- /dev/null
+++ b/public/img/resourses/icon-youtube.svg
@@ -0,0 +1,11 @@
+<svg width="32" height="23" viewBox="0 0 32 23" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g clip-path="url(#clip0_15:347)">
+<path d="M31.2931 3.58736C31.1096 2.89398 30.7515 2.26185 30.2546 1.75391C29.7578 1.24598 29.1394 0.879956 28.4611 0.6923C25.9778 0 15.9836 0 15.9836 0C15.9836 0 5.98884 0.0209555 3.50559 0.713256C2.82728 0.900923 2.2089 1.26696 1.71202 1.77492C1.21515 2.28288 0.857119 2.91504 0.673591 3.60844C-0.0775341 8.11874 -0.368909 14.9914 0.694216 19.3213C0.877763 20.0147 1.2358 20.6468 1.73267 21.1547C2.22955 21.6627 2.84792 22.0287 3.52622 22.2163C6.00947 22.9086 16.004 22.9086 16.004 22.9086C16.004 22.9086 25.9983 22.9086 28.4815 22.2163C29.1598 22.0287 29.7782 21.6627 30.2751 21.1548C30.772 20.6468 31.13 20.0147 31.3136 19.3213C32.1059 14.8046 32.35 7.93628 31.2931 3.58749V3.58736Z" fill="#FF0000"/>
+<path d="M12.8025 16.3632L21.0936 11.4543L12.8026 6.54529L12.8025 16.3632Z" fill="white"/>
+</g>
+<defs>
+<clipPath id="clip0_15:347">
+<rect width="32" height="23" fill="white"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/public/img/resourses/res2-book.svg b/public/img/resourses/res2-book.svg
new file mode 100644
index 0000000..2a01b64
--- /dev/null
+++ b/public/img/resourses/res2-book.svg
@@ -0,0 +1,15 @@
+<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="5.85" y="5.85" width="31.3" height="38.3" rx="2.15" fill="white" stroke="black" stroke-width="1.7" stroke-linecap="round"/>
+<path d="M19.5931 14.0391C19.5931 14.0391 14.7226 17.0092 19.3128 19.9583C20.1958 20.5327 23.3984 22.1299 23.3073 23.6079C23.3073 23.6079 25.2485 20.7359 22.4103 18.9286C19.495 17.0793 18.7662 15.1038 19.5931 14.0391Z" fill="#ED1C24"/>
+<path d="M17.8971 19.7129C17.8971 19.7129 16.1591 22.3468 19.579 22.8862C19.9154 22.9282 22.3892 23.1874 23.0339 24C23.0339 24 22.9778 22.599 20.9595 21.7724C18.9483 20.9458 18.1213 20.7426 17.8971 19.7129Z" fill="#ED1C24"/>
+<path d="M24.6248 16.946C22.5364 14.7605 21.9547 13.4085 22.8518 11.6572C22.8518 11.6572 16.6217 14.053 22.7747 18.305C24.9752 19.8251 24.6107 21.3802 24.6107 21.4363C24.9541 21.079 26.7131 19.1316 24.6248 16.946Z" fill="#ED1C24"/>
+<path d="M11.1713 28.1143H31.7428" stroke="black" stroke-width="1.7" stroke-linecap="round"/>
+<path d="M11.1713 32.2285H31.7428" stroke="black" stroke-width="1.7" stroke-linecap="round"/>
+<path d="M11.1713 36.3428H31.7428" stroke="black" stroke-width="1.7" stroke-linecap="round"/>
+<rect x="9.85" y="2.85" width="31.3" height="38.3" rx="2.15" fill="white" stroke="black" stroke-width="1.7" stroke-linecap="round"/>
+<path d="M22.642 11.1255C22.642 11.1255 15.8412 15.2728 22.2506 19.3907C23.4835 20.1928 27.9554 22.4229 27.8282 24.4868C27.8282 24.4868 30.5388 20.4765 26.5757 17.9529C22.505 15.3706 21.4873 12.6123 22.642 11.1255Z" fill="#ED1C24"/>
+<path d="M20.2739 19.0483C20.2739 19.0483 17.8471 22.7261 22.6224 23.4793C23.0921 23.538 26.5463 23.8999 27.4465 25.0345C27.4465 25.0345 27.3683 23.0783 24.5501 21.9241C21.7417 20.7699 20.587 20.4862 20.2739 19.0483Z" fill="#ED1C24"/>
+<path d="M29.6678 15.1847C26.7518 12.1329 25.9396 10.2451 27.1922 7.7998C27.1922 7.7998 18.493 11.145 27.0845 17.0823C30.1571 19.2049 29.6483 21.3763 29.6483 21.4546C30.1278 20.9557 32.5839 18.2365 29.6678 15.1847Z" fill="#ED1C24"/>
+<path d="M15.2571 29.1431H35.8286" stroke="black" stroke-width="1.7" stroke-linecap="round"/>
+<path d="M15.2571 33.2573H35.8286" stroke="black" stroke-width="1.7" stroke-linecap="round"/>
+</svg>
diff --git a/public/img/resourses/res2-book2.svg b/public/img/resourses/res2-book2.svg
new file mode 100644
index 0000000..e109696
--- /dev/null
+++ b/public/img/resourses/res2-book2.svg
@@ -0,0 +1,14 @@
+<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="5.85" y="5.85" width="31.3" height="38.3" rx="2.15" fill="white" stroke="black" stroke-width="1.7" stroke-linecap="round"/>
+<path d="M19.5931 14.0391C19.5931 14.0391 14.7226 17.0092 19.3128 19.9583C20.1958 20.5327 23.3984 22.1299 23.3073 23.6079C23.3073 23.6079 25.2485 20.7359 22.4103 18.9286C19.495 17.0793 18.7662 15.1038 19.5931 14.0391Z" fill="#ED1C24"/>
+<path d="M17.8971 19.7129C17.8971 19.7129 16.1591 22.3468 19.579 22.8862C19.9154 22.9282 22.3892 23.1874 23.0339 24C23.0339 24 22.9778 22.599 20.9595 21.7724C18.9483 20.9458 18.1213 20.7426 17.8971 19.7129Z" fill="#ED1C24"/>
+<path d="M24.6247 16.946C22.5364 14.7605 21.9547 13.4085 22.8517 11.6572C22.8517 11.6572 16.6217 14.053 22.7747 18.305C24.9751 19.8251 24.6107 21.3802 24.6107 21.4363C24.9541 21.079 26.7131 19.1316 24.6247 16.946Z" fill="#ED1C24"/>
+<path d="M11.1713 28.1143H31.7428" stroke="black" stroke-width="1.7" stroke-linecap="round"/>
+<path d="M11.1713 32.2285H31.7428" stroke="black" stroke-width="1.7" stroke-linecap="round"/>
+<path d="M11.1713 36.3428H31.7428" stroke="black" stroke-width="1.7" stroke-linecap="round"/>
+<rect x="9.85" y="2.85" width="31.3" height="38.3" rx="2.15" fill="white" stroke="black" stroke-width="1.7" stroke-linecap="round"/>
+<path d="M15.2571 29.1431H35.8285" stroke="black" stroke-width="1.7" stroke-linecap="round"/>
+<path d="M15.2571 33.2573H35.8285" stroke="black" stroke-width="1.7" stroke-linecap="round"/>
+<path d="M18.5788 21.4227C18.4137 21.6853 18.2283 21.9901 18.0709 22.2329C17.9299 22.4652 18.0056 22.7649 18.241 22.9068L21.5425 24.8889C21.6583 24.9587 21.7981 24.9802 21.9304 24.9485C22.0626 24.9168 22.1763 24.8346 22.2459 24.7204C22.378 24.5048 22.5481 24.2249 22.7335 23.9251C24.0414 21.8191 25.3569 22.0768 27.7288 23.1818L31.0023 24.7006C31.1263 24.7581 31.2689 24.7643 31.3976 24.7176C31.5263 24.6709 31.6302 24.5754 31.6855 24.4528L33.2575 20.9841C33.3685 20.7364 33.2555 20.4475 33.0035 20.335C32.3127 20.0179 30.9388 19.3861 29.7021 18.8038C25.2528 16.6954 21.4713 16.8316 18.5788 21.4227Z" fill="#2684FF"/>
+<path d="M33.3822 13.5507C33.5473 13.2881 33.7327 12.9834 33.8901 12.7405C34.031 12.5082 33.9554 12.2085 33.72 12.0666L30.4185 10.0845C30.3017 10.0078 30.1574 9.98177 30.0202 10.0128C29.883 10.0438 29.7651 10.129 29.6947 10.2481C29.5627 10.4636 29.3925 10.7436 29.2072 11.0434C27.8993 13.1494 26.5838 12.8917 24.2118 11.7867L20.9485 10.2753C20.8245 10.2177 20.6819 10.2116 20.5532 10.2583C20.4245 10.3049 20.3207 10.4005 20.2653 10.5231L18.6934 13.9917C18.5823 14.2395 18.6953 14.5283 18.9473 14.6409C19.6381 14.958 21.012 15.5898 22.2487 16.1721C26.7082 18.278 30.4896 18.1368 33.3822 13.5507Z" fill="#2684FF"/>
+</svg>
diff --git a/public/img/resourses/training1.svg b/public/img/resourses/training1.svg
new file mode 100644
index 0000000..fcbea65
--- /dev/null
+++ b/public/img/resourses/training1.svg
@@ -0,0 +1,21 @@
+<svg width="300" height="200" viewBox="0 0 300 200" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="300" height="200" rx="10" fill="#F0F0F0"/>
+<rect x="50.5" y="10.5" width="64" height="62" rx="9.5" fill="white" stroke="#2D2D2D"/>
+<rect x="60.5" y="17.5" width="64" height="62" rx="9.5" fill="#F0F0F0" stroke="#2D2D2D"/>
+<rect x="71.5" y="22.5" width="64" height="62" rx="9.5" fill="#2D2D2D" stroke="#2D2D2D"/>
+<rect x="85.5" y="25.5" width="64" height="62" rx="9.5" fill="white" stroke="#2D2D2D"/>
+<rect x="97.5" y="30.5" width="64" height="62" rx="9.5" fill="white" stroke="#2D2D2D"/>
+<rect x="112.5" y="35.5" width="64" height="62" rx="9.5" fill="#E6E6E6" stroke="#2D2D2D"/>
+<rect x="129.5" y="39.5" width="64" height="62" rx="9.5" fill="white" stroke="#2D2D2D"/>
+<rect x="146.5" y="45.5" width="64" height="62" rx="9.5" fill="white" stroke="#2D2D2D"/>
+<rect x="164.5" y="51.5" width="64" height="62" rx="9.5" fill="#2D2D2D" stroke="#2D2D2D"/>
+<rect x="185.5" y="57.5" width="64" height="62" rx="9.5" fill="#E6E6E6" stroke="#2D2D2D"/>
+<rect x="177.5" y="68.5" width="64" height="62" rx="9.5" fill="white" stroke="#2D2D2D"/>
+<rect x="164.5" y="77.5" width="64" height="62" rx="9.5" fill="white" stroke="#2D2D2D"/>
+<rect x="153.5" y="88.5" width="64" height="62" rx="9.5" fill="#E6E6E6" stroke="#2D2D2D"/>
+<rect x="140.5" y="100.5" width="64" height="62" rx="9.5" fill="white" stroke="#2D2D2D"/>
+<rect x="115.5" y="119.5" width="64" height="62" rx="9.5" fill="white" stroke="#2D2D2D"/>
+<path d="M171 194L161 157L199.5 167L187 176L196 185.5L190 191.5L180 182L171 194Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M66 142.5L65.9982 142.5L65.9928 142.5L65.9838 142.5L65.9712 142.501L65.9551 142.502L65.9353 142.503L65.9121 142.504L65.8852 142.506L65.8549 142.509L65.821 142.512L65.7837 142.516L65.743 142.521L65.6988 142.527L65.6512 142.534L65.6003 142.542L65.546 142.551L65.4885 142.56L65.4277 142.572L65.3637 142.584L65.2966 142.598L65.2264 142.613L65.1531 142.63L65.0767 142.648L64.9975 142.668L64.9153 142.689L64.8302 142.712L64.7424 142.737L64.6519 142.764L64.5587 142.792L64.4629 142.823L64.3645 142.855L64.2637 142.889L64.1604 142.925L64.0549 142.964L63.9471 143.004L63.8371 143.046L63.7249 143.091L63.6108 143.138L63.4946 143.187L63.3766 143.238L63.2568 143.292L63.1352 143.347L63.012 143.406L62.8873 143.466L62.761 143.529L62.6334 143.594L62.5044 143.661L62.3742 143.731L62.2429 143.803L62.1104 143.877L61.977 143.954L61.8428 144.033L61.7076 144.115L61.5718 144.199L61.4354 144.285L61.2983 144.373L61.1608 144.464L61.023 144.557L60.8848 144.653L60.7464 144.75L60.6079 144.85L60.4693 144.952L60.3308 145.056L60.1924 145.162L60.0542 145.271L59.9163 145.381L59.7787 145.493L59.6416 145.608L59.505 145.724L59.369 145.842L59.2337 145.962L59.0991 146.084L58.9654 146.207L58.8325 146.332L58.7007 146.459L58.5698 146.587L58.4401 146.717L58.3115 146.848L58.1842 146.981L58.0582 147.114L57.9335 147.249L57.8103 147.386L57.6885 147.523L57.5683 147.661L57.4497 147.8L57.3327 147.941L57.2174 148.081L57.1039 148.223L56.9922 148.365L56.8823 148.508L56.7742 148.651L56.6681 148.795L56.564 148.939L56.4619 149.083L56.3618 149.227L56.2637 149.372L56.1678 149.516L56.0739 149.66L55.9822 149.804L55.8927 149.948L55.8054 150.091L55.7203 150.234L55.6373 150.376L55.5567 150.518L55.4782 150.658L55.402 150.798L55.3281 150.937L55.2564 151.075L55.187 151.212L55.1199 151.348L55.055 151.482L54.9924 151.616L54.932 151.747L54.8738 151.877L54.8179 152.006L54.7642 152.132L54.7126 152.257L54.6633 152.381L54.616 152.502L54.5709 152.621L54.5279 152.738L54.487 152.852L54.448 152.965L54.4111 153.075L54.3762 153.183L54.3432 153.288L54.3121 153.391L54.2828 153.491L54.2554 153.588L54.2297 153.683L54.2057 153.774L54.1834 153.863L54.1627 153.949L54.1436 154.032L54.126 154.112L54.1099 154.188L54.0952 154.262L54.0818 154.332L54.0697 154.399L54.0589 154.462L54.0492 154.522L54.0407 154.579L54.0331 154.633L54.0266 154.682L54.021 154.729L54.0162 154.771L54.0122 154.811L54.0089 154.846L54.0063 154.878L54.0042 154.906L54.0027 154.931L54.0015 154.952L54.0008 154.969L54.0003 154.982L54.0001 154.992L54 154.998L54 155L54 154.998L53.9999 154.993L53.9997 154.984L53.9993 154.971L53.9985 154.955L53.9975 154.934L53.996 154.91L53.994 154.883L53.9915 154.852L53.9883 154.817L53.9844 154.778L53.9798 154.736L53.9743 154.69L53.9679 154.641L53.9606 154.588L53.9522 154.532L53.9427 154.472L53.932 154.409L53.9201 154.343L53.907 154.273L53.8925 154.2L53.8766 154.124L53.8592 154.045L53.8404 153.962L53.82 153.877L53.7979 153.789L53.7742 153.697L53.7488 153.603L53.7216 153.506L53.6927 153.407L53.6618 153.305L53.6291 153.2L53.5945 153.092L53.5579 152.983L53.5193 152.871L53.4787 152.756L53.436 152.64L53.3912 152.521L53.3444 152.4L53.2953 152.277L53.2441 152.153L53.1907 152.026L53.1352 151.898L53.0774 151.768L53.0173 151.637L52.9551 151.504L52.8905 151.37L52.8238 151.234L52.7547 151.097L52.6834 150.959L52.6098 150.821L52.534 150.681L52.4559 150.54L52.3756 150.399L52.2931 150.256L52.2083 150.114L52.1213 149.971L52.0321 149.827L51.9408 149.683L51.8473 149.539L51.7517 149.395L51.6539 149.25L51.5542 149.106L51.4523 148.962L51.3485 148.818L51.2427 148.674L51.135 148.531L51.0254 148.388L50.914 148.246L50.8007 148.104L50.6857 147.963L50.569 147.823L50.4507 147.683L50.3307 147.545L50.2092 147.407L50.0862 147.271L49.9617 147.136L49.8359 147.002L49.7088 146.869L49.5804 146.738L49.4509 146.608L49.3202 146.479L49.1885 146.352L49.0558 146.227L48.9222 146.103L48.7877 145.981L48.6525 145.861L48.5166 145.743L48.3801 145.626L48.2431 145.511L48.1056 145.399L47.9677 145.288L47.8296 145.179L47.6912 145.073L47.5527 144.968L47.4141 144.866L47.2756 144.766L47.1372 144.668L46.999 144.572L46.8611 144.479L46.7235 144.388L46.5864 144.299L46.4498 144.212L46.3139 144.128L46.1787 144.046L46.0442 143.967L45.9107 143.889L45.7781 143.815L45.6466 143.742L45.5162 143.672L45.387 143.604L45.2592 143.539L45.1327 143.476L45.0077 143.415L44.8842 143.357L44.7624 143.3L44.6423 143.247L44.524 143.195L44.4076 143.146L44.2931 143.098L44.1806 143.053L44.0703 143.011L43.9621 142.97L43.8562 142.931L43.7526 142.895L43.6513 142.86L43.5526 142.828L43.4564 142.797L43.3627 142.768L43.2718 142.741L43.1835 142.716L43.098 142.693L43.0154 142.671L42.9356 142.651L42.8589 142.633L42.7851 142.616L42.7143 142.6L42.6467 142.586L42.5822 142.574L42.5209 142.562L42.4629 142.552L42.4081 142.543L42.3566 142.535L42.3085 142.528L42.2638 142.522L42.2225 142.517L42.1846 142.513L42.1502 142.51L42.1193 142.507L42.0919 142.505L42.0681 142.503L42.0478 142.502L42.0311 142.501L42.0179 142.5L42.0083 142.5L42.0024 142.5L42 142.5L42.0012 142.5L42.0061 142.5L42.0145 142.5L42.0265 142.499L42.0421 142.499L42.0612 142.497L42.084 142.496L42.1102 142.494L42.14 142.491L42.1733 142.488L42.21 142.484L42.2503 142.479L42.2939 142.474L42.3409 142.467L42.3913 142.46L42.4451 142.451L42.5021 142.441L42.5623 142.43L42.6258 142.418L42.6924 142.404L42.7622 142.389L42.835 142.373L42.9109 142.355L42.9897 142.335L43.0714 142.314L43.156 142.291L43.2434 142.267L43.3335 142.24L43.4263 142.212L43.5217 142.182L43.6196 142.15L43.7201 142.116L43.8229 142.081L43.9281 142.043L44.0356 142.003L44.1452 141.96L44.257 141.916L44.3709 141.87L44.4867 141.821L44.6044 141.77L44.724 141.717L44.8452 141.662L44.9682 141.604L45.0927 141.544L45.2187 141.481L45.3461 141.417L45.4749 141.35L45.6049 141.28L45.7361 141.209L45.8683 141.135L46.0016 141.058L46.1358 140.979L46.2707 140.898L46.4065 140.815L46.5428 140.729L46.6798 140.641L46.8172 140.55L46.955 140.458L47.0931 140.363L47.2315 140.265L47.37 140.166L47.5086 140.064L47.6471 139.961L47.7855 139.855L47.9238 139.747L48.0617 139.637L48.1993 139.525L48.3365 139.411L48.4732 139.295L48.6093 139.177L48.7447 139.057L48.8794 138.936L49.0133 138.813L49.1463 138.688L49.2784 138.561L49.4094 138.433L49.5393 138.304L49.668 138.173L49.7956 138.041L49.9218 137.907L50.0467 137.772L50.1702 137.636L50.2922 137.499L50.4126 137.361L50.5315 137.222L50.6487 137.082L50.7643 136.941L50.8781 136.799L50.9901 136.657L51.1003 136.515L51.2086 136.371L51.315 136.228L51.4195 136.084L51.5219 135.94L51.6224 135.796L51.7208 135.651L51.817 135.507L51.9112 135.363L52.0032 135.219L52.0931 135.075L52.1808 134.932L52.2663 134.789L52.3496 134.646L52.4306 134.505L52.5094 134.364L52.5859 134.224L52.6602 134.085L52.7322 133.946L52.802 133.809L52.8695 133.673L52.9347 133.539L52.9977 133.405L53.0585 133.274L53.117 133.143L53.1733 133.015L53.2274 132.887L53.2793 132.762L53.329 132.639L53.3765 132.517L53.422 132.398L53.4653 132.281L53.5066 132.166L53.5458 132.053L53.5831 131.942L53.6183 131.834L53.6516 131.728L53.683 131.625L53.7126 131.525L53.7403 131.427L53.7663 131.332L53.7906 131.24L53.8131 131.151L53.834 131.064L53.8534 130.981L53.8712 130.901L53.8876 130.824L53.9025 130.75L53.9161 130.679L53.9284 130.612L53.9394 130.548L53.9493 130.487L53.958 130.429L53.9657 130.376L53.9724 130.325L53.9781 130.278L53.983 130.235L53.9872 130.195L53.9906 130.159L53.9933 130.127L53.9954 130.098L53.9971 130.073L53.9983 130.051L53.9991 130.034L53.9996 130.02L53.9998 130.009L54 130.003L54 130L54 130.001L54 130.006L54.0002 130.014L54.0006 130.026L54.0013 130.042L54.0023 130.062L54.0037 130.085L54.0056 130.112L54.008 130.143L54.0111 130.178L54.0148 130.216L54.0194 130.257L54.0247 130.302L54.031 130.351L54.0382 130.403L54.0464 130.459L54.0557 130.518L54.0662 130.581L54.0778 130.646L54.0908 130.716L54.1051 130.788L54.1207 130.864L54.1379 130.942L54.1565 131.024L54.1766 131.109L54.1984 131.197L54.2219 131.288L54.247 131.381L54.2739 131.478L54.3026 131.577L54.3331 131.679L54.3655 131.783L54.3998 131.89L54.4361 132L54.4743 132.111L54.5146 132.225L54.557 132.342L54.6014 132.46L54.648 132.581L54.6967 132.703L54.7475 132.827L54.8006 132.954L54.8558 133.082L54.9132 133.211L54.9729 133.342L55.0348 133.475L55.099 133.609L55.1654 133.744L55.2341 133.881L55.305 134.018L55.3782 134.157L55.4537 134.297L55.5314 134.437L55.6114 134.579L55.6936 134.721L55.778 134.863L55.8647 135.006L55.9535 135.15L56.0445 135.294L56.1377 135.438L56.2329 135.582L56.3303 135.727L56.4298 135.871L56.5313 136.015L56.6348 136.159L56.7402 136.303L56.8476 136.446L56.9569 136.589L57.0681 136.732L57.1811 136.873L57.2958 137.015L57.4122 137.155L57.5303 137.294L57.65 137.433L57.7713 137.571L57.8941 137.707L58.0183 137.843L58.1439 137.977L58.2708 138.11L58.399 138.241L58.5284 138.372L58.6589 138.5L58.7904 138.628L58.923 138.753L59.0564 138.877L59.1908 138.999L59.3258 139.12L59.4616 139.239L59.598 139.355L59.735 139.47L59.8724 139.583L60.0102 139.694L60.1484 139.803L60.2867 139.91L60.4252 140.015L60.5638 140.118L60.7023 140.218L60.8407 140.316L60.979 140.412L61.117 140.506L61.2546 140.598L61.3918 140.687L61.5284 140.774L61.6645 140.859L61.7998 140.941L61.9344 141.021L62.0681 141.098L62.2008 141.174L62.3325 141.246L62.4631 141.317L62.5924 141.385L62.7205 141.451L62.8472 141.514L62.9725 141.575L63.0962 141.634L63.2183 141.691L63.3386 141.745L63.4572 141.797L63.574 141.847L63.6888 141.894L63.8016 141.94L63.9123 141.983L64.0208 142.024L64.1271 142.063L64.2311 142.1L64.3326 142.134L64.4318 142.167L64.5284 142.198L64.6225 142.227L64.7139 142.254L64.8026 142.28L64.8885 142.303L64.9716 142.325L65.0518 142.346L65.1291 142.364L65.2033 142.382L65.2746 142.397L65.3427 142.411L65.4077 142.424L65.4695 142.436L65.5281 142.446L65.5834 142.456L65.6353 142.464L65.684 142.471L65.7293 142.477L65.7711 142.482L65.8095 142.486L65.8445 142.49L65.8759 142.493L65.9039 142.495L65.9283 142.497L65.9492 142.498L65.9665 142.499L65.9802 142.499L65.9903 142.5L65.9969 142.5L65.9998 142.5L66 142.5Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M271 35.5L270.998 35.5L270.993 35.5001L270.984 35.5003L270.971 35.5008L270.955 35.5015L270.935 35.5026L270.912 35.5042L270.885 35.5063L270.855 35.509L270.821 35.5124L270.784 35.5165L270.743 35.5214L270.699 35.5272L270.651 35.5339L270.6 35.5417L270.546 35.5505L270.488 35.5605L270.428 35.5717L270.364 35.5842L270.297 35.598L270.226 35.6132L270.153 35.6299L270.077 35.6481L269.997 35.6678L269.915 35.6892L269.83 35.7123L269.742 35.7372L269.652 35.7638L269.559 35.7922L269.463 35.8226L269.365 35.8548L269.264 35.889L269.16 35.9253L269.055 35.9636L268.947 36.0039L268.837 36.0464L268.725 36.091L268.611 36.1379L268.495 36.1869L268.377 36.2381L268.257 36.2916L268.135 36.3474L268.012 36.4055L267.887 36.4659L267.761 36.5286L267.633 36.5937L267.504 36.6611L267.374 36.7308L267.243 36.8029L267.11 36.8774L266.977 36.9542L266.843 37.0334L266.708 37.1149L266.572 37.1988L266.435 37.285L266.298 37.3734L266.161 37.4642L266.023 37.5573L265.885 37.6526L265.746 37.7502L265.608 37.85L265.469 37.9519L265.331 38.0561L265.192 38.1623L265.054 38.2706L264.916 38.3809L264.779 38.4933L264.642 38.6076L264.505 38.7239L264.369 38.842L264.234 38.9619L264.099 39.0836L263.965 39.2071L263.833 39.3322L263.701 39.4589L263.57 39.5871L263.44 39.7169L263.312 39.848L263.184 39.9805L263.058 40.1144L262.934 40.2494L262.81 40.3856L262.689 40.5229L262.568 40.6612L262.45 40.8005L262.333 40.9406L262.217 41.0815L262.104 41.2231L261.992 41.3653L261.882 41.5081L261.774 41.6514L261.668 41.795L261.564 41.9389L261.462 42.0831L261.362 42.2274L261.264 42.3717L261.168 42.516L261.074 42.6602L260.982 42.8041L260.893 42.9478L260.805 43.091L260.72 43.2338L260.637 43.376L260.557 43.5176L260.478 43.6584L260.402 43.7983L260.328 43.9374L260.256 44.0754L260.187 44.2123L260.12 44.348L260.055 44.4825L259.992 44.6155L259.932 44.7472L259.874 44.8773L259.818 45.0057L259.764 45.1325L259.713 45.2574L259.663 45.3805L259.616 45.5017L259.571 45.6207L259.528 45.7377L259.487 45.8525L259.448 45.965L259.411 46.0751L259.376 46.1829L259.343 46.2881L259.312 46.3908L259.283 46.4908L259.255 46.5881L259.23 46.6826L259.206 46.7743L259.183 46.8631L259.163 46.949L259.144 47.0318L259.126 47.1116L259.11 47.1882L259.095 47.2616L259.082 47.3318L259.07 47.3987L259.059 47.4623L259.049 47.5225L259.041 47.5793L259.033 47.6326L259.027 47.6824L259.021 47.7287L259.016 47.7715L259.012 47.8106L259.009 47.8462L259.006 47.8781L259.004 47.9063L259.003 47.9309L259.002 47.9517L259.001 47.9688L259 47.9822L259 47.9919L259 47.9978L259 48L259 47.9984L259 47.9931L259 47.984L258.999 47.9712L258.999 47.9547L258.997 47.9344L258.996 47.9105L258.994 47.8828L258.991 47.8515L258.988 47.8165L258.984 47.778L258.98 47.7358L258.974 47.69L258.968 47.6408L258.961 47.588L258.952 47.5317L258.943 47.4721L258.932 47.409L258.92 47.3427L258.907 47.273L258.892 47.2001L258.877 47.124L258.859 47.0447L258.84 46.9624L258.82 46.877L258.798 46.7887L258.774 46.6974L258.749 46.6033L258.722 46.5065L258.693 46.4069L258.662 46.3046L258.629 46.1998L258.595 46.0925L258.558 45.9827L258.519 45.8706L258.479 45.7561L258.436 45.6395L258.391 45.5208L258.344 45.4L258.295 45.2772L258.244 45.1525L258.191 45.026L258.135 44.8978L258.077 44.768L258.017 44.6366L257.955 44.5038L257.891 44.3695L257.824 44.234L257.755 44.0973L257.683 43.9594L257.61 43.8205L257.534 43.6807L257.456 43.54L257.376 43.3986L257.293 43.2565L257.208 43.1138L257.121 42.9706L257.032 42.827L256.941 42.6831L256.847 42.539L256.752 42.3947L256.654 42.2504L256.554 42.1061L256.452 41.9619L256.349 41.8179L256.243 41.6742L256.135 41.5309L256.025 41.388L255.914 41.2457L255.801 41.104L255.686 40.963L255.569 40.8227L255.451 40.6833L255.331 40.5449L255.209 40.4074L255.086 40.271L254.962 40.1358L254.836 40.0018L254.709 39.869L254.58 39.7376L254.451 39.6077L254.32 39.4792L254.188 39.3522L254.056 39.2269L253.922 39.1032L253.788 38.9812L253.653 38.861L253.517 38.7426L253.38 38.626L253.243 38.5114L253.106 38.3987L252.968 38.288L252.83 38.1794L252.691 38.0728L252.553 37.9684L252.414 37.8661L252.276 37.766L252.137 37.668L251.999 37.5723L251.861 37.4789L251.723 37.3878L251.586 37.2989L251.45 37.2123L251.314 37.1281L251.179 37.0462L251.044 36.9667L250.911 36.8895L250.778 36.8146L250.647 36.7422L250.516 36.672L250.387 36.6043L250.259 36.5388L250.133 36.4757L250.008 36.415L249.884 36.3565L249.762 36.3004L249.642 36.2465L249.524 36.1949L249.408 36.1455L249.293 36.0984L249.181 36.0534L249.07 36.0105L248.962 35.9698L248.856 35.9312L248.753 35.8947L248.651 35.8601L248.553 35.8276L248.456 35.7969L248.363 35.7682L248.272 35.7413L248.184 35.7162L248.098 35.6928L248.015 35.6711L247.936 35.6511L247.859 35.6327L247.785 35.6157L247.714 35.6003L247.647 35.5863L247.582 35.5736L247.521 35.5622L247.463 35.552L247.408 35.543L247.357 35.5351L247.309 35.5282L247.264 35.5223L247.222 35.5172L247.185 35.513L247.15 35.5095L247.119 35.5067L247.092 35.5045L247.068 35.5029L247.048 35.5017L247.031 35.5009L247.018 35.5003L247.008 35.5001L247.002 35.5L247 35.5L247.001 35.4999L247.006 35.4999L247.014 35.4997L247.026 35.4992L247.042 35.4985L247.061 35.4975L247.084 35.496L247.11 35.4939L247.14 35.4913L247.173 35.4881L247.21 35.4841L247.25 35.4793L247.294 35.4737L247.341 35.4671L247.391 35.4595L247.445 35.4509L247.502 35.4411L247.562 35.4301L247.626 35.4178L247.692 35.4042L247.762 35.3892L247.835 35.3728L247.911 35.3548L247.99 35.3353L248.071 35.3142L248.156 35.2914L248.243 35.2668L248.333 35.2405L248.426 35.2123L248.522 35.1823L248.62 35.1504L248.72 35.1164L248.823 35.0805L248.928 35.0426L249.036 35.0026L249.145 34.9604L249.257 34.9161L249.371 34.8697L249.487 34.821L249.604 34.7701L249.724 34.7169L249.845 34.6615L249.968 34.6038L250.093 34.5438L250.219 34.4814L250.346 34.4167L250.475 34.3497L250.605 34.2803L250.736 34.2086L250.868 34.1345L251.002 34.0581L251.136 33.9793L251.271 33.8981L251.406 33.8146L251.543 33.7288L251.68 33.6407L251.817 33.5503L251.955 33.4576L252.093 33.3626L252.231 33.2654L252.37 33.166L252.509 33.0643L252.647 32.9606L252.786 32.8547L252.924 32.7467L253.062 32.6367L253.199 32.5246L253.337 32.4106L253.473 32.2947L253.609 32.1769L253.745 32.0572L253.879 31.9358L254.013 31.8126L254.146 31.6878L254.278 31.5613L254.409 31.4333L254.539 31.3038L254.668 31.1729L254.796 31.0406L254.922 30.9069L255.047 30.7721L255.17 30.6361L255.292 30.4989L255.413 30.3608L255.531 30.2217L255.649 30.0817L255.764 29.9409L255.878 29.7994L255.99 29.6573L256.1 29.5146L256.209 29.3714L256.315 29.2278L256.419 29.0839L256.522 28.9398L256.622 28.7955L256.721 28.6512L256.817 28.5069L256.911 28.3627L257.003 28.2187L257.093 28.075L257.181 27.9317L257.266 27.7888L257.35 27.6465L257.431 27.5048L257.509 27.3639L257.586 27.2238L257.66 27.0846L257.732 26.9464L257.802 26.8093L257.87 26.6734L257.935 26.5388L257.998 26.4055L258.058 26.2736L258.117 26.1433L258.173 26.0145L258.227 25.8875L258.279 25.7622L258.329 25.6389L258.377 25.5174L258.422 25.398L258.465 25.2807L258.507 25.1655L258.546 25.0527L258.583 24.9422L258.618 24.834L258.652 24.7284L258.683 24.6253L258.713 24.5249L258.74 24.4271L258.766 24.3321L258.791 24.24L258.813 24.1507L258.834 24.0644L258.853 23.9811L258.871 23.9008L258.888 23.8237L258.903 23.7498L258.916 23.6791L258.928 23.6116L258.939 23.5475L258.949 23.4868L258.958 23.4295L258.966 23.3756L258.972 23.3252L258.978 23.2783L258.983 23.235L258.987 23.1953L258.991 23.1591L258.993 23.1267L258.995 23.0978L258.997 23.0727L258.998 23.0513L258.999 23.0335L259 23.0196L259 23.0093L259 23.0028L259 23L259 23.001L259 23.0057L259 23.0142L259.001 23.0264L259.001 23.0423L259.002 23.062L259.004 23.0854L259.006 23.1124L259.008 23.1432L259.011 23.1776L259.015 23.2156L259.019 23.2572L259.025 23.3023L259.031 23.3511L259.038 23.4033L259.046 23.459L259.056 23.5181L259.066 23.5806L259.078 23.6464L259.091 23.7156L259.105 23.788L259.121 23.8636L259.138 23.9424L259.156 24.0242L259.177 24.1091L259.198 24.197L259.222 24.2878L259.247 24.3814L259.274 24.4778L259.303 24.577L259.333 24.6788L259.365 24.7832L259.4 24.8902L259.436 24.9996L259.474 25.1113L259.515 25.2254L259.557 25.3417L259.601 25.4601L259.648 25.5806L259.697 25.703L259.748 25.8274L259.801 25.9536L259.856 26.0815L259.913 26.2111L259.973 26.3423L260.035 26.4749L260.099 26.6089L260.165 26.7442L260.234 26.8808L260.305 27.0185L260.378 27.1572L260.454 27.2969L260.531 27.4374L260.611 27.5787L260.694 27.7207L260.778 27.8633L260.865 28.0064L260.953 28.15L261.044 28.2938L261.138 28.438L261.233 28.5822L261.33 28.7265L261.43 28.8709L261.531 29.0151L261.635 29.1591L261.74 29.3028L261.848 29.4462L261.957 29.5892L262.068 29.7316L262.181 29.8734L262.296 30.0145L262.412 30.1549L262.53 30.2944L262.65 30.433L262.771 30.5707L262.894 30.7072L263.018 30.8427L263.144 30.9769L263.271 31.1098L263.399 31.2414L263.528 31.3716L263.659 31.5004L263.79 31.6276L263.923 31.7532L264.056 31.8771L264.191 31.9994L264.326 32.1199L264.462 32.2386L264.598 32.3555L264.735 32.4704L264.872 32.5834L265.01 32.6944L265.148 32.8033L265.287 32.9102L265.425 33.015L265.564 33.1177L265.702 33.2181L265.841 33.3164L265.979 33.4125L266.117 33.5063L266.255 33.5978L266.392 33.687L266.528 33.7739L266.664 33.8585L266.8 33.9408L266.934 34.0207L267.068 34.0983L267.201 34.1735L267.333 34.2464L267.463 34.3169L267.592 34.385L267.721 34.4508L267.847 34.5143L267.972 34.5754L268.096 34.6342L268.218 34.6907L268.339 34.745L268.457 34.7969L268.574 34.8467L268.689 34.8942L268.802 34.9395L268.912 34.9827L269.021 35.0237L269.127 35.0627L269.231 35.0995L269.333 35.1344L269.432 35.1673L269.528 35.1982L269.622 35.2273L269.714 35.2545L269.803 35.2799L269.888 35.3035L269.972 35.3254L270.052 35.3457L270.129 35.3644L270.203 35.3816L270.275 35.3972L270.343 35.4115L270.408 35.4244L270.469 35.436L270.528 35.4464L270.583 35.4555L270.635 35.4636L270.684 35.4707L270.729 35.4768L270.771 35.4819L270.81 35.4863L270.844 35.4899L270.876 35.4928L270.904 35.4951L270.928 35.4968L270.949 35.4981L270.966 35.4989L270.98 35.4995L270.99 35.4998L270.997 35.4999L271 35.5L271 35.5Z" fill="#2D2D2D"/>
+</svg>
diff --git a/public/img/resourses/training2.svg b/public/img/resourses/training2.svg
new file mode 100644
index 0000000..00e34fd
--- /dev/null
+++ b/public/img/resourses/training2.svg
@@ -0,0 +1,29 @@
+<svg width="300" height="200" viewBox="0 0 300 200" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="300" height="200" rx="10" fill="#F0F0F0"/>
+<path d="M261.5 47C261.5 48.9903 260.29 50.9659 257.918 52.8352C255.552 54.7001 252.097 56.4014 247.783 57.8394C239.16 60.7136 227.216 62.5 214 62.5C200.784 62.5 188.84 60.7136 180.217 57.8394C175.903 56.4014 172.448 54.7001 170.082 52.8352C167.71 50.9659 166.5 48.9903 166.5 47C166.5 45.0097 167.71 43.0341 170.082 41.1648C172.448 39.2999 175.903 37.5986 180.217 36.1606C188.84 33.2864 200.784 31.5 214 31.5C227.216 31.5 239.16 33.2864 247.783 36.1606C252.097 37.5986 255.552 39.2999 257.918 41.1648C260.29 43.0341 261.5 45.0097 261.5 47Z" stroke="black"/>
+<path d="M261.5 72C261.5 73.9903 260.29 75.9659 257.918 77.8352C255.552 79.7001 252.097 81.4014 247.783 82.8394C239.16 85.7136 227.216 87.5 214 87.5C200.784 87.5 188.84 85.7136 180.217 82.8394C175.903 81.4014 172.448 79.7001 170.082 77.8352C167.71 75.9659 166.5 73.9903 166.5 72C166.5 70.0097 167.71 68.0341 170.082 66.1648C172.448 64.2999 175.903 62.5986 180.217 61.1606C188.84 58.2864 200.784 56.5 214 56.5C227.216 56.5 239.16 58.2864 247.783 61.1606C252.097 62.5986 255.552 64.2999 257.918 66.1648C260.29 68.0341 261.5 70.0097 261.5 72Z" stroke="black"/>
+<path d="M261.5 97C261.5 98.9903 260.29 100.966 257.918 102.835C255.552 104.7 252.097 106.401 247.783 107.839C239.16 110.714 227.216 112.5 214 112.5C200.784 112.5 188.84 110.714 180.217 107.839C175.903 106.401 172.448 104.7 170.082 102.835C167.71 100.966 166.5 98.9903 166.5 97C166.5 95.0097 167.71 93.0341 170.082 91.1648C172.448 89.2999 175.903 87.5986 180.217 86.1606C188.84 83.2864 200.784 81.5 214 81.5C227.216 81.5 239.16 83.2864 247.783 86.1606C252.097 87.5986 255.552 89.2999 257.918 91.1648C260.29 93.0341 261.5 95.0097 261.5 97Z" stroke="black"/>
+<path d="M261.5 123C261.5 124.99 260.29 126.966 257.918 128.835C255.552 130.7 252.097 132.401 247.783 133.839C239.16 136.714 227.216 138.5 214 138.5C200.784 138.5 188.84 136.714 180.217 133.839C175.903 132.401 172.448 130.7 170.082 128.835C167.71 126.966 166.5 124.99 166.5 123C166.5 121.01 167.71 119.034 170.082 117.165C172.448 115.3 175.903 113.599 180.217 112.161C188.84 109.286 200.784 107.5 214 107.5C227.216 107.5 239.16 109.286 247.783 112.161C252.097 113.599 255.552 115.3 257.918 117.165C260.29 119.034 261.5 121.01 261.5 123Z" stroke="black"/>
+<rect x="146.5" y="53.5" width="60" height="111" rx="9.5" fill="#2D2D2D" stroke="black"/>
+<path d="M191.985 53.9385V54.5692C191.985 57.3307 189.746 59.5692 186.985 59.5692H166.954C164.192 59.5692 161.954 57.3307 161.954 54.5692V53.9385" stroke="#F6F6F6"/>
+<rect x="50.5" y="77.5" width="94" height="70" rx="4.5" fill="white" stroke="black"/>
+<path d="M51 85H144" stroke="black"/>
+<circle cx="57.5" cy="81.5" r="1.5" fill="#2D2D2D"/>
+<circle cx="63.5" cy="81.5" r="1.5" fill="#2D2D2D"/>
+<circle cx="69.5" cy="81.5" r="1.5" fill="#2D2D2D"/>
+<rect x="57.5" y="72.5" width="94" height="70" rx="4.5" fill="white" stroke="black"/>
+<path d="M58 80H151" stroke="black"/>
+<circle cx="64.5" cy="76.5" r="1.5" fill="#2D2D2D"/>
+<circle cx="70.5" cy="76.5" r="1.5" fill="#2D2D2D"/>
+<circle cx="76.5" cy="76.5" r="1.5" fill="#2D2D2D"/>
+<rect x="65.5" y="68.5" width="94" height="70" rx="4.5" fill="white" stroke="black"/>
+<path d="M66 76H159" stroke="black"/>
+<circle cx="72.5" cy="72.5" r="1.5" fill="#2D2D2D"/>
+<circle cx="78.5" cy="72.5" r="1.5" fill="#2D2D2D"/>
+<circle cx="84.5" cy="72.5" r="1.5" fill="#2D2D2D"/>
+<rect x="87" y="89" width="19" height="10" rx="5" fill="#ED1C24"/>
+<rect x="91" y="114" width="19" height="10" rx="5" fill="#ED1C24"/>
+<path d="M100 98.5V98.5C100 101.538 102.462 104 105.5 104H122C125.038 104 127.5 101.538 127.5 98.5V98.5" stroke="#2D2D2D"/>
+<path d="M115 104.5V112C115 115.314 112.314 118 109 118V118" stroke="#2D2D2D"/>
+<rect x="116" y="89" width="19" height="10" rx="5" fill="#ED1C24"/>
+</svg>
diff --git a/public/img/resourses/training3.svg b/public/img/resourses/training3.svg
new file mode 100644
index 0000000..93fd17f
--- /dev/null
+++ b/public/img/resourses/training3.svg
@@ -0,0 +1,29 @@
+<svg width="300" height="200" viewBox="0 0 300 200" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="300" height="200" rx="10" fill="#F0F0F0"/>
+<path d="M90.342 95.25L109.592 128.592L90.342 161.934L51.842 161.934L32.592 128.592L51.842 95.25L90.342 95.25Z" fill="#2D2D2D"/>
+<circle cx="71.5" cy="128.5" r="18.5" stroke="white" stroke-width="2"/>
+<mask id="path-4-outside-1_101:59" maskUnits="userSpaceOnUse" x="66.9999" y="103" width="9" height="23" fill="black">
+<rect fill="white" x="66.9999" y="103" width="9" height="23"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M69.9999 122.5V106H72.9999V122.5H69.9999Z"/>
+</mask>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M69.9999 122.5V106H72.9999V122.5H69.9999Z" fill="white"/>
+<path d="M69.9999 106V103H66.9999V106H69.9999ZM69.9999 122.5H66.9999V125.5H69.9999V122.5ZM72.9999 106H75.9999V103H72.9999V106ZM72.9999 122.5V125.5H75.9999V122.5H72.9999ZM66.9999 106V122.5H72.9999V106H66.9999ZM72.9999 103H69.9999V109H72.9999V103ZM75.9999 122.5V106H69.9999V122.5H75.9999ZM69.9999 125.5H72.9999V119.5H69.9999V125.5Z" fill="#2D2D2D" mask="url(#path-4-outside-1_101:59)"/>
+<path d="M70 94.5V70C70 66.6863 72.6863 64 76 64H123.996C127.31 64 129.996 66.6863 129.996 70V139C129.996 142.314 132.682 145 135.996 145H163.076C166.389 145 169.076 142.314 169.076 139V84C169.076 80.6863 171.762 78 175.076 78H201" stroke="#2D2D2D"/>
+<path d="M199.77 102.315V40.0292C199.77 40.0292 207.233 46.2905 230.431 46.2905C253.628 46.2905 261.899 39.3136 261.899 39.3136V102.315C261.899 102.315 258.558 109.965 230.431 110.26C202.303 110.554 199.77 102.315 199.77 102.315Z" fill="white"/>
+<path d="M262.122 38.0636C262.122 39.225 261.386 40.4189 259.844 41.5816C258.31 42.7382 256.055 43.8013 253.215 44.7031C247.541 46.5047 239.642 47.6272 230.811 47.6272C221.98 47.6272 214.081 46.5047 208.406 44.7031C205.566 43.8013 203.312 42.7382 201.778 41.5816C200.236 40.4189 199.5 39.225 199.5 38.0636C199.5 36.9022 200.236 35.7083 201.778 34.5456C203.312 33.389 205.566 32.3258 208.406 31.4241C214.081 29.6225 221.98 28.5 230.811 28.5C239.642 28.5 247.541 29.6225 253.215 31.4241C256.055 32.3258 258.31 33.389 259.844 34.5456C261.386 35.7083 262.122 36.9022 262.122 38.0636Z" fill="white" stroke="#ED1C24"/>
+<path d="M199.607 38.6027L199.607 100.749" stroke="#ED1C24"/>
+<path d="M262.093 37.6913L262.021 100.814" stroke="#ED1C24"/>
+<path d="M262.01 100.749C262.01 106.087 248.041 110.414 230.809 110.414C213.577 110.414 199.607 106.087 199.607 100.749" stroke="#ED1C24"/>
+<path d="M262.01 58.5646C262.01 63.9024 248.041 68.2296 230.809 68.2296C213.577 68.2296 199.607 63.9024 199.607 58.5646" stroke="#ED1C24"/>
+<path d="M262.01 79.8021C262.01 85.14 248.041 89.4671 230.809 89.4671C213.577 89.4671 199.607 85.14 199.607 79.8021" stroke="#ED1C24"/>
+<path d="M197.5 120L186 131.5" stroke="#6E6E6E"/>
+<path d="M205.5 120L194 131.5" stroke="#6E6E6E"/>
+<path d="M213.5 120L202 131.5" stroke="#6E6E6E"/>
+<path d="M221.5 120L210 131.5" stroke="#6E6E6E"/>
+<path d="M229.5 120L218 131.5" stroke="#6E6E6E"/>
+<path d="M237.5 120L226 131.5" stroke="#6E6E6E"/>
+<path d="M245.5 120L234 131.5" stroke="#6E6E6E"/>
+<path d="M253.5 120L242 131.5" stroke="#6E6E6E"/>
+<path d="M261.5 120L250 131.5" stroke="#6E6E6E"/>
+<path d="M269.5 120L258 131.5" stroke="#6E6E6E"/>
+</svg>
diff --git a/public/img/resourses/video.png b/public/img/resourses/video.png
new file mode 100644
index 0000000..3c01551
--- /dev/null
+++ b/public/img/resourses/video.png
Binary files differ
diff --git a/public/img/usecases/arrow.svg b/public/img/usecases/arrow.svg
new file mode 100644
index 0000000..48f22d7
--- /dev/null
+++ b/public/img/usecases/arrow.svg
@@ -0,0 +1,4 @@
+<svg width="14" height="13" viewBox="0 0 14 13" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M1 6.49976H13" stroke="#0070CC" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M7 1L13 6.5L7 12" stroke="#0070CC" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"/>
+</svg>
diff --git a/public/img/usecases/database/hero-image.svg b/public/img/usecases/database/hero-image.svg
new file mode 100644
index 0000000..d7e640b
--- /dev/null
+++ b/public/img/usecases/database/hero-image.svg
@@ -0,0 +1,23 @@
+<svg width="673" height="441" viewBox="0 0 673 441" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M170 169.23L342.919 69.6143C352.49 64.1005 368.008 64.1005 377.579 69.6143L550.497 169.23" stroke="white"/>
+<path d="M776.243 105.646H413.676V207.814L413.771 207.814C413.771 225.768 438.796 240.217 488.848 269.114C538.9 298.012 563.926 312.46 595.024 312.46C626.122 312.46 651.148 298.012 701.199 269.114C751.251 240.217 776.277 225.768 776.277 207.814C776.277 207.435 776.265 207.057 776.243 206.681V105.646Z" fill="#0070CC" stroke="white"/>
+<path d="M488.848 44.346C538.9 15.4487 563.925 1 595.024 1C626.122 0.999999 651.147 15.4487 701.199 44.346C751.251 73.2433 776.277 87.692 776.277 105.646C776.277 123.601 751.251 138.05 701.199 166.947C651.147 195.844 626.122 210.293 595.024 210.293C563.925 210.293 538.9 195.844 488.848 166.947C438.796 138.05 413.771 123.601 413.771 105.646C413.771 87.692 438.796 73.2433 488.848 44.346Z" fill="#0070CC" stroke="white"/>
+<path d="M1.00003 122.324L44.8748 147.656L132.624 198.318L132.624 400.967L44.8748 350.305L1.00003 324.974L1.00003 122.324Z" fill="#0070CC" stroke="white"/>
+<rect width="202.649" height="202.649" transform="matrix(0.866025 -0.5 2.20305e-08 1 132.624 198.318)" fill="#0070CC" stroke="white"/>
+<path d="M176.499 20.9999L220.374 46.331L308.124 96.9933L132.624 198.318L44.8748 147.656L1.00004 122.324L176.499 20.9999Z" fill="#0070CC" stroke="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M18.078 157.275C17.5997 156.999 17.212 157.222 17.212 157.775V188.199C17.212 188.751 17.5997 189.422 18.078 189.699L24.2319 193.252L37.4058 200.858C37.8841 201.134 38.2719 200.91 38.2719 200.358L38.2719 169.934C38.2719 169.381 37.8841 168.71 37.4058 168.434L24.2319 160.828L18.078 157.275ZM18.078 236.308C17.5997 236.032 17.212 236.256 17.212 236.808L17.212 251.02C17.212 251.572 17.5997 252.244 18.078 252.52L114.626 308.262C115.104 308.538 115.492 308.314 115.492 307.762V293.55C115.492 292.997 115.104 292.326 114.626 292.05L18.078 236.308ZM18.078 264.679C17.5997 264.402 17.212 264.626 17.212 265.179L17.212 279.391C17.212 279.943 17.5997 280.614 18.078 280.891L114.626 336.632C115.104 336.908 115.492 336.685 115.492 336.132V321.92C115.492 321.368 115.104 320.696 114.626 320.42L18.078 264.679ZM17.212 293.55C17.212 292.997 17.5997 292.773 18.078 293.05L114.626 348.791C115.104 349.067 115.492 349.739 115.492 350.291V364.503C115.492 365.056 115.104 365.279 114.626 365.003L18.078 309.262C17.5997 308.985 17.212 308.314 17.212 307.762L17.212 293.55Z" fill="#0070CC"/>
+<path d="M18.078 157.275L17.828 157.708H17.828L18.078 157.275ZM18.078 189.699L18.328 189.266H18.328L18.078 189.699ZM24.2319 193.252L23.9819 193.685L24.2319 193.252ZM37.4058 200.858L37.1558 201.291L37.4058 200.858ZM38.2719 200.358H37.7719H38.2719ZM38.2719 169.934H38.7719H38.2719ZM37.4058 168.434L37.1558 168.867L37.4058 168.434ZM24.2319 160.828L24.4819 160.395L24.2319 160.828ZM17.212 236.808H16.712H17.212ZM18.078 236.308L17.828 236.741H17.828L18.078 236.308ZM17.212 251.02H16.712H17.212ZM18.078 252.52L17.828 252.953H17.828L18.078 252.52ZM114.626 308.262L114.376 308.695L114.626 308.262ZM114.626 292.05L114.376 292.483L114.626 292.05ZM17.212 265.179H16.712H17.212ZM18.078 264.679L17.828 265.112H17.828L18.078 264.679ZM17.212 279.391H16.712H17.212ZM18.078 280.891L18.328 280.457H18.328L18.078 280.891ZM114.626 336.632L114.376 337.065L114.626 336.632ZM114.626 320.42L114.876 319.987H114.876L114.626 320.42ZM18.078 293.05L18.328 292.617H18.328L18.078 293.05ZM17.212 293.55H16.712H17.212ZM114.626 348.791L114.376 349.224L114.626 348.791ZM114.626 365.003L114.376 365.436L114.626 365.003ZM18.078 309.262L18.328 308.828H18.328L18.078 309.262ZM17.212 307.762H16.712H17.212ZM17.712 157.775C17.712 157.693 17.7265 157.651 17.7335 157.635C17.7392 157.623 17.7366 157.635 17.7156 157.647C17.6946 157.659 17.683 157.656 17.6966 157.657C17.7132 157.658 17.7574 157.667 17.828 157.708L18.328 156.842C17.9977 156.651 17.5816 156.57 17.2156 156.781C16.8497 156.992 16.712 157.393 16.712 157.775H17.712ZM17.712 188.199V157.775H16.712V188.199H17.712ZM18.328 189.266C18.1827 189.182 18.0231 189.018 17.8986 188.802C17.7742 188.587 17.712 188.366 17.712 188.199H16.712C16.712 188.583 16.8436 188.975 17.0326 189.302C17.2216 189.629 17.4949 189.939 17.828 190.132L18.328 189.266ZM24.4819 192.819L18.328 189.266L17.828 190.132L23.9819 193.685L24.4819 192.819ZM37.6558 200.425L24.4819 192.819L23.9819 193.685L37.1558 201.291L37.6558 200.425ZM37.7719 200.358C37.7719 200.439 37.7574 200.482 37.7504 200.497C37.7446 200.509 37.7473 200.497 37.7682 200.485C37.7892 200.473 37.8008 200.477 37.7872 200.476C37.7707 200.474 37.7264 200.465 37.6558 200.425L37.1558 201.291C37.4861 201.481 37.9023 201.563 38.2682 201.351C38.6342 201.14 38.7719 200.739 38.7719 200.358H37.7719ZM37.7719 169.934L37.7719 200.358H38.7719L38.7719 169.934H37.7719ZM37.1558 168.867C37.3011 168.951 37.4607 169.115 37.5852 169.33C37.7097 169.546 37.7719 169.766 37.7719 169.934H38.7719C38.7719 169.549 38.6402 169.157 38.4512 168.83C38.2623 168.503 37.9889 168.193 37.6558 168.001L37.1558 168.867ZM23.9819 161.261L37.1558 168.867L37.6558 168.001L24.4819 160.395L23.9819 161.261ZM17.828 157.708L23.9819 161.261L24.4819 160.395L18.328 156.842L17.828 157.708ZM17.712 236.808C17.712 236.726 17.7265 236.684 17.7335 236.669C17.7392 236.656 17.7366 236.668 17.7156 236.68C17.6947 236.692 17.683 236.689 17.6966 236.69C17.7132 236.691 17.7574 236.7 17.828 236.741L18.328 235.875C17.9978 235.684 17.5816 235.603 17.2156 235.814C16.8497 236.025 16.712 236.427 16.712 236.808H17.712ZM17.712 251.02L17.712 236.808H16.712L16.712 251.02H17.712ZM18.328 252.087C18.1827 252.003 18.0231 251.839 17.8986 251.623C17.7742 251.408 17.712 251.188 17.712 251.02H16.712C16.712 251.404 16.8436 251.796 17.0326 252.123C17.2216 252.451 17.4949 252.761 17.828 252.953L18.328 252.087ZM114.876 307.829L18.328 252.087L17.828 252.953L114.376 308.695L114.876 307.829ZM114.992 307.762C114.992 307.843 114.977 307.886 114.97 307.901C114.964 307.913 114.967 307.901 114.988 307.889C115.009 307.877 115.021 307.881 115.007 307.88C114.99 307.878 114.946 307.869 114.876 307.829L114.376 308.695C114.706 308.885 115.122 308.966 115.488 308.755C115.854 308.544 115.992 308.143 115.992 307.762H114.992ZM114.992 293.55V307.762H115.992V293.55H114.992ZM114.376 292.483C114.521 292.566 114.68 292.73 114.805 292.946C114.929 293.162 114.992 293.382 114.992 293.55H115.992C115.992 293.165 115.86 292.773 115.671 292.446C115.482 292.119 115.209 291.809 114.876 291.617L114.376 292.483ZM17.828 236.741L114.376 292.483L114.876 291.617L18.328 235.875L17.828 236.741ZM17.712 265.179C17.712 265.097 17.7265 265.054 17.7335 265.039C17.7392 265.027 17.7366 265.039 17.7156 265.051C17.6947 265.063 17.683 265.059 17.6966 265.061C17.7132 265.062 17.7574 265.071 17.828 265.112L18.328 264.246C17.9978 264.055 17.5816 263.974 17.2156 264.185C16.8497 264.396 16.712 264.797 16.712 265.179H17.712ZM17.712 279.391L17.712 265.179H16.712L16.712 279.391H17.712ZM18.328 280.457C18.1827 280.374 18.0231 280.21 17.8986 279.994C17.7742 279.778 17.712 279.558 17.712 279.391H16.712C16.712 279.775 16.8436 280.167 17.0326 280.494C17.2216 280.821 17.495 281.131 17.828 281.324L18.328 280.457ZM114.876 336.199L18.328 280.457L17.828 281.324L114.376 337.065L114.876 336.199ZM114.992 336.132C114.992 336.214 114.977 336.256 114.97 336.272C114.964 336.284 114.967 336.272 114.988 336.26C115.009 336.248 115.021 336.251 115.007 336.25C114.99 336.249 114.946 336.24 114.876 336.199L114.376 337.065C114.706 337.256 115.122 337.337 115.488 337.126C115.854 336.915 115.992 336.514 115.992 336.132H114.992ZM114.992 321.92V336.132H115.992V321.92H114.992ZM114.375 320.853C114.521 320.937 114.68 321.101 114.805 321.317C114.929 321.532 114.992 321.753 114.992 321.92H115.992C115.992 321.536 115.86 321.144 115.671 320.817C115.482 320.489 115.209 320.18 114.876 319.987L114.375 320.853ZM17.828 265.112L114.376 320.853L114.876 319.987L18.328 264.246L17.828 265.112ZM18.328 292.617C17.9978 292.426 17.5816 292.345 17.2156 292.556C16.8497 292.767 16.712 293.168 16.712 293.55H17.712C17.712 293.468 17.7265 293.425 17.7335 293.41C17.7392 293.398 17.7366 293.41 17.7156 293.422C17.6947 293.434 17.683 293.43 17.6966 293.432C17.7132 293.433 17.7574 293.442 17.828 293.483L18.328 292.617ZM114.876 348.358L18.328 292.617L17.828 293.483L114.376 349.224L114.876 348.358ZM115.992 350.291C115.992 349.907 115.86 349.515 115.671 349.188C115.482 348.86 115.209 348.551 114.876 348.358L114.376 349.224C114.521 349.308 114.68 349.472 114.805 349.688C114.929 349.903 114.992 350.124 114.992 350.291H115.992ZM115.992 364.503V350.291H114.992V364.503H115.992ZM114.376 365.436C114.706 365.627 115.122 365.708 115.488 365.497C115.854 365.286 115.992 364.885 115.992 364.503H114.992C114.992 364.585 114.977 364.627 114.97 364.643C114.964 364.655 114.967 364.643 114.988 364.631C115.009 364.619 115.021 364.622 115.007 364.621C114.99 364.62 114.946 364.611 114.876 364.57L114.376 365.436ZM17.828 309.695L114.376 365.436L114.876 364.57L18.328 308.828L17.828 309.695ZM16.712 307.762C16.712 308.146 16.8436 308.538 17.0326 308.865C17.2216 309.192 17.495 309.502 17.828 309.695L18.328 308.828C18.1827 308.745 18.0231 308.581 17.8986 308.365C17.7742 308.149 17.712 307.929 17.712 307.762H16.712ZM16.712 293.55L16.712 307.762H17.712L17.712 293.55H16.712Z" fill="white"/>
+<path d="M214 256.324L257.875 281.656L345.624 332.318L345.624 534.967L257.875 484.305L214 458.974L214 256.324Z" fill="#0070CC" stroke="white"/>
+<rect width="202.649" height="202.649" transform="matrix(0.866025 -0.5 2.20305e-08 1 345.624 332.318)" fill="#0070CC" stroke="white"/>
+<path d="M389.499 155L433.374 180.331L521.124 230.993L345.624 332.318L257.875 281.656L214 256.324L389.499 155Z" fill="#0070CC" stroke="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M231.078 291.275C230.6 290.999 230.212 291.222 230.212 291.775V322.199C230.212 322.751 230.6 323.422 231.078 323.699L237.232 327.252L250.406 334.858C250.884 335.134 251.272 334.91 251.272 334.358L251.272 303.934C251.272 303.381 250.884 302.71 250.406 302.434L237.232 294.828L231.078 291.275ZM231.078 370.308C230.6 370.032 230.212 370.256 230.212 370.808L230.212 385.02C230.212 385.572 230.6 386.244 231.078 386.52L327.626 442.262C328.104 442.538 328.492 442.314 328.492 441.762V427.55C328.492 426.997 328.104 426.326 327.626 426.05L231.078 370.308ZM231.078 398.679C230.6 398.402 230.212 398.626 230.212 399.179L230.212 413.391C230.212 413.943 230.6 414.614 231.078 414.891L327.626 470.632C328.104 470.908 328.492 470.685 328.492 470.132V455.92C328.492 455.368 328.104 454.696 327.626 454.42L231.078 398.679ZM230.212 427.55C230.212 426.997 230.6 426.773 231.078 427.05L327.626 482.791C328.104 483.067 328.492 483.739 328.492 484.291V498.503C328.492 499.056 328.104 499.279 327.626 499.003L231.078 443.262C230.6 442.985 230.212 442.314 230.212 441.762L230.212 427.55Z" fill="#0070CC"/>
+<path d="M231.078 291.275L230.828 291.708H230.828L231.078 291.275ZM231.078 323.699L231.328 323.266H231.328L231.078 323.699ZM237.232 327.252L236.982 327.685L237.232 327.252ZM250.406 334.858L250.156 335.291L250.406 334.858ZM251.272 334.358H250.772H251.272ZM251.272 303.934H251.772H251.272ZM250.406 302.434L250.156 302.867L250.406 302.434ZM237.232 294.828L237.482 294.395L237.232 294.828ZM230.212 370.808H229.712H230.212ZM231.078 370.308L230.828 370.741H230.828L231.078 370.308ZM230.212 385.02H229.712H230.212ZM231.078 386.52L231.328 386.087H231.328L231.078 386.52ZM327.626 442.262L327.376 442.695L327.626 442.262ZM327.626 426.05L327.376 426.483L327.626 426.05ZM230.212 399.179H229.712H230.212ZM231.078 398.679L230.828 399.112H230.828L231.078 398.679ZM230.212 413.391H229.712H230.212ZM231.078 414.891L230.828 415.324H230.828L231.078 414.891ZM327.626 470.632L327.376 471.065L327.626 470.632ZM327.626 454.42L327.876 453.987H327.876L327.626 454.42ZM231.078 427.05L231.328 426.617H231.328L231.078 427.05ZM230.212 427.55H229.712H230.212ZM327.626 482.791L327.876 482.358H327.876L327.626 482.791ZM327.626 499.003L327.376 499.436L327.626 499.003ZM231.078 443.262L231.328 442.828H231.328L231.078 443.262ZM230.212 441.762H229.712H230.212ZM230.712 291.775C230.712 291.693 230.726 291.651 230.733 291.635C230.739 291.623 230.737 291.635 230.716 291.647C230.695 291.659 230.683 291.656 230.697 291.657C230.713 291.658 230.757 291.667 230.828 291.708L231.328 290.842C230.998 290.651 230.582 290.57 230.216 290.781C229.85 290.992 229.712 291.393 229.712 291.775H230.712ZM230.712 322.199V291.775H229.712V322.199H230.712ZM231.328 323.266C231.183 323.182 231.023 323.018 230.899 322.802C230.774 322.587 230.712 322.366 230.712 322.199H229.712C229.712 322.583 229.844 322.975 230.033 323.302C230.222 323.629 230.495 323.939 230.828 324.132L231.328 323.266ZM237.482 326.819L231.328 323.266L230.828 324.132L236.982 327.685L237.482 326.819ZM250.656 334.425L237.482 326.819L236.982 327.685L250.156 335.291L250.656 334.425ZM250.772 334.358C250.772 334.439 250.757 334.482 250.75 334.497C250.745 334.509 250.747 334.497 250.768 334.485C250.789 334.473 250.801 334.477 250.787 334.476C250.771 334.474 250.726 334.465 250.656 334.425L250.156 335.291C250.486 335.481 250.902 335.563 251.268 335.351C251.634 335.14 251.772 334.739 251.772 334.358H250.772ZM250.772 303.934L250.772 334.358H251.772L251.772 303.934H250.772ZM250.156 302.867C250.301 302.951 250.461 303.115 250.585 303.33C250.71 303.546 250.772 303.766 250.772 303.934H251.772C251.772 303.549 251.64 303.157 251.451 302.83C251.262 302.503 250.989 302.193 250.656 302.001L250.156 302.867ZM236.982 295.261L250.156 302.867L250.656 302.001L237.482 294.395L236.982 295.261ZM230.828 291.708L236.982 295.261L237.482 294.395L231.328 290.842L230.828 291.708ZM230.712 370.808C230.712 370.726 230.726 370.684 230.734 370.669C230.739 370.656 230.737 370.668 230.716 370.68C230.695 370.692 230.683 370.689 230.697 370.69C230.713 370.691 230.757 370.7 230.828 370.741L231.328 369.875C230.998 369.684 230.582 369.603 230.216 369.814C229.85 370.025 229.712 370.427 229.712 370.808H230.712ZM230.712 385.02L230.712 370.808H229.712L229.712 385.02H230.712ZM231.328 386.087C231.183 386.003 231.023 385.839 230.899 385.623C230.774 385.408 230.712 385.188 230.712 385.02H229.712C229.712 385.404 229.844 385.796 230.033 386.123C230.222 386.451 230.495 386.761 230.828 386.953L231.328 386.087ZM327.876 441.829L231.328 386.087L230.828 386.953L327.376 442.695L327.876 441.829ZM327.992 441.762C327.992 441.843 327.977 441.886 327.97 441.901C327.964 441.913 327.967 441.901 327.988 441.889C328.009 441.877 328.021 441.881 328.007 441.88C327.99 441.878 327.946 441.869 327.876 441.829L327.376 442.695C327.706 442.885 328.122 442.966 328.488 442.755C328.854 442.544 328.992 442.143 328.992 441.762H327.992ZM327.992 427.55V441.762H328.992V427.55H327.992ZM327.376 426.483C327.521 426.566 327.68 426.73 327.805 426.946C327.929 427.162 327.992 427.382 327.992 427.55H328.992C328.992 427.165 328.86 426.773 328.671 426.446C328.482 426.119 328.209 425.809 327.876 425.617L327.376 426.483ZM230.828 370.741L327.376 426.483L327.876 425.617L231.328 369.875L230.828 370.741ZM230.712 399.179C230.712 399.097 230.726 399.054 230.734 399.039C230.739 399.027 230.737 399.039 230.716 399.051C230.695 399.063 230.683 399.059 230.697 399.061C230.713 399.062 230.757 399.071 230.828 399.112L231.328 398.246C230.998 398.055 230.582 397.974 230.216 398.185C229.85 398.396 229.712 398.797 229.712 399.179H230.712ZM230.712 413.391L230.712 399.179H229.712L229.712 413.391H230.712ZM231.328 414.458C231.183 414.374 231.023 414.21 230.899 413.994C230.774 413.778 230.712 413.558 230.712 413.391H229.712C229.712 413.775 229.844 414.167 230.033 414.494C230.222 414.821 230.495 415.131 230.828 415.324L231.328 414.458ZM327.876 470.199L231.328 414.458L230.828 415.324L327.376 471.065L327.876 470.199ZM327.992 470.132C327.992 470.214 327.977 470.256 327.97 470.272C327.964 470.284 327.967 470.272 327.988 470.26C328.009 470.248 328.021 470.251 328.007 470.25C327.99 470.249 327.946 470.24 327.876 470.199L327.376 471.065C327.706 471.256 328.122 471.337 328.488 471.126C328.854 470.915 328.992 470.514 328.992 470.132H327.992ZM327.992 455.92V470.132H328.992V455.92H327.992ZM327.376 454.853C327.521 454.937 327.68 455.101 327.805 455.317C327.929 455.532 327.992 455.753 327.992 455.92H328.992C328.992 455.536 328.86 455.144 328.671 454.817C328.482 454.489 328.209 454.18 327.876 453.987L327.376 454.853ZM230.828 399.112L327.376 454.853L327.876 453.987L231.328 398.246L230.828 399.112ZM231.328 426.617C230.998 426.426 230.582 426.345 230.216 426.556C229.85 426.767 229.712 427.168 229.712 427.55H230.712C230.712 427.468 230.726 427.425 230.734 427.41C230.739 427.398 230.737 427.41 230.716 427.422C230.695 427.434 230.683 427.43 230.697 427.432C230.713 427.433 230.757 427.442 230.828 427.483L231.328 426.617ZM327.876 482.358L231.328 426.617L230.828 427.483L327.376 483.224L327.876 482.358ZM328.992 484.291C328.992 483.907 328.86 483.515 328.671 483.188C328.482 482.86 328.209 482.551 327.876 482.358L327.376 483.224C327.521 483.308 327.68 483.472 327.805 483.688C327.929 483.903 327.992 484.124 327.992 484.291H328.992ZM328.992 498.503V484.291H327.992V498.503H328.992ZM327.376 499.436C327.706 499.627 328.122 499.708 328.488 499.497C328.854 499.286 328.992 498.885 328.992 498.503H327.992C327.992 498.585 327.977 498.627 327.97 498.643C327.964 498.655 327.967 498.643 327.988 498.631C328.009 498.619 328.021 498.622 328.007 498.621C327.99 498.62 327.946 498.611 327.876 498.57L327.376 499.436ZM230.828 443.695L327.376 499.436L327.876 498.57L231.328 442.828L230.828 443.695ZM229.712 441.762C229.712 442.146 229.844 442.538 230.033 442.865C230.222 443.192 230.495 443.502 230.828 443.695L231.328 442.828C231.183 442.745 231.023 442.581 230.899 442.365C230.774 442.149 230.712 441.929 230.712 441.762H229.712ZM229.712 427.55L229.712 441.762H230.712L230.712 427.55H229.712Z" fill="white"/>
+<path d="M451 396.324L494.875 421.656L582.624 472.318L582.624 674.967L494.875 624.305L451 598.974L451 396.324Z" fill="#0070CC" stroke="white"/>
+<rect width="202.649" height="202.649" transform="matrix(0.866025 -0.5 2.20305e-08 1 582.624 472.318)" fill="#0070CC" stroke="white"/>
+<path d="M626.499 295L670.374 320.331L758.124 370.993L582.624 472.318L494.875 421.656L451 396.324L626.499 295Z" fill="#0070CC" stroke="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M468.078 431.275C467.6 430.999 467.212 431.222 467.212 431.775V462.199C467.212 462.751 467.6 463.422 468.078 463.699L474.232 467.252L487.406 474.858C487.884 475.134 488.272 474.91 488.272 474.358L488.272 443.934C488.272 443.381 487.884 442.71 487.406 442.434L474.232 434.828L468.078 431.275ZM468.078 510.308C467.6 510.032 467.212 510.256 467.212 510.808L467.212 525.02C467.212 525.572 467.6 526.244 468.078 526.52L564.626 582.262C565.104 582.538 565.492 582.314 565.492 581.762V567.55C565.492 566.997 565.104 566.326 564.626 566.05L468.078 510.308ZM468.078 538.679C467.6 538.402 467.212 538.626 467.212 539.179L467.212 553.391C467.212 553.943 467.6 554.614 468.078 554.891L564.626 610.632C565.104 610.908 565.492 610.685 565.492 610.132V595.92C565.492 595.368 565.104 594.696 564.626 594.42L468.078 538.679ZM467.212 567.55C467.212 566.997 467.6 566.773 468.078 567.05L564.626 622.791C565.104 623.067 565.492 623.739 565.492 624.291V638.503C565.492 639.056 565.104 639.279 564.626 639.003L468.078 583.262C467.6 582.985 467.212 582.314 467.212 581.762L467.212 567.55Z" fill="#0070CC"/>
+<path d="M468.078 431.275L467.828 431.708H467.828L468.078 431.275ZM468.078 463.699L468.328 463.266H468.328L468.078 463.699ZM474.232 467.252L473.982 467.685L474.232 467.252ZM487.406 474.858L487.156 475.291L487.406 474.858ZM488.272 474.358H487.772H488.272ZM488.272 443.934H488.772H488.272ZM487.406 442.434L487.156 442.867L487.406 442.434ZM474.232 434.828L474.482 434.395L474.232 434.828ZM467.212 510.808H466.712H467.212ZM468.078 510.308L467.828 510.741H467.828L468.078 510.308ZM467.212 525.02H466.712H467.212ZM468.078 526.52L468.328 526.087H468.328L468.078 526.52ZM564.626 582.262L564.376 582.695L564.626 582.262ZM564.626 566.05L564.376 566.483L564.626 566.05ZM467.212 539.179H466.712H467.212ZM468.078 538.679L467.828 539.112H467.828L468.078 538.679ZM467.212 553.391H466.712H467.212ZM468.078 554.891L467.828 555.324H467.828L468.078 554.891ZM564.626 610.632L564.376 611.065L564.626 610.632ZM564.626 594.42L564.876 593.987H564.876L564.626 594.42ZM468.078 567.05L468.328 566.617H468.328L468.078 567.05ZM467.212 567.55H466.712H467.212ZM564.626 622.791L564.876 622.358H564.876L564.626 622.791ZM564.626 639.003L564.376 639.436L564.626 639.003ZM468.078 583.262L468.328 582.828H468.328L468.078 583.262ZM467.212 581.762H466.712H467.212ZM467.712 431.775C467.712 431.693 467.726 431.651 467.733 431.635C467.739 431.623 467.737 431.635 467.716 431.647C467.695 431.659 467.683 431.656 467.697 431.657C467.713 431.658 467.757 431.667 467.828 431.708L468.328 430.842C467.998 430.651 467.582 430.57 467.216 430.781C466.85 430.992 466.712 431.393 466.712 431.775H467.712ZM467.712 462.199V431.775H466.712V462.199H467.712ZM468.328 463.266C468.183 463.182 468.023 463.018 467.899 462.802C467.774 462.587 467.712 462.366 467.712 462.199H466.712C466.712 462.583 466.844 462.975 467.033 463.302C467.222 463.629 467.495 463.939 467.828 464.132L468.328 463.266ZM474.482 466.819L468.328 463.266L467.828 464.132L473.982 467.685L474.482 466.819ZM487.656 474.425L474.482 466.819L473.982 467.685L487.156 475.291L487.656 474.425ZM487.772 474.358C487.772 474.439 487.757 474.482 487.75 474.497C487.745 474.509 487.747 474.497 487.768 474.485C487.789 474.473 487.801 474.477 487.787 474.476C487.771 474.474 487.726 474.465 487.656 474.425L487.156 475.291C487.486 475.481 487.902 475.563 488.268 475.351C488.634 475.14 488.772 474.739 488.772 474.358H487.772ZM487.772 443.934L487.772 474.358H488.772L488.772 443.934H487.772ZM487.156 442.867C487.301 442.951 487.461 443.115 487.585 443.33C487.71 443.546 487.772 443.766 487.772 443.934H488.772C488.772 443.549 488.64 443.157 488.451 442.83C488.262 442.503 487.989 442.193 487.656 442.001L487.156 442.867ZM473.982 435.261L487.156 442.867L487.656 442.001L474.482 434.395L473.982 435.261ZM467.828 431.708L473.982 435.261L474.482 434.395L468.328 430.842L467.828 431.708ZM467.712 510.808C467.712 510.726 467.726 510.684 467.734 510.669C467.739 510.656 467.737 510.668 467.716 510.68C467.695 510.692 467.683 510.689 467.697 510.69C467.713 510.691 467.757 510.7 467.828 510.741L468.328 509.875C467.998 509.684 467.582 509.603 467.216 509.814C466.85 510.025 466.712 510.427 466.712 510.808H467.712ZM467.712 525.02L467.712 510.808H466.712L466.712 525.02H467.712ZM468.328 526.087C468.183 526.003 468.023 525.839 467.899 525.623C467.774 525.408 467.712 525.188 467.712 525.02H466.712C466.712 525.404 466.844 525.796 467.033 526.123C467.222 526.451 467.495 526.761 467.828 526.953L468.328 526.087ZM564.876 581.829L468.328 526.087L467.828 526.953L564.376 582.695L564.876 581.829ZM564.992 581.762C564.992 581.843 564.977 581.886 564.97 581.901C564.964 581.913 564.967 581.901 564.988 581.889C565.009 581.877 565.021 581.881 565.007 581.88C564.99 581.878 564.946 581.869 564.876 581.829L564.376 582.695C564.706 582.885 565.122 582.966 565.488 582.755C565.854 582.544 565.992 582.143 565.992 581.762H564.992ZM564.992 567.55V581.762H565.992V567.55H564.992ZM564.376 566.483C564.521 566.566 564.68 566.73 564.805 566.946C564.929 567.162 564.992 567.382 564.992 567.55H565.992C565.992 567.165 565.86 566.773 565.671 566.446C565.482 566.119 565.209 565.809 564.876 565.617L564.376 566.483ZM467.828 510.741L564.376 566.483L564.876 565.617L468.328 509.875L467.828 510.741ZM467.712 539.179C467.712 539.097 467.726 539.054 467.734 539.039C467.739 539.027 467.737 539.039 467.716 539.051C467.695 539.063 467.683 539.059 467.697 539.061C467.713 539.062 467.757 539.071 467.828 539.112L468.328 538.246C467.998 538.055 467.582 537.974 467.216 538.185C466.85 538.396 466.712 538.797 466.712 539.179H467.712ZM467.712 553.391L467.712 539.179H466.712L466.712 553.391H467.712ZM468.328 554.458C468.183 554.374 468.023 554.21 467.899 553.994C467.774 553.778 467.712 553.558 467.712 553.391H466.712C466.712 553.775 466.844 554.167 467.033 554.494C467.222 554.821 467.495 555.131 467.828 555.324L468.328 554.458ZM564.876 610.199L468.328 554.458L467.828 555.324L564.376 611.065L564.876 610.199ZM564.992 610.132C564.992 610.214 564.977 610.256 564.97 610.272C564.964 610.284 564.967 610.272 564.988 610.26C565.009 610.248 565.021 610.251 565.007 610.25C564.99 610.249 564.946 610.24 564.876 610.199L564.376 611.065C564.706 611.256 565.122 611.337 565.488 611.126C565.854 610.915 565.992 610.514 565.992 610.132H564.992ZM564.992 595.92V610.132H565.992V595.92H564.992ZM564.376 594.853C564.521 594.937 564.68 595.101 564.805 595.317C564.929 595.532 564.992 595.753 564.992 595.92H565.992C565.992 595.536 565.86 595.144 565.671 594.817C565.482 594.489 565.209 594.18 564.876 593.987L564.376 594.853ZM467.828 539.112L564.376 594.853L564.876 593.987L468.328 538.246L467.828 539.112ZM468.328 566.617C467.998 566.426 467.582 566.345 467.216 566.556C466.85 566.767 466.712 567.168 466.712 567.55H467.712C467.712 567.468 467.726 567.425 467.734 567.41C467.739 567.398 467.737 567.41 467.716 567.422C467.695 567.434 467.683 567.43 467.697 567.432C467.713 567.433 467.757 567.442 467.828 567.483L468.328 566.617ZM564.876 622.358L468.328 566.617L467.828 567.483L564.376 623.224L564.876 622.358ZM565.992 624.291C565.992 623.907 565.86 623.515 565.671 623.188C565.482 622.86 565.209 622.551 564.876 622.358L564.376 623.224C564.521 623.308 564.68 623.472 564.805 623.688C564.929 623.903 564.992 624.124 564.992 624.291H565.992ZM565.992 638.503V624.291H564.992V638.503H565.992ZM564.376 639.436C564.706 639.627 565.122 639.708 565.488 639.497C565.854 639.286 565.992 638.885 565.992 638.503H564.992C564.992 638.585 564.977 638.627 564.97 638.643C564.964 638.655 564.967 638.643 564.988 638.631C565.009 638.619 565.021 638.622 565.007 638.621C564.99 638.62 564.946 638.611 564.876 638.57L564.376 639.436ZM467.828 583.695L564.376 639.436L564.876 638.57L468.328 582.828L467.828 583.695ZM466.712 581.762C466.712 582.146 466.844 582.538 467.033 582.865C467.222 583.192 467.495 583.502 467.828 583.695L468.328 582.828C468.183 582.745 468.023 582.581 467.899 582.365C467.774 582.149 467.712 581.929 467.712 581.762H466.712ZM466.712 567.55L466.712 581.762H467.712L467.712 567.55H466.712Z" fill="white"/>
+<path d="M697.356 110.344C691.365 116.335 679.03 118.303 663.631 116.404C648.29 114.513 630.145 108.802 612.855 99.7061C595.566 90.6098 582.449 79.8721 575.206 69.8815C567.936 59.8537 566.685 50.7377 572.676 44.7469C578.667 38.756 591.002 36.788 606.401 38.6867C621.743 40.5783 639.887 46.2885 657.177 55.3848C674.466 64.4811 687.583 75.2189 694.826 85.2095C702.096 95.2372 703.347 104.353 697.356 110.344Z" stroke="white"/>
+<path d="M665.766 131.404C659.775 137.395 647.44 139.363 632.041 137.465C616.699 135.573 598.554 129.863 581.265 120.766C563.976 111.67 550.858 100.932 543.616 90.9418C536.346 80.914 535.095 71.798 541.086 65.8072C547.077 59.8163 559.412 57.8483 574.81 59.747C590.152 61.6387 608.297 67.3488 625.586 76.4451C642.876 85.5414 655.993 96.2792 663.236 106.27C670.505 116.298 671.756 125.414 665.766 131.404Z" stroke="white"/>
+<path d="M620.636 155.473C614.646 161.464 602.31 163.432 586.912 161.534C571.57 159.642 553.425 153.932 536.136 144.835C518.847 135.739 505.729 125.001 498.486 115.011C491.217 104.983 489.966 95.867 495.957 89.8762C501.947 83.8853 514.282 81.9173 529.681 83.816C545.023 85.7076 563.168 91.4178 580.457 100.514C597.746 109.61 610.864 120.348 618.107 130.339C625.376 140.367 626.627 149.482 620.636 155.473Z" stroke="white"/>
+</svg>
diff --git a/public/img/usecases/database/image.svg b/public/img/usecases/database/image.svg
new file mode 100644
index 0000000..4bc116d
--- /dev/null
+++ b/public/img/usecases/database/image.svg
@@ -0,0 +1,182 @@
+<svg width="620" height="371" viewBox="0 0 620 371" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="620" height="371" rx="10" fill="#F6F6F6"/>
+<path d="M24 112.519C24 102.51 32.1139 94.3965 42.1228 94.3965H579.877C589.886 94.3965 598 102.51 598 112.519C598 122.528 589.886 130.642 579.877 130.642H42.1228C32.1139 130.642 24 122.528 24 112.519Z" fill="#EBEBEB"/>
+<path d="M93.2501 103.599L114.77 109.294L114.77 78.3438L93.2501 72.649L72.1079 79.2297L72.1079 110.052L93.2501 103.599Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M71.4489 110.942L71.4489 78.7446L93.2354 71.9634L115.429 77.8365L115.429 110.15L93.263 104.284L71.4489 110.942ZM72.7669 109.161L93.2373 102.914L114.111 108.438L114.111 78.8511L93.2649 73.3346L72.7669 79.7148L72.7669 109.161Z" fill="#2D2D2D"/>
+<path d="M93.6277 85.1596L72.1079 79.4647L72.1079 117.206L93.6277 122.901L114.77 116.32L114.77 78.7074L93.6277 85.1596Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M115.429 77.8174L115.429 116.805L93.6425 123.586L71.4489 117.713L71.4489 78.6088L93.6148 84.4746L115.429 77.8174ZM114.111 79.5977L93.6405 85.8448L72.7669 80.3209L72.767 116.699L93.6129 122.215L114.111 115.835L114.111 79.5977Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M92.6537 122.27L92.6537 85.0988L93.9717 85.0988L93.9717 122.27L92.6537 122.27Z" fill="#2D2D2D"/>
+<path d="M238.233 103.599L259.753 109.294L259.753 78.3438L238.233 72.649L217.091 79.2297L217.091 110.052L238.233 103.599Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M216.432 110.942L216.432 78.7446L238.218 71.9634L260.412 77.8365L260.412 110.15L238.246 104.284L216.432 110.942ZM217.75 109.161L238.22 102.914L259.094 108.438L259.094 78.8511L238.248 73.3346L217.75 79.7148L217.75 109.161Z" fill="#2D2D2D"/>
+<path d="M238.61 85.1596L217.091 79.4647L217.091 117.206L238.61 122.901L259.753 116.32L259.753 78.7074L238.61 85.1596Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M260.412 77.8174L260.412 116.805L238.625 123.586L216.432 117.713L216.432 78.6088L238.598 84.4746L260.412 77.8174ZM259.094 79.5977L238.623 85.8448L217.75 80.3209L217.75 116.699L238.596 122.215L259.094 115.835L259.094 79.5977Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M237.636 122.27L237.636 85.0988L238.955 85.0988L238.955 122.27L237.636 122.27Z" fill="#2D2D2D"/>
+<path d="M383.216 103.599L404.735 109.294L404.735 78.3438L383.216 72.649L362.073 79.2297L362.073 110.052L383.216 103.599Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M361.414 110.942L361.414 78.7446L383.201 71.9634L405.394 77.8365L405.394 110.15L383.229 104.284L361.414 110.942ZM362.732 109.161L383.203 102.914L404.076 108.438L404.076 78.8511L383.23 73.3346L362.732 79.7148L362.732 109.161Z" fill="#2D2D2D"/>
+<path d="M383.593 85.1596L362.073 79.4647L362.074 117.206L383.593 122.901L404.735 116.32L404.735 78.7074L383.593 85.1596Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M405.394 77.8174L405.394 116.805L383.608 123.586L361.414 117.713L361.414 78.6088L383.58 84.4746L405.394 77.8174ZM404.076 79.5977L383.606 85.8448L362.732 80.3209L362.732 116.699L383.578 122.215L404.076 115.835L404.076 79.5977Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M382.619 122.27L382.619 85.0988L383.937 85.0988L383.937 122.27L382.619 122.27Z" fill="#2D2D2D"/>
+<path d="M528.198 103.599L549.718 109.294L549.718 78.3438L528.198 72.649L507.056 79.2297L507.056 110.052L528.198 103.599Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M506.397 110.942L506.397 78.7446L528.184 71.9634L550.377 77.8365L550.377 110.15L528.211 104.284L506.397 110.942ZM507.715 109.161L528.186 102.914L549.059 108.438L549.059 78.8511L528.213 73.3346L507.715 79.7148L507.715 109.161Z" fill="#2D2D2D"/>
+<path d="M528.576 85.1596L507.056 79.4647L507.056 117.206L528.576 122.901L549.718 116.32L549.718 78.7074L528.576 85.1596Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M550.377 77.8174L550.377 116.805L528.591 123.586L506.397 117.713L506.397 78.6088L528.563 84.4746L550.377 77.8174ZM549.059 79.5977L528.589 85.8448L507.715 80.3209L507.715 116.699L528.561 122.215L549.059 115.835L549.059 79.5977Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M527.602 122.27L527.602 85.0988L528.92 85.0988L528.92 122.27L527.602 122.27Z" fill="#2D2D2D"/>
+<path d="M486.604 55.5147L490.952 44.1931H492.566L497.199 55.5147H495.493L494.172 52.0858H489.438L488.195 55.5147H486.604ZM489.871 50.8656H493.709L492.527 47.7302C492.167 46.7777 491.899 45.9951 491.724 45.3824C491.58 46.1084 491.376 46.8292 491.114 47.5448L489.871 50.8656Z" fill="#2D2D2D"/>
+<path d="M498.351 58.6579V47.3131H499.617V48.3789C499.916 47.9618 500.253 47.6504 500.629 47.4444C501.005 47.2333 501.46 47.1278 501.996 47.1278C502.696 47.1278 503.314 47.308 503.849 47.6684C504.385 48.0288 504.789 48.5385 505.062 49.1975C505.335 49.8514 505.471 50.5696 505.471 51.3522C505.471 52.1914 505.319 52.9482 505.015 53.6227C504.717 54.292 504.279 54.8068 503.703 55.1672C503.131 55.5225 502.529 55.7001 501.895 55.7001C501.432 55.7001 501.015 55.6023 500.644 55.4066C500.279 55.211 499.978 54.9639 499.741 54.6652V58.6579H498.351ZM499.609 51.4603C499.609 52.5157 499.823 53.2957 500.25 53.8003C500.678 54.3048 501.195 54.5571 501.803 54.5571C502.421 54.5571 502.948 54.2971 503.386 53.7771C503.829 53.252 504.05 52.4411 504.05 51.3444C504.05 50.2993 503.834 49.5167 503.401 48.9967C502.974 48.4767 502.462 48.2167 501.865 48.2167C501.272 48.2167 500.747 48.4947 500.289 49.0508C499.836 49.6017 499.609 50.4048 499.609 51.4603Z" fill="#2D2D2D"/>
+<path d="M507.286 58.6579V47.3131H508.553V48.3789C508.852 47.9618 509.189 47.6504 509.565 47.4444C509.941 47.2333 510.396 47.1278 510.932 47.1278C511.632 47.1278 512.25 47.308 512.785 47.6684C513.321 48.0288 513.725 48.5385 513.998 49.1975C514.27 49.8514 514.407 50.5696 514.407 51.3522C514.407 52.1914 514.255 52.9482 513.951 53.6227C513.653 54.292 513.215 54.8068 512.638 55.1672C512.067 55.5225 511.464 55.7001 510.831 55.7001C510.368 55.7001 509.951 55.6023 509.58 55.4066C509.215 55.211 508.913 54.9639 508.677 54.6652V58.6579H507.286ZM508.545 51.4603C508.545 52.5157 508.759 53.2957 509.186 53.8003C509.614 54.3048 510.131 54.5571 510.739 54.5571C511.356 54.5571 511.884 54.2971 512.322 53.7771C512.765 53.252 512.986 52.4411 512.986 51.3444C512.986 50.2993 512.77 49.5167 512.337 48.9967C511.91 48.4767 511.398 48.2167 510.8 48.2167C510.208 48.2167 509.683 48.4947 509.225 49.0508C508.772 49.6017 508.545 50.4048 508.545 51.4603Z" fill="#2D2D2D"/>
+<path d="M516.191 55.5147V44.1931H517.581V55.5147H516.191Z" fill="#2D2D2D"/>
+<path d="M519.883 45.7917V44.1931H521.273V45.7917H519.883ZM519.883 55.5147V47.3131H521.273V55.5147H519.883Z" fill="#2D2D2D"/>
+<path d="M528.881 52.5106L530.248 52.6882C530.099 53.6304 529.715 54.3692 529.097 54.9046C528.485 55.4349 527.73 55.7001 526.834 55.7001C525.712 55.7001 524.808 55.3345 524.124 54.6035C523.444 53.8672 523.104 52.8143 523.104 51.4448C523.104 50.5593 523.251 49.7844 523.545 49.1203C523.838 48.4561 524.283 47.9593 524.881 47.6298C525.483 47.2951 526.137 47.1278 526.842 47.1278C527.733 47.1278 528.461 47.3543 529.028 47.8074C529.594 48.2553 529.957 48.8937 530.117 49.7226L528.765 49.9312C528.636 49.3803 528.407 48.9658 528.078 48.6878C527.753 48.4098 527.36 48.2708 526.896 48.2708C526.196 48.2708 525.627 48.523 525.189 49.0276C524.752 49.527 524.533 50.3199 524.533 51.4062C524.533 52.508 524.744 53.3086 525.166 53.808C525.588 54.3074 526.139 54.5571 526.819 54.5571C527.365 54.5571 527.82 54.3898 528.186 54.0551C528.551 53.7205 528.783 53.2056 528.881 52.5106Z" fill="#2D2D2D"/>
+<path d="M536.921 54.5031C536.406 54.9407 535.909 55.2496 535.43 55.4298C534.957 55.61 534.447 55.7001 533.901 55.7001C533 55.7001 532.308 55.4813 531.824 55.0437C531.34 54.6009 531.098 54.0371 531.098 53.3524C531.098 52.9508 531.188 52.5852 531.368 52.2557C531.554 51.9211 531.793 51.6533 532.086 51.4526C532.385 51.2518 532.72 51.0999 533.09 50.9969C533.363 50.9248 533.775 50.8553 534.326 50.7884C535.448 50.6545 536.275 50.4949 536.805 50.3096C536.81 50.1191 536.813 49.9981 536.813 49.9466C536.813 49.3803 536.682 48.9813 536.419 48.7496C536.064 48.4355 535.536 48.2785 534.836 48.2785C534.182 48.2785 533.698 48.3943 533.384 48.626C533.075 48.8525 532.846 49.2567 532.697 49.8385L531.337 49.6531C531.461 49.0714 531.664 48.6028 531.947 48.2476C532.231 47.8872 532.64 47.6117 533.175 47.4212C533.711 47.2256 534.331 47.1278 535.037 47.1278C535.737 47.1278 536.306 47.2102 536.743 47.3749C537.181 47.5397 537.503 47.7482 537.709 48.0005C537.915 48.2476 538.059 48.5616 538.141 48.9426C538.187 49.1795 538.211 49.6068 538.211 50.2246V52.0781C538.211 53.3704 538.239 54.189 538.296 54.5339C538.357 54.8738 538.476 55.2007 538.651 55.5147H537.199C537.055 55.2264 536.962 54.8892 536.921 54.5031ZM536.805 51.3985C536.301 51.6044 535.544 51.7795 534.535 51.9236C533.963 52.006 533.559 52.0987 533.322 52.2017C533.085 52.3046 532.902 52.4565 532.774 52.6573C532.645 52.853 532.581 53.0718 532.581 53.3137C532.581 53.6844 532.72 53.9934 532.998 54.2405C533.281 54.4876 533.693 54.6112 534.233 54.6112C534.769 54.6112 535.245 54.4953 535.662 54.2637C536.079 54.0268 536.385 53.705 536.581 53.2983C536.73 52.9842 536.805 52.5209 536.805 51.9082V51.3985Z" fill="#2D2D2D"/>
+<path d="M543.54 54.2714L543.741 55.4993C543.349 55.5817 542.999 55.6229 542.69 55.6229C542.186 55.6229 541.795 55.5431 541.517 55.3835C541.238 55.2239 541.043 55.0153 540.93 54.7579C540.816 54.4953 540.76 53.947 540.76 53.113V48.3943H539.74V47.3131H540.76V45.282L542.142 44.448V47.3131H543.54V48.3943H542.142V53.1902C542.142 53.5866 542.165 53.8415 542.212 53.9547C542.263 54.068 542.343 54.1581 542.451 54.225C542.564 54.292 542.724 54.3254 542.93 54.3254C543.084 54.3254 543.288 54.3074 543.54 54.2714Z" fill="#2D2D2D"/>
+<path d="M545.046 45.7917V44.1931H546.436V45.7917H545.046ZM545.046 55.5147V47.3131H546.436V55.5147H545.046Z" fill="#2D2D2D"/>
+<path d="M548.175 51.4139C548.175 49.8951 548.597 48.7702 549.441 48.0391C550.146 47.4315 551.006 47.1278 552.021 47.1278C553.148 47.1278 554.07 47.4985 554.785 48.2399C555.501 48.9761 555.859 49.9955 555.859 51.2981C555.859 52.3535 555.699 53.185 555.38 53.7926C555.066 54.3949 554.605 54.8635 553.998 55.1981C553.395 55.5328 552.736 55.7001 552.021 55.7001C550.872 55.7001 549.943 55.332 549.233 54.5957C548.527 53.8595 548.175 52.7989 548.175 51.4139ZM549.603 51.4139C549.603 52.4642 549.832 53.252 550.291 53.7771C550.749 54.2971 551.325 54.5571 552.021 54.5571C552.71 54.5571 553.285 54.2945 553.743 53.7694C554.201 53.2442 554.43 52.4436 554.43 51.3676C554.43 50.3533 554.198 49.5862 553.735 49.0662C553.277 48.5411 552.705 48.2785 552.021 48.2785C551.325 48.2785 550.749 48.5385 550.291 49.0585C549.832 49.5785 549.603 50.3636 549.603 51.4139Z" fill="#2D2D2D"/>
+<path d="M557.628 55.5147V47.3131H558.879V48.4793C559.481 47.5783 560.351 47.1278 561.489 47.1278C561.983 47.1278 562.437 47.2179 562.848 47.3981C563.265 47.5731 563.577 47.8048 563.783 48.0931C563.989 48.3814 564.133 48.7238 564.215 49.1203C564.267 49.3777 564.293 49.8282 564.293 50.4718V55.5147H562.902V50.5258C562.902 49.9595 562.848 49.5373 562.74 49.2593C562.632 48.9761 562.439 48.7521 562.161 48.5874C561.888 48.4175 561.566 48.3325 561.196 48.3325C560.604 48.3325 560.091 48.5205 559.659 48.8963C559.232 49.2721 559.018 49.9852 559.018 51.0355V55.5147H557.628Z" fill="#2D2D2D"/>
+<path d="M566.008 53.0666L567.382 52.8504C567.459 53.4013 567.673 53.8235 568.023 54.1169C568.378 54.4104 568.873 54.5571 569.506 54.5571C570.144 54.5571 570.618 54.4284 570.927 54.171C571.236 53.9084 571.39 53.6021 571.39 53.252C571.39 52.9379 571.254 52.6908 570.981 52.5106C570.791 52.387 570.317 52.23 569.56 52.0395C568.541 51.7821 567.833 51.5607 567.436 51.3753C567.045 51.1848 566.746 50.9248 566.54 50.5953C566.34 50.2607 566.239 49.8925 566.239 49.491C566.239 49.1254 566.322 48.7882 566.486 48.4793C566.656 48.1652 566.885 47.9052 567.174 47.6993C567.39 47.5397 567.683 47.4058 568.054 47.2977C568.43 47.1844 568.832 47.1278 569.259 47.1278C569.902 47.1278 570.466 47.2205 570.95 47.4058C571.439 47.5911 571.8 47.8434 572.031 48.1626C572.263 48.4767 572.423 48.8989 572.51 49.4292L571.151 49.6145C571.089 49.1923 570.909 48.8628 570.61 48.626C570.317 48.3892 569.9 48.2708 569.359 48.2708C568.721 48.2708 568.265 48.3763 567.992 48.5874C567.719 48.7985 567.583 49.0456 567.583 49.3288C567.583 49.509 567.64 49.6712 567.753 49.8153C567.866 49.9646 568.044 50.0882 568.286 50.186C568.425 50.2375 568.834 50.3559 569.514 50.5413C570.497 50.8038 571.182 51.0201 571.568 51.19C571.959 51.3547 572.266 51.5967 572.487 51.9159C572.708 52.2351 572.819 52.6316 572.819 53.1052C572.819 53.5686 572.683 54.0062 572.41 54.4181C572.142 54.8248 571.753 55.1415 571.244 55.368C570.734 55.5894 570.157 55.7001 569.514 55.7001C568.448 55.7001 567.635 55.4787 567.073 55.0359C566.517 54.5932 566.162 53.9367 566.008 53.0666Z" fill="#2D2D2D"/>
+<path d="M348.945 51.8773L350.358 51.7537C350.425 52.32 350.579 52.786 350.821 53.1515C351.069 53.5119 351.449 53.8054 351.964 54.0319C352.479 54.2533 353.058 54.364 353.702 54.364C354.273 54.364 354.778 54.2791 355.216 54.1092C355.653 53.9392 355.978 53.7076 356.189 53.4141C356.405 53.1155 356.513 52.7911 356.513 52.441C356.513 52.0858 356.41 51.7769 356.204 51.5143C355.998 51.2466 355.658 51.0226 355.185 50.8424C354.881 50.724 354.209 50.5412 353.169 50.2941C352.129 50.0418 351.401 49.805 350.984 49.5836C350.443 49.3004 350.039 48.9503 349.771 48.5333C349.508 48.1111 349.377 47.64 349.377 47.12C349.377 46.5485 349.539 46.0157 349.864 45.5214C350.188 45.022 350.662 44.6436 351.285 44.3861C351.908 44.1287 352.6 44 353.362 44C354.201 44 354.94 44.1364 355.579 44.4093C356.222 44.677 356.716 45.0735 357.061 45.5986C357.406 46.1238 357.592 46.7184 357.617 47.3826L356.181 47.4907C356.104 46.7751 355.841 46.2345 355.393 45.8689C354.951 45.5034 354.294 45.3206 353.424 45.3206C352.518 45.3206 351.856 45.4879 351.439 45.8226C351.027 46.1521 350.821 46.5511 350.821 47.0196C350.821 47.4264 350.968 47.761 351.262 48.0236C351.55 48.2862 352.302 48.5565 353.517 48.8345C354.737 49.1073 355.573 49.3468 356.027 49.5527C356.686 49.8565 357.172 50.2426 357.486 50.7111C357.8 51.1745 357.957 51.7099 357.957 52.3175C357.957 52.9198 357.785 53.4888 357.44 54.0242C357.095 54.5545 356.598 54.969 355.949 55.2676C355.306 55.561 354.58 55.7078 353.771 55.7078C352.747 55.7078 351.887 55.5585 351.192 55.2598C350.502 54.9612 349.959 54.5133 349.563 53.9161C349.171 53.3137 348.965 52.6341 348.945 51.8773Z" fill="#2D2D2D"/>
+<path d="M365.572 52.8735L367.009 53.0511C366.782 53.8903 366.363 54.5416 365.75 55.005C365.137 55.4684 364.355 55.7 363.402 55.7C362.203 55.7 361.25 55.3319 360.545 54.5957C359.845 53.8543 359.495 52.8169 359.495 51.4834C359.495 50.1036 359.85 49.0327 360.56 48.2707C361.271 47.5087 362.192 47.1277 363.325 47.1277C364.422 47.1277 365.318 47.501 366.013 48.2475C366.708 48.9941 367.055 50.0444 367.055 51.3984C367.055 51.4808 367.053 51.6044 367.048 51.7691H360.931C360.983 52.6701 361.237 53.36 361.696 53.8389C362.154 54.3177 362.725 54.5571 363.41 54.5571C363.92 54.5571 364.355 54.4232 364.715 54.1555C365.076 53.8878 365.361 53.4604 365.572 52.8735ZM361.008 50.6262H365.588C365.526 49.9363 365.351 49.4188 365.063 49.0739C364.62 48.5384 364.046 48.2707 363.341 48.2707C362.702 48.2707 362.164 48.4844 361.726 48.9117C361.294 49.339 361.055 49.9105 361.008 50.6262Z" fill="#2D2D2D"/>
+<path d="M368.878 55.5147V47.3131H370.129V48.5565C370.449 47.9747 370.742 47.5911 371.01 47.4058C371.283 47.2204 371.581 47.1277 371.906 47.1277C372.374 47.1277 372.85 47.277 373.334 47.5757L372.856 48.8654C372.516 48.6646 372.176 48.5642 371.836 48.5642C371.532 48.5642 371.26 48.6569 371.018 48.8422C370.776 49.0224 370.603 49.2747 370.5 49.599C370.346 50.0933 370.268 50.6339 370.268 51.2208V55.5147H368.878Z" fill="#2D2D2D"/>
+<path d="M376.571 55.5147L373.451 47.3131H374.918L376.679 52.2248C376.869 52.7551 377.044 53.306 377.204 53.8775C377.328 53.445 377.5 52.925 377.721 52.3175L379.544 47.3131H380.973L377.868 55.5147H376.571Z" fill="#2D2D2D"/>
+<path d="M382.34 45.7917V44.1931H383.73V45.7917H382.34ZM382.34 55.5147V47.3131H383.73V55.5147H382.34Z" fill="#2D2D2D"/>
+<path d="M391.338 52.5105L392.705 52.6882C392.555 53.6303 392.172 54.3692 391.554 54.9046C390.941 55.4349 390.187 55.7 389.291 55.7C388.169 55.7 387.265 55.3345 386.581 54.6034C385.901 53.8672 385.561 52.8143 385.561 51.4448C385.561 50.5592 385.708 49.7844 386.001 49.1202C386.295 48.4561 386.74 47.9592 387.337 47.6297C387.94 47.2951 388.594 47.1277 389.299 47.1277C390.19 47.1277 390.918 47.3543 391.485 47.8073C392.051 48.2553 392.414 48.8937 392.573 49.7226L391.222 49.9311C391.093 49.3802 390.864 48.9658 390.535 48.6877C390.21 48.4097 389.816 48.2707 389.353 48.2707C388.653 48.2707 388.084 48.523 387.646 49.0275C387.209 49.527 386.99 50.3198 386.99 51.4062C386.99 52.508 387.201 53.3086 387.623 53.808C388.045 54.3074 388.596 54.5571 389.276 54.5571C389.822 54.5571 390.277 54.3897 390.643 54.0551C391.008 53.7204 391.24 53.2056 391.338 52.5105Z" fill="#2D2D2D"/>
+<path d="M399.64 52.8735L401.077 53.0511C400.85 53.8903 400.431 54.5416 399.818 55.005C399.205 55.4684 398.423 55.7 397.47 55.7C396.271 55.7 395.318 55.3319 394.613 54.5957C393.913 53.8543 393.562 52.8169 393.562 51.4834C393.562 50.1036 393.918 49.0327 394.628 48.2707C395.339 47.5087 396.26 47.1277 397.393 47.1277C398.49 47.1277 399.385 47.501 400.081 48.2475C400.776 48.9941 401.123 50.0444 401.123 51.3984C401.123 51.4808 401.121 51.6044 401.115 51.7691H394.999C395.05 52.6701 395.305 53.36 395.763 53.8389C396.222 54.3177 396.793 54.5571 397.478 54.5571C397.988 54.5571 398.423 54.4232 398.783 54.1555C399.143 53.8878 399.429 53.4604 399.64 52.8735ZM395.076 50.6262H399.656C399.594 49.9363 399.419 49.4188 399.131 49.0739C398.688 48.5384 398.114 48.2707 397.408 48.2707C396.77 48.2707 396.232 48.4844 395.794 48.9117C395.362 49.339 395.122 49.9105 395.076 50.6262Z" fill="#2D2D2D"/>
+<path d="M402.406 53.0666L403.78 52.8503C403.857 53.4012 404.071 53.8234 404.421 54.1169C404.776 54.4103 405.271 54.5571 405.904 54.5571C406.542 54.5571 407.016 54.4284 407.325 54.1709C407.634 53.9084 407.788 53.602 407.788 53.2519C407.788 52.9379 407.652 52.6907 407.379 52.5105C407.189 52.387 406.715 52.2299 405.958 52.0394C404.939 51.782 404.231 51.5606 403.834 51.3753C403.443 51.1848 403.144 50.9248 402.938 50.5953C402.738 50.2606 402.637 49.8925 402.637 49.4909C402.637 49.1254 402.72 48.7881 402.884 48.4792C403.054 48.1652 403.283 47.9052 403.572 47.6992C403.788 47.5396 404.081 47.4058 404.452 47.2976C404.828 47.1844 405.23 47.1277 405.657 47.1277C406.3 47.1277 406.864 47.2204 407.348 47.4058C407.837 47.5911 408.198 47.8434 408.429 48.1626C408.661 48.4767 408.821 48.8988 408.908 49.4291L407.549 49.6145C407.487 49.1923 407.307 48.8628 407.008 48.626C406.715 48.3891 406.298 48.2707 405.757 48.2707C405.119 48.2707 404.663 48.3763 404.39 48.5873C404.117 48.7984 403.981 49.0456 403.981 49.3287C403.981 49.5089 404.038 49.6711 404.151 49.8153C404.264 49.9646 404.442 50.0881 404.684 50.186C404.823 50.2375 405.232 50.3559 405.912 50.5412C406.895 50.8038 407.58 51.02 407.966 51.1899C408.357 51.3547 408.664 51.5967 408.885 51.9159C409.106 52.2351 409.217 52.6315 409.217 53.1052C409.217 53.5686 409.081 54.0062 408.808 54.4181C408.54 54.8248 408.151 55.1414 407.642 55.368C407.132 55.5894 406.555 55.7 405.912 55.7C404.846 55.7 404.033 55.4787 403.471 55.0359C402.915 54.5931 402.56 53.9367 402.406 53.0666Z" fill="#2D2D2D"/>
+<path d="M46.9676 55.5147V44.1931H50.8676C51.748 44.1931 52.4199 44.2471 52.8833 44.3552C53.532 44.5046 54.0855 44.7749 54.5437 45.1661C55.1409 45.6707 55.5863 46.3168 55.8797 47.1046C56.1784 47.8871 56.3277 48.783 56.3277 49.7921C56.3277 50.6519 56.2273 51.4139 56.0265 52.0781C55.8257 52.7422 55.5683 53.2931 55.2542 53.7307C54.9401 54.1632 54.5952 54.5056 54.2193 54.7579C53.8486 55.005 53.3981 55.1929 52.8678 55.3216C52.3427 55.4503 51.7377 55.5147 51.053 55.5147H46.9676ZM48.4658 54.1787H50.8831C51.6296 54.1787 52.214 54.1092 52.6362 53.9701C53.0635 53.8311 53.4033 53.6355 53.6556 53.3832C54.0108 53.028 54.2863 52.5517 54.4819 51.9545C54.6827 51.3521 54.7831 50.6236 54.7831 49.7689C54.7831 48.5848 54.5875 47.6761 54.1962 47.0428C53.81 46.4044 53.3389 45.977 52.7829 45.7608C52.3813 45.6063 51.7352 45.5291 50.8445 45.5291H48.4658V54.1787Z" fill="#2D2D2D"/>
+<path d="M63.7035 54.503C63.1886 54.9406 62.6918 55.2496 62.213 55.4298C61.7393 55.6099 61.2296 55.7 60.6838 55.7C59.7828 55.7 59.0904 55.4812 58.6064 55.0436C58.1224 54.6008 57.8805 54.0371 57.8805 53.3523C57.8805 52.9507 57.9706 52.5852 58.1508 52.2557C58.3361 51.921 58.5755 51.6533 58.869 51.4525C59.1676 51.2517 59.5022 51.0998 59.8729 50.9969C60.1458 50.9248 60.5577 50.8553 61.1086 50.7883C62.231 50.6545 63.0573 50.4949 63.5876 50.3095C63.5928 50.119 63.5953 49.998 63.5953 49.9466C63.5953 49.3802 63.464 48.9812 63.2015 48.7495C62.8462 48.4355 62.3185 48.2784 61.6183 48.2784C60.9644 48.2784 60.4805 48.3943 60.1664 48.626C59.8575 48.8525 59.6284 49.2567 59.4791 49.8384L58.1199 49.6531C58.2434 49.0713 58.4468 48.6028 58.73 48.2475C59.0131 47.8871 59.4224 47.6117 59.9579 47.4212C60.4933 47.2256 61.1137 47.1277 61.8191 47.1277C62.5193 47.1277 63.0882 47.2101 63.5258 47.3749C63.9635 47.5396 64.2852 47.7481 64.4912 48.0004C64.6971 48.2475 64.8413 48.5616 64.9237 48.9426C64.97 49.1794 64.9932 49.6068 64.9932 50.2246V52.0781C64.9932 53.3703 65.0215 54.189 65.0781 54.5339C65.1399 54.8737 65.2583 55.2006 65.4334 55.5147H63.9815C63.8373 55.2264 63.7446 54.8892 63.7035 54.503ZM63.5876 51.3984C63.0831 51.6044 62.3262 51.7794 61.3171 51.9236C60.7456 52.006 60.3415 52.0986 60.1046 52.2016C59.8678 52.3046 59.685 52.4565 59.5563 52.6573C59.4276 52.8529 59.3632 53.0717 59.3632 53.3137C59.3632 53.6844 59.5022 53.9933 59.7803 54.2404C60.0634 54.4876 60.4753 54.6111 61.0159 54.6111C61.5514 54.6111 62.0276 54.4953 62.4446 54.2636C62.8617 54.0268 63.168 53.705 63.3637 53.2983C63.513 52.9842 63.5876 52.5208 63.5876 51.9082V51.3984Z" fill="#2D2D2D"/>
+<path d="M70.3224 54.2713L70.5232 55.4993C70.1319 55.5816 69.7818 55.6228 69.4729 55.6228C68.9683 55.6228 68.5771 55.543 68.299 55.3834C68.021 55.2238 67.8254 55.0153 67.7121 54.7579C67.5988 54.4953 67.5422 53.947 67.5422 53.1129V48.3943H66.5228V47.3131H67.5422V45.282L68.9246 44.4479V47.3131H70.3224V48.3943H68.9246V53.1901C68.9246 53.5866 68.9478 53.8414 68.9941 53.9547C69.0456 54.068 69.1254 54.1581 69.2335 54.225C69.3468 54.2919 69.5064 54.3254 69.7123 54.3254C69.8668 54.3254 70.0701 54.3074 70.3224 54.2713Z" fill="#2D2D2D"/>
+<path d="M77.1731 54.503C76.6582 54.9406 76.1614 55.2496 75.6826 55.4298C75.2089 55.6099 74.6992 55.7 74.1534 55.7C73.2524 55.7 72.56 55.4812 72.076 55.0436C71.592 54.6008 71.3501 54.0371 71.3501 53.3523C71.3501 52.9507 71.4402 52.5852 71.6204 52.2557C71.8057 51.921 72.0451 51.6533 72.3386 51.4525C72.6372 51.2517 72.9718 51.0998 73.3425 50.9969C73.6154 50.9248 74.0273 50.8553 74.5782 50.7883C75.7006 50.6545 76.5269 50.4949 77.0572 50.3095C77.0624 50.119 77.0649 49.998 77.0649 49.9466C77.0649 49.3802 76.9336 48.9812 76.6711 48.7495C76.3158 48.4355 75.7881 48.2784 75.0879 48.2784C74.434 48.2784 73.9501 48.3943 73.636 48.626C73.3271 48.8525 73.098 49.2567 72.9487 49.8384L71.5895 49.6531C71.713 49.0713 71.9164 48.6028 72.1996 48.2475C72.4827 47.8871 72.892 47.6117 73.4275 47.4212C73.9629 47.2256 74.5833 47.1277 75.2887 47.1277C75.9889 47.1277 76.5578 47.2101 76.9954 47.3749C77.4331 47.5396 77.7548 47.7481 77.9608 48.0004C78.1667 48.2475 78.3109 48.5616 78.3933 48.9426C78.4396 49.1794 78.4628 49.6068 78.4628 50.2246V52.0781C78.4628 53.3703 78.4911 54.189 78.5477 54.5339C78.6095 54.8737 78.7279 55.2006 78.903 55.5147H77.4511C77.3069 55.2264 77.2142 54.8892 77.1731 54.503ZM77.0572 51.3984C76.5527 51.6044 75.7958 51.7794 74.7867 51.9236C74.2152 52.006 73.8111 52.0986 73.5742 52.2016C73.3374 52.3046 73.1546 52.4565 73.0259 52.6573C72.8972 52.8529 72.8328 53.0717 72.8328 53.3137C72.8328 53.6844 72.9718 53.9933 73.2499 54.2404C73.533 54.4876 73.9449 54.6111 74.4855 54.6111C75.021 54.6111 75.4972 54.4953 75.9142 54.2636C76.3313 54.0268 76.6376 53.705 76.8333 53.2983C76.9826 52.9842 77.0572 52.5208 77.0572 51.9082V51.3984Z" fill="#2D2D2D"/>
+<path d="M84.9587 51.8773L86.3719 51.7537C86.4389 52.32 86.5933 52.786 86.8353 53.1515C87.0824 53.5119 87.4634 53.8054 87.9783 54.0319C88.4931 54.2533 89.0724 54.364 89.7159 54.364C90.2874 54.364 90.792 54.2791 91.2296 54.1092C91.6672 53.9392 91.9916 53.7076 92.2027 53.4141C92.4189 53.1155 92.527 52.7911 92.527 52.441C92.527 52.0858 92.424 51.7769 92.2181 51.5143C92.0122 51.2466 91.6724 51.0226 91.1987 50.8424C90.8949 50.724 90.223 50.5412 89.183 50.2941C88.143 50.0418 87.4145 49.805 86.9975 49.5836C86.4569 49.3004 86.0527 48.9503 85.785 48.5333C85.5224 48.1111 85.3911 47.64 85.3911 47.12C85.3911 46.5485 85.5533 46.0157 85.8777 45.5214C86.202 45.022 86.6757 44.6436 87.2987 44.3861C87.9217 44.1287 88.6141 44 89.3761 44C90.2153 44 90.9541 44.1364 91.5926 44.4093C92.2361 44.677 92.7304 45.0735 93.0753 45.5986C93.4203 46.1238 93.6056 46.7184 93.6314 47.3826L92.1949 47.4907C92.1177 46.7751 91.8551 46.2345 91.4072 45.8689C90.9644 45.5034 90.308 45.3206 89.4379 45.3206C88.5318 45.3206 87.8702 45.4879 87.4531 45.8226C87.0413 46.1521 86.8353 46.5511 86.8353 47.0196C86.8353 47.4264 86.982 47.761 87.2755 48.0236C87.5638 48.2862 88.3155 48.5565 89.5306 48.8345C90.7508 49.1073 91.5874 49.3468 92.0405 49.5527C92.6995 49.8565 93.186 50.2426 93.5001 50.7111C93.8142 51.1745 93.9712 51.7099 93.9712 52.3175C93.9712 52.9198 93.7987 53.4888 93.4538 54.0242C93.1088 54.5545 92.612 54.969 91.9633 55.2676C91.3197 55.561 90.5937 55.7078 89.7854 55.7078C88.7609 55.7078 87.9011 55.5585 87.206 55.2598C86.5161 54.9612 85.9729 54.5133 85.5765 53.9161C85.1852 53.3137 84.9793 52.6341 84.9587 51.8773Z" fill="#2D2D2D"/>
+<path d="M99.007 54.2713L99.2078 55.4993C98.8165 55.5816 98.4664 55.6228 98.1575 55.6228C97.6529 55.6228 97.2616 55.543 96.9836 55.3834C96.7056 55.2238 96.5099 55.0153 96.3967 54.7579C96.2834 54.4953 96.2268 53.947 96.2268 53.1129V48.3943H95.2073V47.3131H96.2268V45.282L97.6091 44.4479V47.3131H99.007V48.3943H97.6091V53.1901C97.6091 53.5866 97.6323 53.8414 97.6786 53.9547C97.7301 54.068 97.8099 54.1581 97.9181 54.225C98.0313 54.2919 98.1909 54.3254 98.3969 54.3254C98.5513 54.3254 98.7547 54.3074 99.007 54.2713Z" fill="#2D2D2D"/>
+<path d="M100.49 55.5147V47.3131H101.741V48.5565C102.061 47.9747 102.354 47.5911 102.622 47.4058C102.895 47.2204 103.193 47.1277 103.518 47.1277C103.986 47.1277 104.462 47.277 104.946 47.5757L104.468 48.8654C104.128 48.6646 103.788 48.5642 103.448 48.5642C103.144 48.5642 102.871 48.6569 102.629 48.8422C102.387 49.0224 102.215 49.2747 102.112 49.599C101.958 50.0933 101.88 50.6339 101.88 51.2208V55.5147H100.49Z" fill="#2D2D2D"/>
+<path d="M111.519 52.8735L112.955 53.0511C112.729 53.8903 112.309 54.5416 111.697 55.005C111.084 55.4684 110.301 55.7 109.349 55.7C108.149 55.7 107.197 55.3319 106.491 54.5957C105.791 53.8543 105.441 52.8169 105.441 51.4834C105.441 50.1036 105.796 49.0327 106.507 48.2707C107.217 47.5087 108.139 47.1277 109.272 47.1277C110.368 47.1277 111.264 47.501 111.959 48.2475C112.654 48.9941 113.002 50.0444 113.002 51.3984C113.002 51.4808 112.999 51.6044 112.994 51.7691H106.878C106.929 52.6701 107.184 53.36 107.642 53.8389C108.1 54.3177 108.672 54.5571 109.357 54.5571C109.866 54.5571 110.301 54.4232 110.662 54.1555C111.022 53.8878 111.308 53.4604 111.519 52.8735ZM106.955 50.6262H111.534C111.473 49.9363 111.298 49.4188 111.009 49.0739C110.566 48.5384 109.992 48.2707 109.287 48.2707C108.649 48.2707 108.111 48.4844 107.673 48.9117C107.241 49.339 107.001 49.9105 106.955 50.6262Z" fill="#2D2D2D"/>
+<path d="M120.192 54.503C119.677 54.9406 119.18 55.2496 118.702 55.4298C118.228 55.6099 117.718 55.7 117.173 55.7C116.272 55.7 115.579 55.4812 115.095 55.0436C114.611 54.6008 114.369 54.0371 114.369 53.3523C114.369 52.9507 114.459 52.5852 114.639 52.2557C114.825 51.921 115.064 51.6533 115.358 51.4525C115.656 51.2517 115.991 51.0998 116.362 50.9969C116.635 50.9248 117.046 50.8553 117.597 50.7883C118.72 50.6545 119.546 50.4949 120.076 50.3095C120.081 50.119 120.084 49.998 120.084 49.9466C120.084 49.3802 119.953 48.9812 119.69 48.7495C119.335 48.4355 118.807 48.2784 118.107 48.2784C117.453 48.2784 116.969 48.3943 116.655 48.626C116.346 48.8525 116.117 49.2567 115.968 49.8384L114.609 49.6531C114.732 49.0713 114.936 48.6028 115.219 48.2475C115.502 47.8871 115.911 47.6117 116.447 47.4212C116.982 47.2256 117.602 47.1277 118.308 47.1277C119.008 47.1277 119.577 47.2101 120.015 47.3749C120.452 47.5396 120.774 47.7481 120.98 48.0004C121.186 48.2475 121.33 48.5616 121.412 48.9426C121.459 49.1794 121.482 49.6068 121.482 50.2246V52.0781C121.482 53.3703 121.51 54.189 121.567 54.5339C121.629 54.8737 121.747 55.2006 121.922 55.5147H120.47C120.326 55.2264 120.233 54.8892 120.192 54.503ZM120.076 51.3984C119.572 51.6044 118.815 51.7794 117.806 51.9236C117.234 52.006 116.83 52.0986 116.593 52.2016C116.357 52.3046 116.174 52.4565 116.045 52.6573C115.916 52.8529 115.852 53.0717 115.852 53.3137C115.852 53.6844 115.991 53.9933 116.269 54.2404C116.552 54.4876 116.964 54.6111 117.505 54.6111C118.04 54.6111 118.516 54.4953 118.933 54.2636C119.35 54.0268 119.657 53.705 119.852 53.2983C120.002 52.9842 120.076 52.5208 120.076 51.9082V51.3984Z" fill="#2D2D2D"/>
+<path d="M123.776 55.5147V47.3131H125.019V48.4638C125.277 48.0622 125.619 47.7404 126.047 47.4984C126.474 47.2513 126.96 47.1277 127.506 47.1277C128.114 47.1277 128.611 47.2539 128.997 47.5062C129.388 47.7584 129.663 48.1111 129.823 48.5642C130.472 47.6065 131.316 47.1277 132.356 47.1277C133.17 47.1277 133.795 47.3543 134.233 47.8073C134.67 48.2553 134.889 48.9477 134.889 49.8848V55.5147H133.507V50.3481C133.507 49.7921 133.46 49.3931 133.368 49.1511C133.28 48.904 133.118 48.7058 132.881 48.5565C132.644 48.4071 132.366 48.3325 132.047 48.3325C131.471 48.3325 130.992 48.5256 130.611 48.9117C130.23 49.2927 130.039 49.9054 130.039 50.7497V55.5147H128.649V50.186C128.649 49.5681 128.536 49.1048 128.309 48.7959C128.083 48.4869 127.712 48.3325 127.197 48.3325C126.806 48.3325 126.443 48.4355 126.108 48.6414C125.779 48.8473 125.539 49.1485 125.39 49.545C125.241 49.9414 125.166 50.5129 125.166 51.2594V55.5147H123.776Z" fill="#2D2D2D"/>
+<path d="M136.527 53.0666L137.902 52.8503C137.979 53.4012 138.192 53.8234 138.543 54.1169C138.898 54.4103 139.392 54.5571 140.025 54.5571C140.664 54.5571 141.137 54.4284 141.446 54.1709C141.755 53.9084 141.91 53.602 141.91 53.2519C141.91 52.9379 141.773 52.6907 141.5 52.5105C141.31 52.387 140.836 52.2299 140.079 52.0394C139.06 51.782 138.352 51.5606 137.956 51.3753C137.564 51.1848 137.266 50.9248 137.06 50.5953C136.859 50.2606 136.759 49.8925 136.759 49.4909C136.759 49.1254 136.841 48.7881 137.006 48.4792C137.176 48.1652 137.405 47.9052 137.693 47.6992C137.909 47.5396 138.203 47.4058 138.573 47.2976C138.949 47.1844 139.351 47.1277 139.778 47.1277C140.422 47.1277 140.986 47.2204 141.47 47.4058C141.959 47.5911 142.319 47.8434 142.551 48.1626C142.782 48.4767 142.942 48.8988 143.03 49.4291L141.67 49.6145C141.609 49.1923 141.428 48.8628 141.13 48.626C140.836 48.3891 140.419 48.2707 139.879 48.2707C139.24 48.2707 138.785 48.3763 138.512 48.5873C138.239 48.7984 138.102 49.0456 138.102 49.3287C138.102 49.5089 138.159 49.6711 138.272 49.8153C138.386 49.9646 138.563 50.0881 138.805 50.186C138.944 50.2375 139.353 50.3559 140.033 50.5412C141.016 50.8038 141.701 51.02 142.087 51.1899C142.479 51.3547 142.785 51.5967 143.006 51.9159C143.228 52.2351 143.338 52.6315 143.338 53.1052C143.338 53.5686 143.202 54.0062 142.929 54.4181C142.661 54.8248 142.273 55.1414 141.763 55.368C141.253 55.5894 140.677 55.7 140.033 55.7C138.967 55.7 138.154 55.4787 137.593 55.0359C137.037 54.5931 136.681 53.9367 136.527 53.0666Z" fill="#2D2D2D"/>
+<path d="M224.317 55.5147L228.665 44.1931H230.279L234.912 55.5147H233.206L231.885 52.0858H227.151L225.908 55.5147H224.317ZM227.583 50.8656H231.422L230.24 47.7302C229.88 46.7777 229.612 45.9951 229.437 45.3824C229.293 46.1084 229.089 46.8292 228.827 47.5448L227.583 50.8656Z" fill="#2D2D2D"/>
+<path d="M236.241 55.5147V44.1931H240.512C241.264 44.1931 241.838 44.2292 242.234 44.3012C242.79 44.3939 243.256 44.5715 243.632 44.8341C244.008 45.0915 244.309 45.4545 244.535 45.923C244.767 46.3915 244.883 46.9064 244.883 47.4676C244.883 48.4304 244.577 49.2464 243.964 49.9157C243.351 50.5799 242.244 50.912 240.643 50.912H237.739V55.5147H236.241ZM237.739 49.5759H240.666C241.634 49.5759 242.322 49.3957 242.728 49.0353C243.135 48.6749 243.338 48.1678 243.338 47.5139C243.338 47.0403 243.217 46.6361 242.975 46.3014C242.739 45.9616 242.425 45.7377 242.033 45.6296C241.781 45.5626 241.315 45.5292 240.635 45.5292H237.739V49.5759Z" fill="#2D2D2D"/>
+<path d="M247.177 55.5147V44.1931H248.675V55.5147H247.177Z" fill="#2D2D2D"/>
+<path d="M250.722 53.0666L252.097 52.8504C252.174 53.4013 252.388 53.8235 252.738 54.1169C253.093 54.4104 253.588 54.5571 254.221 54.5571C254.859 54.5571 255.333 54.4284 255.642 54.171C255.951 53.9084 256.105 53.6021 256.105 53.252C256.105 52.9379 255.969 52.6908 255.696 52.5106C255.505 52.387 255.032 52.23 254.275 52.0395C253.256 51.7821 252.548 51.5607 252.151 51.3753C251.76 51.1848 251.461 50.9248 251.255 50.5953C251.055 50.2607 250.954 49.8925 250.954 49.491C250.954 49.1254 251.037 48.7882 251.201 48.4793C251.371 48.1652 251.6 47.9052 251.889 47.6993C252.105 47.5397 252.398 47.4058 252.769 47.2977C253.145 47.1844 253.546 47.1278 253.974 47.1278C254.617 47.1278 255.181 47.2205 255.665 47.4058C256.154 47.5911 256.515 47.8434 256.746 48.1626C256.978 48.4767 257.138 48.8989 257.225 49.4292L255.866 49.6145C255.804 49.1923 255.624 48.8628 255.325 48.626C255.032 48.3892 254.615 48.2708 254.074 48.2708C253.436 48.2708 252.98 48.3763 252.707 48.5874C252.434 48.7985 252.298 49.0456 252.298 49.3288C252.298 49.509 252.355 49.6712 252.468 49.8153C252.581 49.9646 252.759 50.0882 253.001 50.186C253.14 50.2375 253.549 50.3559 254.229 50.5413C255.212 50.8038 255.897 51.0201 256.283 51.19C256.674 51.3547 256.981 51.5967 257.202 51.9159C257.423 52.2351 257.534 52.6316 257.534 53.1052C257.534 53.5686 257.398 54.0062 257.125 54.4181C256.857 54.8248 256.468 55.1415 255.959 55.368C255.449 55.5894 254.872 55.7001 254.229 55.7001C253.163 55.7001 252.349 55.4787 251.788 55.0359C251.232 54.5932 250.877 53.9367 250.722 53.0666Z" fill="#2D2D2D"/>
+<path d="M298.082 163.857L299.26 163.754C299.316 164.226 299.445 164.614 299.646 164.919C299.852 165.219 300.17 165.463 300.599 165.652C301.028 165.837 301.51 165.929 302.047 165.929C302.523 165.929 302.943 165.858 303.308 165.717C303.673 165.575 303.943 165.382 304.119 165.137C304.299 164.889 304.389 164.618 304.389 164.327C304.389 164.03 304.303 163.773 304.132 163.554C303.96 163.331 303.677 163.144 303.282 162.994C303.029 162.896 302.469 162.743 301.603 162.537C300.736 162.327 300.129 162.13 299.781 161.945C299.331 161.709 298.994 161.418 298.771 161.07C298.552 160.718 298.443 160.326 298.443 159.892C298.443 159.416 298.578 158.972 298.848 158.56C299.118 158.144 299.513 157.829 300.032 157.614C300.551 157.4 301.129 157.292 301.764 157.292C302.463 157.292 303.079 157.406 303.611 157.633C304.147 157.857 304.559 158.187 304.846 158.625C305.134 159.062 305.288 159.558 305.31 160.111L304.113 160.201C304.048 159.605 303.829 159.154 303.456 158.85C303.087 158.545 302.54 158.393 301.815 158.393C301.06 158.393 300.509 158.532 300.161 158.811C299.818 159.086 299.646 159.418 299.646 159.809C299.646 160.148 299.768 160.426 300.013 160.645C300.253 160.864 300.88 161.089 301.892 161.321C302.909 161.548 303.606 161.748 303.984 161.92C304.533 162.173 304.938 162.494 305.2 162.885C305.462 163.271 305.593 163.717 305.593 164.224C305.593 164.726 305.449 165.2 305.162 165.646C304.874 166.088 304.46 166.433 303.919 166.682C303.383 166.927 302.778 167.049 302.105 167.049C301.251 167.049 300.534 166.924 299.955 166.676C299.38 166.427 298.928 166.053 298.597 165.556C298.271 165.054 298.099 164.487 298.082 163.857Z" fill="#9C9C9C"/>
+<path d="M314.58 165.878C315.159 166.277 315.693 166.568 316.183 166.753L315.816 167.622C315.138 167.377 314.462 166.991 313.788 166.463C313.089 166.854 312.317 167.049 311.472 167.049C310.618 167.049 309.843 166.843 309.148 166.431C308.453 166.019 307.917 165.44 307.539 164.693C307.166 163.947 306.98 163.106 306.98 162.171C306.98 161.24 307.168 160.392 307.546 159.628C307.923 158.865 308.46 158.283 309.155 157.884C309.854 157.485 310.635 157.286 311.497 157.286C312.368 157.286 313.153 157.494 313.853 157.91C314.552 158.322 315.084 158.901 315.449 159.648C315.818 160.39 316.002 161.229 316.002 162.164C316.002 162.941 315.884 163.64 315.648 164.262C315.412 164.88 315.056 165.418 314.58 165.878ZM311.832 164.281C312.553 164.483 313.147 164.783 313.615 165.182C314.348 164.513 314.715 163.507 314.715 162.164C314.715 161.4 314.584 160.733 314.323 160.163C314.065 159.592 313.685 159.15 313.184 158.837C312.686 158.519 312.126 158.361 311.504 158.361C310.573 158.361 309.8 158.68 309.187 159.32C308.573 159.955 308.267 160.905 308.267 162.171C308.267 163.398 308.569 164.339 309.174 164.996C309.783 165.652 310.56 165.98 311.504 165.98C311.95 165.98 312.37 165.897 312.765 165.729C312.375 165.476 311.963 165.296 311.53 165.189L311.832 164.281Z" fill="#9C9C9C"/>
+<path d="M317.769 166.888V157.453H319.017V165.775H323.664V166.888H317.769Z" fill="#9C9C9C"/>
+<path d="M228.709 251.515V211.679C228.709 211.679 236.393 218.36 258.979 218.36C281.566 218.36 289.202 211.059 289.202 211.059V251.515C279.779 265.358 232.998 261.221 228.709 251.515Z" fill="#E0454C"/>
+<path d="M228.05 279.649V238.373C228.05 238.373 235.864 246.357 258.451 246.357C281.037 246.357 288.543 238.373 288.543 238.373L289.181 279.649C279.576 291.7 233.896 289.44 228.05 279.649Z" fill="#0070CC"/>
+<path d="M289.912 209.164C289.912 214.624 276.06 219.05 258.609 219.05C241.157 219.05 227.305 214.624 227.305 209.164C227.305 203.705 241.157 199.279 258.609 199.279C276.06 199.279 289.912 203.705 289.912 209.164Z" fill="#E0454C"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M286.682 211.959C288.109 210.885 288.594 209.927 288.594 209.164C288.594 208.402 288.109 207.444 286.682 206.37C285.276 205.312 283.155 204.302 280.406 203.431C274.924 201.693 267.239 200.597 258.609 200.597C249.978 200.597 242.293 201.693 236.811 203.431C234.062 204.302 231.941 205.312 230.535 206.37C229.108 207.444 228.623 208.402 228.623 209.164C228.623 209.927 229.108 210.885 230.535 211.959C231.941 213.017 234.062 214.027 236.811 214.898C242.293 216.635 249.978 217.732 258.609 217.732C267.239 217.732 274.924 216.635 280.406 214.898C283.155 214.027 285.276 213.017 286.682 211.959ZM258.609 219.05C276.06 219.05 289.912 214.624 289.912 209.164C289.912 203.705 276.06 199.279 258.609 199.279C241.157 199.279 227.305 203.705 227.305 209.164C227.305 214.624 241.157 219.05 258.609 219.05Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M227.536 279.196L227.305 208.508L228.623 208.502L228.854 279.19L227.536 279.196Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M288.594 279.679L288.594 208.505L289.912 208.505L289.912 279.679L288.594 279.679Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M237.341 284.736C242.792 286.43 250.362 287.487 258.753 287.487C267.144 287.487 274.715 286.43 280.165 284.736C282.895 283.888 285.055 282.892 286.519 281.817C287.997 280.731 288.652 279.654 288.652 278.652H289.97C289.97 280.272 288.915 281.693 287.3 282.879C285.671 284.075 283.357 285.125 280.556 285.995C274.947 287.737 267.239 288.805 258.753 288.805C250.268 288.805 242.559 287.737 236.95 285.995C234.15 285.125 231.835 284.075 230.207 282.879C228.592 281.693 227.536 280.272 227.536 278.652H228.854C228.854 279.654 229.509 280.731 230.987 281.817C232.451 282.892 234.612 283.888 237.341 284.736Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M237.341 242.559C242.792 244.253 250.362 245.31 258.753 245.31C267.144 245.31 274.715 244.253 280.165 242.559C282.895 241.711 285.055 240.715 286.519 239.64C287.997 238.555 288.652 237.478 288.652 236.476H289.97C289.97 238.096 288.915 239.516 287.3 240.702C285.671 241.898 283.357 242.948 280.556 243.818C274.947 245.561 267.239 246.628 258.753 246.628C250.268 246.628 242.559 245.561 236.95 243.818C234.15 242.948 231.835 241.898 230.207 240.702C228.592 239.516 227.536 238.096 227.536 236.476H228.854C228.854 237.478 229.509 238.555 230.987 239.64C232.451 240.715 234.612 241.711 237.341 242.559Z" fill="#2D2D2D"/>
+<path d="M235.996 234.866V227.318H237.499L239.286 232.662C239.451 233.16 239.571 233.532 239.646 233.779C239.732 233.505 239.866 233.102 240.048 232.57L241.855 227.318H243.199V234.866H242.236V228.549L240.043 234.866H239.142L236.959 228.44V234.866H235.996Z" fill="white"/>
+<path d="M244.963 234.866V227.318H250.42V228.209H245.962V230.52H250.137V231.406H245.962V233.975H250.595V234.866H244.963Z" fill="white"/>
+<path d="M252.076 234.866V227.318H253.579L255.366 232.662C255.531 233.16 255.651 233.532 255.726 233.779C255.812 233.505 255.946 233.102 256.128 232.57L257.935 227.318H259.279V234.866H258.316V228.549L256.123 234.866H255.222L253.039 228.44V234.866H252.076Z" fill="white"/>
+<path d="M260.718 231.19C260.718 229.937 261.055 228.957 261.727 228.25C262.4 227.539 263.269 227.184 264.333 227.184C265.029 227.184 265.658 227.351 266.217 227.684C266.776 228.017 267.202 228.482 267.494 229.079C267.789 229.673 267.937 230.347 267.937 231.102C267.937 231.868 267.782 232.552 267.473 233.157C267.164 233.761 266.727 234.219 266.16 234.531C265.594 234.84 264.983 234.995 264.327 234.995C263.617 234.995 262.982 234.823 262.423 234.48C261.863 234.136 261.439 233.668 261.151 233.074C260.863 232.48 260.718 231.852 260.718 231.19ZM261.748 231.205C261.748 232.115 261.992 232.832 262.479 233.357C262.97 233.879 263.584 234.14 264.322 234.14C265.074 234.14 265.692 233.876 266.176 233.347C266.663 232.818 266.907 232.068 266.907 231.097C266.907 230.483 266.802 229.947 266.593 229.491C266.387 229.031 266.083 228.676 265.682 228.425C265.283 228.171 264.835 228.044 264.338 228.044C263.631 228.044 263.021 228.288 262.51 228.775C262.002 229.259 261.748 230.069 261.748 231.205Z" fill="white"/>
+<path d="M269.376 234.866V227.318H272.723C273.395 227.318 273.907 227.387 274.257 227.524C274.607 227.658 274.887 227.896 275.096 228.24C275.306 228.583 275.41 228.962 275.41 229.377C275.41 229.913 275.237 230.364 274.89 230.732C274.544 231.099 274.008 231.332 273.284 231.432C273.548 231.559 273.749 231.684 273.886 231.808C274.178 232.075 274.454 232.41 274.715 232.812L276.028 234.866H274.772L273.773 233.296C273.481 232.842 273.241 232.496 273.052 232.256C272.863 232.015 272.694 231.847 272.542 231.751C272.395 231.655 272.244 231.588 272.089 231.55C271.976 231.526 271.791 231.514 271.533 231.514H270.375V234.866H269.376ZM270.375 230.649H272.522C272.978 230.649 273.335 230.603 273.593 230.51C273.85 230.414 274.046 230.263 274.18 230.057C274.314 229.848 274.381 229.621 274.381 229.377C274.381 229.021 274.25 228.727 273.989 228.497C273.732 228.267 273.323 228.152 272.764 228.152H270.375V230.649Z" fill="white"/>
+<path d="M279.043 234.866V231.669L276.134 227.318H277.349L278.837 229.594C279.112 230.019 279.367 230.445 279.604 230.871C279.831 230.476 280.105 230.031 280.428 229.537L281.89 227.318H283.054L280.042 231.669V234.866H279.043Z" fill="white"/>
+<path d="M246.571 276.384V268.836H249.171C249.758 268.836 250.206 268.872 250.515 268.944C250.947 269.044 251.316 269.224 251.622 269.485C252.02 269.821 252.317 270.252 252.513 270.777C252.712 271.299 252.811 271.896 252.811 272.569C252.811 273.142 252.744 273.65 252.61 274.093C252.477 274.535 252.305 274.903 252.096 275.194C251.886 275.483 251.656 275.711 251.406 275.879C251.159 276.044 250.858 276.169 250.505 276.255C250.155 276.341 249.751 276.384 249.295 276.384H246.571ZM247.57 275.493H249.182C249.679 275.493 250.069 275.447 250.35 275.354C250.635 275.261 250.862 275.131 251.03 274.963C251.267 274.726 251.45 274.408 251.581 274.01C251.715 273.609 251.782 273.123 251.782 272.553C251.782 271.764 251.651 271.158 251.39 270.736C251.133 270.31 250.819 270.025 250.448 269.881C250.18 269.778 249.75 269.727 249.156 269.727H247.57V275.493Z" fill="white"/>
+<path d="M254.493 276.384V268.836H255.492V276.384H254.493Z" fill="white"/>
+<path d="M257.05 273.959L257.992 273.876C258.036 274.254 258.139 274.564 258.301 274.808C258.465 275.048 258.719 275.244 259.063 275.395C259.406 275.543 259.792 275.616 260.221 275.616C260.602 275.616 260.938 275.56 261.23 275.447C261.522 275.333 261.738 275.179 261.879 274.983C262.023 274.784 262.095 274.568 262.095 274.335C262.095 274.098 262.026 273.892 261.889 273.717C261.752 273.538 261.525 273.389 261.21 273.269C261.007 273.19 260.559 273.068 259.866 272.903C259.172 272.735 258.687 272.577 258.409 272.43C258.048 272.241 257.779 272.007 257.6 271.729C257.425 271.448 257.338 271.134 257.338 270.787C257.338 270.406 257.446 270.051 257.662 269.721C257.878 269.388 258.194 269.136 258.61 268.965C259.025 268.793 259.487 268.707 259.994 268.707C260.554 268.707 261.047 268.798 261.472 268.98C261.901 269.159 262.231 269.423 262.461 269.773C262.691 270.123 262.814 270.519 262.831 270.962L261.874 271.034C261.822 270.557 261.647 270.197 261.349 269.953C261.053 269.709 260.616 269.588 260.036 269.588C259.432 269.588 258.991 269.699 258.713 269.922C258.438 270.142 258.301 270.408 258.301 270.72C258.301 270.991 258.398 271.214 258.594 271.39C258.786 271.565 259.287 271.745 260.097 271.93C260.911 272.112 261.469 272.272 261.771 272.409C262.21 272.611 262.534 272.869 262.744 273.181C262.953 273.49 263.058 273.847 263.058 274.252C263.058 274.654 262.943 275.033 262.713 275.39C262.483 275.743 262.152 276.02 261.719 276.219C261.29 276.415 260.806 276.512 260.267 276.512C259.584 276.512 259.011 276.413 258.548 276.214C258.088 276.015 257.726 275.716 257.461 275.318C257.201 274.916 257.063 274.463 257.05 273.959Z" fill="white"/>
+<path d="M264.513 276.384V268.836H265.512V272.579L269.26 268.836H270.614L267.448 271.894L270.753 276.384H269.435L266.747 272.563L265.512 273.768V276.384H264.513Z" fill="white"/>
+<path d="M333.718 251.515V211.679C333.718 211.679 341.401 218.36 363.987 218.36C386.574 218.36 394.21 211.059 394.21 211.059V251.515C384.787 265.358 338.006 261.221 333.718 251.515Z" fill="#E0454C"/>
+<path d="M333.059 279.649V238.373C333.059 238.373 340.872 246.357 363.459 246.357C386.045 246.357 393.551 238.373 393.551 238.373L394.189 279.649C384.584 291.7 338.904 289.44 333.059 279.649Z" fill="#0070CC"/>
+<path d="M394.92 209.164C394.92 214.624 381.068 219.05 363.617 219.05C346.165 219.05 332.314 214.624 332.314 209.164C332.314 203.705 346.165 199.279 363.617 199.279C381.068 199.279 394.92 203.705 394.92 209.164Z" fill="#E0454C"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M391.69 211.959C393.117 210.885 393.602 209.927 393.602 209.164C393.602 208.402 393.117 207.444 391.69 206.37C390.284 205.312 388.163 204.302 385.414 203.431C379.932 201.693 372.247 200.597 363.617 200.597C354.986 200.597 347.302 201.693 341.819 203.431C339.07 204.302 336.949 205.312 335.543 206.37C334.116 207.444 333.632 208.402 333.632 209.164C333.632 209.927 334.116 210.885 335.543 211.959C336.949 213.017 339.07 214.027 341.819 214.898C347.302 216.635 354.986 217.732 363.617 217.732C372.247 217.732 379.932 216.635 385.414 214.898C388.163 214.027 390.284 213.017 391.69 211.959ZM363.617 219.05C381.068 219.05 394.92 214.624 394.92 209.164C394.92 203.705 381.068 199.279 363.617 199.279C346.165 199.279 332.314 203.705 332.314 209.164C332.314 214.624 346.165 219.05 363.617 219.05Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M332.545 279.196L332.314 208.508L333.632 208.502L333.863 279.19L332.545 279.196Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M393.602 279.679L393.602 208.505L394.92 208.505L394.92 279.679L393.602 279.679Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M342.349 284.736C347.8 286.43 355.371 287.487 363.761 287.487C372.152 287.487 379.723 286.43 385.174 284.736C387.903 283.888 390.064 282.892 391.528 281.817C393.005 280.731 393.66 279.654 393.66 278.652H394.978C394.978 280.272 393.923 281.693 392.308 282.879C390.679 284.075 388.365 285.125 385.565 285.995C379.956 287.737 372.247 288.805 363.761 288.805C355.276 288.805 347.567 287.737 341.958 285.995C339.158 285.125 336.843 284.075 335.215 282.879C333.6 281.693 332.545 280.272 332.545 278.652H333.863C333.863 279.654 334.518 280.731 335.995 281.817C337.459 282.892 339.62 283.888 342.349 284.736Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M342.349 242.559C347.8 244.253 355.371 245.31 363.761 245.31C372.152 245.31 379.723 244.253 385.174 242.559C387.903 241.711 390.064 240.715 391.528 239.64C393.005 238.555 393.66 237.478 393.66 236.476H394.978C394.978 238.096 393.923 239.516 392.308 240.702C390.679 241.898 388.365 242.948 385.565 243.818C379.956 245.561 372.247 246.628 363.761 246.628C355.276 246.628 347.567 245.561 341.958 243.818C339.158 242.948 336.844 241.898 335.215 240.702C333.6 239.516 332.545 238.096 332.545 236.476H333.863C333.863 237.478 334.518 238.555 335.995 239.64C337.459 240.715 339.62 241.711 342.349 242.559Z" fill="#2D2D2D"/>
+<path d="M341.004 234.866V227.318H342.508L344.294 232.662C344.459 233.16 344.579 233.532 344.655 233.779C344.741 233.505 344.874 233.102 345.056 232.57L346.863 227.318H348.207V234.866H347.244V228.549L345.051 234.866H344.15L341.967 228.44V234.866H341.004Z" fill="white"/>
+<path d="M349.971 234.866V227.318H355.429V228.209H350.97V230.52H355.145V231.406H350.97V233.975H355.604V234.866H349.971Z" fill="white"/>
+<path d="M357.084 234.866V227.318H358.588L360.374 232.662C360.539 233.16 360.659 233.532 360.735 233.779C360.82 233.505 360.954 233.102 361.136 232.57L362.943 227.318H364.287V234.866H363.324V228.549L361.131 234.866H360.23L358.047 228.44V234.866H357.084Z" fill="white"/>
+<path d="M365.727 231.19C365.727 229.937 366.063 228.957 366.736 228.25C367.408 227.539 368.277 227.184 369.341 227.184C370.038 227.184 370.666 227.351 371.225 227.684C371.785 228.017 372.21 228.482 372.502 229.079C372.797 229.673 372.945 230.347 372.945 231.102C372.945 231.868 372.79 232.552 372.482 233.157C372.173 233.761 371.735 234.219 371.169 234.531C370.602 234.84 369.991 234.995 369.336 234.995C368.625 234.995 367.99 234.823 367.431 234.48C366.871 234.136 366.447 233.668 366.159 233.074C365.871 232.48 365.727 231.852 365.727 231.19ZM366.756 231.205C366.756 232.115 367 232.832 367.487 233.357C367.978 233.879 368.593 234.14 369.331 234.14C370.082 234.14 370.7 233.876 371.184 233.347C371.671 232.818 371.915 232.068 371.915 231.097C371.915 230.483 371.81 229.947 371.601 229.491C371.395 229.031 371.091 228.676 370.69 228.425C370.292 228.171 369.844 228.044 369.346 228.044C368.639 228.044 368.03 228.288 367.518 228.775C367.01 229.259 366.756 230.069 366.756 231.205Z" fill="white"/>
+<path d="M374.384 234.866V227.318H377.731C378.404 227.318 378.915 227.387 379.265 227.524C379.615 227.658 379.895 227.896 380.104 228.24C380.314 228.583 380.418 228.962 380.418 229.377C380.418 229.913 380.245 230.364 379.898 230.732C379.552 231.099 379.016 231.332 378.292 231.432C378.556 231.559 378.757 231.684 378.895 231.808C379.186 232.075 379.463 232.41 379.723 232.812L381.036 234.866H379.78L378.781 233.296C378.49 232.842 378.249 232.496 378.06 232.256C377.872 232.015 377.702 231.847 377.551 231.751C377.403 231.655 377.252 231.588 377.098 231.55C376.984 231.526 376.799 231.514 376.542 231.514H375.383V234.866H374.384ZM375.383 230.649H377.53C377.987 230.649 378.344 230.603 378.601 230.51C378.858 230.414 379.054 230.263 379.188 230.057C379.322 229.848 379.389 229.621 379.389 229.377C379.389 229.021 379.258 228.727 378.998 228.497C378.74 228.267 378.332 228.152 377.772 228.152H375.383V230.649Z" fill="white"/>
+<path d="M384.051 234.866V231.669L381.142 227.318H382.357L383.845 229.594C384.12 230.019 384.376 230.445 384.612 230.871C384.839 230.476 385.114 230.031 385.436 229.537L386.898 227.318H388.062L385.05 231.669V234.866H384.051Z" fill="white"/>
+<path d="M351.579 276.384V268.836H354.18C354.766 268.836 355.214 268.872 355.523 268.944C355.956 269.044 356.325 269.224 356.63 269.485C357.028 269.821 357.325 270.252 357.521 270.777C357.72 271.299 357.82 271.896 357.82 272.569C357.82 273.142 357.753 273.65 357.619 274.093C357.485 274.535 357.313 274.903 357.104 275.194C356.895 275.483 356.665 275.711 356.414 275.879C356.167 276.044 355.867 276.169 355.513 276.255C355.163 276.341 354.76 276.384 354.303 276.384H351.579ZM352.578 275.493H354.19C354.687 275.493 355.077 275.447 355.359 275.354C355.643 275.261 355.87 275.131 356.038 274.963C356.275 274.726 356.459 274.408 356.589 274.01C356.723 273.609 356.79 273.123 356.79 272.553C356.79 271.764 356.659 271.158 356.399 270.736C356.141 270.31 355.827 270.025 355.456 269.881C355.189 269.778 354.758 269.727 354.164 269.727H352.578V275.493Z" fill="white"/>
+<path d="M359.501 276.384V268.836H360.5V276.384H359.501Z" fill="white"/>
+<path d="M362.058 273.959L363 273.876C363.045 274.254 363.148 274.564 363.309 274.808C363.474 275.048 363.728 275.244 364.071 275.395C364.414 275.543 364.8 275.616 365.229 275.616C365.61 275.616 365.947 275.56 366.238 275.447C366.53 275.333 366.746 275.179 366.887 274.983C367.031 274.784 367.103 274.568 367.103 274.335C367.103 274.098 367.035 273.892 366.897 273.717C366.76 273.538 366.534 273.389 366.218 273.269C366.015 273.19 365.567 273.068 364.874 272.903C364.181 272.735 363.695 272.577 363.417 272.43C363.057 272.241 362.787 272.007 362.609 271.729C362.434 271.448 362.346 271.134 362.346 270.787C362.346 270.406 362.454 270.051 362.67 269.721C362.887 269.388 363.202 269.136 363.618 268.965C364.033 268.793 364.495 268.707 365.003 268.707C365.562 268.707 366.055 268.798 366.48 268.98C366.909 269.159 367.239 269.423 367.469 269.773C367.699 270.123 367.822 270.519 367.84 270.962L366.882 271.034C366.83 270.557 366.655 270.197 366.357 269.953C366.062 269.709 365.624 269.588 365.044 269.588C364.44 269.588 363.999 269.699 363.721 269.922C363.446 270.142 363.309 270.408 363.309 270.72C363.309 270.991 363.407 271.214 363.602 271.39C363.795 271.565 364.296 271.745 365.106 271.93C365.919 272.112 366.477 272.272 366.779 272.409C367.218 272.611 367.543 272.869 367.752 273.181C367.961 273.49 368.066 273.847 368.066 274.252C368.066 274.654 367.951 275.033 367.721 275.39C367.491 275.743 367.16 276.02 366.728 276.219C366.298 276.415 365.815 276.512 365.276 276.512C364.593 276.512 364.019 276.413 363.556 276.214C363.096 276.015 362.734 275.716 362.47 275.318C362.209 274.916 362.072 274.463 362.058 273.959Z" fill="white"/>
+<path d="M369.521 276.384V268.836H370.52V272.579L374.268 268.836H375.622L372.456 271.894L375.761 276.384H374.443L371.756 272.563L370.52 273.768V276.384H369.521Z" fill="white"/>
+<path d="M352.138 296.194C352.138 296.194 345.219 300.478 351.74 304.731C352.995 305.559 357.544 307.863 357.415 309.994C357.415 309.994 360.173 305.852 356.141 303.246C351.999 300.579 350.964 297.73 352.138 296.194Z" fill="#ED1C24"/>
+<path d="M349.729 304.377C349.729 304.377 347.26 308.176 352.119 308.954C352.597 309.014 356.111 309.388 357.027 310.56C357.027 310.56 356.947 308.539 354.08 307.347C351.223 306.155 350.048 305.862 349.729 304.377Z" fill="#ED1C24"/>
+<path d="M359.287 300.387C356.32 297.235 355.494 295.285 356.768 292.759C356.768 292.759 347.918 296.214 356.659 302.347C359.785 304.539 359.267 306.782 359.267 306.862C359.755 306.347 362.254 303.539 359.287 300.387Z" fill="#ED1C24"/>
+<path d="M364.195 307.986V300.438H365.219L369.184 306.364V300.438H370.141V307.986H369.117L365.152 302.055V307.986H364.195Z" fill="#2D2D2D"/>
+<path d="M371.653 304.31C371.653 303.057 371.989 302.077 372.662 301.37C373.335 300.66 374.203 300.304 375.267 300.304C375.964 300.304 376.592 300.471 377.151 300.804C377.711 301.137 378.137 301.602 378.428 302.199C378.723 302.793 378.871 303.467 378.871 304.222C378.871 304.988 378.717 305.673 378.408 306.277C378.099 306.881 377.661 307.339 377.095 307.651C376.528 307.96 375.918 308.115 375.262 308.115C374.551 308.115 373.916 307.943 373.357 307.6C372.798 307.257 372.374 306.788 372.085 306.194C371.797 305.601 371.653 304.972 371.653 304.31ZM372.683 304.325C372.683 305.235 372.926 305.952 373.414 306.478C373.904 306.999 374.519 307.26 375.257 307.26C376.008 307.26 376.626 306.996 377.11 306.467C377.598 305.939 377.841 305.189 377.841 304.217C377.841 303.603 377.737 303.067 377.527 302.611C377.321 302.151 377.018 301.796 376.616 301.545C376.218 301.291 375.77 301.164 375.272 301.164C374.565 301.164 373.956 301.408 373.445 301.895C372.937 302.379 372.683 303.189 372.683 304.325Z" fill="#2D2D2D"/>
+<path d="M380.295 307.986V300.438H382.895C383.482 300.438 383.93 300.474 384.239 300.546C384.671 300.646 385.04 300.826 385.346 301.087C385.744 301.423 386.041 301.854 386.237 302.379C386.436 302.901 386.535 303.498 386.535 304.171C386.535 304.744 386.468 305.252 386.334 305.695C386.201 306.138 386.029 306.505 385.82 306.797C385.61 307.085 385.38 307.313 385.13 307.482C384.882 307.646 384.582 307.772 384.229 307.857C383.879 307.943 383.475 307.986 383.019 307.986H380.295ZM381.294 307.095H382.905C383.403 307.095 383.793 307.049 384.074 306.956C384.359 306.864 384.586 306.733 384.754 306.565C384.991 306.328 385.174 306.011 385.305 305.613C385.439 305.211 385.505 304.725 385.505 304.156C385.505 303.366 385.375 302.76 385.114 302.338C384.857 301.913 384.543 301.628 384.172 301.483C383.904 301.38 383.474 301.329 382.88 301.329H381.294V307.095Z" fill="#2D2D2D"/>
+<path d="M388.067 307.986V300.438H393.525V301.329H389.066V303.641H393.242V304.526H389.066V307.095H393.7V307.986H388.067Z" fill="#2D2D2D"/>
+<path d="M230.832 296.194C230.832 296.194 223.912 300.478 230.433 304.731C231.688 305.559 236.238 307.863 236.108 309.994C236.108 309.994 238.866 305.852 234.834 303.246C230.692 300.579 229.657 297.73 230.832 296.194Z" fill="#ED1C24"/>
+<path d="M228.422 304.377C228.422 304.377 225.953 308.176 230.812 308.954C231.29 309.014 234.804 309.388 235.72 310.56C235.72 310.56 235.64 308.539 232.773 307.347C229.916 306.155 228.741 305.862 228.422 304.377Z" fill="#ED1C24"/>
+<path d="M237.98 300.387C235.013 297.235 234.187 295.285 235.461 292.759C235.461 292.759 226.611 296.214 235.352 302.347C238.478 304.539 237.96 306.782 237.96 306.862C238.448 306.347 240.947 303.539 237.98 300.387Z" fill="#ED1C24"/>
+<path d="M242.888 307.986V300.438H243.912L247.877 306.364V300.438H248.834V307.986H247.81L243.845 302.055V307.986H242.888Z" fill="#2D2D2D"/>
+<path d="M250.346 304.31C250.346 303.057 250.682 302.077 251.355 301.37C252.028 300.66 252.896 300.304 253.96 300.304C254.657 300.304 255.285 300.471 255.845 300.804C256.404 301.137 256.83 301.602 257.121 302.199C257.417 302.793 257.564 303.467 257.564 304.222C257.564 304.988 257.41 305.673 257.101 306.277C256.792 306.881 256.354 307.339 255.788 307.651C255.222 307.96 254.611 308.115 253.955 308.115C253.245 308.115 252.61 307.943 252.05 307.6C251.491 307.257 251.067 306.788 250.778 306.194C250.49 305.601 250.346 304.972 250.346 304.31ZM251.376 304.325C251.376 305.235 251.619 305.952 252.107 306.478C252.598 306.999 253.212 307.26 253.95 307.26C254.702 307.26 255.319 306.996 255.803 306.467C256.291 305.939 256.534 305.189 256.534 304.217C256.534 303.603 256.43 303.067 256.22 302.611C256.014 302.151 255.711 301.796 255.309 301.545C254.911 301.291 254.463 301.164 253.965 301.164C253.258 301.164 252.649 301.408 252.138 301.895C251.63 302.379 251.376 303.189 251.376 304.325Z" fill="#2D2D2D"/>
+<path d="M258.988 307.986V300.438H261.588C262.175 300.438 262.623 300.474 262.932 300.546C263.365 300.646 263.733 300.826 264.039 301.087C264.437 301.423 264.734 301.854 264.93 302.379C265.129 302.901 265.228 303.498 265.228 304.171C265.228 304.744 265.161 305.252 265.027 305.695C264.894 306.138 264.722 306.505 264.513 306.797C264.303 307.085 264.073 307.313 263.823 307.482C263.576 307.646 263.275 307.772 262.922 307.857C262.572 307.943 262.168 307.986 261.712 307.986H258.988ZM259.987 307.095H261.599C262.096 307.095 262.486 307.049 262.767 306.956C263.052 306.864 263.279 306.733 263.447 306.565C263.684 306.328 263.867 306.011 263.998 305.613C264.132 305.211 264.199 304.725 264.199 304.156C264.199 303.366 264.068 302.76 263.807 302.338C263.55 301.913 263.236 301.628 262.865 301.483C262.597 301.38 262.167 301.329 261.573 301.329H259.987V307.095Z" fill="#2D2D2D"/>
+<path d="M266.76 307.986V300.438H272.218V301.329H267.759V303.641H271.935V304.526H267.759V307.095H272.393V307.986H266.76Z" fill="#2D2D2D"/>
+<path d="M291.461 315.964C291.461 315.964 284.542 320.248 291.063 324.501C292.317 325.33 296.867 327.633 296.737 329.765C296.737 329.765 299.495 325.622 295.463 323.016C291.321 320.349 290.286 317.5 291.461 315.964Z" fill="#ED1C24"/>
+<path d="M289.052 324.148C289.052 324.148 286.583 327.946 291.441 328.724C291.919 328.785 295.433 329.158 296.349 330.33C296.349 330.33 296.269 328.31 293.402 327.118C290.545 325.926 289.37 325.633 289.052 324.148Z" fill="#ED1C24"/>
+<path d="M298.609 320.157C295.642 317.005 294.816 315.055 296.09 312.53C296.09 312.53 287.24 315.985 295.981 322.117C299.107 324.309 298.589 326.552 298.589 326.633C299.077 326.118 301.576 323.309 298.609 320.157Z" fill="#ED1C24"/>
+<path d="M303.517 327.756V320.209H304.541L308.506 326.135V320.209H309.463V327.756H308.439L304.475 321.825V327.756H303.517Z" fill="#2D2D2D"/>
+<path d="M310.975 324.08C310.975 322.828 311.311 321.848 311.984 321.141C312.657 320.43 313.525 320.075 314.589 320.075C315.286 320.075 315.914 320.241 316.474 320.574C317.033 320.907 317.459 321.372 317.751 321.969C318.046 322.563 318.193 323.238 318.193 323.993C318.193 324.758 318.039 325.443 317.73 326.047C317.421 326.651 316.983 327.109 316.417 327.422C315.851 327.731 315.24 327.885 314.584 327.885C313.874 327.885 313.239 327.714 312.679 327.37C312.12 327.027 311.696 326.559 311.408 325.965C311.119 325.371 310.975 324.743 310.975 324.08ZM312.005 324.096C312.005 325.005 312.248 325.723 312.736 326.248C313.227 326.77 313.841 327.031 314.579 327.031C315.331 327.031 315.949 326.766 316.432 326.238C316.92 325.709 317.164 324.959 317.164 323.988C317.164 323.373 317.059 322.838 316.85 322.381C316.644 321.921 316.34 321.566 315.938 321.316C315.54 321.062 315.092 320.935 314.594 320.935C313.887 320.935 313.278 321.178 312.767 321.666C312.259 322.15 312.005 322.96 312.005 324.096Z" fill="#2D2D2D"/>
+<path d="M319.617 327.756V320.209H322.217C322.804 320.209 323.252 320.245 323.561 320.317C323.994 320.416 324.363 320.597 324.668 320.857C325.066 321.194 325.363 321.625 325.559 322.15C325.758 322.671 325.857 323.269 325.857 323.941C325.857 324.515 325.79 325.023 325.657 325.465C325.523 325.908 325.351 326.275 325.142 326.567C324.932 326.855 324.702 327.084 324.452 327.252C324.205 327.417 323.904 327.542 323.551 327.628C323.201 327.714 322.797 327.756 322.341 327.756H319.617ZM320.616 326.866H322.228C322.725 326.866 323.115 326.819 323.396 326.727C323.681 326.634 323.908 326.504 324.076 326.335C324.313 326.099 324.496 325.781 324.627 325.383C324.761 324.981 324.828 324.496 324.828 323.926C324.828 323.136 324.697 322.531 324.436 322.109C324.179 321.683 323.865 321.398 323.494 321.254C323.227 321.151 322.796 321.099 322.202 321.099H320.616V326.866Z" fill="#2D2D2D"/>
+<path d="M327.39 327.756V320.209H332.847V321.099H328.388V323.411H332.564V324.297H328.388V326.866H333.022V327.756H327.39Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M141.963 146.459V120.098H143.281V146.459C143.281 178.851 169.541 205.111 201.933 205.111H213.523L210.454 202.042C210.196 201.784 210.196 201.367 210.454 201.11C210.711 200.852 211.128 200.852 211.386 201.11L215.58 205.304C215.837 205.561 215.837 205.978 215.58 206.236L211.386 210.43C211.128 210.687 210.711 210.687 210.454 210.43C210.196 210.172 210.196 209.755 210.454 209.498L213.523 206.429H201.933C168.813 206.429 141.963 179.579 141.963 146.459Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M483.332 146.459V120.098H482.014V146.459C482.014 178.851 455.754 205.111 423.362 205.111H411.772L414.841 202.042C415.099 201.784 415.099 201.367 414.841 201.11C414.584 200.852 414.167 200.852 413.909 201.11L409.715 205.304C409.458 205.561 409.458 205.978 409.715 206.236L413.909 210.43C414.167 210.687 414.584 210.687 414.841 210.43C415.099 210.172 415.099 209.755 414.841 209.498L411.772 206.429H423.362C456.482 206.429 483.332 179.579 483.332 146.459Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M310.011 194.952L310.011 176.114L311.33 176.114L311.33 194.952L314.398 191.883C314.656 191.626 315.073 191.626 315.33 191.883C315.588 192.141 315.588 192.558 315.33 192.815L311.137 197.009C310.879 197.267 310.462 197.267 310.205 197.009L306.011 192.815C305.753 192.558 305.753 192.141 306.011 191.883C306.268 191.626 306.685 191.626 306.943 191.883L310.011 194.952Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M310.012 145.8L310.012 120.098L311.33 120.098L311.33 145.8L310.012 145.8Z" fill="#2D2D2D"/>
+<path d="M43.7704 145.799H178.209V180.068H43.7704V145.799Z" fill="#F6F6F6"/>
+<path d="M453.676 145.799H588.115V180.068H453.676V145.799Z" fill="#F6F6F6"/>
+<path d="M51.5189 162.921L52.7674 163.236C52.5057 164.262 52.0338 165.045 51.3516 165.585C50.6737 166.122 49.8435 166.39 48.861 166.39C47.8442 166.39 47.0161 166.184 46.3768 165.772C45.7418 165.356 45.257 164.755 44.9224 163.97C44.592 163.185 44.4268 162.342 44.4268 161.441C44.4268 160.458 44.6135 159.602 44.9867 158.873C45.3643 158.139 45.8984 157.584 46.5892 157.206C47.2843 156.824 48.048 156.633 48.8803 156.633C49.8242 156.633 50.6179 156.874 51.2615 157.354C51.9051 157.835 52.3534 158.51 52.6066 159.381L51.3773 159.671C51.1585 158.984 50.841 158.485 50.4249 158.171C50.0087 157.858 49.4853 157.702 48.8546 157.702C48.1295 157.702 47.5224 157.875 47.0333 158.223C46.5484 158.57 46.2074 159.038 46.01 159.626C45.8126 160.209 45.714 160.812 45.714 161.434C45.714 162.237 45.8298 162.938 46.0615 163.539C46.2975 164.135 46.6621 164.581 47.1555 164.877C47.6489 165.173 48.1831 165.321 48.758 165.321C49.4574 165.321 50.0494 165.12 50.5343 164.717C51.0191 164.313 51.3473 163.715 51.5189 162.921Z" fill="#9C9C9C"/>
+<path d="M53.8646 162.812C53.8646 161.546 54.2164 160.608 54.9201 159.999C55.5078 159.493 56.2243 159.24 57.0696 159.24C58.0092 159.24 58.7772 159.549 59.3735 160.166C59.9699 160.78 60.2681 161.63 60.2681 162.715C60.2681 163.595 60.1351 164.287 59.8691 164.794C59.6074 165.296 59.2234 165.686 58.7171 165.965C58.2151 166.244 57.6659 166.383 57.0696 166.383C56.1128 166.383 55.3384 166.077 54.7463 165.463C54.1585 164.85 53.8646 163.966 53.8646 162.812ZM55.0552 162.812C55.0552 163.687 55.2461 164.343 55.628 164.781C56.0098 165.214 56.4904 165.431 57.0696 165.431C57.6445 165.431 58.1229 165.212 58.5047 164.774C58.8866 164.337 59.0775 163.67 59.0775 162.773C59.0775 161.928 58.8844 161.288 58.4983 160.855C58.1164 160.417 57.6402 160.199 57.0696 160.199C56.4904 160.199 56.0098 160.415 55.628 160.849C55.2461 161.282 55.0552 161.936 55.0552 162.812Z" fill="#9C9C9C"/>
+<path d="M61.7643 166.229V159.394H62.8004V160.353C63.0149 160.018 63.3002 159.75 63.6563 159.549C64.0125 159.343 64.4179 159.24 64.8727 159.24C65.379 159.24 65.793 159.345 66.1148 159.555C66.4408 159.765 66.6704 160.059 66.8034 160.437C67.344 159.639 68.0476 159.24 68.9143 159.24C69.5922 159.24 70.1135 159.429 70.4782 159.806C70.8428 160.179 71.0252 160.756 71.0252 161.537V166.229H69.8732V161.923C69.8732 161.46 69.8346 161.128 69.7574 160.926C69.6844 160.72 69.5493 160.555 69.3519 160.43C69.1546 160.306 68.9229 160.244 68.6569 160.244C68.1763 160.244 67.7773 160.405 67.4598 160.726C67.1423 161.044 66.9836 161.554 66.9836 162.258V166.229H65.8252V161.788C65.8252 161.273 65.7308 160.887 65.542 160.63C65.3532 160.372 65.0443 160.244 64.6153 160.244C64.2892 160.244 63.9867 160.33 63.7078 160.501C63.4332 160.673 63.2337 160.924 63.1093 161.254C62.9849 161.584 62.9227 162.061 62.9227 162.683V166.229H61.7643Z" fill="#9C9C9C"/>
+<path d="M72.8753 168.848V159.394H73.9308V160.282C74.1796 159.935 74.4606 159.675 74.7738 159.504C75.087 159.328 75.4667 159.24 75.913 159.24C76.4965 159.24 77.0113 159.39 77.4575 159.69C77.9037 159.991 78.2405 160.415 78.4679 160.965C78.6953 161.509 78.809 162.108 78.809 162.76C78.809 163.459 78.6824 164.09 78.4293 164.652C78.1805 165.21 77.8158 165.639 77.3352 165.939C76.859 166.235 76.357 166.383 75.8293 166.383C75.4431 166.383 75.0956 166.302 74.7867 166.139C74.4821 165.976 74.2311 165.77 74.0337 165.521V168.848H72.8753ZM73.9243 162.85C73.9243 163.73 74.1024 164.38 74.4585 164.8C74.8146 165.221 75.2458 165.431 75.7521 165.431C76.2669 165.431 76.7067 165.214 77.0714 164.781C77.4403 164.343 77.6248 163.667 77.6248 162.754C77.6248 161.883 77.4446 161.231 77.0842 160.797C76.7281 160.364 76.3012 160.147 75.8035 160.147C75.3101 160.147 74.8725 160.379 74.4907 160.842C74.1131 161.301 73.9243 161.971 73.9243 162.85Z" fill="#9C9C9C"/>
+<path d="M84.823 166.229V165.225C84.291 165.997 83.5681 166.383 82.6542 166.383C82.2509 166.383 81.8733 166.306 81.5215 166.152C81.174 165.997 80.9144 165.804 80.7428 165.572C80.5755 165.336 80.4575 165.049 80.3888 164.71C80.3416 164.483 80.318 164.122 80.318 163.629V159.394H81.4765V163.185C81.4765 163.79 81.5001 164.197 81.5473 164.408C81.6202 164.712 81.7746 164.952 82.0106 165.128C82.2466 165.3 82.5383 165.386 82.8859 165.386C83.2334 165.386 83.5595 165.298 83.8641 165.122C84.1687 164.942 84.3832 164.699 84.5077 164.395C84.6364 164.086 84.7007 163.64 84.7007 163.056V159.394H85.8591V166.229H84.823Z" fill="#9C9C9C"/>
+<path d="M90.3415 165.193L90.5088 166.216C90.1827 166.285 89.891 166.319 89.6335 166.319C89.2131 166.319 88.887 166.252 88.6553 166.119C88.4236 165.986 88.2606 165.813 88.1662 165.598C88.0718 165.379 88.0246 164.922 88.0246 164.227V160.295H87.1751V159.394H88.0246V157.702L89.1766 157.007V159.394H90.3415V160.295H89.1766V164.292C89.1766 164.622 89.1959 164.834 89.2345 164.929C89.2774 165.023 89.3439 165.098 89.434 165.154C89.5284 165.21 89.6614 165.238 89.833 165.238C89.9618 165.238 90.1312 165.223 90.3415 165.193Z" fill="#9C9C9C"/>
+<path d="M96.2911 164.028L97.4881 164.176C97.2994 164.875 96.9497 165.418 96.4391 165.804C95.9286 166.19 95.2764 166.383 94.4827 166.383C93.483 166.383 92.6893 166.077 92.1015 165.463C91.518 164.845 91.2262 163.981 91.2262 162.869C91.2262 161.72 91.5223 160.827 92.1144 160.192C92.7064 159.557 93.4744 159.24 94.4183 159.24C95.3322 159.24 96.0787 159.551 96.6579 160.173C97.2372 160.795 97.5268 161.67 97.5268 162.799C97.5268 162.867 97.5246 162.97 97.5203 163.108H92.4233C92.4662 163.858 92.6786 164.433 93.0604 164.832C93.4423 165.231 93.9185 165.431 94.4891 165.431C94.9139 165.431 95.2764 165.319 95.5768 165.096C95.8771 164.873 96.1152 164.517 96.2911 164.028ZM92.4876 162.155H96.304C96.2525 161.58 96.1066 161.149 95.8664 160.862C95.4974 160.415 95.019 160.192 94.4312 160.192C93.8992 160.192 93.4508 160.37 93.0862 160.726C92.7258 161.082 92.5262 161.559 92.4876 162.155Z" fill="#9C9C9C"/>
+<path d="M108.274 165.116C107.892 165.54 107.476 165.86 107.026 166.074C106.575 166.285 106.088 166.39 105.565 166.39C104.599 166.39 103.833 166.064 103.267 165.412C102.808 164.88 102.579 164.285 102.579 163.629C102.579 163.045 102.765 162.52 103.138 162.052C103.516 161.58 104.078 161.166 104.825 160.81C104.4 160.321 104.117 159.924 103.975 159.619C103.833 159.315 103.763 159.021 103.763 158.738C103.763 158.171 103.984 157.68 104.426 157.264C104.872 156.844 105.432 156.633 106.105 156.633C106.749 156.633 107.274 156.831 107.682 157.225C108.094 157.62 108.3 158.094 108.3 158.648C108.3 159.544 107.706 160.31 106.517 160.945L108.21 163.101C108.403 162.724 108.553 162.286 108.66 161.788L109.864 162.046C109.658 162.869 109.379 163.547 109.027 164.079C109.46 164.654 109.952 165.137 110.501 165.527L109.722 166.448C109.254 166.147 108.772 165.703 108.274 165.116ZM105.919 160.199C106.421 159.903 106.745 159.643 106.89 159.42C107.041 159.197 107.116 158.95 107.116 158.68C107.116 158.358 107.013 158.096 106.807 157.895C106.605 157.689 106.352 157.586 106.047 157.586C105.734 157.586 105.472 157.687 105.262 157.888C105.056 158.09 104.953 158.337 104.953 158.628C104.953 158.774 104.99 158.929 105.063 159.092C105.14 159.25 105.254 159.42 105.404 159.6L105.919 160.199ZM107.547 164.202L105.423 161.569C104.797 161.943 104.374 162.29 104.155 162.612C103.936 162.93 103.827 163.245 103.827 163.558C103.827 163.94 103.979 164.337 104.284 164.749C104.589 165.161 105.02 165.367 105.578 165.367C105.925 165.367 106.283 165.259 106.652 165.045C107.026 164.826 107.324 164.545 107.547 164.202Z" fill="#9C9C9C"/>
+<path d="M115.713 166.229V156.794H117.593L119.826 163.474C120.032 164.097 120.182 164.562 120.276 164.871C120.384 164.528 120.551 164.024 120.778 163.359L123.037 156.794H124.717V166.229H123.513V158.332L120.772 166.229H119.646L116.917 158.197V166.229H115.713Z" fill="#9C9C9C"/>
+<path d="M131.175 165.386C130.746 165.751 130.332 166.008 129.933 166.158C129.538 166.308 129.113 166.383 128.659 166.383C127.908 166.383 127.331 166.201 126.927 165.836C126.524 165.467 126.323 164.998 126.323 164.427C126.323 164.092 126.398 163.788 126.548 163.513C126.702 163.234 126.902 163.011 127.146 162.844C127.395 162.676 127.674 162.55 127.983 162.464C128.21 162.404 128.554 162.346 129.013 162.29C129.948 162.179 130.637 162.046 131.078 161.891C131.083 161.732 131.085 161.632 131.085 161.589C131.085 161.117 130.976 160.784 130.757 160.591C130.461 160.33 130.021 160.199 129.437 160.199C128.893 160.199 128.489 160.295 128.227 160.488C127.97 160.677 127.779 161.014 127.655 161.499L126.522 161.344C126.625 160.859 126.794 160.469 127.03 160.173C127.266 159.873 127.608 159.643 128.054 159.484C128.5 159.321 129.017 159.24 129.605 159.24C130.188 159.24 130.662 159.308 131.027 159.446C131.392 159.583 131.66 159.757 131.831 159.967C132.003 160.173 132.123 160.435 132.192 160.752C132.23 160.949 132.25 161.306 132.25 161.82V163.365C132.25 164.442 132.273 165.124 132.321 165.412C132.372 165.695 132.471 165.967 132.617 166.229H131.407C131.287 165.989 131.209 165.708 131.175 165.386ZM131.078 162.799C130.658 162.97 130.027 163.116 129.186 163.236C128.71 163.305 128.373 163.382 128.176 163.468C127.979 163.554 127.826 163.68 127.719 163.848C127.612 164.011 127.558 164.193 127.558 164.395C127.558 164.704 127.674 164.961 127.906 165.167C128.142 165.373 128.485 165.476 128.935 165.476C129.382 165.476 129.778 165.379 130.126 165.186C130.474 164.989 130.729 164.721 130.892 164.382C131.016 164.12 131.078 163.734 131.078 163.223V162.799Z" fill="#9C9C9C"/>
+<path d="M138.643 163.725L139.783 163.873C139.658 164.659 139.339 165.274 138.824 165.72C138.313 166.162 137.685 166.383 136.938 166.383C136.003 166.383 135.25 166.079 134.679 165.469C134.113 164.856 133.83 163.979 133.83 162.837C133.83 162.099 133.952 161.454 134.196 160.9C134.441 160.347 134.812 159.933 135.31 159.658C135.812 159.379 136.357 159.24 136.944 159.24C137.687 159.24 138.294 159.429 138.766 159.806C139.238 160.179 139.54 160.711 139.673 161.402L138.547 161.576C138.44 161.117 138.249 160.771 137.974 160.54C137.704 160.308 137.376 160.192 136.99 160.192C136.406 160.192 135.932 160.402 135.567 160.823C135.203 161.239 135.02 161.9 135.02 162.805C135.02 163.723 135.196 164.39 135.548 164.807C135.9 165.223 136.359 165.431 136.925 165.431C137.38 165.431 137.76 165.291 138.064 165.013C138.369 164.734 138.562 164.305 138.643 163.725Z" fill="#9C9C9C"/>
+<path d="M140.906 166.229V156.794H142.064V160.179C142.605 159.553 143.287 159.24 144.11 159.24C144.617 159.24 145.057 159.341 145.43 159.542C145.803 159.74 146.069 160.014 146.228 160.366C146.391 160.718 146.472 161.228 146.472 161.898V166.229H145.314V161.898C145.314 161.318 145.187 160.898 144.934 160.636C144.685 160.37 144.331 160.237 143.872 160.237C143.529 160.237 143.205 160.327 142.901 160.508C142.6 160.683 142.386 160.924 142.257 161.228C142.128 161.533 142.064 161.953 142.064 162.49V166.229H140.906Z" fill="#9C9C9C"/>
+<path d="M148.38 158.126V156.794H149.539V158.126H148.38ZM148.38 166.229V159.394H149.539V166.229H148.38Z" fill="#9C9C9C"/>
+<path d="M151.44 166.229V159.394H152.483V160.366C152.985 159.615 153.71 159.24 154.658 159.24C155.07 159.24 155.448 159.315 155.791 159.465C156.138 159.611 156.398 159.804 156.57 160.044C156.741 160.284 156.861 160.57 156.93 160.9C156.973 161.115 156.994 161.49 156.994 162.026V166.229H155.836V162.071C155.836 161.599 155.791 161.248 155.701 161.016C155.611 160.78 155.45 160.593 155.218 160.456C154.991 160.315 154.723 160.244 154.414 160.244C153.92 160.244 153.493 160.4 153.133 160.714C152.777 161.027 152.599 161.621 152.599 162.496V166.229H151.44Z" fill="#9C9C9C"/>
+<path d="M163.588 164.028L164.785 164.176C164.596 164.875 164.246 165.418 163.736 165.804C163.225 166.19 162.573 166.383 161.779 166.383C160.78 166.383 159.986 166.077 159.398 165.463C158.815 164.845 158.523 163.981 158.523 162.869C158.523 161.72 158.819 160.827 159.411 160.192C160.003 159.557 160.771 159.24 161.715 159.24C162.629 159.24 163.375 159.551 163.954 160.173C164.534 160.795 164.823 161.67 164.823 162.799C164.823 162.867 164.821 162.97 164.817 163.108H159.72C159.763 163.858 159.975 164.433 160.357 164.832C160.739 165.231 161.215 165.431 161.786 165.431C162.21 165.431 162.573 165.319 162.873 165.096C163.174 164.873 163.412 164.517 163.588 164.028ZM159.784 162.155H163.601C163.549 161.58 163.403 161.149 163.163 160.862C162.794 160.415 162.316 160.192 161.728 160.192C161.196 160.192 160.747 160.37 160.383 160.726C160.022 161.082 159.823 161.559 159.784 162.155Z" fill="#9C9C9C"/>
+<path d="M44.7357 181.386V171.951H45.9843V180.273H50.6308V181.386H44.7357Z" fill="#9C9C9C"/>
+<path d="M56.7864 179.185L57.9834 179.333C57.7947 180.033 57.445 180.575 56.9344 180.961C56.4239 181.348 55.7717 181.541 54.978 181.541C53.9783 181.541 53.1846 181.234 52.5968 180.62C52.0133 180.003 51.7215 179.138 51.7215 178.027C51.7215 176.877 52.0176 175.985 52.6096 175.35C53.2017 174.715 53.9697 174.397 54.9136 174.397C55.8275 174.397 56.574 174.708 57.1532 175.33C57.7324 175.952 58.022 176.828 58.022 177.956C58.022 178.025 58.0199 178.128 58.0156 178.265H52.9186C52.9615 179.016 53.1738 179.591 53.5557 179.99C53.9375 180.389 54.4138 180.588 54.9844 180.588C55.4092 180.588 55.7717 180.477 56.072 180.253C56.3724 180.03 56.6105 179.674 56.7864 179.185ZM52.9829 177.312H56.7993C56.7478 176.737 56.6019 176.306 56.3616 176.019C55.9927 175.573 55.5143 175.35 54.9265 175.35C54.3945 175.35 53.9461 175.528 53.5814 175.884C53.221 176.24 53.0215 176.716 52.9829 177.312Z" fill="#9C9C9C"/>
+<path d="M64.036 180.543C63.607 180.908 63.193 181.165 62.794 181.315C62.3992 181.466 61.9745 181.541 61.5197 181.541C60.7689 181.541 60.1918 181.358 59.7885 180.994C59.3852 180.625 59.1836 180.155 59.1836 179.584C59.1836 179.25 59.2586 178.945 59.4088 178.67C59.5633 178.391 59.7628 178.168 60.0073 178.001C60.2562 177.834 60.535 177.707 60.844 177.621C61.0714 177.561 61.4146 177.503 61.8737 177.448C62.809 177.336 63.4976 177.203 63.9395 177.049C63.9438 176.89 63.9459 176.789 63.9459 176.746C63.9459 176.274 63.8365 175.942 63.6177 175.749C63.3217 175.487 62.8819 175.356 62.2984 175.356C61.7535 175.356 61.3502 175.452 61.0885 175.646C60.8311 175.834 60.6402 176.171 60.5157 176.656L59.3831 176.502C59.486 176.017 59.6555 175.626 59.8915 175.33C60.1275 175.03 60.4685 174.8 60.9147 174.642C61.361 174.479 61.878 174.397 62.4657 174.397C63.0492 174.397 63.5233 174.466 63.888 174.603C64.2527 174.74 64.5209 174.914 64.6925 175.124C64.8641 175.33 64.9842 175.592 65.0529 175.909C65.0915 176.107 65.1108 176.463 65.1108 176.978V178.522C65.1108 179.599 65.1344 180.281 65.1816 180.569C65.2331 180.852 65.3318 181.124 65.4776 181.386H64.2677C64.1476 181.146 64.0704 180.865 64.036 180.543ZM63.9395 177.956C63.5191 178.128 62.8884 178.273 62.0474 178.394C61.5712 178.462 61.2344 178.539 61.037 178.625C60.8397 178.711 60.6874 178.838 60.5801 179.005C60.4728 179.168 60.4192 179.35 60.4192 179.552C60.4192 179.861 60.535 180.118 60.7667 180.324C61.0027 180.53 61.3459 180.633 61.7964 180.633C62.2426 180.633 62.6395 180.537 62.987 180.344C63.3346 180.146 63.5898 179.878 63.7529 179.539C63.8773 179.277 63.9395 178.891 63.9395 178.381V177.956Z" fill="#9C9C9C"/>
+<path d="M67.0317 181.386V174.551H68.0743V175.588C68.3403 175.103 68.5849 174.783 68.808 174.629C69.0354 174.474 69.2842 174.397 69.5545 174.397C69.9449 174.397 70.3418 174.521 70.7451 174.77L70.3461 175.845C70.0629 175.678 69.7798 175.594 69.4966 175.594C69.2435 175.594 69.0161 175.671 68.8144 175.826C68.6128 175.976 68.469 176.186 68.3832 176.456C68.2545 176.868 68.1901 177.319 68.1901 177.808V181.386H67.0317Z" fill="#9C9C9C"/>
+<path d="M71.5655 181.386V174.551H72.6081V175.523C73.1101 174.772 73.8352 174.397 74.7834 174.397C75.1952 174.397 75.5728 174.472 75.916 174.622C76.2636 174.768 76.5231 174.961 76.6948 175.201C76.8664 175.442 76.9865 175.727 77.0552 176.057C77.0981 176.272 77.1195 176.647 77.1195 177.184V181.386H75.9611V177.229C75.9611 176.757 75.916 176.405 75.8259 176.173C75.7358 175.937 75.5749 175.751 75.3433 175.613C75.1159 175.472 74.8477 175.401 74.5388 175.401C74.0454 175.401 73.6185 175.558 73.2581 175.871C72.902 176.184 72.7239 176.778 72.7239 177.653V181.386H71.5655Z" fill="#9C9C9C"/>
+<path d="M79.0404 173.284V171.951H80.1988V173.284H79.0404ZM79.0404 181.386V174.551H80.1988V181.386H79.0404Z" fill="#9C9C9C"/>
+<path d="M82.1005 181.386V174.551H83.143V175.523C83.645 174.772 84.3701 174.397 85.3183 174.397C85.7302 174.397 86.1077 174.472 86.451 174.622C86.7985 174.768 87.0581 174.961 87.2297 175.201C87.4013 175.442 87.5214 175.727 87.5901 176.057C87.633 176.272 87.6544 176.647 87.6544 177.184V181.386H86.496V177.229C86.496 176.757 86.451 176.405 86.3609 176.173C86.2708 175.937 86.1099 175.751 85.8782 175.613C85.6508 175.472 85.3827 175.401 85.0737 175.401C84.5803 175.401 84.1534 175.558 83.793 175.871C83.4369 176.184 83.2589 176.778 83.2589 177.653V181.386H82.1005Z" fill="#9C9C9C"/>
+<path d="M89.3566 181.953L90.4828 182.12C90.53 182.467 90.6609 182.721 90.8754 182.879C91.1628 183.094 91.5554 183.201 92.0531 183.201C92.5894 183.201 93.0034 183.094 93.2952 182.879C93.5869 182.665 93.7843 182.364 93.8873 181.978C93.9473 181.742 93.9752 181.247 93.9709 180.492C93.4647 181.088 92.834 181.386 92.0788 181.386C91.1392 181.386 90.412 181.047 89.8971 180.369C89.3823 179.691 89.1249 178.878 89.1249 177.93C89.1249 177.278 89.2429 176.677 89.4788 176.128C89.7148 175.575 90.0559 175.148 90.5021 174.848C90.9526 174.547 91.4803 174.397 92.0853 174.397C92.8919 174.397 93.5569 174.723 94.0803 175.375V174.551H95.1487V180.459C95.1487 181.523 95.0392 182.276 94.8204 182.718C94.6059 183.165 94.2627 183.516 93.7907 183.774C93.3231 184.031 92.746 184.16 92.0595 184.16C91.2444 184.16 90.5858 183.975 90.0838 183.606C89.5818 183.242 89.3394 182.69 89.3566 181.953ZM90.3155 177.847C90.3155 178.743 90.4935 179.398 90.8496 179.809C91.2057 180.221 91.6519 180.427 92.1882 180.427C92.7203 180.427 93.1665 180.223 93.5269 179.816C93.8873 179.404 94.0675 178.76 94.0675 177.885C94.0675 177.049 93.8808 176.418 93.5076 175.993C93.1386 175.568 92.6924 175.356 92.1689 175.356C91.6541 175.356 91.2165 175.566 90.8561 175.987C90.4957 176.403 90.3155 177.023 90.3155 177.847Z" fill="#9C9C9C"/>
+<path d="M470.132 166.888L473.756 157.453H475.101L478.962 166.888H477.54L476.439 164.03H472.494L471.458 166.888H470.132ZM472.855 163.014H476.053L475.068 160.401C474.768 159.607 474.545 158.955 474.399 158.444C474.279 159.049 474.11 159.65 473.891 160.246L472.855 163.014Z" fill="#9C9C9C"/>
+<path d="M486.823 163.58L488.072 163.895C487.81 164.921 487.338 165.704 486.656 166.244C485.978 166.781 485.148 167.049 484.165 167.049C483.148 167.049 482.32 166.843 481.681 166.431C481.046 166.015 480.561 165.414 480.226 164.629C479.896 163.844 479.731 163.001 479.731 162.1C479.731 161.117 479.918 160.261 480.291 159.532C480.668 158.798 481.203 158.243 481.893 157.865C482.588 157.483 483.352 157.292 484.184 157.292C485.128 157.292 485.922 157.533 486.566 158.013C487.209 158.494 487.658 159.169 487.911 160.04L486.681 160.33C486.463 159.643 486.145 159.144 485.729 158.83C485.313 158.517 484.789 158.361 484.159 158.361C483.434 158.361 482.826 158.534 482.337 158.882C481.853 159.229 481.511 159.697 481.314 160.285C481.117 160.868 481.018 161.471 481.018 162.093C481.018 162.896 481.134 163.597 481.366 164.198C481.602 164.794 481.966 165.24 482.46 165.536C482.953 165.832 483.487 165.98 484.062 165.98C484.761 165.98 485.354 165.779 485.838 165.375C486.323 164.972 486.651 164.374 486.823 163.58Z" fill="#9C9C9C"/>
+<path d="M489.96 166.888V157.453H491.209V166.888H489.96Z" fill="#9C9C9C"/>
+<path d="M493.548 166.888V157.453H496.798C497.532 157.453 498.092 157.498 498.478 157.588C499.018 157.713 499.48 157.938 499.861 158.264C500.359 158.684 500.73 159.223 500.975 159.879C501.224 160.532 501.348 161.278 501.348 162.119C501.348 162.835 501.264 163.47 501.097 164.024C500.93 164.577 500.715 165.036 500.454 165.401C500.192 165.762 499.904 166.047 499.591 166.257C499.282 166.463 498.907 166.62 498.465 166.727C498.027 166.834 497.523 166.888 496.953 166.888H493.548ZM494.797 165.774H496.811C497.433 165.774 497.92 165.717 498.272 165.601C498.628 165.485 498.911 165.322 499.121 165.112C499.417 164.816 499.647 164.419 499.81 163.921C499.977 163.419 500.061 162.812 500.061 162.1C500.061 161.113 499.898 160.356 499.572 159.828C499.25 159.296 498.857 158.94 498.394 158.76C498.059 158.631 497.521 158.566 496.779 158.566H494.797V165.774Z" fill="#9C9C9C"/>
+<path d="M509.161 166.888V158.566H506.052V157.453H513.531V158.566H510.409V166.888H509.161Z" fill="#9C9C9C"/>
+<path d="M514.299 166.888V160.053H515.342V161.089C515.608 160.604 515.853 160.285 516.076 160.13C516.303 159.976 516.552 159.899 516.822 159.899C517.213 159.899 517.61 160.023 518.013 160.272L517.614 161.347C517.331 161.179 517.048 161.096 516.764 161.096C516.511 161.096 516.284 161.173 516.082 161.327C515.881 161.478 515.737 161.688 515.651 161.958C515.522 162.37 515.458 162.82 515.458 163.31V166.888H514.299Z" fill="#9C9C9C"/>
+<path d="M523.293 166.045C522.864 166.409 522.45 166.667 522.051 166.817C521.656 166.967 521.232 167.042 520.777 167.042C520.026 167.042 519.449 166.86 519.046 166.495C518.642 166.126 518.441 165.656 518.441 165.086C518.441 164.751 518.516 164.447 518.666 164.172C518.82 163.893 519.02 163.67 519.264 163.503C519.513 163.335 519.792 163.209 520.101 163.123C520.329 163.063 520.672 163.005 521.131 162.949C522.066 162.838 522.755 162.705 523.197 162.55C523.201 162.391 523.203 162.291 523.203 162.248C523.203 161.776 523.094 161.443 522.875 161.25C522.579 160.988 522.139 160.858 521.556 160.858C521.011 160.858 520.607 160.954 520.346 161.147C520.088 161.336 519.897 161.673 519.773 162.158L518.64 162.003C518.743 161.518 518.913 161.128 519.149 160.832C519.385 160.532 519.726 160.302 520.172 160.143C520.618 159.98 521.135 159.899 521.723 159.899C522.306 159.899 522.781 159.967 523.145 160.105C523.51 160.242 523.778 160.416 523.95 160.626C524.121 160.832 524.241 161.094 524.31 161.411C524.349 161.608 524.368 161.965 524.368 162.479V164.024C524.368 165.101 524.392 165.783 524.439 166.07C524.49 166.354 524.589 166.626 524.735 166.888H523.525C523.405 166.648 523.328 166.367 523.293 166.045ZM523.197 163.458C522.776 163.629 522.146 163.775 521.305 163.895C520.828 163.964 520.492 164.041 520.294 164.127C520.097 164.213 519.945 164.339 519.837 164.507C519.73 164.67 519.676 164.852 519.676 165.054C519.676 165.363 519.792 165.62 520.024 165.826C520.26 166.032 520.603 166.135 521.054 166.135C521.5 166.135 521.897 166.038 522.244 165.845C522.592 165.648 522.847 165.38 523.01 165.041C523.134 164.779 523.197 164.393 523.197 163.882V163.458Z" fill="#9C9C9C"/>
+<path d="M526.302 166.888V160.053H527.344V161.025C527.846 160.274 528.571 159.899 529.52 159.899C529.931 159.899 530.309 159.974 530.652 160.124C531 160.27 531.259 160.463 531.431 160.703C531.603 160.943 531.723 161.229 531.791 161.559C531.834 161.774 531.856 162.149 531.856 162.685V166.888H530.697V162.73C530.697 162.258 530.652 161.907 530.562 161.675C530.472 161.439 530.311 161.252 530.079 161.115C529.852 160.973 529.584 160.903 529.275 160.903C528.782 160.903 528.355 161.059 527.994 161.372C527.638 161.686 527.46 162.28 527.46 163.155V166.888H526.302Z" fill="#9C9C9C"/>
+<path d="M533.307 164.848L534.452 164.668C534.517 165.127 534.695 165.478 534.987 165.723C535.283 165.968 535.694 166.09 536.222 166.09C536.754 166.09 537.149 165.983 537.406 165.768C537.664 165.549 537.793 165.294 537.793 165.002C537.793 164.74 537.679 164.535 537.451 164.384C537.293 164.281 536.898 164.151 536.267 163.992C535.418 163.777 534.828 163.593 534.497 163.438C534.171 163.28 533.923 163.063 533.751 162.788C533.584 162.509 533.5 162.203 533.5 161.868C533.5 161.563 533.569 161.282 533.706 161.025C533.847 160.763 534.038 160.547 534.279 160.375C534.459 160.242 534.703 160.13 535.012 160.04C535.326 159.946 535.66 159.899 536.016 159.899C536.553 159.899 537.022 159.976 537.426 160.13C537.833 160.285 538.134 160.495 538.327 160.761C538.52 161.023 538.653 161.375 538.726 161.817L537.593 161.971C537.542 161.619 537.391 161.345 537.143 161.147C536.898 160.95 536.55 160.851 536.1 160.851C535.568 160.851 535.188 160.939 534.961 161.115C534.733 161.291 534.62 161.497 534.62 161.733C534.62 161.883 534.667 162.018 534.761 162.138C534.856 162.263 535.004 162.366 535.205 162.447C535.321 162.49 535.662 162.589 536.229 162.743C537.048 162.962 537.619 163.142 537.941 163.284C538.267 163.421 538.522 163.623 538.706 163.889C538.891 164.155 538.983 164.485 538.983 164.88C538.983 165.266 538.869 165.631 538.642 165.974C538.419 166.313 538.095 166.577 537.67 166.766C537.245 166.95 536.765 167.042 536.229 167.042C535.341 167.042 534.663 166.858 534.195 166.489C533.732 166.12 533.436 165.573 533.307 164.848Z" fill="#9C9C9C"/>
+<path d="M544.952 166.045C544.523 166.409 544.109 166.667 543.71 166.817C543.315 166.967 542.891 167.042 542.436 167.042C541.685 167.042 541.108 166.86 540.705 166.495C540.301 166.126 540.1 165.656 540.1 165.086C540.1 164.751 540.175 164.447 540.325 164.172C540.479 163.893 540.679 163.67 540.923 163.503C541.172 163.335 541.451 163.209 541.76 163.123C541.987 163.063 542.331 163.005 542.79 162.949C543.725 162.838 544.414 162.705 544.856 162.55C544.86 162.391 544.862 162.291 544.862 162.248C544.862 161.776 544.753 161.443 544.534 161.25C544.238 160.988 543.798 160.858 543.214 160.858C542.67 160.858 542.266 160.954 542.005 161.147C541.747 161.336 541.556 161.673 541.432 162.158L540.299 162.003C540.402 161.518 540.572 161.128 540.808 160.832C541.043 160.532 541.385 160.302 541.831 160.143C542.277 159.98 542.794 159.899 543.382 159.899C543.965 159.899 544.439 159.967 544.804 160.105C545.169 160.242 545.437 160.416 545.609 160.626C545.78 160.832 545.9 161.094 545.969 161.411C546.008 161.608 546.027 161.965 546.027 162.479V164.024C546.027 165.101 546.05 165.783 546.098 166.07C546.149 166.354 546.248 166.626 546.394 166.888H545.184C545.064 166.648 544.986 166.367 544.952 166.045ZM544.856 163.458C544.435 163.629 543.804 163.775 542.963 163.895C542.487 163.964 542.15 164.041 541.953 164.127C541.756 164.213 541.603 164.339 541.496 164.507C541.389 164.67 541.335 164.852 541.335 165.054C541.335 165.363 541.451 165.62 541.683 165.826C541.919 166.032 542.262 166.135 542.712 166.135C543.159 166.135 543.556 166.038 543.903 165.845C544.251 165.648 544.506 165.38 544.669 165.041C544.793 164.779 544.856 164.393 544.856 163.882V163.458Z" fill="#9C9C9C"/>
+<path d="M552.421 164.384L553.56 164.532C553.435 165.318 553.116 165.933 552.601 166.379C552.09 166.821 551.462 167.042 550.715 167.042C549.78 167.042 549.027 166.738 548.456 166.128C547.89 165.515 547.607 164.637 547.607 163.496C547.607 162.758 547.729 162.113 547.973 161.559C548.218 161.006 548.589 160.592 549.087 160.317C549.589 160.038 550.134 159.899 550.722 159.899C551.464 159.899 552.071 160.087 552.543 160.465C553.015 160.838 553.317 161.37 553.45 162.061L552.324 162.235C552.217 161.776 552.026 161.43 551.751 161.199C551.481 160.967 551.153 160.851 550.767 160.851C550.183 160.851 549.709 161.061 549.344 161.482C548.98 161.898 548.797 162.559 548.797 163.464C548.797 164.382 548.973 165.049 549.325 165.466C549.677 165.882 550.136 166.09 550.702 166.09C551.157 166.09 551.537 165.95 551.841 165.671C552.146 165.393 552.339 164.964 552.421 164.384Z" fill="#9C9C9C"/>
+<path d="M557.212 165.852L557.379 166.875C557.053 166.944 556.761 166.978 556.504 166.978C556.083 166.978 555.757 166.911 555.526 166.778C555.294 166.645 555.131 166.472 555.037 166.257C554.942 166.038 554.895 165.581 554.895 164.886V160.954H554.045V160.053H554.895V158.361L556.047 157.666V160.053H557.212V160.954H556.047V164.951C556.047 165.281 556.066 165.493 556.105 165.588C556.148 165.682 556.214 165.757 556.304 165.813C556.399 165.869 556.532 165.897 556.703 165.897C556.832 165.897 557.002 165.882 557.212 165.852Z" fill="#9C9C9C"/>
+<path d="M558.489 158.785V157.453H559.648V158.785H558.489ZM558.489 166.888V160.053H559.648V166.888H558.489Z" fill="#9C9C9C"/>
+<path d="M561.118 163.47C561.118 162.205 561.47 161.267 562.173 160.658C562.761 160.152 563.478 159.899 564.323 159.899C565.263 159.899 566.031 160.208 566.627 160.825C567.223 161.439 567.521 162.288 567.521 163.374C567.521 164.253 567.388 164.946 567.122 165.453C566.861 165.955 566.477 166.345 565.97 166.624C565.468 166.903 564.919 167.042 564.323 167.042C563.366 167.042 562.592 166.736 562 166.122C561.412 165.508 561.118 164.625 561.118 163.47ZM562.309 163.47C562.309 164.346 562.499 165.002 562.881 165.44C563.263 165.873 563.744 166.09 564.323 166.09C564.898 166.09 565.376 165.871 565.758 165.433C566.14 164.996 566.331 164.329 566.331 163.432C566.331 162.587 566.138 161.947 565.752 161.514C565.37 161.076 564.894 160.858 564.323 160.858C563.744 160.858 563.263 161.074 562.881 161.508C562.499 161.941 562.309 162.595 562.309 163.47Z" fill="#9C9C9C"/>
+<path d="M569.018 166.888V160.053H570.06V161.025C570.562 160.274 571.287 159.899 572.235 159.899C572.647 159.899 573.025 159.974 573.368 160.124C573.716 160.27 573.975 160.463 574.147 160.703C574.318 160.943 574.439 161.229 574.507 161.559C574.55 161.774 574.572 162.149 574.572 162.685V166.888H573.413V162.73C573.413 162.258 573.368 161.907 573.278 161.675C573.188 161.439 573.027 161.252 572.795 161.115C572.568 160.973 572.3 160.903 571.991 160.903C571.497 160.903 571.071 161.059 570.71 161.372C570.354 161.686 570.176 162.28 570.176 163.155V166.888H569.018Z" fill="#9C9C9C"/>
+<path d="M576.023 164.848L577.168 164.668C577.233 165.127 577.411 165.478 577.702 165.723C577.998 165.968 578.41 166.09 578.938 166.09C579.47 166.09 579.865 165.983 580.122 165.768C580.38 165.549 580.508 165.294 580.508 165.002C580.508 164.74 580.395 164.535 580.167 164.384C580.009 164.281 579.614 164.151 578.983 163.992C578.134 163.777 577.544 163.593 577.213 163.438C576.887 163.28 576.638 163.063 576.467 162.788C576.299 162.509 576.216 162.203 576.216 161.868C576.216 161.563 576.284 161.282 576.422 161.025C576.563 160.763 576.754 160.547 576.995 160.375C577.175 160.242 577.419 160.13 577.728 160.04C578.041 159.946 578.376 159.899 578.732 159.899C579.268 159.899 579.738 159.976 580.142 160.13C580.549 160.285 580.849 160.495 581.043 160.761C581.236 161.023 581.369 161.375 581.442 161.817L580.309 161.971C580.257 161.619 580.107 161.345 579.858 161.147C579.614 160.95 579.266 160.851 578.816 160.851C578.284 160.851 577.904 160.939 577.677 161.115C577.449 161.291 577.336 161.497 577.336 161.733C577.336 161.883 577.383 162.018 577.477 162.138C577.572 162.263 577.72 162.366 577.921 162.447C578.037 162.49 578.378 162.589 578.945 162.743C579.764 162.962 580.335 163.142 580.656 163.284C580.982 163.421 581.238 163.623 581.422 163.889C581.607 164.155 581.699 164.485 581.699 164.88C581.699 165.266 581.585 165.631 581.358 165.974C581.135 166.313 580.811 166.577 580.386 166.766C579.961 166.95 579.481 167.042 578.945 167.042C578.056 167.042 577.379 166.858 576.911 166.489C576.447 166.12 576.151 165.573 576.023 164.848Z" fill="#9C9C9C"/>
+<path d="M281.213 274.184V234.348C281.213 234.348 288.897 241.029 311.483 241.029C334.07 241.029 341.706 233.728 341.706 233.728V274.184C332.283 288.027 285.502 283.89 281.213 274.184Z" fill="#E0454C"/>
+<path d="M280.554 302.317V261.042C280.554 261.042 288.368 269.026 310.955 269.026C333.541 269.026 341.047 261.042 341.047 261.042L341.685 302.317C332.08 314.369 286.4 312.109 280.554 302.317Z" fill="#0070CC"/>
+<path d="M342.416 231.833C342.416 237.293 328.564 241.718 311.113 241.718C293.661 241.718 279.81 237.293 279.81 231.833C279.81 226.374 293.661 221.948 311.113 221.948C328.564 221.948 342.416 226.374 342.416 231.833Z" fill="#E0454C"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M339.186 234.628C340.613 233.554 341.098 232.596 341.098 231.833C341.098 231.071 340.613 230.113 339.186 229.038C337.78 227.98 335.659 226.971 332.91 226.1C327.428 224.362 319.743 223.266 311.113 223.266C302.482 223.266 294.797 224.362 289.315 226.1C286.566 226.971 284.445 227.98 283.039 229.038C281.612 230.113 281.128 231.071 281.128 231.833C281.128 232.596 281.612 233.554 283.039 234.628C284.445 235.686 286.566 236.695 289.315 237.567C294.797 239.304 302.482 240.4 311.113 240.4C319.743 240.4 327.428 239.304 332.91 237.567C335.659 236.695 337.78 235.686 339.186 234.628ZM311.113 241.718C328.564 241.718 342.416 237.293 342.416 231.833C342.416 226.374 328.564 221.948 311.113 221.948C293.661 221.948 279.81 226.374 279.81 231.833C279.81 237.293 293.661 241.718 311.113 241.718Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M280.041 301.865L279.81 231.177L281.128 231.171L281.359 301.859L280.041 301.865Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M341.098 302.347L341.098 231.174L342.416 231.174L342.416 302.347L341.098 302.347Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M289.845 307.405C295.296 309.098 302.866 310.156 311.257 310.156C319.648 310.156 327.219 309.098 332.669 307.405C335.399 306.557 337.559 305.561 339.024 304.486C340.501 303.4 341.156 302.323 341.156 301.321H342.474C342.474 302.941 341.419 304.362 339.804 305.548C338.175 306.744 335.861 307.794 333.06 308.664C327.451 310.406 319.743 311.474 311.257 311.474C302.772 311.474 295.063 310.406 289.454 308.664C286.654 307.794 284.339 306.744 282.711 305.548C281.096 304.362 280.041 302.941 280.041 301.321H281.359C281.359 302.323 282.014 303.4 283.491 304.486C284.955 305.561 287.116 306.557 289.845 307.405Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M289.845 265.228C295.296 266.922 302.866 267.979 311.257 267.979C319.648 267.979 327.219 266.922 332.669 265.228C335.399 264.38 337.56 263.384 339.024 262.309C340.501 261.223 341.156 260.146 341.156 259.145H342.474C342.474 260.764 341.419 262.185 339.804 263.371C338.175 264.567 335.861 265.617 333.06 266.487C327.451 268.23 319.743 269.297 311.257 269.297C302.772 269.297 295.063 268.23 289.454 266.487C286.654 265.617 284.339 264.567 282.711 263.371C281.096 262.185 280.041 260.764 280.041 259.145H281.359C281.359 260.146 282.014 261.223 283.491 262.309C284.955 263.384 287.116 264.38 289.845 265.228Z" fill="#2D2D2D"/>
+<path d="M288.5 257.535V249.987H290.004L291.79 255.331C291.955 255.829 292.075 256.201 292.151 256.448C292.236 256.174 292.37 255.77 292.552 255.238L294.359 249.987H295.703V257.535H294.74V251.217L292.547 257.535H291.646L289.463 251.109V257.535H288.5Z" fill="white"/>
+<path d="M297.467 257.535V249.987H302.924V250.878H298.466V253.189H302.641V254.075H298.466V256.644H303.099V257.535H297.467Z" fill="white"/>
+<path d="M304.58 257.535V249.987H306.084L307.87 255.331C308.035 255.829 308.155 256.201 308.23 256.448C308.316 256.174 308.45 255.77 308.632 255.238L310.439 249.987H311.783V257.535H310.82V251.217L308.627 257.535H307.726L305.543 251.109V257.535H304.58Z" fill="white"/>
+<path d="M313.222 253.859C313.222 252.606 313.559 251.626 314.232 250.919C314.904 250.208 315.773 249.853 316.837 249.853C317.534 249.853 318.162 250.019 318.721 250.352C319.281 250.685 319.706 251.15 319.998 251.748C320.293 252.341 320.441 253.016 320.441 253.771C320.441 254.536 320.286 255.221 319.977 255.825C319.668 256.429 319.231 256.888 318.664 257.2C318.098 257.509 317.487 257.663 316.832 257.663C316.121 257.663 315.486 257.492 314.927 257.149C314.367 256.805 313.943 256.337 313.655 255.743C313.367 255.149 313.222 254.521 313.222 253.859ZM314.252 253.874C314.252 254.784 314.496 255.501 314.983 256.026C315.474 256.548 316.089 256.809 316.826 256.809C317.578 256.809 318.196 256.544 318.68 256.016C319.167 255.487 319.411 254.737 319.411 253.766C319.411 253.152 319.306 252.616 319.097 252.16C318.891 251.7 318.587 251.344 318.186 251.094C317.788 250.84 317.34 250.713 316.842 250.713C316.135 250.713 315.526 250.957 315.014 251.444C314.506 251.928 314.252 252.738 314.252 253.874Z" fill="white"/>
+<path d="M321.88 257.535V249.987H325.227C325.9 249.987 326.411 250.056 326.761 250.193C327.111 250.327 327.391 250.565 327.6 250.908C327.81 251.252 327.914 251.631 327.914 252.046C327.914 252.582 327.741 253.033 327.394 253.4C327.048 253.768 326.512 254.001 325.788 254.101C326.052 254.228 326.253 254.353 326.39 254.476C326.682 254.744 326.958 255.079 327.219 255.48L328.532 257.535H327.276L326.277 255.964C325.985 255.511 325.745 255.165 325.556 254.924C325.368 254.684 325.198 254.516 325.047 254.42C324.899 254.324 324.748 254.257 324.594 254.219C324.48 254.195 324.295 254.183 324.037 254.183H322.879V257.535H321.88ZM322.879 253.318H325.026C325.483 253.318 325.839 253.272 326.097 253.179C326.354 253.083 326.55 252.932 326.684 252.726C326.818 252.517 326.885 252.29 326.885 252.046C326.885 251.689 326.754 251.396 326.493 251.166C326.236 250.936 325.827 250.821 325.268 250.821H322.879V253.318Z" fill="white"/>
+<path d="M331.547 257.535V254.337L328.638 249.987H329.853L331.341 252.263C331.616 252.688 331.872 253.114 332.108 253.539C332.335 253.145 332.609 252.7 332.932 252.206L334.394 249.987H335.558L332.546 254.337V257.535H331.547Z" fill="white"/>
+<path d="M299.075 299.052V291.505H301.675C302.262 291.505 302.71 291.541 303.019 291.613C303.452 291.712 303.821 291.893 304.126 292.153C304.524 292.49 304.821 292.921 305.017 293.446C305.216 293.967 305.315 294.565 305.315 295.237C305.315 295.811 305.248 296.319 305.115 296.761C304.981 297.204 304.809 297.571 304.6 297.863C304.39 298.151 304.16 298.38 303.91 298.548C303.663 298.713 303.362 298.838 303.009 298.924C302.659 299.01 302.255 299.052 301.799 299.052H299.075ZM300.074 298.162H301.686C302.183 298.162 302.573 298.115 302.854 298.023C303.139 297.93 303.366 297.8 303.534 297.631C303.771 297.395 303.954 297.077 304.085 296.679C304.219 296.277 304.286 295.792 304.286 295.222C304.286 294.432 304.155 293.827 303.894 293.404C303.637 292.979 303.323 292.694 302.952 292.55C302.684 292.447 302.254 292.395 301.66 292.395H300.074V298.162Z" fill="white"/>
+<path d="M306.997 299.052V291.505H307.996V299.052H306.997Z" fill="white"/>
+<path d="M309.554 296.627L310.496 296.545C310.54 296.923 310.643 297.233 310.805 297.477C310.969 297.717 311.223 297.913 311.567 298.064C311.91 298.212 312.296 298.285 312.725 298.285C313.106 298.285 313.443 298.229 313.734 298.115C314.026 298.002 314.242 297.848 314.383 297.652C314.527 297.453 314.599 297.237 314.599 297.003C314.599 296.766 314.531 296.561 314.393 296.386C314.256 296.207 314.029 296.058 313.714 295.938C313.511 295.859 313.063 295.737 312.37 295.572C311.677 295.404 311.191 295.246 310.913 295.098C310.552 294.91 310.283 294.676 310.105 294.398C309.929 294.117 309.842 293.803 309.842 293.456C309.842 293.075 309.95 292.72 310.166 292.39C310.383 292.057 310.698 291.805 311.114 291.633C311.529 291.462 311.991 291.376 312.499 291.376C313.058 291.376 313.551 291.467 313.976 291.649C314.405 291.827 314.735 292.092 314.965 292.442C315.195 292.792 315.318 293.188 315.335 293.631L314.378 293.703C314.326 293.226 314.151 292.866 313.853 292.622C313.557 292.378 313.12 292.256 312.54 292.256C311.936 292.256 311.495 292.368 311.217 292.591C310.942 292.811 310.805 293.077 310.805 293.389C310.805 293.66 310.903 293.883 311.098 294.058C311.29 294.233 311.792 294.414 312.602 294.599C313.415 294.781 313.973 294.94 314.275 295.078C314.714 295.28 315.039 295.538 315.248 295.85C315.457 296.159 315.562 296.516 315.562 296.921C315.562 297.323 315.447 297.702 315.217 298.059C314.987 298.412 314.656 298.689 314.223 298.888C313.794 299.083 313.31 299.181 312.771 299.181C312.088 299.181 311.515 299.082 311.052 298.883C310.592 298.683 310.23 298.385 309.966 297.987C309.705 297.585 309.567 297.132 309.554 296.627Z" fill="white"/>
+<path d="M317.017 299.052V291.505H318.016V295.248L321.764 291.505H323.118L319.952 294.563L323.257 299.052H321.939L319.251 295.232L318.016 296.437V299.052H317.017Z" fill="white"/>
+</svg>
diff --git a/public/img/usecases/database/one-video.png b/public/img/usecases/database/one-video.png
new file mode 100644
index 0000000..d7c31a4
--- /dev/null
+++ b/public/img/usecases/database/one-video.png
Binary files differ
diff --git a/public/img/usecases/database/one.svg b/public/img/usecases/database/one.svg
new file mode 100644
index 0000000..27d76a6
--- /dev/null
+++ b/public/img/usecases/database/one.svg
@@ -0,0 +1,14 @@
+<svg width="49" height="49" viewBox="0 0 49 49" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M0.980314 48.9219C0.452055 48.9171 0.0227507 48.4865 0.0214355 47.9602L3.02869e-06 39.3835C-0.00131214 38.8571 0.42586 38.4344 0.954119 38.4392C1.48238 38.444 1.91168 38.8745 1.913 39.4008L1.92868 45.6769L7.58169 40.6013C7.71888 40.9786 8.21229 41.8895 8.83477 42.2109L3.28474 47.0369L9.58403 47.0941C10.1123 47.0989 10.5416 47.5294 10.5429 48.0557C10.5442 48.582 10.117 49.0048 9.58879 49L0.980314 48.9219Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M47.1195 48.9218C47.6478 48.9171 48.0771 48.4865 48.0784 47.9602L48.0998 39.3834C48.1011 38.8571 47.674 38.4344 47.1457 38.4392C46.6174 38.444 46.1881 38.8745 46.1868 39.4008L46.1711 45.6769L40.5181 40.6013C40.3809 40.9786 39.8875 41.8895 39.2651 42.2109L44.8151 47.0369L38.5158 47.0941C37.9875 47.0989 37.5582 47.5294 37.5569 48.0557C37.5556 48.582 37.9828 49.0048 38.511 49L47.1195 48.9218Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M47.1195 1.01535C47.6478 1.02014 48.0771 1.45069 48.0784 1.977L48.0998 10.5538C48.1011 11.0801 47.674 11.5028 47.1457 11.498C46.6174 11.4932 46.1881 11.0627 46.1868 10.5364L46.1711 4.26032L40.5181 9.33587C40.3809 8.95861 39.8875 8.04771 39.2651 7.72632L44.8151 2.90033L38.5158 2.84314C37.9875 2.83835 37.5582 2.4078 37.5569 1.88149C37.5556 1.35518 37.9828 0.932404 38.511 0.9372L47.1195 1.01535Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M1.00175 1.06266C0.473489 1.06746 0.0441817 1.498 0.0428665 2.02431L0.0214355 10.6011C0.0201203 11.1274 0.447293 11.5501 0.975552 11.5453C1.50381 11.5406 1.93311 11.11 1.93443 10.5837L1.95011 4.30763L7.60312 9.38318C7.74031 9.00592 8.23372 8.09502 8.8562 7.77363L3.30617 2.94764L9.60546 2.89046C10.1337 2.88566 10.563 2.45511 10.5643 1.9288C10.5657 1.40249 10.1385 0.979716 9.61022 0.984512L1.00175 1.06266Z" fill="#ED1C24"/>
+<path d="M9.87402 40.4654V12.0982C9.87402 12.0982 13.3465 15.8684 24.0451 15.8684C34.7437 15.8684 38.5277 11.8057 38.5277 11.8057V40.4654C27.3377 44.0622 21.064 44.1769 9.87402 40.4654Z" fill="white"/>
+<path d="M39.3911 10.6563C39.3911 13.6932 32.5944 16.1551 24.0313 16.1551C15.4683 16.1551 8.67151 13.6932 8.67151 10.6563C8.67151 7.61944 15.4683 5.15756 24.0313 5.15756C32.5944 5.15756 39.3911 7.61944 39.3911 10.6563Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M37.4668 10.6563C37.4669 10.6481 37.467 10.5996 37.407 10.4938C37.3401 10.3759 37.2035 10.1977 36.9436 9.97653C36.412 9.5239 35.5275 9.02882 34.2617 8.57503C31.7462 7.67325 28.1285 7.07756 23.9969 7.07756C19.8652 7.07756 16.2476 7.67325 13.7321 8.57503C12.4662 9.02882 11.5818 9.5239 11.0501 9.97653C10.7903 10.1977 10.6536 10.3759 10.5868 10.4938C10.5268 10.5996 10.5269 10.6478 10.5269 10.6559C10.5269 10.6641 10.5268 10.713 10.5868 10.8189C10.6536 10.9368 10.7903 11.1149 11.0501 11.3361C11.5818 11.7888 12.4662 12.2838 13.7321 12.7376C16.2476 13.6394 19.8652 14.2351 23.9969 14.2351C28.1285 14.2351 31.7462 13.6394 34.2617 12.7376C35.5275 12.2838 36.412 11.7888 36.9436 11.3361C37.2035 11.1149 37.3401 10.9368 37.407 10.8189C37.467 10.713 37.4669 10.6645 37.4668 10.6563ZM23.9969 16.1551C32.5791 16.1551 39.3911 13.6932 39.3911 10.6563C39.3911 7.61944 32.5791 5.15756 23.9969 5.15756C15.4146 5.15756 8.6026 7.61944 8.6026 10.6563C8.6026 13.6932 15.4146 16.1551 23.9969 16.1551Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M8.70151 38.578L8.6026 10.3326L10.5226 10.3242L10.6215 38.5696L8.70151 38.578Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M37.4864 38.6225L37.4864 10.518L39.3975 10.518L39.3975 38.6225L37.4864 38.6225Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2124 41.4233C16.685 42.3377 20.1646 42.9225 24.0546 42.9225C27.9447 42.9225 31.4242 42.3377 33.8968 41.4233C35.1369 40.9646 36.0735 40.4414 36.6824 39.9089C37.2936 39.3745 37.4848 38.9164 37.4848 38.5618H39.3975C39.3975 39.6764 38.7835 40.618 37.9387 41.3567C37.0917 42.0973 35.9214 42.7206 34.558 43.2249C31.8237 44.2361 28.1101 44.8425 24.0546 44.8425C19.9992 44.8425 16.2855 44.2361 13.5512 43.2249C12.1878 42.7206 11.0176 42.0973 10.1706 41.3567C9.32576 40.618 8.71179 39.6764 8.71179 38.5618H10.6244C10.6244 38.9164 10.8156 39.3745 11.4268 39.9089C12.0358 40.4414 12.9724 40.9646 14.2124 41.4233Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2124 31.8204C16.685 32.7349 20.1646 33.3196 24.0546 33.3196C27.9447 33.3196 31.4242 32.7349 33.8968 31.8204C35.1369 31.3618 36.0735 30.8386 36.6824 30.3061C37.2936 29.7717 37.4848 29.3136 37.4848 28.959H39.3975C39.3975 30.0735 38.7835 31.0152 37.9387 31.7539C37.0917 32.4945 35.9214 33.1178 34.558 33.6221C31.8237 34.6333 28.1101 35.2396 24.0546 35.2396C19.9992 35.2396 16.2855 34.6333 13.5512 33.6221C12.1878 33.1178 11.0176 32.4945 10.1706 31.7539C9.32576 31.0152 8.71179 30.0735 8.71179 28.959H10.6244C10.6244 29.3136 10.8156 29.7717 11.4268 30.3061C12.0358 30.8386 12.9724 31.3618 14.2124 31.8204Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2113 22.2175C16.6834 23.132 20.1622 23.7167 24.0515 23.7167C27.9407 23.7167 31.4195 23.132 33.8916 22.2175C35.1314 21.7589 36.0678 21.2357 36.6767 20.7032C37.2878 20.1688 37.4789 19.7107 37.4789 19.356H39.3911C39.3911 20.4706 38.7773 21.4123 37.9327 22.151C37.0859 22.8916 35.9158 23.5149 34.5527 24.0191C31.819 25.0304 28.1061 25.6367 24.0515 25.6367C19.9969 25.6367 16.284 25.0304 13.5502 24.0191C12.1871 23.5149 11.0171 22.8916 10.1703 22.151C9.32563 21.4123 8.71179 20.4706 8.71179 19.356H10.6241C10.6241 19.7107 10.8152 20.1688 11.4263 20.7032C12.0351 21.2357 12.9715 21.7589 14.2113 22.2175Z" fill="black"/>
+</svg>
diff --git a/public/img/usecases/database/three.svg b/public/img/usecases/database/three.svg
new file mode 100644
index 0000000..f54652b
--- /dev/null
+++ b/public/img/usecases/database/three.svg
@@ -0,0 +1,12 @@
+<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M2.52847 33.9815L30.9744 4.91867L32.3174 6.2908L3.87148 35.3536L2.52847 33.9815Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M8.02368 39.5958L36.4696 10.533L37.8126 11.9052L9.36668 40.9679L8.02368 39.5958Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M13.5188 45.2103L41.9648 16.1475L43.3078 17.5196L14.8618 46.5824L13.5188 45.2103Z" fill="black"/>
+<path d="M27.7354 33.8315C27.7354 41.6566 21.5267 48 13.8677 48C6.20879 48 0 41.6566 0 33.8315C0 26.0065 6.20879 19.6631 13.8677 19.6631C21.5267 19.6631 27.7354 26.0065 27.7354 33.8315Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M13.8677 46.08C20.4276 46.08 25.8154 40.6352 25.8154 33.8315C25.8154 27.0279 20.4276 21.5831 13.8677 21.5831C7.3078 21.5831 1.92 27.0279 1.92 33.8315C1.92 40.6352 7.3078 46.08 13.8677 46.08ZM13.8677 48C21.5267 48 27.7354 41.6566 27.7354 33.8315C27.7354 26.0065 21.5267 19.6631 13.8677 19.6631C6.20879 19.6631 0 26.0065 0 33.8315C0 41.6566 6.20879 48 13.8677 48Z" fill="black"/>
+<path d="M22.8603 33.7931C22.8603 38.8885 18.8174 43.0191 13.8302 43.0191C8.84295 43.0191 4.80002 38.8885 4.80002 33.7931C4.80002 28.6978 8.84295 24.5672 13.8302 24.5672C18.8174 24.5672 22.8603 28.6978 22.8603 33.7931Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M13.8302 41.0991C17.7184 41.0991 20.9403 37.8672 20.9403 33.7931C20.9403 29.7191 17.7184 26.4872 13.8302 26.4872C9.94196 26.4872 6.72002 29.7191 6.72002 33.7931C6.72002 37.8672 9.94196 41.0991 13.8302 41.0991ZM13.8302 43.0191C18.8174 43.0191 22.8603 38.8885 22.8603 33.7931C22.8603 28.6978 18.8174 24.5672 13.8302 24.5672C8.84295 24.5672 4.80002 28.6978 4.80002 33.7931C4.80002 38.8885 8.84295 43.0191 13.8302 43.0191Z" fill="black"/>
+<path d="M48.0001 11.4429C48.0001 17.7626 42.9856 22.8858 36.8 22.8858C30.6145 22.8858 25.6 17.7626 25.6 11.4429C25.6 5.12316 30.6145 0 36.8 0C42.9856 0 48.0001 5.12316 48.0001 11.4429Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M36.8 20.9658C41.8866 20.9658 46.0801 16.7413 46.0801 11.4429C46.0801 6.14451 41.8866 1.92 36.8 1.92C31.7135 1.92 27.52 6.14451 27.52 11.4429C27.52 16.7413 31.7135 20.9658 36.8 20.9658ZM36.8 22.8858C42.9856 22.8858 48.0001 17.7626 48.0001 11.4429C48.0001 5.12316 42.9856 0 36.8 0C30.6145 0 25.6 5.12316 25.6 11.4429C25.6 17.7626 30.6145 22.8858 36.8 22.8858Z" fill="#ED1C24"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M43.1458 7.47026L36.4773 15.6966L31.1149 10.8307L32.4052 9.40887L36.2641 12.9106L41.6543 6.2612L43.1458 7.47026Z" fill="#ED1C24"/>
+</svg>
diff --git a/public/img/usecases/database/two-video.png b/public/img/usecases/database/two-video.png
new file mode 100644
index 0000000..cb49b50
--- /dev/null
+++ b/public/img/usecases/database/two-video.png
Binary files differ
diff --git a/public/img/usecases/database/two.svg b/public/img/usecases/database/two.svg
new file mode 100644
index 0000000..5b33e91
--- /dev/null
+++ b/public/img/usecases/database/two.svg
@@ -0,0 +1,24 @@
+<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="48" height="48" fill="#F6F6F6"/>
+<path d="M0 2.88C0 1.28942 1.28942 0 2.88 0H14.7752C16.3658 0 17.6552 1.28942 17.6552 2.88V11.3018C17.6552 12.8924 16.3658 14.1818 14.7752 14.1818H2.88C1.28942 14.1818 0 12.8924 0 11.3018V2.88Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M14.7752 1.92H2.88C2.3498 1.92 1.92 2.34981 1.92 2.88V11.3018C1.92 11.832 2.34981 12.2618 2.88 12.2618H14.7752C15.3054 12.2618 15.7352 11.832 15.7352 11.3018V2.88C15.7352 2.34981 15.3054 1.92 14.7752 1.92ZM2.88 0C1.28942 0 0 1.28942 0 2.88V11.3018C0 12.8924 1.28942 14.1818 2.88 14.1818H14.7752C16.3658 14.1818 17.6552 12.8924 17.6552 11.3018V2.88C17.6552 1.28942 16.3658 0 14.7752 0H2.88Z" fill="black"/>
+<path d="M19.8621 2.88C19.8621 1.28942 21.1515 0 22.7421 0H45.12C46.7106 0 48 1.28942 48 2.88V11.3018C48 12.8924 46.7106 14.1818 45.12 14.1818H22.7421C21.1515 14.1818 19.8621 12.8924 19.8621 11.3018V7.09091V2.88Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M45.12 1.92H22.7421C22.2119 1.92 21.7821 2.34981 21.7821 2.88V11.3018C21.7821 11.832 22.2119 12.2618 22.7421 12.2618H45.12C45.6502 12.2618 46.08 11.832 46.08 11.3018V2.88C46.08 2.3498 45.6502 1.92 45.12 1.92ZM22.7421 0C21.1515 0 19.8621 1.28942 19.8621 2.88V11.3018C19.8621 12.8924 21.1515 14.1818 22.7421 14.1818H45.12C46.7106 14.1818 48 12.8924 48 11.3018V2.88C48 1.28942 46.7106 0 45.12 0H22.7421Z" fill="black"/>
+<path d="M0 19.7891C0 18.1985 1.28942 16.9091 2.88 16.9091H14.7752C16.3658 16.9091 17.6552 18.1985 17.6552 19.7891V28.2109C17.6552 29.8015 16.3658 31.0909 14.7752 31.0909H2.88C1.28942 31.0909 0 29.8015 0 28.2109V19.7891Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M14.7752 18.8291H2.88C2.3498 18.8291 1.92 19.2589 1.92 19.7891V28.2109C1.92 28.7411 2.34981 29.1709 2.88 29.1709H14.7752C15.3054 29.1709 15.7352 28.7411 15.7352 28.2109V19.7891C15.7352 19.2589 15.3054 18.8291 14.7752 18.8291ZM2.88 16.9091C1.28942 16.9091 0 18.1985 0 19.7891V28.2109C0 29.8015 1.28942 31.0909 2.88 31.0909H14.7752C16.3658 31.0909 17.6552 29.8015 17.6552 28.2109V19.7891C17.6552 18.1985 16.3658 16.9091 14.7752 16.9091H2.88Z" fill="black"/>
+<path d="M19.8621 19.789C19.8621 18.1984 21.1515 16.909 22.7421 16.909H45.12C46.7106 16.909 48 18.1984 48 19.789V28.2108C48 29.8014 46.7106 31.0908 45.12 31.0908H22.7421C21.1515 31.0908 19.8621 29.8014 19.8621 28.2108V19.789Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M45.12 18.829H22.7421C22.2119 18.829 21.7821 19.2588 21.7821 19.789V28.2108C21.7821 28.741 22.2119 29.1708 22.7421 29.1708H45.12C45.6502 29.1708 46.08 28.741 46.08 28.2108V19.789C46.08 19.2588 45.6502 18.829 45.12 18.829ZM22.7421 16.909C21.1515 16.909 19.8621 18.1984 19.8621 19.789V28.2108C19.8621 29.8014 21.1515 31.0908 22.7421 31.0908H45.12C46.7106 31.0908 48 29.8014 48 28.2108V19.789C48 18.1984 46.7106 16.909 45.12 16.909H22.7421Z" fill="black"/>
+<path d="M0 36.6982C0 35.1076 1.28942 33.8182 2.88 33.8182H14.7752C16.3658 33.8182 17.6552 35.1076 17.6552 36.6982V45.12C17.6552 46.7106 16.3658 48 14.7752 48H2.88C1.28942 48 0 46.7106 0 45.12V36.6982Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M14.7752 35.7382H2.88C2.3498 35.7382 1.92 36.168 1.92 36.6982V45.12C1.92 45.6502 2.34981 46.08 2.88 46.08H14.7752C15.3054 46.08 15.7352 45.6502 15.7352 45.12V36.6982C15.7352 36.168 15.3054 35.7382 14.7752 35.7382ZM2.88 33.8182C1.28942 33.8182 0 35.1076 0 36.6982V45.12C0 46.7106 1.28942 48 2.88 48H14.7752C16.3658 48 17.6552 46.7106 17.6552 45.12V36.6982C17.6552 35.1076 16.3658 33.8182 14.7752 33.8182H2.88Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M10.8414 4.69101H31.6414V9.49101H10.8414V4.69101Z" fill="#FDFDFD"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M11.1779 6.13098H29.0979V8.05098H11.1779V6.13098Z" fill="#F41921"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M27.4949 2.47318L30.9981 7.09094L27.4949 11.7087L25.9653 10.5483L28.5881 7.09094L25.9653 3.6336L27.4949 2.47318Z" fill="#F41921"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M10.8414 21.6H31.6414V26.4H10.8414V21.6Z" fill="#FDFDFD"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M11.1779 23.04H29.0979V24.96H11.1779V23.04Z" fill="#F41921"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M27.4949 19.3823L30.9981 24L27.4949 28.6178L25.9653 27.4574L28.5881 24L25.9653 20.5427L27.4949 19.3823Z" fill="#F41921"/>
+<path d="M19.8621 36.6982C19.8621 35.1076 21.1515 33.8182 22.7421 33.8182H45.12C46.7106 33.8182 48 35.1076 48 36.6982V45.12C48 46.7106 46.7106 48 45.12 48H22.7421C21.1515 48 19.8621 46.7106 19.8621 45.12V36.6982Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M45.12 35.7382H22.7421C22.2119 35.7382 21.7821 36.168 21.7821 36.6982V45.12C21.7821 45.6502 22.2119 46.08 22.7421 46.08H45.12C45.6502 46.08 46.08 45.6502 46.08 45.12V36.6982C46.08 36.168 45.6502 35.7382 45.12 35.7382ZM22.7421 33.8182C21.1515 33.8182 19.8621 35.1076 19.8621 36.6982V45.12C19.8621 46.7106 21.1515 48 22.7421 48H45.12C46.7106 48 48 46.7106 48 45.12V36.6982C48 35.1076 46.7106 33.8182 45.12 33.8182H22.7421Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M10.8414 38.5091H31.6414V43.3091H10.8414V38.5091Z" fill="#FDFDFD"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M11.1779 39.9491H29.0979V41.8691H11.1779V39.9491Z" fill="#F41921"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M27.4949 36.2914L30.9981 40.9091L27.4949 45.5269L25.9653 44.3665L28.5881 40.9091L25.9653 37.4518L27.4949 36.2914Z" fill="#F41921"/>
+</svg>
diff --git a/public/img/usecases/datagrid/hero-image.svg b/public/img/usecases/datagrid/hero-image.svg
new file mode 100644
index 0000000..3133ba8
--- /dev/null
+++ b/public/img/usecases/datagrid/hero-image.svg
@@ -0,0 +1,16 @@
+<svg width="663" height="538" viewBox="0 0 663 538" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M518.86 392.48L353.334 294.516C342.334 288.006 342.184 272.14 353.059 265.423L404.364 233.735" stroke="white"/>
+<path d="M584.893 53.7026H391V226.32H391.047C390.448 241.078 399.902 255.947 419.409 267.21C457.261 289.063 518.632 289.063 556.484 267.209C575.991 255.947 585.445 241.078 584.846 226.32H584.893V53.7026Z" fill="#0070CC" stroke="white"/>
+<path d="M419.409 17.3905C457.261 -4.46348 518.631 -4.46349 556.484 17.3905C594.336 39.2444 594.336 74.6766 556.484 96.5306C518.631 118.384 457.261 118.385 419.409 96.5306C381.557 74.6766 381.557 39.2444 419.409 17.3905Z" fill="#0070CC" stroke="white"/>
+<path d="M95.7233 422.984L268.642 323.368C278.213 317.854 293.731 317.854 303.302 323.368L476.221 422.984" stroke="white"/>
+<path d="M701.966 359.4H339.4V461.568L339.494 461.567C339.494 479.522 364.52 493.971 414.571 522.868C464.623 551.765 489.649 566.214 520.747 566.214C551.845 566.214 576.871 551.765 626.922 522.868C676.974 493.971 702 479.522 702 461.567C702 461.188 701.989 460.811 701.966 460.435V359.4Z" fill="#0070CC" stroke="white"/>
+<path d="M414.571 298.1C464.623 269.202 489.649 254.754 520.747 254.754C551.845 254.754 576.871 269.202 626.922 298.1C676.974 326.997 702 341.446 702 359.4C702 377.355 676.974 391.803 626.922 420.701C576.871 449.598 551.845 464.047 520.747 464.047C489.649 464.047 464.623 449.598 414.571 420.701C364.52 391.803 339.494 377.355 339.494 359.4C339.494 341.446 364.52 326.997 414.571 298.1Z" fill="#0070CC" stroke="white"/>
+<path d="M1.00003 289.324L44.8748 314.656L132.624 365.318L132.624 567.967L44.8748 517.305L1.00003 491.974L1.00003 289.324Z" fill="#0070CC" stroke="white"/>
+<rect width="202.649" height="202.649" transform="matrix(0.866025 -0.5 2.20305e-08 1 132.624 365.318)" fill="#0070CC" stroke="white"/>
+<path d="M176.499 188L220.374 213.331L308.124 263.993L132.624 365.318L44.8748 314.656L1.00004 289.324L176.499 188Z" fill="#0070CC" stroke="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M18.078 324.275C17.5997 323.999 17.212 324.222 17.212 324.775V355.199C17.212 355.751 17.5997 356.422 18.078 356.699L24.2319 360.252L37.4058 367.858C37.8841 368.134 38.2719 367.91 38.2719 367.358L38.2719 336.934C38.2719 336.381 37.8841 335.71 37.4058 335.434L24.2319 327.828L18.078 324.275ZM18.078 403.308C17.5997 403.032 17.212 403.256 17.212 403.808L17.212 418.02C17.212 418.572 17.5997 419.244 18.078 419.52L114.626 475.262C115.104 475.538 115.492 475.314 115.492 474.762V460.55C115.492 459.997 115.104 459.326 114.626 459.05L18.078 403.308ZM18.078 431.679C17.5997 431.402 17.212 431.626 17.212 432.179L17.212 446.391C17.212 446.943 17.5997 447.614 18.078 447.891L114.626 503.632C115.104 503.908 115.492 503.685 115.492 503.132V488.92C115.492 488.368 115.104 487.696 114.626 487.42L18.078 431.679ZM17.212 460.55C17.212 459.997 17.5997 459.773 18.078 460.05L114.626 515.791C115.104 516.067 115.492 516.739 115.492 517.291V531.503C115.492 532.056 115.104 532.279 114.626 532.003L18.078 476.262C17.5997 475.985 17.212 475.314 17.212 474.762L17.212 460.55Z" fill="#0070CC"/>
+<path d="M18.078 324.275L17.828 324.708L18.078 324.275ZM18.078 356.699L18.328 356.266L18.078 356.699ZM24.2319 360.252L24.4819 359.819L24.2319 360.252ZM37.4058 367.858L37.1558 368.291L37.4058 367.858ZM38.2719 367.358H37.7719H38.2719ZM38.2719 336.934H38.7719H38.2719ZM37.4058 335.434L37.1558 335.867V335.867L37.4058 335.434ZM24.2319 327.828L24.4819 327.395L24.2319 327.828ZM17.212 403.808H16.712H17.212ZM18.078 403.308L17.828 403.741H17.828L18.078 403.308ZM17.212 418.02H16.712H17.212ZM18.078 419.52L17.828 419.953H17.828L18.078 419.52ZM114.626 475.262L114.876 474.829H114.876L114.626 475.262ZM114.626 459.05L114.376 459.483L114.626 459.05ZM17.212 432.179H16.712H17.212ZM18.078 431.679L17.828 432.112H17.828L18.078 431.679ZM17.212 446.391H16.712H17.212ZM18.078 447.891L17.828 448.324H17.828L18.078 447.891ZM114.626 503.632L114.376 504.065L114.626 503.632ZM114.626 487.42L114.376 487.853L114.626 487.42ZM18.078 460.05L18.328 459.617H18.328L18.078 460.05ZM17.212 460.55H16.712H17.212ZM114.626 515.791L114.876 515.358H114.876L114.626 515.791ZM114.626 532.003L114.376 532.436L114.626 532.003ZM18.078 476.262L17.828 476.695H17.828L18.078 476.262ZM17.212 474.762H16.712H17.212ZM17.712 324.775C17.712 324.693 17.7265 324.651 17.7335 324.635C17.7392 324.623 17.7366 324.635 17.7156 324.647C17.6946 324.659 17.683 324.656 17.6966 324.657C17.7132 324.658 17.7574 324.667 17.828 324.708L18.328 323.842C17.9977 323.651 17.5816 323.57 17.2156 323.781C16.8497 323.992 16.712 324.393 16.712 324.775H17.712ZM17.712 355.199V324.775H16.712V355.199H17.712ZM18.328 356.266C18.1827 356.182 18.0231 356.018 17.8986 355.802C17.7742 355.587 17.712 355.366 17.712 355.199H16.712C16.712 355.583 16.8436 355.975 17.0326 356.302C17.2216 356.629 17.4949 356.939 17.828 357.132L18.328 356.266ZM24.4819 359.819L18.328 356.266L17.828 357.132L23.9819 360.685L24.4819 359.819ZM37.6558 367.425L24.4819 359.819L23.9819 360.685L37.1558 368.291L37.6558 367.425ZM37.7719 367.358C37.7719 367.439 37.7574 367.482 37.7504 367.497C37.7446 367.509 37.7472 367.497 37.7682 367.485C37.7892 367.473 37.8008 367.477 37.7872 367.476C37.7707 367.474 37.7264 367.465 37.6558 367.425L37.1558 368.291C37.4861 368.481 37.9023 368.563 38.2682 368.351C38.6342 368.14 38.7719 367.739 38.7719 367.358H37.7719ZM37.7719 336.934L37.7719 367.358H38.7719L38.7719 336.934H37.7719ZM37.1558 335.867C37.3011 335.951 37.4607 336.115 37.5852 336.33C37.7097 336.546 37.7719 336.766 37.7719 336.934H38.7719C38.7719 336.549 38.6402 336.157 38.4512 335.83C38.2623 335.503 37.9889 335.193 37.6558 335.001L37.1558 335.867ZM23.9819 328.261L37.1558 335.867L37.6558 335.001L24.4819 327.395L23.9819 328.261ZM17.828 324.708L23.9819 328.261L24.4819 327.395L18.328 323.842L17.828 324.708ZM17.712 403.808C17.712 403.726 17.7265 403.684 17.7335 403.669C17.7392 403.656 17.7366 403.668 17.7156 403.68C17.6947 403.692 17.683 403.689 17.6966 403.69C17.7132 403.691 17.7574 403.7 17.828 403.741L18.328 402.875C17.9978 402.684 17.5816 402.603 17.2156 402.814C16.8497 403.025 16.712 403.427 16.712 403.808H17.712ZM17.712 418.02L17.712 403.808H16.712L16.712 418.02H17.712ZM18.328 419.087C18.1827 419.003 18.0231 418.839 17.8986 418.623C17.7742 418.408 17.712 418.188 17.712 418.02H16.712C16.712 418.404 16.8436 418.796 17.0326 419.123C17.2216 419.451 17.4949 419.761 17.828 419.953L18.328 419.087ZM114.876 474.829L18.328 419.087L17.828 419.953L114.376 475.695L114.876 474.829ZM114.992 474.762C114.992 474.843 114.977 474.886 114.97 474.901C114.964 474.913 114.967 474.901 114.988 474.889C115.009 474.877 115.021 474.881 115.007 474.88C114.99 474.878 114.946 474.869 114.876 474.829L114.375 475.695C114.706 475.885 115.122 475.966 115.488 475.755C115.854 475.544 115.992 475.143 115.992 474.762H114.992ZM114.992 460.55V474.762H115.992V460.55H114.992ZM114.376 459.483C114.521 459.566 114.68 459.73 114.805 459.946C114.929 460.162 114.992 460.382 114.992 460.55H115.992C115.992 460.165 115.86 459.773 115.671 459.446C115.482 459.119 115.209 458.809 114.876 458.617L114.376 459.483ZM17.828 403.741L114.376 459.483L114.876 458.617L18.328 402.875L17.828 403.741ZM17.712 432.179C17.712 432.097 17.7265 432.054 17.7335 432.039C17.7392 432.027 17.7366 432.039 17.7156 432.051C17.6947 432.063 17.683 432.059 17.6966 432.061C17.7132 432.062 17.7574 432.071 17.828 432.112L18.328 431.246C17.9978 431.055 17.5816 430.974 17.2156 431.185C16.8497 431.396 16.712 431.797 16.712 432.179H17.712ZM17.712 446.391L17.712 432.179H16.712L16.712 446.391H17.712ZM18.328 447.458C18.1827 447.374 18.0231 447.21 17.8986 446.994C17.7742 446.778 17.712 446.558 17.712 446.391H16.712C16.712 446.775 16.8436 447.167 17.0326 447.494C17.2216 447.821 17.4949 448.131 17.828 448.324L18.328 447.458ZM114.876 503.199L18.328 447.458L17.828 448.324L114.376 504.065L114.876 503.199ZM114.992 503.132C114.992 503.214 114.977 503.256 114.97 503.272C114.964 503.284 114.967 503.272 114.988 503.26C115.009 503.248 115.021 503.251 115.007 503.25C114.99 503.249 114.946 503.24 114.876 503.199L114.376 504.065C114.706 504.256 115.122 504.337 115.488 504.126C115.854 503.915 115.992 503.514 115.992 503.132H114.992ZM114.992 488.92V503.132H115.992V488.92H114.992ZM114.376 487.853C114.521 487.937 114.68 488.101 114.805 488.317C114.929 488.532 114.992 488.753 114.992 488.92H115.992C115.992 488.536 115.86 488.144 115.671 487.817C115.482 487.489 115.209 487.18 114.876 486.987L114.376 487.853ZM17.828 432.112L114.376 487.853L114.876 486.987L18.328 431.246L17.828 432.112ZM18.328 459.617C17.9978 459.426 17.5816 459.345 17.2156 459.556C16.8497 459.767 16.712 460.168 16.712 460.55H17.712C17.712 460.468 17.7265 460.425 17.7335 460.41C17.7392 460.398 17.7366 460.41 17.7156 460.422C17.6947 460.434 17.683 460.43 17.6966 460.432C17.7132 460.433 17.7574 460.442 17.828 460.483L18.328 459.617ZM114.876 515.358L18.328 459.617L17.828 460.483L114.376 516.224L114.876 515.358ZM115.992 517.291C115.992 516.907 115.86 516.515 115.671 516.188C115.482 515.86 115.209 515.551 114.876 515.358L114.375 516.224C114.521 516.308 114.68 516.472 114.805 516.688C114.929 516.903 114.992 517.124 114.992 517.291H115.992ZM115.992 531.503V517.291H114.992V531.503H115.992ZM114.376 532.436C114.706 532.627 115.122 532.708 115.488 532.497C115.854 532.286 115.992 531.885 115.992 531.503H114.992C114.992 531.585 114.977 531.627 114.97 531.643C114.964 531.655 114.967 531.643 114.988 531.631C115.009 531.619 115.021 531.622 115.007 531.621C114.99 531.62 114.946 531.611 114.876 531.57L114.376 532.436ZM17.828 476.695L114.376 532.436L114.876 531.57L18.328 475.829L17.828 476.695ZM16.712 474.762C16.712 475.146 16.8436 475.538 17.0326 475.865C17.2216 476.192 17.4949 476.502 17.828 476.695L18.328 475.829C18.1827 475.745 18.0231 475.581 17.8986 475.365C17.7742 475.149 17.712 474.929 17.712 474.762H16.712ZM16.712 460.55L16.712 474.762H17.712L17.712 460.55H16.712Z" fill="white"/>
+<path d="M615.733 365.546C609.742 371.537 597.407 373.505 582.008 371.607C566.666 369.715 548.522 364.005 531.232 354.909C513.943 345.812 500.826 335.074 493.583 325.084C486.313 315.056 485.062 305.94 491.053 299.949C497.044 293.958 509.379 291.99 524.778 293.889C540.119 295.781 558.264 301.491 575.554 310.587C592.843 319.684 605.96 330.421 613.203 340.412C620.473 350.44 621.724 359.556 615.733 365.546Z" stroke="white"/>
+<path d="M584.142 386.607C578.152 392.598 565.817 394.566 550.418 392.667C535.076 390.775 516.931 385.065 499.642 375.969C482.353 366.873 469.235 356.135 461.992 346.144C454.723 336.116 453.472 327 459.463 321.01C465.453 315.019 477.789 313.051 493.187 314.949C508.529 316.841 526.674 322.551 543.963 331.648C561.252 340.744 574.37 351.482 581.613 361.472C588.882 371.5 590.133 380.616 584.142 386.607Z" stroke="white"/>
+<path d="M539.013 410.676C533.022 416.667 520.687 418.635 505.289 416.736C489.947 414.844 471.802 409.134 454.513 400.038C437.223 390.941 424.106 380.204 416.863 370.213C409.594 360.185 408.343 351.069 414.333 345.079C420.324 339.088 432.659 337.12 448.058 339.018C463.4 340.91 481.545 346.62 498.834 355.716C516.123 364.813 529.241 375.551 536.483 385.541C543.753 395.569 545.004 404.685 539.013 410.676Z" stroke="white"/>
+</svg>
diff --git a/public/img/usecases/datagrid/image.svg b/public/img/usecases/datagrid/image.svg
new file mode 100644
index 0000000..2158c4a
--- /dev/null
+++ b/public/img/usecases/datagrid/image.svg
@@ -0,0 +1,244 @@
+<svg width="620" height="496" viewBox="0 0 620 496" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="620" height="496" rx="10" fill="#F6F6F6"/>
+<path d="M26 112C26 102.059 34.0149 94 43.9018 94H575.098C584.985 94 593 102.059 593 112C593 121.941 584.985 130 575.098 130H43.9018C34.0149 130 26 121.941 26 112Z" fill="#EBEBEB"/>
+<path d="M28 409C28 399.059 36.0008 391 45.8703 391H576.13C585.999 391 594 399.059 594 409C594 418.941 585.999 427 576.13 427H45.8702C36.0008 427 28 418.941 28 409Z" fill="#EBEBEB"/>
+<path d="M92.8141 103.617L114 109.251L114 78.6336L92.8142 73L72 79.5099L72 110L92.8141 103.617Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M72 111L72 78.785L93.301 72L115 77.8764L115 110.208L93.328 104.339L72 111ZM73.2887 109.219L93.3029 102.968L113.711 108.495L113.711 78.8916L93.3299 73.372L73.2887 79.7557L73.2887 109.219Z" fill="#2D2D2D"/>
+<path d="M93.1859 85.2779L72 79.7369L72 116.459L93.1859 122L114 115.597L114 79L93.1859 85.2779Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M115 78L115 116.333L93.699 123L72 117.226L72 78.7781L93.672 84.5453L115 78ZM113.711 79.7504L93.6971 85.8925L73.2887 80.4615L73.2887 116.228L93.6701 121.652L113.711 115.379L113.711 79.7504Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M92.4595 121.724L92.4595 85.0387L93.7603 85.0387L93.7603 121.724L92.4595 121.724Z" fill="#2D2D2D"/>
+<path d="M235.814 103.617L257 109.251L257 78.6336L235.814 73L215 79.5099L215 110L235.814 103.617Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M215 111L215 78.785L236.301 72L258 77.8764L258 110.208L236.328 104.339L215 111ZM216.289 109.219L236.303 102.968L256.711 108.495L256.711 78.8916L236.33 73.372L216.289 79.7557L216.289 109.219Z" fill="#2D2D2D"/>
+<path d="M236.186 85.2779L215 79.7369L215 116.459L236.186 122L257 115.597L257 79L236.186 85.2779Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M258 78L258 116.333L236.699 123L215 117.226L215 78.7781L236.672 84.5453L258 78ZM256.711 79.7504L236.697 85.8925L216.289 80.4615L216.289 116.228L236.67 121.652L256.711 115.379L256.711 79.7504Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M235.548 121.724L235.548 85.0387L236.849 85.0387L236.849 121.724L235.548 121.724Z" fill="#2D2D2D"/>
+<path d="M378.814 103.617L400 109.251L400 78.6336L378.814 73L358 79.5099L358 110L378.814 103.617Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M358 111L358 78.785L379.301 72L401 77.8764L401 110.208L379.328 104.339L358 111ZM359.289 109.219L379.303 102.968L399.711 108.495L399.711 78.8916L379.33 73.372L359.289 79.7557L359.289 109.219Z" fill="#2D2D2D"/>
+<path d="M379.186 85.2779L358 79.7369L358 116.459L379.186 122L400 115.597L400 79L379.186 85.2779Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M401 78L401 116.333L379.699 123L358 117.226L358 78.7781L379.672 84.5453L401 78ZM399.711 79.7504L379.697 85.8925L359.289 80.4615L359.289 116.228L379.67 121.652L399.711 115.379L399.711 79.7504Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M378.637 121.724L378.637 85.0387L379.938 85.0387L379.938 121.724L378.637 121.724Z" fill="#2D2D2D"/>
+<path d="M522.31 103.617L544 109.251L544 78.6336L522.31 73L501 79.5099L501 110L522.31 103.617Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M501 111L501 78.785L522.301 72L544 77.8764L544 110.208L522.328 104.339L501 111ZM502.289 109.219L522.303 102.968L542.711 108.495L542.711 78.8916L522.33 73.372L502.289 79.7557L502.289 109.219Z" fill="#2D2D2D"/>
+<path d="M522.69 85.2779L501 79.7369L501 116.459L522.69 122L544 115.597L544 79L522.69 85.2779Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M544 78L544 116.333L522.699 123L501 117.226L501 78.7781L522.672 84.5453L544 78ZM542.711 79.7504L522.697 85.8925L502.289 80.4615L502.289 116.228L522.67 121.652L542.711 115.379L542.711 79.7504Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M521.725 121.724L521.725 85.0387L523.026 85.0387L523.026 121.724L521.725 121.724Z" fill="#2D2D2D"/>
+<path d="M214 412.32V377.482C214 377.482 219.044 381.701 234.723 381.701C250.402 381.701 255.992 377 255.992 377V412.32C255.992 412.32 257.046 418 235.523 418C214 418 214 412.32 214 412.32Z" fill="white"/>
+<path d="M257 376C257 379.866 247.15 383 235 383C222.85 383 213 379.866 213 376C213 372.134 222.85 369 235 369C247.15 369 257 372.134 257 376Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M254.518 377.62C255.501 376.88 255.706 376.314 255.706 376C255.706 375.686 255.501 375.12 254.518 374.38C253.565 373.663 252.104 372.962 250.181 372.35C246.352 371.132 240.985 370.359 235 370.359C229.015 370.359 223.648 371.132 219.819 372.35C217.896 372.962 216.435 373.663 215.482 374.38C214.499 375.12 214.294 375.686 214.294 376C214.294 376.314 214.499 376.88 215.482 377.62C216.435 378.337 217.896 379.038 219.819 379.65C223.648 380.868 229.015 381.641 235 381.641C240.985 381.641 246.352 380.868 250.181 379.65C252.104 379.038 253.565 378.337 254.518 377.62ZM235 383C247.15 383 257 379.866 257 376C257 372.134 247.15 369 235 369C222.85 369 213 372.134 213 376C213 379.866 222.85 383 235 383Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M213 412L213 376L214 376L214 412L213 412Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M256 412L256 376L257 376L257 412L256 412Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M220.086 415.907C223.875 417.037 229.148 417.746 235 417.746C240.852 417.746 246.125 417.037 249.914 415.907C251.812 415.34 253.302 414.678 254.303 413.972C255.318 413.256 255.715 412.581 255.715 412H257C257 413.179 256.202 414.18 255.055 414.989C253.895 415.808 252.256 416.519 250.29 417.106C246.349 418.282 240.943 419 235 419C229.057 419 223.651 418.282 219.71 417.106C217.744 416.519 216.105 415.808 214.945 414.989C213.798 414.18 213 413.179 213 412H214.285C214.285 412.581 214.682 413.256 215.697 413.972C216.698 414.678 218.188 415.34 220.086 415.907Z" fill="#2D2D2D"/>
+<path d="M355 412.32V377.482C355 377.482 360.044 381.701 375.723 381.701C391.402 381.701 396.992 377 396.992 377V412.32C396.992 412.32 398.046 418 376.523 418C355 418 355 412.32 355 412.32Z" fill="white"/>
+<path d="M398 376C398 379.866 388.15 383 376 383C363.85 383 354 379.866 354 376C354 372.134 363.85 369 376 369C388.15 369 398 372.134 398 376Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M395.518 377.62C396.501 376.88 396.706 376.314 396.706 376C396.706 375.686 396.501 375.12 395.518 374.38C394.565 373.663 393.104 372.962 391.181 372.35C387.352 371.132 381.985 370.359 376 370.359C370.015 370.359 364.648 371.132 360.819 372.35C358.896 372.962 357.435 373.663 356.482 374.38C355.499 375.12 355.294 375.686 355.294 376C355.294 376.314 355.499 376.88 356.482 377.62C357.435 378.337 358.896 379.038 360.819 379.65C364.648 380.868 370.015 381.641 376 381.641C381.985 381.641 387.352 380.868 391.181 379.65C393.104 379.038 394.565 378.337 395.518 377.62ZM376 383C388.15 383 398 379.866 398 376C398 372.134 388.15 369 376 369C363.85 369 354 372.134 354 376C354 379.866 363.85 383 376 383Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M354 412L354 376L355 376L355 412L354 412Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M397 412L397 376L398 376L398 412L397 412Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M361.086 415.907C364.875 417.037 370.148 417.746 376 417.746C381.852 417.746 387.125 417.037 390.914 415.907C392.812 415.34 394.302 414.678 395.303 413.972C396.318 413.256 396.715 412.581 396.715 412H398C398 413.179 397.202 414.18 396.055 414.989C394.895 415.808 393.256 416.519 391.29 417.106C387.349 418.282 381.943 419 376 419C370.057 419 364.651 418.282 360.71 417.106C358.744 416.519 357.105 415.808 355.945 414.989C354.798 414.18 354 413.179 354 412H355.285C355.285 412.581 355.682 413.256 356.697 413.972C357.698 414.678 359.188 415.34 361.086 415.907Z" fill="#2D2D2D"/>
+<path d="M496 412.32V377.482C496 377.482 501.044 381.701 516.723 381.701C532.402 381.701 537.992 377 537.992 377V412.32C537.992 412.32 539.046 418 517.523 418C496 418 496 412.32 496 412.32Z" fill="white"/>
+<path d="M539 376C539 379.866 529.15 383 517 383C504.85 383 495 379.866 495 376C495 372.134 504.85 369 517 369C529.15 369 539 372.134 539 376Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M536.518 377.62C537.501 376.88 537.706 376.314 537.706 376C537.706 375.686 537.501 375.12 536.518 374.38C535.565 373.663 534.104 372.962 532.181 372.35C528.352 371.132 522.985 370.359 517 370.359C511.015 370.359 505.648 371.132 501.819 372.35C499.896 372.962 498.435 373.663 497.482 374.38C496.499 375.12 496.294 375.686 496.294 376C496.294 376.314 496.499 376.88 497.482 377.62C498.435 378.337 499.896 379.038 501.819 379.65C505.648 380.868 511.015 381.641 517 381.641C522.985 381.641 528.352 380.868 532.181 379.65C534.104 379.038 535.565 378.337 536.518 377.62ZM517 383C529.15 383 539 379.866 539 376C539 372.134 529.15 369 517 369C504.85 369 495 372.134 495 376C495 379.866 504.85 383 517 383Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M495 412L495 376L496 376L496 412L495 412Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M538 412L538 376L539 376L539 412L538 412Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M502.086 415.907C505.875 417.037 511.148 417.746 517 417.746C522.852 417.746 528.125 417.037 531.914 415.907C533.812 415.34 535.302 414.678 536.303 413.972C537.318 413.256 537.715 412.581 537.715 412H539C539 413.179 538.202 414.18 537.055 414.989C535.895 415.808 534.256 416.519 532.29 417.106C528.349 418.282 522.943 419 517 419C511.057 419 505.651 418.282 501.71 417.106C499.744 416.519 498.105 415.808 496.945 414.989C495.798 414.18 495 413.179 495 412H496.285C496.285 412.581 496.682 413.256 497.697 413.972C498.698 414.678 500.188 415.34 502.086 415.907Z" fill="#2D2D2D"/>
+<path d="M73 412.32V377.482C73 377.482 78.0444 381.701 93.7231 381.701C109.402 381.701 114.992 377 114.992 377V412.32C114.992 412.32 116.046 418 94.5231 418C73 418 73 412.32 73 412.32Z" fill="white"/>
+<path d="M116 376C116 379.866 106.15 383 94 383C81.8497 383 72 379.866 72 376C72 372.134 81.8497 369 94 369C106.15 369 116 372.134 116 376Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M113.518 377.62C114.501 376.88 114.706 376.314 114.706 376C114.706 375.686 114.501 375.12 113.518 374.38C112.565 373.663 111.104 372.962 109.181 372.35C105.352 371.132 99.9845 370.359 94 370.359C88.0155 370.359 82.6478 371.132 78.8189 372.35C76.8963 372.962 75.4347 373.663 74.4825 374.38C73.4987 375.12 73.2939 375.686 73.2939 376C73.2939 376.314 73.4987 376.88 74.4825 377.62C75.4347 378.337 76.8963 379.038 78.8189 379.65C82.6478 380.868 88.0155 381.641 94 381.641C99.9845 381.641 105.352 380.868 109.181 379.65C111.104 379.038 112.565 378.337 113.518 377.62ZM94 383C106.15 383 116 379.866 116 376C116 372.134 106.15 369 94 369C81.8497 369 72 372.134 72 376C72 379.866 81.8497 383 94 383Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M72 412L72 376L73 376L73 412L72 412Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M115 412L115 376L116 376L116 412L115 412Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M79.0859 415.907C82.8746 417.037 88.1477 417.746 94 417.746C99.8523 417.746 105.125 417.037 108.914 415.907C110.812 415.34 112.302 414.678 113.303 413.972C114.318 413.256 114.715 412.581 114.715 412H116C116 413.179 115.202 414.18 114.055 414.989C112.895 415.808 111.256 416.519 109.29 417.106C105.349 418.282 99.9431 419 94 419C88.0569 419 82.6512 418.282 78.7101 417.106C76.7436 416.519 75.1053 415.808 73.9445 414.989C72.7984 414.18 72 413.179 72 412H73.2851C73.2851 412.581 73.6819 413.256 74.6974 413.972C75.6981 414.678 77.1875 415.34 79.0859 415.907Z" fill="#2D2D2D"/>
+<path d="M481 55.9578L485.287 45H486.878L491.446 55.9578H489.764L488.462 52.6391H483.794L482.568 55.9578H481ZM484.221 51.4581H488.005L486.84 48.4234C486.485 47.5015 486.221 46.7441 486.048 46.1511C485.906 46.8537 485.705 47.5513 485.447 48.244L484.221 51.4581Z" fill="#2D2D2D"/>
+<path d="M492.581 59V48.0198H493.83V49.0513C494.124 48.6476 494.457 48.3461 494.827 48.1468C495.198 47.9425 495.647 47.8404 496.175 47.8404C496.865 47.8404 497.475 48.0148 498.002 48.3636C498.53 48.7124 498.929 49.2057 499.198 49.8436C499.467 50.4764 499.601 51.1716 499.601 51.929C499.601 52.7412 499.452 53.4738 499.152 54.1265C498.858 54.7743 498.426 55.2726 497.858 55.6215C497.294 55.9653 496.7 56.1372 496.076 56.1372C495.619 56.1372 495.208 56.0425 494.843 55.8532C494.482 55.6638 494.185 55.4246 493.952 55.1356V59H492.581ZM493.822 52.0336C493.822 53.0552 494.033 53.8101 494.454 54.2985C494.876 54.7868 495.386 55.031 495.985 55.031C496.594 55.031 497.114 54.7793 497.546 54.276C497.982 53.7678 498.2 52.9829 498.2 51.9215C498.2 50.9099 497.987 50.1525 497.561 49.6492C497.14 49.1459 496.634 48.8943 496.046 48.8943C495.462 48.8943 494.944 49.1634 494.492 49.7015C494.046 50.2347 493.822 51.0121 493.822 52.0336Z" fill="#2D2D2D"/>
+<path d="M501.391 59V48.0198H502.64V49.0513C502.934 48.6476 503.267 48.3461 503.637 48.1468C504.008 47.9425 504.457 47.8404 504.985 47.8404C505.675 47.8404 506.284 48.0148 506.812 48.3636C507.34 48.7124 507.739 49.2057 508.008 49.8436C508.277 50.4764 508.411 51.1716 508.411 51.929C508.411 52.7412 508.261 53.4738 507.962 54.1265C507.668 54.7743 507.236 55.2726 506.668 55.6215C506.104 55.9653 505.51 56.1372 504.886 56.1372C504.429 56.1372 504.018 56.0425 503.652 55.8532C503.292 55.6638 502.995 55.4246 502.762 55.1356V59H501.391ZM502.632 52.0336C502.632 53.0552 502.843 53.8101 503.264 54.2985C503.685 54.7868 504.196 55.031 504.795 55.031C505.404 55.031 505.924 54.7793 506.355 54.276C506.792 53.7678 507.01 52.9829 507.01 51.9215C507.01 50.9099 506.797 50.1525 506.371 49.6492C505.949 49.1459 505.444 48.8943 504.855 48.8943C504.272 48.8943 503.754 49.1634 503.302 49.7015C502.856 50.2347 502.632 51.0121 502.632 52.0336Z" fill="#2D2D2D"/>
+<path d="M510.171 55.9578V45H511.541V55.9578H510.171Z" fill="#2D2D2D"/>
+<path d="M513.811 46.5473V45H515.181V46.5473H513.811ZM513.811 55.9578V48.0198H515.181V55.9578H513.811Z" fill="#2D2D2D"/>
+<path d="M522.681 53.0502L524.029 53.2221C523.882 54.134 523.504 54.8491 522.894 55.3673C522.29 55.8806 521.547 56.1372 520.664 56.1372C519.557 56.1372 518.666 55.7834 517.991 55.0758C517.321 54.3632 516.986 53.3442 516.986 52.0187C516.986 51.1616 517.131 50.4116 517.42 49.7688C517.709 49.126 518.148 48.6451 518.737 48.3262C519.331 48.0023 519.976 47.8404 520.671 47.8404C521.549 47.8404 522.268 48.0596 522.826 48.4981C523.384 48.9317 523.742 49.5496 523.899 50.3518L522.567 50.5537C522.44 50.0205 522.214 49.6193 521.889 49.3502C521.57 49.0812 521.181 48.9466 520.724 48.9466C520.034 48.9466 519.473 49.1908 519.042 49.6791C518.61 50.1625 518.395 50.9299 518.395 51.9813C518.395 53.0477 518.603 53.8226 519.019 54.3059C519.435 54.7893 519.978 55.031 520.648 55.031C521.186 55.031 521.636 54.869 521.996 54.5451C522.356 54.2212 522.585 53.7229 522.681 53.0502Z" fill="#2D2D2D"/>
+<path d="M530.608 54.9786C530.1 55.4022 529.61 55.7012 529.138 55.8756C528.671 56.05 528.169 56.1372 527.631 56.1372C526.743 56.1372 526.06 55.9254 525.583 55.5019C525.106 55.0733 524.867 54.5277 524.867 53.8649C524.867 53.4762 524.956 53.1224 525.133 52.8035C525.316 52.4796 525.552 52.2205 525.842 52.0262C526.136 51.8318 526.466 51.6848 526.831 51.5852C527.1 51.5154 527.506 51.4481 528.05 51.3833C529.156 51.2538 529.971 51.0993 530.494 50.9199C530.499 50.7355 530.501 50.6184 530.501 50.5686C530.501 50.0205 530.372 49.6343 530.113 49.41C529.763 49.1061 529.242 48.9541 528.552 48.9541C527.907 48.9541 527.43 49.0662 527.121 49.2904C526.816 49.5097 526.59 49.9009 526.443 50.464L525.103 50.2846C525.225 49.7215 525.425 49.268 525.704 48.9242C525.984 48.5754 526.387 48.3088 526.915 48.1244C527.443 47.935 528.055 47.8404 528.75 47.8404C529.44 47.8404 530.001 47.9201 530.433 48.0796C530.864 48.239 531.181 48.4408 531.384 48.685C531.588 48.9242 531.73 49.2282 531.811 49.5969C531.857 49.8261 531.879 50.2397 531.879 50.8377V52.6316C531.879 53.8824 531.907 54.6747 531.963 55.0085C532.024 55.3374 532.141 55.6539 532.313 55.9578H530.882C530.74 55.6788 530.648 55.3524 530.608 54.9786ZM530.494 51.9738C529.996 52.1732 529.25 52.3426 528.255 52.4821C527.692 52.5618 527.293 52.6515 527.06 52.7512C526.826 52.8509 526.646 52.9979 526.519 53.1922C526.392 53.3816 526.329 53.5933 526.329 53.8275C526.329 54.1863 526.466 54.4853 526.74 54.7245C527.019 54.9637 527.425 55.0833 527.958 55.0833C528.486 55.0833 528.956 54.9712 529.367 54.7469C529.778 54.5177 530.08 54.2063 530.273 53.8126C530.42 53.5086 530.494 53.0602 530.494 52.4672V51.9738Z" fill="#2D2D2D"/>
+<path d="M537.134 54.7544L537.331 55.9429C536.946 56.0226 536.601 56.0625 536.296 56.0625C535.799 56.0625 535.413 55.9852 535.139 55.8308C534.865 55.6763 534.672 55.4745 534.56 55.2253C534.448 54.9712 534.393 54.4405 534.393 53.6332V49.0662H533.387V48.0198H534.393V46.0539L535.755 45.2467V48.0198H537.134V49.0662H535.755V53.708C535.755 54.0917 535.778 54.3383 535.824 54.4479C535.875 54.5576 535.953 54.6448 536.06 54.7096C536.172 54.7743 536.329 54.8067 536.532 54.8067C536.684 54.8067 536.885 54.7893 537.134 54.7544Z" fill="#2D2D2D"/>
+<path d="M538.619 46.5473V45H539.989V46.5473H538.619ZM538.619 55.9578V48.0198H539.989V55.9578H538.619Z" fill="#2D2D2D"/>
+<path d="M541.703 51.9888C541.703 50.5188 542.119 49.43 542.952 48.7224C543.647 48.1344 544.495 47.8404 545.495 47.8404C546.606 47.8404 547.515 48.1991 548.22 48.9167C548.926 49.6293 549.279 50.6159 549.279 51.8767C549.279 52.8982 549.121 53.703 548.807 54.291C548.497 54.874 548.043 55.3275 547.444 55.6514C546.85 55.9753 546.2 56.1372 545.495 56.1372C544.363 56.1372 543.446 55.7809 542.746 55.0683C542.051 54.3558 541.703 53.3292 541.703 51.9888ZM543.111 51.9888C543.111 53.0053 543.337 53.7678 543.789 54.276C544.241 54.7793 544.809 55.031 545.495 55.031C546.175 55.031 546.741 54.7768 547.193 54.2686C547.644 53.7603 547.87 52.9854 547.87 51.9439C547.87 50.9623 547.642 50.2198 547.185 49.7165C546.733 49.2082 546.17 48.9541 545.495 48.9541C544.809 48.9541 544.241 49.2057 543.789 49.709C543.337 50.2123 543.111 50.9722 543.111 51.9888Z" fill="#2D2D2D"/>
+<path d="M551.023 55.9578V48.0198H552.256V49.1484C552.85 48.2764 553.708 47.8404 554.83 47.8404C555.317 47.8404 555.764 47.9276 556.17 48.102C556.581 48.2714 556.888 48.4956 557.091 48.7747C557.294 49.0537 557.436 49.3851 557.518 49.7688C557.568 50.018 557.594 50.454 557.594 51.0769V55.9578H556.223V51.1292C556.223 50.5811 556.17 50.1725 556.063 49.9034C555.957 49.6293 555.766 49.4125 555.492 49.2531C555.223 49.0886 554.906 49.0064 554.541 49.0064C553.957 49.0064 553.452 49.1883 553.025 49.5521C552.604 49.9158 552.393 50.606 552.393 51.6225V55.9578H551.023Z" fill="#2D2D2D"/>
+<path d="M559.285 53.5884L560.64 53.3791C560.716 53.9123 560.927 54.3209 561.272 54.6049C561.622 54.8889 562.109 55.031 562.734 55.031C563.363 55.031 563.83 54.9064 564.135 54.6572C564.439 54.4031 564.591 54.1066 564.591 53.7678C564.591 53.4638 564.457 53.2246 564.188 53.0502C564 52.9306 563.533 52.7786 562.787 52.5942C561.782 52.3451 561.084 52.1308 560.693 51.9514C560.307 51.767 560.013 51.5154 559.81 51.1965C559.612 50.8726 559.513 50.5163 559.513 50.1276C559.513 49.7738 559.594 49.4474 559.757 49.1484C559.924 48.8445 560.15 48.5928 560.434 48.3935C560.647 48.239 560.937 48.1095 561.302 48.0048C561.673 47.8952 562.069 47.8404 562.49 47.8404C563.124 47.8404 563.68 47.9301 564.157 48.1095C564.64 48.2888 564.995 48.533 565.223 48.842C565.452 49.1459 565.609 49.5545 565.695 50.0678L564.355 50.2472C564.294 49.8386 564.117 49.5197 563.822 49.2904C563.533 49.0612 563.122 48.9466 562.589 48.9466C561.96 48.9466 561.51 49.0488 561.241 49.2531C560.972 49.4574 560.838 49.6966 560.838 49.9706C560.838 50.145 560.894 50.302 561.005 50.4415C561.117 50.586 561.292 50.7056 561.531 50.8003C561.668 50.8502 562.071 50.9648 562.741 51.1442C563.711 51.3983 564.386 51.6076 564.767 51.772C565.152 51.9315 565.454 52.1657 565.673 52.4746C565.891 52.7836 566 53.1673 566 53.6257C566 54.0742 565.865 54.4978 565.596 54.8964C565.333 55.2901 564.949 55.5965 564.447 55.8158C563.944 56.0301 563.376 56.1372 562.741 56.1372C561.691 56.1372 560.889 55.9229 560.335 55.4944C559.787 55.0658 559.437 54.4305 559.285 53.5884Z" fill="#2D2D2D"/>
+<path d="M341 52.0739L342.383 51.9472C342.449 52.5277 342.6 53.0053 342.837 53.3799C343.079 53.7493 343.452 54.0501 343.956 54.2823C344.46 54.5092 345.027 54.6227 345.657 54.6227C346.216 54.6227 346.71 54.5356 347.139 54.3615C347.567 54.1873 347.884 53.9499 348.091 53.6491C348.303 53.343 348.409 53.0106 348.409 52.6517C348.409 52.2876 348.308 51.971 348.106 51.7018C347.905 51.4274 347.572 51.1979 347.108 51.0132C346.811 50.8918 346.153 50.7045 345.135 50.4512C344.117 50.1926 343.404 49.9499 342.996 49.723C342.467 49.4327 342.071 49.0739 341.809 48.6464C341.552 48.2137 341.423 47.7309 341.423 47.1979C341.423 46.6121 341.582 46.066 341.9 45.5594C342.217 45.0475 342.681 44.6596 343.291 44.3958C343.9 44.1319 344.578 44 345.324 44C346.146 44 346.869 44.1398 347.494 44.4195C348.124 44.6939 348.608 45.1003 348.945 45.6385C349.283 46.1768 349.464 46.7863 349.49 47.467L348.084 47.5778C348.008 46.8443 347.751 46.2902 347.312 45.9156C346.879 45.5409 346.236 45.3536 345.385 45.3536C344.498 45.3536 343.85 45.5251 343.442 45.8681C343.039 46.2058 342.837 46.6148 342.837 47.095C342.837 47.5119 342.981 47.8549 343.268 48.124C343.55 48.3931 344.286 48.6702 345.475 48.9551C346.67 49.2348 347.489 49.4802 347.932 49.6913C348.577 50.0026 349.054 50.3984 349.361 50.8786C349.669 51.3536 349.822 51.9024 349.822 52.5251C349.822 53.1425 349.653 53.7256 349.316 54.2744C348.978 54.8179 348.492 55.2427 347.857 55.5488C347.227 55.8496 346.516 56 345.725 56C344.722 56 343.88 55.847 343.2 55.5409C342.525 55.2348 341.993 54.7757 341.605 54.1636C341.222 53.5462 341.02 52.8496 341 52.0739Z" fill="#2D2D2D"/>
+<path d="M357.277 53.095L358.683 53.277C358.461 54.1372 358.05 54.8047 357.451 55.2797C356.851 55.7546 356.085 55.9921 355.152 55.9921C353.978 55.9921 353.046 55.6148 352.355 54.8602C351.67 54.1003 351.327 53.0369 351.327 51.6702C351.327 50.2559 351.675 49.1583 352.37 48.3773C353.066 47.5963 353.968 47.2058 355.077 47.2058C356.15 47.2058 357.027 47.5884 357.708 48.3536C358.388 49.1187 358.728 50.1953 358.728 51.5831C358.728 51.6675 358.726 51.7942 358.721 51.9631H352.733C352.784 52.8865 353.033 53.5937 353.482 54.0844C353.93 54.5752 354.49 54.8206 355.16 54.8206C355.659 54.8206 356.085 54.6834 356.438 54.409C356.79 54.1346 357.07 53.6966 357.277 53.095ZM352.809 50.7916H357.292C357.231 50.0844 357.06 49.5541 356.778 49.2005C356.344 48.6517 355.782 48.3773 355.092 48.3773C354.467 48.3773 353.94 48.5963 353.512 49.0343C353.089 49.4723 352.854 50.058 352.809 50.7916Z" fill="#2D2D2D"/>
+<path d="M360.513 55.8021V47.3958H361.737V48.6702C362.05 48.0739 362.337 47.6807 362.599 47.4908C362.866 47.3008 363.159 47.2058 363.476 47.2058C363.935 47.2058 364.401 47.3588 364.875 47.6649L364.406 48.9868C364.073 48.781 363.741 48.6781 363.408 48.6781C363.111 48.6781 362.844 48.7731 362.607 48.9631C362.37 49.1478 362.201 49.4063 362.1 49.7388C361.949 50.2454 361.874 50.7995 361.874 51.4011V55.8021H360.513Z" fill="#2D2D2D"/>
+<path d="M368.043 55.8021L364.989 47.3958H366.425L368.149 52.4301C368.335 52.9736 368.506 53.5383 368.663 54.124C368.784 53.6807 368.953 53.1478 369.169 52.5251L370.953 47.3958H372.352L369.313 55.8021H368.043Z" fill="#2D2D2D"/>
+<path d="M373.69 45.8364V44.1979H375.051V45.8364H373.69ZM373.69 55.8021V47.3958H375.051V55.8021H373.69Z" fill="#2D2D2D"/>
+<path d="M382.498 52.723L383.836 52.905C383.69 53.8707 383.315 54.628 382.71 55.1768C382.11 55.7203 381.372 55.9921 380.495 55.9921C379.396 55.9921 378.512 55.6174 377.841 54.8681C377.176 54.1135 376.843 53.0343 376.843 51.6306C376.843 50.723 376.987 49.9288 377.274 49.248C377.562 48.5673 377.998 48.058 378.582 47.7203C379.172 47.3773 379.812 47.2058 380.502 47.2058C381.374 47.2058 382.087 47.438 382.642 47.9024C383.196 48.3615 383.551 49.0158 383.708 49.8654L382.385 50.0792C382.259 49.5145 382.034 49.0897 381.712 48.8047C381.394 48.5198 381.009 48.3773 380.555 48.3773C379.87 48.3773 379.313 48.6359 378.885 49.153C378.456 49.6649 378.242 50.4776 378.242 51.591C378.242 52.7203 378.449 53.5409 378.862 54.0528C379.275 54.5646 379.814 54.8206 380.48 54.8206C381.014 54.8206 381.46 54.6491 381.818 54.3061C382.176 53.9631 382.402 53.4354 382.498 52.723Z" fill="#2D2D2D"/>
+<path d="M390.625 53.095L392.031 53.277C391.81 54.1372 391.399 54.8047 390.799 55.2797C390.2 55.7546 389.433 55.9921 388.501 55.9921C387.327 55.9921 386.394 55.6148 385.704 54.8602C385.019 54.1003 384.676 53.0369 384.676 51.6702C384.676 50.2559 385.024 49.1583 385.719 48.3773C386.415 47.5963 387.317 47.2058 388.425 47.2058C389.499 47.2058 390.376 47.5884 391.056 48.3536C391.737 49.1187 392.077 50.1953 392.077 51.5831C392.077 51.6675 392.074 51.7942 392.069 51.9631H386.082C386.132 52.8865 386.382 53.5937 386.83 54.0844C387.279 54.5752 387.838 54.8206 388.509 54.8206C389.008 54.8206 389.433 54.6834 389.786 54.409C390.139 54.1346 390.419 53.6966 390.625 53.095ZM386.158 50.7916H390.64C390.58 50.0844 390.409 49.5541 390.126 49.2005C389.693 48.6517 389.131 48.3773 388.441 48.3773C387.816 48.3773 387.289 48.5963 386.861 49.0343C386.437 49.4723 386.203 50.058 386.158 50.7916Z" fill="#2D2D2D"/>
+<path d="M393.332 53.2929L394.678 53.0712C394.754 53.6359 394.963 54.0686 395.305 54.3694C395.653 54.6702 396.137 54.8206 396.757 54.8206C397.382 54.8206 397.845 54.6887 398.148 54.4248C398.45 54.1557 398.601 53.8417 398.601 53.4829C398.601 53.161 398.468 52.9077 398.201 52.723C398.014 52.5963 397.551 52.4354 396.81 52.2401C395.812 51.9763 395.119 51.7493 394.731 51.5594C394.348 51.3641 394.055 51.0976 393.854 50.7599C393.657 50.4169 393.559 50.0396 393.559 49.628C393.559 49.2533 393.64 48.9077 393.801 48.591C393.967 48.2691 394.192 48.0026 394.474 47.7916C394.685 47.628 394.973 47.4908 395.336 47.3799C395.704 47.2639 396.097 47.2058 396.515 47.2058C397.145 47.2058 397.697 47.3008 398.171 47.4908C398.649 47.6807 399.002 47.9393 399.229 48.2665C399.456 48.5884 399.612 49.0211 399.698 49.5646L398.367 49.7546C398.307 49.3219 398.13 48.9842 397.838 48.7414C397.551 48.4987 397.142 48.3773 396.613 48.3773C395.988 48.3773 395.542 48.4855 395.275 48.7018C395.008 48.9182 394.874 49.1715 394.874 49.4617C394.874 49.6464 394.93 49.8127 395.041 49.9604C395.152 50.1135 395.326 50.2401 395.562 50.3404C395.698 50.3931 396.099 50.5145 396.764 50.7045C397.727 50.9736 398.397 51.1953 398.775 51.3694C399.158 51.5383 399.458 51.7863 399.675 52.1135C399.892 52.4406 400 52.847 400 53.3325C400 53.8074 399.866 54.2559 399.599 54.6781C399.337 55.095 398.957 55.4195 398.458 55.6517C397.959 55.8786 397.394 55.9921 396.764 55.9921C395.721 55.9921 394.925 55.7652 394.376 55.3113C393.831 54.8575 393.483 54.1847 393.332 53.2929Z" fill="#2D2D2D"/>
+<path d="M482 442.641C482 440.877 482.498 439.497 483.493 438.501C484.489 437.5 485.774 437 487.348 437C488.38 437 489.309 437.234 490.137 437.703C490.965 438.172 491.595 438.827 492.027 439.668C492.463 440.505 492.682 441.455 492.682 442.518C492.682 443.596 492.453 444.561 491.996 445.411C491.539 446.262 490.891 446.907 490.053 447.347C489.215 447.782 488.311 448 487.341 448C486.289 448 485.35 447.758 484.522 447.275C483.694 446.791 483.067 446.132 482.64 445.295C482.213 444.459 482 443.574 482 442.641ZM483.524 442.663C483.524 443.944 483.884 444.955 484.606 445.694C485.332 446.429 486.241 446.796 487.333 446.796C488.446 446.796 489.36 446.424 490.076 445.68C490.797 444.935 491.158 443.879 491.158 442.511C491.158 441.646 491.003 440.891 490.693 440.249C490.388 439.601 489.939 439.1 489.345 438.748C488.755 438.39 488.093 438.211 487.356 438.211C486.31 438.211 485.408 438.554 484.651 439.241C483.9 439.922 483.524 441.063 483.524 442.663Z" fill="#2D2D2D"/>
+<path d="M497.543 446.651L497.741 447.804C497.355 447.882 497.01 447.92 496.705 447.92C496.207 447.92 495.821 447.845 495.547 447.695C495.273 447.546 495.08 447.35 494.968 447.108C494.856 446.862 494.8 446.347 494.8 445.564V441.133H493.795V440.118H494.8V438.211L496.164 437.428V440.118H497.543V441.133H496.164V445.636C496.164 446.008 496.187 446.248 496.233 446.354C496.283 446.46 496.362 446.545 496.469 446.608C496.581 446.671 496.738 446.702 496.941 446.702C497.094 446.702 497.294 446.685 497.543 446.651Z" fill="#2D2D2D"/>
+<path d="M499.022 447.819V437.189H500.393V441.003C501.033 440.297 501.841 439.944 502.816 439.944C503.415 439.944 503.936 440.058 504.378 440.285C504.82 440.507 505.135 440.817 505.323 441.213C505.516 441.609 505.612 442.185 505.612 442.939V447.819H504.241V442.939C504.241 442.286 504.091 441.812 503.791 441.517C503.497 441.218 503.077 441.068 502.534 441.068C502.128 441.068 501.744 441.169 501.384 441.372C501.028 441.571 500.774 441.841 500.622 442.185C500.469 442.528 500.393 443.002 500.393 443.606V447.819H499.022Z" fill="#2D2D2D"/>
+<path d="M513.376 445.339L514.793 445.506C514.57 446.294 514.156 446.905 513.551 447.34C512.947 447.775 512.175 447.993 511.235 447.993C510.052 447.993 509.112 447.647 508.416 446.956C507.726 446.26 507.38 445.286 507.38 444.034C507.38 442.738 507.731 441.733 508.432 441.017C509.133 440.302 510.042 439.944 511.159 439.944C512.241 439.944 513.125 440.294 513.811 440.995C514.496 441.696 514.839 442.682 514.839 443.954C514.839 444.031 514.837 444.147 514.831 444.302H508.797C508.848 445.148 509.099 445.796 509.552 446.245C510.004 446.695 510.567 446.92 511.243 446.92C511.746 446.92 512.175 446.794 512.531 446.543C512.886 446.291 513.168 445.89 513.376 445.339ZM508.873 443.229H513.391C513.331 442.581 513.158 442.095 512.873 441.771C512.437 441.269 511.87 441.017 511.174 441.017C510.545 441.017 510.014 441.218 509.582 441.619C509.155 442.02 508.919 442.557 508.873 443.229Z" fill="#2D2D2D"/>
+<path d="M516.638 447.819V440.118H517.872V441.285C518.187 440.739 518.476 440.379 518.74 440.205C519.01 440.031 519.304 439.944 519.624 439.944C520.086 439.944 520.556 440.084 521.034 440.365L520.561 441.575C520.226 441.387 519.891 441.293 519.556 441.293C519.256 441.293 518.987 441.38 518.748 441.554C518.509 441.723 518.339 441.96 518.238 442.264C518.085 442.728 518.009 443.236 518.009 443.787V447.819H516.638Z" fill="#2D2D2D"/>
+<path d="M525.903 445.52L527.259 445.317C527.336 445.834 527.546 446.231 527.892 446.506C528.242 446.782 528.73 446.92 529.355 446.92C529.984 446.92 530.452 446.799 530.757 446.557C531.061 446.31 531.214 446.023 531.214 445.694C531.214 445.399 531.079 445.167 530.81 444.998C530.622 444.882 530.155 444.735 529.408 444.556C528.402 444.314 527.704 444.106 527.313 443.932C526.927 443.753 526.632 443.509 526.429 443.2C526.231 442.886 526.132 442.54 526.132 442.163C526.132 441.82 526.213 441.503 526.376 441.213C526.543 440.918 526.769 440.674 527.054 440.481C527.267 440.331 527.557 440.205 527.922 440.103C528.293 439.997 528.689 439.944 529.111 439.944C529.746 439.944 530.302 440.031 530.779 440.205C531.262 440.379 531.617 440.616 531.846 440.916C532.075 441.211 532.232 441.607 532.318 442.105L530.977 442.279C530.917 441.882 530.739 441.573 530.444 441.351C530.155 441.128 529.743 441.017 529.21 441.017C528.58 441.017 528.131 441.116 527.861 441.314C527.592 441.513 527.458 441.745 527.458 442.011C527.458 442.18 527.513 442.332 527.625 442.467C527.737 442.608 527.912 442.724 528.151 442.815C528.288 442.864 528.692 442.975 529.362 443.149C530.332 443.396 531.008 443.599 531.389 443.758C531.775 443.913 532.077 444.14 532.296 444.44C532.514 444.739 532.623 445.112 532.623 445.556C532.623 445.991 532.489 446.402 532.219 446.789C531.955 447.171 531.572 447.468 531.069 447.681C530.566 447.889 529.997 447.993 529.362 447.993C528.311 447.993 527.508 447.785 526.955 447.369C526.406 446.953 526.056 446.337 525.903 445.52Z" fill="#2D2D2D"/>
+<path d="M537.378 446.651L537.576 447.804C537.19 447.882 536.845 447.92 536.54 447.92C536.042 447.92 535.656 447.845 535.382 447.695C535.107 447.546 534.914 447.35 534.803 447.108C534.691 446.862 534.635 446.347 534.635 445.564V441.133H533.629V440.118H534.635V438.211L535.999 437.428V440.118H537.378V441.133H535.999V445.636C535.999 446.008 536.022 446.248 536.067 446.354C536.118 446.46 536.197 446.545 536.304 446.608C536.415 446.671 536.573 446.702 536.776 446.702C536.928 446.702 537.129 446.685 537.378 446.651Z" fill="#2D2D2D"/>
+<path d="M538.346 443.968C538.346 442.542 538.763 441.486 539.596 440.8C540.291 440.229 541.14 439.944 542.14 439.944C543.253 439.944 544.162 440.292 544.868 440.988C545.574 441.679 545.927 442.637 545.927 443.86C545.927 444.851 545.769 445.631 545.454 446.202C545.145 446.767 544.69 447.207 544.091 447.521C543.496 447.836 542.846 447.993 542.14 447.993C541.008 447.993 540.091 447.647 539.39 446.956C538.694 446.265 538.346 445.269 538.346 443.968ZM539.756 443.968C539.756 444.955 539.982 445.694 540.434 446.187C540.886 446.675 541.455 446.92 542.14 446.92C542.821 446.92 543.387 446.673 543.839 446.18C544.291 445.687 544.517 444.935 544.517 443.925C544.517 442.973 544.289 442.252 543.832 441.764C543.38 441.271 542.816 441.024 542.14 441.024C541.455 441.024 540.886 441.269 540.434 441.757C539.982 442.245 539.756 442.982 539.756 443.968Z" fill="#2D2D2D"/>
+<path d="M547.657 447.819V440.118H548.891V441.285C549.206 440.739 549.496 440.379 549.76 440.205C550.029 440.031 550.323 439.944 550.643 439.944C551.106 439.944 551.576 440.084 552.053 440.365L551.581 441.575C551.245 441.387 550.91 441.293 550.575 441.293C550.275 441.293 550.006 441.38 549.767 441.554C549.529 441.723 549.358 441.96 549.257 442.264C549.104 442.728 549.028 443.236 549.028 443.787V447.819H547.657Z" fill="#2D2D2D"/>
+<path d="M558.537 445.339L559.954 445.506C559.731 446.294 559.317 446.905 558.712 447.34C558.108 447.775 557.336 447.993 556.396 447.993C555.213 447.993 554.273 447.647 553.577 446.956C552.886 446.26 552.541 445.286 552.541 444.034C552.541 442.738 552.892 441.733 553.592 441.017C554.293 440.302 555.203 439.944 556.32 439.944C557.402 439.944 558.286 440.294 558.971 440.995C559.657 441.696 560 442.682 560 443.954C560 444.031 559.997 444.147 559.992 444.302H553.958C554.009 445.148 554.26 445.796 554.712 446.245C555.165 446.695 555.728 446.92 556.404 446.92C556.907 446.92 557.336 446.794 557.691 446.543C558.047 446.291 558.329 445.89 558.537 445.339ZM554.034 443.229H558.552C558.491 442.581 558.319 442.095 558.034 441.771C557.598 441.269 557.031 441.017 556.335 441.017C555.705 441.017 555.175 441.218 554.743 441.619C554.316 442.02 554.08 442.557 554.034 443.229Z" fill="#2D2D2D"/>
+<path d="M350 448.148V437.194H351.517L357.388 445.795V437.194H358.806V448.148H357.289L351.418 439.54V448.148H350Z" fill="#2D2D2D"/>
+<path d="M360.743 444.181C360.743 442.711 361.159 441.623 361.993 440.915C362.689 440.328 363.538 440.034 364.539 440.034C365.653 440.034 366.562 440.392 367.269 441.11C367.975 441.822 368.329 442.808 368.329 444.068C368.329 445.09 368.171 445.894 367.856 446.482C367.546 447.065 367.091 447.518 366.491 447.842C365.896 448.166 365.246 448.328 364.539 448.328C363.406 448.328 362.489 447.971 361.787 447.259C361.091 446.547 360.743 445.521 360.743 444.181ZM362.153 444.181C362.153 445.197 362.379 445.959 362.832 446.467C363.284 446.97 363.853 447.222 364.539 447.222C365.22 447.222 365.787 446.968 366.24 446.46C366.692 445.951 366.918 445.177 366.918 444.136C366.918 443.154 366.689 442.412 366.232 441.909C365.78 441.401 365.215 441.147 364.539 441.147C363.853 441.147 363.284 441.399 362.832 441.902C362.379 442.405 362.153 443.164 362.153 444.181Z" fill="#2D2D2D"/>
+<path d="M369.747 444.629L371.142 444.509C371.208 445.057 371.361 445.508 371.6 445.862C371.844 446.21 372.22 446.494 372.728 446.714C373.236 446.928 373.808 447.035 374.443 447.035C375.008 447.035 375.506 446.953 375.938 446.788C376.37 446.624 376.69 446.4 376.898 446.116C377.112 445.827 377.219 445.513 377.219 445.174C377.219 444.831 377.117 444.532 376.914 444.278C376.71 444.019 376.375 443.802 375.907 443.628C375.607 443.513 374.944 443.336 373.917 443.097C372.891 442.853 372.172 442.624 371.76 442.41C371.226 442.136 370.827 441.797 370.563 441.394C370.304 440.985 370.174 440.529 370.174 440.026C370.174 439.473 370.334 438.958 370.654 438.479C370.975 437.996 371.442 437.63 372.057 437.381C372.672 437.132 373.356 437.007 374.108 437.007C374.936 437.007 375.666 437.139 376.296 437.403C376.931 437.663 377.419 438.046 377.76 438.554C378.1 439.062 378.283 439.638 378.309 440.28L376.891 440.385C376.815 439.692 376.555 439.169 376.113 438.816C375.676 438.462 375.028 438.285 374.169 438.285C373.274 438.285 372.621 438.447 372.21 438.771C371.803 439.09 371.6 439.476 371.6 439.929C371.6 440.323 371.745 440.646 372.034 440.9C372.319 441.154 373.061 441.416 374.26 441.685C375.465 441.949 376.291 442.181 376.738 442.38C377.389 442.674 377.869 443.047 378.179 443.501C378.489 443.949 378.644 444.467 378.644 445.055C378.644 445.638 378.474 446.188 378.133 446.706C377.793 447.219 377.302 447.62 376.662 447.909C376.027 448.193 375.31 448.335 374.512 448.335C373.501 448.335 372.652 448.191 371.966 447.902C371.285 447.613 370.748 447.179 370.357 446.601C369.971 446.019 369.767 445.361 369.747 444.629Z" fill="#2D2D2D"/>
+<path d="M389.265 446.975C389.951 447.438 390.584 447.777 391.163 447.991L390.729 449C389.926 448.716 389.125 448.268 388.327 447.655C387.499 448.108 386.584 448.335 385.583 448.335C384.571 448.335 383.654 448.096 382.83 447.618C382.007 447.139 381.372 446.467 380.924 445.6C380.482 444.733 380.261 443.757 380.261 442.671C380.261 441.59 380.485 440.606 380.932 439.72C381.379 438.833 382.015 438.158 382.838 437.695C383.666 437.232 384.591 437 385.613 437C386.645 437 387.575 437.242 388.403 437.725C389.232 438.203 389.862 438.875 390.294 439.742C390.731 440.604 390.95 441.578 390.95 442.664C390.95 443.565 390.81 444.377 390.531 445.1C390.251 445.817 389.829 446.442 389.265 446.975ZM386.01 445.122C386.863 445.356 387.567 445.705 388.121 446.168C388.99 445.391 389.425 444.223 389.425 442.664C389.425 441.777 389.27 441.002 388.96 440.34C388.655 439.677 388.205 439.164 387.611 438.801C387.021 438.432 386.358 438.248 385.621 438.248C384.518 438.248 383.603 438.619 382.876 439.361C382.149 440.098 381.786 441.202 381.786 442.671C381.786 444.096 382.144 445.189 382.861 445.951C383.583 446.714 384.503 447.095 385.621 447.095C386.149 447.095 386.647 446.998 387.115 446.803C386.652 446.509 386.165 446.3 385.651 446.176L386.01 445.122Z" fill="#2D2D2D"/>
+<path d="M393.016 448.148V437.194H394.495V446.856H400V448.148H393.016Z" fill="#2D2D2D"/>
+<path d="M208 447.958V437H209.493V441.5H215.356V437H216.848V447.958H215.356V442.793H209.493V447.958H208Z" fill="#2D2D2D"/>
+<path d="M224.628 446.979C224.115 447.402 223.62 447.701 223.143 447.876C222.671 448.05 222.163 448.137 221.619 448.137C220.721 448.137 220.032 447.925 219.549 447.502C219.067 447.073 218.826 446.528 218.826 445.865C218.826 445.476 218.916 445.122 219.095 444.804C219.28 444.48 219.519 444.221 219.811 444.026C220.109 443.832 220.442 443.685 220.811 443.585C221.083 443.515 221.493 443.448 222.042 443.383C223.161 443.254 223.984 443.099 224.512 442.92C224.517 442.736 224.52 442.618 224.52 442.569C224.52 442.02 224.389 441.634 224.127 441.41C223.773 441.106 223.248 440.954 222.55 440.954C221.899 440.954 221.417 441.066 221.104 441.29C220.796 441.51 220.568 441.901 220.419 442.464L219.065 442.285C219.188 441.721 219.39 441.268 219.673 440.924C219.955 440.575 220.362 440.309 220.896 440.124C221.429 439.935 222.047 439.84 222.75 439.84C223.448 439.84 224.015 439.92 224.451 440.08C224.887 440.239 225.207 440.441 225.412 440.685C225.618 440.924 225.761 441.228 225.843 441.597C225.889 441.826 225.912 442.24 225.912 442.838V444.632C225.912 445.882 225.941 446.675 225.997 447.009C226.059 447.337 226.177 447.654 226.351 447.958H224.905C224.761 447.679 224.669 447.352 224.628 446.979ZM224.512 443.974C224.009 444.173 223.255 444.343 222.25 444.482C221.681 444.562 221.278 444.652 221.042 444.751C220.806 444.851 220.624 444.998 220.496 445.192C220.368 445.382 220.303 445.593 220.303 445.828C220.303 446.186 220.442 446.485 220.719 446.725C221.001 446.964 221.411 447.083 221.95 447.083C222.483 447.083 222.958 446.971 223.373 446.747C223.789 446.518 224.094 446.206 224.289 445.813C224.438 445.509 224.512 445.06 224.512 444.467V443.974Z" fill="#2D2D2D"/>
+<path d="M233.499 447.958V446.956C232.981 447.744 232.22 448.137 231.214 448.137C230.563 448.137 229.963 447.963 229.414 447.614C228.87 447.265 228.447 446.779 228.144 446.156C227.847 445.529 227.698 444.809 227.698 443.996C227.698 443.204 227.834 442.486 228.106 441.844C228.378 441.196 228.785 440.7 229.329 440.356C229.873 440.012 230.481 439.84 231.153 439.84C231.645 439.84 232.084 439.943 232.468 440.147C232.853 440.346 233.166 440.608 233.407 440.932V437H234.784V447.958H233.499ZM229.121 443.996C229.121 445.013 229.342 445.773 229.783 446.276C230.224 446.779 230.745 447.031 231.345 447.031C231.95 447.031 232.463 446.792 232.884 446.313C233.31 445.83 233.522 445.095 233.522 444.108C233.522 443.022 233.307 442.225 232.876 441.716C232.445 441.208 231.914 440.954 231.283 440.954C230.668 440.954 230.152 441.198 229.737 441.687C229.327 442.175 229.121 442.945 229.121 443.996Z" fill="#2D2D2D"/>
+<path d="M236.585 443.989C236.585 442.519 237.006 441.43 237.847 440.722C238.55 440.134 239.406 439.84 240.417 439.84C241.54 439.84 242.458 440.199 243.171 440.917C243.884 441.629 244.241 442.616 244.241 443.877C244.241 444.898 244.082 445.703 243.764 446.291C243.451 446.874 242.992 447.327 242.387 447.651C241.786 447.975 241.13 448.137 240.417 448.137C239.273 448.137 238.347 447.781 237.639 447.068C236.937 446.356 236.585 445.329 236.585 443.989ZM238.009 443.989C238.009 445.005 238.237 445.768 238.693 446.276C239.15 446.779 239.724 447.031 240.417 447.031C241.104 447.031 241.676 446.777 242.133 446.269C242.589 445.76 242.817 444.985 242.817 443.944C242.817 442.962 242.587 442.22 242.125 441.716C241.669 441.208 241.099 440.954 240.417 440.954C239.724 440.954 239.15 441.206 238.693 441.709C238.237 442.212 238.009 442.972 238.009 443.989Z" fill="#2D2D2D"/>
+<path d="M245.488 443.989C245.488 442.519 245.908 441.43 246.75 440.722C247.452 440.134 248.309 439.84 249.32 439.84C250.443 439.84 251.361 440.199 252.074 440.917C252.787 441.629 253.144 442.616 253.144 443.877C253.144 444.898 252.985 445.703 252.667 446.291C252.354 446.874 251.895 447.327 251.289 447.651C250.689 447.975 250.033 448.137 249.32 448.137C248.176 448.137 247.25 447.781 246.542 447.068C245.839 446.356 245.488 445.329 245.488 443.989ZM246.911 443.989C246.911 445.005 247.14 445.768 247.596 446.276C248.053 446.779 248.627 447.031 249.32 447.031C250.007 447.031 250.579 446.777 251.035 446.269C251.492 445.76 251.72 444.985 251.72 443.944C251.72 442.962 251.489 442.22 251.028 441.716C250.571 441.208 250.002 440.954 249.32 440.954C248.627 440.954 248.053 441.206 247.596 441.709C247.14 442.212 246.911 442.972 246.911 443.989Z" fill="#2D2D2D"/>
+<path d="M254.906 451V440.02H256.168V441.051C256.465 440.648 256.801 440.346 257.176 440.147C257.55 439.943 258.004 439.84 258.538 439.84C259.235 439.84 259.851 440.015 260.384 440.364C260.918 440.712 261.32 441.206 261.592 441.844C261.864 442.476 262 443.172 262 443.929C262 444.741 261.849 445.474 261.546 446.127C261.249 446.774 260.813 447.273 260.238 447.621C259.669 447.965 259.069 448.137 258.438 448.137C257.976 448.137 257.56 448.043 257.191 447.853C256.827 447.664 256.527 447.425 256.291 447.136V451H254.906ZM256.16 444.034C256.16 445.055 256.373 445.81 256.799 446.298C257.225 446.787 257.74 447.031 258.345 447.031C258.961 447.031 259.487 446.779 259.923 446.276C260.364 445.768 260.584 444.983 260.584 443.922C260.584 442.91 260.369 442.153 259.938 441.649C259.512 441.146 259.002 440.894 258.407 440.894C257.817 440.894 257.294 441.163 256.837 441.702C256.386 442.235 256.16 443.012 256.16 444.034Z" fill="#2D2D2D"/>
+<path d="M68 447.819V437.181H72.9665C73.9649 437.181 74.7238 437.278 75.2434 437.472C75.763 437.66 76.1781 437.996 76.4888 438.48C76.7996 438.964 76.9549 439.498 76.9549 440.084C76.9549 440.838 76.6977 441.474 76.1832 441.992C75.6687 442.51 74.8741 442.839 73.7993 442.979C74.1915 443.158 74.4895 443.334 74.6933 443.509C75.1263 443.886 75.5363 444.358 75.9234 444.923L77.8718 447.819H76.0075L74.5252 445.606C74.0922 444.967 73.7356 444.478 73.4555 444.14C73.1753 443.801 72.9232 443.564 72.699 443.429C72.48 443.293 72.2559 443.199 72.0267 443.146C71.8586 443.112 71.5835 443.095 71.2015 443.095H69.4823V447.819H68ZM69.4823 441.876H72.6685C73.346 441.876 73.8757 441.811 74.2578 441.68C74.6398 441.545 74.9301 441.332 75.1288 441.042C75.3275 440.746 75.4268 440.427 75.4268 440.084C75.4268 439.581 75.2332 439.167 74.8461 438.843C74.4641 438.519 73.8579 438.357 73.0276 438.357H69.4823V441.876Z" fill="#2D2D2D"/>
+<path d="M79.4158 447.819V437.181H83.2743C84.1454 437.181 84.8101 437.232 85.2686 437.334C85.9104 437.474 86.458 437.728 86.9113 438.096C87.5022 438.57 87.9428 439.177 88.2332 439.917C88.5286 440.652 88.6763 441.494 88.6763 442.442C88.6763 443.25 88.577 443.966 88.3783 444.59C88.1797 445.214 87.925 445.731 87.6143 446.142C87.3035 446.549 86.9622 446.87 86.5904 447.108C86.2236 447.34 85.7779 447.516 85.2533 447.637C84.7337 447.758 84.1352 447.819 83.4577 447.819H79.4158ZM80.8981 446.563H83.2896C84.0282 446.563 84.6064 446.498 85.0241 446.367C85.4468 446.237 85.783 446.053 86.0326 445.816C86.3841 445.482 86.6566 445.035 86.8502 444.474C87.0488 443.908 87.1482 443.223 87.1482 442.42C87.1482 441.308 86.9546 440.454 86.5675 439.859C86.1854 439.259 85.7194 438.858 85.1692 438.654C84.7719 438.509 84.1326 438.437 83.2514 438.437H80.8981V446.563Z" fill="#2D2D2D"/>
+<path d="M90.7933 447.819V437.181H94.9957C95.8515 437.181 96.5366 437.29 97.0511 437.508C97.5706 437.721 97.9756 438.052 98.2659 438.502C98.5614 438.947 98.7091 439.414 98.7091 439.902C98.7091 440.357 98.5792 440.785 98.3194 441.187C98.0596 441.588 97.6674 441.912 97.1428 442.159C97.8202 442.348 98.3398 442.669 98.7015 443.124C99.0682 443.579 99.2516 444.116 99.2516 444.735C99.2516 445.233 99.1395 445.697 98.9154 446.128C98.6964 446.554 98.4239 446.883 98.0978 447.115C97.7718 447.347 97.3618 447.524 96.8677 447.644C96.3787 447.761 95.7776 447.819 95.0645 447.819H90.7933ZM92.2756 441.651H94.6977C95.3548 441.651 95.826 441.61 96.1113 441.528C96.4882 441.421 96.7709 441.245 96.9594 440.998C97.1529 440.751 97.2497 440.442 97.2497 440.069C97.2497 439.716 97.1606 439.407 96.9823 439.141C96.804 438.87 96.5493 438.686 96.2182 438.589C95.8871 438.487 95.3192 438.437 94.5143 438.437H92.2756V441.651ZM92.2756 446.563H95.0645C95.5433 446.563 95.8795 446.546 96.0731 446.513C96.4143 446.454 96.6996 446.358 96.9288 446.222C97.158 446.087 97.3465 445.891 97.4942 445.635C97.642 445.373 97.7158 445.073 97.7158 444.735C97.7158 444.338 97.6088 443.995 97.3949 443.704C97.181 443.409 96.883 443.204 96.5009 443.088C96.124 442.967 95.579 442.906 94.8658 442.906H92.2756V446.563Z" fill="#2D2D2D"/>
+<path d="M101.376 447.819V437.181H103.607L106.259 444.713C106.503 445.414 106.681 445.939 106.794 446.288C106.921 445.901 107.12 445.332 107.389 444.582L110.071 437.181H112.066V447.819H110.637V438.916L107.382 447.819H106.045L102.805 438.763V447.819H101.376Z" fill="#2D2D2D"/>
+<path d="M114.083 444.401L115.482 444.285C115.548 444.817 115.701 445.255 115.94 445.598C116.184 445.937 116.561 446.213 117.071 446.425C117.58 446.633 118.153 446.737 118.79 446.737C119.355 446.737 119.855 446.658 120.288 446.498C120.721 446.338 121.041 446.121 121.25 445.845C121.464 445.564 121.571 445.26 121.571 444.931C121.571 444.597 121.469 444.307 121.266 444.06C121.062 443.808 120.726 443.598 120.257 443.429C119.956 443.318 119.292 443.146 118.263 442.914C117.234 442.677 116.513 442.454 116.1 442.246C115.566 441.98 115.166 441.651 114.901 441.259C114.641 440.863 114.511 440.42 114.511 439.931C114.511 439.394 114.672 438.894 114.993 438.429C115.313 437.96 115.782 437.605 116.398 437.363C117.015 437.121 117.7 437 118.454 437C119.284 437 120.015 437.128 120.647 437.385C121.283 437.636 121.772 438.009 122.114 438.502C122.455 438.995 122.638 439.554 122.664 440.178L121.243 440.28C121.166 439.607 120.906 439.099 120.463 438.756C120.025 438.412 119.376 438.241 118.515 438.241C117.618 438.241 116.964 438.398 116.551 438.712C116.144 439.022 115.94 439.397 115.94 439.837C115.94 440.219 116.085 440.534 116.375 440.78C116.661 441.027 117.404 441.281 118.607 441.542C119.814 441.799 120.642 442.024 121.09 442.217C121.742 442.502 122.223 442.865 122.534 443.305C122.845 443.741 123 444.244 123 444.815C123 445.381 122.829 445.915 122.488 446.418C122.147 446.916 121.655 447.306 121.013 447.586C120.377 447.862 119.658 448 118.859 448C117.845 448 116.994 447.86 116.307 447.579C115.624 447.299 115.087 446.878 114.695 446.317C114.307 445.751 114.104 445.112 114.083 444.401Z" fill="#2D2D2D"/>
+<path d="M47 55.8021V44.1979H50.8445C51.7124 44.1979 52.3747 44.2533 52.8315 44.3641C53.471 44.5172 54.0166 44.7942 54.4683 45.1953C55.057 45.7124 55.4961 46.3747 55.7853 47.1821C56.0797 47.9842 56.2269 48.9024 56.2269 49.9367C56.2269 50.8179 56.1279 51.5989 55.93 52.2797C55.7321 52.9604 55.4783 53.5251 55.1687 53.9736C54.8591 54.4169 54.5191 54.7678 54.1486 55.0264C53.7831 55.2797 53.3391 55.4723 52.8163 55.6042C52.2986 55.7361 51.7023 55.8021 51.0273 55.8021H47ZM48.4769 54.4327H50.8598C51.5957 54.4327 52.1717 54.3615 52.5879 54.219C53.0092 54.0765 53.3441 53.876 53.5928 53.6174C53.943 53.2533 54.2145 52.7652 54.4074 52.153C54.6053 51.5356 54.7043 50.7889 54.7043 49.9129C54.7043 48.6992 54.5114 47.7678 54.1257 47.1187C53.7451 46.4644 53.2807 46.0264 52.7326 45.8047C52.3367 45.6464 51.6997 45.5673 50.8217 45.5673H48.4769V54.4327Z" fill="#2D2D2D"/>
+<path d="M63.4978 54.7652C62.9902 55.2137 62.5005 55.5303 62.0285 55.715C61.5615 55.8997 61.0591 55.9921 60.5211 55.9921C59.6329 55.9921 58.9503 55.7678 58.4732 55.3193C57.9961 54.8654 57.7576 54.2876 57.7576 53.5858C57.7576 53.1741 57.8464 52.7995 58.0241 52.4617C58.2068 52.1187 58.4428 51.8443 58.7321 51.6385C59.0264 51.4327 59.3563 51.277 59.7218 51.1715C59.9907 51.0976 60.3968 51.0264 60.9398 50.9578C62.0462 50.8206 62.8608 50.657 63.3836 50.467C63.3887 50.2718 63.3912 50.1478 63.3912 50.095C63.3912 49.5145 63.2618 49.1055 63.0029 48.8681C62.6527 48.5462 62.1325 48.3852 61.4423 48.3852C60.7977 48.3852 60.3206 48.504 60.011 48.7414C59.7065 48.9736 59.4807 49.3879 59.3335 49.9842L57.9936 49.7942C58.1154 49.1979 58.3159 48.7177 58.595 48.3536C58.8742 47.9842 59.2777 47.7018 59.8055 47.5066C60.3333 47.3061 60.9449 47.2058 61.6402 47.2058C62.3305 47.2058 62.8913 47.2902 63.3227 47.4591C63.7541 47.628 64.0713 47.8417 64.2743 48.1003C64.4773 48.3536 64.6194 48.6755 64.7006 49.066C64.7463 49.3087 64.7691 49.7467 64.7691 50.3799V52.2797C64.7691 53.6042 64.7971 54.4433 64.8529 54.7968C64.9138 55.1451 65.0305 55.4802 65.2031 55.8021H63.7718C63.6297 55.5066 63.5384 55.161 63.4978 54.7652ZM63.3836 51.5831C62.8862 51.7942 62.1401 51.9736 61.1454 52.1214C60.582 52.2058 60.1836 52.3008 59.9501 52.4063C59.7167 52.5119 59.5365 52.6675 59.4096 52.8734C59.2827 53.0739 59.2193 53.2982 59.2193 53.5462C59.2193 53.9261 59.3563 54.2427 59.6304 54.496C59.9095 54.7493 60.3156 54.876 60.8485 54.876C61.3763 54.876 61.8458 54.7573 62.2569 54.5198C62.668 54.277 62.9699 53.9472 63.1628 53.5303C63.31 53.2084 63.3836 52.7335 63.3836 52.1055V51.5831Z" fill="#2D2D2D"/>
+<path d="M70.0226 54.5277L70.2205 55.7863C69.8348 55.8707 69.4897 55.9129 69.1852 55.9129C68.6878 55.9129 68.3021 55.8311 68.028 55.6675C67.7539 55.504 67.5611 55.2902 67.4494 55.0264C67.3377 54.7573 67.2819 54.1953 67.2819 53.3404V48.504H66.277V47.3958H67.2819V45.314L68.6446 44.4591V47.3958H70.0226V48.504H68.6446V53.4195C68.6446 53.8259 68.6675 54.0871 68.7132 54.2032C68.7639 54.3193 68.8426 54.4116 68.9492 54.4802C69.0608 54.5488 69.2181 54.5831 69.4212 54.5831C69.5734 54.5831 69.7739 54.5646 70.0226 54.5277Z" fill="#2D2D2D"/>
+<path d="M76.7758 54.7652C76.2682 55.2137 75.7785 55.5303 75.3065 55.715C74.8396 55.8997 74.3371 55.9921 73.7991 55.9921C72.9109 55.9921 72.2283 55.7678 71.7512 55.3193C71.2742 54.8654 71.0356 54.2876 71.0356 53.5858C71.0356 53.1741 71.1244 52.7995 71.3021 52.4617C71.4848 52.1187 71.7208 51.8443 72.0101 51.6385C72.3044 51.4327 72.6343 51.277 72.9998 51.1715C73.2687 51.0976 73.6748 51.0264 74.2178 50.9578C75.3242 50.8206 76.1388 50.657 76.6616 50.467C76.6667 50.2718 76.6692 50.1478 76.6692 50.095C76.6692 49.5145 76.5398 49.1055 76.2809 48.8681C75.9307 48.5462 75.4105 48.3852 74.7203 48.3852C74.0757 48.3852 73.5986 48.504 73.289 48.7414C72.9845 48.9736 72.7587 49.3879 72.6115 49.9842L71.2716 49.7942C71.3934 49.1979 71.5939 48.7177 71.873 48.3536C72.1522 47.9842 72.5557 47.7018 73.0835 47.5066C73.6113 47.3061 74.2229 47.2058 74.9182 47.2058C75.6085 47.2058 76.1693 47.2902 76.6007 47.4591C77.0321 47.628 77.3493 47.8417 77.5523 48.1003C77.7553 48.3536 77.8974 48.6755 77.9786 49.066C78.0243 49.3087 78.0471 49.7467 78.0471 50.3799V52.2797C78.0471 53.6042 78.0751 54.4433 78.1309 54.7968C78.1918 55.1451 78.3085 55.4802 78.4811 55.8021H77.0498C76.9077 55.5066 76.8164 55.161 76.7758 54.7652ZM76.6616 51.5831C76.1642 51.7942 75.4181 51.9736 74.4234 52.1214C73.86 52.2058 73.4616 52.3008 73.2281 52.4063C72.9947 52.5119 72.8145 52.6675 72.6876 52.8734C72.5607 53.0739 72.4973 53.2982 72.4973 53.5462C72.4973 53.9261 72.6343 54.2427 72.9084 54.496C73.1875 54.7493 73.5936 54.876 74.1265 54.876C74.6543 54.876 75.1238 54.7573 75.5349 54.5198C75.946 54.277 76.2479 53.9472 76.4408 53.5303C76.588 53.2084 76.6616 52.7335 76.6616 52.1055V51.5831Z" fill="#2D2D2D"/>
+<path d="M84.4506 52.0739L85.8438 51.9472C85.9098 52.5277 86.0621 53.0053 86.3006 53.3799C86.5442 53.7493 86.9198 54.0501 87.4273 54.2823C87.9348 54.5092 88.5058 54.6227 89.1402 54.6227C89.7036 54.6227 90.201 54.5356 90.6324 54.3615C91.0638 54.1873 91.3835 53.9499 91.5916 53.6491C91.8048 53.343 91.9113 53.0106 91.9113 52.6517C91.9113 52.2876 91.8098 51.971 91.6068 51.7018C91.4038 51.4274 91.0688 51.1979 90.6019 51.0132C90.3025 50.8918 89.6401 50.7045 88.6149 50.4512C87.5897 50.1926 86.8716 49.9499 86.4605 49.723C85.9276 49.4327 85.5292 49.0739 85.2652 48.6464C85.0064 48.2137 84.877 47.7309 84.877 47.1979C84.877 46.6121 85.0368 46.066 85.3566 45.5594C85.6763 45.0475 86.1433 44.6596 86.7574 44.3958C87.3715 44.1319 88.0541 44 88.8053 44C89.6325 44 90.3608 44.1398 90.9902 44.4195C91.6246 44.6939 92.1118 45.1003 92.4519 45.6385C92.7919 46.1768 92.9746 46.7863 93 47.467L91.584 47.5778C91.5079 46.8443 91.249 46.2902 90.8075 45.9156C90.371 45.5409 89.7239 45.3536 88.8662 45.3536C87.9729 45.3536 87.3207 45.5251 86.9096 45.8681C86.5036 46.2058 86.3006 46.6148 86.3006 47.095C86.3006 47.5119 86.4452 47.8549 86.7345 48.124C87.0188 48.3931 87.7597 48.6702 88.9575 48.9551C90.1604 49.2348 90.9851 49.4802 91.4317 49.6913C92.0814 50.0026 92.561 50.3984 92.8706 50.8786C93.1802 51.3536 93.335 51.9024 93.335 52.5251C93.335 53.1425 93.1649 53.7256 92.8249 54.2744C92.4849 54.8179 91.9951 55.2427 91.3556 55.5488C90.7212 55.8496 90.0056 56 89.2087 56C88.1988 56 87.3512 55.847 86.666 55.5409C85.9859 55.2348 85.4505 54.7757 85.0597 54.1636C84.674 53.5462 84.471 52.8496 84.4506 52.0739Z" fill="#2D2D2D"/>
+<path d="M98.2991 54.5277L98.4971 55.7863C98.1113 55.8707 97.7662 55.9129 97.4617 55.9129C96.9643 55.9129 96.5786 55.8311 96.3045 55.6675C96.0305 55.504 95.8376 55.2902 95.7259 55.0264C95.6143 54.7573 95.5585 54.1953 95.5585 53.3404V48.504H94.5535V47.3958H95.5585V45.314L96.9212 44.4591V47.3958H98.2991V48.504H96.9212V53.4195C96.9212 53.8259 96.944 54.0871 96.9897 54.2032C97.0404 54.3193 97.1191 54.4116 97.2257 54.4802C97.3373 54.5488 97.4947 54.5831 97.6977 54.5831C97.85 54.5831 98.0504 54.5646 98.2991 54.5277Z" fill="#2D2D2D"/>
+<path d="M99.7613 55.8021V47.3958H100.995V48.6702C101.309 48.0739 101.599 47.6807 101.862 47.4908C102.131 47.3008 102.426 47.2058 102.746 47.2058C103.207 47.2058 103.677 47.3588 104.154 47.6649L103.682 48.9868C103.347 48.781 103.012 48.6781 102.677 48.6781C102.378 48.6781 102.109 48.7731 101.87 48.9631C101.632 49.1478 101.462 49.4063 101.36 49.7388C101.208 50.2454 101.132 50.7995 101.132 51.4011V55.8021H99.7613Z" fill="#2D2D2D"/>
+<path d="M110.633 53.095L112.049 53.277C111.826 54.1372 111.412 54.8047 110.808 55.2797C110.204 55.7546 109.433 55.9921 108.494 55.9921C107.311 55.9921 106.372 55.6148 105.677 54.8602C104.987 54.1003 104.642 53.0369 104.642 51.6702C104.642 50.2559 104.992 49.1583 105.692 48.3773C106.393 47.5963 107.301 47.2058 108.418 47.2058C109.499 47.2058 110.382 47.5884 111.067 48.3536C111.752 49.1187 112.095 50.1953 112.095 51.5831C112.095 51.6675 112.092 51.7942 112.087 51.9631H106.058C106.108 52.8865 106.36 53.5937 106.811 54.0844C107.263 54.5752 107.826 54.8206 108.501 54.8206C109.004 54.8206 109.433 54.6834 109.788 54.409C110.143 54.1346 110.425 53.6966 110.633 53.095ZM106.134 50.7916H110.648C110.587 50.0844 110.415 49.5541 110.131 49.2005C109.694 48.6517 109.128 48.3773 108.433 48.3773C107.804 48.3773 107.273 48.5963 106.842 49.0343C106.416 49.4723 106.18 50.058 106.134 50.7916Z" fill="#2D2D2D"/>
+<path d="M119.183 54.7652C118.675 55.2137 118.186 55.5303 117.714 55.715C117.247 55.8997 116.744 55.9921 116.206 55.9921C115.318 55.9921 114.635 55.7678 114.158 55.3193C113.681 54.8654 113.443 54.2876 113.443 53.5858C113.443 53.1741 113.532 52.7995 113.709 52.4617C113.892 52.1187 114.128 51.8443 114.417 51.6385C114.712 51.4327 115.042 51.277 115.407 51.1715C115.676 51.0976 116.082 51.0264 116.625 50.9578C117.731 50.8206 118.546 50.657 119.069 50.467C119.074 50.2718 119.076 50.1478 119.076 50.095C119.076 49.5145 118.947 49.1055 118.688 48.8681C118.338 48.5462 117.818 48.3852 117.127 48.3852C116.483 48.3852 116.006 48.504 115.696 48.7414C115.392 48.9736 115.166 49.3879 115.019 49.9842L113.679 49.7942C113.801 49.1979 114.001 48.7177 114.28 48.3536C114.559 47.9842 114.963 47.7018 115.491 47.5066C116.019 47.3061 116.63 47.2058 117.325 47.2058C118.016 47.2058 118.576 47.2902 119.008 47.4591C119.439 47.628 119.756 47.8417 119.959 48.1003C120.163 48.3536 120.305 48.6755 120.386 49.066C120.431 49.3087 120.454 49.7467 120.454 50.3799V52.2797C120.454 53.6042 120.482 54.4433 120.538 54.7968C120.599 55.1451 120.716 55.4802 120.888 55.8021H119.457C119.315 55.5066 119.224 55.161 119.183 54.7652ZM119.069 51.5831C118.571 51.7942 117.825 51.9736 116.831 52.1214C116.267 52.2058 115.869 52.3008 115.635 52.4063C115.402 52.5119 115.222 52.6675 115.095 52.8734C114.968 53.0739 114.904 53.2982 114.904 53.5462C114.904 53.9261 115.042 54.2427 115.316 54.496C115.595 54.7493 116.001 54.876 116.534 54.876C117.061 54.876 117.531 54.7573 117.942 54.5198C118.353 54.277 118.655 53.9472 118.848 53.5303C118.995 53.2084 119.069 52.7335 119.069 52.1055V51.5831Z" fill="#2D2D2D"/>
+<path d="M122.716 55.8021V47.3958H123.942V48.5752C124.195 48.1636 124.533 47.8338 124.954 47.5858C125.375 47.3325 125.855 47.2058 126.393 47.2058C126.992 47.2058 127.482 47.3351 127.862 47.5937C128.248 47.8522 128.519 48.2137 128.677 48.6781C129.316 47.6966 130.149 47.2058 131.174 47.2058C131.976 47.2058 132.592 47.438 133.024 47.9024C133.455 48.3615 133.671 49.0712 133.671 50.0317V55.8021H132.308V50.5066C132.308 49.9367 132.263 49.5277 132.171 49.2797C132.085 49.0264 131.925 48.8232 131.692 48.6702C131.458 48.5172 131.184 48.4406 130.869 48.4406C130.301 48.4406 129.829 48.6385 129.453 49.0343C129.078 49.4248 128.89 50.0528 128.89 50.9182V55.8021H127.52V50.3404C127.52 49.7071 127.408 49.2322 127.185 48.9156C126.961 48.5989 126.596 48.4406 126.088 48.4406C125.703 48.4406 125.345 48.5462 125.015 48.7573C124.69 48.9683 124.454 49.277 124.307 49.6834C124.16 50.0897 124.086 50.6755 124.086 51.4406V55.8021H122.716Z" fill="#2D2D2D"/>
+<path d="M135.285 53.2929L136.64 53.0712C136.717 53.6359 136.927 54.0686 137.272 54.3694C137.623 54.6702 138.11 54.8206 138.734 54.8206C139.363 54.8206 139.83 54.6887 140.135 54.4248C140.439 54.1557 140.592 53.8417 140.592 53.4829C140.592 53.161 140.457 52.9077 140.188 52.723C140 52.5963 139.533 52.4354 138.787 52.2401C137.782 51.9763 137.085 51.7493 136.694 51.5594C136.308 51.3641 136.014 51.0976 135.811 50.7599C135.613 50.4169 135.514 50.0396 135.514 49.628C135.514 49.2533 135.595 48.9077 135.757 48.591C135.925 48.2691 136.151 48.0026 136.435 47.7916C136.648 47.628 136.937 47.4908 137.303 47.3799C137.673 47.2639 138.069 47.2058 138.49 47.2058C139.125 47.2058 139.681 47.3008 140.158 47.4908C140.64 47.6807 140.995 47.9393 141.223 48.2665C141.452 48.5884 141.609 49.0211 141.695 49.5646L140.356 49.7546C140.295 49.3219 140.117 48.9842 139.823 48.7414C139.533 48.4987 139.122 48.3773 138.589 48.3773C137.96 48.3773 137.511 48.4855 137.242 48.7018C136.973 48.9182 136.838 49.1715 136.838 49.4617C136.838 49.6464 136.894 49.8127 137.006 49.9604C137.118 50.1135 137.293 50.2401 137.531 50.3404C137.668 50.3931 138.072 50.5145 138.742 50.7045C139.711 50.9736 140.386 51.1953 140.767 51.3694C141.152 51.5383 141.454 51.7863 141.673 52.1135C141.891 52.4406 142 52.847 142 53.3325C142 53.8074 141.866 54.2559 141.597 54.6781C141.333 55.095 140.949 55.4195 140.447 55.6517C139.945 55.8786 139.376 55.9921 138.742 55.9921C137.691 55.9921 136.889 55.7652 136.336 55.3113C135.788 54.8575 135.438 54.1847 135.285 53.2929Z" fill="#2D2D2D"/>
+<path d="M218 55.8228L222.319 45H223.923L228.526 55.8228H226.831L225.519 52.545H220.816L219.58 55.8228H218ZM221.245 51.3785H225.058L223.885 48.3812C223.527 47.4707 223.261 46.7226 223.087 46.1369C222.944 46.8309 222.741 47.5199 222.481 48.204L221.245 51.3785Z" fill="#2D2D2D"/>
+<path d="M229.847 55.8228V45H234.089C234.836 45 235.406 45.0345 235.8 45.1034C236.353 45.1919 236.815 45.3617 237.189 45.6128C237.562 45.8588 237.861 46.2058 238.087 46.6537C238.317 47.1016 238.432 47.5937 238.432 48.1302C238.432 49.0506 238.127 49.8306 237.519 50.4705C236.91 51.1054 235.81 51.4228 234.22 51.4228H231.335V55.8228H229.847ZM231.335 50.1456H234.243C235.204 50.1456 235.887 49.9734 236.291 49.6289C236.695 49.2843 236.897 48.7996 236.897 48.1745C236.897 47.7217 236.777 47.3353 236.537 47.0154C236.301 46.6906 235.989 46.4765 235.601 46.3732C235.35 46.3092 234.887 46.2772 234.212 46.2772H231.335V50.1456Z" fill="#2D2D2D"/>
+<path d="M240.711 55.8228V45H242.199V55.8228H240.711Z" fill="#2D2D2D"/>
+<path d="M244.233 53.4826L245.599 53.2758C245.675 53.8025 245.888 54.206 246.236 54.4866C246.588 54.7671 247.079 54.9074 247.709 54.9074C248.343 54.9074 248.813 54.7843 249.12 54.5383C249.427 54.2872 249.581 53.9944 249.581 53.6597C249.581 53.3595 249.445 53.1233 249.174 52.951C248.985 52.8329 248.514 52.6828 247.762 52.5007C246.75 52.2546 246.046 52.043 245.652 51.8658C245.264 51.6837 244.967 51.4351 244.762 51.1201C244.563 50.8002 244.463 50.4483 244.463 50.0644C244.463 49.715 244.545 49.3926 244.709 49.0973C244.878 48.7971 245.105 48.5485 245.392 48.3517C245.606 48.1991 245.898 48.0711 246.266 47.9678C246.64 47.8595 247.039 47.8054 247.463 47.8054C248.102 47.8054 248.663 47.894 249.143 48.0711C249.629 48.2483 249.987 48.4895 250.217 48.7946C250.448 49.0949 250.606 49.4984 250.693 50.0054L249.343 50.1826C249.281 49.779 249.102 49.464 248.806 49.2376C248.514 49.0112 248.1 48.898 247.563 48.898C246.929 48.898 246.476 48.9989 246.205 49.2007C245.934 49.4025 245.798 49.6387 245.798 49.9094C245.798 50.0817 245.854 50.2367 245.967 50.3745C246.08 50.5172 246.256 50.6353 246.496 50.7289C246.634 50.7781 247.041 50.8913 247.716 51.0685C248.693 51.3195 249.373 51.5262 249.757 51.6886C250.146 51.8461 250.45 52.0774 250.67 52.3826C250.89 52.6877 251 53.0667 251 53.5195C251 53.9624 250.864 54.3808 250.593 54.7745C250.327 55.1633 249.941 55.466 249.435 55.6826C248.928 55.8942 248.356 56 247.716 56C246.657 56 245.849 55.7884 245.292 55.3651C244.739 54.9418 244.386 54.3143 244.233 53.4826Z" fill="#2D2D2D"/>
+<path d="M295 162.357L296.151 162.258C296.205 162.714 296.331 163.09 296.528 163.385C296.73 163.675 297.04 163.912 297.459 164.095C297.878 164.273 298.35 164.362 298.874 164.362C299.34 164.362 299.751 164.294 300.107 164.157C300.463 164.02 300.728 163.833 300.899 163.597C301.076 163.356 301.164 163.094 301.164 162.812C301.164 162.526 301.08 162.276 300.912 162.065C300.744 161.849 300.468 161.668 300.082 161.523C299.834 161.428 299.287 161.28 298.44 161.081C297.593 160.878 297 160.687 296.66 160.508C296.22 160.28 295.891 159.998 295.673 159.661C295.459 159.321 295.352 158.941 295.352 158.522C295.352 158.061 295.484 157.631 295.748 157.233C296.013 156.83 296.398 156.525 296.906 156.318C297.413 156.11 297.977 156.006 298.598 156.006C299.281 156.006 299.883 156.116 300.403 156.336C300.927 156.552 301.329 156.872 301.61 157.295C301.891 157.719 302.042 158.198 302.063 158.733L300.893 158.821C300.83 158.244 300.616 157.808 300.252 157.513C299.891 157.218 299.356 157.071 298.648 157.071C297.91 157.071 297.371 157.206 297.031 157.476C296.696 157.741 296.528 158.063 296.528 158.441C296.528 158.769 296.648 159.039 296.887 159.25C297.122 159.462 297.734 159.68 298.723 159.904C299.717 160.124 300.398 160.317 300.767 160.483C301.304 160.728 301.7 161.039 301.956 161.417C302.212 161.791 302.34 162.222 302.34 162.712C302.34 163.198 302.199 163.657 301.918 164.088C301.637 164.516 301.233 164.85 300.704 165.091C300.18 165.328 299.589 165.446 298.931 165.446C298.096 165.446 297.396 165.325 296.83 165.085C296.268 164.844 295.826 164.483 295.503 164.001C295.184 163.516 295.017 162.968 295 162.357Z" fill="#9C9C9C"/>
+<path d="M311.123 164.313C311.689 164.699 312.211 164.981 312.689 165.159L312.33 166C311.668 165.763 311.007 165.39 310.349 164.879C309.666 165.257 308.911 165.446 308.085 165.446C307.251 165.446 306.494 165.247 305.814 164.848C305.135 164.45 304.611 163.889 304.242 163.167C303.877 162.445 303.695 161.631 303.695 160.726C303.695 159.825 303.879 159.005 304.248 158.267C304.617 157.528 305.141 156.965 305.821 156.579C306.504 156.193 307.267 156 308.11 156C308.961 156 309.729 156.201 310.412 156.604C311.095 157.002 311.615 157.563 311.972 158.285C312.332 159.003 312.513 159.815 312.513 160.72C312.513 161.471 312.397 162.148 312.167 162.75C311.936 163.347 311.588 163.868 311.123 164.313ZM308.437 162.768C309.142 162.963 309.722 163.254 310.179 163.64C310.896 162.993 311.255 162.019 311.255 160.72C311.255 159.981 311.127 159.335 310.871 158.783C310.62 158.231 310.248 157.804 309.758 157.501C309.272 157.193 308.724 157.04 308.116 157.04C307.206 157.04 306.452 157.349 305.852 157.968C305.253 158.582 304.953 159.501 304.953 160.726C304.953 161.913 305.248 162.824 305.84 163.46C306.435 164.095 307.194 164.412 308.116 164.412C308.552 164.412 308.963 164.331 309.349 164.169C308.968 163.924 308.565 163.75 308.142 163.646L308.437 162.768Z" fill="#9C9C9C"/>
+<path d="M314.239 165.29V156.162H315.459V164.213H320V165.29H314.239Z" fill="#9C9C9C"/>
+<path d="M333 276.37V208.777C333 208.777 340.208 215.571 362.61 215.571C385.013 215.571 393 208 393 208V276.37C393 276.37 389.774 284.672 362.61 284.992C335.447 285.311 333 276.37 333 276.37Z" fill="#E0454C"/>
+<path d="M393 206C393 211.523 379.504 216 362.5 216C345.496 216 332 211.523 332 206C332 200.477 345.496 196 362.5 196C379.504 196 393 200.477 393 206Z" fill="#E0454C"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M389.853 208.827C391.244 207.74 391.716 206.771 391.716 206C391.716 205.229 391.244 204.26 389.853 203.173C388.483 202.102 386.417 201.081 383.738 200.2C378.397 198.442 370.909 197.333 362.5 197.333C354.091 197.333 346.603 198.442 341.262 200.2C338.583 201.081 336.517 202.102 335.147 203.173C333.756 204.26 333.284 205.229 333.284 206C333.284 206.771 333.756 207.74 335.147 208.827C336.517 209.898 338.583 210.919 341.262 211.8C346.603 213.558 354.091 214.667 362.5 214.667C370.909 214.667 378.397 213.558 383.738 211.8C386.417 210.919 388.483 209.898 389.853 208.827ZM362.5 216C379.504 216 393 211.523 393 206C393 200.477 379.504 196 362.5 196C345.496 196 332 200.477 332 206C332 211.523 345.496 216 362.5 216Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M331.921 275.175L331.693 205.411L332.994 205.405L333.222 275.169L331.921 275.175Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M392 276L392 205L393 205L393 276L392 276Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M341.737 280.992C347.149 282.66 354.667 283.702 363 283.702C371.333 283.702 378.85 282.66 384.263 280.992C386.974 280.157 389.12 279.176 390.573 278.117C392.041 277.048 392.691 275.987 392.691 275H394C394 276.595 392.952 277.994 391.348 279.163C389.731 280.341 387.433 281.375 384.652 282.232C379.082 283.948 371.427 285 363 285C354.573 285 346.918 283.948 341.348 282.232C338.567 281.375 336.269 280.341 334.652 279.163C333.048 277.994 332 276.595 332 275H333.309C333.309 275.987 333.959 277.048 335.427 278.117C336.88 279.176 339.026 280.157 341.737 280.992Z" fill="#2D2D2D"/>
+<path d="M340 239.868V232.137H341.47L343.216 237.611C343.377 238.121 343.494 238.502 343.568 238.755C343.652 238.474 343.783 238.061 343.961 237.516L345.727 232.137H347.041V239.868H346.1V233.397L343.956 239.868H343.075L340.941 233.287V239.868H340Z" fill="white"/>
+<path d="M348.765 239.868V232.137H354.1V233.049H349.742V235.417H353.823V236.324H349.742V238.956H354.271V239.868H348.765Z" fill="white"/>
+<path d="M355.719 239.868V232.137H357.188L358.934 237.611C359.096 238.121 359.213 238.502 359.287 238.755C359.371 238.474 359.502 238.061 359.679 237.516L361.446 232.137H362.759V239.868H361.818V233.397L359.674 239.868H358.794L356.66 233.287V239.868H355.719Z" fill="white"/>
+<path d="M364.167 236.103C364.167 234.82 364.495 233.816 365.153 233.092C365.811 232.364 366.66 232 367.7 232C368.381 232 368.995 232.171 369.542 232.512C370.089 232.853 370.505 233.329 370.79 233.941C371.078 234.549 371.223 235.24 371.223 236.013C371.223 236.797 371.072 237.499 370.77 238.117C370.468 238.736 370.04 239.205 369.486 239.525C368.933 239.842 368.335 240 367.695 240C367 240 366.379 239.824 365.832 239.473C365.286 239.121 364.871 238.641 364.589 238.033C364.308 237.425 364.167 236.781 364.167 236.103ZM365.173 236.119C365.173 237.05 365.411 237.785 365.888 238.323C366.368 238.857 366.968 239.125 367.69 239.125C368.424 239.125 369.028 238.854 369.501 238.312C369.978 237.771 370.216 237.003 370.216 236.008C370.216 235.379 370.114 234.83 369.909 234.363C369.708 233.891 369.411 233.528 369.018 233.271C368.629 233.011 368.191 232.881 367.705 232.881C367.014 232.881 366.418 233.13 365.918 233.63C365.421 234.125 365.173 234.955 365.173 236.119Z" fill="white"/>
+<path d="M372.63 239.868V232.137H375.901C376.559 232.137 377.059 232.207 377.401 232.348C377.743 232.485 378.017 232.73 378.221 233.081C378.426 233.433 378.528 233.821 378.528 234.247C378.528 234.795 378.359 235.257 378.02 235.633C377.681 236.01 377.158 236.249 376.45 236.351C376.708 236.481 376.904 236.609 377.039 236.736C377.324 237.01 377.594 237.353 377.849 237.764L379.132 239.868H377.904L376.928 238.26C376.643 237.796 376.408 237.441 376.223 237.194C376.039 236.948 375.873 236.776 375.725 236.678C375.581 236.579 375.433 236.511 375.282 236.472C375.171 236.447 374.99 236.435 374.739 236.435H373.606V239.868H372.63ZM373.606 235.549H375.705C376.151 235.549 376.5 235.502 376.752 235.407C377.003 235.308 377.195 235.154 377.325 234.943C377.456 234.728 377.522 234.496 377.522 234.247C377.522 233.881 377.394 233.58 377.139 233.345C376.888 233.109 376.488 232.991 375.941 232.991H373.606V235.549Z" fill="white"/>
+<path d="M382.079 239.868V236.593L379.236 232.137H380.424L381.878 234.468C382.147 234.904 382.396 235.34 382.628 235.776C382.849 235.372 383.118 234.916 383.433 234.41L384.863 232.137H386L383.056 236.593V239.868H382.079Z" fill="white"/>
+<path d="M225 276.37V208.777C225 208.777 232.208 215.571 254.61 215.571C277.013 215.571 285 208 285 208V276.37C285 276.37 281.774 284.672 254.61 284.992C227.447 285.311 225 276.37 225 276.37Z" fill="#E0454C"/>
+<path d="M285 206C285 211.523 271.504 216 254.5 216C237.496 216 224 211.523 224 206C224 200.477 237.496 196 254.5 196C271.504 196 285 200.477 285 206Z" fill="#E0454C"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M281.853 208.827C283.244 207.74 283.716 206.771 283.716 206C283.716 205.229 283.244 204.26 281.853 203.173C280.483 202.102 278.417 201.081 275.738 200.2C270.397 198.442 262.909 197.333 254.5 197.333C246.091 197.333 238.603 198.442 233.262 200.2C230.583 201.081 228.516 202.102 227.147 203.173C225.756 204.26 225.284 205.229 225.284 206C225.284 206.771 225.756 207.74 227.147 208.827C228.516 209.898 230.583 210.919 233.262 211.8C238.603 213.558 246.091 214.667 254.5 214.667C262.909 214.667 270.397 213.558 275.738 211.8C278.417 210.919 280.483 209.898 281.853 208.827ZM254.5 216C271.504 216 285 211.523 285 206C285 200.477 271.504 196 254.5 196C237.496 196 224 200.477 224 206C224 211.523 237.496 216 254.5 216Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M223.861 275.175L223.633 205.411L224.934 205.405L225.162 275.169L223.861 275.175Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M284 276L284 205L285 205L285 276L284 276Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M233.58 280.992C238.905 282.66 246.302 283.702 254.5 283.702C262.698 283.702 270.095 282.66 275.42 280.992C278.087 280.157 280.198 279.176 281.629 278.117C283.072 277.048 283.712 275.987 283.712 275H285C285 276.595 283.969 277.994 282.391 279.163C280.8 280.341 278.539 281.375 275.802 282.232C270.322 283.948 262.791 285 254.5 285C246.209 285 238.678 283.948 233.197 282.232C230.461 281.375 228.2 280.341 226.609 279.163C225.031 277.994 224 276.595 224 275H225.288C225.288 275.987 225.928 277.048 227.371 278.117C228.802 279.176 230.913 280.157 233.58 280.992Z" fill="#2D2D2D"/>
+<path d="M232 239.868V232.137H233.47L235.216 237.611C235.377 238.121 235.494 238.502 235.568 238.755C235.652 238.474 235.783 238.061 235.961 237.516L237.727 232.137H239.041V239.868H238.1V233.397L235.956 239.868H235.075L232.941 233.287V239.868H232Z" fill="white"/>
+<path d="M240.765 239.868V232.137H246.1V233.049H241.742V235.417H245.823V236.324H241.742V238.956H246.271V239.868H240.765Z" fill="white"/>
+<path d="M247.718 239.868V232.137H249.188L250.934 237.611C251.096 238.121 251.213 238.502 251.287 238.755C251.371 238.474 251.501 238.061 251.679 237.516L253.446 232.137H254.759V239.868H253.818V233.397L251.674 239.868H250.794L248.66 233.287V239.868H247.718Z" fill="white"/>
+<path d="M256.167 236.103C256.167 234.82 256.495 233.816 257.153 233.092C257.811 232.364 258.66 232 259.7 232C260.381 232 260.995 232.171 261.542 232.512C262.089 232.853 262.505 233.329 262.79 233.941C263.078 234.549 263.223 235.24 263.223 236.013C263.223 236.797 263.072 237.499 262.77 238.117C262.468 238.736 262.04 239.205 261.486 239.525C260.933 239.842 260.335 240 259.695 240C259 240 258.379 239.824 257.832 239.473C257.286 239.121 256.871 238.641 256.589 238.033C256.307 237.425 256.167 236.781 256.167 236.103ZM257.173 236.119C257.173 237.05 257.411 237.785 257.888 238.323C258.368 238.857 258.968 239.125 259.69 239.125C260.424 239.125 261.028 238.854 261.501 238.312C261.978 237.771 262.216 237.003 262.216 236.008C262.216 235.379 262.114 234.83 261.909 234.363C261.708 233.891 261.411 233.528 261.018 233.271C260.629 233.011 260.191 232.881 259.705 232.881C259.013 232.881 258.418 233.13 257.918 233.63C257.421 234.125 257.173 234.955 257.173 236.119Z" fill="white"/>
+<path d="M264.63 239.868V232.137H267.901C268.559 232.137 269.059 232.207 269.401 232.348C269.743 232.485 270.017 232.73 270.221 233.081C270.426 233.433 270.528 233.821 270.528 234.247C270.528 234.795 270.359 235.257 270.02 235.633C269.681 236.01 269.158 236.249 268.45 236.351C268.708 236.481 268.904 236.609 269.039 236.736C269.324 237.01 269.594 237.353 269.849 237.764L271.132 239.868H269.904L268.928 238.26C268.643 237.796 268.408 237.441 268.223 237.194C268.039 236.948 267.873 236.776 267.725 236.678C267.581 236.579 267.433 236.511 267.282 236.472C267.171 236.447 266.99 236.435 266.739 236.435H265.606V239.868H264.63ZM265.606 235.549H267.705C268.151 235.549 268.5 235.502 268.752 235.407C269.003 235.308 269.195 235.154 269.325 234.943C269.456 234.728 269.522 234.496 269.522 234.247C269.522 233.881 269.394 233.58 269.139 233.345C268.888 233.109 268.488 232.991 267.941 232.991H265.606V235.549Z" fill="white"/>
+<path d="M274.079 239.868V236.593L271.236 232.137H272.424L273.878 234.468C274.147 234.904 274.396 235.34 274.628 235.776C274.849 235.372 275.118 234.916 275.433 234.41L276.863 232.137H278L275.056 236.593V239.868H274.079Z" fill="white"/>
+<path d="M350.403 294C350.403 294 343.037 298.346 349.979 302.66C351.315 303.501 356.158 305.837 356.02 308C356.02 308 358.956 303.798 354.664 301.154C350.255 298.448 349.152 295.558 350.403 294Z" fill="#ED1C24"/>
+<path d="M348.554 302C348.554 302 346.373 305.686 350.665 306.441C351.087 306.5 354.191 306.863 355 308C355 308 354.93 306.039 352.397 304.882C349.873 303.725 348.835 303.441 348.554 302Z" fill="#ED1C24"/>
+<path d="M357.556 298.572C354.557 295.443 353.722 293.507 355.01 291C355.01 291 346.062 294.43 354.899 300.517C358.06 302.693 357.536 304.92 357.536 305C358.029 304.489 360.556 301.701 357.556 298.572Z" fill="#ED1C24"/>
+<path d="M362 305.868V298.137H363.042L367.073 304.207V298.137H368.046V305.868H367.005L362.974 299.793V305.868H362Z" fill="#2D2D2D"/>
+<path d="M369.583 302.103C369.583 300.82 369.925 299.816 370.609 299.092C371.293 298.364 372.176 298 373.258 298C373.967 298 374.605 298.171 375.174 298.512C375.743 298.853 376.176 299.329 376.472 299.941C376.772 300.549 376.922 301.24 376.922 302.013C376.922 302.797 376.765 303.499 376.451 304.117C376.137 304.736 375.692 305.205 375.116 305.525C374.541 305.842 373.919 306 373.253 306C372.53 306 371.885 305.824 371.316 305.473C370.747 305.121 370.316 304.641 370.023 304.033C369.73 303.425 369.583 302.781 369.583 302.103ZM370.63 302.119C370.63 303.05 370.878 303.785 371.374 304.323C371.873 304.857 372.497 305.125 373.248 305.125C374.012 305.125 374.64 304.854 375.132 304.312C375.628 303.771 375.876 303.003 375.876 302.008C375.876 301.379 375.769 300.83 375.556 300.363C375.347 299.891 375.038 299.528 374.63 299.271C374.225 299.011 373.769 298.881 373.263 298.881C372.544 298.881 371.925 299.13 371.405 299.63C370.888 300.125 370.63 300.955 370.63 302.119Z" fill="#2D2D2D"/>
+<path d="M378.37 305.868V298.137H381.014C381.611 298.137 382.066 298.174 382.38 298.248C382.82 298.35 383.195 298.534 383.506 298.802C383.911 299.146 384.213 299.587 384.412 300.125C384.614 300.66 384.715 301.271 384.715 301.96C384.715 302.548 384.647 303.068 384.511 303.521C384.375 303.975 384.2 304.351 383.987 304.65C383.775 304.945 383.541 305.179 383.286 305.351C383.035 305.52 382.729 305.648 382.37 305.736C382.014 305.824 381.604 305.868 381.14 305.868H378.37ZM379.386 304.956H381.025C381.531 304.956 381.927 304.908 382.213 304.813C382.503 304.719 382.733 304.585 382.904 304.413C383.145 304.17 383.331 303.845 383.464 303.437C383.6 303.026 383.668 302.528 383.668 301.945C383.668 301.136 383.536 300.515 383.27 300.083C383.009 299.647 382.689 299.355 382.312 299.208C382.04 299.102 381.602 299.049 380.998 299.049H379.386V304.956Z" fill="#2D2D2D"/>
+<path d="M386.273 305.868V298.137H391.822V299.049H387.289V301.417H391.534V302.324H387.289V304.956H392V305.868H386.273Z" fill="#2D2D2D"/>
+<path d="M228.063 294C228.063 294 221.433 298.346 227.681 302.66C228.883 303.501 233.242 305.837 233.118 308C233.118 308 235.76 303.798 231.897 301.154C227.929 298.448 226.937 295.558 228.063 294Z" fill="#ED1C24"/>
+<path d="M225.633 302C225.633 302 223.141 305.686 228.045 306.441C228.528 306.5 232.075 306.863 233 308C233 308 232.92 306.039 230.025 304.882C227.141 303.725 225.955 303.441 225.633 302Z" fill="#ED1C24"/>
+<path d="M235.556 298.572C232.557 295.443 231.722 293.507 233.01 291C233.01 291 224.062 294.43 232.899 300.517C236.06 302.693 235.536 304.92 235.536 305C236.029 304.489 238.556 301.701 235.556 298.572Z" fill="#ED1C24"/>
+<path d="M240 305.868V298.137H241.007L244.903 304.207V298.137H245.845V305.868H244.838L240.941 299.793V305.868H240Z" fill="#2D2D2D"/>
+<path d="M247.33 302.103C247.33 300.82 247.661 299.816 248.322 299.092C248.983 298.364 249.837 298 250.883 298C251.568 298 252.185 298.171 252.735 298.512C253.285 298.853 253.703 299.329 253.99 299.941C254.28 300.549 254.425 301.24 254.425 302.013C254.425 302.797 254.273 303.499 253.97 304.117C253.666 304.736 253.236 305.205 252.679 305.525C252.123 305.842 251.522 306 250.878 306C250.179 306 249.555 305.824 249.005 305.473C248.456 305.121 248.039 304.641 247.756 304.033C247.472 303.425 247.33 302.781 247.33 302.103ZM248.343 302.119C248.343 303.05 248.582 303.785 249.061 304.323C249.544 304.857 250.147 305.125 250.873 305.125C251.612 305.125 252.219 304.854 252.694 304.312C253.173 303.771 253.413 303.003 253.413 302.008C253.413 301.379 253.31 300.83 253.104 300.363C252.902 299.891 252.603 299.528 252.209 299.271C251.817 299.011 251.377 298.881 250.888 298.881C250.193 298.881 249.594 299.13 249.091 299.63C248.592 300.125 248.343 300.955 248.343 302.119Z" fill="#2D2D2D"/>
+<path d="M255.825 305.868V298.137H258.38C258.957 298.137 259.397 298.174 259.701 298.248C260.126 298.35 260.489 298.534 260.789 298.802C261.18 299.146 261.472 299.587 261.664 300.125C261.86 300.66 261.958 301.271 261.958 301.96C261.958 302.548 261.892 303.068 261.761 303.521C261.629 303.975 261.46 304.351 261.255 304.65C261.049 304.945 260.823 305.179 260.576 305.351C260.334 305.52 260.038 305.648 259.691 305.736C259.347 305.824 258.95 305.868 258.502 305.868H255.825ZM256.806 304.956H258.39C258.88 304.956 259.262 304.908 259.539 304.813C259.819 304.719 260.042 304.585 260.207 304.413C260.44 304.17 260.62 303.845 260.749 303.437C260.88 303.026 260.946 302.528 260.946 301.945C260.946 301.136 260.818 300.515 260.561 300.083C260.308 299.647 260 299.355 259.635 299.208C259.372 299.102 258.949 299.049 258.365 299.049H256.806V304.956Z" fill="#2D2D2D"/>
+<path d="M263.464 305.868V298.137H268.828V299.049H264.446V301.417H268.55V302.324H264.446V304.956H269V305.868H263.464Z" fill="#2D2D2D"/>
+<path d="M289.063 314C289.063 314 282.433 318.346 288.681 322.66C289.883 323.501 294.242 325.837 294.118 328C294.118 328 296.76 323.798 292.897 321.154C288.929 318.448 287.937 315.558 289.063 314Z" fill="#ED1C24"/>
+<path d="M286.554 322C286.554 322 284.373 325.686 288.665 326.441C289.087 326.5 292.191 326.863 293 328C293 328 292.93 326.039 290.397 324.882C287.873 323.725 286.835 323.441 286.554 322Z" fill="#ED1C24"/>
+<path d="M295.556 318.572C292.557 315.443 291.722 313.507 293.01 311C293.01 311 284.062 314.43 292.899 320.517C296.06 322.693 295.536 324.92 295.536 325C296.029 324.489 298.556 321.701 295.556 318.572Z" fill="#ED1C24"/>
+<path d="M301 325.868V318.137H302.007L305.903 324.207V318.137H306.845V325.868H305.838L301.941 319.793V325.868H301Z" fill="#2D2D2D"/>
+<path d="M308.33 322.103C308.33 320.82 308.661 319.816 309.322 319.092C309.983 318.364 310.837 318 311.883 318C312.568 318 313.185 318.171 313.735 318.512C314.285 318.853 314.703 319.329 314.99 319.941C315.28 320.549 315.425 321.24 315.425 322.013C315.425 322.797 315.273 323.499 314.97 324.117C314.666 324.736 314.236 325.205 313.679 325.525C313.123 325.842 312.522 326 311.878 326C311.179 326 310.555 325.824 310.005 325.473C309.456 325.121 309.039 324.641 308.756 324.033C308.472 323.425 308.33 322.781 308.33 322.103ZM309.343 322.119C309.343 323.05 309.582 323.785 310.061 324.323C310.544 324.857 311.147 325.125 311.873 325.125C312.612 325.125 313.219 324.854 313.694 324.312C314.173 323.771 314.413 323.003 314.413 322.008C314.413 321.379 314.31 320.83 314.104 320.363C313.902 319.891 313.603 319.528 313.209 319.271C312.817 319.011 312.377 318.881 311.888 318.881C311.193 318.881 310.594 319.13 310.091 319.63C309.592 320.125 309.343 320.955 309.343 322.119Z" fill="#2D2D2D"/>
+<path d="M316.825 325.868V318.137H319.38C319.957 318.137 320.397 318.174 320.701 318.248C321.126 318.35 321.489 318.534 321.789 318.802C322.18 319.146 322.472 319.587 322.664 320.125C322.86 320.66 322.958 321.271 322.958 321.96C322.958 322.548 322.892 323.068 322.761 323.521C322.629 323.975 322.46 324.351 322.255 324.65C322.049 324.945 321.823 325.179 321.576 325.351C321.334 325.52 321.038 325.648 320.691 325.736C320.347 325.824 319.95 325.868 319.502 325.868H316.825ZM317.806 324.956H319.39C319.88 324.956 320.262 324.908 320.539 324.813C320.819 324.719 321.042 324.585 321.207 324.413C321.44 324.17 321.62 323.845 321.749 323.437C321.88 323.026 321.946 322.528 321.946 321.945C321.946 321.136 321.818 320.515 321.561 320.083C321.308 319.647 321 319.355 320.635 319.208C320.372 319.102 319.949 319.049 319.365 319.049H317.806V324.956Z" fill="#2D2D2D"/>
+<path d="M324.464 325.868V318.137H329.828V319.049H325.446V321.417H329.55V322.324H325.446V324.956H330V325.868H324.464Z" fill="#2D2D2D"/>
+<path d="M279 296.37V228.777C279 228.777 286.208 235.571 308.61 235.571C331.013 235.571 339 228 339 228V296.37C339 296.37 335.774 304.672 308.61 304.992C281.447 305.311 279 296.37 279 296.37Z" fill="#E0454C"/>
+<path d="M339 226C339 231.523 325.504 236 308.5 236C291.496 236 278 231.523 278 226C278 220.477 291.496 216 308.5 216C325.504 216 339 220.477 339 226Z" fill="#E0454C"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M335.853 228.827C337.244 227.74 337.716 226.771 337.716 226C337.716 225.229 337.244 224.26 335.853 223.173C334.483 222.102 332.417 221.081 329.738 220.2C324.396 218.442 316.909 217.333 308.5 217.333C300.091 217.333 292.603 218.442 287.262 220.2C284.583 221.081 282.516 222.102 281.147 223.173C279.756 224.26 279.284 225.229 279.284 226C279.284 226.771 279.756 227.74 281.147 228.827C282.516 229.898 284.583 230.919 287.262 231.8C292.603 233.558 300.091 234.667 308.5 234.667C316.909 234.667 324.396 233.558 329.738 231.8C332.417 230.919 334.483 229.898 335.853 228.827ZM308.5 236C325.504 236 339 231.523 339 226C339 220.477 325.504 216 308.5 216C291.496 216 278 220.477 278 226C278 231.523 291.496 236 308.5 236Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M277.891 294.922L277.663 225.157L278.964 225.151L279.192 294.916L277.891 294.922Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M338 295L338 225L339 225L339 295L338 295Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M287.737 300.992C293.149 302.66 300.667 303.702 309 303.702C317.333 303.702 324.85 302.66 330.263 300.992C332.974 300.157 335.119 299.176 336.573 298.117C338.041 297.048 338.691 295.987 338.691 295H340C340 296.595 338.952 297.994 337.348 299.163C335.731 300.341 333.433 301.375 330.652 302.232C325.082 303.948 317.427 305 309 305C300.573 305 292.918 303.948 287.348 302.232C284.567 301.375 282.269 300.341 280.652 299.163C279.048 297.994 278 296.595 278 295H279.309C279.309 295.987 279.959 297.048 281.427 298.117C282.88 299.176 285.026 300.157 287.737 300.992Z" fill="#2D2D2D"/>
+<path d="M286 259.868V252.137H287.47L289.216 257.611C289.377 258.121 289.494 258.502 289.568 258.755C289.652 258.474 289.783 258.061 289.961 257.516L291.727 252.137H293.041V259.868H292.1V253.397L289.956 259.868H289.075L286.941 253.287V259.868H286Z" fill="white"/>
+<path d="M294.765 259.868V252.137H300.1V253.049H295.741V255.417H299.823V256.324H295.741V258.956H300.271V259.868H294.765Z" fill="white"/>
+<path d="M301.718 259.868V252.137H303.188L304.934 257.611C305.095 258.121 305.213 258.502 305.287 258.755C305.371 258.474 305.501 258.061 305.679 257.516L307.446 252.137H308.759V259.868H307.818V253.397L305.674 259.868H304.794L302.66 253.287V259.868H301.718Z" fill="white"/>
+<path d="M310.167 256.103C310.167 254.82 310.495 253.816 311.153 253.092C311.811 252.364 312.659 252 313.7 252C314.381 252 314.995 252.171 315.542 252.512C316.089 252.853 316.505 253.329 316.79 253.941C317.078 254.549 317.223 255.24 317.223 256.013C317.223 256.797 317.072 257.499 316.77 258.117C316.468 258.736 316.04 259.205 315.486 259.525C314.933 259.842 314.335 260 313.695 260C313 260 312.379 259.824 311.832 259.473C311.286 259.121 310.871 258.641 310.589 258.033C310.307 257.425 310.167 256.781 310.167 256.103ZM311.173 256.119C311.173 257.05 311.411 257.785 311.888 258.323C312.368 258.857 312.968 259.125 313.69 259.125C314.424 259.125 315.028 258.854 315.501 258.312C315.978 257.771 316.216 257.003 316.216 256.008C316.216 255.379 316.114 254.83 315.909 254.363C315.708 253.891 315.411 253.528 315.018 253.271C314.629 253.011 314.191 252.881 313.705 252.881C313.013 252.881 312.418 253.13 311.918 253.63C311.421 254.125 311.173 254.955 311.173 256.119Z" fill="white"/>
+<path d="M318.63 259.868V252.137H321.901C322.559 252.137 323.059 252.207 323.401 252.348C323.743 252.485 324.017 252.73 324.221 253.081C324.426 253.433 324.528 253.821 324.528 254.247C324.528 254.795 324.359 255.257 324.02 255.633C323.681 256.01 323.158 256.249 322.45 256.351C322.708 256.481 322.904 256.609 323.038 256.736C323.324 257.01 323.594 257.353 323.849 257.764L325.132 259.868H323.904L322.928 258.26C322.643 257.796 322.408 257.441 322.223 257.194C322.039 256.948 321.873 256.776 321.725 256.678C321.581 256.579 321.433 256.511 321.282 256.472C321.171 256.447 320.99 256.435 320.738 256.435H319.606V259.868H318.63ZM319.606 255.549H321.705C322.151 255.549 322.5 255.502 322.752 255.407C323.003 255.308 323.195 255.154 323.325 254.943C323.456 254.728 323.522 254.496 323.522 254.247C323.522 253.881 323.394 253.58 323.139 253.345C322.888 253.109 322.488 252.991 321.941 252.991H319.606V255.549Z" fill="white"/>
+<path d="M328.079 259.868V256.593L325.236 252.137H326.424L327.878 254.468C328.146 254.904 328.396 255.34 328.628 255.776C328.849 255.372 329.118 254.916 329.433 254.41L330.863 252.137H332L329.056 256.593V259.868H328.079Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M144 145.917V120H145.304V145.917C145.304 177.764 171.275 203.581 203.312 203.581H214.775L211.739 200.564C211.485 200.311 211.485 199.9 211.739 199.647C211.994 199.394 212.407 199.394 212.661 199.647L216.809 203.771C217.064 204.024 217.064 204.434 216.809 204.687L212.661 208.81C212.407 209.063 211.994 209.063 211.739 208.81C211.485 208.557 211.485 208.147 211.739 207.894L214.775 204.877H203.312C170.555 204.877 144 178.479 144 145.917Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M479 145.917V120H477.696V145.917C477.696 177.764 451.725 203.581 419.688 203.581H408.225L411.261 200.564C411.515 200.311 411.515 199.9 411.261 199.647C411.006 199.394 410.593 199.394 410.339 199.647L406.191 203.771C405.936 204.024 405.936 204.434 406.191 204.687L410.339 208.81C410.593 209.063 411.006 209.063 411.261 208.81C411.515 208.557 411.515 208.147 411.261 207.894L408.225 204.877H419.688C452.445 204.877 479 178.479 479 145.917Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M146.311 353.812C146.564 354.063 146.974 354.063 147.226 353.812L151.348 349.721C151.6 349.47 151.6 349.063 151.348 348.811C151.095 348.56 150.685 348.56 150.432 348.811L147.416 351.805V340.5C147.416 308.901 173.219 283.286 205.049 283.286H218V282H205.049C172.504 282 146.121 308.191 146.121 340.5V351.805L143.105 348.811C142.853 348.56 142.443 348.56 142.19 348.811C141.937 349.063 141.937 349.47 142.19 349.721L146.311 353.812Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M479 340.878V354H477.696V340.878C477.696 308.63 451.725 282.487 419.688 282.487H408.225L411.261 285.543C411.515 285.799 411.515 286.214 411.261 286.471C411.006 286.727 410.593 286.727 410.339 286.471L406.191 282.295C405.936 282.039 405.936 281.624 406.191 281.367L410.339 277.192C410.593 276.936 411.006 276.936 411.261 277.192C411.515 277.448 411.515 277.864 411.261 278.12L408.225 281.175H419.688C452.445 281.175 479 307.905 479 340.878Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M306.889 189.724L306.889 174L308.111 174L308.111 189.724L310.957 186.619C311.195 186.359 311.582 186.359 311.821 186.619C312.06 186.88 312.06 187.302 311.821 187.562L307.932 191.805C307.693 192.065 307.307 192.065 307.068 191.805L303.179 187.562C302.94 187.302 302.94 186.88 303.179 186.619C303.418 186.359 303.805 186.359 304.043 186.619L306.889 189.724Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M307 145L307 120L308 120L308 145L307 145Z" fill="#2D2D2D"/>
+<path d="M46 145H178V179H46V145Z" fill="#F6F6F6"/>
+<path d="M46 300H169V324H46V300Z" fill="#F6F6F6"/>
+<path d="M453 300H577V324H453V300Z" fill="#F6F6F6"/>
+<path d="M450 145H583V179H450V145Z" fill="#F6F6F6"/>
+<path d="M53.0098 162.167L54.2439 162.477C53.9852 163.482 53.5187 164.25 52.8445 164.781C52.1744 165.307 51.3539 165.57 50.3827 165.57C49.3777 165.57 48.5593 165.368 47.9274 164.964C47.2998 164.556 46.8206 163.966 46.4898 163.196C46.1633 162.426 46 161.599 46 160.715C46 159.752 46.1845 158.912 46.5534 158.197C46.9266 157.477 47.4546 156.932 48.1373 156.562C48.8243 156.187 49.5791 156 50.4018 156C51.3348 156 52.1193 156.236 52.7554 156.707C53.3915 157.178 53.8347 157.841 54.0849 158.695L52.8699 158.98C52.6536 158.306 52.3398 157.816 51.9285 157.509C51.5171 157.201 50.9998 157.048 50.3764 157.048C49.6597 157.048 49.0597 157.218 48.5762 157.559C48.097 157.9 47.7599 158.359 47.5648 158.935C47.3697 159.508 47.2722 160.099 47.2722 160.709C47.2722 161.496 47.3867 162.184 47.6157 162.773C47.8489 163.358 48.2094 163.796 48.6971 164.086C49.1848 164.377 49.7127 164.522 50.281 164.522C50.9722 164.522 51.5574 164.324 52.0366 163.929C52.5158 163.533 52.8402 162.946 53.0098 162.167Z" fill="#9C9C9C"/>
+<path d="M55.3283 162.06C55.3283 160.819 55.6761 159.899 56.3715 159.301C56.9525 158.805 57.6607 158.557 58.4961 158.557C59.4248 158.557 60.1839 158.86 60.7734 159.466C61.3628 160.067 61.6575 160.901 61.6575 161.965C61.6575 162.828 61.5261 163.508 61.2632 164.004C61.0045 164.497 60.6249 164.88 60.1245 165.153C59.6284 165.427 59.0856 165.563 58.4961 165.563C57.5504 165.563 56.785 165.263 56.1998 164.661C55.6188 164.059 55.3283 163.192 55.3283 162.06ZM56.5051 162.06C56.5051 162.919 56.6938 163.562 57.0712 163.992C57.4487 164.417 57.9236 164.629 58.4961 164.629C59.0644 164.629 59.5372 164.415 59.9146 163.985C60.292 163.556 60.4807 162.902 60.4807 162.022C60.4807 161.193 60.2899 160.566 59.9083 160.141C59.5308 159.712 59.0601 159.497 58.4961 159.497C57.9236 159.497 57.4487 159.71 57.0712 160.135C56.6938 160.56 56.5051 161.202 56.5051 162.06Z" fill="#9C9C9C"/>
+<path d="M63.1363 165.412V158.708H64.1605V159.649C64.3725 159.32 64.6545 159.057 65.0065 158.86C65.3585 158.658 65.7592 158.557 66.2087 158.557C66.7091 158.557 67.1183 158.66 67.4364 158.866C67.7587 159.072 67.9856 159.36 68.117 159.731C68.6514 158.948 69.3468 158.557 70.2034 158.557C70.8735 158.557 71.3887 158.742 71.7492 159.112C72.1096 159.478 72.2899 160.044 72.2899 160.81V165.412H71.1512V161.189C71.1512 160.734 71.1131 160.408 71.0367 160.21C70.9646 160.008 70.8311 159.846 70.636 159.724C70.4409 159.602 70.2119 159.541 69.949 159.541C69.474 159.541 69.0797 159.699 68.7659 160.015C68.452 160.326 68.2951 160.827 68.2951 161.517V165.412H67.1502V161.056C67.1502 160.551 67.0569 160.173 66.8703 159.92C66.6837 159.668 66.3783 159.541 65.9543 159.541C65.632 159.541 65.333 159.626 65.0574 159.794C64.786 159.962 64.5888 160.208 64.4658 160.532C64.3428 160.856 64.2813 161.324 64.2813 161.934V165.412H63.1363Z" fill="#9C9C9C"/>
+<path d="M74.1185 167.981V158.708H75.1617V159.579C75.4077 159.238 75.6855 158.984 75.995 158.815C76.3046 158.643 76.6799 158.557 77.1209 158.557C77.6977 158.557 78.2065 158.704 78.6476 158.998C79.0886 159.293 79.4215 159.71 79.6463 160.248C79.871 160.783 79.9834 161.37 79.9834 162.01C79.9834 162.696 79.8583 163.314 79.6081 163.865C79.3621 164.413 79.0017 164.833 78.5267 165.128C78.056 165.418 77.5598 165.563 77.0382 165.563C76.6566 165.563 76.3131 165.484 76.0077 165.324C75.7067 165.164 75.4586 164.962 75.2635 164.718V167.981H74.1185ZM75.1554 162.098C75.1554 162.961 75.3314 163.598 75.6833 164.011C76.0353 164.423 76.4615 164.629 76.9619 164.629C77.4708 164.629 77.9055 164.417 78.2659 163.992C78.6306 163.562 78.813 162.9 78.813 162.003C78.813 161.149 78.6348 160.509 78.2786 160.084C77.9267 159.659 77.5047 159.447 77.0128 159.447C76.5251 159.447 76.0926 159.674 75.7151 160.128C75.342 160.579 75.1554 161.235 75.1554 162.098Z" fill="#9C9C9C"/>
+<path d="M85.9276 165.412V164.427C85.4018 165.185 84.6872 165.563 83.784 165.563C83.3853 165.563 83.0122 165.488 82.6644 165.336C82.3209 165.185 82.0644 164.995 81.8947 164.768C81.7294 164.537 81.6127 164.255 81.5449 163.922C81.4982 163.699 81.4749 163.346 81.4749 162.862V158.708H82.6199V162.426C82.6199 163.02 82.6432 163.419 82.6899 163.626C82.762 163.924 82.9146 164.16 83.1479 164.333C83.3811 164.501 83.6695 164.585 84.013 164.585C84.3565 164.585 84.6788 164.499 84.9798 164.326C85.2809 164.149 85.493 163.912 85.6159 163.613C85.7432 163.31 85.8068 162.872 85.8068 162.3V158.708H86.9518V165.412H85.9276Z" fill="#9C9C9C"/>
+<path d="M91.3821 164.396L91.5475 165.399C91.2252 165.467 90.9368 165.5 90.6824 165.5C90.2668 165.5 89.9445 165.435 89.7155 165.305C89.4865 165.174 89.3254 165.004 89.2321 164.793C89.1388 164.579 89.0921 164.131 89.0921 163.449V159.592H88.2525V158.708H89.0921V157.048L90.2307 156.366V158.708H91.3821V159.592H90.2307V163.512C90.2307 163.836 90.2498 164.044 90.288 164.137C90.3304 164.229 90.3961 164.303 90.4852 164.358C90.5785 164.413 90.7099 164.44 90.8796 164.44C91.0068 164.44 91.1743 164.425 91.3821 164.396Z" fill="#9C9C9C"/>
+<path d="M97.2627 163.253L98.4459 163.398C98.2593 164.084 97.9137 164.617 97.409 164.995C96.9044 165.374 96.2598 165.563 95.4753 165.563C94.4872 165.563 93.7027 165.263 93.1217 164.661C92.545 164.055 92.2566 163.207 92.2566 162.117C92.2566 160.989 92.5492 160.114 93.1344 159.491C93.7196 158.868 94.4787 158.557 95.4117 158.557C96.3149 158.557 97.0528 158.862 97.6253 159.472C98.1978 160.082 98.484 160.941 98.484 162.047C98.484 162.115 98.4819 162.216 98.4777 162.35H93.4398C93.4822 163.087 93.6921 163.651 94.0695 164.042C94.4469 164.434 94.9176 164.629 95.4816 164.629C95.9015 164.629 96.2598 164.52 96.5567 164.301C96.8535 164.082 97.0889 163.733 97.2627 163.253ZM93.5034 161.416H97.2754C97.2246 160.852 97.0804 160.429 96.8429 160.147C96.4782 159.71 96.0054 159.491 95.4244 159.491C94.8985 159.491 94.4554 159.665 94.0949 160.015C93.7387 160.364 93.5415 160.831 93.5034 161.416Z" fill="#9C9C9C"/>
+<path d="M109.107 164.32C108.729 164.737 108.318 165.05 107.873 165.26C107.427 165.467 106.946 165.57 106.429 165.57C105.475 165.57 104.718 165.25 104.158 164.61C103.704 164.088 103.477 163.506 103.477 162.862C103.477 162.289 103.662 161.774 104.031 161.315C104.404 160.852 104.959 160.446 105.697 160.097C105.277 159.617 104.997 159.228 104.858 158.929C104.718 158.63 104.648 158.342 104.648 158.064C104.648 157.509 104.866 157.027 105.303 156.619C105.744 156.206 106.297 156 106.963 156C107.599 156 108.119 156.194 108.521 156.581C108.929 156.968 109.132 157.433 109.132 157.976C109.132 158.855 108.545 159.607 107.37 160.229L109.043 162.344C109.234 161.974 109.382 161.545 109.488 161.056L110.678 161.309C110.474 162.117 110.199 162.782 109.851 163.304C110.279 163.868 110.765 164.341 111.308 164.724L110.538 165.627C110.076 165.332 109.599 164.896 109.107 164.32ZM106.779 159.497C107.275 159.207 107.595 158.952 107.739 158.733C107.888 158.514 107.962 158.273 107.962 158.007C107.962 157.692 107.86 157.435 107.656 157.237C107.457 157.035 107.207 156.934 106.906 156.934C106.596 156.934 106.338 157.033 106.13 157.231C105.926 157.429 105.824 157.671 105.824 157.957C105.824 158.1 105.86 158.251 105.933 158.411C106.009 158.567 106.121 158.733 106.27 158.91L106.779 159.497ZM108.388 163.424L106.289 160.842C105.67 161.208 105.252 161.549 105.036 161.864C104.819 162.176 104.711 162.485 104.711 162.792C104.711 163.167 104.862 163.556 105.163 163.96C105.464 164.364 105.89 164.566 106.441 164.566C106.785 164.566 107.139 164.461 107.504 164.25C107.873 164.036 108.167 163.76 108.388 163.424Z" fill="#9C9C9C"/>
+<path d="M116.46 165.412V156.158H118.317L120.524 162.71C120.728 163.32 120.876 163.777 120.97 164.08C121.076 163.743 121.241 163.249 121.466 162.597L123.699 156.158H125.359V165.412H124.169V157.667L121.46 165.412H120.346L117.649 157.534V165.412H116.46Z" fill="#9C9C9C"/>
+<path d="M131.742 164.585C131.318 164.943 130.909 165.195 130.514 165.343C130.124 165.49 129.704 165.563 129.255 165.563C128.513 165.563 127.942 165.385 127.544 165.027C127.145 164.665 126.946 164.204 126.946 163.644C126.946 163.316 127.02 163.017 127.168 162.748C127.321 162.475 127.518 162.256 127.76 162.092C128.006 161.927 128.282 161.803 128.587 161.719C128.812 161.66 129.151 161.603 129.605 161.549C130.529 161.439 131.21 161.309 131.647 161.157C131.651 161.002 131.653 160.903 131.653 160.861C131.653 160.398 131.545 160.072 131.329 159.882C131.036 159.626 130.601 159.497 130.025 159.497C129.486 159.497 129.087 159.592 128.829 159.781C128.574 159.966 128.386 160.297 128.263 160.772L127.143 160.621C127.245 160.145 127.412 159.762 127.646 159.472C127.879 159.177 128.216 158.952 128.657 158.796C129.098 158.637 129.609 158.557 130.19 158.557C130.767 158.557 131.235 158.624 131.596 158.759C131.956 158.893 132.221 159.064 132.391 159.27C132.56 159.472 132.679 159.729 132.747 160.04C132.785 160.234 132.804 160.583 132.804 161.088V162.603C132.804 163.659 132.828 164.328 132.874 164.61C132.925 164.888 133.023 165.155 133.167 165.412H131.971C131.852 165.176 131.776 164.901 131.742 164.585ZM131.647 162.047C131.231 162.216 130.608 162.359 129.776 162.477C129.306 162.544 128.973 162.62 128.778 162.704C128.583 162.788 128.432 162.912 128.326 163.076C128.22 163.236 128.167 163.415 128.167 163.613C128.167 163.916 128.282 164.168 128.511 164.37C128.744 164.572 129.083 164.673 129.528 164.673C129.969 164.673 130.362 164.579 130.705 164.389C131.049 164.196 131.301 163.933 131.462 163.6C131.585 163.344 131.647 162.965 131.647 162.464V162.047Z" fill="#9C9C9C"/>
+<path d="M139.124 162.956L140.25 163.102C140.127 163.872 139.811 164.476 139.302 164.913C138.797 165.347 138.176 165.563 137.438 165.563C136.514 165.563 135.769 165.265 135.205 164.667C134.646 164.065 134.366 163.205 134.366 162.085C134.366 161.361 134.487 160.728 134.728 160.185C134.97 159.642 135.337 159.236 135.829 158.967C136.325 158.693 136.864 158.557 137.445 158.557C138.178 158.557 138.778 158.742 139.245 159.112C139.711 159.478 140.01 160 140.142 160.678L139.028 160.848C138.922 160.398 138.734 160.059 138.462 159.832C138.195 159.604 137.871 159.491 137.489 159.491C136.912 159.491 136.444 159.697 136.083 160.109C135.723 160.518 135.543 161.166 135.543 162.054C135.543 162.954 135.716 163.609 136.064 164.017C136.412 164.425 136.866 164.629 137.425 164.629C137.875 164.629 138.25 164.492 138.551 164.219C138.852 163.945 139.043 163.525 139.124 162.956Z" fill="#9C9C9C"/>
+<path d="M141.36 165.412V156.158H142.505V159.478C143.039 158.864 143.713 158.557 144.527 158.557C145.028 158.557 145.463 158.655 145.831 158.853C146.2 159.047 146.463 159.316 146.62 159.661C146.781 160.006 146.862 160.507 146.862 161.164V165.412H145.717V161.164C145.717 160.596 145.592 160.183 145.342 159.926C145.096 159.665 144.746 159.535 144.292 159.535C143.953 159.535 143.633 159.623 143.332 159.8C143.035 159.973 142.823 160.208 142.695 160.507C142.568 160.806 142.505 161.218 142.505 161.744V165.412H141.36Z" fill="#9C9C9C"/>
+<path d="M148.748 157.465V156.158H149.893V157.465H148.748ZM148.748 165.412V158.708H149.893V165.412H148.748Z" fill="#9C9C9C"/>
+<path d="M151.772 165.412V158.708H152.803V159.661C153.299 158.925 154.016 158.557 154.953 158.557C155.36 158.557 155.733 158.63 156.072 158.778C156.416 158.921 156.672 159.11 156.842 159.346C157.012 159.581 157.13 159.861 157.198 160.185C157.241 160.396 157.262 160.764 157.262 161.29V165.412H156.117V161.334C156.117 160.871 156.072 160.526 155.983 160.299C155.894 160.067 155.735 159.884 155.506 159.75C155.282 159.611 155.017 159.541 154.711 159.541C154.223 159.541 153.802 159.695 153.445 160.002C153.093 160.309 152.917 160.892 152.917 161.751V165.412H151.772Z" fill="#9C9C9C"/>
+<path d="M163.779 163.253L164.962 163.398C164.775 164.084 164.43 164.617 163.925 164.995C163.42 165.374 162.776 165.563 161.991 165.563C161.003 165.563 160.219 165.263 159.638 164.661C159.061 164.055 158.773 163.207 158.773 162.117C158.773 160.989 159.065 160.114 159.65 159.491C160.236 158.868 160.995 158.557 161.928 158.557C162.831 158.557 163.569 158.862 164.141 159.472C164.714 160.082 165 160.941 165 162.047C165 162.115 164.998 162.216 164.994 162.35H159.956C159.998 163.087 160.208 163.651 160.585 164.042C160.963 164.434 161.434 164.629 161.998 164.629C162.417 164.629 162.776 164.52 163.073 164.301C163.369 164.082 163.605 163.733 163.779 163.253ZM160.019 161.416H163.791C163.741 160.852 163.596 160.429 163.359 160.147C162.994 159.71 162.521 159.491 161.94 159.491C161.415 159.491 160.971 159.665 160.611 160.015C160.255 160.364 160.057 160.831 160.019 161.416Z" fill="#9C9C9C"/>
+<path d="M46.3053 180.279V171.025H47.5394V179.187H52.132V180.279H46.3053Z" fill="#9C9C9C"/>
+<path d="M58.2162 178.12L59.3994 178.266C59.2128 178.952 58.8672 179.484 58.3625 179.863C57.8579 180.241 57.2133 180.431 56.4288 180.431C55.4407 180.431 54.6562 180.13 54.0752 179.528C53.4985 178.922 53.2101 178.074 53.2101 176.984C53.2101 175.856 53.5027 174.981 54.0879 174.358C54.6731 173.735 55.4322 173.424 56.3652 173.424C57.2684 173.424 58.0063 173.729 58.5788 174.339C59.1513 174.949 59.4375 175.808 59.4375 176.915C59.4375 176.982 59.4354 177.083 59.4312 177.218H54.3932C54.4357 177.954 54.6456 178.518 55.023 178.909C55.4004 179.301 55.8711 179.497 56.4351 179.497C56.855 179.497 57.2133 179.387 57.5101 179.168C57.807 178.949 58.0424 178.6 58.2162 178.12ZM54.4569 176.283H58.2289C58.1781 175.72 58.0339 175.297 57.7964 175.015C57.4317 174.577 56.9589 174.358 56.3779 174.358C55.852 174.358 55.4089 174.533 55.0484 174.882C54.6922 175.231 54.495 175.698 54.4569 176.283Z" fill="#9C9C9C"/>
+<path d="M65.3818 179.452C64.9577 179.81 64.5485 180.063 64.1541 180.21C63.764 180.357 63.3441 180.431 62.8946 180.431C62.1525 180.431 61.5821 180.252 61.1835 179.894C60.7849 179.532 60.5856 179.071 60.5856 178.512C60.5856 178.184 60.6598 177.885 60.8082 177.615C60.9609 177.342 61.1581 177.123 61.3998 176.959C61.6457 176.795 61.9214 176.671 62.2267 176.586C62.4515 176.528 62.7907 176.471 63.2445 176.416C64.169 176.307 64.8496 176.176 65.2864 176.025C65.2906 175.869 65.2927 175.77 65.2927 175.728C65.2927 175.265 65.1846 174.939 64.9683 174.75C64.6757 174.493 64.241 174.364 63.6643 174.364C63.1257 174.364 62.7271 174.459 62.4684 174.649C62.214 174.834 62.0253 175.164 61.9023 175.64L60.7828 175.488C60.8845 175.013 61.052 174.63 61.2853 174.339C61.5185 174.045 61.8557 173.819 62.2967 173.664C62.7377 173.504 63.2487 173.424 63.8297 173.424C64.4064 173.424 64.875 173.491 65.2355 173.626C65.5959 173.761 65.861 173.931 66.0306 174.137C66.2002 174.339 66.319 174.596 66.3868 174.907C66.425 175.101 66.4441 175.45 66.4441 175.955V177.47C66.4441 178.527 66.4674 179.196 66.514 179.478C66.5649 179.755 66.6625 180.023 66.8067 180.279H65.6108C65.492 180.044 65.4157 179.768 65.3818 179.452ZM65.2864 176.915C64.8708 177.083 64.2474 177.226 63.4162 177.344C62.9455 177.411 62.6126 177.487 62.4175 177.571C62.2225 177.655 62.0719 177.78 61.9659 177.944C61.8599 178.104 61.8069 178.282 61.8069 178.48C61.8069 178.783 61.9214 179.036 62.1504 179.238C62.3836 179.44 62.7229 179.541 63.1681 179.541C63.6092 179.541 64.0014 179.446 64.3449 179.257C64.6884 179.063 64.9408 178.8 65.1019 178.468C65.2249 178.211 65.2864 177.832 65.2864 177.331V176.915Z" fill="#9C9C9C"/>
+<path d="M68.3427 180.279V173.575H69.3732V174.592C69.6361 174.116 69.8778 173.803 70.0984 173.651C70.3231 173.5 70.5691 173.424 70.8362 173.424C71.2221 173.424 71.6144 173.546 72.013 173.79L71.6186 174.844C71.3388 174.68 71.0589 174.598 70.779 174.598C70.5288 174.598 70.304 174.674 70.1047 174.825C69.9054 174.973 69.7633 175.179 69.6785 175.444C69.5513 175.848 69.4877 176.29 69.4877 176.77V180.279H68.3427Z" fill="#9C9C9C"/>
+<path d="M72.8239 180.279V173.575H73.8544V174.529C74.3506 173.792 75.0672 173.424 76.0044 173.424C76.4115 173.424 76.7847 173.498 77.124 173.645C77.4675 173.788 77.724 173.977 77.8937 174.213C78.0633 174.449 78.182 174.728 78.2499 175.053C78.2923 175.263 78.3135 175.631 78.3135 176.157V180.279H77.1685V176.201C77.1685 175.738 77.124 175.393 77.0349 175.166C76.9459 174.935 76.7868 174.752 76.5578 174.617C76.3331 174.478 76.0681 174.409 75.7627 174.409C75.275 174.409 74.8531 174.562 74.4969 174.869C74.1449 175.177 73.9689 175.76 73.9689 176.618V180.279H72.8239Z" fill="#9C9C9C"/>
+<path d="M80.2121 172.332V171.025H81.3571V172.332H80.2121ZM80.2121 180.279V173.575H81.3571V180.279H80.2121Z" fill="#9C9C9C"/>
+<path d="M83.2367 180.279V173.575H84.2672V174.529C84.7633 173.792 85.48 173.424 86.4172 173.424C86.8243 173.424 87.1975 173.498 87.5367 173.645C87.8802 173.788 88.1368 173.977 88.3064 174.213C88.476 174.449 88.5948 174.728 88.6626 175.053C88.705 175.263 88.7262 175.631 88.7262 176.157V180.279H87.5812V176.201C87.5812 175.738 87.5367 175.393 87.4477 175.166C87.3586 174.935 87.1996 174.752 86.9706 174.617C86.7458 174.478 86.4808 174.409 86.1755 174.409C85.6878 174.409 85.2658 174.562 84.9096 174.869C84.5576 175.177 84.3817 175.76 84.3817 176.618V180.279H83.2367Z" fill="#9C9C9C"/>
+<path d="M90.4086 180.835L91.5218 180.999C91.5684 181.34 91.6978 181.588 91.9098 181.744C92.1939 181.954 92.582 182.059 93.0739 182.059C93.604 182.059 94.0132 181.954 94.3015 181.744C94.5899 181.533 94.785 181.239 94.8868 180.86C94.9461 180.629 94.9737 180.143 94.9695 179.402C94.4691 179.987 93.8457 180.279 93.0993 180.279C92.1706 180.279 91.4518 179.947 90.9429 179.282C90.434 178.617 90.1796 177.82 90.1796 176.889C90.1796 176.25 90.2962 175.661 90.5295 175.122C90.7627 174.579 91.0998 174.16 91.5409 173.866C91.9861 173.571 92.5077 173.424 93.1057 173.424C93.9029 173.424 94.5602 173.744 95.0776 174.383V173.575H96.1335V179.37C96.1335 180.414 96.0254 181.153 95.8091 181.586C95.5971 182.024 95.2578 182.369 94.7913 182.621C94.3291 182.874 93.7587 183 93.0802 183C92.2745 183 91.6236 182.819 91.1274 182.457C90.6312 182.099 90.3916 181.559 90.4086 180.835ZM91.3564 176.807C91.3564 177.687 91.5324 178.329 91.8844 178.733C92.2363 179.137 92.6774 179.339 93.2075 179.339C93.7333 179.339 94.1743 179.139 94.5305 178.739C94.8868 178.335 95.0649 177.704 95.0649 176.845C95.0649 176.025 94.8804 175.406 94.5115 174.989C94.1468 174.573 93.7057 174.364 93.1884 174.364C92.6795 174.364 92.2469 174.571 91.8907 174.983C91.5345 175.391 91.3564 175.999 91.3564 176.807Z" fill="#9C9C9C"/>
+<path d="M466 165.835L469.572 156.165H470.899L474.706 165.835H473.303L472.218 162.906H468.329L467.307 165.835H466ZM468.684 161.864H471.838L470.867 159.186C470.571 158.372 470.351 157.704 470.207 157.181C470.088 157.801 469.921 158.416 469.706 159.028L468.684 161.864Z" fill="#9C9C9C"/>
+<path d="M482.456 162.445L483.687 162.768C483.429 163.819 482.964 164.621 482.291 165.175C481.623 165.725 480.805 166 479.836 166C478.833 166 478.017 165.789 477.387 165.367C476.76 164.94 476.282 164.325 475.952 163.52C475.627 162.715 475.464 161.851 475.464 160.927C475.464 159.92 475.648 159.043 476.016 158.296C476.388 157.544 476.915 156.974 477.596 156.587C478.281 156.196 479.034 156 479.855 156C480.785 156 481.568 156.246 482.203 156.739C482.837 157.231 483.279 157.924 483.529 158.817L482.317 159.113C482.101 158.41 481.788 157.898 481.378 157.577C480.967 157.255 480.451 157.095 479.829 157.095C479.115 157.095 478.516 157.273 478.034 157.629C477.556 157.985 477.219 158.465 477.025 159.067C476.83 159.665 476.733 160.283 476.733 160.921C476.733 161.743 476.847 162.462 477.076 163.078C477.308 163.689 477.668 164.146 478.154 164.45C478.641 164.753 479.167 164.905 479.734 164.905C480.424 164.905 481.008 164.698 481.486 164.285C481.964 163.872 482.287 163.258 482.456 162.445Z" fill="#9C9C9C"/>
+<path d="M485.55 165.835V156.165H486.781V165.835H485.55Z" fill="#9C9C9C"/>
+<path d="M489.087 165.835V156.165H492.291C493.015 156.165 493.567 156.211 493.947 156.303C494.48 156.431 494.935 156.662 495.312 156.996C495.802 157.427 496.168 157.979 496.409 158.652C496.655 159.32 496.777 160.085 496.777 160.947C496.777 161.682 496.695 162.332 496.53 162.9C496.365 163.467 496.154 163.938 495.895 164.311C495.637 164.681 495.354 164.973 495.045 165.189C494.741 165.4 494.37 165.56 493.935 165.67C493.503 165.78 493.006 165.835 492.444 165.835H489.087ZM490.318 164.694H492.304C492.917 164.694 493.398 164.635 493.744 164.516C494.096 164.397 494.375 164.23 494.582 164.015C494.874 163.711 495.1 163.304 495.261 162.794C495.426 162.28 495.508 161.657 495.508 160.927C495.508 159.916 495.348 159.14 495.026 158.599C494.709 158.054 494.322 157.689 493.865 157.504C493.535 157.372 493.004 157.306 492.272 157.306H490.318V164.694Z" fill="#9C9C9C"/>
+<path d="M504.48 165.835V157.306H501.416V156.165H508.789V157.306H505.711V165.835H504.48Z" fill="#9C9C9C"/>
+<path d="M509.547 165.835V158.83H510.575V159.892C510.837 159.395 511.078 159.067 511.298 158.909C511.522 158.751 511.768 158.672 512.034 158.672C512.419 158.672 512.811 158.799 513.208 159.054L512.815 160.156C512.536 159.984 512.256 159.898 511.977 159.898C511.728 159.898 511.503 159.978 511.305 160.136C511.106 160.29 510.964 160.505 510.88 160.782C510.753 161.204 510.689 161.666 510.689 162.168V165.835H509.547Z" fill="#9C9C9C"/>
+<path d="M518.414 164.971C517.991 165.345 517.583 165.609 517.19 165.763C516.801 165.916 516.382 165.993 515.933 165.993C515.193 165.993 514.624 165.807 514.227 165.433C513.829 165.055 513.63 164.573 513.63 163.988C513.63 163.645 513.704 163.333 513.852 163.051C514.004 162.766 514.201 162.537 514.442 162.365C514.688 162.194 514.963 162.064 515.267 161.976C515.491 161.915 515.83 161.855 516.282 161.798C517.205 161.684 517.884 161.547 518.319 161.389C518.323 161.226 518.326 161.123 518.326 161.079C518.326 160.595 518.218 160.255 518.002 160.057C517.71 159.788 517.277 159.654 516.701 159.654C516.164 159.654 515.766 159.753 515.508 159.951C515.254 160.145 515.066 160.49 514.944 160.987L513.827 160.828C513.928 160.332 514.095 159.931 514.328 159.628C514.561 159.32 514.897 159.085 515.337 158.922C515.777 158.755 516.287 158.672 516.866 158.672C517.441 158.672 517.909 158.742 518.268 158.883C518.628 159.023 518.892 159.201 519.062 159.417C519.231 159.628 519.349 159.896 519.417 160.222C519.455 160.424 519.474 160.789 519.474 161.317V162.9C519.474 164.004 519.497 164.703 519.544 164.997C519.595 165.288 519.692 165.567 519.836 165.835H518.643C518.524 165.589 518.448 165.301 518.414 164.971ZM518.319 162.319C517.905 162.495 517.283 162.645 516.454 162.768C515.984 162.838 515.652 162.917 515.458 163.005C515.263 163.093 515.113 163.223 515.007 163.394C514.901 163.562 514.848 163.748 514.848 163.955C514.848 164.272 514.963 164.536 515.191 164.747C515.424 164.958 515.762 165.063 516.206 165.063C516.646 165.063 517.037 164.964 517.38 164.766C517.723 164.564 517.974 164.289 518.135 163.942C518.258 163.674 518.319 163.278 518.319 162.755V162.319Z" fill="#9C9C9C"/>
+<path d="M521.381 165.835V158.83H522.409V159.826C522.904 159.056 523.618 158.672 524.553 158.672C524.959 158.672 525.332 158.748 525.67 158.902C526.013 159.052 526.269 159.25 526.438 159.496C526.607 159.742 526.726 160.035 526.793 160.373C526.836 160.593 526.857 160.978 526.857 161.528V165.835H525.715V161.574C525.715 161.09 525.67 160.73 525.581 160.492C525.492 160.25 525.334 160.059 525.105 159.918C524.881 159.773 524.617 159.701 524.312 159.701C523.826 159.701 523.405 159.861 523.05 160.182C522.698 160.503 522.523 161.112 522.523 162.009V165.835H521.381Z" fill="#9C9C9C"/>
+<path d="M528.287 163.744L529.417 163.559C529.48 164.03 529.656 164.391 529.944 164.641C530.235 164.892 530.642 165.017 531.162 165.017C531.686 165.017 532.076 164.907 532.329 164.687C532.583 164.463 532.71 164.201 532.71 163.902C532.71 163.634 532.598 163.423 532.374 163.269C532.217 163.164 531.828 163.029 531.206 162.867C530.369 162.647 529.787 162.458 529.461 162.299C529.14 162.137 528.894 161.915 528.725 161.633C528.56 161.347 528.478 161.033 528.478 160.69C528.478 160.378 528.545 160.09 528.681 159.826C528.82 159.558 529.009 159.336 529.246 159.16C529.423 159.023 529.664 158.909 529.969 158.817C530.278 158.72 530.608 158.672 530.959 158.672C531.488 158.672 531.951 158.751 532.348 158.909C532.75 159.067 533.046 159.283 533.237 159.555C533.427 159.824 533.558 160.184 533.63 160.637L532.513 160.796C532.463 160.435 532.315 160.153 532.069 159.951C531.828 159.749 531.485 159.648 531.041 159.648C530.517 159.648 530.142 159.738 529.918 159.918C529.694 160.099 529.582 160.31 529.582 160.551C529.582 160.705 529.628 160.844 529.721 160.967C529.815 161.095 529.96 161.2 530.159 161.284C530.274 161.328 530.61 161.429 531.168 161.587C531.976 161.811 532.539 161.996 532.856 162.141C533.178 162.282 533.429 162.489 533.611 162.761C533.793 163.034 533.884 163.372 533.884 163.777C533.884 164.173 533.772 164.547 533.548 164.898C533.328 165.246 533.008 165.516 532.59 165.71C532.171 165.899 531.697 165.993 531.168 165.993C530.293 165.993 529.624 165.804 529.163 165.426C528.706 165.048 528.414 164.487 528.287 163.744Z" fill="#9C9C9C"/>
+<path d="M539.769 164.971C539.346 165.345 538.938 165.609 538.544 165.763C538.155 165.916 537.737 165.993 537.288 165.993C536.548 165.993 535.979 165.807 535.581 165.433C535.184 165.055 534.985 164.573 534.985 163.988C534.985 163.645 535.059 163.333 535.207 163.051C535.359 162.766 535.556 162.537 535.797 162.365C536.042 162.194 536.317 162.064 536.622 161.976C536.846 161.915 537.184 161.855 537.637 161.798C538.559 161.684 539.238 161.547 539.674 161.389C539.678 161.226 539.68 161.123 539.68 161.079C539.68 160.595 539.572 160.255 539.357 160.057C539.065 159.788 538.631 159.654 538.056 159.654C537.519 159.654 537.121 159.753 536.863 159.951C536.609 160.145 536.421 160.49 536.298 160.987L535.181 160.828C535.283 160.332 535.45 159.931 535.683 159.628C535.915 159.32 536.252 159.085 536.692 158.922C537.132 158.755 537.641 158.672 538.221 158.672C538.796 158.672 539.264 158.742 539.623 158.883C539.983 159.023 540.247 159.201 540.416 159.417C540.586 159.628 540.704 159.896 540.772 160.222C540.81 160.424 540.829 160.789 540.829 161.317V162.9C540.829 164.004 540.852 164.703 540.899 164.997C540.949 165.288 541.047 165.567 541.19 165.835H539.998C539.879 165.589 539.803 165.301 539.769 164.971ZM539.674 162.319C539.259 162.495 538.638 162.645 537.808 162.768C537.339 162.838 537.007 162.917 536.812 163.005C536.618 163.093 536.467 163.223 536.362 163.394C536.256 163.562 536.203 163.748 536.203 163.955C536.203 164.272 536.317 164.536 536.546 164.747C536.778 164.958 537.117 165.063 537.561 165.063C538.001 165.063 538.392 164.964 538.735 164.766C539.077 164.564 539.329 164.289 539.49 163.942C539.613 163.674 539.674 163.278 539.674 162.755V162.319Z" fill="#9C9C9C"/>
+<path d="M547.133 163.269L548.256 163.421C548.133 164.226 547.818 164.857 547.31 165.314C546.807 165.767 546.187 165.993 545.451 165.993C544.529 165.993 543.787 165.681 543.224 165.057C542.666 164.428 542.386 163.529 542.386 162.359C542.386 161.602 542.507 160.941 542.748 160.373C542.989 159.806 543.355 159.382 543.846 159.1C544.341 158.814 544.878 158.672 545.458 158.672C546.189 158.672 546.788 158.865 547.253 159.252C547.719 159.635 548.017 160.18 548.148 160.888L547.038 161.066C546.932 160.595 546.744 160.241 546.473 160.004C546.206 159.766 545.883 159.648 545.502 159.648C544.927 159.648 544.459 159.863 544.1 160.294C543.74 160.721 543.56 161.398 543.56 162.326C543.56 163.267 543.734 163.951 544.081 164.377C544.428 164.804 544.88 165.017 545.439 165.017C545.887 165.017 546.261 164.874 546.562 164.588C546.862 164.303 547.052 163.863 547.133 163.269Z" fill="#9C9C9C"/>
+<path d="M551.857 164.773L552.022 165.822C551.7 165.892 551.412 165.927 551.159 165.927C550.744 165.927 550.423 165.859 550.194 165.723C549.966 165.587 549.805 165.409 549.712 165.189C549.619 164.964 549.572 164.496 549.572 163.784V159.753H548.735V158.83H549.572V157.095L550.708 156.383V158.83H551.857V159.753H550.708V163.85C550.708 164.188 550.727 164.406 550.765 164.503C550.808 164.599 550.873 164.676 550.962 164.734C551.055 164.791 551.186 164.819 551.355 164.819C551.482 164.819 551.649 164.804 551.857 164.773Z" fill="#9C9C9C"/>
+<path d="M553.116 157.53V156.165H554.258V157.53H553.116ZM553.116 165.835V158.83H554.258V165.835H553.116Z" fill="#9C9C9C"/>
+<path d="M555.708 162.332C555.708 161.035 556.055 160.074 556.749 159.45C557.328 158.931 558.035 158.672 558.868 158.672C559.794 158.672 560.552 158.988 561.14 159.621C561.728 160.25 562.022 161.121 562.022 162.234C562.022 163.135 561.89 163.845 561.628 164.364C561.37 164.879 560.992 165.279 560.492 165.565C559.997 165.85 559.456 165.993 558.868 165.993C557.925 165.993 557.161 165.679 556.577 165.05C555.998 164.421 555.708 163.515 555.708 162.332ZM556.882 162.332C556.882 163.23 557.07 163.902 557.447 164.351C557.823 164.795 558.297 165.017 558.868 165.017C559.435 165.017 559.906 164.793 560.283 164.344C560.659 163.896 560.848 163.212 560.848 162.293C560.848 161.427 560.657 160.771 560.277 160.327C559.9 159.879 559.431 159.654 558.868 159.654C558.297 159.654 557.823 159.876 557.447 160.321C557.07 160.765 556.882 161.435 556.882 162.332Z" fill="#9C9C9C"/>
+<path d="M563.497 165.835V158.83H564.525V159.826C565.02 159.056 565.735 158.672 566.669 158.672C567.075 158.672 567.448 158.748 567.786 158.902C568.129 159.052 568.385 159.25 568.554 159.496C568.723 159.742 568.842 160.035 568.909 160.373C568.952 160.593 568.973 160.978 568.973 161.528V165.835H567.831V161.574C567.831 161.09 567.786 160.73 567.697 160.492C567.608 160.25 567.45 160.059 567.221 159.918C566.997 159.773 566.733 159.701 566.428 159.701C565.942 159.701 565.521 159.861 565.166 160.182C564.814 160.503 564.639 161.112 564.639 162.009V165.835H563.497Z" fill="#9C9C9C"/>
+<path d="M570.403 163.744L571.533 163.559C571.596 164.03 571.772 164.391 572.06 164.641C572.351 164.892 572.758 165.017 573.278 165.017C573.802 165.017 574.192 164.907 574.445 164.687C574.699 164.463 574.826 164.201 574.826 163.902C574.826 163.634 574.714 163.423 574.49 163.269C574.333 163.164 573.944 163.029 573.322 162.867C572.485 162.647 571.903 162.458 571.577 162.299C571.256 162.137 571.01 161.915 570.841 161.633C570.676 161.347 570.594 161.033 570.594 160.69C570.594 160.378 570.661 160.09 570.797 159.826C570.936 159.558 571.125 159.336 571.362 159.16C571.539 159.023 571.78 158.909 572.085 158.817C572.394 158.72 572.724 158.672 573.075 158.672C573.604 158.672 574.067 158.751 574.464 158.909C574.866 159.067 575.162 159.283 575.353 159.555C575.543 159.824 575.674 160.184 575.746 160.637L574.629 160.796C574.579 160.435 574.431 160.153 574.185 159.951C573.944 159.749 573.601 159.648 573.157 159.648C572.633 159.648 572.258 159.738 572.034 159.918C571.81 160.099 571.698 160.31 571.698 160.551C571.698 160.705 571.744 160.844 571.837 160.967C571.931 161.095 572.076 161.2 572.275 161.284C572.39 161.328 572.726 161.429 573.284 161.587C574.092 161.811 574.655 161.996 574.972 162.141C575.294 162.282 575.545 162.489 575.727 162.761C575.909 163.034 576 163.372 576 163.777C576 164.173 575.888 164.547 575.664 164.898C575.444 165.246 575.124 165.516 574.706 165.71C574.287 165.899 573.813 165.993 573.284 165.993C572.409 165.993 571.74 165.804 571.279 165.426C570.822 165.048 570.53 164.487 570.403 163.744Z" fill="#9C9C9C"/>
+<path d="M94.4666 316.274L92 307H93.2618L94.6759 313.079C94.8281 313.716 94.9591 314.348 95.069 314.977C95.3057 313.986 95.4452 313.414 95.4875 313.263L97.2566 307H98.7404L100.072 311.694C100.406 312.858 100.647 313.952 100.795 314.977C100.913 314.391 101.068 313.718 101.258 312.959L102.716 307H103.953L101.404 316.274H100.218L98.2585 309.208C98.0936 308.617 97.9964 308.255 97.9668 308.12C97.8696 308.546 97.7787 308.908 97.6941 309.208L95.7221 316.274H94.4666Z" fill="#9C9C9C"/>
+<path d="M104.837 316.274V309.556H105.864V310.574C106.126 310.098 106.367 309.783 106.587 309.632C106.811 309.48 107.056 309.404 107.323 309.404C107.707 309.404 108.098 309.526 108.496 309.771L108.103 310.827C107.824 310.663 107.545 310.58 107.266 310.58C107.016 310.58 106.792 310.656 106.594 310.808C106.395 310.956 106.253 311.162 106.169 311.428C106.042 311.833 105.978 312.276 105.978 312.756V316.274H104.837Z" fill="#9C9C9C"/>
+<path d="M109.31 308.309V307H110.452V308.309H109.31ZM109.31 316.274V309.556H110.452V316.274H109.31Z" fill="#9C9C9C"/>
+<path d="M114.817 315.255L114.982 316.261C114.661 316.328 114.374 316.362 114.12 316.362C113.706 316.362 113.384 316.297 113.156 316.166C112.928 316.035 112.767 315.865 112.674 315.654C112.581 315.439 112.535 314.989 112.535 314.306V310.441H111.698V309.556H112.535V307.892L113.67 307.209V309.556H114.817V310.441H113.67V314.37C113.67 314.694 113.689 314.903 113.727 314.996C113.769 315.089 113.835 315.162 113.923 315.217C114.016 315.272 114.147 315.299 114.316 315.299C114.443 315.299 114.61 315.285 114.817 315.255Z" fill="#9C9C9C"/>
+<path d="M120.679 314.11L121.859 314.256C121.673 314.943 121.328 315.477 120.825 315.856C120.322 316.236 119.68 316.425 118.898 316.425C117.913 316.425 117.131 316.124 116.552 315.521C115.977 314.914 115.689 314.064 115.689 312.972C115.689 311.841 115.981 310.964 116.564 310.34C117.148 309.716 117.904 309.404 118.834 309.404C119.735 309.404 120.47 309.71 121.041 310.321C121.612 310.933 121.897 311.793 121.897 312.902C121.897 312.969 121.895 313.071 121.891 313.206H116.869C116.911 313.944 117.12 314.509 117.496 314.901C117.873 315.293 118.342 315.489 118.904 315.489C119.323 315.489 119.68 315.38 119.976 315.16C120.272 314.941 120.506 314.591 120.679 314.11ZM116.932 312.269H120.692C120.641 311.704 120.498 311.28 120.261 310.998C119.897 310.559 119.426 310.34 118.847 310.34C118.323 310.34 117.881 310.515 117.522 310.865C117.167 311.215 116.97 311.683 116.932 312.269Z" fill="#9C9C9C"/>
+<path d="M122.984 313.49V312.345H126.491V313.49H122.984Z" fill="#9C9C9C"/>
+<path d="M130.374 315.255L130.539 316.261C130.218 316.328 129.931 316.362 129.677 316.362C129.263 316.362 128.941 316.297 128.713 316.166C128.485 316.035 128.324 315.865 128.231 315.654C128.138 315.439 128.092 314.989 128.092 314.306V310.441H127.255V309.556H128.092V307.892L129.227 307.209V309.556H130.374V310.441H129.227V314.37C129.227 314.694 129.246 314.903 129.284 314.996C129.326 315.089 129.392 315.162 129.48 315.217C129.573 315.272 129.704 315.299 129.874 315.299C130 315.299 130.167 315.285 130.374 315.255Z" fill="#9C9C9C"/>
+<path d="M131.627 316.274V307H132.768V310.327C133.301 309.712 133.973 309.404 134.784 309.404C135.283 309.404 135.717 309.503 136.084 309.701C136.452 309.895 136.714 310.165 136.871 310.511C137.031 310.857 137.112 311.358 137.112 312.016V316.274H135.97V312.016C135.97 311.447 135.846 311.034 135.596 310.776C135.351 310.515 135.002 310.384 134.55 310.384C134.212 310.384 133.893 310.473 133.592 310.65C133.296 310.823 133.085 311.059 132.958 311.358C132.831 311.658 132.768 312.071 132.768 312.598V316.274H131.627Z" fill="#9C9C9C"/>
+<path d="M138.973 316.274V309.556H140V310.574C140.262 310.098 140.503 309.783 140.723 309.632C140.947 309.48 141.192 309.404 141.458 309.404C141.843 309.404 142.234 309.526 142.631 309.771L142.238 310.827C141.959 310.663 141.68 310.58 141.401 310.58C141.152 310.58 140.928 310.656 140.729 310.808C140.53 310.956 140.389 311.162 140.304 311.428C140.177 311.833 140.114 312.276 140.114 312.756V316.274H138.973Z" fill="#9C9C9C"/>
+<path d="M143.015 312.915C143.015 311.671 143.361 310.749 144.055 310.15C144.634 309.653 145.34 309.404 146.173 309.404C147.098 309.404 147.855 309.707 148.443 310.315C149.03 310.918 149.324 311.753 149.324 312.82C149.324 313.684 149.193 314.365 148.931 314.863C148.673 315.356 148.295 315.74 147.796 316.014C147.301 316.288 146.76 316.425 146.173 316.425C145.23 316.425 144.467 316.124 143.883 315.521C143.304 314.918 143.015 314.049 143.015 312.915ZM144.188 312.915C144.188 313.775 144.376 314.42 144.752 314.85C145.128 315.276 145.602 315.489 146.173 315.489C146.739 315.489 147.21 315.274 147.587 314.844C147.963 314.414 148.151 313.758 148.151 312.877C148.151 312.046 147.961 311.418 147.58 310.992C147.204 310.561 146.735 310.346 146.173 310.346C145.602 310.346 145.128 310.559 144.752 310.985C144.376 311.411 144.188 312.054 144.188 312.915Z" fill="#9C9C9C"/>
+<path d="M155.211 316.274V315.287C154.687 316.046 153.975 316.425 153.074 316.425C152.677 316.425 152.305 316.349 151.958 316.198C151.616 316.046 151.36 315.856 151.191 315.628C151.026 315.396 150.91 315.114 150.842 314.781C150.796 314.557 150.773 314.203 150.773 313.718V309.556H151.914V313.281C151.914 313.876 151.937 314.277 151.984 314.483C152.056 314.783 152.208 315.019 152.44 315.192C152.673 315.361 152.96 315.445 153.303 315.445C153.645 315.445 153.966 315.358 154.267 315.186C154.567 315.008 154.778 314.77 154.901 314.471C155.027 314.167 155.091 313.729 155.091 313.155V309.556H156.232V316.274H155.211Z" fill="#9C9C9C"/>
+<path d="M157.947 316.83L159.057 316.995C159.104 317.336 159.232 317.585 159.444 317.741C159.727 317.952 160.114 318.057 160.604 318.057C161.133 318.057 161.541 317.952 161.828 317.741C162.115 317.53 162.31 317.235 162.411 316.856C162.471 316.624 162.498 316.137 162.494 315.394C161.995 315.98 161.374 316.274 160.63 316.274C159.704 316.274 158.987 315.94 158.48 315.274C157.973 314.608 157.719 313.809 157.719 312.877C157.719 312.236 157.835 311.645 158.068 311.105C158.3 310.561 158.636 310.142 159.076 309.847C159.52 309.551 160.04 309.404 160.636 309.404C161.431 309.404 162.086 309.724 162.602 310.365V309.556H163.654V315.363C163.654 316.409 163.546 317.149 163.331 317.583C163.119 318.022 162.781 318.367 162.316 318.62C161.855 318.873 161.287 319 160.611 319C159.807 319 159.158 318.819 158.664 318.456C158.169 318.098 157.93 317.556 157.947 316.83ZM158.892 312.794C158.892 313.676 159.068 314.319 159.418 314.724C159.769 315.129 160.209 315.331 160.737 315.331C161.262 315.331 161.701 315.131 162.056 314.73C162.411 314.325 162.589 313.693 162.589 312.832C162.589 312.01 162.405 311.39 162.037 310.973C161.674 310.555 161.234 310.346 160.718 310.346C160.211 310.346 159.78 310.553 159.425 310.966C159.07 311.375 158.892 311.985 158.892 312.794Z" fill="#9C9C9C"/>
+<path d="M165.515 316.274V307H166.656V310.327C167.189 309.712 167.861 309.404 168.673 309.404C169.172 309.404 169.605 309.503 169.973 309.701C170.341 309.895 170.603 310.165 170.759 310.511C170.92 310.857 171 311.358 171 312.016V316.274H169.859V312.016C169.859 311.447 169.734 311.034 169.485 310.776C169.239 310.515 168.891 310.384 168.438 310.384C168.1 310.384 167.781 310.473 167.481 310.65C167.185 310.823 166.974 311.059 166.847 311.358C166.72 311.658 166.656 312.071 166.656 312.598V316.274H165.515Z" fill="#9C9C9C"/>
+<path d="M467 316.274V307H471.122C471.95 307 472.58 307.084 473.011 307.253C473.443 307.418 473.787 307.711 474.045 308.132C474.303 308.554 474.432 309.02 474.432 309.53C474.432 310.188 474.218 310.743 473.791 311.194C473.364 311.645 472.705 311.932 471.813 312.054C472.138 312.21 472.386 312.364 472.555 312.516C472.914 312.845 473.255 313.256 473.576 313.75L475.193 316.274H473.646L472.415 314.344C472.056 313.788 471.76 313.362 471.528 313.066C471.295 312.771 471.086 312.565 470.9 312.446C470.718 312.328 470.532 312.246 470.342 312.2C470.202 312.17 469.974 312.156 469.657 312.156H468.23V316.274H467ZM468.23 311.093H470.874C471.437 311.093 471.876 311.036 472.193 310.922C472.51 310.804 472.751 310.618 472.916 310.365C473.081 310.108 473.164 309.83 473.164 309.53C473.164 309.092 473.003 308.731 472.682 308.449C472.365 308.166 471.862 308.025 471.172 308.025H468.23V311.093Z" fill="#9C9C9C"/>
+<path d="M480.96 314.11L482.139 314.256C481.953 314.943 481.609 315.477 481.106 315.856C480.603 316.236 479.96 316.425 479.178 316.425C478.193 316.425 477.411 316.124 476.832 315.521C476.257 314.914 475.969 314.064 475.969 312.972C475.969 311.841 476.261 310.964 476.845 310.34C477.428 309.716 478.185 309.404 479.115 309.404C480.015 309.404 480.751 309.71 481.321 310.321C481.892 310.933 482.177 311.793 482.177 312.902C482.177 312.969 482.175 313.071 482.171 313.206H477.149C477.191 313.944 477.4 314.509 477.777 314.901C478.153 315.293 478.622 315.489 479.184 315.489C479.603 315.489 479.96 315.38 480.256 315.16C480.552 314.941 480.787 314.591 480.96 314.11ZM477.212 312.269H480.973C480.922 311.704 480.778 311.28 480.541 310.998C480.178 310.559 479.707 310.34 479.127 310.34C478.603 310.34 478.161 310.515 477.802 310.865C477.447 311.215 477.25 311.683 477.212 312.269Z" fill="#9C9C9C"/>
+<path d="M488.103 315.445C487.68 315.803 487.272 316.056 486.879 316.204C486.49 316.352 486.072 316.425 485.624 316.425C484.884 316.425 484.315 316.246 483.918 315.888C483.521 315.525 483.322 315.063 483.322 314.502C483.322 314.173 483.396 313.874 483.544 313.604C483.696 313.33 483.893 313.111 484.134 312.946C484.379 312.782 484.654 312.657 484.958 312.573C485.182 312.514 485.52 312.457 485.973 312.402C486.894 312.293 487.573 312.162 488.008 312.01C488.012 311.854 488.014 311.755 488.014 311.713C488.014 311.249 487.907 310.922 487.691 310.732C487.399 310.475 486.966 310.346 486.391 310.346C485.854 310.346 485.457 310.441 485.199 310.631C484.945 310.817 484.757 311.148 484.635 311.624L483.518 311.472C483.62 310.996 483.787 310.612 484.019 310.321C484.252 310.026 484.588 309.8 485.028 309.644C485.467 309.484 485.977 309.404 486.556 309.404C487.131 309.404 487.598 309.471 487.957 309.606C488.317 309.741 488.581 309.912 488.75 310.119C488.919 310.321 489.037 310.578 489.105 310.89C489.143 311.084 489.162 311.434 489.162 311.94V313.459C489.162 314.517 489.185 315.188 489.232 315.47C489.283 315.749 489.38 316.016 489.524 316.274H488.331C488.213 316.037 488.137 315.761 488.103 315.445ZM488.008 312.902C487.594 313.071 486.972 313.214 486.144 313.332C485.674 313.4 485.343 313.475 485.148 313.56C484.954 313.644 484.804 313.769 484.698 313.933C484.592 314.093 484.539 314.273 484.539 314.471C484.539 314.774 484.654 315.027 484.882 315.23C485.114 315.432 485.453 315.533 485.896 315.533C486.336 315.533 486.727 315.439 487.07 315.249C487.412 315.055 487.663 314.791 487.824 314.458C487.947 314.201 488.008 313.821 488.008 313.319V312.902Z" fill="#9C9C9C"/>
+<path d="M495.437 316.274V315.426C495.01 316.092 494.382 316.425 493.553 316.425C493.016 316.425 492.522 316.278 492.069 315.983C491.621 315.687 491.273 315.276 491.023 314.749C490.778 314.218 490.655 313.608 490.655 312.921C490.655 312.25 490.767 311.643 490.991 311.099C491.215 310.551 491.552 310.131 492 309.84C492.448 309.549 492.949 309.404 493.503 309.404C493.908 309.404 494.27 309.49 494.587 309.663C494.904 309.832 495.162 310.053 495.36 310.327V307H496.496V316.274H495.437ZM491.828 312.921C491.828 313.781 492.01 314.424 492.374 314.85C492.737 315.276 493.166 315.489 493.661 315.489C494.16 315.489 494.583 315.287 494.929 314.882C495.28 314.473 495.456 313.851 495.456 313.016C495.456 312.096 495.278 311.422 494.923 310.992C494.568 310.561 494.13 310.346 493.61 310.346C493.103 310.346 492.678 310.553 492.336 310.966C491.998 311.38 491.828 312.031 491.828 312.921Z" fill="#9C9C9C"/>
+<path d="M497.982 313.49V312.345H501.489V313.49H497.982Z" fill="#9C9C9C"/>
+<path d="M505.373 315.255L505.538 316.261C505.217 316.328 504.929 316.362 504.675 316.362C504.261 316.362 503.94 316.297 503.712 316.166C503.483 316.035 503.323 315.865 503.23 315.654C503.137 315.439 503.09 314.989 503.09 314.306V310.441H502.253V309.556H503.09V307.892L504.225 307.209V309.556H505.373V310.441H504.225V314.37C504.225 314.694 504.244 314.903 504.282 314.996C504.325 315.089 504.39 315.162 504.479 315.217C504.572 315.272 504.703 315.299 504.872 315.299C504.999 315.299 505.166 315.285 505.373 315.255Z" fill="#9C9C9C"/>
+<path d="M506.625 316.274V307H507.767V310.327C508.299 309.712 508.971 309.404 509.783 309.404C510.282 309.404 510.715 309.503 511.083 309.701C511.451 309.895 511.713 310.165 511.869 310.511C512.03 310.857 512.11 311.358 512.11 312.016V316.274H510.969V312.016C510.969 311.447 510.844 311.034 510.595 310.776C510.35 310.515 510.001 310.384 509.548 310.384C509.21 310.384 508.891 310.473 508.591 310.65C508.295 310.823 508.084 311.059 507.957 311.358C507.83 311.658 507.767 312.071 507.767 312.598V316.274H506.625Z" fill="#9C9C9C"/>
+<path d="M513.971 316.274V309.556H514.999V310.574C515.261 310.098 515.502 309.783 515.721 309.632C515.946 309.48 516.191 309.404 516.457 309.404C516.842 309.404 517.233 309.526 517.63 309.771L517.237 310.827C516.958 310.663 516.679 310.58 516.4 310.58C516.151 310.58 515.926 310.656 515.728 310.808C515.529 310.956 515.387 311.162 515.303 311.428C515.176 311.833 515.113 312.276 515.113 312.756V316.274H513.971Z" fill="#9C9C9C"/>
+<path d="M518.014 312.915C518.014 311.671 518.36 310.749 519.054 310.15C519.633 309.653 520.339 309.404 521.172 309.404C522.097 309.404 522.854 309.707 523.442 310.315C524.029 310.918 524.323 311.753 524.323 312.82C524.323 313.684 524.192 314.365 523.93 314.863C523.672 315.356 523.294 315.74 522.795 316.014C522.3 316.288 521.759 316.425 521.172 316.425C520.229 316.425 519.466 316.124 518.882 315.521C518.303 314.918 518.014 314.049 518.014 312.915ZM519.187 312.915C519.187 313.775 519.375 314.42 519.751 314.85C520.127 315.276 520.601 315.489 521.172 315.489C521.738 315.489 522.209 315.274 522.586 314.844C522.962 314.414 523.15 313.758 523.15 312.877C523.15 312.046 522.96 311.418 522.579 310.992C522.203 310.561 521.734 310.346 521.172 310.346C520.601 310.346 520.127 310.559 519.751 310.985C519.375 311.411 519.187 312.054 519.187 312.915Z" fill="#9C9C9C"/>
+<path d="M530.211 316.274V315.287C529.687 316.046 528.974 316.425 528.074 316.425C527.676 316.425 527.304 316.349 526.958 316.198C526.615 316.046 526.36 315.856 526.19 315.628C526.026 315.396 525.909 315.114 525.842 314.781C525.795 314.557 525.772 314.203 525.772 313.718V309.556H526.913V313.281C526.913 313.876 526.937 314.277 526.983 314.483C527.055 314.783 527.207 315.019 527.44 315.192C527.672 315.361 527.96 315.445 528.302 315.445C528.644 315.445 528.966 315.358 529.266 315.186C529.566 315.008 529.777 314.77 529.9 314.471C530.027 314.167 530.09 313.729 530.09 313.155V309.556H531.232V316.274H530.211Z" fill="#9C9C9C"/>
+<path d="M532.947 316.83L534.057 316.995C534.103 317.336 534.232 317.585 534.443 317.741C534.727 317.952 535.113 318.057 535.604 318.057C536.132 318.057 536.54 317.952 536.828 317.741C537.115 317.53 537.31 317.235 537.411 316.856C537.47 316.624 537.498 316.137 537.493 315.394C536.995 315.98 536.373 316.274 535.629 316.274C534.703 316.274 533.987 315.94 533.479 315.274C532.972 314.608 532.719 313.809 532.719 312.877C532.719 312.236 532.835 311.645 533.067 311.105C533.3 310.561 533.636 310.142 534.076 309.847C534.519 309.551 535.039 309.404 535.635 309.404C536.43 309.404 537.086 309.724 537.601 310.365V309.556H538.654V315.363C538.654 316.409 538.546 317.149 538.33 317.583C538.119 318.022 537.781 318.367 537.316 318.62C536.855 318.873 536.287 319 535.61 319C534.807 319 534.158 318.819 533.663 318.456C533.169 318.098 532.93 317.556 532.947 316.83ZM533.892 312.794C533.892 313.676 534.067 314.319 534.418 314.724C534.769 315.129 535.209 315.331 535.737 315.331C536.261 315.331 536.701 315.131 537.056 314.73C537.411 314.325 537.589 313.693 537.589 312.832C537.589 312.01 537.405 311.39 537.037 310.973C536.673 310.555 536.234 310.346 535.718 310.346C535.211 310.346 534.779 310.553 534.424 310.966C534.069 311.375 533.892 311.985 533.892 312.794Z" fill="#9C9C9C"/>
+<path d="M540.515 316.274V307H541.656V310.327C542.189 309.712 542.861 309.404 543.673 309.404C544.172 309.404 544.605 309.503 544.973 309.701C545.341 309.895 545.603 310.165 545.759 310.511C545.92 310.857 546 311.358 546 312.016V316.274H544.859V312.016C544.859 311.447 544.734 311.034 544.484 310.776C544.239 310.515 543.891 310.384 543.438 310.384C543.1 310.384 542.781 310.473 542.481 310.65C542.185 310.823 541.973 311.059 541.847 311.358C541.72 311.658 541.656 312.071 541.656 312.598V316.274H540.515Z" fill="#9C9C9C"/>
+</svg>
diff --git a/public/img/usecases/datagrid/two-video.png b/public/img/usecases/datagrid/two-video.png
new file mode 100644
index 0000000..cc65187
--- /dev/null
+++ b/public/img/usecases/datagrid/two-video.png
Binary files differ
diff --git a/public/img/usecases/digital-hub/hero-image.svg b/public/img/usecases/digital-hub/hero-image.svg
new file mode 100644
index 0000000..8019008
--- /dev/null
+++ b/public/img/usecases/digital-hub/hero-image.svg
@@ -0,0 +1,17 @@
+<svg width="599" height="576" viewBox="0 0 599 576" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M1.154 456.405L359.921 663.54L359.921 784L1.15399 576.865L1.154 456.405Z" fill="#0070CC" stroke="white"/>
+<path d="M359.922 663.541L718.689 456.406L718.689 576.866L359.922 784.001L359.922 663.541Z" fill="#0070CC" stroke="white"/>
+<path d="M359.922 249.271L718.689 456.406L359.922 663.54L1.15409 456.406L359.922 249.271Z" fill="#0070CC" stroke="white"/>
+<path d="M117.287 179.988L359.921 320.073L359.921 600.243L117.287 460.158L117.287 179.988Z" fill="#0070CC" stroke="white"/>
+<rect width="280.17" height="280.17" transform="matrix(0.866025 -0.5 2.20305e-08 1 359.922 320.073)" fill="#0070CC" stroke="white"/>
+<path d="M359.922 39.9033L602.556 179.988L359.922 320.073L117.287 179.988L359.922 39.9033Z" fill="#0070CC" stroke="white"/>
+<path d="M261.314 59.0044L361.781 117.009L361.781 233.018L261.314 175.013L261.314 59.0044Z" fill="#0070CC" stroke="white"/>
+<rect width="116.009" height="116.009" transform="matrix(0.866025 -0.5 2.20305e-08 1 361.781 117.009)" fill="#0070CC" stroke="white"/>
+<path d="M361.781 0.999993L462.247 59.0045L361.781 117.009L261.314 59.0045L361.781 0.999993Z" fill="#0070CC" stroke="white"/>
+<path d="M80.34 332.785L180.807 390.79L180.807 506.799L80.34 448.794L80.34 332.785Z" fill="#0070CC" stroke="white"/>
+<rect width="116.009" height="116.009" transform="matrix(0.866025 -0.5 2.20305e-08 1 180.807 390.79)" fill="#0070CC" stroke="white"/>
+<path d="M180.807 274.781L281.273 332.785L180.807 390.79L80.3399 332.785L180.807 274.781Z" fill="#0070CC" stroke="white"/>
+<path d="M439.968 332.785L540.434 390.79L540.434 506.799L439.968 448.794L439.968 332.785Z" fill="#0070CC" stroke="white"/>
+<rect width="116.009" height="116.009" transform="matrix(0.866025 -0.5 2.20305e-08 1 540.434 390.79)" fill="#0070CC" stroke="white"/>
+<path d="M540.434 274.781L640.901 332.786L540.434 390.79L439.968 332.786L540.434 274.781Z" fill="#0070CC" stroke="white"/>
+</svg>
diff --git a/public/img/usecases/digital-hub/image.svg b/public/img/usecases/digital-hub/image.svg
new file mode 100644
index 0000000..b7244b9
--- /dev/null
+++ b/public/img/usecases/digital-hub/image.svg
@@ -0,0 +1,181 @@
+<svg width="620" height="445" viewBox="0 0 620 445" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="620" height="445" rx="10" fill="#F6F6F6"/>
+<path d="M70 99.5C70 90.9396 76.8417 84 85.2813 84H538.719C547.158 84 554 90.9396 554 99.5C554 108.06 547.158 115 538.719 115H85.2813C76.8417 115 70 108.06 70 99.5Z" fill="#E6E6E6"/>
+<path d="M127.841 92.4798L146 97.3521L146 70.8723L127.841 66L110 71.6302L110 98L127.841 92.4798Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M109 98L109 70.7412L127.329 65L146 69.9724L146 97.33L127.352 92.3638L109 98ZM110.109 96.4928L127.33 91.2038L144.891 95.8804L144.891 70.8313L127.354 66.1609L110.109 71.5625L110.109 96.4928Z" fill="#2D2D2D"/>
+<path d="M128.159 76.402L110 71.6341L110 103.232L128.159 108L146 102.49L146 71L128.159 76.402Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M146 70L146 103.222L127.671 109L109 103.995L109 70.6743L127.648 75.6726L146 70ZM144.891 71.517L127.67 76.8402L110.109 72.1333L110.109 103.131L127.646 107.832L144.891 102.395L144.891 71.517Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M127.206 107.841L127.206 76.5334L128.316 76.5334L128.316 107.841L127.206 107.841Z" fill="#2D2D2D"/>
+<path d="M249.841 92.4798L268 97.3521L268 70.8723L249.841 66L232 71.6302L232 98L249.841 92.4798Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M231 98L231 70.7412L249.824 65L269 69.9724L269 97.33L249.848 92.3638L231 98ZM232.139 96.4928L249.826 91.2038L267.861 95.8804L267.861 70.8313L249.85 66.1609L232.139 71.5625L232.139 96.4928Z" fill="#2D2D2D"/>
+<path d="M250.159 76.402L232 71.6341L232 103.232L250.159 108L268 102.49L268 71L250.159 76.402Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M269 70L269 103.222L250.176 109L231 103.995L231 70.6743L250.152 75.6726L269 70ZM267.861 71.517L250.174 76.8402L232.139 72.1333L232.139 103.131L250.15 107.832L267.861 102.395L267.861 71.517Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M249.319 107.841L249.319 76.5334L250.429 76.5334L250.429 107.841L249.319 107.841Z" fill="#2D2D2D"/>
+<path d="M371.841 92.4798L390 97.3521L390 70.8723L371.841 66L354 71.6302L354 98L371.841 92.4798Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M354 98L354 70.7412L372.329 65L391 69.9724L391 97.33L372.352 92.3638L354 98ZM355.109 96.4928L372.33 91.2038L389.891 95.8804L389.891 70.8313L372.354 66.1609L355.109 71.5625L355.109 96.4928Z" fill="#2D2D2D"/>
+<path d="M372.159 76.402L354 71.6341L354 103.232L372.159 108L390 102.49L390 71L372.159 76.402Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M391 70L391 103.222L372.671 109L354 103.995L354 70.6743L372.648 75.6726L391 70ZM389.891 71.517L372.67 76.8402L355.109 72.1333L355.109 103.131L372.646 107.832L389.891 102.395L389.891 71.517Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M371.432 107.841L371.432 76.5334L372.542 76.5334L372.542 107.841L371.432 107.841Z" fill="#2D2D2D"/>
+<path d="M493.841 92.4798L512 97.3521L512 70.8723L493.841 66L476 71.6302L476 98L493.841 92.4798Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M476 98L476 70.7412L494.329 65L513 69.9724L513 97.33L494.352 92.3638L476 98ZM477.109 96.4928L494.33 91.2038L511.891 95.8804L511.891 70.8313L494.354 66.1609L477.109 71.5625L477.109 96.4928Z" fill="#2D2D2D"/>
+<path d="M494.159 76.402L476 71.6341L476 103.232L494.159 108L512 102.49L512 71L494.159 76.402Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M513 70L513 103.222L494.671 109L476 103.995L476 70.6743L494.648 75.6726L513 70ZM511.891 71.517L494.67 76.8402L477.109 72.1333L477.109 103.131L494.646 107.832L511.891 102.395L511.891 71.517Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M493.545 107.841L493.545 76.5334L494.655 76.5334L494.655 107.841L493.545 107.841Z" fill="#2D2D2D"/>
+<path d="M459 51.3924L462.681 42H464.048L467.972 51.3924H466.526L465.408 48.5478H461.4L460.347 51.3924H459ZM461.766 47.5355H465.016L464.015 44.9343C463.71 44.1442 463.484 43.4949 463.335 42.9867C463.213 43.5889 463.041 44.1869 462.819 44.7806L461.766 47.5355Z" fill="#2D2D2D"/>
+<path d="M468.946 54V44.5884H470.019V45.4725C470.272 45.1265 470.557 44.8681 470.875 44.6973C471.194 44.5222 471.579 44.4346 472.033 44.4346C472.626 44.4346 473.149 44.5841 473.602 44.8831C474.055 45.1821 474.398 45.6049 474.629 46.1516C474.86 46.6941 474.975 47.2899 474.975 47.9391C474.975 48.6353 474.847 49.2632 474.589 49.8227C474.337 50.378 473.966 50.8051 473.478 51.1041C472.994 51.3988 472.484 51.5462 471.948 51.5462C471.555 51.5462 471.202 51.465 470.888 51.3027C470.579 51.1404 470.324 50.9354 470.123 50.6877V54H468.946ZM470.012 48.0288C470.012 48.9044 470.193 49.5515 470.555 49.9701C470.917 50.3887 471.355 50.598 471.869 50.598C472.392 50.598 472.839 50.3823 473.21 49.9509C473.585 49.5152 473.772 48.8425 473.772 47.9327C473.772 47.0657 473.589 46.4164 473.223 45.9851C472.861 45.5537 472.427 45.338 471.922 45.338C471.42 45.338 470.976 45.5686 470.588 46.0299C470.204 46.4869 470.012 47.1532 470.012 48.0288Z" fill="#2D2D2D"/>
+<path d="M476.512 54V44.5884H477.585V45.4725C477.838 45.1265 478.123 44.8681 478.441 44.6973C478.76 44.5222 479.145 44.4346 479.599 44.4346C480.192 44.4346 480.715 44.5841 481.168 44.8831C481.622 45.1821 481.964 45.6049 482.195 46.1516C482.426 46.6941 482.541 47.2899 482.541 47.9391C482.541 48.6353 482.413 49.2632 482.156 49.8227C481.903 50.378 481.532 50.8051 481.044 51.1041C480.56 51.3988 480.05 51.5462 479.514 51.5462C479.121 51.5462 478.768 51.465 478.454 51.3027C478.145 51.1404 477.89 50.9354 477.689 50.6877V54H476.512ZM477.578 48.0288C477.578 48.9044 477.759 49.5515 478.121 49.9701C478.483 50.3887 478.921 50.598 479.435 50.598C479.958 50.598 480.405 50.3823 480.776 49.9509C481.151 49.5152 481.338 48.8425 481.338 47.9327C481.338 47.0657 481.155 46.4164 480.789 45.9851C480.427 45.5537 479.993 45.338 479.488 45.338C478.986 45.338 478.542 45.5686 478.154 46.0299C477.77 46.4869 477.578 47.1532 477.578 48.0288Z" fill="#2D2D2D"/>
+<path d="M484.052 51.3924V42H485.229V51.3924H484.052Z" fill="#2D2D2D"/>
+<path d="M487.178 43.3262V42H488.355V43.3262H487.178ZM487.178 51.3924V44.5884H488.355V51.3924H487.178Z" fill="#2D2D2D"/>
+<path d="M494.797 48.9002L495.954 49.0475C495.828 49.8292 495.503 50.4421 494.98 50.8863C494.461 51.3262 493.823 51.5462 493.064 51.5462C492.114 51.5462 491.349 51.2429 490.769 50.6364C490.193 50.0256 489.906 49.1522 489.906 48.016C489.906 47.2814 490.03 46.6385 490.278 46.0876C490.527 45.5366 490.904 45.1244 491.41 44.851C491.92 44.5734 492.473 44.4346 493.071 44.4346C493.825 44.4346 494.442 44.6225 494.921 44.9984C495.401 45.37 495.708 45.8996 495.843 46.5873L494.699 46.7603C494.59 46.3033 494.396 45.9594 494.117 45.7288C493.842 45.4981 493.509 45.3828 493.116 45.3828C492.523 45.3828 492.042 45.5921 491.671 46.0107C491.301 46.425 491.115 47.0828 491.115 47.984C491.115 48.898 491.294 49.5622 491.652 49.9765C492.009 50.3908 492.475 50.598 493.051 50.598C493.513 50.598 493.899 50.4592 494.208 50.1815C494.518 49.9039 494.714 49.4768 494.797 48.9002Z" fill="#2D2D2D"/>
+<path d="M501.604 50.5531C501.168 50.9162 500.748 51.1725 500.342 51.3219C499.941 51.4714 499.51 51.5462 499.048 51.5462C498.285 51.5462 497.698 51.3647 497.289 51.0016C496.879 50.6343 496.674 50.1666 496.674 49.5985C496.674 49.2653 496.75 48.9621 496.903 48.6887C497.06 48.4111 497.262 48.189 497.511 48.0224C497.764 47.8558 498.047 47.7298 498.361 47.6444C498.592 47.5846 498.941 47.527 499.407 47.4714C500.358 47.3604 501.057 47.228 501.506 47.0742C501.511 46.9162 501.513 46.8158 501.513 46.7731C501.513 46.3033 501.402 45.9722 501.179 45.78C500.879 45.5195 500.432 45.3892 499.839 45.3892C499.285 45.3892 498.875 45.4853 498.61 45.6775C498.348 45.8655 498.154 46.2007 498.028 46.6834L496.877 46.5296C496.981 46.047 497.154 45.6583 497.393 45.3636C497.633 45.0646 497.98 44.8361 498.433 44.6781C498.886 44.5158 499.412 44.4346 500.009 44.4346C500.602 44.4346 501.083 44.5029 501.454 44.6396C501.825 44.7763 502.097 44.9493 502.271 45.1586C502.446 45.3636 502.568 45.6241 502.638 45.9402C502.677 46.1367 502.696 46.4912 502.696 47.0037V48.5414C502.696 49.6135 502.72 50.2926 502.768 50.5788C502.821 50.8607 502.921 51.1319 503.069 51.3924H501.84C501.718 51.1532 501.639 50.8735 501.604 50.5531ZM501.506 47.9776C501.079 48.1484 500.438 48.2936 499.584 48.4132C499.1 48.4816 498.758 48.5585 498.557 48.6439C498.357 48.7293 498.202 48.8553 498.093 49.0219C497.984 49.1842 497.929 49.3657 497.929 49.5665C497.929 49.874 498.047 50.1303 498.283 50.3353C498.522 50.5403 498.871 50.6428 499.329 50.6428C499.782 50.6428 500.185 50.5467 500.539 50.3545C500.892 50.158 501.151 49.8911 501.317 49.5537C501.443 49.2931 501.506 48.9087 501.506 48.4004V47.9776Z" fill="#2D2D2D"/>
+<path d="M507.209 50.3609L507.379 51.3796C507.047 51.4479 506.751 51.4821 506.489 51.4821C506.062 51.4821 505.731 51.4159 505.496 51.2835C505.26 51.1511 505.095 50.9781 504.999 50.7645C504.903 50.5467 504.855 50.0918 504.855 49.3999V45.4853H503.992V44.5884H504.855V42.9034L506.025 42.2114V44.5884H507.209V45.4853H506.025V49.464C506.025 49.7928 506.045 50.0043 506.084 50.0982C506.128 50.1922 506.195 50.267 506.287 50.3225C506.383 50.378 506.518 50.4058 506.692 50.4058C506.823 50.4058 506.995 50.3908 507.209 50.3609Z" fill="#2D2D2D"/>
+<path d="M508.484 43.3262V42H509.661V43.3262H508.484ZM508.484 51.3924V44.5884H509.661V51.3924H508.484Z" fill="#2D2D2D"/>
+<path d="M511.133 47.9904C511.133 46.7304 511.491 45.7971 512.205 45.1906C512.803 44.6866 513.531 44.4346 514.39 44.4346C515.344 44.4346 516.125 44.7421 516.73 45.3572C517.336 45.968 517.639 46.8137 517.639 47.8943C517.639 48.7699 517.504 49.4597 517.234 49.9637C516.968 50.4634 516.578 50.8521 516.064 51.1297C515.553 51.4074 514.995 51.5462 514.39 51.5462C513.417 51.5462 512.631 51.2408 512.029 50.63C511.432 50.0192 511.133 49.1393 511.133 47.9904ZM512.343 47.9904C512.343 48.8617 512.537 49.5152 512.925 49.9509C513.313 50.3823 513.801 50.598 514.39 50.598C514.974 50.598 515.46 50.3801 515.848 49.9445C516.236 49.5088 516.43 48.8446 516.43 47.9519C516.43 47.1105 516.234 46.4741 515.841 46.0427C515.453 45.607 514.969 45.3892 514.39 45.3892C513.801 45.3892 513.313 45.6049 512.925 46.0363C512.537 46.4677 512.343 47.1191 512.343 47.9904Z" fill="#2D2D2D"/>
+<path d="M519.137 51.3924V44.5884H520.197V45.5558C520.707 44.8083 521.443 44.4346 522.407 44.4346C522.825 44.4346 523.209 44.5093 523.558 44.6588C523.911 44.8041 524.175 44.9963 524.349 45.2355C524.523 45.4746 524.645 45.7587 524.715 46.0876C524.759 46.3011 524.78 46.6749 524.78 47.2088V51.3924H523.603V47.2536C523.603 46.7838 523.558 46.4335 523.466 46.2029C523.375 45.968 523.211 45.7822 522.976 45.6455C522.745 45.5045 522.472 45.4341 522.158 45.4341C521.657 45.4341 521.223 45.59 520.857 45.9018C520.495 46.2136 520.314 46.8051 520.314 47.6765V51.3924H519.137Z" fill="#2D2D2D"/>
+<path d="M526.233 49.3615L527.397 49.1821C527.462 49.6391 527.643 49.9893 527.939 50.2328C528.24 50.4762 528.659 50.598 529.195 50.598C529.735 50.598 530.136 50.4912 530.398 50.2776C530.66 50.0598 530.79 49.8057 530.79 49.5152C530.79 49.2547 530.675 49.0497 530.444 48.9002C530.282 48.7977 529.881 48.6674 529.241 48.5093C528.377 48.2958 527.778 48.1121 527.442 47.9584C527.111 47.8003 526.858 47.5846 526.684 47.3113C526.514 47.0336 526.429 46.7282 526.429 46.3951C526.429 46.0918 526.498 45.8121 526.638 45.5558C526.782 45.2952 526.976 45.0796 527.22 44.9087C527.403 44.7763 527.652 44.6652 527.965 44.5755C528.284 44.4816 528.624 44.4346 528.986 44.4346C529.53 44.4346 530.008 44.5115 530.418 44.6652C530.832 44.819 531.137 45.0283 531.333 45.2931C531.529 45.5537 531.664 45.9039 531.738 46.3438L530.588 46.4976C530.535 46.1474 530.383 45.874 530.13 45.6775C529.881 45.481 529.528 45.3828 529.071 45.3828C528.53 45.3828 528.144 45.4704 527.913 45.6455C527.682 45.8206 527.567 46.0256 527.567 46.2605C527.567 46.41 527.614 46.5446 527.71 46.6642C527.806 46.788 527.957 46.8906 528.162 46.9717C528.279 47.0144 528.626 47.1127 529.201 47.2664C530.034 47.4843 530.614 47.6636 530.941 47.8046C531.272 47.9413 531.531 48.142 531.719 48.4068C531.906 48.6716 532 49.0005 532 49.3935C532 49.7779 531.884 50.141 531.653 50.4826C531.427 50.8201 531.098 51.0828 530.666 51.2707C530.234 51.4544 529.746 51.5462 529.201 51.5462C528.299 51.5462 527.61 51.3625 527.135 50.9952C526.664 50.6279 526.363 50.0833 526.233 49.3615Z" fill="#2D2D2D"/>
+<path d="M339 48.7282L340.196 48.6227C340.252 49.1064 340.383 49.5044 340.588 49.8166C340.797 50.1245 341.119 50.3751 341.555 50.5686C341.991 50.7577 342.481 50.8522 343.025 50.8522C343.509 50.8522 343.936 50.7797 344.306 50.6346C344.676 50.4894 344.951 50.2916 345.13 50.0409C345.313 49.7858 345.404 49.5088 345.404 49.2098C345.404 48.9063 345.317 48.6425 345.143 48.4182C344.968 48.1895 344.681 47.9982 344.28 47.8443C344.023 47.7432 343.455 47.5871 342.574 47.376C341.694 47.1605 341.078 46.9582 340.725 46.7691C340.268 46.5273 339.926 46.2282 339.699 45.872C339.477 45.5114 339.366 45.1091 339.366 44.6649C339.366 44.1768 339.503 43.7216 339.778 43.2995C340.052 42.8729 340.453 42.5497 340.98 42.3298C341.507 42.1099 342.093 42 342.738 42C343.448 42 344.073 42.1165 344.613 42.3496C345.158 42.5783 345.576 42.9169 345.868 43.3654C346.16 43.814 346.317 44.3219 346.338 44.8892L345.123 44.9815C345.058 44.3703 344.836 43.9085 344.456 43.5963C344.082 43.2841 343.526 43.128 342.79 43.128C342.023 43.128 341.464 43.2709 341.111 43.5567C340.762 43.8382 340.588 44.179 340.588 44.5792C340.588 44.9266 340.712 45.2124 340.96 45.4367C341.204 45.6609 341.84 45.8918 342.869 46.1293C343.901 46.3624 344.609 46.5668 344.992 46.7427C345.55 47.0022 345.962 47.332 346.227 47.7322C346.493 48.128 346.626 48.5853 346.626 49.1042C346.626 49.6187 346.48 50.1047 346.188 50.562C345.896 51.015 345.476 51.369 344.927 51.624C344.382 51.8747 343.768 52 343.084 52C342.217 52 341.49 51.8725 340.902 51.6174C340.318 51.3624 339.858 50.9798 339.523 50.4697C339.192 49.9551 339.017 49.3747 339 48.7282Z" fill="#2D2D2D"/>
+<path d="M353.07 49.5792L354.285 49.7309C354.093 50.4477 353.738 51.004 353.22 51.3997C352.702 51.7955 352.039 51.9934 351.233 51.9934C350.218 51.9934 349.412 51.679 348.816 51.0501C348.223 50.4169 347.927 49.5308 347.927 48.3918C347.927 47.2133 348.227 46.2986 348.829 45.6478C349.43 44.9969 350.21 44.6715 351.168 44.6715C352.096 44.6715 352.854 44.9903 353.442 45.628C354.03 46.2656 354.324 47.1627 354.324 48.3193C354.324 48.3896 354.322 48.4952 354.318 48.6359H349.142C349.186 49.4055 349.402 49.9947 349.789 50.4037C350.177 50.8127 350.661 51.0172 351.24 51.0172C351.671 51.0172 352.039 50.9028 352.344 50.6741C352.649 50.4455 352.891 50.0805 353.07 49.5792ZM349.208 47.6596H353.083C353.03 47.0704 352.882 46.6284 352.638 46.3338C352.264 45.8764 351.778 45.6478 351.181 45.6478C350.641 45.6478 350.186 45.8303 349.815 46.1953C349.449 46.5602 349.247 47.0484 349.208 47.6596Z" fill="#2D2D2D"/>
+<path d="M355.867 51.8351V44.8298H356.926V45.8918C357.196 45.3949 357.444 45.0673 357.671 44.909C357.901 44.7507 358.154 44.6715 358.429 44.6715C358.825 44.6715 359.228 44.799 359.638 45.0541L359.232 46.1557C358.945 45.9842 358.657 45.8984 358.37 45.8984C358.113 45.8984 357.882 45.9776 357.677 46.1359C357.472 46.2898 357.326 46.5053 357.239 46.7823C357.109 47.2045 357.043 47.6662 357.043 48.1675V51.8351H355.867Z" fill="#2D2D2D"/>
+<path d="M362.376 51.8351L359.736 44.8298H360.978L362.467 49.0251C362.629 49.478 362.777 49.9485 362.912 50.4367C363.016 50.0673 363.162 49.6231 363.35 49.1042L364.892 44.8298H366.101L363.474 51.8351H362.376Z" fill="#2D2D2D"/>
+<path d="M367.258 43.5303V42.1649H368.434V43.5303H367.258ZM367.258 51.8351V44.8298H368.434V51.8351H367.258Z" fill="#2D2D2D"/>
+<path d="M374.871 49.2691L376.028 49.4208C375.902 50.2256 375.577 50.8566 375.054 51.314C374.536 51.7669 373.898 51.9934 373.14 51.9934C372.19 51.9934 371.425 51.6812 370.846 51.0567C370.271 50.4279 369.983 49.5286 369.983 48.3588C369.983 47.6025 370.107 46.9406 370.356 46.3734C370.604 45.8061 370.981 45.3817 371.486 45.1003C371.996 44.8144 372.549 44.6715 373.146 44.6715C373.9 44.6715 374.516 44.865 374.995 45.252C375.475 45.6346 375.782 46.1799 375.917 46.8879L374.773 47.066C374.664 46.5954 374.47 46.2414 374.192 46.004C373.917 45.7665 373.584 45.6478 373.192 45.6478C372.599 45.6478 372.118 45.8632 371.748 46.2942C371.377 46.7208 371.192 47.398 371.192 48.3259C371.192 49.2669 371.371 49.9507 371.728 50.3773C372.085 50.8039 372.551 51.0172 373.126 51.0172C373.588 51.0172 373.974 50.8742 374.283 50.5884C374.592 50.3026 374.788 49.8628 374.871 49.2691Z" fill="#2D2D2D"/>
+<path d="M381.897 49.5792L383.112 49.7309C382.92 50.4477 382.565 51.004 382.047 51.3997C381.528 51.7955 380.866 51.9934 380.06 51.9934C379.045 51.9934 378.239 51.679 377.642 51.0501C377.05 50.4169 376.754 49.5308 376.754 48.3918C376.754 47.2133 377.054 46.2986 377.655 45.6478C378.257 44.9969 379.036 44.6715 379.995 44.6715C380.923 44.6715 381.681 44.9903 382.269 45.628C382.857 46.2656 383.151 47.1627 383.151 48.3193C383.151 48.3896 383.149 48.4952 383.145 48.6359H377.969C378.013 49.4055 378.228 49.9947 378.616 50.4037C379.004 50.8127 379.487 51.0172 380.067 51.0172C380.498 51.0172 380.866 50.9028 381.171 50.6741C381.476 50.4455 381.718 50.0805 381.897 49.5792ZM378.034 47.6596H381.91C381.857 47.0704 381.709 46.6284 381.465 46.3338C381.091 45.8764 380.605 45.6478 380.008 45.6478C379.468 45.6478 379.013 45.8303 378.642 46.1953C378.276 46.5602 378.074 47.0484 378.034 47.6596Z" fill="#2D2D2D"/>
+<path d="M384.236 49.7441L385.4 49.5594C385.465 50.0299 385.646 50.3905 385.942 50.6412C386.243 50.8918 386.661 51.0172 387.197 51.0172C387.737 51.0172 388.138 50.9072 388.399 50.6873C388.66 50.4631 388.791 50.2014 388.791 49.9024C388.791 49.6341 388.676 49.423 388.445 49.2691C388.284 49.1636 387.883 49.0295 387.242 48.8668C386.38 48.6469 385.781 48.4578 385.445 48.2995C385.114 48.1368 384.862 47.9147 384.687 47.6332C384.517 47.3474 384.432 47.033 384.432 46.69C384.432 46.3777 384.502 46.0897 384.642 45.8259C384.785 45.5576 384.979 45.3355 385.223 45.1596C385.406 45.0233 385.654 44.909 385.968 44.8166C386.286 44.7199 386.626 44.6715 386.987 44.6715C387.532 44.6715 388.009 44.7507 388.419 44.909C388.832 45.0673 389.137 45.2828 389.333 45.5554C389.53 45.8237 389.665 46.1843 389.739 46.6372L388.589 46.7955C388.536 46.4349 388.384 46.1535 388.131 45.9512C387.883 45.7489 387.53 45.6478 387.072 45.6478C386.532 45.6478 386.147 45.7379 385.916 45.9182C385.685 46.0985 385.569 46.3096 385.569 46.5515C385.569 46.7054 385.617 46.8439 385.713 46.967C385.809 47.0945 385.959 47.2001 386.164 47.2836C386.282 47.3276 386.628 47.4288 387.203 47.5871C388.035 47.8113 388.615 47.996 388.941 48.1412C389.272 48.2819 389.532 48.4886 389.719 48.7612C389.906 49.0339 390 49.3725 390 49.777C390 50.1728 389.885 50.5466 389.654 50.8984C389.427 51.2458 389.098 51.5163 388.667 51.7098C388.236 51.8989 387.748 51.9934 387.203 51.9934C386.301 51.9934 385.613 51.8043 385.138 51.4261C384.668 51.0479 384.367 50.4872 384.236 49.7441Z" fill="#2D2D2D"/>
+<path d="M88 51.8351V42.1649H91.278C92.018 42.1649 92.5827 42.2111 92.9721 42.3034C93.5174 42.431 93.9826 42.6618 94.3677 42.996C94.8697 43.427 95.244 43.9789 95.4907 44.6517C95.7417 45.3201 95.8671 46.0853 95.8671 46.9472C95.8671 47.6816 95.7828 48.3325 95.614 48.8997C95.4452 49.467 95.2289 49.9376 94.9649 50.3113C94.7009 50.6807 94.411 50.9732 94.0951 51.1887C93.7835 51.3997 93.4049 51.5602 92.9592 51.6702C92.5178 51.7801 92.0093 51.8351 91.4338 51.8351H88ZM89.2593 50.6939H91.291C91.9184 50.6939 92.4096 50.6346 92.7644 50.5158C93.1236 50.3971 93.4092 50.23 93.6212 50.0145C93.9198 49.7111 94.1513 49.3043 94.3158 48.7942C94.4846 48.2797 94.5689 47.6574 94.5689 46.9274C94.5689 45.916 94.4045 45.1398 94.0756 44.5989C93.7511 44.0537 93.3551 43.6887 92.8878 43.504C92.5502 43.372 92.0071 43.3061 91.2585 43.3061H89.2593V50.6939Z" fill="#2D2D2D"/>
+<path d="M102.067 50.971C101.634 51.3448 101.216 51.6086 100.814 51.7625C100.416 51.9164 99.9872 51.9934 99.5285 51.9934C98.7712 51.9934 98.1892 51.8065 97.7824 51.4327C97.3757 51.0545 97.1723 50.573 97.1723 49.9881C97.1723 49.6451 97.248 49.3329 97.3995 49.0515C97.5552 48.7656 97.7565 48.5369 98.0031 48.3654C98.2541 48.1939 98.5354 48.0642 98.847 47.9763C99.0763 47.9147 99.4225 47.8553 99.8855 47.7982C100.829 47.6838 101.523 47.5475 101.969 47.3892C101.973 47.2265 101.976 47.1231 101.976 47.0792C101.976 46.5954 101.865 46.2546 101.645 46.0567C101.346 45.7885 100.902 45.6544 100.314 45.6544C99.7644 45.6544 99.3576 45.7533 99.0936 45.9512C98.834 46.1447 98.6414 46.4899 98.5159 46.9868L97.3735 46.8285C97.4774 46.3316 97.6483 45.9314 97.8863 45.628C98.1243 45.3201 98.4683 45.0849 98.9184 44.9222C99.3684 44.7551 99.8899 44.6715 100.483 44.6715C101.071 44.6715 101.549 44.7419 101.917 44.8826C102.285 45.0233 102.556 45.2014 102.729 45.4169C102.902 45.628 103.023 45.8962 103.092 46.2216C103.131 46.4239 103.151 46.7889 103.151 47.3166V48.8997C103.151 50.0035 103.174 50.7027 103.222 50.9974C103.274 51.2876 103.373 51.5668 103.521 51.8351H102.3C102.179 51.5888 102.101 51.3008 102.067 50.971ZM101.969 48.3193C101.545 48.4952 100.909 48.6447 100.061 48.7678C99.5805 48.8382 99.2408 48.9173 99.0417 49.0053C98.8426 49.0932 98.689 49.223 98.5808 49.3945C98.4727 49.5616 98.4186 49.7485 98.4186 49.9551C98.4186 50.2718 98.5354 50.5356 98.7691 50.7467C99.0071 50.9578 99.3533 51.0633 99.8076 51.0633C100.258 51.0633 100.658 50.9644 101.008 50.7665C101.359 50.5642 101.616 50.2894 101.781 49.942C101.906 49.6737 101.969 49.2779 101.969 48.7546V48.3193Z" fill="#2D2D2D"/>
+<path d="M107.63 50.7731L107.799 51.8219C107.47 51.8923 107.175 51.9274 106.916 51.9274C106.492 51.9274 106.163 51.8593 105.929 51.723C105.695 51.5866 105.531 51.4085 105.436 51.1887C105.341 50.9644 105.293 50.496 105.293 49.7836V45.7533H104.436V44.8298H105.293V43.095L106.455 42.3826V44.8298H107.63V45.7533H106.455V49.8496C106.455 50.1882 106.474 50.4059 106.513 50.5026C106.557 50.5994 106.624 50.6763 106.715 50.7335C106.81 50.7907 106.944 50.8193 107.117 50.8193C107.247 50.8193 107.418 50.8039 107.63 50.7731Z" fill="#2D2D2D"/>
+<path d="M113.388 50.971C112.955 51.3448 112.537 51.6086 112.135 51.7625C111.737 51.9164 111.308 51.9934 110.85 51.9934C110.092 51.9934 109.51 51.8065 109.104 51.4327C108.697 51.0545 108.494 50.573 108.494 49.9881C108.494 49.6451 108.569 49.3329 108.721 49.0515C108.876 48.7656 109.078 48.5369 109.324 48.3654C109.575 48.1939 109.857 48.0642 110.168 47.9763C110.398 47.9147 110.744 47.8553 111.207 47.7982C112.15 47.6838 112.845 47.5475 113.29 47.3892C113.295 47.2265 113.297 47.1231 113.297 47.0792C113.297 46.5954 113.187 46.2546 112.966 46.0567C112.667 45.7885 112.224 45.6544 111.635 45.6544C111.086 45.6544 110.679 45.7533 110.415 45.9512C110.155 46.1447 109.963 46.4899 109.837 46.9868L108.695 46.8285C108.799 46.3316 108.97 45.9314 109.208 45.628C109.446 45.3201 109.79 45.0849 110.24 44.9222C110.69 44.7551 111.211 44.6715 111.804 44.6715C112.392 44.6715 112.871 44.7419 113.238 44.8826C113.606 45.0233 113.877 45.2014 114.05 45.4169C114.223 45.628 114.344 45.8962 114.413 46.2216C114.452 46.4239 114.472 46.7889 114.472 47.3166V48.8997C114.472 50.0035 114.496 50.7027 114.543 50.9974C114.595 51.2876 114.695 51.5668 114.842 51.8351H113.621C113.5 51.5888 113.422 51.3008 113.388 50.971ZM113.29 48.3193C112.866 48.4952 112.23 48.6447 111.382 48.7678C110.902 48.8382 110.562 48.9173 110.363 49.0053C110.164 49.0932 110.01 49.223 109.902 49.3945C109.794 49.5616 109.74 49.7485 109.74 49.9551C109.74 50.2718 109.857 50.5356 110.09 50.7467C110.328 50.9578 110.675 51.0633 111.129 51.0633C111.579 51.0633 111.979 50.9644 112.33 50.7665C112.68 50.5642 112.938 50.2894 113.102 49.942C113.228 49.6737 113.29 49.2779 113.29 48.7546V48.3193Z" fill="#2D2D2D"/>
+<path d="M119.932 48.7282L121.119 48.6227C121.176 49.1064 121.306 49.5044 121.509 49.8166C121.717 50.1245 122.037 50.3751 122.47 50.5686C122.902 50.7577 123.389 50.8522 123.93 50.8522C124.41 50.8522 124.835 50.7797 125.202 50.6346C125.57 50.4894 125.843 50.2916 126.02 50.0409C126.202 49.7858 126.293 49.5088 126.293 49.2098C126.293 48.9063 126.206 48.6425 126.033 48.4182C125.86 48.1895 125.574 47.9982 125.176 47.8443C124.921 47.7432 124.356 47.5871 123.482 47.376C122.608 47.1605 121.996 46.9582 121.645 46.7691C121.191 46.5273 120.851 46.2282 120.626 45.872C120.405 45.5114 120.295 45.1091 120.295 44.6649C120.295 44.1768 120.431 43.7216 120.704 43.2995C120.977 42.8729 121.375 42.5497 121.898 42.3298C122.422 42.1099 123.004 42 123.644 42C124.35 42 124.971 42.1165 125.507 42.3496C126.048 42.5783 126.464 42.9169 126.754 43.3654C127.044 43.814 127.199 44.3219 127.221 44.8892L126.014 44.9815C125.949 44.3703 125.728 43.9085 125.352 43.5963C124.979 43.2841 124.428 43.128 123.696 43.128C122.935 43.128 122.379 43.2709 122.028 43.5567C121.682 43.8382 121.509 44.179 121.509 44.5792C121.509 44.9266 121.632 45.2124 121.879 45.4367C122.121 45.6609 122.753 45.8918 123.774 46.1293C124.8 46.3624 125.503 46.5668 125.884 46.7427C126.438 47.0022 126.847 47.332 127.111 47.7322C127.375 48.128 127.507 48.5853 127.507 49.1042C127.507 49.6187 127.362 50.1047 127.072 50.562C126.782 51.015 126.364 51.369 125.819 51.624C125.278 51.8747 124.668 52 123.989 52C123.127 52 122.405 51.8725 121.82 51.6174C121.241 51.3624 120.784 50.9798 120.451 50.4697C120.122 49.9551 119.949 49.3747 119.932 48.7282Z" fill="#2D2D2D"/>
+<path d="M131.739 50.7731L131.908 51.8219C131.579 51.8923 131.285 51.9274 131.025 51.9274C130.601 51.9274 130.272 51.8593 130.039 51.723C129.805 51.5866 129.64 51.4085 129.545 51.1887C129.45 50.9644 129.402 50.496 129.402 49.7836V45.7533H128.546V44.8298H129.402V43.095L130.564 42.3826V44.8298H131.739V45.7533H130.564V49.8496C130.564 50.1882 130.584 50.4059 130.623 50.5026C130.666 50.5994 130.733 50.6763 130.824 50.7335C130.919 50.7907 131.053 50.8193 131.226 50.8193C131.356 50.8193 131.527 50.8039 131.739 50.7731Z" fill="#2D2D2D"/>
+<path d="M132.986 51.8351V44.8298H134.038V45.8918C134.306 45.3949 134.552 45.0673 134.777 44.909C135.007 44.7507 135.258 44.6715 135.53 44.6715C135.924 44.6715 136.325 44.799 136.731 45.0541L136.329 46.1557C136.043 45.9842 135.758 45.8984 135.472 45.8984C135.217 45.8984 134.987 45.9776 134.784 46.1359C134.581 46.2898 134.436 46.5053 134.349 46.7823C134.219 47.2045 134.154 47.6662 134.154 48.1675V51.8351H132.986Z" fill="#2D2D2D"/>
+<path d="M142.256 49.5792L143.463 49.7309C143.273 50.4477 142.92 51.004 142.405 51.3997C141.89 51.7955 141.232 51.9934 140.432 51.9934C139.423 51.9934 138.623 51.679 138.03 51.0501C137.441 50.4169 137.147 49.5308 137.147 48.3918C137.147 47.2133 137.446 46.2986 138.043 45.6478C138.64 44.9969 139.415 44.6715 140.367 44.6715C141.288 44.6715 142.041 44.9903 142.626 45.628C143.21 46.2656 143.502 47.1627 143.502 48.3193C143.502 48.3896 143.5 48.4952 143.495 48.6359H138.354C138.398 49.4055 138.612 49.9947 138.997 50.4037C139.382 50.8127 139.863 51.0172 140.438 51.0172C140.867 51.0172 141.232 50.9028 141.535 50.6741C141.838 50.4455 142.078 50.0805 142.256 49.5792ZM138.419 47.6596H142.269C142.217 47.0704 142.07 46.6284 141.827 46.3338C141.455 45.8764 140.973 45.6478 140.38 45.6478C139.843 45.6478 139.391 45.8303 139.023 46.1953C138.66 46.5602 138.458 47.0484 138.419 47.6596Z" fill="#2D2D2D"/>
+<path d="M149.545 50.971C149.113 51.3448 148.695 51.6086 148.293 51.7625C147.895 51.9164 147.466 51.9934 147.007 51.9934C146.25 51.9934 145.668 51.8065 145.261 51.4327C144.855 51.0545 144.651 50.573 144.651 49.9881C144.651 49.6451 144.727 49.3329 144.878 49.0515C145.034 48.7656 145.235 48.5369 145.482 48.3654C145.733 48.1939 146.014 48.0642 146.326 47.9763C146.555 47.9147 146.901 47.8553 147.364 47.7982C148.308 47.6838 149.002 47.5475 149.448 47.3892C149.452 47.2265 149.455 47.1231 149.455 47.0792C149.455 46.5954 149.344 46.2546 149.124 46.0567C148.825 45.7885 148.381 45.6544 147.793 45.6544C147.243 45.6544 146.837 45.7533 146.573 45.9512C146.313 46.1447 146.12 46.4899 145.995 46.9868L144.852 46.8285C144.956 46.3316 145.127 45.9314 145.365 45.628C145.603 45.3201 145.947 45.0849 146.397 44.9222C146.847 44.7551 147.369 44.6715 147.962 44.6715C148.55 44.6715 149.028 44.7419 149.396 44.8826C149.764 45.0233 150.034 45.2014 150.208 45.4169C150.381 45.628 150.502 45.8962 150.571 46.2216C150.61 46.4239 150.629 46.7889 150.629 47.3166V48.8997C150.629 50.0035 150.653 50.7027 150.701 50.9974C150.753 51.2876 150.852 51.5668 150.999 51.8351H149.779C149.658 51.5888 149.58 51.3008 149.545 50.971ZM149.448 48.3193C149.024 48.4952 148.388 48.6447 147.54 48.7678C147.059 48.8382 146.72 48.9173 146.521 49.0053C146.322 49.0932 146.168 49.223 146.06 49.3945C145.952 49.5616 145.898 49.7485 145.898 49.9551C145.898 50.2718 146.014 50.5356 146.248 50.7467C146.486 50.9578 146.832 51.0633 147.287 51.0633C147.737 51.0633 148.137 50.9644 148.487 50.7665C148.838 50.5642 149.095 50.2894 149.26 49.942C149.385 49.6737 149.448 49.2779 149.448 48.7546V48.3193Z" fill="#2D2D2D"/>
+<path d="M152.558 51.8351V44.8298H153.603V45.8127C153.819 45.4697 154.107 45.1948 154.466 44.9881C154.825 44.777 155.234 44.6715 155.693 44.6715C156.204 44.6715 156.621 44.7792 156.946 44.9947C157.275 45.2102 157.506 45.5114 157.64 45.8984C158.185 45.0805 158.895 44.6715 159.769 44.6715C160.453 44.6715 160.979 44.865 161.347 45.252C161.714 45.6346 161.898 46.226 161.898 47.0264V51.8351H160.736V47.4222C160.736 46.9472 160.698 46.6064 160.62 46.3997C160.546 46.1887 160.41 46.0193 160.211 45.8918C160.012 45.7643 159.778 45.7005 159.51 45.7005C159.025 45.7005 158.623 45.8654 158.302 46.1953C157.982 46.5207 157.822 47.044 157.822 47.7652V51.8351H156.654V47.2836C156.654 46.7559 156.558 46.3602 156.368 46.0963C156.178 45.8325 155.866 45.7005 155.433 45.7005C155.104 45.7005 154.799 45.7885 154.518 45.9644C154.241 46.1403 154.04 46.3975 153.914 46.7361C153.789 47.0748 153.726 47.5629 153.726 48.2005V51.8351H152.558Z" fill="#2D2D2D"/>
+<path d="M163.275 49.7441L164.43 49.5594C164.495 50.0299 164.675 50.3905 164.969 50.6412C165.268 50.8918 165.683 51.0172 166.215 51.0172C166.752 51.0172 167.15 50.9072 167.41 50.6873C167.669 50.4631 167.799 50.2014 167.799 49.9024C167.799 49.6341 167.684 49.423 167.455 49.2691C167.295 49.1636 166.897 49.0295 166.261 48.8668C165.404 48.6469 164.809 48.4578 164.476 48.2995C164.147 48.1368 163.896 47.9147 163.723 47.6332C163.554 47.3474 163.47 47.033 163.47 46.69C163.47 46.3777 163.539 46.0897 163.677 45.8259C163.82 45.5576 164.013 45.3355 164.255 45.1596C164.437 45.0233 164.683 44.909 164.995 44.8166C165.311 44.7199 165.648 44.6715 166.008 44.6715C166.549 44.6715 167.022 44.7507 167.429 44.909C167.84 45.0673 168.143 45.2828 168.338 45.5554C168.533 45.8237 168.667 46.1843 168.74 46.6372L167.598 46.7955C167.546 46.4349 167.395 46.1535 167.144 45.9512C166.897 45.7489 166.546 45.6478 166.092 45.6478C165.555 45.6478 165.172 45.7379 164.943 45.9182C164.714 46.0985 164.599 46.3096 164.599 46.5515C164.599 46.7054 164.647 46.8439 164.742 46.967C164.837 47.0945 164.986 47.2001 165.19 47.2836C165.307 47.3276 165.651 47.4288 166.222 47.5871C167.048 47.8113 167.624 47.996 167.948 48.1412C168.277 48.2819 168.535 48.4886 168.721 48.7612C168.907 49.0339 169 49.3725 169 49.777C169 50.1728 168.885 50.5466 168.656 50.8984C168.431 51.2458 168.104 51.5163 167.676 51.7098C167.247 51.8989 166.763 51.9934 166.222 51.9934C165.326 51.9934 164.642 51.8043 164.171 51.4261C163.703 51.0479 163.405 50.4872 163.275 49.7441Z" fill="#2D2D2D"/>
+<path d="M234 51.8389L237.665 42H239.026L242.931 51.8389H241.493L240.38 48.8591H236.389L235.341 51.8389H234ZM236.754 47.7987H239.989L238.993 45.0738C238.689 44.2461 238.464 43.566 238.316 43.0336C238.194 43.6644 238.023 44.2908 237.802 44.9128L236.754 47.7987Z" fill="#2D2D2D"/>
+<path d="M244.052 51.8389V42H247.652C248.285 42 248.769 42.0313 249.103 42.094C249.572 42.1745 249.965 42.3289 250.281 42.557C250.598 42.7808 250.852 43.0962 251.043 43.5034C251.238 43.9105 251.336 44.3579 251.336 44.8456C251.336 45.6823 251.078 46.3915 250.561 46.9732C250.045 47.5503 249.112 47.8389 247.762 47.8389H245.314V51.8389H244.052ZM245.314 46.6779H247.782C248.598 46.6779 249.177 46.5213 249.52 46.2081C249.863 45.8949 250.034 45.4541 250.034 44.8859C250.034 44.4743 249.932 44.123 249.728 43.8322C249.529 43.5369 249.264 43.3423 248.934 43.2483C248.721 43.1902 248.329 43.1611 247.756 43.1611H245.314V46.6779Z" fill="#2D2D2D"/>
+<path d="M253.27 51.8389V42H254.533V51.8389H253.27Z" fill="#2D2D2D"/>
+<path d="M256.258 49.7114L257.417 49.5235C257.482 50.0022 257.662 50.3691 257.957 50.6242C258.257 50.8792 258.673 51.0067 259.207 51.0067C259.745 51.0067 260.145 50.8949 260.405 50.6711C260.665 50.443 260.796 50.1767 260.796 49.8725C260.796 49.5996 260.681 49.3848 260.451 49.2282C260.29 49.1208 259.891 48.9843 259.253 48.8188C258.394 48.5951 257.797 48.4027 257.463 48.2416C257.133 48.0761 256.881 47.8501 256.708 47.5638C256.538 47.2729 256.454 46.953 256.454 46.604C256.454 46.2864 256.523 45.9933 256.662 45.7248C256.805 45.4519 256.998 45.226 257.241 45.047C257.424 44.9083 257.671 44.7919 257.983 44.698C258.3 44.5996 258.639 44.5503 258.999 44.5503C259.541 44.5503 260.017 44.6309 260.425 44.7919C260.837 44.953 261.141 45.1723 261.336 45.4497C261.531 45.7226 261.666 46.0895 261.74 46.5503L260.594 46.7114C260.542 46.3445 260.39 46.0582 260.138 45.8523C259.891 45.6465 259.539 45.5436 259.084 45.5436C258.545 45.5436 258.161 45.6353 257.931 45.8188C257.701 46.0022 257.586 46.217 257.586 46.4631C257.586 46.6197 257.634 46.7606 257.73 46.8859C257.825 47.0157 257.975 47.123 258.179 47.2081C258.296 47.2528 258.641 47.3557 259.214 47.5168C260.043 47.745 260.62 47.9329 260.945 48.0805C261.275 48.2237 261.533 48.434 261.72 48.7114C261.907 48.9888 262 49.3333 262 49.745C262 50.1477 261.885 50.528 261.655 50.8859C261.429 51.2394 261.102 51.5145 260.672 51.7114C260.242 51.9038 259.756 52 259.214 52C258.315 52 257.63 51.8076 257.157 51.4228C256.688 51.038 256.389 50.4676 256.258 49.7114Z" fill="#2D2D2D"/>
+<path d="M300 142.722L301.013 142.632C301.061 143.043 301.172 143.381 301.345 143.646C301.522 143.908 301.795 144.121 302.164 144.285C302.533 144.446 302.948 144.526 303.409 144.526C303.819 144.526 304.181 144.465 304.494 144.341C304.808 144.218 305.04 144.05 305.191 143.837C305.346 143.62 305.424 143.385 305.424 143.131C305.424 142.873 305.35 142.649 305.203 142.458C305.055 142.264 304.811 142.101 304.472 141.971C304.254 141.885 303.773 141.752 303.027 141.573C302.282 141.39 301.76 141.218 301.461 141.057C301.074 140.852 300.784 140.598 300.592 140.295C300.404 139.989 300.31 139.647 300.31 139.27C300.31 138.855 300.426 138.468 300.659 138.11C300.891 137.747 301.231 137.473 301.677 137.286C302.123 137.099 302.62 137.006 303.166 137.006C303.767 137.006 304.297 137.105 304.754 137.303C305.215 137.497 305.57 137.785 305.817 138.166C306.064 138.547 306.197 138.978 306.215 139.46L305.186 139.539C305.131 139.019 304.942 138.627 304.621 138.362C304.304 138.097 303.834 137.964 303.21 137.964C302.561 137.964 302.087 138.085 301.788 138.328C301.493 138.567 301.345 138.857 301.345 139.197C301.345 139.492 301.45 139.735 301.66 139.925C301.867 140.116 302.406 140.312 303.277 140.514C304.151 140.712 304.751 140.885 305.075 141.035C305.548 141.255 305.896 141.535 306.121 141.875C306.346 142.212 306.459 142.6 306.459 143.041C306.459 143.478 306.335 143.891 306.088 144.28C305.841 144.664 305.485 144.965 305.02 145.182C304.559 145.395 304.038 145.501 303.459 145.501C302.725 145.501 302.109 145.393 301.611 145.176C301.116 144.96 300.727 144.634 300.443 144.201C300.162 143.764 300.015 143.271 300 142.722Z" fill="#9C9C9C"/>
+<path d="M314.188 144.481C314.686 144.829 315.145 145.083 315.566 145.243L315.251 146C314.668 145.787 314.086 145.451 313.507 144.991C312.906 145.331 312.242 145.501 311.515 145.501C310.78 145.501 310.114 145.322 309.517 144.963C308.919 144.605 308.458 144.1 308.133 143.45C307.812 142.8 307.652 142.068 307.652 141.253C307.652 140.443 307.814 139.705 308.139 139.04C308.463 138.375 308.925 137.869 309.522 137.521C310.124 137.174 310.795 137 311.537 137C312.286 137 312.961 137.181 313.563 137.544C314.164 137.902 314.622 138.407 314.935 139.057C315.252 139.703 315.411 140.433 315.411 141.248C315.411 141.924 315.31 142.533 315.107 143.075C314.904 143.613 314.598 144.082 314.188 144.481ZM311.825 143.092C312.445 143.267 312.956 143.529 313.358 143.876C313.989 143.293 314.304 142.417 314.304 141.248C314.304 140.583 314.192 140.002 313.967 139.505C313.745 139.008 313.419 138.623 312.987 138.351C312.559 138.074 312.077 137.936 311.542 137.936C310.742 137.936 310.078 138.214 309.55 138.771C309.022 139.324 308.758 140.151 308.758 141.253C308.758 142.322 309.019 143.142 309.539 143.714C310.063 144.285 310.731 144.571 311.542 144.571C311.926 144.571 312.288 144.498 312.627 144.352C312.291 144.132 311.937 143.975 311.565 143.882L311.825 143.092Z" fill="#9C9C9C"/>
+<path d="M316.93 145.361V137.146H318.004V144.392H322V145.361H316.93Z" fill="#9C9C9C"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M172 128.131V106H173.107V128.131C173.107 155.326 195.165 177.372 222.375 177.372H232.11L229.532 174.796C229.316 174.58 229.316 174.23 229.532 174.013C229.748 173.797 230.099 173.797 230.315 174.013L233.838 177.534C234.054 177.751 234.054 178.101 233.838 178.317L230.315 181.838C230.099 182.054 229.748 182.054 229.532 181.838C229.316 181.622 229.316 181.272 229.532 181.055L232.11 178.479H222.375C194.554 178.479 172 155.937 172 128.131Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M457 128.131V106H455.893V128.131C455.893 155.326 433.835 177.372 406.625 177.372H396.89L399.468 174.796C399.684 174.58 399.684 174.23 399.468 174.013C399.252 173.797 398.901 173.797 398.685 174.013L395.162 177.534C394.946 177.751 394.946 178.101 395.162 178.317L398.685 181.838C398.901 182.054 399.252 182.054 399.468 181.838C399.684 181.622 399.684 181.272 399.468 181.055L396.89 178.479H406.625C434.446 178.479 457 155.937 457 128.131Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M310.457 166.103L310.457 153L311.543 153L311.543 166.103L314.073 163.516C314.285 163.299 314.629 163.299 314.841 163.516C315.053 163.733 315.053 164.085 314.841 164.302L311.384 167.837C311.172 168.054 310.828 168.054 310.616 167.837L307.159 164.302C306.947 164.085 306.947 163.733 307.159 163.516C307.371 163.299 307.715 163.299 307.927 163.516L310.457 166.103Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M310 128L310 106L311 106L311 128L310 128Z" fill="#2D2D2D"/>
+<path d="M87 128H200V157H87V128Z" fill="#F6F6F6"/>
+<path d="M432 128H546V157H432V128Z" fill="#F6F6F6"/>
+<path d="M93.9495 142.254L94.9969 142.517C94.7774 143.374 94.3814 144.028 93.8092 144.48C93.2405 144.928 92.544 145.152 91.7198 145.152C90.8668 145.152 90.1721 144.98 89.6359 144.636C89.1032 144.288 88.6965 143.786 88.4157 143.13C88.1386 142.474 88 141.77 88 141.017C88 140.196 88.1566 139.481 88.4697 138.871C88.7864 138.258 89.2345 137.794 89.814 137.479C90.3971 137.16 91.0378 137 91.736 137C92.5278 137 93.1937 137.201 93.7336 137.602C94.2735 138.004 94.6496 138.568 94.8619 139.296L93.8308 139.538C93.6472 138.965 93.3809 138.547 93.0317 138.285C92.6826 138.023 92.2435 137.893 91.7144 137.893C91.1061 137.893 90.5968 138.038 90.1865 138.328C89.7798 138.619 89.4937 139.009 89.3281 139.5C89.1626 139.988 89.0798 140.492 89.0798 141.012C89.0798 141.682 89.1769 142.268 89.3713 142.77C89.5693 143.268 89.8752 143.641 90.2891 143.888C90.703 144.136 91.1511 144.259 91.6334 144.259C92.2201 144.259 92.7168 144.091 93.1235 143.754C93.5302 143.417 93.8056 142.917 93.9495 142.254Z" fill="#9C9C9C"/>
+<path d="M95.9173 142.162C95.9173 141.105 96.2124 140.321 96.8027 139.812C97.2958 139.389 97.8969 139.178 98.6059 139.178C99.3942 139.178 100.038 139.436 100.539 139.952C101.039 140.465 101.289 141.175 101.289 142.082C101.289 142.816 101.178 143.395 100.954 143.818C100.735 144.238 100.413 144.564 99.988 144.797C99.5669 145.03 99.1062 145.147 98.6059 145.147C97.8033 145.147 97.1536 144.89 96.657 144.378C96.1639 143.865 95.9173 143.127 95.9173 142.162ZM96.9161 142.162C96.9161 142.894 97.0763 143.442 97.3966 143.808C97.7169 144.17 98.12 144.351 98.6059 144.351C99.0882 144.351 99.4896 144.168 99.8099 143.802C100.13 143.437 100.29 142.879 100.29 142.13C100.29 141.424 100.128 140.89 99.8045 140.528C99.4842 140.162 99.0846 139.979 98.6059 139.979C98.12 139.979 97.7169 140.16 97.3966 140.522C97.0763 140.884 96.9161 141.431 96.9161 142.162Z" fill="#9C9C9C"/>
+<path d="M102.544 145.018V139.307H103.414V140.108C103.593 139.828 103.833 139.604 104.132 139.436C104.43 139.264 104.77 139.178 105.152 139.178C105.577 139.178 105.924 139.266 106.194 139.441C106.467 139.617 106.66 139.863 106.772 140.178C107.225 139.511 107.815 139.178 108.542 139.178C109.111 139.178 109.548 139.336 109.854 139.651C110.16 139.963 110.313 140.445 110.313 141.098V145.018H109.347V141.42C109.347 141.033 109.314 140.755 109.25 140.587C109.188 140.415 109.075 140.277 108.91 140.173C108.744 140.069 108.55 140.017 108.326 140.017C107.923 140.017 107.589 140.151 107.322 140.42C107.056 140.685 106.923 141.112 106.923 141.7V145.018H105.951V141.307C105.951 140.877 105.872 140.554 105.713 140.339C105.555 140.124 105.296 140.017 104.936 140.017C104.662 140.017 104.409 140.088 104.175 140.232C103.944 140.375 103.777 140.585 103.673 140.861C103.568 141.137 103.516 141.535 103.516 142.055V145.018H102.544Z" fill="#9C9C9C"/>
+<path d="M111.865 147.206V139.307H112.751V140.049C112.959 139.759 113.195 139.542 113.458 139.398C113.721 139.251 114.039 139.178 114.414 139.178C114.903 139.178 115.335 139.303 115.709 139.554C116.084 139.805 116.366 140.16 116.557 140.619C116.748 141.074 116.843 141.574 116.843 142.119C116.843 142.704 116.737 143.231 116.525 143.7C116.316 144.166 116.01 144.525 115.607 144.776C115.207 145.023 114.786 145.147 114.343 145.147C114.019 145.147 113.728 145.079 113.469 144.942C113.213 144.806 113.003 144.634 112.837 144.426V147.206H111.865ZM112.745 142.195C112.745 142.929 112.895 143.473 113.193 143.824C113.492 144.175 113.854 144.351 114.279 144.351C114.71 144.351 115.079 144.17 115.385 143.808C115.695 143.442 115.85 142.877 115.85 142.114C115.85 141.386 115.698 140.841 115.396 140.479C115.097 140.117 114.739 139.936 114.322 139.936C113.908 139.936 113.541 140.13 113.22 140.517C112.904 140.9 112.745 141.46 112.745 142.195Z" fill="#9C9C9C"/>
+<path d="M121.888 145.018V144.179C121.442 144.824 120.835 145.147 120.069 145.147C119.73 145.147 119.414 145.082 119.119 144.953C118.827 144.824 118.609 144.663 118.465 144.469C118.325 144.272 118.226 144.032 118.168 143.749C118.129 143.559 118.109 143.257 118.109 142.845V139.307H119.081V142.474C119.081 142.98 119.101 143.32 119.14 143.496C119.201 143.75 119.331 143.951 119.529 144.098C119.727 144.241 119.972 144.313 120.263 144.313C120.555 144.313 120.828 144.24 121.084 144.093C121.339 143.942 121.519 143.74 121.624 143.485C121.732 143.227 121.786 142.854 121.786 142.367V139.307H122.757V145.018H121.888Z" fill="#9C9C9C"/>
+<path d="M126.518 144.152L126.658 145.007C126.384 145.064 126.14 145.093 125.924 145.093C125.571 145.093 125.297 145.037 125.103 144.926C124.909 144.815 124.772 144.67 124.693 144.491C124.614 144.308 124.574 143.926 124.574 143.345V140.06H123.861V139.307H124.574V137.893L125.54 137.312V139.307H126.518V140.06H125.54V143.399C125.54 143.675 125.557 143.853 125.589 143.931C125.625 144.01 125.681 144.073 125.756 144.12C125.836 144.166 125.947 144.19 126.091 144.19C126.199 144.19 126.341 144.177 126.518 144.152Z" fill="#9C9C9C"/>
+<path d="M131.509 143.179L132.513 143.302C132.355 143.887 132.061 144.34 131.633 144.663C131.205 144.985 130.657 145.147 129.992 145.147C129.153 145.147 128.487 144.89 127.994 144.378C127.505 143.861 127.26 143.139 127.26 142.211C127.26 141.25 127.508 140.504 128.005 139.974C128.502 139.443 129.146 139.178 129.938 139.178C130.704 139.178 131.331 139.438 131.816 139.958C132.302 140.477 132.545 141.209 132.545 142.152C132.545 142.209 132.543 142.295 132.54 142.41H128.264C128.3 143.037 128.478 143.517 128.798 143.851C129.119 144.184 129.518 144.351 129.997 144.351C130.353 144.351 130.657 144.258 130.909 144.071C131.161 143.885 131.361 143.587 131.509 143.179ZM128.318 141.614H131.52C131.476 141.133 131.354 140.773 131.152 140.533C130.843 140.16 130.442 139.974 129.948 139.974C129.502 139.974 129.126 140.122 128.82 140.42C128.518 140.718 128.35 141.115 128.318 141.614Z" fill="#9C9C9C"/>
+<path d="M141.561 144.087C141.241 144.442 140.892 144.709 140.514 144.889C140.136 145.064 139.727 145.152 139.288 145.152C138.478 145.152 137.836 144.88 137.361 144.335C136.976 143.89 136.783 143.394 136.783 142.845C136.783 142.358 136.94 141.918 137.253 141.528C137.57 141.133 138.041 140.787 138.667 140.49C138.311 140.081 138.073 139.75 137.955 139.495C137.836 139.241 137.777 138.995 137.777 138.758C137.777 138.285 137.962 137.875 138.333 137.527C138.707 137.176 139.177 137 139.742 137C140.282 137 140.723 137.165 141.064 137.495C141.41 137.825 141.583 138.221 141.583 138.683C141.583 139.432 141.084 140.072 140.087 140.603L141.507 142.404C141.669 142.089 141.795 141.723 141.885 141.307L142.895 141.522C142.722 142.211 142.488 142.777 142.193 143.222C142.556 143.702 142.968 144.105 143.429 144.431L142.776 145.2C142.384 144.95 141.979 144.578 141.561 144.087ZM139.585 139.979C140.006 139.732 140.278 139.515 140.4 139.328C140.526 139.142 140.589 138.936 140.589 138.71C140.589 138.441 140.503 138.222 140.33 138.054C140.161 137.882 139.949 137.796 139.693 137.796C139.43 137.796 139.211 137.88 139.034 138.049C138.862 138.217 138.775 138.423 138.775 138.667C138.775 138.789 138.806 138.918 138.867 139.054C138.932 139.187 139.027 139.328 139.153 139.479L139.585 139.979ZM140.951 143.324L139.169 141.124C138.644 141.436 138.289 141.727 138.106 141.996C137.922 142.261 137.831 142.524 137.831 142.786C137.831 143.105 137.958 143.437 138.214 143.781C138.469 144.125 138.831 144.297 139.299 144.297C139.591 144.297 139.891 144.207 140.201 144.028C140.514 143.845 140.764 143.611 140.951 143.324Z" fill="#9C9C9C"/>
+<path d="M147.802 145.018V137.134H149.378L151.252 142.716C151.425 143.236 151.551 143.625 151.63 143.883C151.72 143.596 151.86 143.175 152.051 142.619L153.946 137.134H155.355V145.018H154.345V138.42L152.046 145.018H151.101L148.812 138.307V145.018H147.802Z" fill="#9C9C9C"/>
+<path d="M160.773 144.313C160.413 144.618 160.065 144.833 159.731 144.958C159.4 145.084 159.043 145.147 158.662 145.147C158.032 145.147 157.548 144.994 157.209 144.69C156.871 144.381 156.702 143.989 156.702 143.512C156.702 143.232 156.765 142.978 156.891 142.748C157.02 142.515 157.188 142.329 157.393 142.189C157.602 142.049 157.836 141.944 158.095 141.872C158.286 141.822 158.574 141.773 158.959 141.727C159.743 141.633 160.321 141.522 160.692 141.393C160.695 141.261 160.697 141.176 160.697 141.141C160.697 140.746 160.605 140.468 160.422 140.307C160.173 140.088 159.804 139.979 159.315 139.979C158.858 139.979 158.52 140.06 158.3 140.221C158.084 140.379 157.924 140.66 157.819 141.065L156.869 140.936C156.956 140.531 157.098 140.205 157.296 139.958C157.494 139.707 157.78 139.515 158.154 139.382C158.529 139.246 158.962 139.178 159.455 139.178C159.945 139.178 160.343 139.235 160.648 139.35C160.954 139.465 161.179 139.61 161.323 139.785C161.467 139.958 161.568 140.176 161.626 140.442C161.658 140.606 161.674 140.904 161.674 141.334V142.625C161.674 143.525 161.694 144.095 161.734 144.335C161.777 144.571 161.86 144.799 161.982 145.018H160.967C160.866 144.817 160.801 144.582 160.773 144.313ZM160.692 142.152C160.339 142.295 159.81 142.417 159.104 142.517C158.705 142.575 158.422 142.639 158.257 142.711C158.091 142.782 157.963 142.888 157.873 143.028C157.783 143.164 157.738 143.317 157.738 143.485C157.738 143.743 157.836 143.958 158.03 144.13C158.228 144.302 158.516 144.388 158.894 144.388C159.268 144.388 159.601 144.308 159.893 144.146C160.184 143.982 160.398 143.758 160.535 143.474C160.639 143.256 160.692 142.933 160.692 142.506V142.152Z" fill="#9C9C9C"/>
+<path d="M167.038 142.926L167.993 143.05C167.889 143.706 167.621 144.22 167.189 144.593C166.761 144.962 166.233 145.147 165.607 145.147C164.823 145.147 164.191 144.892 163.712 144.383C163.237 143.87 163 143.137 163 142.184C163 141.567 163.102 141.028 163.307 140.565C163.512 140.103 163.824 139.757 164.241 139.527C164.662 139.294 165.12 139.178 165.613 139.178C166.235 139.178 166.745 139.336 167.14 139.651C167.536 139.963 167.79 140.407 167.902 140.985L166.957 141.13C166.867 140.746 166.707 140.458 166.476 140.264C166.25 140.07 165.974 139.974 165.65 139.974C165.161 139.974 164.763 140.149 164.457 140.501C164.151 140.848 163.998 141.4 163.998 142.157C163.998 142.924 164.146 143.481 164.441 143.829C164.736 144.177 165.121 144.351 165.596 144.351C165.978 144.351 166.296 144.234 166.552 144.001C166.808 143.768 166.97 143.41 167.038 142.926Z" fill="#9C9C9C"/>
+<path d="M168.935 145.018V137.134H169.907V139.963C170.361 139.44 170.933 139.178 171.624 139.178C172.049 139.178 172.418 139.262 172.731 139.431C173.044 139.595 173.267 139.825 173.4 140.119C173.537 140.413 173.606 140.839 173.606 141.399V145.018H172.634V141.399C172.634 140.915 172.528 140.563 172.315 140.345C172.106 140.122 171.809 140.011 171.424 140.011C171.136 140.011 170.865 140.087 170.609 140.237C170.357 140.384 170.177 140.585 170.069 140.839C169.961 141.094 169.907 141.445 169.907 141.893V145.018H168.935Z" fill="#9C9C9C"/>
+<path d="M175.206 138.248V137.134H176.178V138.248H175.206ZM175.206 145.018V139.307H176.178V145.018H175.206Z" fill="#9C9C9C"/>
+<path d="M177.773 145.018V139.307H178.648V140.119C179.069 139.492 179.677 139.178 180.473 139.178C180.818 139.178 181.135 139.241 181.423 139.366C181.714 139.488 181.932 139.649 182.076 139.85C182.22 140.051 182.321 140.289 182.378 140.565C182.414 140.744 182.432 141.058 182.432 141.506V145.018H181.461V141.544C181.461 141.15 181.423 140.856 181.347 140.662C181.272 140.465 181.137 140.309 180.942 140.194C180.752 140.076 180.527 140.017 180.267 140.017C179.854 140.017 179.495 140.148 179.193 140.409C178.894 140.671 178.745 141.167 178.745 141.899V145.018H177.773Z" fill="#9C9C9C"/>
+<path d="M187.963 143.179L188.968 143.302C188.809 143.887 188.516 144.34 188.088 144.663C187.659 144.985 187.112 145.147 186.446 145.147C185.608 145.147 184.942 144.89 184.449 144.378C183.959 143.861 183.715 143.139 183.715 142.211C183.715 141.25 183.963 140.504 184.46 139.974C184.956 139.443 185.601 139.178 186.392 139.178C187.159 139.178 187.785 139.438 188.271 139.958C188.757 140.477 189 141.209 189 142.152C189 142.209 188.998 142.295 188.995 142.41H184.719C184.755 143.037 184.933 143.517 185.253 143.851C185.574 144.184 185.973 144.351 186.452 144.351C186.808 144.351 187.112 144.258 187.364 144.071C187.616 143.885 187.816 143.587 187.963 143.179ZM184.773 141.614H187.974C187.931 141.133 187.809 140.773 187.607 140.533C187.298 140.16 186.896 139.974 186.403 139.974C185.957 139.974 185.581 140.122 185.275 140.42C184.972 140.718 184.805 141.115 184.773 141.614Z" fill="#9C9C9C"/>
+<path d="M88.2591 157.682V149.799H89.3065V156.752H93.2045V157.682H88.2591Z" fill="#9C9C9C"/>
+<path d="M98.3684 155.843L99.3726 155.967C99.2142 156.551 98.9209 157.005 98.4926 157.327C98.0643 157.65 97.5172 157.811 96.8513 157.811C96.0127 157.811 95.3468 157.555 94.8537 157.042C94.3642 156.526 94.1195 155.804 94.1195 154.875C94.1195 153.915 94.3678 153.169 94.8645 152.638C95.3612 152.108 96.0055 151.843 96.7973 151.843C97.564 151.843 98.1902 152.102 98.6761 152.622C99.162 153.142 99.405 153.873 99.405 154.816C99.405 154.874 99.4032 154.96 99.3996 155.074H95.1237C95.1597 155.702 95.3378 156.182 95.6582 156.515C95.9785 156.849 96.378 157.016 96.8567 157.016C97.213 157.016 97.5172 156.922 97.7691 156.736C98.0211 156.55 98.2208 156.252 98.3684 155.843ZM95.1777 154.278H98.3792C98.336 153.798 98.2136 153.438 98.0121 153.198C97.7025 152.825 97.3012 152.638 96.8081 152.638C96.3618 152.638 95.9857 152.787 95.6798 153.085C95.3774 153.382 95.2101 153.78 95.1777 154.278Z" fill="#9C9C9C"/>
+<path d="M104.45 156.978C104.09 157.283 103.743 157.498 103.408 157.623C103.077 157.749 102.721 157.811 102.339 157.811C101.709 157.811 101.225 157.659 100.887 157.354C100.549 157.046 100.379 156.653 100.379 156.177C100.379 155.897 100.442 155.643 100.568 155.413C100.698 155.18 100.865 154.994 101.07 154.854C101.279 154.714 101.513 154.608 101.772 154.537C101.963 154.486 102.251 154.438 102.636 154.391C103.421 154.298 103.998 154.187 104.369 154.058C104.373 153.925 104.375 153.841 104.375 153.805C104.375 153.411 104.283 153.133 104.099 152.972C103.851 152.753 103.482 152.644 102.992 152.644C102.535 152.644 102.197 152.724 101.977 152.886C101.761 153.044 101.601 153.325 101.497 153.73L100.547 153.601C100.633 153.196 100.775 152.87 100.973 152.622C101.171 152.371 101.457 152.18 101.832 152.047C102.206 151.911 102.64 151.843 103.133 151.843C103.622 151.843 104.02 151.9 104.326 152.015C104.632 152.129 104.857 152.275 105.001 152.45C105.145 152.622 105.246 152.841 105.303 153.106C105.336 153.271 105.352 153.569 105.352 153.999V155.289C105.352 156.189 105.371 156.759 105.411 156.999C105.454 157.236 105.537 157.464 105.659 157.682H104.644C104.544 157.482 104.479 157.247 104.45 156.978ZM104.369 154.816C104.016 154.96 103.487 155.082 102.782 155.182C102.382 155.239 102.1 155.304 101.934 155.375C101.769 155.447 101.641 155.553 101.551 155.693C101.461 155.829 101.416 155.981 101.416 156.15C101.416 156.408 101.513 156.623 101.707 156.795C101.905 156.967 102.193 157.053 102.571 157.053C102.946 157.053 103.279 156.973 103.57 156.811C103.862 156.646 104.076 156.422 104.213 156.139C104.317 155.92 104.369 155.598 104.369 155.171V154.816Z" fill="#9C9C9C"/>
+<path d="M106.963 157.682V151.972H107.838V152.837C108.061 152.432 108.266 152.165 108.453 152.036C108.644 151.907 108.853 151.843 109.079 151.843C109.407 151.843 109.74 151.947 110.078 152.154L109.744 153.052C109.506 152.913 109.268 152.843 109.031 152.843C108.819 152.843 108.628 152.907 108.459 153.036C108.289 153.162 108.169 153.337 108.097 153.563C107.989 153.907 107.935 154.284 107.935 154.693V157.682H106.963Z" fill="#9C9C9C"/>
+<path d="M110.767 157.682V151.972H111.641V152.784C112.062 152.156 112.671 151.843 113.466 151.843C113.811 151.843 114.128 151.905 114.416 152.031C114.708 152.153 114.925 152.314 115.069 152.515C115.213 152.715 115.314 152.954 115.372 153.23C115.408 153.409 115.426 153.723 115.426 154.171V157.682H114.454V154.209C114.454 153.814 114.416 153.52 114.341 153.327C114.265 153.13 114.13 152.974 113.936 152.859C113.745 152.741 113.52 152.681 113.261 152.681C112.847 152.681 112.489 152.812 112.186 153.074C111.888 153.336 111.738 153.832 111.738 154.563V157.682H110.767Z" fill="#9C9C9C"/>
+<path d="M117.037 150.912V149.799H118.009V150.912H117.037ZM117.037 157.682V151.972H118.009V157.682H117.037Z" fill="#9C9C9C"/>
+<path d="M119.604 157.682V151.972H120.479V152.784C120.9 152.156 121.508 151.843 122.304 151.843C122.649 151.843 122.966 151.905 123.254 152.031C123.545 152.153 123.763 152.314 123.907 152.515C124.051 152.715 124.152 152.954 124.209 153.23C124.245 153.409 124.263 153.723 124.263 154.171V157.682H123.292V154.209C123.292 153.814 123.254 153.52 123.178 153.327C123.103 153.13 122.968 152.974 122.773 152.859C122.583 152.741 122.358 152.681 122.099 152.681C121.685 152.681 121.326 152.812 121.024 153.074C120.725 153.336 120.576 153.832 120.576 154.563V157.682H119.604Z" fill="#9C9C9C"/>
+<path d="M125.691 158.156L126.636 158.295C126.676 158.586 126.785 158.797 126.965 158.93C127.207 159.109 127.536 159.199 127.953 159.199C128.403 159.199 128.751 159.109 128.995 158.93C129.24 158.751 129.406 158.5 129.492 158.177C129.543 157.98 129.566 157.566 129.562 156.935C129.138 157.433 128.609 157.682 127.975 157.682C127.187 157.682 126.577 157.399 126.145 156.833C125.713 156.266 125.497 155.587 125.497 154.795C125.497 154.25 125.596 153.748 125.794 153.289C125.992 152.827 126.278 152.47 126.652 152.219C127.03 151.968 127.473 151.843 127.98 151.843C128.657 151.843 129.215 152.115 129.654 152.66V151.972H130.55V156.908C130.55 157.797 130.459 158.426 130.275 158.795C130.095 159.168 129.807 159.462 129.411 159.677C129.019 159.892 128.535 160 127.959 160C127.275 160 126.723 159.846 126.301 159.538C125.88 159.233 125.677 158.772 125.691 158.156ZM126.496 154.725C126.496 155.474 126.645 156.021 126.944 156.365C127.243 156.709 127.617 156.881 128.067 156.881C128.513 156.881 128.887 156.711 129.19 156.37C129.492 156.026 129.643 155.488 129.643 154.757C129.643 154.058 129.487 153.531 129.174 153.176C128.864 152.821 128.49 152.644 128.051 152.644C127.619 152.644 127.252 152.819 126.949 153.171C126.647 153.519 126.496 154.037 126.496 154.725Z" fill="#9C9C9C"/>
+<path d="M446 145.852L449.053 137.148H450.186L453.439 145.852H452.241L451.314 143.216H447.99L447.117 145.852H446ZM448.294 142.278H450.989L450.159 139.867C449.906 139.135 449.718 138.534 449.595 138.063C449.494 138.621 449.351 139.175 449.167 139.725L448.294 142.278Z" fill="#9C9C9C"/>
+<path d="M460.063 142.8L461.115 143.091C460.894 144.037 460.497 144.759 459.922 145.258C459.351 145.753 458.651 146 457.823 146C456.967 146 456.269 145.81 455.73 145.43C455.195 145.046 454.787 144.492 454.505 143.768C454.226 143.044 454.087 142.266 454.087 141.435C454.087 140.528 454.245 139.739 454.559 139.066C454.877 138.389 455.327 137.877 455.909 137.528C456.495 137.176 457.138 137 457.84 137C458.635 137 459.304 137.222 459.846 137.665C460.388 138.108 460.766 138.732 460.979 139.535L459.943 139.802C459.759 139.169 459.492 138.708 459.141 138.419C458.79 138.13 458.349 137.985 457.818 137.985C457.207 137.985 456.695 138.146 456.283 138.466C455.875 138.787 455.587 139.218 455.421 139.761C455.255 140.299 455.172 140.855 455.172 141.429C455.172 142.169 455.269 142.816 455.465 143.37C455.663 143.92 455.971 144.332 456.386 144.605C456.802 144.878 457.252 145.015 457.737 145.015C458.326 145.015 458.825 144.828 459.233 144.456C459.642 144.084 459.918 143.532 460.063 142.8Z" fill="#9C9C9C"/>
+<path d="M462.706 145.852V137.148H463.758V145.852H462.706Z" fill="#9C9C9C"/>
+<path d="M465.729 145.852V137.148H468.467C469.085 137.148 469.557 137.19 469.882 137.273C470.338 137.388 470.726 137.596 471.048 137.896C471.468 138.284 471.78 138.781 471.986 139.387C472.196 139.988 472.301 140.677 472.301 141.453C472.301 142.113 472.23 142.699 472.089 143.21C471.948 143.72 471.768 144.144 471.547 144.48C471.327 144.813 471.084 145.076 470.82 145.27C470.56 145.46 470.244 145.604 469.872 145.703C469.503 145.802 469.078 145.852 468.597 145.852H465.729ZM466.781 144.825H468.478C469.002 144.825 469.412 144.771 469.709 144.664C470.009 144.557 470.247 144.407 470.425 144.213C470.674 143.94 470.867 143.574 471.005 143.115C471.146 142.652 471.216 142.092 471.216 141.435C471.216 140.524 471.079 139.826 470.804 139.339C470.533 138.848 470.202 138.52 469.812 138.354C469.53 138.235 469.076 138.175 468.451 138.175H466.781V144.825Z" fill="#9C9C9C"/>
+<path d="M478.883 145.852V138.175H476.264V137.148H482.565V138.175H479.935V145.852H478.883Z" fill="#9C9C9C"/>
+<path d="M483.213 145.852V139.547H484.091V140.503C484.315 140.055 484.521 139.761 484.709 139.618C484.901 139.476 485.111 139.404 485.338 139.404C485.667 139.404 486.002 139.519 486.342 139.749L486.005 140.74C485.767 140.586 485.528 140.509 485.29 140.509C485.076 140.509 484.885 140.58 484.715 140.722C484.545 140.861 484.424 141.055 484.352 141.304C484.243 141.684 484.189 142.1 484.189 142.551V145.852H483.213Z" fill="#9C9C9C"/>
+<path d="M490.791 145.074C490.429 145.41 490.08 145.648 489.744 145.786C489.411 145.925 489.054 145.994 488.67 145.994C488.038 145.994 487.552 145.826 487.212 145.489C486.872 145.149 486.702 144.716 486.702 144.189C486.702 143.881 486.765 143.6 486.892 143.346C487.022 143.089 487.19 142.883 487.396 142.729C487.606 142.575 487.841 142.458 488.101 142.379C488.293 142.323 488.582 142.27 488.969 142.218C489.757 142.115 490.337 141.993 490.709 141.85C490.713 141.704 490.715 141.611 490.715 141.571C490.715 141.136 490.622 140.829 490.438 140.651C490.189 140.41 489.818 140.289 489.326 140.289C488.867 140.289 488.528 140.378 488.307 140.556C488.09 140.73 487.929 141.041 487.824 141.488L486.87 141.346C486.957 140.898 487.1 140.538 487.299 140.265C487.497 139.988 487.785 139.776 488.161 139.63C488.537 139.48 488.972 139.404 489.467 139.404C489.959 139.404 490.359 139.468 490.666 139.594C490.973 139.721 491.199 139.881 491.344 140.075C491.488 140.265 491.589 140.507 491.647 140.799C491.68 140.982 491.696 141.31 491.696 141.785V143.21C491.696 144.203 491.716 144.832 491.756 145.098C491.799 145.359 491.882 145.61 492.005 145.852H490.986C490.884 145.63 490.819 145.371 490.791 145.074ZM490.709 142.687C490.355 142.846 489.824 142.98 489.115 143.091C488.714 143.154 488.43 143.226 488.264 143.305C488.097 143.384 487.969 143.501 487.879 143.655C487.788 143.805 487.743 143.974 487.743 144.16C487.743 144.445 487.841 144.682 488.036 144.872C488.235 145.062 488.524 145.157 488.904 145.157C489.279 145.157 489.614 145.068 489.907 144.89C490.199 144.708 490.415 144.46 490.552 144.148C490.657 143.906 490.709 143.55 490.709 143.079V142.687Z" fill="#9C9C9C"/>
+<path d="M493.325 145.852V139.547H494.204V140.443C494.627 139.751 495.238 139.404 496.037 139.404C496.384 139.404 496.702 139.474 496.991 139.612C497.284 139.747 497.502 139.925 497.647 140.146C497.792 140.368 497.893 140.631 497.951 140.936C497.987 141.134 498.005 141.48 498.005 141.975V145.852H497.029V142.016C497.029 141.581 496.991 141.257 496.915 141.043C496.839 140.825 496.703 140.653 496.508 140.526C496.317 140.396 496.091 140.33 495.83 140.33C495.415 140.33 495.055 140.475 494.751 140.764C494.451 141.053 494.301 141.601 494.301 142.408V145.852H493.325Z" fill="#9C9C9C"/>
+<path d="M499.227 143.97L500.193 143.803C500.247 144.227 500.397 144.551 500.643 144.777C500.892 145.003 501.239 145.115 501.684 145.115C502.132 145.115 502.465 145.016 502.681 144.819C502.898 144.617 503.007 144.381 503.007 144.112C503.007 143.871 502.911 143.681 502.719 143.542C502.586 143.447 502.253 143.327 501.722 143.18C501.006 142.982 500.509 142.812 500.231 142.67C499.956 142.523 499.746 142.323 499.602 142.07C499.461 141.813 499.39 141.53 499.39 141.221C499.39 140.94 499.448 140.681 499.564 140.443C499.683 140.202 499.844 140.002 500.046 139.844C500.198 139.721 500.404 139.618 500.664 139.535C500.928 139.448 501.21 139.404 501.51 139.404C501.962 139.404 502.358 139.476 502.698 139.618C503.041 139.761 503.294 139.954 503.457 140.2C503.62 140.441 503.732 140.766 503.793 141.173L502.839 141.316C502.795 140.991 502.669 140.738 502.459 140.556C502.253 140.374 501.96 140.283 501.581 140.283C501.133 140.283 500.813 140.364 500.621 140.526C500.429 140.689 500.334 140.879 500.334 141.096C500.334 141.235 500.373 141.359 500.453 141.47C500.532 141.585 500.657 141.68 500.827 141.755C500.925 141.795 501.212 141.886 501.689 142.028C502.38 142.23 502.86 142.396 503.132 142.527C503.406 142.654 503.621 142.84 503.777 143.085C503.932 143.33 504.01 143.635 504.01 143.999C504.01 144.356 503.914 144.692 503.723 145.009C503.535 145.321 503.262 145.565 502.904 145.739C502.546 145.909 502.141 145.994 501.689 145.994C500.941 145.994 500.37 145.824 499.976 145.484C499.585 145.143 499.336 144.639 499.227 143.97Z" fill="#9C9C9C"/>
+<path d="M509.039 145.074C508.678 145.41 508.329 145.648 507.993 145.786C507.66 145.925 507.302 145.994 506.919 145.994C506.286 145.994 505.8 145.826 505.46 145.489C505.121 145.149 504.951 144.716 504.951 144.189C504.951 143.881 505.014 143.6 505.14 143.346C505.271 143.089 505.439 142.883 505.645 142.729C505.854 142.575 506.089 142.458 506.35 142.379C506.541 142.323 506.83 142.27 507.217 142.218C508.005 142.115 508.585 141.993 508.958 141.85C508.961 141.704 508.963 141.611 508.963 141.571C508.963 141.136 508.871 140.829 508.687 140.651C508.437 140.41 508.067 140.289 507.575 140.289C507.116 140.289 506.776 140.378 506.556 140.556C506.339 140.73 506.178 141.041 506.073 141.488L505.119 141.346C505.205 140.898 505.348 140.538 505.547 140.265C505.746 139.988 506.033 139.776 506.409 139.63C506.785 139.48 507.221 139.404 507.716 139.404C508.208 139.404 508.607 139.468 508.914 139.594C509.222 139.721 509.448 139.881 509.592 140.075C509.737 140.265 509.838 140.507 509.896 140.799C509.928 140.982 509.945 141.31 509.945 141.785V143.21C509.945 144.203 509.964 144.832 510.004 145.098C510.048 145.359 510.131 145.61 510.254 145.852H509.234C509.133 145.63 509.068 145.371 509.039 145.074ZM508.958 142.687C508.603 142.846 508.072 142.98 507.364 143.091C506.962 143.154 506.679 143.226 506.512 143.305C506.346 143.384 506.218 143.501 506.127 143.655C506.037 143.805 505.992 143.974 505.992 144.16C505.992 144.445 506.089 144.682 506.285 144.872C506.483 145.062 506.773 145.157 507.152 145.157C507.528 145.157 507.862 145.068 508.155 144.89C508.448 144.708 508.663 144.46 508.8 144.148C508.905 143.906 508.958 143.55 508.958 143.079V142.687Z" fill="#9C9C9C"/>
+<path d="M515.332 143.542L516.291 143.679C516.187 144.403 515.917 144.971 515.483 145.383C515.053 145.79 514.524 145.994 513.895 145.994C513.107 145.994 512.472 145.713 511.991 145.151C511.514 144.585 511.276 143.776 511.276 142.723C511.276 142.042 511.379 141.447 511.585 140.936C511.791 140.425 512.103 140.044 512.523 139.79C512.946 139.533 513.405 139.404 513.9 139.404C514.525 139.404 515.037 139.578 515.435 139.927C515.832 140.271 516.087 140.762 516.199 141.399L515.25 141.559C515.16 141.136 514.999 140.817 514.768 140.604C514.54 140.39 514.263 140.283 513.938 140.283C513.446 140.283 513.047 140.477 512.74 140.865C512.432 141.249 512.279 141.858 512.279 142.693C512.279 143.54 512.427 144.156 512.723 144.54C513.02 144.923 513.407 145.115 513.884 145.115C514.267 145.115 514.587 144.987 514.844 144.73C515.1 144.472 515.263 144.077 515.332 143.542Z" fill="#9C9C9C"/>
+<path d="M519.368 144.896L519.509 145.84C519.235 145.903 518.989 145.935 518.772 145.935C518.418 145.935 518.143 145.873 517.948 145.751C517.753 145.628 517.615 145.468 517.536 145.27C517.456 145.068 517.416 144.646 517.416 144.005V140.378H516.701V139.547H517.416V137.985L518.387 137.344V139.547H519.368V140.378H518.387V144.065C518.387 144.369 518.403 144.565 518.436 144.652C518.472 144.739 518.528 144.809 518.604 144.86C518.683 144.912 518.795 144.937 518.94 144.937C519.049 144.937 519.191 144.923 519.368 144.896Z" fill="#9C9C9C"/>
+<path d="M520.445 138.377V137.148H521.421V138.377H520.445ZM520.445 145.852V139.547H521.421V145.852H520.445Z" fill="#9C9C9C"/>
+<path d="M522.66 142.699C522.66 141.532 522.956 140.667 523.549 140.105C524.044 139.638 524.648 139.404 525.36 139.404C526.152 139.404 526.799 139.689 527.301 140.259C527.804 140.825 528.055 141.609 528.055 142.61C528.055 143.422 527.943 144.061 527.719 144.528C527.498 144.991 527.175 145.351 526.748 145.608C526.325 145.865 525.862 145.994 525.36 145.994C524.554 145.994 523.901 145.711 523.402 145.145C522.907 144.579 522.66 143.764 522.66 142.699ZM523.663 142.699C523.663 143.507 523.824 144.112 524.145 144.516C524.467 144.916 524.872 145.115 525.36 145.115C525.844 145.115 526.247 144.914 526.569 144.51C526.891 144.106 527.052 143.491 527.052 142.664C527.052 141.884 526.889 141.294 526.564 140.894C526.242 140.491 525.841 140.289 525.36 140.289C524.872 140.289 524.467 140.489 524.145 140.889C523.824 141.288 523.663 141.892 523.663 142.699Z" fill="#9C9C9C"/>
+<path d="M529.315 145.852V139.547H530.194V140.443C530.617 139.751 531.228 139.404 532.027 139.404C532.374 139.404 532.692 139.474 532.981 139.612C533.274 139.747 533.492 139.925 533.637 140.146C533.782 140.368 533.883 140.631 533.941 140.936C533.977 141.134 533.995 141.48 533.995 141.975V145.852H533.019V142.016C533.019 141.581 532.981 141.257 532.905 141.043C532.829 140.825 532.694 140.653 532.498 140.526C532.307 140.396 532.081 140.33 531.821 140.33C531.405 140.33 531.045 140.475 530.741 140.764C530.441 141.053 530.291 141.601 530.291 142.408V145.852H529.315Z" fill="#9C9C9C"/>
+<path d="M535.217 143.97L536.183 143.803C536.237 144.227 536.387 144.551 536.633 144.777C536.882 145.003 537.229 145.115 537.674 145.115C538.122 145.115 538.455 145.016 538.672 144.819C538.888 144.617 538.997 144.381 538.997 144.112C538.997 143.871 538.901 143.681 538.709 143.542C538.576 143.447 538.243 143.327 537.712 143.18C536.996 142.982 536.499 142.812 536.221 142.67C535.946 142.523 535.736 142.323 535.592 142.07C535.451 141.813 535.38 141.53 535.38 141.221C535.38 140.94 535.438 140.681 535.554 140.443C535.673 140.202 535.834 140.002 536.036 139.844C536.188 139.721 536.394 139.618 536.654 139.535C536.918 139.448 537.2 139.404 537.5 139.404C537.952 139.404 538.348 139.476 538.688 139.618C539.031 139.761 539.284 139.954 539.447 140.2C539.61 140.441 539.722 140.766 539.783 141.173L538.829 141.316C538.785 140.991 538.659 140.738 538.449 140.556C538.243 140.374 537.95 140.283 537.571 140.283C537.123 140.283 536.803 140.364 536.611 140.526C536.419 140.689 536.324 140.879 536.324 141.096C536.324 141.235 536.363 141.359 536.443 141.47C536.522 141.585 536.647 141.68 536.817 141.755C536.915 141.795 537.202 141.886 537.679 142.028C538.37 142.23 538.85 142.396 539.122 142.527C539.396 142.654 539.611 142.84 539.767 143.085C539.922 143.33 540 143.635 540 143.999C540 144.356 539.904 144.692 539.713 145.009C539.525 145.321 539.252 145.565 538.894 145.739C538.536 145.909 538.131 145.994 537.679 145.994C536.931 145.994 536.36 145.824 535.966 145.484C535.575 145.143 535.326 144.639 535.217 143.97Z" fill="#9C9C9C"/>
+<path d="M265 225.5C265 200.923 285.147 181 310 181C334.853 181 355 200.923 355 225.5C355 250.077 334.853 270 310 270C285.147 270 265 250.077 265 225.5Z" fill="#ED1C24"/>
+<path d="M302.188 210C302.188 210 282.3 222.416 301.044 234.744C304.649 237.145 317.727 243.821 317.355 250C317.355 250 325.281 237.994 313.692 230.439C301.788 222.709 298.812 214.451 302.188 210Z" fill="white"/>
+<path d="M294.821 234C294.821 234 287.655 245.059 301.755 247.324C303.142 247.5 313.342 248.588 316 252C316 252 315.769 246.118 307.447 242.647C299.155 239.176 295.745 238.324 294.821 234Z" fill="white"/>
+<path d="M322.85 222.174C314.226 213.011 311.824 207.342 315.528 200C315.528 200 289.803 210.044 315.21 227.872C324.296 234.245 322.792 240.765 322.792 241C324.21 239.502 331.473 231.337 322.85 222.174Z" fill="white"/>
+<path d="M72 366.5C72 357.94 78.8417 351 87.2813 351H540.719C549.158 351 556 357.94 556 366.5C556 375.06 549.158 382 540.719 382H87.2813C78.8417 382 72 375.06 72 366.5Z" fill="#E6E6E6"/>
+<path d="M352 370.151V340.412C352 340.412 356.324 344.013 369.763 344.013C383.202 344.013 387.993 340 387.993 340V370.151C387.993 370.151 388.897 375 370.448 375C352 375 352 370.151 352 370.151Z" fill="white"/>
+<path d="M389 338.5C389 341.538 380.493 344 370 344C359.507 344 351 341.538 351 338.5C351 335.462 359.507 333 370 333C380.493 333 389 335.462 389 338.5Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M386.856 339.773C387.706 339.192 387.883 338.747 387.883 338.5C387.883 338.253 387.706 337.808 386.856 337.227C386.034 336.664 384.771 336.113 383.111 335.633C379.804 334.675 375.168 334.067 370 334.067C364.832 334.067 360.196 334.675 356.889 335.633C355.229 336.113 353.966 336.664 353.144 337.227C352.294 337.808 352.117 338.253 352.117 338.5C352.117 338.747 352.294 339.192 353.144 339.773C353.966 340.336 355.229 340.887 356.889 341.367C360.196 342.325 364.832 342.933 370 342.933C375.168 342.933 379.804 342.325 383.111 341.367C384.771 340.887 386.034 340.336 386.856 339.773ZM370 344C380.493 344 389 341.538 389 338.5C389 335.462 380.493 333 370 333C359.507 333 351 335.462 351 338.5C351 341.538 359.507 344 370 344Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M351 369L351 339L352 339L352 369L351 369Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M388 369L388 338L389 338L389 369L388 369Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M357.12 372.348C360.392 373.318 364.946 373.925 370 373.925C375.054 373.925 379.608 373.318 382.88 372.348C384.52 371.863 385.806 371.296 386.67 370.691C387.547 370.077 387.89 369.498 387.89 369H389C389 370.01 388.31 370.869 387.321 371.562C386.318 372.264 384.903 372.874 383.205 373.377C379.801 374.385 375.133 375 370 375C364.867 375 360.199 374.385 356.795 373.377C355.097 372.874 353.682 372.264 352.679 371.562C351.69 370.869 351 370.01 351 369H352.11C352.11 369.498 352.453 370.077 353.33 370.691C354.194 371.296 355.48 371.863 357.12 372.348Z" fill="#2D2D2D"/>
+<path d="M476 370.151V340.412C476 340.412 480.324 344.013 493.763 344.013C507.202 344.013 511.993 340 511.993 340V370.151C511.993 370.151 512.897 375 494.448 375C476 375 476 370.151 476 370.151Z" fill="white"/>
+<path d="M513 338.5C513 341.538 504.493 344 494 344C483.507 344 475 341.538 475 338.5C475 335.462 483.507 333 494 333C504.493 333 513 335.462 513 338.5Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M510.856 339.773C511.706 339.192 511.883 338.747 511.883 338.5C511.883 338.253 511.706 337.808 510.856 337.227C510.034 336.664 508.771 336.113 507.111 335.633C503.804 334.675 499.168 334.067 494 334.067C488.832 334.067 484.196 334.675 480.889 335.633C479.229 336.113 477.966 336.664 477.144 337.227C476.294 337.808 476.117 338.253 476.117 338.5C476.117 338.747 476.294 339.192 477.144 339.773C477.966 340.336 479.229 340.887 480.889 341.367C484.196 342.325 488.832 342.933 494 342.933C499.168 342.933 503.804 342.325 507.111 341.367C508.771 340.887 510.034 340.336 510.856 339.773ZM494 344C504.493 344 513 341.538 513 338.5C513 335.462 504.493 333 494 333C483.507 333 475 335.462 475 338.5C475 341.538 483.507 344 494 344Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M475 369L475 339L476 339L476 369L475 369Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M512 369L512 338L513 338L513 369L512 369Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M481.12 372.348C484.392 373.318 488.946 373.925 494 373.925C499.054 373.925 503.608 373.318 506.88 372.348C508.52 371.863 509.806 371.296 510.67 370.691C511.547 370.077 511.89 369.498 511.89 369H513C513 370.01 512.31 370.869 511.321 371.562C510.318 372.264 508.903 372.874 507.205 373.377C503.801 374.385 499.133 375 494 375C488.867 375 484.199 374.385 480.795 373.377C479.097 372.874 477.682 372.264 476.679 371.562C475.69 370.869 475 370.01 475 369H476.11C476.11 369.498 476.453 370.077 477.33 370.691C478.194 371.296 479.48 371.863 481.12 372.348Z" fill="#2D2D2D"/>
+<path d="M230 370.151V340.412C230 340.412 234.324 344.013 247.763 344.013C261.202 344.013 265.993 340 265.993 340V370.151C265.993 370.151 266.897 375 248.448 375C230 375 230 370.151 230 370.151Z" fill="white"/>
+<path d="M266 338.5C266 341.538 257.493 344 247 344C236.507 344 228 341.538 228 338.5C228 335.462 236.507 333 247 333C257.493 333 266 335.462 266 338.5Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M263.856 339.773C264.706 339.192 264.883 338.747 264.883 338.5C264.883 338.253 264.706 337.808 263.856 337.227C263.034 336.664 261.771 336.113 260.111 335.633C256.804 334.675 252.168 334.067 247 334.067C241.832 334.067 237.196 334.675 233.889 335.633C232.229 336.113 230.966 336.664 230.144 337.227C229.294 337.808 229.117 338.253 229.117 338.5C229.117 338.747 229.294 339.192 230.144 339.773C230.966 340.336 232.229 340.887 233.889 341.367C237.196 342.325 241.832 342.933 247 342.933C252.168 342.933 256.804 342.325 260.111 341.367C261.771 340.887 263.034 340.336 263.856 339.773ZM247 344C257.493 344 266 341.538 266 338.5C266 335.462 257.493 333 247 333C236.507 333 228 335.462 228 338.5C228 341.538 236.507 344 247 344Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M229 369L229 339L230 339L230 369L229 369Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M265 369L265 338L266 338L266 369L265 369Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M234.12 372.348C237.392 373.318 241.946 373.925 247 373.925C252.054 373.925 256.608 373.318 259.88 372.348C261.52 371.863 262.806 371.296 263.67 370.691C264.547 370.077 264.89 369.498 264.89 369H266C266 370.01 265.31 370.869 264.321 371.562C263.318 372.264 261.903 372.874 260.205 373.377C256.801 374.385 252.133 375 247 375C241.867 375 237.199 374.385 233.795 373.377C232.097 372.874 230.682 372.264 229.679 371.562C228.69 370.869 228 370.01 228 369H229.11C229.11 369.498 229.453 370.077 230.33 370.691C231.194 371.296 232.48 371.863 234.12 372.348Z" fill="#2D2D2D"/>
+<path d="M109 370.151V340.412C109 340.412 113.324 344.013 126.763 344.013C140.202 344.013 144.993 340 144.993 340V370.151C144.993 370.151 145.897 375 127.448 375C109 375 109 370.151 109 370.151Z" fill="white"/>
+<path d="M146 338.5C146 341.538 137.493 344 127 344C116.507 344 108 341.538 108 338.5C108 335.462 116.507 333 127 333C137.493 333 146 335.462 146 338.5Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M143.856 339.773C144.706 339.192 144.883 338.747 144.883 338.5C144.883 338.253 144.706 337.808 143.856 337.227C143.034 336.664 141.771 336.113 140.111 335.633C136.804 334.675 132.168 334.067 127 334.067C121.832 334.067 117.196 334.675 113.889 335.633C112.229 336.113 110.966 336.664 110.144 337.227C109.294 337.808 109.117 338.253 109.117 338.5C109.117 338.747 109.294 339.192 110.144 339.773C110.966 340.336 112.229 340.887 113.889 341.367C117.196 342.325 121.832 342.933 127 342.933C132.168 342.933 136.804 342.325 140.111 341.367C141.771 340.887 143.034 340.336 143.856 339.773ZM127 344C137.493 344 146 341.538 146 338.5C146 335.462 137.493 333 127 333C116.507 333 108 335.462 108 338.5C108 341.538 116.507 344 127 344Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M108 369L108 339L109 339L109 369L108 369Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M145 369L145 338L146 338L146 369L145 369Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M114.12 372.348C117.392 373.318 121.946 373.925 127 373.925C132.054 373.925 136.608 373.318 139.88 372.348C141.52 371.863 142.806 371.296 143.67 370.691C144.547 370.077 144.89 369.498 144.89 369H146C146 370.01 145.31 370.869 144.321 371.562C143.318 372.264 141.903 372.874 140.205 373.377C136.801 374.385 132.133 375 127 375C121.867 375 117.199 374.385 113.795 373.377C112.097 372.874 110.682 372.264 109.679 371.562C108.69 370.869 108 370.01 108 369H109.11C109.11 369.498 109.453 370.077 110.33 370.691C111.194 371.296 112.48 371.863 114.12 372.348Z" fill="#2D2D2D"/>
+<path d="M466 395.129C466 393.524 466.428 392.27 467.283 391.365C468.138 390.455 469.242 390 470.594 390C471.48 390 472.278 390.213 472.989 390.639C473.701 391.066 474.242 391.661 474.613 392.426C474.988 393.186 475.175 394.05 475.175 395.016C475.175 395.996 474.979 396.873 474.586 397.647C474.194 398.42 473.637 399.007 472.917 399.407C472.198 399.802 471.421 400 470.588 400C469.685 400 468.877 399.78 468.166 399.341C467.455 398.901 466.916 398.301 466.55 397.541C466.183 396.781 466 395.977 466 395.129ZM467.309 395.148C467.309 396.313 467.619 397.231 468.238 397.904C468.862 398.572 469.643 398.906 470.581 398.906C471.537 398.906 472.322 398.567 472.937 397.891C473.557 397.214 473.866 396.254 473.866 395.01C473.866 394.223 473.733 393.538 473.467 392.953C473.205 392.364 472.819 391.909 472.309 391.589C471.803 391.263 471.233 391.101 470.601 391.101C469.702 391.101 468.928 391.413 468.277 392.037C467.632 392.657 467.309 393.694 467.309 395.148Z" fill="#2D2D2D"/>
+<path d="M479.351 398.774L479.521 399.822C479.19 399.892 478.893 399.927 478.631 399.927C478.204 399.927 477.872 399.859 477.636 399.723C477.401 399.587 477.235 399.409 477.139 399.189C477.043 398.965 476.995 398.497 476.995 397.785V393.757H476.131V392.835H476.995V391.101L478.167 390.389V392.835H479.351V393.757H478.167V397.851C478.167 398.189 478.186 398.407 478.225 398.504C478.269 398.6 478.337 398.677 478.428 398.734C478.524 398.791 478.66 398.82 478.834 398.82C478.965 398.82 479.137 398.805 479.351 398.774Z" fill="#2D2D2D"/>
+<path d="M480.621 399.835V390.171H481.799V393.639C482.349 392.997 483.043 392.676 483.88 392.676C484.395 392.676 484.842 392.78 485.222 392.986C485.602 393.188 485.872 393.47 486.033 393.83C486.199 394.19 486.282 394.713 486.282 395.399V399.835H485.104V395.399C485.104 394.806 484.975 394.375 484.718 394.107C484.465 393.834 484.105 393.698 483.638 393.698C483.289 393.698 482.96 393.79 482.65 393.975C482.345 394.155 482.126 394.401 481.996 394.713C481.865 395.025 481.799 395.456 481.799 396.005V399.835H480.621Z" fill="#2D2D2D"/>
+<path d="M492.951 397.581L494.169 397.732C493.977 398.449 493.621 399.005 493.102 399.4C492.583 399.796 491.92 399.993 491.112 399.993C490.096 399.993 489.289 399.679 488.691 399.051C488.098 398.418 487.801 397.532 487.801 396.394C487.801 395.216 488.102 394.302 488.704 393.652C489.306 393.002 490.087 392.676 491.047 392.676C491.976 392.676 492.735 392.995 493.324 393.632C493.913 394.269 494.208 395.166 494.208 396.322C494.208 396.392 494.206 396.497 494.201 396.638H489.018C489.062 397.407 489.278 397.996 489.666 398.405C490.054 398.813 490.539 399.018 491.119 399.018C491.551 399.018 491.92 398.904 492.225 398.675C492.53 398.446 492.773 398.082 492.951 397.581ZM489.084 395.662H492.964C492.912 395.074 492.764 394.632 492.519 394.338C492.144 393.88 491.658 393.652 491.06 393.652C490.519 393.652 490.063 393.834 489.692 394.199C489.326 394.564 489.123 395.052 489.084 395.662Z" fill="#2D2D2D"/>
+<path d="M495.753 399.835V392.835H496.813V393.896C497.084 393.399 497.332 393.072 497.559 392.914C497.79 392.755 498.043 392.676 498.318 392.676C498.715 392.676 499.119 392.804 499.529 393.059L499.123 394.16C498.835 393.988 498.547 393.902 498.259 393.902C498.002 393.902 497.771 393.982 497.566 394.14C497.361 394.294 497.214 394.509 497.127 394.786C496.996 395.208 496.931 395.669 496.931 396.17V399.835H495.753Z" fill="#2D2D2D"/>
+<path d="M503.712 397.746L504.877 397.561C504.942 398.031 505.123 398.392 505.42 398.642C505.721 398.893 506.14 399.018 506.676 399.018C507.217 399.018 507.619 398.908 507.881 398.688C508.142 398.464 508.273 398.203 508.273 397.904C508.273 397.636 508.158 397.425 507.926 397.271C507.765 397.165 507.364 397.031 506.722 396.869C505.858 396.649 505.258 396.46 504.923 396.302C504.591 396.139 504.338 395.917 504.163 395.636C503.993 395.35 503.908 395.036 503.908 394.693C503.908 394.381 503.978 394.094 504.118 393.83C504.262 393.562 504.456 393.34 504.7 393.164C504.883 393.028 505.132 392.914 505.446 392.821C505.765 392.725 506.105 392.676 506.467 392.676C507.012 392.676 507.49 392.755 507.9 392.914C508.315 393.072 508.62 393.287 508.816 393.56C509.013 393.828 509.148 394.188 509.222 394.641L508.07 394.799C508.018 394.439 507.865 394.157 507.612 393.955C507.364 393.753 507.01 393.652 506.552 393.652C506.011 393.652 505.625 393.742 505.394 393.922C505.162 394.102 505.047 394.313 505.047 394.555C505.047 394.709 505.095 394.847 505.191 394.97C505.287 395.098 505.437 395.203 505.642 395.287C505.76 395.331 506.107 395.432 506.683 395.59C507.516 395.814 508.097 395.999 508.424 396.144C508.755 396.284 509.015 396.491 509.203 396.763C509.39 397.036 509.484 397.374 509.484 397.779C509.484 398.174 509.368 398.548 509.137 398.899C508.91 399.246 508.581 399.517 508.149 399.71C507.717 399.899 507.228 399.993 506.683 399.993C505.78 399.993 505.09 399.804 504.615 399.426C504.144 399.049 503.843 398.488 503.712 397.746Z" fill="#2D2D2D"/>
+<path d="M513.568 398.774L513.738 399.822C513.407 399.892 513.11 399.927 512.848 399.927C512.421 399.927 512.089 399.859 511.854 399.723C511.618 399.587 511.452 399.409 511.356 399.189C511.26 398.965 511.212 398.497 511.212 397.785V393.757H510.348V392.835H511.212V391.101L512.384 390.389V392.835H513.568V393.757H512.384V397.851C512.384 398.189 512.403 398.407 512.443 398.504C512.486 398.6 512.554 398.677 512.645 398.734C512.741 398.791 512.877 398.82 513.051 398.82C513.182 398.82 513.354 398.805 513.568 398.774Z" fill="#2D2D2D"/>
+<path d="M514.4 396.335C514.4 395.038 514.758 394.078 515.473 393.454C516.071 392.936 516.799 392.676 517.659 392.676C518.614 392.676 519.395 392.993 520.002 393.626C520.608 394.254 520.912 395.124 520.912 396.236C520.912 397.137 520.776 397.847 520.506 398.365C520.24 398.879 519.849 399.279 519.334 399.565C518.824 399.851 518.265 399.993 517.659 399.993C516.686 399.993 515.898 399.679 515.296 399.051C514.699 398.422 514.4 397.517 514.4 396.335ZM515.61 396.335C515.61 397.231 515.805 397.904 516.193 398.352C516.581 398.796 517.07 399.018 517.659 399.018C518.244 399.018 518.73 398.794 519.118 398.345C519.507 397.897 519.701 397.214 519.701 396.295C519.701 395.43 519.504 394.775 519.112 394.331C518.723 393.883 518.239 393.659 517.659 393.659C517.07 393.659 516.581 393.88 516.193 394.324C515.805 394.768 515.61 395.438 515.61 396.335Z" fill="#2D2D2D"/>
+<path d="M522.398 399.835V392.835H523.458V393.896C523.728 393.399 523.977 393.072 524.204 392.914C524.435 392.755 524.688 392.676 524.963 392.676C525.36 392.676 525.764 392.804 526.174 393.059L525.768 394.16C525.48 393.988 525.192 393.902 524.904 393.902C524.647 393.902 524.415 393.982 524.21 394.14C524.005 394.294 523.859 394.509 523.772 394.786C523.641 395.208 523.576 395.669 523.576 396.17V399.835H522.398Z" fill="#2D2D2D"/>
+<path d="M531.743 397.581L532.961 397.732C532.769 398.449 532.413 399.005 531.894 399.4C531.375 399.796 530.712 399.993 529.904 399.993C528.888 399.993 528.081 399.679 527.483 399.051C526.89 398.418 526.593 397.532 526.593 396.394C526.593 395.216 526.894 394.302 527.496 393.652C528.098 393.002 528.879 392.676 529.839 392.676C530.768 392.676 531.527 392.995 532.117 393.632C532.705 394.269 533 395.166 533 396.322C533 396.392 532.998 396.497 532.993 396.638H527.81C527.854 397.407 528.07 397.996 528.458 398.405C528.846 398.813 529.331 399.018 529.911 399.018C530.343 399.018 530.712 398.904 531.017 398.675C531.322 398.446 531.565 398.082 531.743 397.581ZM527.876 395.662H531.757C531.704 395.074 531.556 394.632 531.312 394.338C530.936 393.88 530.45 393.652 529.852 393.652C529.311 393.652 528.855 393.834 528.484 394.199C528.118 394.564 527.915 395.052 527.876 395.662Z" fill="#2D2D2D"/>
+<path d="M346 400.219V390.178H347.305L352.353 398.062V390.178H353.573V400.219H352.268L347.22 392.329V400.219H346Z" fill="#2D2D2D"/>
+<path d="M355.239 396.582C355.239 395.235 355.597 394.237 356.314 393.589C356.913 393.05 357.643 392.781 358.504 392.781C359.461 392.781 360.244 393.11 360.851 393.767C361.459 394.42 361.763 395.324 361.763 396.479C361.763 397.416 361.627 398.153 361.356 398.692C361.089 399.226 360.698 399.642 360.182 399.938C359.671 400.235 359.111 400.384 358.504 400.384C357.529 400.384 356.74 400.057 356.137 399.404C355.538 398.751 355.239 397.811 355.239 396.582ZM356.452 396.582C356.452 397.514 356.646 398.212 357.035 398.678C357.424 399.139 357.914 399.37 358.504 399.37C359.09 399.37 359.577 399.137 359.966 398.671C360.355 398.205 360.55 397.495 360.55 396.541C360.55 395.642 360.353 394.961 359.959 394.5C359.57 394.034 359.085 393.801 358.504 393.801C357.914 393.801 357.424 394.032 357.035 394.493C356.646 394.954 356.452 395.651 356.452 396.582Z" fill="#2D2D2D"/>
+<path d="M362.982 396.993L364.182 396.884C364.239 397.386 364.37 397.799 364.576 398.123C364.786 398.443 365.109 398.703 365.546 398.904C365.983 399.1 366.475 399.199 367.021 399.199C367.507 399.199 367.935 399.123 368.306 398.973C368.678 398.822 368.953 398.616 369.133 398.356C369.316 398.091 369.408 397.804 369.408 397.493C369.408 397.178 369.321 396.904 369.146 396.671C368.971 396.434 368.682 396.235 368.28 396.075C368.022 395.97 367.452 395.808 366.569 395.589C365.686 395.365 365.067 395.155 364.713 394.959C364.254 394.708 363.911 394.397 363.684 394.027C363.461 393.653 363.35 393.235 363.35 392.774C363.35 392.267 363.487 391.795 363.763 391.356C364.038 390.913 364.44 390.578 364.969 390.349C365.498 390.121 366.086 390.007 366.733 390.007C367.445 390.007 368.073 390.128 368.615 390.37C369.161 390.607 369.581 390.959 369.873 391.425C370.166 391.89 370.324 392.418 370.346 393.007L369.126 393.103C369.06 392.468 368.838 391.989 368.457 391.664C368.081 391.34 367.524 391.178 366.785 391.178C366.016 391.178 365.454 391.326 365.1 391.623C364.751 391.916 364.576 392.269 364.576 392.685C364.576 393.046 364.7 393.342 364.949 393.575C365.194 393.808 365.832 394.048 366.864 394.295C367.9 394.537 368.61 394.749 368.995 394.932C369.554 395.201 369.967 395.543 370.234 395.959C370.501 396.37 370.634 396.845 370.634 397.384C370.634 397.918 370.488 398.422 370.195 398.897C369.902 399.368 369.48 399.735 368.929 400C368.383 400.26 367.767 400.39 367.08 400.39C366.211 400.39 365.481 400.258 364.89 399.993C364.305 399.728 363.844 399.331 363.507 398.801C363.175 398.267 363 397.664 362.982 396.993Z" fill="#2D2D2D"/>
+<path d="M379.768 399.144C380.358 399.568 380.902 399.879 381.4 400.075L381.027 401C380.336 400.74 379.648 400.329 378.961 399.767C378.249 400.183 377.462 400.39 376.601 400.39C375.731 400.39 374.942 400.171 374.234 399.733C373.526 399.295 372.98 398.678 372.595 397.884C372.215 397.089 372.024 396.194 372.024 395.199C372.024 394.208 372.217 393.306 372.601 392.493C372.986 391.68 373.533 391.062 374.241 390.637C374.953 390.212 375.749 390 376.627 390C377.515 390 378.314 390.221 379.027 390.664C379.739 391.103 380.281 391.719 380.653 392.514C381.029 393.304 381.217 394.196 381.217 395.192C381.217 396.018 381.097 396.763 380.856 397.425C380.616 398.082 380.253 398.655 379.768 399.144ZM376.968 397.445C377.703 397.66 378.308 397.979 378.784 398.404C379.532 397.692 379.906 396.621 379.906 395.192C379.906 394.379 379.772 393.669 379.506 393.062C379.243 392.454 378.856 391.984 378.345 391.651C377.838 391.313 377.268 391.144 376.634 391.144C375.685 391.144 374.898 391.484 374.273 392.164C373.648 392.84 373.336 393.852 373.336 395.199C373.336 396.505 373.644 397.507 374.26 398.205C374.881 398.904 375.672 399.253 376.634 399.253C377.088 399.253 377.517 399.164 377.919 398.986C377.521 398.717 377.101 398.525 376.66 398.411L376.968 397.445Z" fill="#2D2D2D"/>
+<path d="M382.994 400.219V390.178H384.266V399.034H389V400.219H382.994Z" fill="#2D2D2D"/>
+<path d="M224 400.392V391H225.272V394.857H230.266V391H231.537V400.392H230.266V395.965H225.272V400.392H224Z" fill="#2D2D2D"/>
+<path d="M238.164 399.553C237.727 399.916 237.306 400.172 236.899 400.322C236.497 400.471 236.065 400.546 235.601 400.546C234.837 400.546 234.249 400.365 233.838 400.002C233.428 399.634 233.222 399.167 233.222 398.599C233.222 398.265 233.299 397.962 233.452 397.689C233.609 397.411 233.812 397.189 234.061 397.022C234.315 396.856 234.599 396.73 234.913 396.644C235.145 396.585 235.494 396.527 235.962 396.471C236.915 396.36 237.616 396.228 238.066 396.074C238.07 395.916 238.072 395.816 238.072 395.773C238.072 395.303 237.961 394.972 237.738 394.78C237.437 394.519 236.989 394.389 236.395 394.389C235.84 394.389 235.429 394.485 235.162 394.678C234.9 394.865 234.706 395.201 234.579 395.683L233.425 395.53C233.53 395.047 233.703 394.658 233.943 394.364C234.184 394.065 234.531 393.836 234.985 393.678C235.44 393.516 235.966 393.435 236.565 393.435C237.159 393.435 237.642 393.503 238.013 393.64C238.385 393.776 238.658 393.949 238.833 394.159C239.008 394.364 239.13 394.624 239.2 394.94C239.239 395.137 239.259 395.491 239.259 396.004V397.541C239.259 398.613 239.283 399.293 239.331 399.579C239.383 399.861 239.484 400.132 239.632 400.392H238.4C238.278 400.153 238.199 399.873 238.164 399.553ZM238.066 396.978C237.638 397.148 236.995 397.294 236.139 397.413C235.654 397.482 235.311 397.558 235.11 397.644C234.909 397.729 234.754 397.855 234.645 398.022C234.535 398.184 234.481 398.366 234.481 398.566C234.481 398.874 234.599 399.13 234.835 399.335C235.075 399.54 235.425 399.643 235.883 399.643C236.338 399.643 236.742 399.547 237.096 399.355C237.45 399.158 237.71 398.891 237.876 398.554C238.003 398.293 238.066 397.909 238.066 397.4V396.978Z" fill="#2D2D2D"/>
+<path d="M245.722 400.392V399.534C245.28 400.209 244.632 400.546 243.775 400.546C243.22 400.546 242.709 400.397 242.241 400.098C241.778 399.799 241.418 399.382 241.16 398.848C240.907 398.31 240.78 397.693 240.78 396.997C240.78 396.318 240.896 395.703 241.127 395.152C241.359 394.596 241.706 394.171 242.169 393.877C242.632 393.582 243.15 393.435 243.723 393.435C244.142 393.435 244.516 393.522 244.843 393.697C245.171 393.868 245.438 394.092 245.643 394.37V391H246.816V400.392H245.722ZM241.992 396.997C241.992 397.868 242.18 398.519 242.556 398.951C242.932 399.382 243.375 399.598 243.887 399.598C244.402 399.598 244.839 399.393 245.197 398.983C245.56 398.569 245.741 397.939 245.741 397.093C245.741 396.162 245.558 395.478 245.191 395.043C244.824 394.607 244.372 394.389 243.834 394.389C243.31 394.389 242.871 394.599 242.517 395.017C242.167 395.436 241.992 396.096 241.992 396.997Z" fill="#2D2D2D"/>
+<path d="M248.35 396.99C248.35 395.73 248.709 394.797 249.425 394.191C250.024 393.687 250.754 393.435 251.614 393.435C252.571 393.435 253.353 393.742 253.961 394.357C254.568 394.968 254.872 395.814 254.872 396.894C254.872 397.77 254.736 398.46 254.466 398.964C254.199 399.463 253.808 399.852 253.292 400.13C252.781 400.407 252.222 400.546 251.614 400.546C250.64 400.546 249.851 400.241 249.248 399.63C248.65 399.019 248.35 398.139 248.35 396.99ZM249.563 396.99C249.563 397.862 249.757 398.515 250.146 398.951C250.535 399.382 251.025 399.598 251.614 399.598C252.2 399.598 252.687 399.38 253.076 398.944C253.465 398.509 253.659 397.845 253.659 396.952C253.659 396.111 253.463 395.474 253.069 395.043C252.681 394.607 252.196 394.389 251.614 394.389C251.025 394.389 250.535 394.605 250.146 395.036C249.757 395.468 249.563 396.119 249.563 396.99Z" fill="#2D2D2D"/>
+<path d="M255.934 396.99C255.934 395.73 256.292 394.797 257.009 394.191C257.608 393.687 258.337 393.435 259.198 393.435C260.155 393.435 260.937 393.742 261.545 394.357C262.152 394.968 262.456 395.814 262.456 396.894C262.456 397.77 262.32 398.46 262.049 398.964C261.783 399.463 261.392 399.852 260.876 400.13C260.365 400.407 259.806 400.546 259.198 400.546C258.224 400.546 257.435 400.241 256.832 399.63C256.233 399.019 255.934 398.139 255.934 396.99ZM257.147 396.99C257.147 397.862 257.341 398.515 257.73 398.951C258.119 399.382 258.608 399.598 259.198 399.598C259.784 399.598 260.271 399.38 260.66 398.944C261.049 398.509 261.243 397.845 261.243 396.952C261.243 396.111 261.046 395.474 260.653 395.043C260.264 394.607 259.779 394.389 259.198 394.389C258.608 394.389 258.119 394.605 257.73 395.036C257.341 395.468 257.147 396.119 257.147 396.99Z" fill="#2D2D2D"/>
+<path d="M263.957 403V393.588H265.032V394.473C265.285 394.127 265.572 393.868 265.89 393.697C266.209 393.522 266.596 393.435 267.051 393.435C267.645 393.435 268.169 393.584 268.624 393.883C269.078 394.182 269.421 394.605 269.653 395.152C269.884 395.694 270 396.29 270 396.939C270 397.635 269.871 398.263 269.613 398.823C269.36 399.378 268.988 399.805 268.499 400.104C268.014 400.399 267.503 400.546 266.965 400.546C266.572 400.546 266.218 400.465 265.904 400.303C265.593 400.14 265.338 399.935 265.137 399.688V403H263.957ZM265.025 397.029C265.025 397.904 265.207 398.552 265.569 398.97C265.932 399.389 266.371 399.598 266.887 399.598C267.411 399.598 267.859 399.382 268.23 398.951C268.606 398.515 268.794 397.842 268.794 396.933C268.794 396.066 268.61 395.416 268.243 394.985C267.881 394.554 267.446 394.338 266.939 394.338C266.437 394.338 265.991 394.569 265.602 395.03C265.218 395.487 265.025 396.153 265.025 397.029Z" fill="#2D2D2D"/>
+<path d="M105 399.835V390.165H109.244C110.097 390.165 110.746 390.253 111.19 390.429C111.634 390.6 111.989 390.906 112.254 391.346C112.52 391.785 112.652 392.271 112.652 392.803C112.652 393.489 112.433 394.068 111.993 394.538C111.553 395.009 110.874 395.308 109.956 395.435C110.291 395.598 110.546 395.759 110.72 395.917C111.09 396.26 111.44 396.689 111.771 397.203L113.436 399.835H111.843L110.576 397.823C110.206 397.243 109.901 396.799 109.662 396.491C109.423 396.183 109.207 395.967 109.016 395.844C108.828 395.721 108.637 395.635 108.441 395.587C108.297 395.556 108.062 395.541 107.736 395.541H106.267V399.835H105ZM106.267 394.433H108.989C109.568 394.433 110.021 394.373 110.348 394.255C110.674 394.131 110.922 393.938 111.092 393.674C111.262 393.406 111.347 393.116 111.347 392.803C111.347 392.346 111.181 391.97 110.85 391.675C110.524 391.381 110.006 391.234 109.296 391.234H106.267V394.433Z" fill="#2D2D2D"/>
+<path d="M114.755 399.835V390.165H118.053C118.797 390.165 119.365 390.211 119.757 390.303C120.305 390.431 120.773 390.662 121.161 390.996C121.666 391.427 122.042 391.979 122.29 392.652C122.543 393.32 122.669 394.085 122.669 394.947C122.669 395.682 122.584 396.332 122.414 396.9C122.244 397.467 122.027 397.938 121.761 398.311C121.496 398.681 121.204 398.973 120.886 399.189C120.573 399.4 120.192 399.56 119.744 399.67C119.3 399.78 118.788 399.835 118.209 399.835H114.755ZM116.022 398.694H118.066C118.697 398.694 119.191 398.635 119.548 398.516C119.909 398.397 120.196 398.23 120.41 398.015C120.71 397.711 120.943 397.304 121.108 396.794C121.278 396.28 121.363 395.657 121.363 394.927C121.363 393.916 121.198 393.14 120.867 392.599C120.54 392.054 120.142 391.689 119.672 391.504C119.332 391.372 118.786 391.306 118.033 391.306H116.022V398.694Z" fill="#2D2D2D"/>
+<path d="M124.478 399.835V390.165H128.069C128.8 390.165 129.386 390.264 129.825 390.462C130.269 390.655 130.616 390.956 130.864 391.365C131.116 391.77 131.242 392.194 131.242 392.639C131.242 393.052 131.131 393.441 130.909 393.806C130.687 394.171 130.352 394.466 129.904 394.69C130.483 394.861 130.927 395.154 131.236 395.567C131.549 395.981 131.706 396.469 131.706 397.032C131.706 397.485 131.61 397.907 131.419 398.298C131.231 398.685 130.999 398.984 130.72 399.195C130.441 399.406 130.091 399.567 129.669 399.677C129.251 399.782 128.737 399.835 128.128 399.835H124.478ZM125.745 394.228H127.814C128.376 394.228 128.779 394.191 129.022 394.116C129.344 394.019 129.586 393.859 129.747 393.635C129.913 393.41 129.995 393.129 129.995 392.79C129.995 392.469 129.919 392.188 129.767 391.946C129.614 391.7 129.397 391.533 129.114 391.445C128.831 391.352 128.345 391.306 127.658 391.306H125.745V394.228ZM125.745 398.694H128.128C128.537 398.694 128.824 398.679 128.99 398.648C129.281 398.595 129.525 398.507 129.721 398.384C129.917 398.261 130.078 398.083 130.204 397.85C130.33 397.612 130.394 397.339 130.394 397.032C130.394 396.671 130.302 396.359 130.119 396.095C129.936 395.827 129.682 395.64 129.355 395.534C129.033 395.424 128.567 395.369 127.958 395.369H125.745V398.694Z" fill="#2D2D2D"/>
+<path d="M133.522 399.835V390.165H135.428L137.694 397.012C137.903 397.65 138.055 398.127 138.151 398.443C138.26 398.091 138.429 397.575 138.66 396.893L140.952 390.165H142.656V399.835H141.435V391.741L138.654 399.835H137.511L134.742 391.603V399.835H133.522Z" fill="#2D2D2D"/>
+<path d="M144.38 396.728L145.575 396.623C145.632 397.106 145.762 397.504 145.967 397.817C146.176 398.124 146.498 398.375 146.933 398.569C147.369 398.758 147.858 398.852 148.402 398.852C148.886 398.852 149.312 398.78 149.682 398.635C150.052 398.489 150.326 398.292 150.505 398.041C150.688 397.786 150.779 397.509 150.779 397.21C150.779 396.906 150.692 396.642 150.518 396.418C150.344 396.19 150.056 395.998 149.656 395.844C149.399 395.743 148.831 395.587 147.952 395.376C147.073 395.161 146.457 394.958 146.104 394.769C145.647 394.527 145.305 394.228 145.079 393.872C144.857 393.511 144.746 393.109 144.746 392.665C144.746 392.177 144.883 391.722 145.157 391.299C145.431 390.873 145.832 390.55 146.359 390.33C146.885 390.11 147.471 390 148.115 390C148.825 390 149.449 390.117 149.989 390.35C150.533 390.578 150.951 390.917 151.243 391.365C151.534 391.814 151.691 392.322 151.713 392.889L150.498 392.982C150.433 392.37 150.211 391.909 149.832 391.596C149.458 391.284 148.903 391.128 148.167 391.128C147.401 391.128 146.842 391.271 146.489 391.557C146.141 391.838 145.967 392.179 145.967 392.579C145.967 392.927 146.091 393.212 146.339 393.437C146.583 393.661 147.218 393.892 148.246 394.129C149.277 394.362 149.985 394.567 150.368 394.743C150.925 395.002 151.336 395.332 151.602 395.732C151.867 396.128 152 396.585 152 397.104C152 397.619 151.854 398.105 151.563 398.562C151.271 399.015 150.851 399.369 150.302 399.624C149.758 399.875 149.145 400 148.461 400C147.595 400 146.868 399.872 146.28 399.617C145.697 399.362 145.238 398.98 144.903 398.47C144.572 397.955 144.398 397.375 144.38 396.728Z" fill="#2D2D2D"/>
+<path d="M72 295.5C72 288.044 77.9181 282 85.2183 282H542.782C550.082 282 556 288.044 556 295.5C556 302.956 550.082 309 542.782 309H85.2183C77.918 309 72 302.956 72 295.5Z" fill="#E6E6E6"/>
+<path d="M262 300.274V291H263.271V300.274H262Z" fill="#2D2D2D"/>
+<path d="M265.478 300.274V293.556H266.539V294.511C267.05 293.773 267.788 293.404 268.753 293.404C269.172 293.404 269.556 293.478 269.906 293.625C270.259 293.769 270.524 293.958 270.698 294.195C270.873 294.431 270.995 294.711 271.065 295.036C271.109 295.247 271.131 295.616 271.131 296.143V300.274H269.952V296.187C269.952 295.723 269.906 295.377 269.814 295.15C269.722 294.918 269.559 294.734 269.323 294.599C269.091 294.46 268.819 294.391 268.504 294.391C268.002 294.391 267.568 294.545 267.201 294.852C266.838 295.16 266.657 295.744 266.657 296.605V300.274H265.478Z" fill="#2D2D2D"/>
+<path d="M275.631 299.255L275.801 300.261C275.469 300.328 275.172 300.362 274.91 300.362C274.482 300.362 274.15 300.297 273.915 300.166C273.679 300.035 273.513 299.865 273.417 299.654C273.321 299.439 273.273 298.989 273.273 298.306V294.441H272.408V293.556H273.273V291.892L274.445 291.209V293.556H275.631V294.441H274.445V298.37C274.445 298.694 274.465 298.903 274.504 298.996C274.548 299.089 274.615 299.162 274.707 299.217C274.803 299.272 274.939 299.299 275.113 299.299C275.244 299.299 275.417 299.285 275.631 299.255Z" fill="#2D2D2D"/>
+<path d="M281.663 298.11L282.881 298.256C282.689 298.943 282.333 299.477 281.814 299.856C281.294 300.236 280.631 300.425 279.823 300.425C278.805 300.425 277.998 300.124 277.399 299.521C276.806 298.914 276.509 298.064 276.509 296.972C276.509 295.841 276.81 294.964 277.413 294.34C278.015 293.716 278.797 293.404 279.757 293.404C280.687 293.404 281.447 293.71 282.037 294.321C282.626 294.933 282.921 295.793 282.921 296.902C282.921 296.969 282.919 297.071 282.914 297.206H277.727C277.771 297.944 277.987 298.509 278.375 298.901C278.764 299.293 279.249 299.489 279.829 299.489C280.262 299.489 280.631 299.38 280.936 299.16C281.242 298.941 281.484 298.591 281.663 298.11ZM277.792 296.269H281.676C281.624 295.704 281.475 295.28 281.231 294.998C280.855 294.559 280.369 294.34 279.77 294.34C279.229 294.34 278.773 294.515 278.402 294.865C278.035 295.215 277.832 295.683 277.792 296.269Z" fill="#2D2D2D"/>
+<path d="M284.264 300.83L285.41 300.995C285.458 301.336 285.591 301.585 285.81 301.741C286.102 301.952 286.502 302.057 287.008 302.057C287.554 302.057 287.975 301.952 288.272 301.741C288.569 301.53 288.77 301.235 288.875 300.856C288.936 300.624 288.964 300.137 288.96 299.394C288.445 299.98 287.803 300.274 287.034 300.274C286.078 300.274 285.338 299.94 284.814 299.274C284.29 298.608 284.028 297.809 284.028 296.877C284.028 296.236 284.148 295.645 284.388 295.105C284.628 294.561 284.976 294.142 285.43 293.847C285.888 293.551 286.425 293.404 287.041 293.404C287.862 293.404 288.539 293.724 289.071 294.365V293.556H290.158V299.363C290.158 300.409 290.047 301.149 289.824 301.583C289.606 302.022 289.257 302.367 288.777 302.62C288.301 302.873 287.713 303 287.015 303C286.185 303 285.515 302.819 285.004 302.456C284.493 302.098 284.246 301.556 284.264 300.83ZM285.24 296.794C285.24 297.676 285.421 298.319 285.783 298.724C286.146 299.129 286.6 299.331 287.146 299.331C287.687 299.331 288.141 299.131 288.508 298.73C288.875 298.325 289.058 297.693 289.058 296.832C289.058 296.01 288.868 295.39 288.488 294.973C288.113 294.555 287.659 294.346 287.126 294.346C286.602 294.346 286.157 294.553 285.79 294.966C285.423 295.375 285.24 295.985 285.24 296.794Z" fill="#2D2D2D"/>
+<path d="M292.045 300.274V293.556H293.106V294.574C293.377 294.098 293.626 293.783 293.853 293.632C294.084 293.48 294.338 293.404 294.613 293.404C295.01 293.404 295.414 293.526 295.824 293.771L295.418 294.827C295.13 294.663 294.842 294.58 294.554 294.58C294.296 294.58 294.065 294.656 293.859 294.808C293.654 294.956 293.508 295.162 293.421 295.428C293.29 295.833 293.224 296.276 293.224 296.756V300.274H292.045Z" fill="#2D2D2D"/>
+<path d="M301.176 299.445C300.739 299.803 300.318 300.056 299.912 300.204C299.51 300.352 299.078 300.425 298.615 300.425C297.851 300.425 297.263 300.246 296.853 299.888C296.443 299.525 296.237 299.063 296.237 298.502C296.237 298.173 296.314 297.874 296.467 297.604C296.624 297.33 296.827 297.111 297.076 296.946C297.329 296.782 297.613 296.657 297.927 296.573C298.159 296.514 298.508 296.457 298.975 296.402C299.927 296.293 300.628 296.162 301.078 296.01C301.082 295.854 301.084 295.755 301.084 295.713C301.084 295.249 300.973 294.922 300.75 294.732C300.449 294.475 300.001 294.346 299.407 294.346C298.853 294.346 298.442 294.441 298.176 294.631C297.914 294.817 297.72 295.148 297.593 295.624L296.44 295.472C296.545 294.996 296.718 294.612 296.958 294.321C297.198 294.026 297.545 293.8 297.999 293.644C298.453 293.484 298.979 293.404 299.578 293.404C300.172 293.404 300.654 293.471 301.025 293.606C301.396 293.741 301.669 293.912 301.844 294.119C302.018 294.321 302.141 294.578 302.211 294.89C302.25 295.084 302.27 295.434 302.27 295.94V297.459C302.27 298.517 302.294 299.188 302.342 299.47C302.394 299.749 302.494 300.016 302.643 300.274H301.412C301.289 300.037 301.211 299.761 301.176 299.445ZM301.078 296.902C300.65 297.071 300.008 297.214 299.152 297.332C298.667 297.4 298.325 297.475 298.124 297.56C297.923 297.644 297.768 297.769 297.659 297.933C297.549 298.093 297.495 298.273 297.495 298.471C297.495 298.774 297.613 299.027 297.849 299.23C298.089 299.432 298.438 299.533 298.897 299.533C299.351 299.533 299.755 299.439 300.108 299.249C300.462 299.055 300.722 298.791 300.888 298.458C301.014 298.201 301.078 297.821 301.078 297.319V296.902Z" fill="#2D2D2D"/>
+<path d="M306.789 299.255L306.96 300.261C306.628 300.328 306.331 300.362 306.069 300.362C305.641 300.362 305.309 300.297 305.073 300.166C304.837 300.035 304.672 299.865 304.575 299.654C304.479 299.439 304.431 298.989 304.431 298.306V294.441H303.567V293.556H304.431V291.892L305.604 291.209V293.556H306.789V294.441H305.604V298.37C305.604 298.694 305.623 298.903 305.663 298.996C305.706 299.089 305.774 299.162 305.866 299.217C305.962 299.272 306.097 299.299 306.272 299.299C306.403 299.299 306.575 299.285 306.789 299.255Z" fill="#2D2D2D"/>
+<path d="M308.067 292.309V291H309.246V292.309H308.067ZM308.067 300.274V293.556H309.246V300.274H308.067Z" fill="#2D2D2D"/>
+<path d="M310.72 296.915C310.72 295.671 311.078 294.749 311.794 294.15C312.392 293.653 313.121 293.404 313.982 293.404C314.938 293.404 315.719 293.707 316.326 294.315C316.933 294.918 317.237 295.753 317.237 296.82C317.237 297.684 317.101 298.365 316.831 298.863C316.564 299.356 316.173 299.74 315.658 300.014C315.147 300.288 314.588 300.425 313.982 300.425C313.008 300.425 312.22 300.124 311.617 299.521C311.019 298.918 310.72 298.049 310.72 296.915ZM311.932 296.915C311.932 297.775 312.126 298.42 312.514 298.85C312.903 299.276 313.392 299.489 313.982 299.489C314.567 299.489 315.054 299.274 315.442 298.844C315.831 298.414 316.025 297.758 316.025 296.877C316.025 296.046 315.829 295.418 315.436 294.992C315.047 294.561 314.562 294.346 313.982 294.346C313.392 294.346 312.903 294.559 312.514 294.985C312.126 295.411 311.932 296.054 311.932 296.915Z" fill="#2D2D2D"/>
+<path d="M318.737 300.274V293.556H319.798V294.511C320.309 293.773 321.047 293.404 322.012 293.404C322.431 293.404 322.815 293.478 323.165 293.625C323.518 293.769 323.782 293.958 323.957 294.195C324.132 294.431 324.254 294.711 324.324 295.036C324.367 295.247 324.389 295.616 324.389 296.143V300.274H323.21V296.187C323.21 295.723 323.165 295.377 323.073 295.15C322.981 294.918 322.817 294.734 322.582 294.599C322.35 294.46 322.077 294.391 321.763 294.391C321.261 294.391 320.826 294.545 320.46 294.852C320.097 295.16 319.916 295.744 319.916 296.605V300.274H318.737Z" fill="#2D2D2D"/>
+<path d="M330.134 300.274V291H331.313V300.274H330.134Z" fill="#2D2D2D"/>
+<path d="M337.798 299.445C337.361 299.803 336.94 300.056 336.534 300.204C336.132 300.352 335.7 300.425 335.237 300.425C334.473 300.425 333.885 300.246 333.475 299.888C333.064 299.525 332.859 299.063 332.859 298.502C332.859 298.173 332.936 297.874 333.088 297.604C333.246 297.33 333.449 297.111 333.698 296.946C333.951 296.782 334.235 296.657 334.549 296.573C334.78 296.514 335.13 296.457 335.597 296.402C336.549 296.293 337.25 296.162 337.699 296.01C337.704 295.854 337.706 295.755 337.706 295.713C337.706 295.249 337.595 294.922 337.372 294.732C337.071 294.475 336.623 294.346 336.029 294.346C335.475 294.346 335.064 294.441 334.798 294.631C334.536 294.817 334.342 295.148 334.215 295.624L333.062 295.472C333.167 294.996 333.34 294.612 333.58 294.321C333.82 294.026 334.167 293.8 334.621 293.644C335.075 293.484 335.601 293.404 336.2 293.404C336.793 293.404 337.276 293.471 337.647 293.606C338.018 293.741 338.291 293.912 338.466 294.119C338.64 294.321 338.763 294.578 338.832 294.89C338.872 295.084 338.891 295.434 338.891 295.94V297.459C338.891 298.517 338.915 299.188 338.963 299.47C339.016 299.749 339.116 300.016 339.265 300.274H338.033C337.911 300.037 337.833 299.761 337.798 299.445ZM337.699 296.902C337.271 297.071 336.63 297.214 335.774 297.332C335.289 297.4 334.946 297.475 334.746 297.56C334.545 297.644 334.39 297.769 334.281 297.933C334.171 298.093 334.117 298.273 334.117 298.471C334.117 298.774 334.235 299.027 334.47 299.23C334.711 299.432 335.06 299.533 335.518 299.533C335.972 299.533 336.376 299.439 336.73 299.249C337.084 299.055 337.344 298.791 337.509 298.458C337.636 298.201 337.699 297.821 337.699 297.319V296.902Z" fill="#2D2D2D"/>
+<path d="M340.785 302.861L340.654 301.792C340.911 301.859 341.136 301.893 341.328 301.893C341.59 301.893 341.8 301.851 341.957 301.766C342.114 301.682 342.243 301.564 342.344 301.412C342.418 301.298 342.538 301.016 342.704 300.565C342.726 300.501 342.76 300.409 342.809 300.286L340.169 293.556H341.44L342.887 297.446C343.075 297.939 343.243 298.458 343.391 299.002C343.527 298.479 343.688 297.969 343.876 297.471L345.363 293.556H346.542L343.896 300.387C343.612 301.125 343.391 301.634 343.234 301.912C343.025 302.287 342.785 302.561 342.514 302.734C342.243 302.911 341.92 303 341.544 303C341.317 303 341.064 302.954 340.785 302.861Z" fill="#2D2D2D"/>
+<path d="M352.417 298.11L353.635 298.256C353.443 298.943 353.087 299.477 352.568 299.856C352.048 300.236 351.385 300.425 350.577 300.425C349.559 300.425 348.752 300.124 348.153 299.521C347.56 298.914 347.263 298.064 347.263 296.972C347.263 295.841 347.564 294.964 348.167 294.34C348.769 293.716 349.551 293.404 350.511 293.404C351.441 293.404 352.201 293.71 352.791 294.321C353.38 294.933 353.675 295.793 353.675 296.902C353.675 296.969 353.673 297.071 353.668 297.206H348.481C348.525 297.944 348.741 298.509 349.129 298.901C349.518 299.293 350.003 299.489 350.583 299.489C351.016 299.489 351.385 299.38 351.69 299.16C351.996 298.941 352.238 298.591 352.417 298.11ZM348.546 296.269H352.43C352.378 295.704 352.229 295.28 351.985 294.998C351.609 294.559 351.123 294.34 350.524 294.34C349.983 294.34 349.527 294.515 349.156 294.865C348.789 295.215 348.586 295.683 348.546 296.269Z" fill="#2D2D2D"/>
+<path d="M355.221 300.274V293.556H356.282V294.574C356.553 294.098 356.802 293.783 357.029 293.632C357.26 293.48 357.513 293.404 357.788 293.404C358.186 293.404 358.59 293.526 359 293.771L358.594 294.827C358.306 294.663 358.018 294.58 357.729 294.58C357.472 294.58 357.24 294.656 357.035 294.808C356.83 294.956 356.684 295.162 356.596 295.428C356.465 295.833 356.4 296.276 356.4 296.756V300.274H355.221Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M171.687 319.838C171.903 320.054 172.254 320.054 172.47 319.838L175.995 316.315C176.211 316.099 176.211 315.748 175.995 315.532C175.778 315.316 175.428 315.316 175.211 315.532L172.632 318.11V308.375C172.632 281.165 194.701 259.107 221.923 259.107H233V258H221.923C194.089 258 171.525 280.554 171.525 308.375V318.11L168.945 315.532C168.729 315.316 168.378 315.316 168.162 315.532C167.946 315.748 167.946 316.099 168.162 316.315L171.687 319.838Z" fill="#2D2D2D"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M456 308.923V320H454.893V308.923C454.893 281.701 432.835 259.632 405.625 259.632H395.89L398.468 262.211C398.684 262.428 398.684 262.778 398.468 262.995C398.252 263.211 397.901 263.211 397.685 262.995L394.162 259.47C393.946 259.254 393.946 258.903 394.162 258.687L397.685 255.162C397.901 254.946 398.252 254.946 398.468 255.162C398.684 255.378 398.684 255.729 398.468 255.945L395.89 258.525H405.625C433.446 258.525 456 281.089 456 308.923Z" fill="#2D2D2D"/>
+</svg>
diff --git a/public/img/usecases/digital-hub/one-video.png b/public/img/usecases/digital-hub/one-video.png
new file mode 100644
index 0000000..35af217
--- /dev/null
+++ b/public/img/usecases/digital-hub/one-video.png
Binary files differ
diff --git a/public/img/usecases/digital-hub/three-video.png b/public/img/usecases/digital-hub/three-video.png
new file mode 100644
index 0000000..1d31b62
--- /dev/null
+++ b/public/img/usecases/digital-hub/three-video.png
Binary files differ
diff --git a/public/img/usecases/digital-hub/two-video.png b/public/img/usecases/digital-hub/two-video.png
new file mode 100644
index 0000000..c97252e
--- /dev/null
+++ b/public/img/usecases/digital-hub/two-video.png
Binary files differ
diff --git a/public/img/usecases/ellipses.svg b/public/img/usecases/ellipses.svg
new file mode 100644
index 0000000..d45f569
--- /dev/null
+++ b/public/img/usecases/ellipses.svg
@@ -0,0 +1,14 @@
+<svg width="790" height="430" viewBox="0 0 790 430" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M110.732 428.585C80.511 428.585 53.0255 404.835 33.0655 366.152C13.1187 327.495 0.766481 274.057 0.766483 215.003C0.766486 155.949 13.1187 102.51 33.0655 63.8533C53.0255 25.1709 80.5111 1.42089 110.732 1.42089C140.953 1.42089 168.439 25.1709 188.399 63.8533C208.346 102.51 220.698 155.949 220.698 215.003C220.698 274.057 208.346 327.495 188.399 366.152C168.439 404.835 140.953 428.585 110.732 428.585Z" stroke="#F6F6F6"/>
+<path d="M228.583 428.576C198.361 428.576 170.876 404.826 150.916 366.144C130.969 327.487 118.617 274.048 118.617 214.994C118.617 155.94 130.969 102.502 150.916 63.845C170.876 25.1626 198.361 1.41259 228.583 1.41259C258.804 1.41259 286.289 25.1626 306.249 63.845C326.196 102.502 338.548 155.94 338.548 214.994C338.548 274.048 326.196 327.487 306.249 366.144C286.289 404.826 258.804 428.576 228.583 428.576Z" stroke="#F6F6F6"/>
+<path d="M278.636 428.587C248.415 428.587 220.93 404.837 200.97 366.155C181.023 327.498 168.671 274.059 168.671 215.005C168.671 155.951 181.023 102.512 200.97 63.8557C220.93 25.1733 248.415 1.42333 278.636 1.42333C308.857 1.42334 336.343 25.1733 356.303 63.8557C376.25 102.512 388.602 155.951 388.602 215.005C388.602 274.059 376.25 327.498 356.303 366.155C336.343 404.837 308.857 428.587 278.636 428.587Z" stroke="#F6F6F6"/>
+<path d="M328.718 428.584C298.497 428.584 271.012 404.834 251.052 366.151C231.105 327.494 218.753 274.056 218.753 215.002C218.753 155.948 231.105 102.509 251.052 63.8523C271.012 25.1699 298.497 1.41992 328.718 1.41992C358.939 1.41992 386.425 25.1699 406.385 63.8523C426.332 102.509 438.684 155.948 438.684 215.002C438.684 274.056 426.332 327.494 406.385 366.151C386.425 404.834 358.939 428.584 328.718 428.584Z" stroke="#F6F6F6"/>
+<path d="M378.808 428.581C348.587 428.581 321.101 404.831 301.141 366.149C281.195 327.492 268.842 274.053 268.842 214.999C268.842 155.945 281.195 102.507 301.141 63.8499C321.101 25.1675 348.587 1.41747 378.808 1.41748C409.029 1.41748 436.515 25.1675 456.475 63.8499C476.422 102.507 488.774 155.945 488.774 214.999C488.774 274.053 476.422 327.492 456.475 366.149C436.515 404.831 409.029 428.581 378.808 428.581Z" stroke="#F6F6F6"/>
+<path d="M428.868 428.585C398.647 428.585 371.162 404.835 351.202 366.153C331.255 327.496 318.903 274.058 318.903 215.004C318.903 155.95 331.255 102.511 351.202 63.8543C371.162 25.1719 398.647 1.42187 428.869 1.42187C459.09 1.42187 486.575 25.1719 506.535 63.8543C526.482 102.511 538.834 155.95 538.834 215.004C538.834 274.058 526.482 327.496 506.535 366.153C486.575 404.835 459.09 428.585 428.868 428.585Z" stroke="#F6F6F6"/>
+<path d="M478.958 428.583C448.737 428.583 421.252 404.833 401.292 366.151C381.345 327.494 368.993 274.055 368.993 215.001C368.993 155.947 381.345 102.509 401.292 63.8518C421.252 25.1694 448.737 1.41943 478.958 1.41943C509.179 1.41943 536.665 25.1694 556.625 63.8518C576.572 102.509 588.924 155.947 588.924 215.001C588.924 274.055 576.572 327.494 556.625 366.151C536.665 404.833 509.179 428.583 478.958 428.583Z" stroke="#F6F6F6"/>
+<path d="M529.038 428.581C498.817 428.581 471.331 404.831 451.371 366.149C431.424 327.492 419.072 274.053 419.072 214.999C419.072 155.945 431.424 102.507 451.371 63.8499C471.331 25.1675 498.817 1.41747 529.038 1.41748C559.259 1.41748 586.744 25.1675 606.704 63.8499C626.651 102.507 639.003 155.945 639.003 214.999C639.003 274.053 626.651 327.492 606.704 366.149C586.744 404.831 559.259 428.581 529.038 428.581Z" stroke="#F6F6F6"/>
+<path d="M579.115 428.581C548.894 428.581 521.408 404.831 501.448 366.149C481.501 327.492 469.149 274.053 469.149 214.999C469.149 155.945 481.501 102.507 501.448 63.8499C521.408 25.1675 548.894 1.41747 579.115 1.41748C609.336 1.41748 636.821 25.1675 656.781 63.8499C676.728 102.507 689.08 155.945 689.08 214.999C689.08 274.053 676.728 327.492 656.781 366.149C636.821 404.831 609.336 428.581 579.115 428.581Z" stroke="#F6F6F6"/>
+<path d="M629.191 428.582C598.97 428.582 571.485 404.832 551.525 366.149C531.578 327.492 519.226 274.054 519.226 215C519.226 155.946 531.578 102.507 551.525 63.8503C571.485 25.168 598.97 1.41796 629.191 1.41796C659.412 1.41797 686.898 25.168 706.858 63.8504C726.805 102.507 739.157 155.946 739.157 215C739.157 274.054 726.805 327.492 706.858 366.149C686.898 404.832 659.412 428.582 629.191 428.582Z" stroke="#F6F6F6"/>
+<path d="M679.268 428.583C649.047 428.583 621.561 404.833 601.601 366.151C581.654 327.494 569.302 274.055 569.302 215.001C569.302 155.947 581.654 102.509 601.601 63.8518C621.561 25.1694 649.047 1.41943 679.268 1.41943C709.489 1.41943 736.975 25.1694 756.935 63.8518C776.881 102.509 789.234 155.947 789.234 215.001C789.234 274.055 776.881 327.494 756.935 366.151C736.975 404.833 709.489 428.583 679.268 428.583Z" stroke="#F6F6F6"/>
+<path d="M169.647 428.585C139.425 428.585 111.94 404.835 91.9798 366.152C72.033 327.495 59.6808 274.057 59.6809 215.003C59.6809 155.949 72.033 102.51 91.9798 63.8533C111.94 25.1709 139.425 1.42089 169.647 1.42089C199.868 1.42089 227.353 25.1709 247.313 63.8533C267.26 102.51 279.612 155.949 279.612 215.003C279.612 274.057 267.26 327.495 247.313 366.152C227.353 404.835 199.868 428.585 169.647 428.585Z" stroke="#F6F6F6"/>
+</svg>
diff --git a/public/img/usecases/head-bg.svg b/public/img/usecases/head-bg.svg
new file mode 100644
index 0000000..a2b5b53
--- /dev/null
+++ b/public/img/usecases/head-bg.svg
@@ -0,0 +1,44 @@
+<svg width="572" height="660" viewBox="0 0 572 660" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M555.102 237.796L571 228.624L571 557.731L555.102 566.903L555.102 237.796Z" fill="#0070CC" stroke="white"/>
+<path d="M176.614 1.07811L570.934 228.739L555.039 237.916L160.719 10.2551L176.614 1.07811Z" fill="#0070CC" stroke="white"/>
+<path d="M160.716 10.2505L555.103 237.797L555.103 566.904L160.716 339.357L160.716 10.2505Z" fill="#0070CC" stroke="white"/>
+<path d="M181.146 71.3589C181.146 70.2543 181.921 69.8064 182.878 70.3584L529.161 270.151C530.118 270.703 530.893 272.046 530.893 273.151L530.893 525.977C530.893 527.081 530.118 527.529 529.161 526.977L182.878 327.184C181.921 326.632 181.146 325.289 181.146 324.185L181.146 71.3589Z" fill="#0070CC" stroke="white"/>
+<path d="M193.428 53.0608C193.428 56.837 190.776 58.3673 187.503 56.4779C184.231 54.5885 181.579 49.9955 181.579 46.2192C181.579 42.443 184.231 40.9128 187.503 42.8021C190.776 44.6915 193.428 49.2846 193.428 53.0608Z" fill="#0070CC" stroke="white"/>
+<path d="M212.246 64.0631C212.246 67.8393 209.594 69.3703 206.32 67.4819C203.047 65.5935 200.394 61.0012 200.394 57.225C200.394 53.4487 203.047 51.9177 206.32 53.8061C209.594 55.6946 212.246 60.2869 212.246 64.0631Z" fill="#0070CC" stroke="white"/>
+<path d="M230.833 75.0694C230.833 78.8457 228.18 80.3767 224.907 78.4883C221.634 76.5998 218.981 72.0075 218.981 68.2313C218.981 64.4551 221.634 62.9241 224.907 64.8125C228.18 66.7009 230.833 71.2932 230.833 75.0694Z" fill="#0070CC" stroke="white"/>
+<path d="M475.244 283.089L491.142 273.917L491.142 603.024L475.244 612.196L475.244 283.089Z" fill="#0070CC" stroke="white"/>
+<path d="M96.7557 46.3701L491.076 274.031L475.181 283.208L80.8607 55.5471L96.7557 46.3701Z" fill="#0070CC" stroke="white"/>
+<path d="M80.858 55.5425L475.244 283.089L475.244 612.196L80.858 384.649L80.858 55.5425Z" fill="#0070CC" stroke="white"/>
+<path d="M101.287 116.651C101.287 115.546 102.063 115.098 103.02 115.65L449.303 315.443C450.26 315.995 451.035 317.338 451.035 318.443L451.035 571.269C451.035 572.373 450.26 572.821 449.303 572.269L103.02 372.476C102.063 371.924 101.287 370.581 101.287 369.477L101.287 116.651Z" fill="#0070CC" stroke="white"/>
+<path d="M113.57 98.3528C113.57 102.129 110.918 103.659 107.645 101.77C104.373 99.8805 101.72 95.2874 101.72 91.5112C101.72 87.735 104.373 86.2048 107.645 88.0941C110.918 89.9835 113.57 94.5766 113.57 98.3528Z" fill="#0070CC" stroke="white"/>
+<path d="M132.388 109.355C132.388 113.131 129.735 114.662 126.462 112.774C123.189 110.885 120.536 106.293 120.536 102.517C120.536 98.7407 123.189 97.2097 126.462 99.0981C129.735 100.987 132.388 105.579 132.388 109.355Z" fill="#0070CC" stroke="white"/>
+<path d="M150.975 120.362C150.975 124.138 148.322 125.669 145.049 123.781C141.776 121.892 139.123 117.3 139.123 113.524C139.123 109.748 141.776 108.217 145.049 110.105C148.322 111.993 150.975 116.586 150.975 120.362Z" fill="#0070CC" stroke="white"/>
+<path d="M395.386 329.813L411.284 320.641L411.284 649.748L395.386 658.92L395.386 329.813Z" fill="#0070CC" stroke="white"/>
+<path d="M16.8977 93.0947L411.218 320.756L395.323 329.933L1.00271 102.272L16.8977 93.0947Z" fill="#0070CC" stroke="white"/>
+<path d="M1 102.268L395.386 329.815L395.386 658.922L0.999994 431.375L1 102.268Z" fill="#0070CC" stroke="white"/>
+<path d="M21.4294 163.375C21.4294 162.271 22.205 161.823 23.1618 162.375L369.445 362.168C370.402 362.72 371.177 364.063 371.177 365.167L371.177 617.993C371.177 619.098 370.402 619.546 369.445 618.994L23.1618 419.201C22.205 418.649 21.4294 417.306 21.4294 416.201L21.4294 163.375Z" fill="#0070CC" stroke="white"/>
+<path d="M33.7124 145.077C33.7124 148.854 31.0599 150.384 27.7874 148.494C24.515 146.605 21.8625 142.012 21.8625 138.236C21.8625 134.46 24.515 132.929 27.7874 134.819C31.0599 136.708 33.7124 141.301 33.7124 145.077Z" fill="#0070CC" stroke="white"/>
+<path d="M52.5304 156.081C52.5304 159.857 49.8774 161.388 46.6044 159.5C43.3314 157.612 40.6784 153.019 40.6784 149.243C40.6784 145.467 43.3314 143.936 46.6044 145.824C49.8774 147.713 52.5304 152.305 52.5304 156.081Z" fill="#0070CC" stroke="white"/>
+<path d="M71.1169 167.088C71.1169 170.864 68.4639 172.395 65.1909 170.507C61.9179 168.618 59.2649 164.026 59.2649 160.25C59.2649 156.474 61.9179 154.943 65.1909 156.831C68.4639 158.719 71.1169 163.312 71.1169 167.088Z" fill="#0070CC" stroke="white"/>
+<g clip-path="url(#clip0_53:167)">
+<rect x="0.433085" y="0.749874" width="146.89" height="33.2309" rx="1.65366" transform="matrix(0.86617 0.499749 -2.20453e-08 1 45.9552 310.684)" fill="#0070CC"/>
+<path d="M45.8973 310.901L49.362 312.9L49.362 355.9L45.8973 353.901L45.8973 310.901Z" fill="#0070CC"/>
+</g>
+<rect x="0.433085" y="0.749874" width="146.89" height="33.2309" rx="1.65366" transform="matrix(0.86617 0.499749 -2.20453e-08 1 45.9552 310.684)" stroke="white" stroke-linecap="round"/>
+<g clip-path="url(#clip1_53:167)">
+<rect x="0.433085" y="0.749874" width="147.847" height="33.4525" rx="1.65366" transform="matrix(0.86617 0.499749 -2.20453e-08 1 193.635 395.318)" fill="#0070CC"/>
+<path d="M193.577 395.535L197.042 397.534L197.042 440.534L193.577 438.535L193.577 395.535Z" fill="#0070CC"/>
+</g>
+<rect x="0.433085" y="0.749874" width="147.847" height="33.4525" rx="1.65366" transform="matrix(0.86617 0.499749 -2.20453e-08 1 193.635 395.318)" stroke="white" stroke-linecap="round"/>
+<rect x="0.433085" y="0.749874" width="146.89" height="33.2309" rx="1.65366" transform="matrix(0.86617 0.499749 -2.20453e-08 1 45.9552 264.214)" fill="#0070CC"/>
+<rect x="0.433085" y="0.749874" width="146.89" height="33.2309" rx="1.65366" transform="matrix(0.86617 0.499749 -2.20453e-08 1 45.9552 264.214)" stroke="white" stroke-linecap="round"/>
+<rect x="0.433085" y="0.749874" width="147.847" height="33.4526" rx="1.65366" transform="matrix(0.86617 0.499749 -2.20453e-08 1 193.635 348.547)" fill="#0070CC"/>
+<rect x="0.433085" y="0.749874" width="147.847" height="33.4526" rx="1.65366" transform="matrix(0.86617 0.499749 -2.20453e-08 1 193.635 348.547)" stroke="white" stroke-linecap="round"/>
+<path d="M242.17 453.053L242.17 485.329L247.802 482.267L251.74 495.303L258.036 495.842L254.368 483.507L262.414 488.149L242.17 453.053Z" fill="#0070CC" stroke="white"/>
+<defs>
+<clipPath id="clip0_53:167">
+</clipPath>
+<clipPath id="clip1_53:167">
+</clipPath>
+</defs>
+</svg>
diff --git a/public/img/usecases/high-peformance/arrow-circle.svg b/public/img/usecases/high-peformance/arrow-circle.svg
new file mode 100644
index 0000000..d3c7cc1
--- /dev/null
+++ b/public/img/usecases/high-peformance/arrow-circle.svg
@@ -0,0 +1,3 @@
+<svg width="26" height="29" viewBox="0 0 26 29" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M25 15.7686C25 22.4575 19.6274 27.88 13 27.88C6.37258 27.88 1 22.4575 1 15.7686C1 9.07963 6.37258 3.65717 13 3.65717M9.68342 1L13.5973 3.40669L11.2128 7.35692" stroke="#9C9C9C" stroke-width="1.5"/>
+</svg>
diff --git a/public/img/usecases/high-peformance/hero.svg b/public/img/usecases/high-peformance/hero.svg
new file mode 100644
index 0000000..5c37fdf
--- /dev/null
+++ b/public/img/usecases/high-peformance/hero.svg
@@ -0,0 +1,21 @@
+<svg width="460" height="693" viewBox="0 0 460 693" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M73.0233 552.901L260.458 661.116L260.458 692L73.0233 583.785L73.0233 552.901Z" fill="#0070CC" stroke="white"/>
+<rect width="146.091" height="30.884" transform="matrix(0.866025 -0.500001 2.20305e-08 1 260.458 661.115)" fill="#0070CC" stroke="white"/>
+<path d="M199.542 479.854L386.977 588.07L260.458 661.116L73.0233 552.9L199.542 479.854Z" fill="#0070CC" stroke="white"/>
+<path d="M269.83 441.979L296.576 426.537L296.576 594.271L269.83 609.713L269.83 441.979Z" fill="#0070CC" stroke="white"/>
+<path d="M166.741 382.46L269.83 441.979L269.83 609.713L166.741 550.194L166.741 382.46Z" fill="#0070CC" stroke="white"/>
+<path d="M416.263 264.775L458.436 240.427L458.436 586.716L416.263 611.065L416.263 264.775Z" fill="#0070CC" stroke="white"/>
+<path d="M43.7366 0.999984L458.436 240.427L416.263 264.775L1.56377 25.3485L43.7366 0.999984Z" fill="#0070CC" stroke="white"/>
+<path d="M1.5639 25.3486L416.263 264.776L416.263 611.065L1.5639 371.638L1.5639 25.3486Z" fill="#0070CC" stroke="white"/>
+<path d="M30.7665 84.1611C30.7665 83.0566 31.5419 82.6088 32.4985 83.1611L380.475 284.065C381.431 284.618 382.207 285.961 382.207 287.065L382.207 553.604C382.207 554.709 381.431 555.156 380.475 554.604L32.4985 353.7C31.5419 353.148 30.7665 351.805 30.7665 350.7L30.7665 84.1611Z" fill="#0070CC" stroke="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M146.852 228.868C143.775 227.092 141.28 228.532 141.28 232.085L141.28 251.388C141.28 254.941 143.775 259.262 146.852 261.039L180.285 280.342L180.285 299.644L157.997 286.776C156.37 285.837 154.825 285.765 153.766 286.58L137.05 299.448C136.821 299.624 136.623 299.834 136.453 300.074L130.136 296.427C127.059 294.65 124.564 296.091 124.564 299.644L124.564 325.381C124.564 328.934 127.059 333.255 130.136 335.032L152.425 347.9C155.502 349.677 157.997 348.237 157.997 344.683L157.997 318.947C157.997 315.393 155.502 311.072 152.425 309.295L151.007 308.477L160.56 301.124L180.285 312.512L180.285 325.381L174.713 322.164C171.636 320.387 169.141 321.827 169.141 325.381L169.141 351.117C169.141 354.671 171.636 358.992 174.713 360.769L197.002 373.637C200.079 375.414 202.574 373.973 202.574 370.42L202.574 344.683C202.574 341.13 200.079 336.809 197.002 335.032L191.43 331.815L191.43 318.947L211.091 330.298L220.684 348.705L219.29 347.9C216.213 346.124 213.718 347.564 213.718 351.117L213.718 376.854C213.718 380.408 216.213 384.729 219.29 386.505L241.579 399.374C244.656 401.15 247.151 399.71 247.151 396.157L247.151 370.42C247.151 366.866 244.656 362.545 241.579 360.769L235.261 357.121C235.09 356.681 234.889 356.236 234.658 355.792L217.87 323.58C216.811 321.549 215.269 319.842 213.647 318.905L191.43 306.078L191.43 286.776L224.862 306.078C227.94 307.855 230.435 306.415 230.435 302.861L230.435 283.559C230.435 280.005 227.94 275.684 224.862 273.907L146.852 228.868ZM180.285 338.249L191.43 344.683L191.43 357.552L180.285 351.117L180.285 338.249ZM219.29 289.993L219.29 283.559L152.425 244.954L152.425 251.388L219.29 289.993ZM135.708 325.381L135.708 312.512L146.852 318.947L146.852 331.815L135.708 325.381ZM224.862 376.854L224.862 363.986L236.007 370.42L236.007 383.288L224.862 376.854Z" fill="#0070CC"/>
+<path d="M219.29 283.559L219.29 289.993L152.425 251.388L152.425 244.954L219.29 283.559Z" fill="#0070CC"/>
+<path d="M135.708 312.512L135.708 325.381L146.852 331.815L146.852 318.947L135.708 312.512Z" fill="#0070CC"/>
+<path d="M191.43 357.552L191.43 344.683L180.285 338.249L180.285 351.117L191.43 357.552Z" fill="#0070CC"/>
+<path d="M224.862 363.986L224.862 376.854L236.007 383.288L236.007 370.42L224.862 363.986Z" fill="#0070CC"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M146.852 228.868C143.775 227.092 141.28 228.532 141.28 232.085L141.28 251.388C141.28 254.941 143.775 259.262 146.852 261.039L180.285 280.342L180.285 299.644L157.997 286.776C156.37 285.837 154.825 285.765 153.766 286.58L137.05 299.448C136.821 299.624 136.623 299.834 136.453 300.074L130.136 296.427C127.059 294.65 124.564 296.091 124.564 299.644L124.564 325.381C124.564 328.934 127.059 333.255 130.136 335.032L152.425 347.9C155.502 349.677 157.997 348.237 157.997 344.683L157.997 318.947C157.997 315.393 155.502 311.072 152.425 309.295L151.007 308.477L160.56 301.124L180.285 312.512L180.285 325.381L174.713 322.164C171.636 320.387 169.141 321.827 169.141 325.381L169.141 351.117C169.141 354.671 171.636 358.992 174.713 360.769L197.002 373.637C200.079 375.414 202.574 373.973 202.574 370.42L202.574 344.683C202.574 341.13 200.079 336.809 197.002 335.032L191.43 331.815L191.43 318.947L211.091 330.298L220.684 348.705L219.29 347.9C216.213 346.124 213.718 347.564 213.718 351.117L213.718 376.854C213.718 380.408 216.213 384.729 219.29 386.505L241.579 399.374C244.656 401.15 247.151 399.71 247.151 396.157L247.151 370.42C247.151 366.866 244.656 362.545 241.579 360.769L235.261 357.121C235.09 356.681 234.889 356.236 234.658 355.792L217.87 323.58C216.811 321.549 215.269 319.842 213.647 318.905L191.43 306.078L191.43 286.776L224.862 306.078C227.94 307.855 230.435 306.415 230.435 302.861L230.435 283.559C230.435 280.005 227.94 275.684 224.862 273.907L146.852 228.868ZM180.285 338.249L191.43 344.683L191.43 357.552L180.285 351.117L180.285 338.249ZM219.29 289.993L219.29 283.559L152.425 244.954L152.425 251.388L219.29 289.993ZM135.708 325.381L135.708 312.512L146.852 318.947L146.852 331.815L135.708 325.381ZM224.862 376.854L224.862 363.986L236.007 370.42L236.007 383.288L224.862 376.854Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M219.29 283.559L219.29 289.993L152.425 251.388L152.425 244.954L219.29 283.559Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M135.708 312.512L135.708 325.381L146.852 331.815L146.852 318.947L135.708 312.512Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M191.43 357.552L191.43 344.683L180.285 338.249L180.285 351.117L191.43 357.552Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M224.862 363.986L224.862 376.854L236.007 383.288L236.007 370.42L224.862 363.986Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
+</svg>
diff --git a/public/img/usecases/high-peformance/icon-perf1.svg b/public/img/usecases/high-peformance/icon-perf1.svg
new file mode 100644
index 0000000..6ecfee3
--- /dev/null
+++ b/public/img/usecases/high-peformance/icon-perf1.svg
@@ -0,0 +1,8 @@
+<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="2.9" y="10.798" width="40.5285" height="30.1623" rx="4.1" fill="white" stroke="black" stroke-width="1.8"/>
+<rect x="9.36599" y="23.8008" width="25.0693" height="16.0138" transform="rotate(-63.6353 9.36599 23.8008)" fill="white" stroke="#ED1C24" stroke-width="1.6"/>
+<rect x="12.5075" y="29.6347" width="23.0144" height="13.8961" transform="rotate(-63.6353 12.5075 29.6347)" fill="white" stroke="#ED1C24" stroke-width="1.6"/>
+<rect x="2.9" y="15.117" width="40.5285" height="30.1623" rx="4.1" fill="white" stroke="black" stroke-width="1.8"/>
+<rect x="33.9985" y="26.347" width="12.0215" height="8.56616" rx="2.1" fill="white" stroke="black" stroke-width="1.8"/>
+<circle cx="38.2815" cy="30.6303" r="1.72769" fill="black"/>
+</svg>
diff --git a/public/img/usecases/high-peformance/icon-perf2.svg b/public/img/usecases/high-peformance/icon-perf2.svg
new file mode 100644
index 0000000..d91bfa5
--- /dev/null
+++ b/public/img/usecases/high-peformance/icon-perf2.svg
@@ -0,0 +1,13 @@
+<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="3.98888" y="9.16663" width="41.0222" height="33.7111" rx="1.1" fill="white" stroke="black" stroke-width="1.8"/>
+<path d="M3.57276 2.82283C3.6596 2.29074 4.11927 1.9 4.6584 1.9H44.3416C44.8807 1.9 45.3404 2.29074 45.4272 2.82283L46.7328 10.8228C46.842 11.4922 46.3254 12.1 45.6472 12.1H3.35285C2.67462 12.1 2.15797 11.4922 2.26721 10.8228L3.57276 2.82283Z" fill="white" stroke="#ED1C24" stroke-width="1.8"/>
+<rect x="1.9" y="42.5445" width="44.1556" height="4.46667" rx="1.1" fill="white" stroke="black" stroke-width="1.8"/>
+<path d="M2.94444 14.5333V12.3H9.49999V14.5333C9.49999 16.3436 8.03248 17.8111 6.22222 17.8111C4.41195 17.8111 2.94444 16.3436 2.94444 14.5333Z" fill="white" stroke="#ED1C24" stroke-width="1.8" stroke-linejoin="round"/>
+<path d="M10.2555 14.5333V12.3H16.8111V14.5333C16.8111 16.3436 15.3436 17.8111 13.5333 17.8111C11.7231 17.8111 10.2555 16.3436 10.2555 14.5333Z" fill="white" stroke="#ED1C24" stroke-width="1.8" stroke-linejoin="round"/>
+<path d="M17.5667 14.5333V12.3H24.1222V14.5333C24.1222 16.3436 22.6547 17.8111 20.8445 17.8111C19.0342 17.8111 17.5667 16.3436 17.5667 14.5333Z" fill="white" stroke="#ED1C24" stroke-width="1.8" stroke-linejoin="round"/>
+<path d="M24.8778 14.5333V12.3H31.4333V14.5333C31.4333 16.3436 29.9658 17.8111 28.1556 17.8111C26.3453 17.8111 24.8778 16.3436 24.8778 14.5333Z" fill="white" stroke="#ED1C24" stroke-width="1.8" stroke-linejoin="round"/>
+<path d="M32.1889 14.5333V12.3H38.7444V14.5333C38.7444 16.3436 37.2769 17.8111 35.4667 17.8111C33.6564 17.8111 32.1889 16.3436 32.1889 14.5333Z" fill="white" stroke="#ED1C24" stroke-width="1.8" stroke-linejoin="round"/>
+<path d="M39.5 14.5333V12.3H46.0555V14.5333C46.0555 16.3436 44.588 17.8111 42.7778 17.8111C40.9675 17.8111 39.5 16.3436 39.5 14.5333Z" fill="white" stroke="#ED1C24" stroke-width="1.8" stroke-linejoin="round"/>
+<path d="M38.8293 42.1218V24.7803C38.8293 24.228 38.3815 23.7803 37.8293 23.7803H28.3658C27.8136 23.7803 27.3658 24.228 27.3658 24.7803V42.1218" stroke="black" stroke-width="1.8"/>
+<rect x="8.778" y="23.5339" width="13.1024" height="11.9561" rx="1.1" fill="white" stroke="black" stroke-width="1.8"/>
+</svg>
diff --git a/public/img/usecases/high-peformance/icon-perf3.svg b/public/img/usecases/high-peformance/icon-perf3.svg
new file mode 100644
index 0000000..f0ec5ad
--- /dev/null
+++ b/public/img/usecases/high-peformance/icon-perf3.svg
@@ -0,0 +1,15 @@
+<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M4.43549 20.0793H43.2587V41.3899C43.2587 44.2065 40.9753 46.4899 38.1587 46.4899H9.5355C6.71884 46.4899 4.43549 44.2065 4.43549 41.3899V20.0793Z" fill="white" stroke="black" stroke-width="1.8"/>
+<path d="M43.2 10.0897L4.37386 19.7089L3.53218 16.3116C2.73529 13.0952 4.69675 9.84172 7.91321 9.04483L35.0915 2.31134C38.308 1.51445 41.5614 3.47591 42.3583 6.69237L43.2 10.0897Z" fill="white"/>
+<path d="M43.2 10.0897L43.4044 10.9147C43.8601 10.8018 44.138 10.3409 44.0251 9.88525L43.2 10.0897ZM4.37386 19.7089L3.54881 19.9133L3.75322 20.7384L4.57827 20.534L4.37386 19.7089ZM42.9956 9.26461L4.16945 18.8839L4.57827 20.534L43.4044 10.9147L42.9956 9.26461ZM5.19892 19.5045L4.35723 16.1072L2.70712 16.5161L3.54881 19.9133L5.19892 19.5045ZM8.11762 9.86989L35.2959 3.1364L34.8871 1.48629L7.7088 8.21978L8.11762 9.86989ZM41.5333 6.89678L42.375 10.2941L44.0251 9.88525L43.1834 6.48796L41.5333 6.89678ZM35.2959 3.1364C38.0567 2.4524 40.8493 4.13598 41.5333 6.89678L43.1834 6.48796C42.2736 2.81584 38.5592 0.576507 34.8871 1.48629L35.2959 3.1364ZM4.35723 16.1072C3.67324 13.3464 5.35682 10.5539 8.11762 9.86989L7.7088 8.21978C4.03667 9.12956 1.79734 12.8439 2.70712 16.5161L4.35723 16.1072Z" fill="black"/>
+<path d="M4.66391 27.6427H44.1587" stroke="black" stroke-width="1.8" stroke-linejoin="round"/>
+<path d="M12.5629 20.3081L8.04919 27.0786" stroke="black" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M21.5903 20.308L17.0766 27.0786" stroke="black" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M30.6176 20.308L26.1039 27.0786" stroke="black" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M39.645 20.308L35.1313 27.0786" stroke="black" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M6.8786 10.1523L14.7175 15.9641" stroke="black" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M14.6315 7.89516L22.4185 13.9252" stroke="black" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M22.6415 5.63841L30.3174 12.1359" stroke="black" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M30.4591 3.99681L38.2164 10.1519" stroke="black" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M21.5902 40.6197V31.5923L29.4892 35.9806L21.5902 40.6197Z" stroke="#ED1C24" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
+</svg>
diff --git a/public/img/usecases/high-peformance/icon-perf4.svg b/public/img/usecases/high-peformance/icon-perf4.svg
new file mode 100644
index 0000000..84cc522
--- /dev/null
+++ b/public/img/usecases/high-peformance/icon-perf4.svg
@@ -0,0 +1,12 @@
+<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M38.9657 9.87689H28.6596C28.1939 9.87689 27.8163 10.2544 27.8163 10.7201V35.7748H45C46.1046 35.7748 47 34.8794 47 33.7748V25.1659C47 24.8807 46.939 24.5987 46.8211 24.339L40.7868 11.05C40.4624 10.3356 39.7503 9.87689 38.9657 9.87689Z" fill="white" stroke="black" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
+<rect x="0.9" y="31.8796" width="36.5673" height="4.91428" rx="2.1" fill="white" stroke="black" stroke-width="1.8"/>
+<circle cx="35.4898" cy="36.7347" r="4.8551" fill="white" stroke="black" stroke-width="1.8"/>
+<circle cx="35.4898" cy="36.7348" r="1.91837" fill="black"/>
+<path d="M33.5714 10.3571V24.1837C33.5714 25.2882 34.4668 26.1837 35.5714 26.1837H46.5203" stroke="black" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M46.5203 29.0612H43.1632" stroke="black" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M46.5203 31.9388H43.1632" stroke="black" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
+<rect x="1.85917" y="7.9" width="26.0163" height="24.0979" rx="2.1" fill="white" stroke="#ED1C24" stroke-width="1.8"/>
+<circle cx="8.63266" cy="36.7347" r="4.8551" fill="white" stroke="black" stroke-width="1.8"/>
+<circle cx="8.63266" cy="36.7348" r="1.91837" fill="black"/>
+</svg>
diff --git a/public/img/usecases/high-peformance/icon-perf5.svg b/public/img/usecases/high-peformance/icon-perf5.svg
new file mode 100644
index 0000000..f961f37
--- /dev/null
+++ b/public/img/usecases/high-peformance/icon-perf5.svg
@@ -0,0 +1,17 @@
+<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g clip-path="url(#clip0_15:82)">
+<path d="M3.04633 29.0819L18.7414 46.3465" stroke="#ED1C24" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M8.80121 25.9432L23.45 41.6383" stroke="#ED1C24" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M16.1256 24.3734L24.4963 33.2672" stroke="#ED1C24" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M45.4231 19.665L29.728 2.40036" stroke="#ED1C24" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M39.6683 22.804L25.5427 7.63208" stroke="#ED1C24" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M32.3439 24.3734L23.9732 15.4795" stroke="#ED1C24" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M34.4179 1.00642C30.4033 0.973169 21.98 4.585 24.1556 21.7837C26.599 41.0999 24.5158 46.8989 15.1045 47.23" stroke="black" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
+<path d="M47.5159 13.652C47.6903 17.663 44.3769 26.2081 27.1123 24.6386C7.72214 22.8759 1.99998 25.1618 1.99998 34.5788" stroke="black" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
+</g>
+<defs>
+<clipPath id="clip0_15:82">
+<rect width="48" height="48" fill="white"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/public/img/usecases/high-peformance/perf-pic.svg b/public/img/usecases/high-peformance/perf-pic.svg
new file mode 100644
index 0000000..3eaf0e8
--- /dev/null
+++ b/public/img/usecases/high-peformance/perf-pic.svg
@@ -0,0 +1,48 @@
+<svg width="333" height="520" viewBox="0 0 333 520" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="1" y="1" width="315" height="174" rx="9" fill="white" stroke="black" stroke-width="2"/>
+<rect x="51" y="15" width="282" height="172" rx="10" fill="#2D2D2D"/>
+<path d="M80.024 58.232C79.7787 58.1467 79.512 58.0773 79.224 58.024C78.9467 57.96 78.6693 57.928 78.392 57.928C77.3467 57.928 76.568 58.1733 76.056 58.664C75.544 59.1547 75.288 59.9333 75.288 61C75.288 61.4693 75.3627 61.8907 75.512 62.264C75.6613 62.6267 75.8747 62.936 76.152 63.192C76.4293 63.448 76.76 63.6453 77.144 63.784C77.5387 63.9227 77.9707 63.992 78.44 63.992C78.9413 63.992 79.4267 63.9067 79.896 63.736C80.376 63.5653 80.776 63.3413 81.096 63.064L81.656 63.992C81.5067 64.12 81.32 64.2533 81.096 64.392C80.872 64.5307 80.6107 64.664 80.312 64.792C80.024 64.9093 79.6987 65.0053 79.336 65.08C78.984 65.1547 78.6 65.192 78.184 65.192C77.4907 65.192 76.8773 65.096 76.344 64.904C75.8213 64.7013 75.384 64.4187 75.032 64.056C74.68 63.6827 74.4133 63.24 74.232 62.728C74.0507 62.2053 73.96 61.6293 73.96 61C73.96 60.328 74.0507 59.7307 74.232 59.208C74.424 58.6853 74.696 58.248 75.048 57.896C75.4 57.544 75.8267 57.2773 76.328 57.096C76.8293 56.904 77.3893 56.808 78.008 56.808C78.7973 56.808 79.4373 56.8773 79.928 57.016C80.4293 57.1547 80.8507 57.3093 81.192 57.48L81.176 57.528V59.752H80.024V58.232ZM89.0018 57H91.2738V62.456C91.2738 62.9787 91.3058 63.48 91.3698 63.96H92.4418V65H90.3138L90.2658 63.64H90.2018C89.9244 64.0987 89.5564 64.472 89.0978 64.76C88.6391 65.048 88.0844 65.192 87.4338 65.192C86.9431 65.192 86.5218 65.1333 86.1698 65.016C85.8284 64.9093 85.5458 64.7173 85.3218 64.44C85.0978 64.1627 84.9324 63.7947 84.8258 63.336C84.7191 62.8667 84.6658 62.2853 84.6658 61.592V58.072H83.5938V57H85.9138V61.336C85.9138 61.7733 85.9298 62.168 85.9618 62.52C86.0044 62.8613 86.0844 63.1547 86.2018 63.4C86.3191 63.6347 86.4898 63.816 86.7138 63.944C86.9484 64.0613 87.2578 64.12 87.6418 64.12C88.1964 64.12 88.6764 63.9387 89.0818 63.576C89.4978 63.2133 89.8124 62.76 90.0258 62.216V58.072H89.0018V57ZM100.396 62.84C100.396 62.4987 100.262 62.2373 99.9955 62.056C99.7288 61.864 99.3982 61.7147 99.0035 61.608C98.6088 61.4907 98.1768 61.384 97.7075 61.288C97.2488 61.192 96.8222 61.064 96.4275 60.904C96.0328 60.744 95.7022 60.5307 95.4355 60.264C95.1688 59.9867 95.0355 59.6027 95.0355 59.112C95.0355 58.7067 95.1208 58.36 95.2915 58.072C95.4728 57.784 95.7075 57.5493 95.9955 57.368C96.2835 57.176 96.6195 57.0373 97.0035 56.952C97.3875 56.856 97.7875 56.808 98.2035 56.808C98.9502 56.808 99.5902 56.904 100.124 57.096C100.668 57.2773 101.1 57.4693 101.42 57.672L100.908 58.68C100.556 58.488 100.172 58.3067 99.7555 58.136C99.3502 57.9547 98.8382 57.864 98.2195 57.864C97.9848 57.864 97.7502 57.8907 97.5155 57.944C97.2915 57.9867 97.0835 58.056 96.8915 58.152C96.7102 58.248 96.5608 58.376 96.4435 58.536C96.3368 58.6853 96.2835 58.872 96.2835 59.096C96.2835 59.3733 96.4168 59.5867 96.6835 59.736C96.9502 59.8853 97.2808 60.0133 97.6755 60.12C98.0702 60.216 98.4968 60.312 98.9555 60.408C99.4248 60.4933 99.8568 60.6213 100.252 60.792C100.646 60.9627 100.977 61.192 101.244 61.48C101.51 61.768 101.644 62.1573 101.644 62.648C101.644 63.384 101.35 63.992 100.764 64.472C100.188 64.952 99.3182 65.192 98.1555 65.192C97.8035 65.192 97.4568 65.16 97.1155 65.096C96.7742 65.032 96.4542 64.9467 96.1555 64.84C95.8568 64.7333 95.5848 64.616 95.3395 64.488C95.0942 64.3493 94.8915 64.2107 94.7315 64.072L95.3715 63.032C95.4995 63.16 95.6702 63.2933 95.8835 63.432C96.0968 63.56 96.3315 63.6773 96.5875 63.784C96.8435 63.8907 97.1155 63.976 97.4035 64.04C97.7022 64.104 98.0008 64.136 98.2995 64.136C98.5875 64.136 98.8542 64.1147 99.0995 64.072C99.3555 64.0187 99.5795 63.944 99.7715 63.848C99.9635 63.7413 100.113 63.608 100.22 63.448C100.337 63.2773 100.396 63.0747 100.396 62.84ZM104.077 57H105.981V55.416L107.229 55.064V57H111.501V58.072H107.229V61.848C107.229 62.6267 107.416 63.2027 107.789 63.576C108.173 63.9493 108.717 64.136 109.421 64.136C109.901 64.136 110.317 64.0453 110.669 63.864C111.032 63.6827 111.357 63.4853 111.645 63.272L112.061 64.216C111.688 64.5147 111.24 64.7547 110.717 64.936C110.205 65.1173 109.677 65.208 109.133 65.208C108.707 65.208 108.301 65.144 107.917 65.016C107.544 64.8987 107.213 64.712 106.925 64.456C106.637 64.2 106.408 63.8747 106.237 63.48C106.067 63.0747 105.981 62.5947 105.981 62.04V58.072H104.077V57ZM114.687 61C114.687 59.7093 115.023 58.6907 115.695 57.944C116.367 57.1867 117.327 56.808 118.575 56.808C119.247 56.808 119.823 56.92 120.303 57.144C120.794 57.3573 121.199 57.6507 121.519 58.024C121.839 58.3973 122.074 58.84 122.223 59.352C122.383 59.864 122.463 60.4133 122.463 61C122.463 61.64 122.378 62.2213 122.207 62.744C122.036 63.256 121.786 63.6933 121.455 64.056C121.124 64.4187 120.714 64.7013 120.223 64.904C119.743 65.096 119.194 65.192 118.575 65.192C117.914 65.192 117.338 65.0853 116.847 64.872C116.356 64.648 115.951 64.3493 115.631 63.976C115.311 63.6027 115.071 63.16 114.911 62.648C114.762 62.136 114.687 61.5867 114.687 61ZM116.015 61C116.015 61.3733 116.058 61.7467 116.143 62.12C116.239 62.4933 116.388 62.8293 116.591 63.128C116.794 63.4267 117.055 63.6667 117.375 63.848C117.706 64.0293 118.106 64.12 118.575 64.12C119.428 64.12 120.068 63.8587 120.495 63.336C120.932 62.8027 121.151 62.024 121.151 61C121.151 60.616 121.103 60.2427 121.007 59.88C120.922 59.5067 120.772 59.1707 120.559 58.872C120.356 58.5733 120.09 58.3333 119.759 58.152C119.439 57.9707 119.044 57.88 118.575 57.88C117.722 57.88 117.082 58.1413 116.655 58.664C116.228 59.1867 116.015 59.9653 116.015 61ZM128.161 65V59.672C128.161 59.448 128.15 59.2347 128.129 59.032C128.118 58.8187 128.081 58.632 128.017 58.472C127.963 58.3013 127.878 58.168 127.761 58.072C127.654 57.976 127.51 57.928 127.329 57.928C126.966 57.928 126.657 58.0773 126.401 58.376C126.155 58.6747 125.969 59.048 125.841 59.496V65H124.625V57H125.457L125.697 57.976H125.761C125.867 57.816 125.969 57.6667 126.065 57.528C126.171 57.3787 126.289 57.2507 126.417 57.144C126.555 57.0373 126.715 56.9573 126.897 56.904C127.078 56.84 127.307 56.808 127.585 56.808C127.745 56.808 127.91 56.8347 128.081 56.888C128.251 56.9307 128.406 57.0053 128.545 57.112C128.694 57.208 128.822 57.3413 128.929 57.512C129.035 57.6827 129.105 57.8907 129.137 58.136C129.382 57.72 129.654 57.3947 129.953 57.16C130.262 56.9253 130.683 56.808 131.217 56.808C131.569 56.808 131.851 56.8667 132.065 56.984C132.289 57.1013 132.459 57.272 132.577 57.496C132.705 57.7093 132.79 57.9707 132.833 58.28C132.886 58.5787 132.913 58.9147 132.913 59.288V65H131.697V59.56C131.697 59.336 131.686 59.128 131.665 58.936C131.643 58.7333 131.601 58.5573 131.537 58.408C131.483 58.2587 131.403 58.1413 131.297 58.056C131.201 57.9707 131.067 57.928 130.897 57.928C130.523 57.928 130.209 58.0773 129.953 58.376C129.697 58.6747 129.505 59.1013 129.377 59.656V65H128.161ZM134.802 53.8H143.122V56.728H141.938V54.984H139.618V63.816H141.378V65H136.53V63.816H138.29V54.984H135.986V56.728H134.802V53.8ZM146.084 57.624C146.543 57.3573 147.06 57.1653 147.636 57.048C148.212 56.9307 148.778 56.872 149.332 56.872C149.876 56.872 150.319 56.9573 150.66 57.128C151.012 57.2987 151.284 57.5227 151.476 57.8C151.679 58.0667 151.812 58.376 151.876 58.728C151.951 59.0693 151.988 59.416 151.988 59.768C151.988 60.1733 151.978 60.6053 151.956 61.064C151.935 61.5227 151.919 61.9813 151.908 62.44C151.908 62.9733 151.94 63.48 152.004 63.96H153.076V65H150.948L150.804 63.8H150.724C150.66 63.896 150.564 64.0187 150.436 64.168C150.308 64.3173 150.138 64.4667 149.924 64.616C149.722 64.7547 149.471 64.8773 149.172 64.984C148.874 65.0907 148.522 65.144 148.116 65.144C147.327 65.144 146.703 64.9413 146.244 64.536C145.786 64.1307 145.556 63.576 145.556 62.872C145.556 62.328 145.674 61.8747 145.908 61.512C146.154 61.1493 146.5 60.872 146.948 60.68C147.396 60.488 147.935 60.376 148.564 60.344C149.204 60.312 149.919 60.3547 150.708 60.472C150.762 59.9813 150.767 59.576 150.724 59.256C150.692 58.9253 150.607 58.664 150.468 58.472C150.34 58.28 150.154 58.1467 149.908 58.072C149.674 57.9867 149.38 57.944 149.028 57.944C148.548 57.944 148.09 58.0133 147.652 58.152C147.215 58.28 146.826 58.4133 146.484 58.552L146.084 57.624ZM148.436 64.072C148.735 64.072 149.012 64.024 149.268 63.928C149.524 63.832 149.748 63.7093 149.94 63.56C150.132 63.4107 150.292 63.2507 150.42 63.08C150.548 62.8987 150.644 62.728 150.708 62.568V61.448C150.154 61.352 149.642 61.304 149.172 61.304C148.703 61.304 148.298 61.3573 147.956 61.464C147.615 61.56 147.348 61.7147 147.156 61.928C146.964 62.1413 146.868 62.4187 146.868 62.76C146.868 63.112 146.986 63.4213 147.22 63.688C147.466 63.944 147.871 64.072 148.436 64.072ZM161.558 62.84C161.558 62.4987 161.425 62.2373 161.158 62.056C160.891 61.864 160.561 61.7147 160.166 61.608C159.771 61.4907 159.339 61.384 158.87 61.288C158.411 61.192 157.985 61.064 157.59 60.904C157.195 60.744 156.865 60.5307 156.598 60.264C156.331 59.9867 156.198 59.6027 156.198 59.112C156.198 58.7067 156.283 58.36 156.454 58.072C156.635 57.784 156.87 57.5493 157.158 57.368C157.446 57.176 157.782 57.0373 158.166 56.952C158.55 56.856 158.95 56.808 159.366 56.808C160.113 56.808 160.753 56.904 161.286 57.096C161.83 57.2773 162.262 57.4693 162.582 57.672L162.07 58.68C161.718 58.488 161.334 58.3067 160.918 58.136C160.513 57.9547 160.001 57.864 159.382 57.864C159.147 57.864 158.913 57.8907 158.678 57.944C158.454 57.9867 158.246 58.056 158.054 58.152C157.873 58.248 157.723 58.376 157.606 58.536C157.499 58.6853 157.446 58.872 157.446 59.096C157.446 59.3733 157.579 59.5867 157.846 59.736C158.113 59.8853 158.443 60.0133 158.838 60.12C159.233 60.216 159.659 60.312 160.118 60.408C160.587 60.4933 161.019 60.6213 161.414 60.792C161.809 60.9627 162.139 61.192 162.406 61.48C162.673 61.768 162.806 62.1573 162.806 62.648C162.806 63.384 162.513 63.992 161.926 64.472C161.35 64.952 160.481 65.192 159.318 65.192C158.966 65.192 158.619 65.16 158.278 65.096C157.937 65.032 157.617 64.9467 157.318 64.84C157.019 64.7333 156.747 64.616 156.502 64.488C156.257 64.3493 156.054 64.2107 155.894 64.072L156.534 63.032C156.662 63.16 156.833 63.2933 157.046 63.432C157.259 63.56 157.494 63.6773 157.75 63.784C158.006 63.8907 158.278 63.976 158.566 64.04C158.865 64.104 159.163 64.136 159.462 64.136C159.75 64.136 160.017 64.1147 160.262 64.072C160.518 64.0187 160.742 63.944 160.934 63.848C161.126 63.7413 161.275 63.608 161.382 63.448C161.499 63.2773 161.558 63.0747 161.558 62.84ZM165.128 53.8H167.72V60.424H168.6L171.752 57H173.256L169.72 60.792L172.632 63.928H173.672V65H172.024L168.6 61.384H167.72V65H166.488V54.872H165.128V53.8ZM178.666 64.12C178.666 63.7787 178.762 63.5173 178.954 63.336C179.146 63.144 179.402 63.048 179.722 63.048C180.063 63.048 180.33 63.144 180.522 63.336C180.714 63.5173 180.81 63.7787 180.81 64.12C180.81 64.4293 180.714 64.6853 180.522 64.888C180.33 65.0907 180.063 65.192 179.722 65.192C179.402 65.192 179.146 65.0907 178.954 64.888C178.762 64.6853 178.666 64.4293 178.666 64.12ZM186.187 65V63.928H188.347V58.072H186.187V57H189.179L189.435 58.04H189.515C189.878 57.7093 190.283 57.4267 190.731 57.192C191.179 56.9573 191.713 56.84 192.331 56.84C192.694 56.84 192.982 56.9093 193.195 57.048C193.419 57.1867 193.59 57.3893 193.707 57.656C193.835 57.9227 193.921 58.248 193.963 58.632C194.006 59.0053 194.027 59.432 194.027 59.912L192.907 59.928C192.907 59.2453 192.838 58.744 192.699 58.424C192.571 58.104 192.331 57.944 191.979 57.944C191.649 57.944 191.35 57.992 191.083 58.088C190.817 58.184 190.582 58.3013 190.379 58.44C190.187 58.5787 190.022 58.7173 189.883 58.856C189.745 58.9947 189.643 59.112 189.579 59.208V63.928H192.651V65H186.187ZM201.133 57H203.405V62.456C203.405 62.9787 203.437 63.48 203.501 63.96H204.573V65H202.445L202.397 63.64H202.333C202.056 64.0987 201.688 64.472 201.229 64.76C200.77 65.048 200.216 65.192 199.565 65.192C199.074 65.192 198.653 65.1333 198.301 65.016C197.96 64.9093 197.677 64.7173 197.453 64.44C197.229 64.1627 197.064 63.7947 196.957 63.336C196.85 62.8667 196.797 62.2853 196.797 61.592V58.072H195.725V57H198.045V61.336C198.045 61.7733 198.061 62.168 198.093 62.52C198.136 62.8613 198.216 63.1547 198.333 63.4C198.45 63.6347 198.621 63.816 198.845 63.944C199.08 64.0613 199.389 64.12 199.773 64.12C200.328 64.12 200.808 63.9387 201.213 63.576C201.629 63.2133 201.944 62.76 202.157 62.216V58.072H201.133V57ZM207.007 59.8C207.007 59.704 207.001 59.5813 206.991 59.432C206.991 59.272 206.985 59.112 206.975 58.952C206.964 58.7813 206.948 58.616 206.927 58.456C206.916 58.296 206.9 58.1573 206.879 58.04H205.807V57H207.951L208.095 58.296H208.175C208.281 58.1147 208.42 57.9387 208.591 57.768C208.772 57.5867 208.98 57.4267 209.215 57.288C209.449 57.1387 209.711 57.0213 209.999 56.936C210.287 56.8507 210.591 56.808 210.911 56.808C211.401 56.808 211.833 56.8613 212.207 56.968C212.591 57.0747 212.905 57.2667 213.151 57.544C213.407 57.8107 213.599 58.1787 213.727 58.648C213.855 59.1067 213.919 59.6933 213.919 60.408V65H212.671V60.648C212.671 59.7627 212.527 59.096 212.239 58.648C211.951 58.2 211.428 57.976 210.671 57.976C210.393 57.976 210.121 58.0347 209.855 58.152C209.599 58.2587 209.364 58.4027 209.151 58.584C208.937 58.7653 208.751 58.9787 208.591 59.224C208.431 59.4587 208.313 59.7093 208.239 59.976V65H207.007V59.8ZM222.624 68.392C221.91 68.2107 221.238 67.9387 220.608 67.576C219.99 67.224 219.446 66.76 218.976 66.184C218.518 65.608 218.15 64.904 217.872 64.072C217.606 63.24 217.472 62.2533 217.472 61.112C217.472 59.9813 217.611 58.9947 217.888 58.152C218.166 57.2987 218.539 56.5787 219.008 55.992C219.478 55.3947 220.022 54.92 220.64 54.568C221.27 54.2053 221.931 53.9493 222.624 53.8L223.024 54.808C222.395 54.9893 221.819 55.2293 221.296 55.528C220.774 55.816 220.32 56.2053 219.936 56.696C219.563 57.176 219.27 57.7787 219.056 58.504C218.854 59.2187 218.752 60.088 218.752 61.112C218.752 62.1467 218.875 63.032 219.12 63.768C219.376 64.4933 219.707 65.096 220.112 65.576C220.528 66.0667 220.987 66.4453 221.488 66.712C222 66.9893 222.512 67.1813 223.024 67.288L222.624 68.392ZM229.634 64.12C229.634 63.7787 229.73 63.5173 229.922 63.336C230.114 63.144 230.37 63.048 230.69 63.048C231.032 63.048 231.298 63.144 231.49 63.336C231.682 63.5173 231.778 63.7787 231.778 64.12C231.778 64.4293 231.682 64.6853 231.49 64.888C231.298 65.0907 231.032 65.192 230.69 65.192C230.37 65.192 230.114 65.0907 229.922 64.888C229.73 64.6853 229.634 64.4293 229.634 64.12ZM239.828 64.12C239.828 63.7787 239.924 63.5173 240.116 63.336C240.308 63.144 240.564 63.048 240.884 63.048C241.225 63.048 241.492 63.144 241.684 63.336C241.876 63.5173 241.972 63.7787 241.972 64.12C241.972 64.4293 241.876 64.6853 241.684 64.888C241.492 65.0907 241.225 65.192 240.884 65.192C240.564 65.192 240.308 65.0907 240.116 64.888C239.924 64.6853 239.828 64.4293 239.828 64.12ZM250.022 64.12C250.022 63.7787 250.118 63.5173 250.31 63.336C250.502 63.144 250.758 63.048 251.078 63.048C251.419 63.048 251.686 63.144 251.878 63.336C252.07 63.5173 252.166 63.7787 252.166 64.12C252.166 64.4293 252.07 64.6853 251.878 64.888C251.686 65.0907 251.419 65.192 251.078 65.192C250.758 65.192 250.502 65.0907 250.31 64.888C250.118 64.6853 250.022 64.4293 250.022 64.12ZM258.776 67.288C259.288 67.1813 259.794 66.9893 260.296 66.712C260.808 66.4453 261.266 66.0667 261.672 65.576C262.088 65.096 262.418 64.4933 262.664 63.768C262.92 63.032 263.048 62.1467 263.048 61.112C263.048 60.088 262.941 59.2187 262.728 58.504C262.525 57.7787 262.232 57.176 261.848 56.696C261.474 56.2053 261.026 55.816 260.504 55.528C259.981 55.2293 259.405 54.9893 258.776 54.808L259.176 53.8C259.869 53.9493 260.525 54.2053 261.144 54.568C261.773 54.92 262.322 55.3947 262.792 55.992C263.261 56.5787 263.634 57.2987 263.912 58.152C264.189 58.9947 264.328 59.9813 264.328 61.112C264.328 62.2533 264.189 63.24 263.912 64.072C263.645 64.904 263.277 65.608 262.808 66.184C262.349 66.76 261.805 67.224 261.176 67.576C260.557 67.9387 259.89 68.2107 259.176 68.392L258.776 67.288Z" fill="white"/>
+<path d="M80.024 106.232C79.7787 106.147 79.512 106.077 79.224 106.024C78.9467 105.96 78.6693 105.928 78.392 105.928C77.3467 105.928 76.568 106.173 76.056 106.664C75.544 107.155 75.288 107.933 75.288 109C75.288 109.469 75.3627 109.891 75.512 110.264C75.6613 110.627 75.8747 110.936 76.152 111.192C76.4293 111.448 76.76 111.645 77.144 111.784C77.5387 111.923 77.9707 111.992 78.44 111.992C78.9413 111.992 79.4267 111.907 79.896 111.736C80.376 111.565 80.776 111.341 81.096 111.064L81.656 111.992C81.5067 112.12 81.32 112.253 81.096 112.392C80.872 112.531 80.6107 112.664 80.312 112.792C80.024 112.909 79.6987 113.005 79.336 113.08C78.984 113.155 78.6 113.192 78.184 113.192C77.4907 113.192 76.8773 113.096 76.344 112.904C75.8213 112.701 75.384 112.419 75.032 112.056C74.68 111.683 74.4133 111.24 74.232 110.728C74.0507 110.205 73.96 109.629 73.96 109C73.96 108.328 74.0507 107.731 74.232 107.208C74.424 106.685 74.696 106.248 75.048 105.896C75.4 105.544 75.8267 105.277 76.328 105.096C76.8293 104.904 77.3893 104.808 78.008 104.808C78.7973 104.808 79.4373 104.877 79.928 105.016C80.4293 105.155 80.8507 105.309 81.192 105.48L81.176 105.528V107.752H80.024V106.232ZM89.0018 105H91.2738V110.456C91.2738 110.979 91.3058 111.48 91.3698 111.96H92.4418V113H90.3138L90.2658 111.64H90.2018C89.9244 112.099 89.5564 112.472 89.0978 112.76C88.6391 113.048 88.0844 113.192 87.4338 113.192C86.9431 113.192 86.5218 113.133 86.1698 113.016C85.8284 112.909 85.5458 112.717 85.3218 112.44C85.0978 112.163 84.9324 111.795 84.8258 111.336C84.7191 110.867 84.6658 110.285 84.6658 109.592V106.072H83.5938V105H85.9138V109.336C85.9138 109.773 85.9298 110.168 85.9618 110.52C86.0044 110.861 86.0844 111.155 86.2018 111.4C86.3191 111.635 86.4898 111.816 86.7138 111.944C86.9484 112.061 87.2578 112.12 87.6418 112.12C88.1964 112.12 88.6764 111.939 89.0818 111.576C89.4978 111.213 89.8124 110.76 90.0258 110.216V106.072H89.0018V105ZM100.396 110.84C100.396 110.499 100.262 110.237 99.9955 110.056C99.7288 109.864 99.3982 109.715 99.0035 109.608C98.6088 109.491 98.1768 109.384 97.7075 109.288C97.2488 109.192 96.8222 109.064 96.4275 108.904C96.0328 108.744 95.7022 108.531 95.4355 108.264C95.1688 107.987 95.0355 107.603 95.0355 107.112C95.0355 106.707 95.1208 106.36 95.2915 106.072C95.4728 105.784 95.7075 105.549 95.9955 105.368C96.2835 105.176 96.6195 105.037 97.0035 104.952C97.3875 104.856 97.7875 104.808 98.2035 104.808C98.9502 104.808 99.5902 104.904 100.124 105.096C100.668 105.277 101.1 105.469 101.42 105.672L100.908 106.68C100.556 106.488 100.172 106.307 99.7555 106.136C99.3502 105.955 98.8382 105.864 98.2195 105.864C97.9848 105.864 97.7502 105.891 97.5155 105.944C97.2915 105.987 97.0835 106.056 96.8915 106.152C96.7102 106.248 96.5608 106.376 96.4435 106.536C96.3368 106.685 96.2835 106.872 96.2835 107.096C96.2835 107.373 96.4168 107.587 96.6835 107.736C96.9502 107.885 97.2808 108.013 97.6755 108.12C98.0702 108.216 98.4968 108.312 98.9555 108.408C99.4248 108.493 99.8568 108.621 100.252 108.792C100.646 108.963 100.977 109.192 101.244 109.48C101.51 109.768 101.644 110.157 101.644 110.648C101.644 111.384 101.35 111.992 100.764 112.472C100.188 112.952 99.3182 113.192 98.1555 113.192C97.8035 113.192 97.4568 113.16 97.1155 113.096C96.7742 113.032 96.4542 112.947 96.1555 112.84C95.8568 112.733 95.5848 112.616 95.3395 112.488C95.0942 112.349 94.8915 112.211 94.7315 112.072L95.3715 111.032C95.4995 111.16 95.6702 111.293 95.8835 111.432C96.0968 111.56 96.3315 111.677 96.5875 111.784C96.8435 111.891 97.1155 111.976 97.4035 112.04C97.7022 112.104 98.0008 112.136 98.2995 112.136C98.5875 112.136 98.8542 112.115 99.0995 112.072C99.3555 112.019 99.5795 111.944 99.7715 111.848C99.9635 111.741 100.113 111.608 100.22 111.448C100.337 111.277 100.396 111.075 100.396 110.84ZM104.077 105H105.981V103.416L107.229 103.064V105H111.501V106.072H107.229V109.848C107.229 110.627 107.416 111.203 107.789 111.576C108.173 111.949 108.717 112.136 109.421 112.136C109.901 112.136 110.317 112.045 110.669 111.864C111.032 111.683 111.357 111.485 111.645 111.272L112.061 112.216C111.688 112.515 111.24 112.755 110.717 112.936C110.205 113.117 109.677 113.208 109.133 113.208C108.707 113.208 108.301 113.144 107.917 113.016C107.544 112.899 107.213 112.712 106.925 112.456C106.637 112.2 106.408 111.875 106.237 111.48C106.067 111.075 105.981 110.595 105.981 110.04V106.072H104.077V105ZM114.687 109C114.687 107.709 115.023 106.691 115.695 105.944C116.367 105.187 117.327 104.808 118.575 104.808C119.247 104.808 119.823 104.92 120.303 105.144C120.794 105.357 121.199 105.651 121.519 106.024C121.839 106.397 122.074 106.84 122.223 107.352C122.383 107.864 122.463 108.413 122.463 109C122.463 109.64 122.378 110.221 122.207 110.744C122.036 111.256 121.786 111.693 121.455 112.056C121.124 112.419 120.714 112.701 120.223 112.904C119.743 113.096 119.194 113.192 118.575 113.192C117.914 113.192 117.338 113.085 116.847 112.872C116.356 112.648 115.951 112.349 115.631 111.976C115.311 111.603 115.071 111.16 114.911 110.648C114.762 110.136 114.687 109.587 114.687 109ZM116.015 109C116.015 109.373 116.058 109.747 116.143 110.12C116.239 110.493 116.388 110.829 116.591 111.128C116.794 111.427 117.055 111.667 117.375 111.848C117.706 112.029 118.106 112.12 118.575 112.12C119.428 112.12 120.068 111.859 120.495 111.336C120.932 110.803 121.151 110.024 121.151 109C121.151 108.616 121.103 108.243 121.007 107.88C120.922 107.507 120.772 107.171 120.559 106.872C120.356 106.573 120.09 106.333 119.759 106.152C119.439 105.971 119.044 105.88 118.575 105.88C117.722 105.88 117.082 106.141 116.655 106.664C116.228 107.187 116.015 107.965 116.015 109ZM128.161 113V107.672C128.161 107.448 128.15 107.235 128.129 107.032C128.118 106.819 128.081 106.632 128.017 106.472C127.963 106.301 127.878 106.168 127.761 106.072C127.654 105.976 127.51 105.928 127.329 105.928C126.966 105.928 126.657 106.077 126.401 106.376C126.155 106.675 125.969 107.048 125.841 107.496V113H124.625V105H125.457L125.697 105.976H125.761C125.867 105.816 125.969 105.667 126.065 105.528C126.171 105.379 126.289 105.251 126.417 105.144C126.555 105.037 126.715 104.957 126.897 104.904C127.078 104.84 127.307 104.808 127.585 104.808C127.745 104.808 127.91 104.835 128.081 104.888C128.251 104.931 128.406 105.005 128.545 105.112C128.694 105.208 128.822 105.341 128.929 105.512C129.035 105.683 129.105 105.891 129.137 106.136C129.382 105.72 129.654 105.395 129.953 105.16C130.262 104.925 130.683 104.808 131.217 104.808C131.569 104.808 131.851 104.867 132.065 104.984C132.289 105.101 132.459 105.272 132.577 105.496C132.705 105.709 132.79 105.971 132.833 106.28C132.886 106.579 132.913 106.915 132.913 107.288V113H131.697V107.56C131.697 107.336 131.686 107.128 131.665 106.936C131.643 106.733 131.601 106.557 131.537 106.408C131.483 106.259 131.403 106.141 131.297 106.056C131.201 105.971 131.067 105.928 130.897 105.928C130.523 105.928 130.209 106.077 129.953 106.376C129.697 106.675 129.505 107.101 129.377 107.656V113H128.161ZM134.802 101.8H143.122V104.728H141.938V102.984H139.618V111.816H141.378V113H136.53V111.816H138.29V102.984H135.986V104.728H134.802V101.8ZM146.084 105.624C146.543 105.357 147.06 105.165 147.636 105.048C148.212 104.931 148.778 104.872 149.332 104.872C149.876 104.872 150.319 104.957 150.66 105.128C151.012 105.299 151.284 105.523 151.476 105.8C151.679 106.067 151.812 106.376 151.876 106.728C151.951 107.069 151.988 107.416 151.988 107.768C151.988 108.173 151.978 108.605 151.956 109.064C151.935 109.523 151.919 109.981 151.908 110.44C151.908 110.973 151.94 111.48 152.004 111.96H153.076V113H150.948L150.804 111.8H150.724C150.66 111.896 150.564 112.019 150.436 112.168C150.308 112.317 150.138 112.467 149.924 112.616C149.722 112.755 149.471 112.877 149.172 112.984C148.874 113.091 148.522 113.144 148.116 113.144C147.327 113.144 146.703 112.941 146.244 112.536C145.786 112.131 145.556 111.576 145.556 110.872C145.556 110.328 145.674 109.875 145.908 109.512C146.154 109.149 146.5 108.872 146.948 108.68C147.396 108.488 147.935 108.376 148.564 108.344C149.204 108.312 149.919 108.355 150.708 108.472C150.762 107.981 150.767 107.576 150.724 107.256C150.692 106.925 150.607 106.664 150.468 106.472C150.34 106.28 150.154 106.147 149.908 106.072C149.674 105.987 149.38 105.944 149.028 105.944C148.548 105.944 148.09 106.013 147.652 106.152C147.215 106.28 146.826 106.413 146.484 106.552L146.084 105.624ZM148.436 112.072C148.735 112.072 149.012 112.024 149.268 111.928C149.524 111.832 149.748 111.709 149.94 111.56C150.132 111.411 150.292 111.251 150.42 111.08C150.548 110.899 150.644 110.728 150.708 110.568V109.448C150.154 109.352 149.642 109.304 149.172 109.304C148.703 109.304 148.298 109.357 147.956 109.464C147.615 109.56 147.348 109.715 147.156 109.928C146.964 110.141 146.868 110.419 146.868 110.76C146.868 111.112 146.986 111.421 147.22 111.688C147.466 111.944 147.871 112.072 148.436 112.072ZM161.558 110.84C161.558 110.499 161.425 110.237 161.158 110.056C160.891 109.864 160.561 109.715 160.166 109.608C159.771 109.491 159.339 109.384 158.87 109.288C158.411 109.192 157.985 109.064 157.59 108.904C157.195 108.744 156.865 108.531 156.598 108.264C156.331 107.987 156.198 107.603 156.198 107.112C156.198 106.707 156.283 106.36 156.454 106.072C156.635 105.784 156.87 105.549 157.158 105.368C157.446 105.176 157.782 105.037 158.166 104.952C158.55 104.856 158.95 104.808 159.366 104.808C160.113 104.808 160.753 104.904 161.286 105.096C161.83 105.277 162.262 105.469 162.582 105.672L162.07 106.68C161.718 106.488 161.334 106.307 160.918 106.136C160.513 105.955 160.001 105.864 159.382 105.864C159.147 105.864 158.913 105.891 158.678 105.944C158.454 105.987 158.246 106.056 158.054 106.152C157.873 106.248 157.723 106.376 157.606 106.536C157.499 106.685 157.446 106.872 157.446 107.096C157.446 107.373 157.579 107.587 157.846 107.736C158.113 107.885 158.443 108.013 158.838 108.12C159.233 108.216 159.659 108.312 160.118 108.408C160.587 108.493 161.019 108.621 161.414 108.792C161.809 108.963 162.139 109.192 162.406 109.48C162.673 109.768 162.806 110.157 162.806 110.648C162.806 111.384 162.513 111.992 161.926 112.472C161.35 112.952 160.481 113.192 159.318 113.192C158.966 113.192 158.619 113.16 158.278 113.096C157.937 113.032 157.617 112.947 157.318 112.84C157.019 112.733 156.747 112.616 156.502 112.488C156.257 112.349 156.054 112.211 155.894 112.072L156.534 111.032C156.662 111.16 156.833 111.293 157.046 111.432C157.259 111.56 157.494 111.677 157.75 111.784C158.006 111.891 158.278 111.976 158.566 112.04C158.865 112.104 159.163 112.136 159.462 112.136C159.75 112.136 160.017 112.115 160.262 112.072C160.518 112.019 160.742 111.944 160.934 111.848C161.126 111.741 161.275 111.608 161.382 111.448C161.499 111.277 161.558 111.075 161.558 110.84ZM165.128 101.8H167.72V108.424H168.6L171.752 105H173.256L169.72 108.792L172.632 111.928H173.672V113H172.024L168.6 109.384H167.72V113H166.488V102.872H165.128V101.8ZM178.666 112.12C178.666 111.779 178.762 111.517 178.954 111.336C179.146 111.144 179.402 111.048 179.722 111.048C180.063 111.048 180.33 111.144 180.522 111.336C180.714 111.517 180.81 111.779 180.81 112.12C180.81 112.429 180.714 112.685 180.522 112.888C180.33 113.091 180.063 113.192 179.722 113.192C179.402 113.192 179.146 113.091 178.954 112.888C178.762 112.685 178.666 112.429 178.666 112.12ZM186.187 113V111.928H188.347V106.072H186.187V105H189.179L189.435 106.04H189.515C189.878 105.709 190.283 105.427 190.731 105.192C191.179 104.957 191.713 104.84 192.331 104.84C192.694 104.84 192.982 104.909 193.195 105.048C193.419 105.187 193.59 105.389 193.707 105.656C193.835 105.923 193.921 106.248 193.963 106.632C194.006 107.005 194.027 107.432 194.027 107.912L192.907 107.928C192.907 107.245 192.838 106.744 192.699 106.424C192.571 106.104 192.331 105.944 191.979 105.944C191.649 105.944 191.35 105.992 191.083 106.088C190.817 106.184 190.582 106.301 190.379 106.44C190.187 106.579 190.022 106.717 189.883 106.856C189.745 106.995 189.643 107.112 189.579 107.208V111.928H192.651V113H186.187ZM203.789 111.992C203.597 112.163 203.368 112.323 203.101 112.472C202.845 112.621 202.562 112.749 202.253 112.856C201.944 112.963 201.618 113.043 201.277 113.096C200.946 113.16 200.61 113.192 200.269 113.192C199.629 113.192 199.064 113.096 198.573 112.904C198.082 112.701 197.672 112.419 197.341 112.056C197.01 111.683 196.76 111.24 196.589 110.728C196.418 110.216 196.333 109.64 196.333 109C196.333 108.328 196.424 107.731 196.605 107.208C196.797 106.685 197.069 106.248 197.421 105.896C197.773 105.544 198.2 105.277 198.701 105.096C199.202 104.904 199.762 104.808 200.381 104.808C200.829 104.808 201.272 104.867 201.709 104.984C202.146 105.101 202.53 105.325 202.861 105.656C203.202 105.976 203.464 106.424 203.645 107C203.826 107.565 203.89 108.301 203.837 109.208H197.645C197.645 110.168 197.901 110.888 198.413 111.368C198.936 111.837 199.629 112.072 200.493 112.072C200.781 112.072 201.064 112.04 201.341 111.976C201.629 111.901 201.901 111.816 202.157 111.72C202.413 111.624 202.637 111.517 202.829 111.4C203.032 111.283 203.186 111.176 203.293 111.08L203.789 111.992ZM200.413 105.864C200.061 105.864 199.725 105.901 199.405 105.976C199.096 106.051 198.818 106.179 198.573 106.36C198.338 106.531 198.141 106.76 197.981 107.048C197.832 107.325 197.736 107.672 197.693 108.088H202.669C202.616 107.384 202.386 106.84 201.981 106.456C201.586 106.061 201.064 105.864 200.413 105.864ZM211.103 101.8H213.695V110.264C213.695 110.36 213.7 110.483 213.711 110.632C213.721 110.771 213.732 110.92 213.743 111.08C213.764 111.24 213.785 111.4 213.807 111.56C213.828 111.709 213.849 111.843 213.871 111.96H214.943V113H212.815L212.655 111.768H212.591C212.356 112.173 212.004 112.515 211.535 112.792C211.076 113.059 210.543 113.192 209.935 113.192C208.729 113.192 207.839 112.856 207.263 112.184C206.697 111.501 206.415 110.445 206.415 109.016C206.415 108.344 206.511 107.752 206.703 107.24C206.895 106.717 207.167 106.285 207.519 105.944C207.881 105.592 208.313 105.325 208.815 105.144C209.316 104.963 209.876 104.872 210.495 104.872C210.719 104.872 210.916 104.877 211.087 104.888C211.268 104.899 211.433 104.915 211.583 104.936C211.732 104.957 211.871 104.989 211.999 105.032C212.137 105.064 212.287 105.101 212.447 105.144V102.872H211.103V101.8ZM210.143 112.12C210.793 112.12 211.305 111.955 211.679 111.624C212.052 111.283 212.308 110.776 212.447 110.104V106.392C212.212 106.232 211.945 106.115 211.647 106.04C211.359 105.965 210.975 105.928 210.495 105.928C209.641 105.928 208.969 106.179 208.479 106.68C207.988 107.171 207.743 107.949 207.743 109.016C207.743 109.453 207.78 109.864 207.855 110.248C207.94 110.621 208.073 110.947 208.255 111.224C208.447 111.501 208.697 111.72 209.007 111.88C209.316 112.04 209.695 112.12 210.143 112.12ZM221.52 105H223.792V110.456C223.792 110.979 223.824 111.48 223.888 111.96H224.96V113H222.832L222.784 111.64H222.72C222.443 112.099 222.075 112.472 221.616 112.76C221.158 113.048 220.603 113.192 219.952 113.192C219.462 113.192 219.04 113.133 218.688 113.016C218.347 112.909 218.064 112.717 217.84 112.44C217.616 112.163 217.451 111.795 217.344 111.336C217.238 110.867 217.184 110.285 217.184 109.592V106.072H216.112V105H218.432V109.336C218.432 109.773 218.448 110.168 218.48 110.52C218.523 110.861 218.603 111.155 218.72 111.4C218.838 111.635 219.008 111.816 219.232 111.944C219.467 112.061 219.776 112.12 220.16 112.12C220.715 112.12 221.195 111.939 221.6 111.576C222.016 111.213 222.331 110.76 222.544 110.216V106.072H221.52V105ZM232.914 110.84C232.914 110.499 232.781 110.237 232.514 110.056C232.248 109.864 231.917 109.715 231.522 109.608C231.128 109.491 230.696 109.384 230.226 109.288C229.768 109.192 229.341 109.064 228.946 108.904C228.552 108.744 228.221 108.531 227.954 108.264C227.688 107.987 227.554 107.603 227.554 107.112C227.554 106.707 227.64 106.36 227.81 106.072C227.992 105.784 228.226 105.549 228.514 105.368C228.802 105.176 229.138 105.037 229.522 104.952C229.906 104.856 230.306 104.808 230.722 104.808C231.469 104.808 232.109 104.904 232.642 105.096C233.186 105.277 233.618 105.469 233.938 105.672L233.426 106.68C233.074 106.488 232.69 106.307 232.274 106.136C231.869 105.955 231.357 105.864 230.738 105.864C230.504 105.864 230.269 105.891 230.034 105.944C229.81 105.987 229.602 106.056 229.41 106.152C229.229 106.248 229.08 106.376 228.962 106.536C228.856 106.685 228.802 106.872 228.802 107.096C228.802 107.373 228.936 107.587 229.202 107.736C229.469 107.885 229.8 108.013 230.194 108.12C230.589 108.216 231.016 108.312 231.474 108.408C231.944 108.493 232.376 108.621 232.77 108.792C233.165 108.963 233.496 109.192 233.762 109.48C234.029 109.768 234.162 110.157 234.162 110.648C234.162 111.384 233.869 111.992 233.282 112.472C232.706 112.952 231.837 113.192 230.674 113.192C230.322 113.192 229.976 113.16 229.634 113.096C229.293 113.032 228.973 112.947 228.674 112.84C228.376 112.733 228.104 112.616 227.858 112.488C227.613 112.349 227.41 112.211 227.25 112.072L227.89 111.032C228.018 111.16 228.189 111.293 228.402 111.432C228.616 111.56 228.85 111.677 229.106 111.784C229.362 111.891 229.634 111.976 229.922 112.04C230.221 112.104 230.52 112.136 230.818 112.136C231.106 112.136 231.373 112.115 231.618 112.072C231.874 112.019 232.098 111.944 232.29 111.848C232.482 111.741 232.632 111.608 232.738 111.448C232.856 111.277 232.914 111.075 232.914 110.84ZM244.564 111.992C244.372 112.163 244.143 112.323 243.876 112.472C243.62 112.621 243.337 112.749 243.028 112.856C242.719 112.963 242.393 113.043 242.052 113.096C241.721 113.16 241.385 113.192 241.044 113.192C240.404 113.192 239.839 113.096 239.348 112.904C238.857 112.701 238.447 112.419 238.116 112.056C237.785 111.683 237.535 111.24 237.364 110.728C237.193 110.216 237.108 109.64 237.108 109C237.108 108.328 237.199 107.731 237.38 107.208C237.572 106.685 237.844 106.248 238.196 105.896C238.548 105.544 238.975 105.277 239.476 105.096C239.977 104.904 240.537 104.808 241.156 104.808C241.604 104.808 242.047 104.867 242.484 104.984C242.921 105.101 243.305 105.325 243.636 105.656C243.977 105.976 244.239 106.424 244.42 107C244.601 107.565 244.665 108.301 244.612 109.208H238.42C238.42 110.168 238.676 110.888 239.188 111.368C239.711 111.837 240.404 112.072 241.268 112.072C241.556 112.072 241.839 112.04 242.116 111.976C242.404 111.901 242.676 111.816 242.932 111.72C243.188 111.624 243.412 111.517 243.604 111.4C243.807 111.283 243.961 111.176 244.068 111.08L244.564 111.992ZM241.188 105.864C240.836 105.864 240.5 105.901 240.18 105.976C239.871 106.051 239.593 106.179 239.348 106.36C239.113 106.531 238.916 106.76 238.756 107.048C238.607 107.325 238.511 107.672 238.468 108.088H243.444C243.391 107.384 243.161 106.84 242.756 106.456C242.361 106.061 241.839 105.864 241.188 105.864ZM253.206 116.392C252.491 116.211 251.819 115.939 251.19 115.576C250.571 115.224 250.027 114.76 249.558 114.184C249.099 113.608 248.731 112.904 248.454 112.072C248.187 111.24 248.054 110.253 248.054 109.112C248.054 107.981 248.192 106.995 248.47 106.152C248.747 105.299 249.12 104.579 249.59 103.992C250.059 103.395 250.603 102.92 251.222 102.568C251.851 102.205 252.512 101.949 253.206 101.8L253.606 102.808C252.976 102.989 252.4 103.229 251.878 103.528C251.355 103.816 250.902 104.205 250.518 104.696C250.144 105.176 249.851 105.779 249.638 106.504C249.435 107.219 249.334 108.088 249.334 109.112C249.334 110.147 249.456 111.032 249.702 111.768C249.958 112.493 250.288 113.096 250.694 113.576C251.11 114.067 251.568 114.445 252.07 114.712C252.582 114.989 253.094 115.181 253.606 115.288L253.206 116.392ZM260.216 112.12C260.216 111.779 260.312 111.517 260.504 111.336C260.696 111.144 260.952 111.048 261.272 111.048C261.613 111.048 261.88 111.144 262.072 111.336C262.264 111.517 262.36 111.779 262.36 112.12C262.36 112.429 262.264 112.685 262.072 112.888C261.88 113.091 261.613 113.192 261.272 113.192C260.952 113.192 260.696 113.091 260.504 112.888C260.312 112.685 260.216 112.429 260.216 112.12ZM270.409 112.12C270.409 111.779 270.505 111.517 270.697 111.336C270.889 111.144 271.145 111.048 271.465 111.048C271.807 111.048 272.073 111.144 272.265 111.336C272.457 111.517 272.553 111.779 272.553 112.12C272.553 112.429 272.457 112.685 272.265 112.888C272.073 113.091 271.807 113.192 271.465 113.192C271.145 113.192 270.889 113.091 270.697 112.888C270.505 112.685 270.409 112.429 270.409 112.12ZM280.603 112.12C280.603 111.779 280.699 111.517 280.891 111.336C281.083 111.144 281.339 111.048 281.659 111.048C282 111.048 282.267 111.144 282.459 111.336C282.651 111.517 282.747 111.779 282.747 112.12C282.747 112.429 282.651 112.685 282.459 112.888C282.267 113.091 282 113.192 281.659 113.192C281.339 113.192 281.083 113.091 280.891 112.888C280.699 112.685 280.603 112.429 280.603 112.12ZM289.357 115.288C289.869 115.181 290.375 114.989 290.877 114.712C291.389 114.445 291.847 114.067 292.253 113.576C292.669 113.096 292.999 112.493 293.245 111.768C293.501 111.032 293.629 110.147 293.629 109.112C293.629 108.088 293.522 107.219 293.309 106.504C293.106 105.779 292.813 105.176 292.429 104.696C292.055 104.205 291.607 103.816 291.085 103.528C290.562 103.229 289.986 102.989 289.357 102.808L289.757 101.8C290.45 101.949 291.106 102.205 291.725 102.568C292.354 102.92 292.903 103.395 293.373 103.992C293.842 104.579 294.215 105.299 294.493 106.152C294.77 106.995 294.909 107.981 294.909 109.112C294.909 110.253 294.77 111.24 294.493 112.072C294.226 112.904 293.858 113.608 293.389 114.184C292.93 114.76 292.386 115.224 291.757 115.576C291.138 115.939 290.471 116.211 289.757 116.392L289.357 115.288Z" fill="white"/>
+<path d="M87.533 230.358C87.1425 229.968 86.5094 229.968 86.1188 230.358L79.7549 236.722C79.3643 237.113 79.3643 237.746 79.7549 238.137C80.1454 238.527 80.7786 238.527 81.1691 238.137L86.8259 232.48L92.4828 238.137C92.8733 238.527 93.5065 238.527 93.897 238.137C94.2875 237.746 94.2875 237.113 93.897 236.722L87.533 230.358ZM97.8259 301.481L97.8259 302.481L97.8259 301.481ZM85.8259 231.065L85.8259 290.481L87.8259 290.481L87.8259 231.065L85.8259 231.065ZM97.8259 302.481L154.755 302.481L154.755 300.481L97.8259 300.481L97.8259 302.481ZM164.755 312.481L164.755 340.405L166.755 340.405L166.755 312.481L164.755 312.481ZM154.755 302.481C160.278 302.481 164.755 306.958 164.755 312.481L166.755 312.481C166.755 305.854 161.382 300.481 154.755 300.481L154.755 302.481ZM85.8259 290.481C85.8259 297.109 91.1985 302.481 97.8259 302.481L97.8259 300.481C92.3031 300.481 87.8259 296.004 87.8259 290.481L85.8259 290.481Z" fill="#2D2D2D"/>
+<path d="M33.1302 441.6V338.836C33.1302 338.836 44.1572 349.267 78.4303 349.267C112.703 349.267 124.923 337.644 124.923 337.644V441.6C111.374 462.363 37.5046 456.776 33.1302 441.6Z" fill="white"/>
+<path d="M125 334.769C125 336.383 123.976 338.096 121.701 339.808C119.442 341.508 116.105 343.082 111.878 344.422C103.436 347.097 91.6682 348.769 78.5 348.769C65.3318 348.769 53.5638 347.097 45.1217 344.422C40.8949 343.082 37.5581 341.508 35.2993 339.808C33.0244 338.096 32 336.383 32 334.769C32 333.154 33.0244 331.441 35.2993 329.729C37.5581 328.029 40.8949 326.455 45.1217 325.115C53.5638 322.44 65.3318 320.769 78.5 320.769C91.6682 320.769 103.436 322.44 111.878 325.115C116.105 326.455 119.442 328.029 121.701 329.729C123.976 331.441 125 333.154 125 334.769Z" fill="white" stroke="#ED1C24" stroke-width="2"/>
+<path d="M32 333.769L32.3506 441.032" stroke="#ED1C24" stroke-width="2"/>
+<path d="M125 333.769L125 441.769" stroke="#ED1C24" stroke-width="2"/>
+<path d="M125.089 440.211C125.089 448.168 104.328 454.617 78.7196 454.617C53.1107 454.617 32.3506 448.168 32.3506 440.211" stroke="#ED1C24" stroke-width="2"/>
+<path d="M82.6372 399.884V401.573H73.1743C73.1613 401.15 73.2297 400.743 73.3794 400.353C73.6203 399.708 74.0044 399.073 74.5317 398.448C75.0656 397.823 75.8338 397.101 76.8364 396.28C78.3924 395.004 79.4438 393.995 79.9907 393.253C80.5376 392.504 80.811 391.798 80.811 391.134C80.811 390.437 80.5604 389.851 80.0591 389.376C79.5643 388.894 78.9165 388.653 78.1157 388.653C77.2694 388.653 76.5923 388.907 76.0845 389.415C75.5767 389.923 75.3195 390.626 75.313 391.524L73.5063 391.339C73.63 389.991 74.0955 388.966 74.9028 388.263C75.7101 387.553 76.7941 387.198 78.1548 387.198C79.5285 387.198 80.6157 387.579 81.4165 388.341C82.2173 389.103 82.6177 390.047 82.6177 391.173C82.6177 391.746 82.5005 392.309 82.2661 392.862C82.0317 393.416 81.6411 393.998 81.0942 394.61C80.5539 395.222 79.6522 396.062 78.3892 397.13C77.3345 398.015 76.6574 398.618 76.3579 398.937C76.0584 399.249 75.811 399.565 75.6157 399.884H82.6372Z" fill="black"/>
+<path d="M95.8356 394.486C95.8356 404.258 87.9141 412.18 78.1423 412.18C68.3705 412.18 60.449 404.258 60.449 394.486C60.449 384.715 68.3705 376.793 78.1423 376.793M73.2522 372.911L79.023 376.427L75.5071 382.198" stroke="#9C9C9C" stroke-width="2"/>
+<path d="M209.13 442.6V338.836C209.13 338.836 220.157 349.267 254.43 349.267C288.703 349.267 300.923 337.644 300.923 337.644V442.6C300.923 442.6 295.987 455.345 254.43 455.835C212.873 456.326 209.13 442.6 209.13 442.6Z" fill="white"/>
+<path d="M301 334.769C301 336.383 299.976 338.096 297.701 339.808C295.442 341.508 292.105 343.082 287.878 344.422C279.436 347.097 267.668 348.769 254.5 348.769C241.332 348.769 229.564 347.097 221.122 344.422C216.895 343.082 213.558 341.508 211.299 339.808C209.024 338.096 208 336.383 208 334.769C208 333.154 209.024 331.441 211.299 329.729C213.558 328.029 216.895 326.455 221.122 325.115C229.564 322.44 241.332 320.769 254.5 320.769C267.668 320.769 279.436 322.44 287.878 325.115C292.105 326.455 295.442 328.029 297.701 329.729C299.976 331.441 301 333.154 301 334.769Z" fill="white" stroke="#ED1C24" stroke-width="2"/>
+<path d="M208 333.769L208.351 441.032" stroke="#ED1C24" stroke-width="2"/>
+<path d="M301 333.769L301 441.769" stroke="#ED1C24" stroke-width="2"/>
+<path d="M301.089 441.211C301.089 449.168 280.328 455.617 254.72 455.617C229.111 455.617 208.351 449.168 208.351 441.211" stroke="#ED1C24" stroke-width="2"/>
+<path d="M258.637 399.884V401.573H249.174C249.161 401.15 249.23 400.743 249.379 400.353C249.62 399.708 250.004 399.073 250.532 398.448C251.066 397.823 251.834 397.101 252.836 396.28C254.392 395.004 255.444 393.995 255.991 393.253C256.538 392.504 256.811 391.798 256.811 391.134C256.811 390.437 256.56 389.851 256.059 389.376C255.564 388.894 254.917 388.653 254.116 388.653C253.269 388.653 252.592 388.907 252.084 389.415C251.577 389.923 251.319 390.626 251.313 391.524L249.506 391.339C249.63 389.991 250.096 388.966 250.903 388.263C251.71 387.553 252.794 387.198 254.155 387.198C255.528 387.198 256.616 387.579 257.417 388.341C258.217 389.103 258.618 390.047 258.618 391.173C258.618 391.746 258.5 392.309 258.266 392.862C258.032 393.416 257.641 393.998 257.094 394.61C256.554 395.222 255.652 396.062 254.389 397.13C253.334 398.015 252.657 398.618 252.358 398.937C252.058 399.249 251.811 399.565 251.616 399.884H258.637Z" fill="black"/>
+<path d="M271.836 394.486C271.836 404.258 263.914 412.18 254.142 412.18C244.371 412.18 236.449 404.258 236.449 394.486C236.449 384.715 244.371 376.793 254.142 376.793M249.252 372.911L255.023 376.427L251.507 382.198" stroke="#9C9C9C" stroke-width="2"/>
+<path d="M121.13 472.177V368.62C121.13 368.62 132.157 377.165 166.43 377.165C200.703 377.165 212.923 367.644 212.923 367.644V471.605C199.202 490.489 129.533 488.057 121.13 472.177Z" fill="white"/>
+<path d="M213 364.769C213 366.383 211.976 368.096 209.701 369.808C207.442 371.508 204.105 373.082 199.878 374.422C191.436 377.097 179.668 378.769 166.5 378.769C153.332 378.769 141.564 377.097 133.122 374.422C128.895 373.082 125.558 371.508 123.299 369.808C121.024 368.096 120 366.383 120 364.769C120 363.154 121.024 361.441 123.299 359.729C125.558 358.029 128.895 356.455 133.122 355.115C141.564 352.44 153.332 350.769 166.5 350.769C179.668 350.769 191.436 352.44 199.878 355.115C204.105 356.455 207.442 358.029 209.701 359.729C211.976 361.441 213 363.154 213 364.769Z" fill="white" stroke="#ED1C24" stroke-width="2"/>
+<path d="M120 363.769L120.351 471.032" stroke="#ED1C24" stroke-width="2"/>
+<path d="M213 363.769L213 471.769" stroke="#ED1C24" stroke-width="2"/>
+<path d="M213.089 470.211C213.089 478.168 192.328 484.617 166.72 484.617C141.111 484.617 120.351 478.168 120.351 470.211" stroke="#ED1C24" stroke-width="2"/>
+<path d="M229.924 467.142C229.924 467.142 219.425 473.544 229.32 479.902C231.224 481.14 238.128 484.583 237.931 487.77C237.931 487.77 242.116 481.578 235.997 477.682C229.713 473.695 228.142 469.437 229.924 467.142Z" fill="#ED1C24"/>
+<path d="M226.269 479.374C226.269 479.374 222.522 485.052 229.894 486.214C230.62 486.305 235.952 486.864 237.342 488.615C237.342 488.615 237.221 485.595 232.871 483.813C228.535 482.031 226.752 481.594 226.269 479.374Z" fill="#ED1C24"/>
+<path d="M240.772 473.409C236.27 468.697 235.016 465.783 236.95 462.007C236.95 462.007 223.519 467.172 236.783 476.338C241.527 479.615 240.741 482.968 240.741 483.088C241.482 482.318 245.274 478.12 240.772 473.409Z" fill="#ED1C24"/>
+<path d="M248.219 483.874V472.421H249.773L255.789 481.413V472.421H257.242V483.874H255.688L249.672 474.874V483.874H248.219ZM259.536 478.296C259.536 476.395 260.046 474.908 261.067 473.835C262.088 472.757 263.406 472.218 265.02 472.218C266.078 472.218 267.031 472.47 267.88 472.976C268.729 473.481 269.374 474.187 269.817 475.093C270.265 475.994 270.489 477.017 270.489 478.163C270.489 479.325 270.255 480.364 269.786 481.28C269.317 482.197 268.653 482.892 267.794 483.366C266.934 483.835 266.007 484.069 265.012 484.069C263.934 484.069 262.971 483.809 262.122 483.288C261.273 482.767 260.63 482.056 260.192 481.155C259.755 480.254 259.536 479.301 259.536 478.296ZM261.098 478.319C261.098 479.7 261.468 480.788 262.208 481.585C262.953 482.377 263.885 482.772 265.005 482.772C266.145 482.772 267.083 482.371 267.817 481.569C268.557 480.767 268.927 479.629 268.927 478.155C268.927 477.223 268.768 476.41 268.45 475.718C268.137 475.02 267.677 474.481 267.067 474.101C266.463 473.715 265.783 473.522 265.028 473.522C263.955 473.522 263.031 473.892 262.255 474.632C261.484 475.366 261.098 476.595 261.098 478.319ZM272.65 483.874V472.421H276.595C277.486 472.421 278.166 472.476 278.634 472.585C279.291 472.736 279.851 473.009 280.314 473.405C280.918 473.916 281.369 474.569 281.666 475.366C281.968 476.158 282.119 477.064 282.119 478.085C282.119 478.955 282.017 479.726 281.814 480.397C281.611 481.069 281.351 481.627 281.033 482.069C280.715 482.507 280.366 482.853 279.986 483.108C279.611 483.358 279.155 483.549 278.619 483.679C278.087 483.809 277.476 483.874 276.783 483.874H272.65ZM274.166 482.522H276.611C277.366 482.522 277.957 482.452 278.384 482.312C278.817 482.171 279.16 481.973 279.416 481.718C279.775 481.358 280.054 480.877 280.252 480.272C280.455 479.663 280.556 478.926 280.556 478.062C280.556 476.864 280.358 475.944 279.962 475.304C279.572 474.658 279.095 474.226 278.533 474.007C278.127 473.851 277.473 473.772 276.572 473.772H274.166V482.522ZM284.444 483.874V472.421H292.725V473.772H285.959V477.28H292.295V478.624H285.959V482.522H292.991V483.874H284.444Z" fill="#2D2D2D"/>
+<path d="M41.8507 467.142C41.8507 467.142 31.3514 473.544 41.2464 479.902C43.1499 481.14 50.0538 484.583 49.8574 487.77C49.8574 487.77 54.042 481.578 47.9237 477.682C41.6392 473.695 40.0681 469.437 41.8507 467.142Z" fill="#ED1C24"/>
+<path d="M38.195 479.374C38.195 479.374 34.4484 485.052 41.8207 486.214C42.5458 486.305 47.8786 486.864 49.2684 488.615C49.2684 488.615 49.1476 485.595 44.7967 483.813C40.461 482.031 38.6784 481.594 38.195 479.374Z" fill="#ED1C24"/>
+<path d="M52.6979 473.409C48.196 468.697 46.9422 465.783 48.8759 462.007C48.8759 462.007 35.4457 467.172 48.7097 476.338C53.4533 479.615 52.6677 482.968 52.6677 483.088C53.408 482.318 57.1998 478.12 52.6979 473.409Z" fill="#ED1C24"/>
+<path d="M60.145 483.874V472.421H61.6996L67.7153 481.413V472.421H69.1684V483.874H67.6137L61.5981 474.874V483.874H60.145ZM71.4621 478.296C71.4621 476.395 71.9726 474.908 72.9934 473.835C74.0142 472.757 75.3319 472.218 76.9465 472.218C78.0038 472.218 78.9569 472.47 79.8059 472.976C80.6549 473.481 81.3007 474.187 81.7434 475.093C82.1913 475.994 82.4153 477.017 82.4153 478.163C82.4153 479.325 82.1809 480.364 81.7121 481.28C81.2434 482.197 80.5793 482.892 79.72 483.366C78.8606 483.835 77.9335 484.069 76.9387 484.069C75.8606 484.069 74.897 483.809 74.0481 483.288C73.1991 482.767 72.5559 482.056 72.1184 481.155C71.6809 480.254 71.4621 479.301 71.4621 478.296ZM73.0246 478.319C73.0246 479.7 73.3944 480.788 74.134 481.585C74.8788 482.377 75.8111 482.772 76.9309 482.772C78.0715 482.772 79.009 482.371 79.7434 481.569C80.483 480.767 80.8528 479.629 80.8528 478.155C80.8528 477.223 80.6939 476.41 80.3762 475.718C80.0637 475.02 79.6028 474.481 78.9934 474.101C78.3892 473.715 77.7095 473.522 76.9543 473.522C75.8814 473.522 74.9569 473.892 74.1809 474.632C73.4101 475.366 73.0246 476.595 73.0246 478.319ZM84.5762 483.874V472.421H88.5215C89.4121 472.421 90.0918 472.476 90.5606 472.585C91.2168 472.736 91.7767 473.009 92.2403 473.405C92.8444 473.916 93.295 474.569 93.5918 475.366C93.8939 476.158 94.045 477.064 94.045 478.085C94.045 478.955 93.9434 479.726 93.7403 480.397C93.5371 481.069 93.2767 481.627 92.959 482.069C92.6413 482.507 92.2924 482.853 91.9121 483.108C91.5371 483.358 91.0814 483.549 90.545 483.679C90.0137 483.809 89.4017 483.874 88.709 483.874H84.5762ZM86.0918 482.522H88.5371C89.2924 482.522 89.8835 482.452 90.3106 482.312C90.7429 482.171 91.0866 481.973 91.3418 481.718C91.7012 481.358 91.9799 480.877 92.1778 480.272C92.3809 479.663 92.4825 478.926 92.4825 478.062C92.4825 476.864 92.2845 475.944 91.8887 475.304C91.4981 474.658 91.0215 474.226 90.459 474.007C90.0528 473.851 89.3991 473.772 88.4981 473.772H86.0918V482.522ZM96.37 483.874V472.421H104.651V473.772H97.8856V477.28H104.222V478.624H97.8856V482.522H104.917V483.874H96.37Z" fill="#2D2D2D"/>
+<path d="M134.851 497.679C134.851 497.679 124.351 504.082 134.246 510.439C136.15 511.678 143.054 515.121 142.857 518.307C142.857 518.307 147.042 512.116 140.924 508.22C134.639 504.233 133.068 499.974 134.851 497.679Z" fill="#ED1C24"/>
+<path d="M131.195 509.911C131.195 509.911 127.448 515.589 134.821 516.752C135.546 516.842 140.879 517.401 142.268 519.153C142.268 519.153 142.148 516.133 137.797 514.351C133.461 512.569 131.678 512.131 131.195 509.911Z" fill="#ED1C24"/>
+<path d="M145.698 503.946C141.196 499.234 139.942 496.32 141.876 492.545C141.876 492.545 128.446 497.709 141.71 506.876C146.453 510.153 145.668 513.505 145.668 513.626C146.408 512.856 150.2 508.658 145.698 503.946Z" fill="#ED1C24"/>
+<path d="M153.145 514.874V503.421H154.7L160.715 512.413V503.421H162.168V514.874H160.614L154.598 505.874V514.874H153.145ZM164.462 509.296C164.462 507.395 164.973 505.908 165.993 504.835C167.014 503.757 168.332 503.218 169.947 503.218C171.004 503.218 171.957 503.47 172.806 503.976C173.655 504.481 174.301 505.187 174.743 506.093C175.191 506.994 175.415 508.017 175.415 509.163C175.415 510.325 175.181 511.364 174.712 512.28C174.243 513.197 173.579 513.892 172.72 514.366C171.861 514.835 170.933 515.069 169.939 515.069C168.861 515.069 167.897 514.809 167.048 514.288C166.199 513.767 165.556 513.056 165.118 512.155C164.681 511.254 164.462 510.301 164.462 509.296ZM166.025 509.319C166.025 510.7 166.394 511.788 167.134 512.585C167.879 513.377 168.811 513.772 169.931 513.772C171.072 513.772 172.009 513.371 172.743 512.569C173.483 511.767 173.853 510.629 173.853 509.155C173.853 508.223 173.694 507.41 173.376 506.718C173.064 506.02 172.603 505.481 171.993 505.101C171.389 504.715 170.71 504.522 169.954 504.522C168.881 504.522 167.957 504.892 167.181 505.632C166.41 506.366 166.025 507.595 166.025 509.319ZM177.576 514.874V503.421H181.522C182.412 503.421 183.092 503.476 183.561 503.585C184.217 503.736 184.777 504.009 185.24 504.405C185.844 504.916 186.295 505.569 186.592 506.366C186.894 507.158 187.045 508.064 187.045 509.085C187.045 509.955 186.943 510.726 186.74 511.397C186.537 512.069 186.277 512.627 185.959 513.069C185.641 513.507 185.292 513.853 184.912 514.108C184.537 514.358 184.081 514.549 183.545 514.679C183.014 514.809 182.402 514.874 181.709 514.874H177.576ZM179.092 513.522H181.537C182.292 513.522 182.883 513.452 183.311 513.312C183.743 513.171 184.087 512.973 184.342 512.718C184.701 512.358 184.98 511.877 185.178 511.272C185.381 510.663 185.482 509.926 185.482 509.062C185.482 507.864 185.285 506.944 184.889 506.304C184.498 505.658 184.022 505.226 183.459 505.007C183.053 504.851 182.399 504.772 181.498 504.772H179.092V513.522ZM189.37 514.874V503.421H197.651V504.772H190.886V508.28H197.222V509.624H190.886V513.522H197.917V514.874H189.37Z" fill="#2D2D2D"/>
+<path d="M170.637 431.884V433.573H161.174C161.161 433.15 161.23 432.743 161.379 432.353C161.62 431.708 162.004 431.073 162.532 430.448C163.066 429.823 163.834 429.101 164.836 428.28C166.392 427.004 167.444 425.995 167.991 425.253C168.538 424.504 168.811 423.798 168.811 423.134C168.811 422.437 168.56 421.851 168.059 421.376C167.564 420.894 166.917 420.653 166.116 420.653C165.269 420.653 164.592 420.907 164.084 421.415C163.577 421.923 163.319 422.626 163.313 423.524L161.506 423.339C161.63 421.991 162.096 420.966 162.903 420.263C163.71 419.553 164.794 419.198 166.155 419.198C167.528 419.198 168.616 419.579 169.417 420.341C170.217 421.103 170.618 422.047 170.618 423.173C170.618 423.746 170.5 424.309 170.266 424.862C170.032 425.416 169.641 425.998 169.094 426.61C168.554 427.222 167.652 428.062 166.389 429.13C165.334 430.015 164.657 430.618 164.358 430.937C164.058 431.249 163.811 431.565 163.616 431.884H170.637Z" fill="black"/>
+<path d="M183.836 426.486C183.836 436.258 175.914 444.18 166.142 444.18C156.371 444.18 148.449 436.258 148.449 426.486C148.449 416.715 156.371 408.793 166.142 408.793M161.252 404.911L167.023 408.427L163.507 414.198" stroke="#9C9C9C" stroke-width="2"/>
+<path d="M85.5334 207.675L110.515 214.286L110.515 178.357L85.5334 171.746L60.9901 179.385L60.9902 215.165L85.5334 207.675Z" fill="white" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M85.9716 186.27L60.9901 179.659L60.9901 223.471L85.9716 230.082L110.515 222.443L110.515 178.78L85.9716 186.27Z" fill="white" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M85.606 186.199L85.606 229.349" stroke="#2D2D2D" stroke-width="2"/>
+<path d="M124.368 213.693L129.866 199.377H131.907L137.767 213.693H135.608L133.938 209.357H127.952L126.38 213.693H124.368ZM128.499 207.814H133.353L131.858 203.85C131.403 202.645 131.064 201.656 130.843 200.881C130.66 201.799 130.403 202.71 130.071 203.615L128.499 207.814ZM139.256 217.668V203.322H140.857V204.67C141.235 204.143 141.661 203.749 142.137 203.488C142.612 203.221 143.188 203.088 143.865 203.088C144.75 203.088 145.532 203.316 146.209 203.771C146.886 204.227 147.397 204.872 147.742 205.705C148.087 206.532 148.26 207.44 148.26 208.43C148.26 209.491 148.068 210.448 147.683 211.301C147.306 212.147 146.752 212.798 146.023 213.254C145.301 213.703 144.539 213.928 143.738 213.928C143.152 213.928 142.625 213.804 142.156 213.557C141.694 213.309 141.313 212.997 141.013 212.619V217.668H139.256ZM140.847 208.566C140.847 209.901 141.118 210.887 141.658 211.525C142.198 212.163 142.853 212.482 143.621 212.482C144.402 212.482 145.069 212.154 145.623 211.496C146.183 210.832 146.463 209.807 146.463 208.42C146.463 207.098 146.189 206.109 145.642 205.451C145.102 204.794 144.454 204.465 143.699 204.465C142.95 204.465 142.286 204.816 141.707 205.52C141.134 206.216 140.847 207.232 140.847 208.566ZM150.588 217.668V203.322H152.19V204.67C152.568 204.143 152.994 203.749 153.469 203.488C153.945 203.221 154.521 203.088 155.198 203.088C156.083 203.088 156.865 203.316 157.542 203.771C158.219 204.227 158.73 204.872 159.075 205.705C159.42 206.532 159.592 207.44 159.592 208.43C159.592 209.491 159.4 210.448 159.016 211.301C158.639 212.147 158.085 212.798 157.356 213.254C156.633 213.703 155.872 213.928 155.071 213.928C154.485 213.928 153.958 213.804 153.489 213.557C153.027 213.309 152.646 212.997 152.346 212.619V217.668H150.588ZM152.18 208.566C152.18 209.901 152.45 210.887 152.991 211.525C153.531 212.163 154.185 212.482 154.954 212.482C155.735 212.482 156.402 212.154 156.956 211.496C157.516 210.832 157.796 209.807 157.796 208.42C157.796 207.098 157.522 206.109 156.975 205.451C156.435 204.794 155.787 204.465 155.032 204.465C154.283 204.465 153.619 204.816 153.04 205.52C152.467 206.216 152.18 207.232 152.18 208.566ZM161.882 213.693V199.377H163.64V213.693H161.882ZM166.584 201.398V199.377H168.342V201.398H166.584ZM166.584 213.693V203.322H168.342V213.693H166.584ZM177.995 209.895L179.724 210.119C179.535 211.311 179.05 212.245 178.269 212.922C177.494 213.592 176.54 213.928 175.407 213.928C173.988 213.928 172.845 213.465 171.979 212.541C171.12 211.61 170.69 210.279 170.69 208.547C170.69 207.427 170.876 206.447 171.247 205.607C171.618 204.768 172.181 204.139 172.937 203.723C173.698 203.299 174.525 203.088 175.417 203.088C176.543 203.088 177.465 203.374 178.181 203.947C178.897 204.514 179.356 205.321 179.558 206.369L177.849 206.633C177.686 205.936 177.396 205.412 176.979 205.061C176.569 204.709 176.071 204.533 175.485 204.533C174.6 204.533 173.881 204.852 173.327 205.49C172.774 206.122 172.497 207.124 172.497 208.498C172.497 209.891 172.764 210.904 173.298 211.535C173.832 212.167 174.528 212.482 175.388 212.482C176.078 212.482 176.654 212.271 177.116 211.848C177.578 211.424 177.871 210.773 177.995 209.895ZM188.195 212.414C187.544 212.967 186.916 213.358 186.31 213.586C185.711 213.814 185.067 213.928 184.377 213.928C183.237 213.928 182.362 213.651 181.75 213.098C181.138 212.538 180.832 211.825 180.832 210.959C180.832 210.451 180.946 209.989 181.174 209.572C181.408 209.149 181.711 208.811 182.082 208.557C182.459 208.303 182.883 208.111 183.351 207.98C183.696 207.889 184.217 207.801 184.914 207.717C186.333 207.548 187.378 207.346 188.049 207.111C188.055 206.87 188.058 206.717 188.058 206.652C188.058 205.936 187.892 205.432 187.56 205.139C187.111 204.742 186.444 204.543 185.558 204.543C184.732 204.543 184.12 204.689 183.722 204.982C183.332 205.269 183.042 205.78 182.853 206.516L181.135 206.281C181.291 205.546 181.548 204.953 181.906 204.504C182.264 204.048 182.782 203.7 183.459 203.459C184.136 203.212 184.92 203.088 185.812 203.088C186.698 203.088 187.417 203.192 187.971 203.4C188.524 203.609 188.931 203.872 189.191 204.191C189.452 204.504 189.634 204.901 189.738 205.383C189.797 205.682 189.826 206.223 189.826 207.004V209.348C189.826 210.982 189.862 212.017 189.933 212.453C190.012 212.883 190.161 213.296 190.383 213.693H188.547C188.364 213.329 188.247 212.902 188.195 212.414ZM188.049 208.488C187.411 208.749 186.454 208.97 185.178 209.152C184.455 209.257 183.944 209.374 183.644 209.504C183.345 209.634 183.114 209.826 182.951 210.08C182.788 210.327 182.707 210.604 182.707 210.91C182.707 211.379 182.883 211.77 183.234 212.082C183.592 212.395 184.113 212.551 184.797 212.551C185.474 212.551 186.076 212.404 186.603 212.111C187.131 211.812 187.518 211.405 187.765 210.891C187.954 210.493 188.049 209.908 188.049 209.133V208.488ZM196.598 212.121L196.852 213.674C196.357 213.778 195.915 213.83 195.524 213.83C194.886 213.83 194.391 213.729 194.04 213.527C193.688 213.326 193.441 213.062 193.297 212.736C193.154 212.404 193.083 211.711 193.083 210.656V204.689H191.794V203.322H193.083V200.754L194.831 199.699V203.322H196.598V204.689H194.831V210.754C194.831 211.255 194.86 211.577 194.919 211.721C194.984 211.864 195.085 211.978 195.221 212.062C195.365 212.147 195.566 212.189 195.827 212.189C196.022 212.189 196.279 212.167 196.598 212.121ZM198.537 201.398V199.377H200.294V201.398H198.537ZM198.537 213.693V203.322H200.294V213.693H198.537ZM202.526 208.508C202.526 206.587 203.059 205.165 204.127 204.24C205.019 203.472 206.106 203.088 207.389 203.088C208.815 203.088 209.98 203.557 210.885 204.494C211.79 205.425 212.242 206.714 212.242 208.361C212.242 209.696 212.041 210.747 211.637 211.516C211.24 212.277 210.657 212.87 209.889 213.293C209.127 213.716 208.294 213.928 207.389 213.928C205.937 213.928 204.762 213.462 203.863 212.531C202.972 211.6 202.526 210.259 202.526 208.508ZM204.332 208.508C204.332 209.836 204.622 210.832 205.201 211.496C205.781 212.154 206.51 212.482 207.389 212.482C208.261 212.482 208.987 212.15 209.567 211.486C210.146 210.822 210.436 209.81 210.436 208.449C210.436 207.167 210.143 206.197 209.557 205.539C208.977 204.875 208.255 204.543 207.389 204.543C206.51 204.543 205.781 204.872 205.201 205.529C204.622 206.187 204.332 207.18 204.332 208.508ZM214.513 213.693V203.322H216.095V204.797C216.856 203.658 217.957 203.088 219.396 203.088C220.021 203.088 220.593 203.202 221.114 203.43C221.642 203.651 222.035 203.944 222.296 204.309C222.556 204.673 222.739 205.106 222.843 205.607C222.908 205.933 222.94 206.503 222.94 207.316V213.693H221.183V207.385C221.183 206.669 221.114 206.135 220.978 205.783C220.841 205.425 220.597 205.142 220.245 204.934C219.9 204.719 219.493 204.611 219.024 204.611C218.276 204.611 217.628 204.849 217.081 205.324C216.541 205.799 216.271 206.701 216.271 208.029V213.693H214.513Z" fill="#2D2D2D"/>
+<path d="M27 67H25.6667V58.4287C25.3457 58.7375 24.9235 59.0464 24.4 59.3553C23.8815 59.6642 23.4148 59.8958 23 60.0503V58.75C23.7457 58.3963 24.3975 57.9678 24.9556 57.4647C25.5136 56.9615 25.9086 56.4733 26.1407 56H27V67Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M24.5607 47.8898L21.948 46.2875L22.7273 45L27.6888 48.0427L24.666 53.0367L23.3869 52.2523L25.1417 49.3531C18.6373 49.797 13.4979 55.2484 13.4979 61.9081C13.4979 68.8582 19.0953 74.4923 26 74.4923C32.9047 74.4923 38.5021 68.8582 38.5021 61.9081H40C40 69.6908 33.732 76 26 76C18.268 76 12 69.6908 12 61.9081C12 54.6145 17.5049 48.6151 24.5607 47.8898Z" fill="#9C9C9C"/>
+<path d="M23 112.967L24.3125 112.791C24.4632 113.54 24.7184 114.081 25.0781 114.414C25.4427 114.742 25.8851 114.906 26.4052 114.906C27.0226 114.906 27.5427 114.69 27.9656 114.26C28.3934 113.829 28.6073 113.295 28.6073 112.659C28.6073 112.052 28.4104 111.553 28.0167 111.161C27.6229 110.764 27.1222 110.566 26.5146 110.566C26.2667 110.566 25.958 110.615 25.5885 110.713L25.7344 109.553C25.8219 109.563 25.8924 109.567 25.9458 109.567C26.5049 109.567 27.008 109.421 27.4552 109.127C27.9024 108.833 28.126 108.38 28.126 107.768C28.126 107.284 27.9632 106.882 27.6375 106.564C27.3118 106.246 26.8913 106.087 26.376 106.087C25.8656 106.087 25.4403 106.248 25.1 106.571C24.7597 106.895 24.541 107.379 24.4438 108.025L23.1312 107.79C23.2917 106.904 23.6562 106.219 24.225 105.734C24.7938 105.245 25.501 105 26.3469 105C26.9302 105 27.4674 105.127 27.9583 105.382C28.4493 105.632 28.8236 105.974 29.0813 106.41C29.3438 106.846 29.475 107.308 29.475 107.798C29.475 108.263 29.351 108.686 29.1031 109.068C28.8552 109.45 28.4882 109.753 28.0021 109.979C28.634 110.126 29.125 110.431 29.475 110.897C29.825 111.357 30 111.934 30 112.63C30 113.569 29.6597 114.367 28.9792 115.023C28.2986 115.674 27.4382 116 26.3979 116C25.4597 116 24.6795 115.719 24.0573 115.156C23.4399 114.593 23.0875 113.863 23 112.967Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M25.0093 95.983L22.3033 94.3291L23.1104 93L28.2491 96.1408L25.1184 101.296L23.7935 100.486L25.611 97.4935C18.8743 97.9518 13.5514 103.579 13.5514 110.454C13.5514 117.628 19.3487 123.444 26.5 123.444C33.6513 123.444 39.4486 117.628 39.4486 110.454H41C41 118.487 34.5081 125 26.5 125C18.4919 125 12 118.487 12 110.454C12 102.925 17.7015 96.7317 25.0093 95.983Z" fill="#9C9C9C"/>
+</svg>
diff --git a/public/img/usecases/high-peformance/video-1.png b/public/img/usecases/high-peformance/video-1.png
new file mode 100644
index 0000000..6aa52ac
--- /dev/null
+++ b/public/img/usecases/high-peformance/video-1.png
Binary files differ
diff --git a/public/img/usecases/high-peformance/video-2.png b/public/img/usecases/high-peformance/video-2.png
new file mode 100644
index 0000000..704b6f3
--- /dev/null
+++ b/public/img/usecases/high-peformance/video-2.png
Binary files differ
diff --git a/public/img/usecases/high-peformance/video-3.png b/public/img/usecases/high-peformance/video-3.png
new file mode 100644
index 0000000..fa54beb
--- /dev/null
+++ b/public/img/usecases/high-peformance/video-3.png
Binary files differ
diff --git a/public/img/usecases/high-peformance/video-4.png b/public/img/usecases/high-peformance/video-4.png
new file mode 100644
index 0000000..5f81673
--- /dev/null
+++ b/public/img/usecases/high-peformance/video-4.png
Binary files differ
diff --git a/public/img/usecases/high-peformance/video-5.png b/public/img/usecases/high-peformance/video-5.png
new file mode 100644
index 0000000..3d797c0
--- /dev/null
+++ b/public/img/usecases/high-peformance/video-5.png
Binary files differ
diff --git a/public/img/usecases/high-peformance/video-6.png b/public/img/usecases/high-peformance/video-6.png
new file mode 100644
index 0000000..03baff6
--- /dev/null
+++ b/public/img/usecases/high-peformance/video-6.png
Binary files differ
diff --git a/public/img/usecases/in-memory-hero.svg b/public/img/usecases/in-memory-hero.svg
new file mode 100644
index 0000000..46bfd8e
--- /dev/null
+++ b/public/img/usecases/in-memory-hero.svg
@@ -0,0 +1,14 @@
+<svg width="616" height="602" viewBox="0 0 616 602" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M482.735 163.48H223V242.77H223.063C222.261 262.539 234.925 282.457 261.056 297.544C311.762 326.819 393.972 326.819 444.678 297.544C470.809 282.457 483.474 262.539 482.672 242.77H482.735V163.48Z" fill="#0070CC" stroke="white"/>
+<path d="M261.057 112.24C311.763 82.965 393.973 82.965 444.679 112.24C495.384 141.515 495.384 188.979 444.679 218.254C393.973 247.529 311.763 247.529 261.057 218.254C210.351 188.979 210.351 141.515 261.057 112.24Z" fill="#0070CC" stroke="white"/>
+<path d="M482.735 74.1964H223V153.486H223.063C222.261 173.255 234.925 193.173 261.056 208.26C311.762 237.535 393.972 237.535 444.678 208.26C470.809 193.173 483.474 173.255 482.672 153.486H482.735V74.1964Z" fill="#0070CC" stroke="white"/>
+<path d="M261.057 22.9562C311.763 -6.31875 393.973 -6.31875 444.679 22.9562C495.384 52.2312 495.384 99.6954 444.679 128.97C393.973 158.245 311.763 158.245 261.057 128.97C210.351 99.6954 210.351 52.2312 261.057 22.9562Z" fill="#0070CC" stroke="white"/>
+<path d="M614.735 445.48H355V524.77H355.063C354.261 544.539 366.925 564.457 393.056 579.544C443.762 608.819 525.972 608.819 576.678 579.544C602.809 564.457 615.474 544.539 614.672 524.77H614.735V445.48Z" fill="#0070CC" stroke="white"/>
+<path d="M393.057 394.24C443.763 364.965 525.973 364.965 576.679 394.24C627.384 423.515 627.384 470.979 576.679 500.254C525.973 529.529 443.763 529.529 393.057 500.254C342.351 470.979 342.351 423.515 393.057 394.24Z" fill="#0070CC" stroke="white"/>
+<path d="M614.735 356.196H355V435.486H355.063C354.261 455.255 366.925 475.173 393.056 490.26C443.762 519.535 525.972 519.535 576.678 490.26C602.809 475.173 615.474 455.255 614.672 435.486H614.735V356.196Z" fill="#0070CC" stroke="white"/>
+<path d="M393.057 304.956C443.763 275.681 525.973 275.681 576.679 304.956C627.384 334.231 627.384 381.695 576.679 410.97C525.973 440.245 443.763 440.245 393.057 410.97C342.351 381.695 342.351 334.231 393.057 304.956Z" fill="#0070CC" stroke="white"/>
+<path d="M260.735 362.48H1V441.77H1.06288C0.260588 461.539 12.9251 481.457 39.0564 496.544C89.7621 525.819 171.972 525.819 222.678 496.544C248.809 481.457 261.474 461.539 260.672 441.77H260.735V362.48Z" fill="#0070CC" stroke="white"/>
+<path d="M39.0568 311.24C89.7626 281.965 171.973 281.965 222.679 311.24C273.384 340.515 273.384 387.979 222.679 417.254C171.973 446.529 89.7626 446.529 39.0568 417.254C-11.649 387.979 -11.649 340.515 39.0568 311.24Z" fill="#0070CC" stroke="white"/>
+<path d="M260.735 273.196H1V352.486H1.06288C0.260588 372.255 12.9251 392.173 39.0564 407.26C89.7621 436.535 171.972 436.535 222.678 407.26C248.809 392.173 261.474 372.255 260.672 352.486H260.735V273.196Z" fill="#0070CC" stroke="white"/>
+<path d="M39.0568 221.956C89.7626 192.681 171.973 192.681 222.679 221.956C273.384 251.231 273.384 298.695 222.679 327.97C171.973 357.245 89.7626 357.245 39.0568 327.97C-11.649 298.695 -11.649 251.231 39.0568 221.956Z" fill="#0070CC" stroke="white"/>
+</svg>
diff --git a/public/index.html b/public/index.html
new file mode 100644
index 0000000..2f51f1a
--- /dev/null
+++ b/public/index.html
@@ -0,0 +1,119 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>Main Page | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a class="hdrmenu__current" href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a class="hdrmenu__current" href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="temppages container pt-5">
+      <h2 class="pt-5">Pages List</h2>
+      <ul class="dashlist pt-4 pb-5">
+        <li><a href="/community.html">Сommunity </a></li>
+        <li><a href="/use-cases/">UseCases Root Page</a></li>
+        <li><a href="/features/">Features Root Page</a></li>
+        <li><a href="/arch/multi-tier-storage.html">Features: multi-tier-storage</a></li>
+        <li><a href="/arch/native-persistence.html">Features: native-persistence</a></li>
+        <li><a href="/use-cases/in-memory-cache.html">Use Cases: in-memory-cache</a></li>
+        <li><a href="/events.html">Events</a></li>
+        <li><a href="/use-cases/provenusecases.html">Use Cases: Powered By</a></li>
+        <li><a href="/resources.html">Resources</a></li>
+        <li><a href="/features/tooling.html">Tooling</a></li>
+        <li><a href="/features/acid-transactions.html">Features: ACID transactions</a></li>
+        <li><a href="/faq.html">FAQ</a></li>
+        <li><a href="/features/compute-apis.html">Features: Compute APIs</a></li>
+        <li><a href="/use-cases/high-performance-computing.html">Use Cases: High Performance Computing</a></li>
+        <li><a href="/features/distributed-key-value-store.html">Features: Distributed Key-Value APIs</a></li>
+        <li><a href="/features/multilanguage.html">Features: Multi-Language Support</a></li>
+        <li><a href="/features/servicegrid.html">Features: Service APIs</a></li>
+        <li><a href="/features/machinelearning.html">Features: Machine Learning APIs</a></li>
+        <li><a href="/features/streaming.html">Features: Streaming</a></li>
+        <li><a href="/features/sql.html">Features: Distributed ANSI SQL</a></li>
+        <li><a href="/use-cases/digital-integration-hub.html">Use Cases: Digital Integration Hub</a></li>
+        <li><a href="/use-cases/in-memory-data-grid.html">Use Cases: In-Memory Data Grid</a></li>
+        <li><a href="/use-cases/in-memory-database.html">Use Cases: In-Memory Database</a></li>
+        <li><a href="/arch/clustering.html">Features: Deployment Options</a></li>
+        <li><a href="/download.html">Downloads </a></li>
+      </ul>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/js/main.js b/public/js/main.js
new file mode 100644
index 0000000..2a31478
--- /dev/null
+++ b/public/js/main.js
@@ -0,0 +1,290 @@
+/**
+ * Модальные окна
+ * см. https://addmorescripts.github.io/hystModal/index_ru.html
+ */
+ if (typeof HystModal !== "undefined") {
+    var xModal = new HystModal({
+        linkAttributeName: "data-hystmodal",
+        waitTransitions: true,
+        beforeOpen: function(modal){
+        },
+        afterClose: function(modal) {
+        },
+    });
+    window.xxModal = xModal;
+    var menuModal = new HystModal({
+        linkAttributeName: "data-menumodal",
+        waitTransitions: true,
+        backscroll: false,
+        catchFocus:false,
+    });
+}
+
+
+
+
+/**
+ * Скрипт GLightbox запуск на элементах с классом .glightbox
+ * см. https://biati-digital.github.io/glightbox/
+ */
+ if (typeof GLightbox !== "undefined") {
+    const lightbox = GLightbox({
+        plyr: {
+            config: {
+                ratio: '16:9',
+                youtube: {
+                    noCookie: true,
+                    rel: 0,
+                    showinfo: 0,
+                    iv_load_policy: 3,
+                },
+            }
+        },
+    });
+}
+
+
+
+
+//scroll to top button
+(function scrollTop() {
+    const scrollButton = document.querySelector('.scrollTop');
+    if (!scrollButton) return;
+    let trigger = false;
+    function resetTrigger() {
+        trigger = true;
+    }
+    window.addEventListener('scroll', resetTrigger);
+    let scrollInterval = setInterval(function () {
+        if (!trigger) return;
+        trigger = false;
+        let scrolled = window.pageYOffset || document.documentElement.scrollTop;
+        scrollActions(scrolled);
+    }, 250);
+    scrollButton.addEventListener('click', function (e) {
+        e.preventDefault();
+        window.scrollTo({
+            top: 0,
+            behavior: 'smooth',
+        });
+    });
+})();
+
+
+// const jsNavBlock = document.querySelector('.jsNavBlock');
+// const startNavBlockCoord = jsNavBlock.getBoundingClientRect().y + window.pageYOffset;
+// console.log(startNavBlockCoord);
+
+function scrollActions(scrolled){
+    const scrollButton = document.querySelector('.scrollTop');
+    const stikyHeader = document.querySelector('.hdrfloat');
+    
+
+    scrollButton.classList.toggle('active', scrolled >= 100);
+    document.documentElement.classList.toggle('hdr-active', scrolled >= 600);
+}
+
+
+
+function accordeons(){
+    let testEl = document.querySelector('[data-hidebox]');
+    if(!testEl) return;
+    document.addEventListener('click', function(e) {
+        let accordLink = e.target.closest('[data-hideopen]');
+        if(!accordLink) return;
+        e.preventDefault();
+        console.log(accordLink);
+        let accordBox = document.querySelector('[data-hidebox="' + accordLink.dataset.hideopen + '"]');
+        console.log(accordBox);
+        if(!accordBox){ console.log("Error: accordion element not found"); return;}
+        if(!accordBox.style.height){
+            accordLink.classList.add('isopen');
+            accordBox.style.height = accordBox.scrollHeight + "px";
+            if(accordLink.dataset.invis){
+                accordLink.remove();
+            }
+        } else {
+            accordLink.classList.remove('isopen');
+            accordBox.style.height = "";
+        }
+    });
+}
+accordeons();
+
+
+
+
+// function checkMenuIsPinned() {
+//     const el = document.querySelector(".cmtynavblock");
+//     if(!el) return;
+//     const observer = new IntersectionObserver(function(arrayEvent) {
+//         console.log(arrayEvent);
+//         let topCoord = arrayEvent[0].boundingClientRect.top;
+//         let ratio = arrayEvent[0].intersectionRatio;
+//         el.classList.toggle("is-pinned", (topCoord < 10 && ratio < 1));
+//     }, { threshold: [1] });
+//     observer.observe(el);
+// }
+// checkMenuIsPinned();
+
+
+
+
+function reActivateMenuClass(elem, selectors, activeClassName) {
+    document.querySelectorAll(selectors).forEach(el => {
+        el.classList.toggle(activeClassName, el === elem);
+    });
+}
+
+
+
+
+function menuScroller() {
+    let menuEl = document.querySelector('.cmtynavblock__list');
+    if(!menuEl) return;
+
+    let isNeedObserve = true;
+
+    menuEl.addEventListener('click', (e) => {
+        let link = e.target.closest('.cmtynavblock__list a');
+        // console.log(link);
+        if(!link) return;
+        e.preventDefault();
+
+        let targetBlock = document.querySelector(link.getAttribute("href"));
+        let coords = targetBlock.getBoundingClientRect().top + window.scrollY;
+        isNeedObserve = false;
+        window.scrollTo({
+            top: coords - menuEl.scrollHeight,
+            behavior: 'smooth',
+        });
+        setTimeout(() => {
+            isNeedObserve = true;
+        }, 400);
+        reActivateMenuClass(link, ".cmtynavblock__list a", 'cmtynavblock__active');
+    });
+
+
+    let cmtyObserver = new IntersectionObserver((e) => {
+        let eventTar = e[0];
+        // console.log(eventTar);
+        if(isNeedObserve && eventTar.isIntersecting){
+            reActivateMenuClass(
+                document.querySelector('.cmtynavblock__list a[href="#' + eventTar.target.id + '"]'),
+                ".cmtynavblock__list a",
+                'cmtynavblock__active'
+            );
+        }
+    }, { threshold: 0 });
+    menuEl.querySelectorAll('li a').forEach(el => {
+        cmtyObserver.observe(document.querySelector(el.getAttribute('href')));
+    })
+
+
+}
+menuScroller();
+
+
+
+
+
+function scrollToBlock(e,selector) {
+    let elem = document.querySelector(selector);
+    if(!elem) return;
+    e.preventDefault();
+    let coords = elem.getBoundingClientRect().top + window.scrollY;
+    window.scrollTo({
+        top: coords,
+        behavior: 'smooth',
+    });
+}
+
+
+
+if(typeof hljs !== 'undefined'){
+    hljs.highlightAll();
+}
+
+
+
+
+function simpleTabs(){
+    if(!document.querySelector('*[data-tab]')) return;
+    document.addEventListener('click', (e) => {
+        let link = e.target.closest('[data-tablink]');
+        if(!link) return;
+        e.preventDefault();
+        let wrap = e.target.closest('.jsTabWrap');
+        wrap.querySelectorAll('[data-tablink]').forEach(el => {
+            el.classList.remove('active');
+        })
+        link.classList.add('active');
+        let needTab = document.querySelector('[data-tab="' + link.dataset.tablink + '"]');
+        if(!needTab){
+            console.log("Tab - " + link.dataset.tablink + " not found");
+            return;
+        }
+        wrap.querySelectorAll('[data-tab]').forEach(el => {
+            el.classList.remove('active');
+        });
+        needTab.classList.add('active');
+    });
+}
+simpleTabs();
+
+
+
+
+
+function youtube_parser(url){
+    var regExp = /^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(watch\?))\??v?=?([^#&?]*).*/;
+    var match = url.match(regExp);
+    return (match&&match[7].length==11)? match[7] : false;
+}
+
+
+/**
+ * Change Video Block into Iframe with Youtube Video
+ */
+document.addEventListener('click', function(e) {
+    let videoLink = e.target.closest('[data-youtube]');
+    if(!videoLink) return;
+    let href = videoLink.getAttribute('href');
+    console.log(href);
+    e.preventDefault();
+    let videoBlock = e.target.closest('.comvideo__box');
+    videoBlock.innerHTML = "";
+
+    let youtId = youtube_parser(href);
+    let iframeHTML = `<iframe 
+        title=${youtId}
+        src="https://www.youtube.com/embed/${youtId}?autoplay=1&showinfo=0"
+        allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
+        allowFullScreen>
+    </iframe>`;
+    videoBlock.insertAdjacentHTML('beforeend', iframeHTML);
+});
+
+
+
+
+
+
+/**
+ * Download Table Save Popup
+ */
+function downloadPopBlock(){
+    if(!document.querySelector('.jsDownTablePopUp')) return;
+
+    document.addEventListener('click', function(e){
+        let popup = e.target.closest('.jsDownTablePopUp');    
+        document.querySelectorAll('.jsDownTablePopUp').forEach(el => {
+            if(el !== popup){
+                el.querySelector('.downtable__button').classList.remove('active');
+            }
+        });
+        if(!popup) return;
+        popup.querySelector('.downtable__button').classList.add('active');
+    });
+}
+downloadPopBlock();
\ No newline at end of file
diff --git a/public/js/vendor/choices/base.min.css b/public/js/vendor/choices/base.min.css
new file mode 100644
index 0000000..6796543
--- /dev/null
+++ b/public/js/vendor/choices/base.min.css
@@ -0,0 +1 @@
+*{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}*,:after,:before{box-sizing:border-box}body,html{position:relative;margin:0;width:100%;height:100%}body{font-family:'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif;font-size:16px;line-height:1.4;color:#fff;background-color:#333;overflow-x:hidden}hr,label{display:block}label,p{margin-bottom:8px}label{font-size:14px;font-weight:500;cursor:pointer}p{margin-top:0}hr{margin:30px 0;border:0;border-bottom:1px solid #eaeaea;height:1px}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:12px;font-weight:400;line-height:1.2}a,a:focus,a:visited{color:#fff;text-decoration:none;font-weight:600}.form-control{display:block;width:100%;background-color:#f9f9f9;padding:12px;border:1px solid #ddd;border-radius:2.5px;font-size:14px;-webkit-appearance:none;-moz-appearance:none;appearance:none;margin-bottom:24px}.h1,h1{font-size:32px}.h2,h2{font-size:24px}.h3,h3{font-size:20px}.h4,h4{font-size:18px}.h5,h5{font-size:16px}.h6,h6{font-size:14px}label+p{margin-top:-4px}.container{display:block;margin:auto;max-width:40em;padding:48px}@media (max-width:620px){.container{padding:0}}.section{background-color:#fff;padding:24px;color:#333}.section a,.section a:focus,.section a:visited{color:#00bcd4}.logo{display:block;margin-bottom:12px}.logo__img{width:100%;height:auto;display:inline-block;max-width:100%;vertical-align:top;padding:6px 0}.visible-ie{display:none}.push-bottom{margin-bottom:24px}.zero-bottom{margin-bottom:0}.zero-top{margin-top:0}.text-center{text-align:center}[data-test-hook]{margin-bottom:24px}
\ No newline at end of file
diff --git a/public/js/vendor/choices/choices.min.css b/public/js/vendor/choices/choices.min.css
new file mode 100644
index 0000000..19adaba
--- /dev/null
+++ b/public/js/vendor/choices/choices.min.css
@@ -0,0 +1 @@
+.choices{position:relative;margin-bottom:24px;font-size:16px}.choices:focus{outline:0}.choices:last-child{margin-bottom:0}.choices.is-disabled .choices__inner,.choices.is-disabled .choices__input{background-color:#eaeaea;cursor:not-allowed;-webkit-user-select:none;-ms-user-select:none;user-select:none}.choices.is-disabled .choices__item{cursor:not-allowed}.choices [hidden]{display:none!important}.choices[data-type*=select-one]{cursor:pointer}.choices[data-type*=select-one] .choices__inner{padding-bottom:7.5px}.choices[data-type*=select-one] .choices__input{display:block;width:100%;padding:10px;border-bottom:1px solid #ddd;background-color:#fff;margin:0}.choices[data-type*=select-one] .choices__button{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);padding:0;background-size:8px;position:absolute;top:50%;right:0;margin-top:-10px;margin-right:25px;height:20px;width:20px;border-radius:10em;opacity:.5}.choices[data-type*=select-one] .choices__button:focus,.choices[data-type*=select-one] .choices__button:hover{opacity:1}.choices[data-type*=select-one] .choices__button:focus{box-shadow:0 0 0 2px #00bcd4}.choices[data-type*=select-one] .choices__item[data-value=''] .choices__button{display:none}.choices[data-type*=select-one]:after{content:'';height:0;width:0;border-style:solid;border-color:#333 transparent transparent;border-width:5px;position:absolute;right:11.5px;top:50%;margin-top:-2.5px;pointer-events:none}.choices[data-type*=select-one].is-open:after{border-color:transparent transparent #333;margin-top:-7.5px}.choices[data-type*=select-one][dir=rtl]:after{left:11.5px;right:auto}.choices[data-type*=select-one][dir=rtl] .choices__button{right:auto;left:0;margin-left:25px;margin-right:0}.choices[data-type*=select-multiple] .choices__inner,.choices[data-type*=text] .choices__inner{cursor:text}.choices[data-type*=select-multiple] .choices__button,.choices[data-type*=text] .choices__button{position:relative;display:inline-block;margin:0 -4px 0 8px;padding-left:16px;border-left:1px solid #008fa1;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);background-size:8px;width:8px;line-height:1;opacity:.75;border-radius:0}.choices[data-type*=select-multiple] .choices__button:focus,.choices[data-type*=select-multiple] .choices__button:hover,.choices[data-type*=text] .choices__button:focus,.choices[data-type*=text] .choices__button:hover{opacity:1}.choices__inner{display:inline-block;vertical-align:top;width:100%;background-color:#f9f9f9;padding:7.5px 7.5px 3.75px;border:1px solid #ddd;border-radius:2.5px;font-size:14px;min-height:44px;overflow:hidden}.is-focused .choices__inner,.is-open .choices__inner{border-color:#b7b7b7}.is-open .choices__inner{border-radius:2.5px 2.5px 0 0}.is-flipped.is-open .choices__inner{border-radius:0 0 2.5px 2.5px}.choices__list{margin:0;padding-left:0;list-style:none}.choices__list--single{display:inline-block;padding:4px 16px 4px 4px;width:100%}[dir=rtl] .choices__list--single{padding-right:4px;padding-left:16px}.choices__list--single .choices__item{width:100%}.choices__list--multiple{display:inline}.choices__list--multiple .choices__item{display:inline-block;vertical-align:middle;border-radius:20px;padding:4px 10px;font-size:12px;font-weight:500;margin-right:3.75px;margin-bottom:3.75px;background-color:#00bcd4;border:1px solid #00a5bb;color:#fff;word-break:break-all;box-sizing:border-box}.choices__list--multiple .choices__item[data-deletable]{padding-right:5px}[dir=rtl] .choices__list--multiple .choices__item{margin-right:0;margin-left:3.75px}.choices__list--multiple .choices__item.is-highlighted{background-color:#00a5bb;border:1px solid #008fa1}.is-disabled .choices__list--multiple .choices__item{background-color:#aaa;border:1px solid #919191}.choices__list--dropdown{visibility:hidden;z-index:1;position:absolute;width:100%;background-color:#fff;border:1px solid #ddd;top:100%;margin-top:-1px;border-bottom-left-radius:2.5px;border-bottom-right-radius:2.5px;overflow:hidden;word-break:break-all;will-change:visibility}.choices__list--dropdown.is-active{visibility:visible}.is-open .choices__list--dropdown{border-color:#b7b7b7}.is-flipped .choices__list--dropdown{top:auto;bottom:100%;margin-top:0;margin-bottom:-1px;border-radius:.25rem .25rem 0 0}.choices__list--dropdown .choices__list{position:relative;max-height:300px;overflow:auto;-webkit-overflow-scrolling:touch;will-change:scroll-position}.choices__list--dropdown .choices__item{position:relative;padding:10px;font-size:14px}[dir=rtl] .choices__list--dropdown .choices__item{text-align:right}@media (min-width:640px){.choices__list--dropdown .choices__item--selectable{padding-right:100px}.choices__list--dropdown .choices__item--selectable:after{content:attr(data-select-text);font-size:12px;opacity:0;position:absolute;right:10px;top:50%;transform:translateY(-50%)}[dir=rtl] .choices__list--dropdown .choices__item--selectable{text-align:right;padding-left:100px;padding-right:10px}[dir=rtl] .choices__list--dropdown .choices__item--selectable:after{right:auto;left:10px}}.choices__list--dropdown .choices__item--selectable.is-highlighted{background-color:#f2f2f2}.choices__list--dropdown .choices__item--selectable.is-highlighted:after{opacity:.5}.choices__item{cursor:default}.choices__item--selectable{cursor:pointer}.choices__item--disabled{cursor:not-allowed;-webkit-user-select:none;-ms-user-select:none;user-select:none;opacity:.5}.choices__heading{font-weight:600;font-size:12px;padding:10px;border-bottom:1px solid #f7f7f7;color:gray}.choices__button{text-indent:-9999px;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:0;background-color:transparent;background-repeat:no-repeat;background-position:center;cursor:pointer}.choices__button:focus,.choices__input:focus{outline:0}.choices__input{display:inline-block;vertical-align:baseline;background-color:#f9f9f9;font-size:14px;margin-bottom:5px;border:0;border-radius:0;max-width:100%;padding:4px 0 4px 2px}[dir=rtl] .choices__input{padding-right:2px;padding-left:0}.choices__placeholder{opacity:.5}
\ No newline at end of file
diff --git a/public/js/vendor/choices/choices.min.js b/public/js/vendor/choices/choices.min.js
new file mode 100644
index 0000000..c3eabfa
--- /dev/null
+++ b/public/js/vendor/choices/choices.min.js
@@ -0,0 +1,11 @@
+/*! choices.js v9.0.1 | © 2019 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
+window.Choices=function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="/public/assets/scripts/",i(i.s=4)}([function(e,t,i){"use strict";var n=function(e){return function(e){return!!e&&"object"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return"[object RegExp]"===t||"[object Date]"===t||function(e){return e.$$typeof===s}(e)}(e)};var s="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function r(e,t){return!1!==t.clone&&t.isMergeableObject(e)?l((i=e,Array.isArray(i)?[]:{}),e,t):e;var i}function o(e,t,i){return e.concat(t).map((function(e){return r(e,i)}))}function a(e){return Object.keys(e).concat(function(e){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter((function(t){return e.propertyIsEnumerable(t)})):[]}(e))}function c(e,t,i){var n={};return i.isMergeableObject(e)&&a(e).forEach((function(t){n[t]=r(e[t],i)})),a(t).forEach((function(s){(function(e,t){try{return t in e&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t))}catch(e){return!1}})(e,s)||(i.isMergeableObject(t[s])&&e[s]?n[s]=function(e,t){if(!t.customMerge)return l;var i=t.customMerge(e);return"function"==typeof i?i:l}(s,i)(e[s],t[s],i):n[s]=r(t[s],i))})),n}function l(e,t,i){(i=i||{}).arrayMerge=i.arrayMerge||o,i.isMergeableObject=i.isMergeableObject||n,i.cloneUnlessOtherwiseSpecified=r;var s=Array.isArray(t);return s===Array.isArray(e)?s?i.arrayMerge(e,t,i):c(e,t,i):r(t,i)}l.all=function(e,t){if(!Array.isArray(e))throw new Error("first argument should be an array");return e.reduce((function(e,i){return l(e,i,t)}),{})};var h=l;e.exports=h},function(e,t,i){"use strict";(function(e,n){var s,r=i(3);s="undefined"!=typeof self?self:"undefined"!=typeof window?window:void 0!==e?e:n;var o=Object(r.a)(s);t.a=o}).call(this,i(5),i(6)(e))},function(e,t,i){
+/*!
+ * Fuse.js v3.4.5 - Lightweight fuzzy-search (http://fusejs.io)
+ * 
+ * Copyright (c) 2012-2017 Kirollos Risk (http://kiro.me)
+ * All Rights Reserved. Apache Software License 2.0
+ * 
+ * http://www.apache.org/licenses/LICENSE-2.0
+ */
+e.exports=function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="",i(i.s=1)}([function(e,t){e.exports=function(e){return Array.isArray?Array.isArray(e):"[object Array]"===Object.prototype.toString.call(e)}},function(e,t,i){function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function s(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var r=i(2),o=i(8),a=i(0),c=function(){function e(t,i){var n=i.location,s=void 0===n?0:n,r=i.distance,a=void 0===r?100:r,c=i.threshold,l=void 0===c?.6:c,h=i.maxPatternLength,u=void 0===h?32:h,d=i.caseSensitive,p=void 0!==d&&d,m=i.tokenSeparator,f=void 0===m?/ +/g:m,v=i.findAllMatches,g=void 0!==v&&v,_=i.minMatchCharLength,b=void 0===_?1:_,y=i.id,E=void 0===y?null:y,I=i.keys,S=void 0===I?[]:I,w=i.shouldSort,O=void 0===w||w,C=i.getFn,A=void 0===C?o:C,L=i.sortFn,T=void 0===L?function(e,t){return e.score-t.score}:L,x=i.tokenize,k=void 0!==x&&x,P=i.matchAllTokens,D=void 0!==P&&P,M=i.includeMatches,N=void 0!==M&&M,F=i.includeScore,j=void 0!==F&&F,K=i.verbose,R=void 0!==K&&K;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.options={location:s,distance:a,threshold:l,maxPatternLength:u,isCaseSensitive:p,tokenSeparator:f,findAllMatches:g,minMatchCharLength:b,id:E,keys:S,includeMatches:N,includeScore:j,shouldSort:O,getFn:A,sortFn:T,verbose:R,tokenize:k,matchAllTokens:D},this.setCollection(t)}var t,i;return t=e,(i=[{key:"setCollection",value:function(e){return this.list=e,e}},{key:"search",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{limit:!1};this._log('---------\nSearch pattern: "'.concat(e,'"'));var i=this._prepareSearchers(e),n=i.tokenSearchers,s=i.fullSearcher,r=this._search(n,s),o=r.weights,a=r.results;return this._computeScore(o,a),this.options.shouldSort&&this._sort(a),t.limit&&"number"==typeof t.limit&&(a=a.slice(0,t.limit)),this._format(a)}},{key:"_prepareSearchers",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=[];if(this.options.tokenize)for(var i=e.split(this.options.tokenSeparator),n=0,s=i.length;n<s;n+=1)t.push(new r(i[n],this.options));return{tokenSearchers:t,fullSearcher:new r(e,this.options)}}},{key:"_search",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0,i=this.list,n={},s=[];if("string"==typeof i[0]){for(var r=0,o=i.length;r<o;r+=1)this._analyze({key:"",value:i[r],record:r,index:r},{resultMap:n,results:s,tokenSearchers:e,fullSearcher:t});return{weights:null,results:s}}for(var a={},c=0,l=i.length;c<l;c+=1)for(var h=i[c],u=0,d=this.options.keys.length;u<d;u+=1){var p=this.options.keys[u];if("string"!=typeof p){if(a[p.name]={weight:1-p.weight||1},p.weight<=0||p.weight>1)throw new Error("Key weight has to be > 0 and <= 1");p=p.name}else a[p]={weight:1};this._analyze({key:p,value:this.options.getFn(h,p),record:h,index:c},{resultMap:n,results:s,tokenSearchers:e,fullSearcher:t})}return{weights:a,results:s}}},{key:"_analyze",value:function(e,t){var i=e.key,n=e.arrayIndex,s=void 0===n?-1:n,r=e.value,o=e.record,c=e.index,l=t.tokenSearchers,h=void 0===l?[]:l,u=t.fullSearcher,d=void 0===u?[]:u,p=t.resultMap,m=void 0===p?{}:p,f=t.results,v=void 0===f?[]:f;if(null!=r){var g=!1,_=-1,b=0;if("string"==typeof r){this._log("\nKey: ".concat(""===i?"-":i));var y=d.search(r);if(this._log('Full text: "'.concat(r,'", score: ').concat(y.score)),this.options.tokenize){for(var E=r.split(this.options.tokenSeparator),I=[],S=0;S<h.length;S+=1){var w=h[S];this._log('\nPattern: "'.concat(w.pattern,'"'));for(var O=!1,C=0;C<E.length;C+=1){var A=E[C],L=w.search(A),T={};L.isMatch?(T[A]=L.score,g=!0,O=!0,I.push(L.score)):(T[A]=1,this.options.matchAllTokens||I.push(1)),this._log('Token: "'.concat(A,'", score: ').concat(T[A]))}O&&(b+=1)}_=I[0];for(var x=I.length,k=1;k<x;k+=1)_+=I[k];_/=x,this._log("Token score average:",_)}var P=y.score;_>-1&&(P=(P+_)/2),this._log("Score average:",P);var D=!this.options.tokenize||!this.options.matchAllTokens||b>=h.length;if(this._log("\nCheck Matches: ".concat(D)),(g||y.isMatch)&&D){var M=m[c];M?M.output.push({key:i,arrayIndex:s,value:r,score:P,matchedIndices:y.matchedIndices}):(m[c]={item:o,output:[{key:i,arrayIndex:s,value:r,score:P,matchedIndices:y.matchedIndices}]},v.push(m[c]))}}else if(a(r))for(var N=0,F=r.length;N<F;N+=1)this._analyze({key:i,arrayIndex:N,value:r[N],record:o,index:c},{resultMap:m,results:v,tokenSearchers:h,fullSearcher:d})}}},{key:"_computeScore",value:function(e,t){this._log("\n\nComputing score:\n");for(var i=0,n=t.length;i<n;i+=1){for(var s=t[i].output,r=s.length,o=1,a=1,c=0;c<r;c+=1){var l=e?e[s[c].key].weight:1,h=(1===l?s[c].score:s[c].score||.001)*l;1!==l?a=Math.min(a,h):(s[c].nScore=h,o*=h)}t[i].score=1===a?o:a,this._log(t[i])}}},{key:"_sort",value:function(e){this._log("\n\nSorting...."),e.sort(this.options.sortFn)}},{key:"_format",value:function(e){var t=[];if(this.options.verbose){var i=[];this._log("\n\nOutput:\n\n",JSON.stringify(e,(function(e,t){if("object"===n(t)&&null!==t){if(-1!==i.indexOf(t))return;i.push(t)}return t}))),i=null}var s=[];this.options.includeMatches&&s.push((function(e,t){var i=e.output;t.matches=[];for(var n=0,s=i.length;n<s;n+=1){var r=i[n];if(0!==r.matchedIndices.length){var o={indices:r.matchedIndices,value:r.value};r.key&&(o.key=r.key),r.hasOwnProperty("arrayIndex")&&r.arrayIndex>-1&&(o.arrayIndex=r.arrayIndex),t.matches.push(o)}}})),this.options.includeScore&&s.push((function(e,t){t.score=e.score}));for(var r=0,o=e.length;r<o;r+=1){var a=e[r];if(this.options.id&&(a.item=this.options.getFn(a.item,this.options.id)[0]),s.length){for(var c={item:a.item},l=0,h=s.length;l<h;l+=1)s[l](a,c);t.push(c)}else t.push(a.item)}return t}},{key:"_log",value:function(){var e;this.options.verbose&&(e=console).log.apply(e,arguments)}}])&&s(t.prototype,i),e}();e.exports=c},function(e,t,i){function n(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var s=i(3),r=i(4),o=i(7),a=function(){function e(t,i){var n=i.location,s=void 0===n?0:n,r=i.distance,a=void 0===r?100:r,c=i.threshold,l=void 0===c?.6:c,h=i.maxPatternLength,u=void 0===h?32:h,d=i.isCaseSensitive,p=void 0!==d&&d,m=i.tokenSeparator,f=void 0===m?/ +/g:m,v=i.findAllMatches,g=void 0!==v&&v,_=i.minMatchCharLength,b=void 0===_?1:_;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.options={location:s,distance:a,threshold:l,maxPatternLength:u,isCaseSensitive:p,tokenSeparator:f,findAllMatches:g,minMatchCharLength:b},this.pattern=this.options.isCaseSensitive?t:t.toLowerCase(),this.pattern.length<=u&&(this.patternAlphabet=o(this.pattern))}var t,i;return t=e,(i=[{key:"search",value:function(e){if(this.options.isCaseSensitive||(e=e.toLowerCase()),this.pattern===e)return{isMatch:!0,score:0,matchedIndices:[[0,e.length-1]]};var t=this.options,i=t.maxPatternLength,n=t.tokenSeparator;if(this.pattern.length>i)return s(e,this.pattern,n);var o=this.options,a=o.location,c=o.distance,l=o.threshold,h=o.findAllMatches,u=o.minMatchCharLength;return r(e,this.pattern,this.patternAlphabet,{location:a,distance:c,threshold:l,findAllMatches:h,minMatchCharLength:u})}}])&&n(t.prototype,i),e}();e.exports=a},function(e,t){var i=/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g;e.exports=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:/ +/g,s=new RegExp(t.replace(i,"\\$&").replace(n,"|")),r=e.match(s),o=!!r,a=[];if(o)for(var c=0,l=r.length;c<l;c+=1){var h=r[c];a.push([e.indexOf(h),h.length-1])}return{score:o?.5:1,isMatch:o,matchedIndices:a}}},function(e,t,i){var n=i(5),s=i(6);e.exports=function(e,t,i,r){for(var o=r.location,a=void 0===o?0:o,c=r.distance,l=void 0===c?100:c,h=r.threshold,u=void 0===h?.6:h,d=r.findAllMatches,p=void 0!==d&&d,m=r.minMatchCharLength,f=void 0===m?1:m,v=a,g=e.length,_=u,b=e.indexOf(t,v),y=t.length,E=[],I=0;I<g;I+=1)E[I]=0;if(-1!==b){var S=n(t,{errors:0,currentLocation:b,expectedLocation:v,distance:l});if(_=Math.min(S,_),-1!==(b=e.lastIndexOf(t,v+y))){var w=n(t,{errors:0,currentLocation:b,expectedLocation:v,distance:l});_=Math.min(w,_)}}b=-1;for(var O=[],C=1,A=y+g,L=1<<y-1,T=0;T<y;T+=1){for(var x=0,k=A;x<k;)n(t,{errors:T,currentLocation:v+k,expectedLocation:v,distance:l})<=_?x=k:A=k,k=Math.floor((A-x)/2+x);A=k;var P=Math.max(1,v-k+1),D=p?g:Math.min(v+k,g)+y,M=Array(D+2);M[D+1]=(1<<T)-1;for(var N=D;N>=P;N-=1){var F=N-1,j=i[e.charAt(F)];if(j&&(E[F]=1),M[N]=(M[N+1]<<1|1)&j,0!==T&&(M[N]|=(O[N+1]|O[N])<<1|1|O[N+1]),M[N]&L&&(C=n(t,{errors:T,currentLocation:F,expectedLocation:v,distance:l}))<=_){if(_=C,(b=F)<=v)break;P=Math.max(1,2*v-b)}}if(n(t,{errors:T+1,currentLocation:v,expectedLocation:v,distance:l})>_)break;O=M}return{isMatch:b>=0,score:0===C?.001:C,matchedIndices:s(E,f)}}},function(e,t){e.exports=function(e,t){var i=t.errors,n=void 0===i?0:i,s=t.currentLocation,r=void 0===s?0:s,o=t.expectedLocation,a=void 0===o?0:o,c=t.distance,l=void 0===c?100:c,h=n/e.length,u=Math.abs(a-r);return l?h+u/l:u?1:h}},function(e,t){e.exports=function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,i=[],n=-1,s=-1,r=0,o=e.length;r<o;r+=1){var a=e[r];a&&-1===n?n=r:a||-1===n||((s=r-1)-n+1>=t&&i.push([n,s]),n=-1)}return e[r-1]&&r-n>=t&&i.push([n,r-1]),i}},function(e,t){e.exports=function(e){for(var t={},i=e.length,n=0;n<i;n+=1)t[e.charAt(n)]=0;for(var s=0;s<i;s+=1)t[e.charAt(s)]|=1<<i-s-1;return t}},function(e,t,i){var n=i(0);e.exports=function(e,t){return function e(t,i,s){if(i){var r=i.indexOf("."),o=i,a=null;-1!==r&&(o=i.slice(0,r),a=i.slice(r+1));var c=t[o];if(null!=c)if(a||"string"!=typeof c&&"number"!=typeof c)if(n(c))for(var l=0,h=c.length;l<h;l+=1)e(c[l],a,s);else a&&e(c,a,s);else s.push(c.toString())}else s.push(t);return s}(e,t,[])}}])},function(e,t,i){"use strict";function n(e){var t,i=e.Symbol;return"function"==typeof i?i.observable?t=i.observable:(t=i("observable"),i.observable=t):t="@@observable",t}i.d(t,"a",(function(){return n}))},function(e,t,i){e.exports=i(7)},function(e,t){var i;i=function(){return this}();try{i=i||new Function("return this")()}catch(e){"object"==typeof window&&(i=window)}e.exports=i},function(e,t){e.exports=function(e){if(!e.webpackPolyfill){var t=Object.create(e);t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),Object.defineProperty(t,"exports",{enumerable:!0}),t.webpackPolyfill=1}return t}},function(e,t,i){"use strict";i.r(t);var n=i(2),s=i.n(n),r=i(0),o=i.n(r),a=i(1),c=function(){return Math.random().toString(36).substring(7).split("").join(".")},l={INIT:"@@redux/INIT"+c(),REPLACE:"@@redux/REPLACE"+c(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+c()}};function h(e){if("object"!=typeof e||null===e)return!1;for(var t=e;null!==Object.getPrototypeOf(t);)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t}function u(e,t,i){var n;if("function"==typeof t&&"function"==typeof i||"function"==typeof i&&"function"==typeof arguments[3])throw new Error("It looks like you are passing several store enhancers to createStore(). This is not supported. Instead, compose them together to a single function.");if("function"==typeof t&&void 0===i&&(i=t,t=void 0),void 0!==i){if("function"!=typeof i)throw new Error("Expected the enhancer to be a function.");return i(u)(e,t)}if("function"!=typeof e)throw new Error("Expected the reducer to be a function.");var s=e,r=t,o=[],c=o,d=!1;function p(){c===o&&(c=o.slice())}function m(){if(d)throw new Error("You may not call store.getState() while the reducer is executing. The reducer has already received the state as an argument. Pass it down from the top reducer instead of reading it from the store.");return r}function f(e){if("function"!=typeof e)throw new Error("Expected the listener to be a function.");if(d)throw new Error("You may not call store.subscribe() while the reducer is executing. If you would like to be notified after the store has been updated, subscribe from a component and invoke store.getState() in the callback to access the latest state. See https://redux.js.org/api-reference/store#subscribe(listener) for more details.");var t=!0;return p(),c.push(e),function(){if(t){if(d)throw new Error("You may not unsubscribe from a store listener while the reducer is executing. See https://redux.js.org/api-reference/store#subscribe(listener) for more details.");t=!1,p();var i=c.indexOf(e);c.splice(i,1)}}}function v(e){if(!h(e))throw new Error("Actions must be plain objects. Use custom middleware for async actions.");if(void 0===e.type)throw new Error('Actions may not have an undefined "type" property. Have you misspelled a constant?');if(d)throw new Error("Reducers may not dispatch actions.");try{d=!0,r=s(r,e)}finally{d=!1}for(var t=o=c,i=0;i<t.length;i++){(0,t[i])()}return e}return v({type:l.INIT}),(n={dispatch:v,subscribe:f,getState:m,replaceReducer:function(e){if("function"!=typeof e)throw new Error("Expected the nextReducer to be a function.");s=e,v({type:l.REPLACE})}})[a.a]=function(){var e,t=f;return(e={subscribe:function(e){if("object"!=typeof e||null===e)throw new TypeError("Expected the observer to be an object.");function i(){e.next&&e.next(m())}return i(),{unsubscribe:t(i)}}})[a.a]=function(){return this},e},n}function d(e,t){var i=t&&t.type;return"Given "+(i&&'action "'+String(i)+'"'||"an action")+', reducer "'+e+'" returned undefined. To ignore an action, you must explicitly return the previous state. If you want this reducer to hold no value, you can return null instead of undefined.'}var p=[];var m=[];var f=[];var v,g={loading:!1},_=function(e,t){switch(void 0===e&&(e=g),t.type){case"SET_IS_LOADING":return{loading:t.isLoading};default:return e}},b=function(e){return Array.from({length:e},(function(){return(e=0,t=36,Math.floor(Math.random()*(t-e)+e)).toString(36);var e,t})).join("")},y=function(e,t){var i=e.id||e.name&&e.name+"-"+b(2)||b(4);return i=t+"-"+(i=i.replace(/(:|\.|\[|\]|,)/g,""))},E=function(e){return Object.prototype.toString.call(e).slice(8,-1)},I=function(e,t){return null!=t&&E(t)===e},S=function(e){return"string"!=typeof e?e:e.replace(/&/g,"&amp;").replace(/>/g,"&rt;").replace(/</g,"&lt;").replace(/"/g,"&quot;")},w=(v=document.createElement("div"),function(e){var t=e.trim();v.innerHTML=t;for(var i=v.children[0];v.firstChild;)v.removeChild(v.firstChild);return i}),O=function(e,t){return e.score-t.score},C=function(e){return JSON.parse(JSON.stringify(e))},A=function(e,t){var i=Object.keys(e).sort(),n=Object.keys(t).sort();return i.filter((function(e){return n.indexOf(e)<0}))},L=function(e){for(var t=Object.keys(e),i={},n=0;n<t.length;n++){var s=t[n];0,"function"==typeof e[s]&&(i[s]=e[s])}var r,o=Object.keys(i);try{!function(e){Object.keys(e).forEach((function(t){var i=e[t];if(void 0===i(void 0,{type:l.INIT}))throw new Error('Reducer "'+t+"\" returned undefined during initialization. If the state passed to the reducer is undefined, you must explicitly return the initial state. The initial state may not be undefined. If you don't want to set a value for this reducer, you can use null instead of undefined.");if(void 0===i(void 0,{type:l.PROBE_UNKNOWN_ACTION()}))throw new Error('Reducer "'+t+"\" returned undefined when probed with a random type. Don't try to handle "+l.INIT+' or other actions in "redux/*" namespace. They are considered private. Instead, you must return the current state for any unknown actions, unless it is undefined, in which case you must return the initial state, regardless of the action type. The initial state may not be undefined, but can be null.')}))}(i)}catch(e){r=e}return function(e,t){if(void 0===e&&(e={}),r)throw r;for(var n=!1,s={},a=0;a<o.length;a++){var c=o[a],l=i[c],h=e[c],u=l(h,t);if(void 0===u){var p=d(c,t);throw new Error(p)}s[c]=u,n=n||u!==h}return n?s:e}}({items:function(e,t){switch(void 0===e&&(e=p),t.type){case"ADD_ITEM":return[].concat(e,[{id:t.id,choiceId:t.choiceId,groupId:t.groupId,value:t.value,label:t.label,active:!0,highlighted:!1,customProperties:t.customProperties,placeholder:t.placeholder||!1,keyCode:null}]).map((function(e){var t=e;return t.highlighted=!1,t}));case"REMOVE_ITEM":return e.map((function(e){var i=e;return i.id===t.id&&(i.active=!1),i}));case"HIGHLIGHT_ITEM":return e.map((function(e){var i=e;return i.id===t.id&&(i.highlighted=t.highlighted),i}));default:return e}},groups:function(e,t){switch(void 0===e&&(e=m),t.type){case"ADD_GROUP":return[].concat(e,[{id:t.id,value:t.value,active:t.active,disabled:t.disabled}]);case"CLEAR_CHOICES":return[];default:return e}},choices:function(e,t){switch(void 0===e&&(e=f),t.type){case"ADD_CHOICE":return[].concat(e,[{id:t.id,elementId:t.elementId,groupId:t.groupId,value:t.value,label:t.label||t.value,disabled:t.disabled||!1,selected:!1,active:!0,score:9999,customProperties:t.customProperties,placeholder:t.placeholder||!1,keyCode:null}]);case"ADD_ITEM":return t.activateOptions?e.map((function(e){var i=e;return i.active=t.active,i})):t.choiceId>-1?e.map((function(e){var i=e;return i.id===parseInt(t.choiceId,10)&&(i.selected=!0),i})):e;case"REMOVE_ITEM":return t.choiceId>-1?e.map((function(e){var i=e;return i.id===parseInt(t.choiceId,10)&&(i.selected=!1),i})):e;case"FILTER_CHOICES":return e.map((function(e){var i=e;return i.active=t.results.some((function(e){var t=e.item,n=e.score;return t.id===i.id&&(i.score=n,!0)})),i}));case"ACTIVATE_CHOICES":return e.map((function(e){var i=e;return i.active=t.active,i}));case"CLEAR_CHOICES":return f;default:return e}},general:_}),T=function(e,t){var i=e;if("CLEAR_ALL"===t.type)i=void 0;else if("RESET_TO"===t.type)return C(t.state);return L(i,t)};function x(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var k=function(){function e(){this._store=u(T,window.__REDUX_DEVTOOLS_EXTENSION__&&window.__REDUX_DEVTOOLS_EXTENSION__())}var t,i,n,s=e.prototype;return s.subscribe=function(e){this._store.subscribe(e)},s.dispatch=function(e){this._store.dispatch(e)},s.isLoading=function(){return this.state.general.loading},s.getChoiceById=function(e){return this.activeChoices.find((function(t){return t.id===parseInt(e,10)}))},s.getGroupById=function(e){return this.groups.find((function(t){return t.id===e}))},t=e,(i=[{key:"state",get:function(){return this._store.getState()}},{key:"items",get:function(){return this.state.items}},{key:"activeItems",get:function(){return this.items.filter((function(e){return!0===e.active}))}},{key:"highlightedActiveItems",get:function(){return this.items.filter((function(e){return e.active&&e.highlighted}))}},{key:"choices",get:function(){return this.state.choices}},{key:"activeChoices",get:function(){return this.choices.filter((function(e){return!0===e.active}))}},{key:"selectableChoices",get:function(){return this.choices.filter((function(e){return!0!==e.disabled}))}},{key:"searchableChoices",get:function(){return this.selectableChoices.filter((function(e){return!0!==e.placeholder}))}},{key:"placeholderChoice",get:function(){return[].concat(this.choices).reverse().find((function(e){return!0===e.placeholder}))}},{key:"groups",get:function(){return this.state.groups}},{key:"activeGroups",get:function(){var e=this.groups,t=this.choices;return e.filter((function(e){var i=!0===e.active&&!1===e.disabled,n=t.some((function(e){return!0===e.active&&!1===e.disabled}));return i&&n}),[])}}])&&x(t.prototype,i),n&&x(t,n),e}();function P(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var D=function(){function e(e){var t=e.element,i=e.type,n=e.classNames;this.element=t,this.classNames=n,this.type=i,this.isActive=!1}var t,i,n,s=e.prototype;return s.getChild=function(e){return this.element.querySelector(e)},s.show=function(){return this.element.classList.add(this.classNames.activeState),this.element.setAttribute("aria-expanded","true"),this.isActive=!0,this},s.hide=function(){return this.element.classList.remove(this.classNames.activeState),this.element.setAttribute("aria-expanded","false"),this.isActive=!1,this},t=e,(i=[{key:"distanceFromTopWindow",get:function(){return this.element.getBoundingClientRect().bottom}}])&&P(t.prototype,i),n&&P(t,n),e}(),M={items:[],choices:[],silent:!1,renderChoiceLimit:-1,maxItemCount:-1,addItems:!0,addItemFilter:null,removeItems:!0,removeItemButton:!1,editItems:!1,duplicateItemsAllowed:!0,delimiter:",",paste:!0,searchEnabled:!0,searchChoices:!0,searchFloor:1,searchResultLimit:4,searchFields:["label","value"],position:"auto",resetScrollPosition:!0,shouldSort:!0,shouldSortItems:!1,sorter:function(e,t){var i=e.value,n=e.label,s=void 0===n?i:n,r=t.value,o=t.label,a=void 0===o?r:o;return s.localeCompare(a,[],{sensitivity:"base",ignorePunctuation:!0,numeric:!0})},placeholder:!0,placeholderValue:null,searchPlaceholderValue:null,prependValue:null,appendValue:null,renderSelectedChoices:"auto",loadingText:"Loading...",noResultsText:"No results found",noChoicesText:"No choices to choose from",itemSelectText:"Press to select",uniqueItemText:"Only unique values can be added",customAddItemText:"Only values matching specific conditions can be added",addItemText:function(e){return'Press Enter to add <b>"'+S(e)+'"</b>'},maxItemText:function(e){return"Only "+e+" values can be added"},valueComparer:function(e,t){return e===t},fuseOptions:{includeScore:!0},callbackOnInit:null,callbackOnCreateTemplates:null,classNames:{containerOuter:"choices",containerInner:"choices__inner",input:"choices__input",inputCloned:"choices__input--cloned",list:"choices__list",listItems:"choices__list--multiple",listSingle:"choices__list--single",listDropdown:"choices__list--dropdown",item:"choices__item",itemSelectable:"choices__item--selectable",itemDisabled:"choices__item--disabled",itemChoice:"choices__item--choice",placeholder:"choices__placeholder",group:"choices__group",groupHeading:"choices__heading",button:"choices__button",activeState:"is-active",focusState:"is-focused",openState:"is-open",disabledState:"is-disabled",highlightedState:"is-highlighted",selectedState:"is-selected",flippedState:"is-flipped",loadingState:"is-loading",noResults:"has-no-results",noChoices:"has-no-choices"}},N="showDropdown",F="hideDropdown",j="change",K="choice",R="search",H="addItem",B="removeItem",V="highlightItem",G="highlightChoice",q="ADD_CHOICE",U="FILTER_CHOICES",z="ACTIVATE_CHOICES",W="CLEAR_CHOICES",X="ADD_GROUP",$="ADD_ITEM",J="REMOVE_ITEM",Y="HIGHLIGHT_ITEM",Z=46,Q=8,ee=13,te=65,ie=27,ne=38,se=40,re=33,oe=34,ae="text",ce="select-one",le="select-multiple",he=function(){function e(e){var t=e.element,i=e.type,n=e.classNames,s=e.position;this.element=t,this.classNames=n,this.type=i,this.position=s,this.isOpen=!1,this.isFlipped=!1,this.isFocussed=!1,this.isDisabled=!1,this.isLoading=!1,this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this)}var t=e.prototype;return t.addEventListeners=function(){this.element.addEventListener("focus",this._onFocus),this.element.addEventListener("blur",this._onBlur)},t.removeEventListeners=function(){this.element.removeEventListener("focus",this._onFocus),this.element.removeEventListener("blur",this._onBlur)},t.shouldFlip=function(e){if("number"!=typeof e)return!1;var t=!1;return"auto"===this.position?t=!window.matchMedia("(min-height: "+(e+1)+"px)").matches:"top"===this.position&&(t=!0),t},t.setActiveDescendant=function(e){this.element.setAttribute("aria-activedescendant",e)},t.removeActiveDescendant=function(){this.element.removeAttribute("aria-activedescendant")},t.open=function(e){this.element.classList.add(this.classNames.openState),this.element.setAttribute("aria-expanded","true"),this.isOpen=!0,this.shouldFlip(e)&&(this.element.classList.add(this.classNames.flippedState),this.isFlipped=!0)},t.close=function(){this.element.classList.remove(this.classNames.openState),this.element.setAttribute("aria-expanded","false"),this.removeActiveDescendant(),this.isOpen=!1,this.isFlipped&&(this.element.classList.remove(this.classNames.flippedState),this.isFlipped=!1)},t.focus=function(){this.isFocussed||this.element.focus()},t.addFocusState=function(){this.element.classList.add(this.classNames.focusState)},t.removeFocusState=function(){this.element.classList.remove(this.classNames.focusState)},t.enable=function(){this.element.classList.remove(this.classNames.disabledState),this.element.removeAttribute("aria-disabled"),this.type===ce&&this.element.setAttribute("tabindex","0"),this.isDisabled=!1},t.disable=function(){this.element.classList.add(this.classNames.disabledState),this.element.setAttribute("aria-disabled","true"),this.type===ce&&this.element.setAttribute("tabindex","-1"),this.isDisabled=!0},t.wrap=function(e){!function(e,t){void 0===t&&(t=document.createElement("div")),e.nextSibling?e.parentNode.insertBefore(t,e.nextSibling):e.parentNode.appendChild(t),t.appendChild(e)}(e,this.element)},t.unwrap=function(e){this.element.parentNode.insertBefore(e,this.element),this.element.parentNode.removeChild(this.element)},t.addLoadingState=function(){this.element.classList.add(this.classNames.loadingState),this.element.setAttribute("aria-busy","true"),this.isLoading=!0},t.removeLoadingState=function(){this.element.classList.remove(this.classNames.loadingState),this.element.removeAttribute("aria-busy"),this.isLoading=!1},t._onFocus=function(){this.isFocussed=!0},t._onBlur=function(){this.isFocussed=!1},e}();function ue(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var de=function(){function e(e){var t=e.element,i=e.type,n=e.classNames,s=e.preventPaste;this.element=t,this.type=i,this.classNames=n,this.preventPaste=s,this.isFocussed=this.element===document.activeElement,this.isDisabled=t.disabled,this._onPaste=this._onPaste.bind(this),this._onInput=this._onInput.bind(this),this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this)}var t,i,n,s=e.prototype;return s.addEventListeners=function(){this.element.addEventListener("paste",this._onPaste),this.element.addEventListener("input",this._onInput,{passive:!0}),this.element.addEventListener("focus",this._onFocus,{passive:!0}),this.element.addEventListener("blur",this._onBlur,{passive:!0})},s.removeEventListeners=function(){this.element.removeEventListener("input",this._onInput,{passive:!0}),this.element.removeEventListener("paste",this._onPaste),this.element.removeEventListener("focus",this._onFocus,{passive:!0}),this.element.removeEventListener("blur",this._onBlur,{passive:!0})},s.enable=function(){this.element.removeAttribute("disabled"),this.isDisabled=!1},s.disable=function(){this.element.setAttribute("disabled",""),this.isDisabled=!0},s.focus=function(){this.isFocussed||this.element.focus()},s.blur=function(){this.isFocussed&&this.element.blur()},s.clear=function(e){return void 0===e&&(e=!0),this.element.value&&(this.element.value=""),e&&this.setWidth(),this},s.setWidth=function(){var e=this.element,t=e.style,i=e.value,n=e.placeholder;t.minWidth=n.length+1+"ch",t.width=i.length+1+"ch"},s.setActiveDescendant=function(e){this.element.setAttribute("aria-activedescendant",e)},s.removeActiveDescendant=function(){this.element.removeAttribute("aria-activedescendant")},s._onInput=function(){this.type!==ce&&this.setWidth()},s._onPaste=function(e){this.preventPaste&&e.preventDefault()},s._onFocus=function(){this.isFocussed=!0},s._onBlur=function(){this.isFocussed=!1},t=e,(i=[{key:"placeholder",set:function(e){this.element.placeholder=e}},{key:"value",get:function(){return S(this.element.value)},set:function(e){this.element.value=e}}])&&ue(t.prototype,i),n&&ue(t,n),e}(),pe=function(){function e(e){var t=e.element;this.element=t,this.scrollPos=this.element.scrollTop,this.height=this.element.offsetHeight}var t=e.prototype;return t.clear=function(){this.element.innerHTML=""},t.append=function(e){this.element.appendChild(e)},t.getChild=function(e){return this.element.querySelector(e)},t.hasChildren=function(){return this.element.hasChildNodes()},t.scrollToTop=function(){this.element.scrollTop=0},t.scrollToChildElement=function(e,t){var i=this;if(e){var n=this.element.offsetHeight,s=this.element.scrollTop+n,r=e.offsetHeight,o=e.offsetTop+r,a=t>0?this.element.scrollTop+o-s:e.offsetTop;requestAnimationFrame((function(){i._animateScroll(a,t)}))}},t._scrollDown=function(e,t,i){var n=(i-e)/t,s=n>1?n:1;this.element.scrollTop=e+s},t._scrollUp=function(e,t,i){var n=(e-i)/t,s=n>1?n:1;this.element.scrollTop=e-s},t._animateScroll=function(e,t){var i=this,n=this.element.scrollTop,s=!1;t>0?(this._scrollDown(n,4,e),n<e&&(s=!0)):(this._scrollUp(n,4,e),n>e&&(s=!0)),s&&requestAnimationFrame((function(){i._animateScroll(e,t)}))},e}();function me(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var fe=function(){function e(e){var t=e.element,i=e.classNames;if(this.element=t,this.classNames=i,!(t instanceof HTMLInputElement||t instanceof HTMLSelectElement))throw new TypeError("Invalid element passed");this.isDisabled=!1}var t,i,n,s=e.prototype;return s.conceal=function(){this.element.classList.add(this.classNames.input),this.element.hidden=!0,this.element.tabIndex=-1;var e=this.element.getAttribute("style");e&&this.element.setAttribute("data-choice-orig-style",e),this.element.setAttribute("data-choice","active")},s.reveal=function(){this.element.classList.remove(this.classNames.input),this.element.hidden=!1,this.element.removeAttribute("tabindex");var e=this.element.getAttribute("data-choice-orig-style");e?(this.element.removeAttribute("data-choice-orig-style"),this.element.setAttribute("style",e)):this.element.removeAttribute("style"),this.element.removeAttribute("data-choice"),this.element.value=this.element.value},s.enable=function(){this.element.removeAttribute("disabled"),this.element.disabled=!1,this.isDisabled=!1},s.disable=function(){this.element.setAttribute("disabled",""),this.element.disabled=!0,this.isDisabled=!0},s.triggerEvent=function(e,t){!function(e,t,i){void 0===i&&(i=null);var n=new CustomEvent(t,{detail:i,bubbles:!0,cancelable:!0});e.dispatchEvent(n)}(this.element,e,t)},t=e,(i=[{key:"isActive",get:function(){return"active"===this.element.dataset.choice}},{key:"dir",get:function(){return this.element.dir}},{key:"value",get:function(){return this.element.value},set:function(e){this.element.value=e}}])&&me(t.prototype,i),n&&me(t,n),e}();function ve(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var ge=function(e){var t,i,n,s,r;function o(t){var i,n=t.element,s=t.classNames,r=t.delimiter;return(i=e.call(this,{element:n,classNames:s})||this).delimiter=r,i}return i=e,(t=o).prototype=Object.create(i.prototype),t.prototype.constructor=t,t.__proto__=i,n=o,(s=[{key:"value",get:function(){return this.element.value},set:function(e){var t=e.map((function(e){return e.value})).join(this.delimiter);this.element.setAttribute("value",t),this.element.value=t}}])&&ve(n.prototype,s),r&&ve(n,r),o}(fe);function _e(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var be=function(e){var t,i,n,s,r;function o(t){var i,n=t.element,s=t.classNames,r=t.template;return(i=e.call(this,{element:n,classNames:s})||this).template=r,i}return i=e,(t=o).prototype=Object.create(i.prototype),t.prototype.constructor=t,t.__proto__=i,o.prototype.appendDocFragment=function(e){this.element.innerHTML="",this.element.appendChild(e)},n=o,(s=[{key:"placeholderOption",get:function(){return this.element.querySelector('option[value=""]')||this.element.querySelector("option[placeholder]")}},{key:"optionGroups",get:function(){return Array.from(this.element.getElementsByTagName("OPTGROUP"))}},{key:"options",get:function(){return Array.from(this.element.options)},set:function(e){var t=this,i=document.createDocumentFragment();e.forEach((function(e){return n=e,s=t.template(n),void i.appendChild(s);var n,s})),this.appendDocFragment(i)}}])&&_e(n.prototype,s),r&&_e(n,r),o}(fe),ye={containerOuter:function(e,t,i,n,s,r){var o=e.containerOuter,a=Object.assign(document.createElement("div"),{className:o});return a.dataset.type=r,t&&(a.dir=t),n&&(a.tabIndex=0),i&&(a.setAttribute("role",s?"combobox":"listbox"),s&&a.setAttribute("aria-autocomplete","list")),a.setAttribute("aria-haspopup","true"),a.setAttribute("aria-expanded","false"),a},containerInner:function(e){var t=e.containerInner;return Object.assign(document.createElement("div"),{className:t})},itemList:function(e,t){var i=e.list,n=e.listSingle,s=e.listItems;return Object.assign(document.createElement("div"),{className:i+" "+(t?n:s)})},placeholder:function(e,t){var i=e.placeholder;return Object.assign(document.createElement("div"),{className:i,innerHTML:t})},item:function(e,t,i){var n=e.item,s=e.button,r=e.highlightedState,o=e.itemSelectable,a=e.placeholder,c=t.id,l=t.value,h=t.label,u=t.customProperties,d=t.active,p=t.disabled,m=t.highlighted,f=t.placeholder,v=Object.assign(document.createElement("div"),{className:n,innerHTML:h});if(Object.assign(v.dataset,{item:"",id:c,value:l,customProperties:u}),d&&v.setAttribute("aria-selected","true"),p&&v.setAttribute("aria-disabled","true"),f&&v.classList.add(a),v.classList.add(m?r:o),i){p&&v.classList.remove(o),v.dataset.deletable="";var g=Object.assign(document.createElement("button"),{type:"button",className:s,innerHTML:"Remove item"});g.setAttribute("aria-label","Remove item: '"+l+"'"),g.dataset.button="",v.appendChild(g)}return v},choiceList:function(e,t){var i=e.list,n=Object.assign(document.createElement("div"),{className:i});return t||n.setAttribute("aria-multiselectable","true"),n.setAttribute("role","listbox"),n},choiceGroup:function(e,t){var i=e.group,n=e.groupHeading,s=e.itemDisabled,r=t.id,o=t.value,a=t.disabled,c=Object.assign(document.createElement("div"),{className:i+" "+(a?s:"")});return c.setAttribute("role","group"),Object.assign(c.dataset,{group:"",id:r,value:o}),a&&c.setAttribute("aria-disabled","true"),c.appendChild(Object.assign(document.createElement("div"),{className:n,innerHTML:o})),c},choice:function(e,t,i){var n=e.item,s=e.itemChoice,r=e.itemSelectable,o=e.selectedState,a=e.itemDisabled,c=e.placeholder,l=t.id,h=t.value,u=t.label,d=t.groupId,p=t.elementId,m=t.disabled,f=t.selected,v=t.placeholder,g=Object.assign(document.createElement("div"),{id:p,innerHTML:u,className:n+" "+s});return f&&g.classList.add(o),v&&g.classList.add(c),g.setAttribute("role",d>0?"treeitem":"option"),Object.assign(g.dataset,{choice:"",id:l,value:h,selectText:i}),m?(g.classList.add(a),g.dataset.choiceDisabled="",g.setAttribute("aria-disabled","true")):(g.classList.add(r),g.dataset.choiceSelectable=""),g},input:function(e,t){var i=e.input,n=e.inputCloned,s=Object.assign(document.createElement("input"),{type:"text",className:i+" "+n,autocomplete:"off",autocapitalize:"off",spellcheck:!1});return s.setAttribute("role","textbox"),s.setAttribute("aria-autocomplete","list"),s.setAttribute("aria-label",t),s},dropdown:function(e){var t=e.list,i=e.listDropdown,n=document.createElement("div");return n.classList.add(t,i),n.setAttribute("aria-expanded","false"),n},notice:function(e,t,i){var n=e.item,s=e.itemChoice,r=e.noResults,o=e.noChoices;void 0===i&&(i="");var a=[n,s];return"no-choices"===i?a.push(o):"no-results"===i&&a.push(r),Object.assign(document.createElement("div"),{innerHTML:t,className:a.join(" ")})},option:function(e){var t=e.label,i=e.value,n=e.customProperties,s=e.active,r=e.disabled,o=new Option(t,i,!1,s);return n&&(o.dataset.customProperties=n),o.disabled=r,o}},Ee=function(e){return void 0===e&&(e=!0),{type:z,active:e}},Ie=function(e,t){return{type:Y,id:e,highlighted:t}},Se=function(e){var t=e.value,i=e.id,n=e.active,s=e.disabled;return{type:X,value:t,id:i,active:n,disabled:s}},we=function(e){return{type:"SET_IS_LOADING",isLoading:e}};function Oe(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var Ce="-ms-scroll-limit"in document.documentElement.style&&"-ms-ime-align"in document.documentElement.style,Ae={},Le=function(){var e,t,i;function n(e,t){var i=this;void 0===e&&(e="[data-choice]"),void 0===t&&(t={}),this.config=o.a.all([M,n.defaults.options,t],{arrayMerge:function(e,t){return[].concat(t)}});var s=A(this.config,M);s.length&&console.warn("Unknown config option(s) passed",s.join(", "));var r="string"==typeof e?document.querySelector(e):e;if(!(r instanceof HTMLInputElement||r instanceof HTMLSelectElement))throw TypeError("Expected one of the following types text|select-one|select-multiple");if(this._isTextElement=r.type===ae,this._isSelectOneElement=r.type===ce,this._isSelectMultipleElement=r.type===le,this._isSelectElement=this._isSelectOneElement||this._isSelectMultipleElement,this.config.searchEnabled=this._isSelectMultipleElement||this.config.searchEnabled,["auto","always"].includes(this.config.renderSelectedChoices)||(this.config.renderSelectedChoices="auto"),t.addItemFilter&&"function"!=typeof t.addItemFilter){var a=t.addItemFilter instanceof RegExp?t.addItemFilter:new RegExp(t.addItemFilter);this.config.addItemFilter=a.test.bind(a)}if(this._isTextElement?this.passedElement=new ge({element:r,classNames:this.config.classNames,delimiter:this.config.delimiter}):this.passedElement=new be({element:r,classNames:this.config.classNames,template:function(e){return i._templates.option(e)}}),this.initialised=!1,this._store=new k,this._initialState={},this._currentState={},this._prevState={},this._currentValue="",this._canSearch=this.config.searchEnabled,this._isScrollingOnIe=!1,this._highlightPosition=0,this._wasTap=!0,this._placeholderValue=this._generatePlaceholderValue(),this._baseId=y(this.passedElement.element,"choices-"),this._direction=this.passedElement.dir,!this._direction){var c=window.getComputedStyle(this.passedElement.element).direction;c!==window.getComputedStyle(document.documentElement).direction&&(this._direction=c)}if(this._idNames={itemChoice:"item-choice"},this._presetGroups=this.passedElement.optionGroups,this._presetOptions=this.passedElement.options,this._presetChoices=this.config.choices,this._presetItems=this.config.items,this.passedElement.value&&(this._presetItems=this._presetItems.concat(this.passedElement.value.split(this.config.delimiter))),this.passedElement.options&&this.passedElement.options.forEach((function(e){i._presetChoices.push({value:e.value,label:e.innerHTML,selected:e.selected,disabled:e.disabled||e.parentNode.disabled,placeholder:""===e.value||e.hasAttribute("placeholder"),customProperties:e.getAttribute("data-custom-properties")})})),this._render=this._render.bind(this),this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this),this._onKeyUp=this._onKeyUp.bind(this),this._onKeyDown=this._onKeyDown.bind(this),this._onClick=this._onClick.bind(this),this._onTouchMove=this._onTouchMove.bind(this),this._onTouchEnd=this._onTouchEnd.bind(this),this._onMouseDown=this._onMouseDown.bind(this),this._onMouseOver=this._onMouseOver.bind(this),this._onFormReset=this._onFormReset.bind(this),this._onAKey=this._onAKey.bind(this),this._onEnterKey=this._onEnterKey.bind(this),this._onEscapeKey=this._onEscapeKey.bind(this),this._onDirectionKey=this._onDirectionKey.bind(this),this._onDeleteKey=this._onDeleteKey.bind(this),this.passedElement.isActive)return this.config.silent||console.warn("Trying to initialise Choices on element already initialised"),void(this.initialised=!0);this.init()}e=n,i=[{key:"defaults",get:function(){return Object.preventExtensions({get options(){return Ae},get templates(){return ye}})}}],(t=null)&&Oe(e.prototype,t),i&&Oe(e,i);var r=n.prototype;return r.init=function(){if(!this.initialised){this._createTemplates(),this._createElements(),this._createStructure(),this._initialState=C(this._store.state),this._store.subscribe(this._render),this._render(),this._addEventListeners(),(!this.config.addItems||this.passedElement.element.hasAttribute("disabled"))&&this.disable(),this.initialised=!0;var e=this.config.callbackOnInit;e&&"function"==typeof e&&e.call(this)}},r.destroy=function(){this.initialised&&(this._removeEventListeners(),this.passedElement.reveal(),this.containerOuter.unwrap(this.passedElement.element),this.clearStore(),this._isSelectElement&&(this.passedElement.options=this._presetOptions),this._templates=null,this.initialised=!1)},r.enable=function(){return this.passedElement.isDisabled&&this.passedElement.enable(),this.containerOuter.isDisabled&&(this._addEventListeners(),this.input.enable(),this.containerOuter.enable()),this},r.disable=function(){return this.passedElement.isDisabled||this.passedElement.disable(),this.containerOuter.isDisabled||(this._removeEventListeners(),this.input.disable(),this.containerOuter.disable()),this},r.highlightItem=function(e,t){if(void 0===t&&(t=!0),!e)return this;var i=e.id,n=e.groupId,s=void 0===n?-1:n,r=e.value,o=void 0===r?"":r,a=e.label,c=void 0===a?"":a,l=s>=0?this._store.getGroupById(s):null;return this._store.dispatch(Ie(i,!0)),t&&this.passedElement.triggerEvent(V,{id:i,value:o,label:c,groupValue:l&&l.value?l.value:null}),this},r.unhighlightItem=function(e){if(!e)return this;var t=e.id,i=e.groupId,n=void 0===i?-1:i,s=e.value,r=void 0===s?"":s,o=e.label,a=void 0===o?"":o,c=n>=0?this._store.getGroupById(n):null;return this._store.dispatch(Ie(t,!1)),this.passedElement.triggerEvent(V,{id:t,value:r,label:a,groupValue:c&&c.value?c.value:null}),this},r.highlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.highlightItem(t)})),this},r.unhighlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.unhighlightItem(t)})),this},r.removeActiveItemsByValue=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.value===e})).forEach((function(e){return t._removeItem(e)})),this},r.removeActiveItems=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.id!==e})).forEach((function(e){return t._removeItem(e)})),this},r.removeHighlightedItems=function(e){var t=this;return void 0===e&&(e=!1),this._store.highlightedActiveItems.forEach((function(i){t._removeItem(i),e&&t._triggerChange(i.value)})),this},r.showDropdown=function(e){var t=this;return this.dropdown.isActive?this:(requestAnimationFrame((function(){t.dropdown.show(),t.containerOuter.open(t.dropdown.distanceFromTopWindow),!e&&t._canSearch&&t.input.focus(),t.passedElement.triggerEvent(N,{})})),this)},r.hideDropdown=function(e){var t=this;return this.dropdown.isActive?(requestAnimationFrame((function(){t.dropdown.hide(),t.containerOuter.close(),!e&&t._canSearch&&(t.input.removeActiveDescendant(),t.input.blur()),t.passedElement.triggerEvent(F,{})})),this):this},r.getValue=function(e){void 0===e&&(e=!1);var t=this._store.activeItems.reduce((function(t,i){var n=e?i.value:i;return t.push(n),t}),[]);return this._isSelectOneElement?t[0]:t},r.setValue=function(e){var t=this;return this.initialised?(e.forEach((function(e){return t._setChoiceOrItem(e)})),this):this},r.setChoiceByValue=function(e){var t=this;return!this.initialised||this._isTextElement?this:((Array.isArray(e)?e:[e]).forEach((function(e){return t._findAndSelectChoiceByValue(e)})),this)},r.setChoices=function(e,t,i,n){var s=this;if(void 0===e&&(e=[]),void 0===t&&(t="value"),void 0===i&&(i="label"),void 0===n&&(n=!1),!this.initialised)throw new ReferenceError("setChoices was called on a non-initialized instance of Choices");if(!this._isSelectElement)throw new TypeError("setChoices can't be used with INPUT based Choices");if("string"!=typeof t||!t)throw new TypeError("value parameter must be a name of 'value' field in passed objects");if(n&&this.clearChoices(),"function"==typeof e){var r=e(this);if("function"==typeof Promise&&r instanceof Promise)return new Promise((function(e){return requestAnimationFrame(e)})).then((function(){return s._handleLoadingState(!0)})).then((function(){return r})).then((function(e){return s.setChoices(e,t,i,n)})).catch((function(e){s.config.silent||console.error(e)})).then((function(){return s._handleLoadingState(!1)})).then((function(){return s}));if(!Array.isArray(r))throw new TypeError(".setChoices first argument function must return either array of choices or Promise, got: "+typeof r);return this.setChoices(r,t,i,!1)}if(!Array.isArray(e))throw new TypeError(".setChoices must be called either with array of choices with a function resulting into Promise of array of choices");return this.containerOuter.removeLoadingState(),this._startLoading(),e.forEach((function(e){e.choices?s._addGroup({id:parseInt(e.id,10)||null,group:e,valueKey:t,labelKey:i}):s._addChoice({value:e[t],label:e[i],isSelected:e.selected,isDisabled:e.disabled,customProperties:e.customProperties,placeholder:e.placeholder})})),this._stopLoading(),this},r.clearChoices=function(){return this._store.dispatch({type:W}),this},r.clearStore=function(){return this._store.dispatch({type:"CLEAR_ALL"}),this},r.clearInput=function(){var e=!this._isSelectOneElement;return this.input.clear(e),!this._isTextElement&&this._canSearch&&(this._isSearching=!1,this._store.dispatch(Ee(!0))),this},r._render=function(){if(!this._store.isLoading()){this._currentState=this._store.state;var e=this._currentState.choices!==this._prevState.choices||this._currentState.groups!==this._prevState.groups||this._currentState.items!==this._prevState.items,t=this._isSelectElement,i=this._currentState.items!==this._prevState.items;e&&(t&&this._renderChoices(),i&&this._renderItems(),this._prevState=this._currentState)}},r._renderChoices=function(){var e=this,t=this._store,i=t.activeGroups,n=t.activeChoices,s=document.createDocumentFragment();if(this.choiceList.clear(),this.config.resetScrollPosition&&requestAnimationFrame((function(){return e.choiceList.scrollToTop()})),i.length>=1&&!this._isSearching){var r=n.filter((function(e){return!0===e.placeholder&&-1===e.groupId}));r.length>=1&&(s=this._createChoicesFragment(r,s)),s=this._createGroupsFragment(i,n,s)}else n.length>=1&&(s=this._createChoicesFragment(n,s));if(s.childNodes&&s.childNodes.length>0){var o=this._store.activeItems,a=this._canAddItem(o,this.input.value);a.response?(this.choiceList.append(s),this._highlightChoice()):this.choiceList.append(this._getTemplate("notice",a.notice))}else{var c,l;this._isSearching?(l="function"==typeof this.config.noResultsText?this.config.noResultsText():this.config.noResultsText,c=this._getTemplate("notice",l,"no-results")):(l="function"==typeof this.config.noChoicesText?this.config.noChoicesText():this.config.noChoicesText,c=this._getTemplate("notice",l,"no-choices")),this.choiceList.append(c)}},r._renderItems=function(){var e=this._store.activeItems||[];this.itemList.clear();var t=this._createItemsFragment(e);t.childNodes&&this.itemList.append(t)},r._createGroupsFragment=function(e,t,i){var n=this;void 0===i&&(i=document.createDocumentFragment());return this.config.shouldSort&&e.sort(this.config.sorter),e.forEach((function(e){var s=function(e){return t.filter((function(t){return n._isSelectOneElement?t.groupId===e.id:t.groupId===e.id&&("always"===n.config.renderSelectedChoices||!t.selected)}))}(e);if(s.length>=1){var r=n._getTemplate("choiceGroup",e);i.appendChild(r),n._createChoicesFragment(s,i,!0)}})),i},r._createChoicesFragment=function(e,t,i){var n=this;void 0===t&&(t=document.createDocumentFragment()),void 0===i&&(i=!1);var s=this.config,r=s.renderSelectedChoices,o=s.searchResultLimit,a=s.renderChoiceLimit,c=this._isSearching?O:this.config.sorter,l=function(e){if("auto"!==r||(n._isSelectOneElement||!e.selected)){var i=n._getTemplate("choice",e,n.config.itemSelectText);t.appendChild(i)}},h=e;"auto"!==r||this._isSelectOneElement||(h=e.filter((function(e){return!e.selected})));var u=h.reduce((function(e,t){return t.placeholder?e.placeholderChoices.push(t):e.normalChoices.push(t),e}),{placeholderChoices:[],normalChoices:[]}),d=u.placeholderChoices,p=u.normalChoices;(this.config.shouldSort||this._isSearching)&&p.sort(c);var m=h.length,f=this._isSelectOneElement?[].concat(d,p):p;this._isSearching?m=o:a&&a>0&&!i&&(m=a);for(var v=0;v<m;v+=1)f[v]&&l(f[v]);return t},r._createItemsFragment=function(e,t){var i=this;void 0===t&&(t=document.createDocumentFragment());var n=this.config,s=n.shouldSortItems,r=n.sorter,o=n.removeItemButton;s&&!this._isSelectOneElement&&e.sort(r),this._isTextElement?this.passedElement.value=e:this.passedElement.options=e;return e.forEach((function(e){var n=i._getTemplate("item",e,o);t.appendChild(n)})),t},r._triggerChange=function(e){null!=e&&this.passedElement.triggerEvent(j,{value:e})},r._selectPlaceholderChoice=function(){var e=this._store.placeholderChoice;e&&(this._addItem({value:e.value,label:e.label,choiceId:e.id,groupId:e.groupId,placeholder:e.placeholder}),this._triggerChange(e.value))},r._handleButtonAction=function(e,t){if(e&&t&&this.config.removeItems&&this.config.removeItemButton){var i=t.parentNode.getAttribute("data-id"),n=e.find((function(e){return e.id===parseInt(i,10)}));this._removeItem(n),this._triggerChange(n.value),this._isSelectOneElement&&this._selectPlaceholderChoice()}},r._handleItemAction=function(e,t,i){var n=this;if(void 0===i&&(i=!1),e&&t&&this.config.removeItems&&!this._isSelectOneElement){var s=t.getAttribute("data-id");e.forEach((function(e){e.id!==parseInt(s,10)||e.highlighted?!i&&e.highlighted&&n.unhighlightItem(e):n.highlightItem(e)})),this.input.focus()}},r._handleChoiceAction=function(e,t){if(e&&t){var i=t.dataset.id,n=this._store.getChoiceById(i);if(n){var s=e[0]&&e[0].keyCode?e[0].keyCode:null,r=this.dropdown.isActive;if(n.keyCode=s,this.passedElement.triggerEvent(K,{choice:n}),!n.selected&&!n.disabled)this._canAddItem(e,n.value).response&&(this._addItem({value:n.value,label:n.label,choiceId:n.id,groupId:n.groupId,customProperties:n.customProperties,placeholder:n.placeholder,keyCode:n.keyCode}),this._triggerChange(n.value));this.clearInput(),r&&this._isSelectOneElement&&(this.hideDropdown(!0),this.containerOuter.focus())}}},r._handleBackspace=function(e){if(this.config.removeItems&&e){var t=e[e.length-1],i=e.some((function(e){return e.highlighted}));this.config.editItems&&!i&&t?(this.input.value=t.value,this.input.setWidth(),this._removeItem(t),this._triggerChange(t.value)):(i||this.highlightItem(t,!1),this.removeHighlightedItems(!0))}},r._startLoading=function(){this._store.dispatch(we(!0))},r._stopLoading=function(){this._store.dispatch(we(!1))},r._handleLoadingState=function(e){void 0===e&&(e=!0);var t=this.itemList.getChild("."+this.config.classNames.placeholder);e?(this.disable(),this.containerOuter.addLoadingState(),this._isSelectOneElement?t?t.innerHTML=this.config.loadingText:(t=this._getTemplate("placeholder",this.config.loadingText),this.itemList.append(t)):this.input.placeholder=this.config.loadingText):(this.enable(),this.containerOuter.removeLoadingState(),this._isSelectOneElement?t.innerHTML=this._placeholderValue||"":this.input.placeholder=this._placeholderValue||"")},r._handleSearch=function(e){if(e&&this.input.isFocussed){var t=this._store.choices,i=this.config,n=i.searchFloor,s=i.searchChoices,r=t.some((function(e){return!e.active}));if(e&&e.length>=n){var o=s?this._searchChoices(e):0;this.passedElement.triggerEvent(R,{value:e,resultCount:o})}else r&&(this._isSearching=!1,this._store.dispatch(Ee(!0)))}},r._canAddItem=function(e,t){var i=!0,n="function"==typeof this.config.addItemText?this.config.addItemText(t):this.config.addItemText;if(!this._isSelectOneElement){var s=function(e,t,i){return void 0===i&&(i="value"),e.some((function(e){return"string"==typeof t?e[i]===t.trim():e[i]===t}))}(e,t);this.config.maxItemCount>0&&this.config.maxItemCount<=e.length&&(i=!1,n="function"==typeof this.config.maxItemText?this.config.maxItemText(this.config.maxItemCount):this.config.maxItemText),!this.config.duplicateItemsAllowed&&s&&i&&(i=!1,n="function"==typeof this.config.uniqueItemText?this.config.uniqueItemText(t):this.config.uniqueItemText),this._isTextElement&&this.config.addItems&&i&&"function"==typeof this.config.addItemFilter&&!this.config.addItemFilter(t)&&(i=!1,n="function"==typeof this.config.customAddItemText?this.config.customAddItemText(t):this.config.customAddItemText)}return{response:i,notice:n}},r._searchChoices=function(e){var t="string"==typeof e?e.trim():e,i="string"==typeof this._currentValue?this._currentValue.trim():this._currentValue;if(t.length<1&&t===i+" ")return 0;var n=this._store.searchableChoices,r=t,o=[].concat(this.config.searchFields),a=Object.assign(this.config.fuseOptions,{keys:o}),c=new s.a(n,a).search(r);return this._currentValue=t,this._highlightPosition=0,this._isSearching=!0,this._store.dispatch(function(e){return{type:U,results:e}}(c)),c.length},r._addEventListeners=function(){var e=document.documentElement;e.addEventListener("touchend",this._onTouchEnd,!0),this.containerOuter.element.addEventListener("keydown",this._onKeyDown,!0),this.containerOuter.element.addEventListener("mousedown",this._onMouseDown,!0),e.addEventListener("click",this._onClick,{passive:!0}),e.addEventListener("touchmove",this._onTouchMove,{passive:!0}),this.dropdown.element.addEventListener("mouseover",this._onMouseOver,{passive:!0}),this._isSelectOneElement&&(this.containerOuter.element.addEventListener("focus",this._onFocus,{passive:!0}),this.containerOuter.element.addEventListener("blur",this._onBlur,{passive:!0})),this.input.element.addEventListener("keyup",this._onKeyUp,{passive:!0}),this.input.element.addEventListener("focus",this._onFocus,{passive:!0}),this.input.element.addEventListener("blur",this._onBlur,{passive:!0}),this.input.element.form&&this.input.element.form.addEventListener("reset",this._onFormReset,{passive:!0}),this.input.addEventListeners()},r._removeEventListeners=function(){var e=document.documentElement;e.removeEventListener("touchend",this._onTouchEnd,!0),this.containerOuter.element.removeEventListener("keydown",this._onKeyDown,!0),this.containerOuter.element.removeEventListener("mousedown",this._onMouseDown,!0),e.removeEventListener("click",this._onClick),e.removeEventListener("touchmove",this._onTouchMove),this.dropdown.element.removeEventListener("mouseover",this._onMouseOver),this._isSelectOneElement&&(this.containerOuter.element.removeEventListener("focus",this._onFocus),this.containerOuter.element.removeEventListener("blur",this._onBlur)),this.input.element.removeEventListener("keyup",this._onKeyUp),this.input.element.removeEventListener("focus",this._onFocus),this.input.element.removeEventListener("blur",this._onBlur),this.input.element.form&&this.input.element.form.removeEventListener("reset",this._onFormReset),this.input.removeEventListeners()},r._onKeyDown=function(e){var t,i=e.target,n=e.keyCode,s=e.ctrlKey,r=e.metaKey,o=this._store.activeItems,a=this.input.isFocussed,c=this.dropdown.isActive,l=this.itemList.hasChildren(),h=String.fromCharCode(n),u=Z,d=Q,p=ee,m=te,f=ie,v=ne,g=se,_=re,b=oe,y=s||r;!this._isTextElement&&/[a-zA-Z0-9-_ ]/.test(h)&&this.showDropdown();var E=((t={})[m]=this._onAKey,t[p]=this._onEnterKey,t[f]=this._onEscapeKey,t[v]=this._onDirectionKey,t[_]=this._onDirectionKey,t[g]=this._onDirectionKey,t[b]=this._onDirectionKey,t[d]=this._onDeleteKey,t[u]=this._onDeleteKey,t);E[n]&&E[n]({event:e,target:i,keyCode:n,metaKey:r,activeItems:o,hasFocusedInput:a,hasActiveDropdown:c,hasItems:l,hasCtrlDownKeyPressed:y})},r._onKeyUp=function(e){var t=e.target,i=e.keyCode,n=this.input.value,s=this._store.activeItems,r=this._canAddItem(s,n),o=Z,a=Q;if(this._isTextElement){if(r.notice&&n){var c=this._getTemplate("notice",r.notice);this.dropdown.element.innerHTML=c.outerHTML,this.showDropdown(!0)}else this.hideDropdown(!0)}else{var l=(i===o||i===a)&&!t.value,h=!this._isTextElement&&this._isSearching,u=this._canSearch&&r.response;l&&h?(this._isSearching=!1,this._store.dispatch(Ee(!0))):u&&this._handleSearch(this.input.value)}this._canSearch=this.config.searchEnabled},r._onAKey=function(e){var t=e.hasItems;e.hasCtrlDownKeyPressed&&t&&(this._canSearch=!1,this.config.removeItems&&!this.input.value&&this.input.element===document.activeElement&&this.highlightAll())},r._onEnterKey=function(e){var t=e.event,i=e.target,n=e.activeItems,s=e.hasActiveDropdown,r=ee,o=i.hasAttribute("data-button");if(this._isTextElement&&i.value){var a=this.input.value;this._canAddItem(n,a).response&&(this.hideDropdown(!0),this._addItem({value:a}),this._triggerChange(a),this.clearInput())}if(o&&(this._handleButtonAction(n,i),t.preventDefault()),s){var c=this.dropdown.getChild("."+this.config.classNames.highlightedState);c&&(n[0]&&(n[0].keyCode=r),this._handleChoiceAction(n,c)),t.preventDefault()}else this._isSelectOneElement&&(this.showDropdown(),t.preventDefault())},r._onEscapeKey=function(e){e.hasActiveDropdown&&(this.hideDropdown(!0),this.containerOuter.focus())},r._onDirectionKey=function(e){var t,i,n,s=e.event,r=e.hasActiveDropdown,o=e.keyCode,a=e.metaKey,c=se,l=re,h=oe;if(r||this._isSelectOneElement){this.showDropdown(),this._canSearch=!1;var u,d=o===c||o===h?1:-1;if(a||o===h||o===l)u=d>0?this.dropdown.element.querySelector("[data-choice-selectable]:last-of-type"):this.dropdown.element.querySelector("[data-choice-selectable]");else{var p=this.dropdown.element.querySelector("."+this.config.classNames.highlightedState);u=p?function(e,t,i){if(void 0===i&&(i=1),e instanceof Element&&"string"==typeof t){for(var n=(i>0?"next":"previous")+"ElementSibling",s=e[n];s;){if(s.matches(t))return s;s=s[n]}return s}}(p,"[data-choice-selectable]",d):this.dropdown.element.querySelector("[data-choice-selectable]")}u&&(t=u,i=this.choiceList.element,void 0===(n=d)&&(n=1),t&&(n>0?i.scrollTop+i.offsetHeight>=t.offsetTop+t.offsetHeight:t.offsetTop>=i.scrollTop)||this.choiceList.scrollToChildElement(u,d),this._highlightChoice(u)),s.preventDefault()}},r._onDeleteKey=function(e){var t=e.event,i=e.target,n=e.hasFocusedInput,s=e.activeItems;!n||i.value||this._isSelectOneElement||(this._handleBackspace(s),t.preventDefault())},r._onTouchMove=function(){this._wasTap&&(this._wasTap=!1)},r._onTouchEnd=function(e){var t=(e||e.touches[0]).target;this._wasTap&&this.containerOuter.element.contains(t)&&((t===this.containerOuter.element||t===this.containerInner.element)&&(this._isTextElement?this.input.focus():this._isSelectMultipleElement&&this.showDropdown()),e.stopPropagation());this._wasTap=!0},r._onMouseDown=function(e){var t=e.target;if(t instanceof HTMLElement){if(Ce&&this.choiceList.element.contains(t)){var i=this.choiceList.element.firstElementChild,n="ltr"===this._direction?e.offsetX>=i.offsetWidth:e.offsetX<i.offsetLeft;this._isScrollingOnIe=n}if(t!==this.input.element){var s=t.closest("[data-button],[data-item],[data-choice]");if(s instanceof HTMLElement){var r=e.shiftKey,o=this._store.activeItems,a=s.dataset;"button"in a?this._handleButtonAction(o,s):"item"in a?this._handleItemAction(o,s,r):"choice"in a&&this._handleChoiceAction(o,s)}e.preventDefault()}}},r._onMouseOver=function(e){var t=e.target;t instanceof HTMLElement&&"choice"in t.dataset&&this._highlightChoice(t)},r._onClick=function(e){var t=e.target;this.containerOuter.element.contains(t)?this.dropdown.isActive||this.containerOuter.isDisabled?this._isSelectOneElement&&t!==this.input.element&&!this.dropdown.element.contains(t)&&this.hideDropdown():this._isTextElement?document.activeElement!==this.input.element&&this.input.focus():(this.showDropdown(),this.containerOuter.focus()):(this._store.highlightedActiveItems.length>0&&this.unhighlightAll(),this.containerOuter.removeFocusState(),this.hideDropdown(!0))},r._onFocus=function(e){var t,i=this,n=e.target;this.containerOuter.element.contains(n)&&((t={})[ae]=function(){n===i.input.element&&i.containerOuter.addFocusState()},t[ce]=function(){i.containerOuter.addFocusState(),n===i.input.element&&i.showDropdown(!0)},t[le]=function(){n===i.input.element&&(i.showDropdown(!0),i.containerOuter.addFocusState())},t)[this.passedElement.element.type]()},r._onBlur=function(e){var t=this,i=e.target;if(this.containerOuter.element.contains(i)&&!this._isScrollingOnIe){var n,s=this._store.activeItems.some((function(e){return e.highlighted}));((n={})[ae]=function(){i===t.input.element&&(t.containerOuter.removeFocusState(),s&&t.unhighlightAll(),t.hideDropdown(!0))},n[ce]=function(){t.containerOuter.removeFocusState(),(i===t.input.element||i===t.containerOuter.element&&!t._canSearch)&&t.hideDropdown(!0)},n[le]=function(){i===t.input.element&&(t.containerOuter.removeFocusState(),t.hideDropdown(!0),s&&t.unhighlightAll())},n)[this.passedElement.element.type]()}else this._isScrollingOnIe=!1,this.input.element.focus()},r._onFormReset=function(){this._store.dispatch({type:"RESET_TO",state:this._initialState})},r._highlightChoice=function(e){var t=this;void 0===e&&(e=null);var i=Array.from(this.dropdown.element.querySelectorAll("[data-choice-selectable]"));if(i.length){var n=e;Array.from(this.dropdown.element.querySelectorAll("."+this.config.classNames.highlightedState)).forEach((function(e){e.classList.remove(t.config.classNames.highlightedState),e.setAttribute("aria-selected","false")})),n?this._highlightPosition=i.indexOf(n):(n=i.length>this._highlightPosition?i[this._highlightPosition]:i[i.length-1])||(n=i[0]),n.classList.add(this.config.classNames.highlightedState),n.setAttribute("aria-selected","true"),this.passedElement.triggerEvent(G,{el:n}),this.dropdown.isActive&&(this.input.setActiveDescendant(n.id),this.containerOuter.setActiveDescendant(n.id))}},r._addItem=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,s=e.choiceId,r=void 0===s?-1:s,o=e.groupId,a=void 0===o?-1:o,c=e.customProperties,l=void 0===c?null:c,h=e.placeholder,u=void 0!==h&&h,d=e.keyCode,p=void 0===d?null:d,m="string"==typeof t?t.trim():t,f=p,v=l,g=this._store.items,_=n||m,b=r||-1,y=a>=0?this._store.getGroupById(a):null,E=g?g.length+1:1;return this.config.prependValue&&(m=this.config.prependValue+m.toString()),this.config.appendValue&&(m+=this.config.appendValue.toString()),this._store.dispatch(function(e){var t=e.value,i=e.label,n=e.id,s=e.choiceId,r=e.groupId,o=e.customProperties,a=e.placeholder,c=e.keyCode;return{type:$,value:t,label:i,id:n,choiceId:s,groupId:r,customProperties:o,placeholder:a,keyCode:c}}({value:m,label:_,id:E,choiceId:b,groupId:a,customProperties:l,placeholder:u,keyCode:f})),this._isSelectOneElement&&this.removeActiveItems(E),this.passedElement.triggerEvent(H,{id:E,value:m,label:_,customProperties:v,groupValue:y&&y.value?y.value:void 0,keyCode:f}),this},r._removeItem=function(e){if(!e||!I("Object",e))return this;var t=e.id,i=e.value,n=e.label,s=e.choiceId,r=e.groupId,o=r>=0?this._store.getGroupById(r):null;return this._store.dispatch(function(e,t){return{type:J,id:e,choiceId:t}}(t,s)),o&&o.value?this.passedElement.triggerEvent(B,{id:t,value:i,label:n,groupValue:o.value}):this.passedElement.triggerEvent(B,{id:t,value:i,label:n}),this},r._addChoice=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,s=e.isSelected,r=void 0!==s&&s,o=e.isDisabled,a=void 0!==o&&o,c=e.groupId,l=void 0===c?-1:c,h=e.customProperties,u=void 0===h?null:h,d=e.placeholder,p=void 0!==d&&d,m=e.keyCode,f=void 0===m?null:m;if(null!=t){var v=this._store.choices,g=n||t,_=v?v.length+1:1,b=this._baseId+"-"+this._idNames.itemChoice+"-"+_;this._store.dispatch(function(e){var t=e.value,i=e.label,n=e.id,s=e.groupId,r=e.disabled,o=e.elementId,a=e.customProperties,c=e.placeholder,l=e.keyCode;return{type:q,value:t,label:i,id:n,groupId:s,disabled:r,elementId:o,customProperties:a,placeholder:c,keyCode:l}}({id:_,groupId:l,elementId:b,value:t,label:g,disabled:a,customProperties:u,placeholder:p,keyCode:f})),r&&this._addItem({value:t,label:g,choiceId:_,customProperties:u,placeholder:p,keyCode:f})}},r._addGroup=function(e){var t=this,i=e.group,n=e.id,s=e.valueKey,r=void 0===s?"value":s,o=e.labelKey,a=void 0===o?"label":o,c=I("Object",i)?i.choices:Array.from(i.getElementsByTagName("OPTION")),l=n||Math.floor((new Date).valueOf()*Math.random()),h=!!i.disabled&&i.disabled;if(c){this._store.dispatch(Se({value:i.label,id:l,active:!0,disabled:h}));c.forEach((function(e){var i=e.disabled||e.parentNode&&e.parentNode.disabled;t._addChoice({value:e[r],label:I("Object",e)?e[a]:e.innerHTML,isSelected:e.selected,isDisabled:i,groupId:l,customProperties:e.customProperties,placeholder:e.placeholder})}))}else this._store.dispatch(Se({value:i.label,id:i.id,active:!1,disabled:i.disabled}))},r._getTemplate=function(e){var t;if(!e)return null;for(var i=this.config.classNames,n=arguments.length,s=new Array(n>1?n-1:0),r=1;r<n;r++)s[r-1]=arguments[r];return(t=this._templates[e]).call.apply(t,[this,i].concat(s))},r._createTemplates=function(){var e=this.config.callbackOnCreateTemplates,t={};e&&"function"==typeof e&&(t=e.call(this,w)),this._templates=o()(ye,t)},r._createElements=function(){this.containerOuter=new he({element:this._getTemplate("containerOuter",this._direction,this._isSelectElement,this._isSelectOneElement,this.config.searchEnabled,this.passedElement.element.type),classNames:this.config.classNames,type:this.passedElement.element.type,position:this.config.position}),this.containerInner=new he({element:this._getTemplate("containerInner"),classNames:this.config.classNames,type:this.passedElement.element.type,position:this.config.position}),this.input=new de({element:this._getTemplate("input",this._placeholderValue),classNames:this.config.classNames,type:this.passedElement.element.type,preventPaste:!this.config.paste}),this.choiceList=new pe({element:this._getTemplate("choiceList",this._isSelectOneElement)}),this.itemList=new pe({element:this._getTemplate("itemList",this._isSelectOneElement)}),this.dropdown=new D({element:this._getTemplate("dropdown"),classNames:this.config.classNames,type:this.passedElement.element.type})},r._createStructure=function(){this.passedElement.conceal(),this.containerInner.wrap(this.passedElement.element),this.containerOuter.wrap(this.containerInner.element),this._isSelectOneElement?this.input.placeholder=this.config.searchPlaceholderValue||"":this._placeholderValue&&(this.input.placeholder=this._placeholderValue,this.input.setWidth()),this.containerOuter.element.appendChild(this.containerInner.element),this.containerOuter.element.appendChild(this.dropdown.element),this.containerInner.element.appendChild(this.itemList.element),this._isTextElement||this.dropdown.element.appendChild(this.choiceList.element),this._isSelectOneElement?this.config.searchEnabled&&this.dropdown.element.insertBefore(this.input.element,this.dropdown.element.firstChild):this.containerInner.element.appendChild(this.input.element),this._isSelectElement&&(this._highlightPosition=0,this._isSearching=!1,this._startLoading(),this._presetGroups.length?this._addPredefinedGroups(this._presetGroups):this._addPredefinedChoices(this._presetChoices),this._stopLoading()),this._isTextElement&&this._addPredefinedItems(this._presetItems)},r._addPredefinedGroups=function(e){var t=this,i=this.passedElement.placeholderOption;i&&"SELECT"===i.parentNode.tagName&&this._addChoice({value:i.value,label:i.innerHTML,isSelected:i.selected,isDisabled:i.disabled,placeholder:!0}),e.forEach((function(e){return t._addGroup({group:e,id:e.id||null})}))},r._addPredefinedChoices=function(e){var t=this;this.config.shouldSort&&e.sort(this.config.sorter);var i=e.some((function(e){return e.selected})),n=e.findIndex((function(e){return void 0===e.disabled||!e.disabled}));e.forEach((function(e,s){var r=e.value,o=e.label,a=e.customProperties,c=e.placeholder;if(t._isSelectElement)if(e.choices)t._addGroup({group:e,id:e.id||null});else{var l=!!(t._isSelectOneElement&&!i&&s===n)||e.selected,h=e.disabled;t._addChoice({value:r,label:o,isSelected:l,isDisabled:h,customProperties:a,placeholder:c})}else t._addChoice({value:r,label:o,isSelected:e.selected,isDisabled:e.disabled,customProperties:a,placeholder:c})}))},r._addPredefinedItems=function(e){var t=this;e.forEach((function(e){"object"==typeof e&&e.value&&t._addItem({value:e.value,label:e.label,choiceId:e.id,customProperties:e.customProperties,placeholder:e.placeholder}),"string"==typeof e&&t._addItem({value:e})}))},r._setChoiceOrItem=function(e){var t=this;({object:function(){e.value&&(t._isTextElement?t._addItem({value:e.value,label:e.label,choiceId:e.id,customProperties:e.customProperties,placeholder:e.placeholder}):t._addChoice({value:e.value,label:e.label,isSelected:!0,isDisabled:!1,customProperties:e.customProperties,placeholder:e.placeholder}))},string:function(){t._isTextElement?t._addItem({value:e}):t._addChoice({value:e,label:e,isSelected:!0,isDisabled:!1})}})[E(e).toLowerCase()]()},r._findAndSelectChoiceByValue=function(e){var t=this,i=this._store.choices.find((function(i){return t.config.valueComparer(i.value,e)}));i&&!i.selected&&this._addItem({value:i.value,label:i.label,choiceId:i.id,groupId:i.groupId,customProperties:i.customProperties,placeholder:i.placeholder,keyCode:i.keyCode})},r._generatePlaceholderValue=function(){if(this._isSelectElement){var e=this.passedElement.placeholderOption;return!!e&&e.text}var t=this.config,i=t.placeholder,n=t.placeholderValue,s=this.passedElement.element.dataset;if(i){if(n)return n;if(s.placeholder)return s.placeholder}return!1},n}();t.default=Le}]).default;
\ No newline at end of file
diff --git a/public/js/vendor/glightbox/glightbox.min.css b/public/js/vendor/glightbox/glightbox.min.css
new file mode 100644
index 0000000..123d495
--- /dev/null
+++ b/public/js/vendor/glightbox/glightbox.min.css
@@ -0,0 +1 @@
+.glightbox-container{width:100%;height:100%;position:fixed;top:0;left:0;z-index:999999!important;overflow:hidden;-ms-touch-action:none;touch-action:none;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;outline:0;overflow:hidden}.glightbox-container.inactive{display:none}.glightbox-container .gcontainer{position:relative;width:100%;height:100%;z-index:9999;overflow:hidden}.glightbox-container .gslider{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;height:100%;left:0;top:0;width:100%;position:relative;overflow:hidden;display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.glightbox-container .gslide{width:100%;position:absolute;opacity:1;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;opacity:0}.glightbox-container .gslide.current{opacity:1;z-index:99999;position:relative}.glightbox-container .gslide.prev{opacity:1;z-index:9999}.glightbox-container .gslide-inner-content{width:100%}.glightbox-container .ginner-container{position:relative;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-width:100%;margin:auto;height:100vh}.glightbox-container .ginner-container.gvideo-container{width:100%}.glightbox-container .ginner-container.desc-bottom,.glightbox-container .ginner-container.desc-top{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.glightbox-container .ginner-container.desc-left,.glightbox-container .ginner-container.desc-right{max-width:100%!important}.gslide iframe,.gslide video{outline:0!important;border:none;min-height:165px;-webkit-overflow-scrolling:touch;-ms-touch-action:auto;touch-action:auto}.gslide-image{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gslide-image img{max-height:100vh;display:block;padding:0;float:none;outline:0;border:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:100vw;width:auto;height:auto;-o-object-fit:cover;object-fit:cover;-ms-touch-action:none;touch-action:none;margin:auto;min-width:200px}.desc-bottom .gslide-image img,.desc-top .gslide-image img{width:auto}.desc-left .gslide-image img,.desc-right .gslide-image img{width:auto;max-width:100%}.gslide-image img.zoomable{position:relative}.gslide-image img.dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;-webkit-transition:none;transition:none}.gslide-video{position:relative;max-width:100vh;width:100%!important}.gslide-video .gvideo-wrapper{width:100%;margin:auto}.gslide-video::before{content:'';display:block;position:absolute;width:100%;height:100%;background:rgba(255,0,0,.34);display:none}.gslide-video.playing::before{display:none}.gslide-video.fullscreen{max-width:100%!important;min-width:100%;height:75vh}.gslide-video.fullscreen video{max-width:100%!important;width:100%!important}.gslide-inline{background:#fff;text-align:left;max-height:calc(100vh - 40px);overflow:auto;max-width:100%}.gslide-inline .ginlined-content{padding:20px;width:100%}.gslide-inline .dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;-webkit-transition:none;transition:none}.ginlined-content{overflow:auto;display:block!important;opacity:1}.gslide-external{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;min-width:100%;background:#fff;padding:0;overflow:auto;max-height:75vh;height:100%}.gslide-media{display:-webkit-box;display:-ms-flexbox;display:flex;width:auto}.zoomed .gslide-media{-webkit-box-shadow:none!important;box-shadow:none!important}.desc-bottom .gslide-media,.desc-top .gslide-media{margin:0 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gslide-description{position:relative;-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%}.gslide-description.description-left,.gslide-description.description-right{max-width:100%}.gslide-description.description-bottom,.gslide-description.description-top{margin:0 auto;width:100%}.gslide-description p{margin-bottom:12px}.gslide-description p:last-child{margin-bottom:0}.zoomed .gslide-description{display:none}.glightbox-button-hidden{display:none}.glightbox-mobile .glightbox-container .gslide-description{height:auto!important;width:100%;background:0 0;position:absolute;bottom:15px;padding:19px 11px;max-width:100vw!important;-webkit-box-ordinal-group:3!important;-ms-flex-order:2!important;order:2!important;max-height:78vh;overflow:auto!important;background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,.75)));background:linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.75) 100%);-webkit-transition:opacity .3s linear;transition:opacity .3s linear;padding-bottom:50px}.glightbox-mobile .glightbox-container .gslide-title{color:#fff;font-size:1em}.glightbox-mobile .glightbox-container .gslide-desc{color:#a1a1a1}.glightbox-mobile .glightbox-container .gslide-desc a{color:#fff;font-weight:700}.glightbox-mobile .glightbox-container .gslide-desc *{color:inherit}.glightbox-mobile .glightbox-container .gslide-desc string{color:#fff}.glightbox-mobile .glightbox-container .gslide-desc .desc-more{color:#fff;opacity:.4}.gdesc-open .gslide-media{-webkit-transition:opacity .5s ease;transition:opacity .5s ease;opacity:.4}.gdesc-open .gdesc-inner{padding-bottom:30px}.gdesc-closed .gslide-media{-webkit-transition:opacity .5s ease;transition:opacity .5s ease;opacity:1}.greset{-webkit-transition:all .3s ease;transition:all .3s ease}.gabsolute{position:absolute}.grelative{position:relative}.glightbox-desc{display:none!important}.glightbox-open{overflow:hidden}.gloader{height:25px;width:25px;-webkit-animation:lightboxLoader .8s infinite linear;animation:lightboxLoader .8s infinite linear;border:2px solid #fff;border-right-color:transparent;border-radius:50%;position:absolute;display:block;z-index:9999;left:0;right:0;margin:0 auto;top:47%}.goverlay{width:100%;height:calc(100vh + 1px);position:fixed;top:-1px;left:0;background:#000;will-change:opacity}.glightbox-mobile .goverlay{background:#000}.gclose,.gnext,.gprev{z-index:99999;cursor:pointer;width:26px;height:44px;border:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gclose svg,.gnext svg,.gprev svg{display:block;width:25px;height:auto;margin:0;padding:0}.gclose.disabled,.gnext.disabled,.gprev.disabled{opacity:.1}.gclose .garrow,.gnext .garrow,.gprev .garrow{stroke:#fff}.gbtn.focused{outline:2px solid #0f3d81}iframe.wait-autoplay{opacity:0}.glightbox-closing .gclose,.glightbox-closing .gnext,.glightbox-closing .gprev{opacity:0!important}.glightbox-clean .gslide-description{background:#fff}.glightbox-clean .gdesc-inner{padding:22px 20px}.glightbox-clean .gslide-title{font-size:1em;font-weight:400;font-family:arial;color:#000;margin-bottom:19px;line-height:1.4em}.glightbox-clean .gslide-desc{font-size:.86em;margin-bottom:0;font-family:arial;line-height:1.4em}.glightbox-clean .gslide-video{background:#000}.glightbox-clean .gclose,.glightbox-clean .gnext,.glightbox-clean .gprev{background-color:rgba(0,0,0,.75);border-radius:4px}.glightbox-clean .gclose path,.glightbox-clean .gnext path,.glightbox-clean .gprev path{fill:#fff}.glightbox-clean .gprev{position:absolute;top:-100%;left:30px;width:40px;height:50px}.glightbox-clean .gnext{position:absolute;top:-100%;right:30px;width:40px;height:50px}.glightbox-clean .gclose{width:35px;height:35px;top:15px;right:10px;position:absolute}.glightbox-clean .gclose svg{width:18px;height:auto}.glightbox-clean .gclose:hover{opacity:1}.gfadeIn{-webkit-animation:gfadeIn .5s ease;animation:gfadeIn .5s ease}.gfadeOut{-webkit-animation:gfadeOut .5s ease;animation:gfadeOut .5s ease}.gslideOutLeft{-webkit-animation:gslideOutLeft .3s ease;animation:gslideOutLeft .3s ease}.gslideInLeft{-webkit-animation:gslideInLeft .3s ease;animation:gslideInLeft .3s ease}.gslideOutRight{-webkit-animation:gslideOutRight .3s ease;animation:gslideOutRight .3s ease}.gslideInRight{-webkit-animation:gslideInRight .3s ease;animation:gslideInRight .3s ease}.gzoomIn{-webkit-animation:gzoomIn .5s ease;animation:gzoomIn .5s ease}.gzoomOut{-webkit-animation:gzoomOut .5s ease;animation:gzoomOut .5s ease}@-webkit-keyframes lightboxLoader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes lightboxLoader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes gfadeIn{from{opacity:0}to{opacity:1}}@keyframes gfadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes gfadeOut{from{opacity:1}to{opacity:0}}@keyframes gfadeOut{from{opacity:1}to{opacity:0}}@-webkit-keyframes gslideInLeft{from{opacity:0;-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0)}to{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInLeft{from{opacity:0;-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0)}to{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutLeft{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@keyframes gslideOutLeft{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@-webkit-keyframes gslideInRight{from{opacity:0;visibility:visible;-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInRight{from{opacity:0;visibility:visible;-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutRight{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0);opacity:0}}@keyframes gslideOutRight{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0);opacity:0}}@-webkit-keyframes gzoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:1}}@keyframes gzoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:1}}@-webkit-keyframes gzoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes gzoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@media (min-width:769px){.glightbox-container .ginner-container{width:auto;height:auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.glightbox-container .ginner-container.desc-top .gslide-description{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.glightbox-container .ginner-container.desc-top .gslide-image,.glightbox-container .ginner-container.desc-top .gslide-image img{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.glightbox-container .ginner-container.desc-left .gslide-description{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.glightbox-container .ginner-container.desc-left .gslide-image{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.gslide-image img{max-height:97vh;max-width:100%}.gslide-image img.zoomable{cursor:-webkit-zoom-in;cursor:zoom-in}.zoomed .gslide-image img.zoomable{cursor:-webkit-grab;cursor:grab}.gslide-inline{max-height:95vh}.gslide-external{max-height:100vh}.gslide-description.description-left,.gslide-description.description-right{max-width:275px}.glightbox-open{height:auto}.goverlay{background:rgba(0,0,0,.92)}.glightbox-clean .gslide-media{-webkit-box-shadow:1px 2px 9px 0 rgba(0,0,0,.65);box-shadow:1px 2px 9px 0 rgba(0,0,0,.65)}.glightbox-clean .description-left .gdesc-inner,.glightbox-clean .description-right .gdesc-inner{position:absolute;height:100%;overflow-y:auto}.glightbox-clean .gclose,.glightbox-clean .gnext,.glightbox-clean .gprev{background-color:rgba(0,0,0,.32)}.glightbox-clean .gclose:hover,.glightbox-clean .gnext:hover,.glightbox-clean .gprev:hover{background-color:rgba(0,0,0,.7)}.glightbox-clean .gprev{top:45%}.glightbox-clean .gnext{top:45%}}@media (min-width:992px){.glightbox-clean .gclose{opacity:.7;right:20px}}@media screen and (max-height:420px){.goverlay{background:#000}}
\ No newline at end of file
diff --git a/public/js/vendor/glightbox/glightbox.min.js b/public/js/vendor/glightbox/glightbox.min.js
new file mode 100644
index 0000000..58ce421
--- /dev/null
+++ b/public/js/vendor/glightbox/glightbox.min.js
@@ -0,0 +1 @@
+!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e=e||self).GLightbox=t()}(this,(function(){"use strict";function e(t){return(e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(t)}function t(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){for(var i=0;i<t.length;i++){var n=t[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function n(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),e}var s=Date.now();function l(){var e={},t=!0,i=0,n=arguments.length;"[object Boolean]"===Object.prototype.toString.call(arguments[0])&&(t=arguments[0],i++);for(var s=function(i){for(var n in i)Object.prototype.hasOwnProperty.call(i,n)&&(t&&"[object Object]"===Object.prototype.toString.call(i[n])?e[n]=l(!0,e[n],i[n]):e[n]=i[n])};i<n;i++){var o=arguments[i];s(o)}return e}function o(e,t){if((C(e)||e===window||e===document)&&(e=[e]),A(e)||L(e)||(e=[e]),0!=P(e))if(A(e)&&!L(e))for(var i=e.length,n=0;n<i&&!1!==t.call(e[n],e[n],n,e);n++);else if(L(e))for(var s in e)if(O(e,s)&&!1===t.call(e[s],e[s],s,e))break}function r(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,n=e[s]=e[s]||[],l={all:n,evt:null,found:null};return t&&i&&P(n)>0&&o(n,(function(e,n){if(e.eventName==t&&e.fn.toString()==i.toString())return l.found=!0,l.evt=n,!1})),l}function a(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=t.onElement,n=t.withCallback,s=t.avoidDuplicate,l=void 0===s||s,a=t.once,h=void 0!==a&&a,d=t.useCapture,c=void 0!==d&&d,u=arguments.length>2?arguments[2]:void 0,g=i||[];function v(e){T(n)&&n.call(u,e,this),h&&v.destroy()}return k(g)&&(g=document.querySelectorAll(g)),v.destroy=function(){o(g,(function(t){var i=r(t,e,v);i.found&&i.all.splice(i.evt,1),t.removeEventListener&&t.removeEventListener(e,v,c)}))},o(g,(function(t){var i=r(t,e,v);(t.addEventListener&&l&&!i.found||!l)&&(t.addEventListener(e,v,c),i.all.push({eventName:e,fn:v}))})),v}function h(e,t){o(t.split(" "),(function(t){return e.classList.add(t)}))}function d(e,t){o(t.split(" "),(function(t){return e.classList.remove(t)}))}function c(e,t){return e.classList.contains(t)}function u(e,t){for(;e!==document.body;){if(!(e=e.parentElement))return!1;if("function"==typeof e.matches?e.matches(t):e.msMatchesSelector(t))return e}}function g(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",i=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(!e||""===t)return!1;if("none"==t)return T(i)&&i(),!1;var n=x(),s=t.split(" ");o(s,(function(t){h(e,"g"+t)})),a(n,{onElement:e,avoidDuplicate:!1,once:!0,withCallback:function(e,t){o(s,(function(e){d(t,"g"+e)})),T(i)&&i()}})}function v(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";if(""==t)return e.style.webkitTransform="",e.style.MozTransform="",e.style.msTransform="",e.style.OTransform="",e.style.transform="",!1;e.style.webkitTransform=t,e.style.MozTransform=t,e.style.msTransform=t,e.style.OTransform=t,e.style.transform=t}function f(e){e.style.display="block"}function p(e){e.style.display="none"}function m(e){var t=document.createDocumentFragment(),i=document.createElement("div");for(i.innerHTML=e;i.firstChild;)t.appendChild(i.firstChild);return t}function y(){return{width:window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,height:window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight}}function x(){var e,t=document.createElement("fakeelement"),i={animation:"animationend",OAnimation:"oAnimationEnd",MozAnimation:"animationend",WebkitAnimation:"webkitAnimationEnd"};for(e in i)if(void 0!==t.style[e])return i[e]}function b(e,t,i,n){if(e())t();else{var s;i||(i=100);var l=setInterval((function(){e()&&(clearInterval(l),s&&clearTimeout(s),t())}),i);n&&(s=setTimeout((function(){clearInterval(l)}),n))}}function S(e,t,i){if(I(e))console.error("Inject assets error");else if(T(t)&&(i=t,t=!1),k(t)&&t in window)T(i)&&i();else{var n;if(-1!==e.indexOf(".css")){if((n=document.querySelectorAll('link[href="'+e+'"]'))&&n.length>0)return void(T(i)&&i());var s=document.getElementsByTagName("head")[0],l=s.querySelectorAll('link[rel="stylesheet"]'),o=document.createElement("link");return o.rel="stylesheet",o.type="text/css",o.href=e,o.media="all",l?s.insertBefore(o,l[0]):s.appendChild(o),void(T(i)&&i())}if((n=document.querySelectorAll('script[src="'+e+'"]'))&&n.length>0){if(T(i)){if(k(t))return b((function(){return void 0!==window[t]}),(function(){i()})),!1;i()}}else{var r=document.createElement("script");r.type="text/javascript",r.src=e,r.onload=function(){if(T(i)){if(k(t))return b((function(){return void 0!==window[t]}),(function(){i()})),!1;i()}},document.body.appendChild(r)}}}function w(){return"navigator"in window&&window.navigator.userAgent.match(/(iPad)|(iPhone)|(iPod)|(Android)|(PlayBook)|(BB10)|(BlackBerry)|(Opera Mini)|(IEMobile)|(webOS)|(MeeGo)/i)}function T(e){return"function"==typeof e}function k(e){return"string"==typeof e}function C(e){return!(!e||!e.nodeType||1!=e.nodeType)}function E(e){return Array.isArray(e)}function A(e){return e&&e.length&&isFinite(e.length)}function L(t){return"object"===e(t)&&null!=t&&!T(t)&&!E(t)}function I(e){return null==e}function O(e,t){return null!==e&&hasOwnProperty.call(e,t)}function P(e){if(L(e)){if(e.keys)return e.keys().length;var t=0;for(var i in e)O(e,i)&&t++;return t}return e.length}function M(e){return!isNaN(parseFloat(e))&&isFinite(e)}function X(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:-1,t=document.querySelectorAll(".gbtn[data-taborder]:not(.disabled)");if(!t.length)return!1;if(1==t.length)return t[0];"string"==typeof e&&(e=parseInt(e));var i=e<0?1:e+1;i>t.length&&(i="1");var n=[];o(t,(function(e){n.push(e.getAttribute("data-taborder"))}));var s=n.filter((function(e){return e>=parseInt(i)})),l=s.sort()[0];return document.querySelector('.gbtn[data-taborder="'.concat(l,'"]'))}function z(e){if(e.events.hasOwnProperty("keyboard"))return!1;e.events.keyboard=a("keydown",{onElement:window,withCallback:function(t,i){var n=(t=t||window.event).keyCode;if(9==n){var s=document.querySelector(".gbtn.focused");if(!s){var l=!(!document.activeElement||!document.activeElement.nodeName)&&document.activeElement.nodeName.toLocaleLowerCase();if("input"==l||"textarea"==l||"button"==l)return}t.preventDefault();var o=document.querySelectorAll(".gbtn[data-taborder]");if(!o||o.length<=0)return;if(!s){var r=X();return void(r&&(r.focus(),h(r,"focused")))}var a=X(s.getAttribute("data-taborder"));d(s,"focused"),a&&(a.focus(),h(a,"focused"))}39==n&&e.nextSlide(),37==n&&e.prevSlide(),27==n&&e.close()}})}function Y(e){return Math.sqrt(e.x*e.x+e.y*e.y)}function q(e,t){var i=function(e,t){var i=Y(e)*Y(t);if(0===i)return 0;var n=function(e,t){return e.x*t.x+e.y*t.y}(e,t)/i;return n>1&&(n=1),Math.acos(n)}(e,t);return function(e,t){return e.x*t.y-t.x*e.y}(e,t)>0&&(i*=-1),180*i/Math.PI}var N=function(){function e(i){t(this,e),this.handlers=[],this.el=i}return n(e,[{key:"add",value:function(e){this.handlers.push(e)}},{key:"del",value:function(e){e||(this.handlers=[]);for(var t=this.handlers.length;t>=0;t--)this.handlers[t]===e&&this.handlers.splice(t,1)}},{key:"dispatch",value:function(){for(var e=0,t=this.handlers.length;e<t;e++){var i=this.handlers[e];"function"==typeof i&&i.apply(this.el,arguments)}}}]),e}();function D(e,t){var i=new N(e);return i.add(t),i}var _=function(){function e(i,n){t(this,e),this.element="string"==typeof i?document.querySelector(i):i,this.start=this.start.bind(this),this.move=this.move.bind(this),this.end=this.end.bind(this),this.cancel=this.cancel.bind(this),this.element.addEventListener("touchstart",this.start,!1),this.element.addEventListener("touchmove",this.move,!1),this.element.addEventListener("touchend",this.end,!1),this.element.addEventListener("touchcancel",this.cancel,!1),this.preV={x:null,y:null},this.pinchStartLen=null,this.zoom=1,this.isDoubleTap=!1;var s=function(){};this.rotate=D(this.element,n.rotate||s),this.touchStart=D(this.element,n.touchStart||s),this.multipointStart=D(this.element,n.multipointStart||s),this.multipointEnd=D(this.element,n.multipointEnd||s),this.pinch=D(this.element,n.pinch||s),this.swipe=D(this.element,n.swipe||s),this.tap=D(this.element,n.tap||s),this.doubleTap=D(this.element,n.doubleTap||s),this.longTap=D(this.element,n.longTap||s),this.singleTap=D(this.element,n.singleTap||s),this.pressMove=D(this.element,n.pressMove||s),this.twoFingerPressMove=D(this.element,n.twoFingerPressMove||s),this.touchMove=D(this.element,n.touchMove||s),this.touchEnd=D(this.element,n.touchEnd||s),this.touchCancel=D(this.element,n.touchCancel||s),this._cancelAllHandler=this.cancelAll.bind(this),window.addEventListener("scroll",this._cancelAllHandler),this.delta=null,this.last=null,this.now=null,this.tapTimeout=null,this.singleTapTimeout=null,this.longTapTimeout=null,this.swipeTimeout=null,this.x1=this.x2=this.y1=this.y2=null,this.preTapPosition={x:null,y:null}}return n(e,[{key:"start",value:function(e){if(e.touches){this.now=Date.now(),this.x1=e.touches[0].pageX,this.y1=e.touches[0].pageY,this.delta=this.now-(this.last||this.now),this.touchStart.dispatch(e,this.element),null!==this.preTapPosition.x&&(this.isDoubleTap=this.delta>0&&this.delta<=250&&Math.abs(this.preTapPosition.x-this.x1)<30&&Math.abs(this.preTapPosition.y-this.y1)<30,this.isDoubleTap&&clearTimeout(this.singleTapTimeout)),this.preTapPosition.x=this.x1,this.preTapPosition.y=this.y1,this.last=this.now;var t=this.preV;if(e.touches.length>1){this._cancelLongTap(),this._cancelSingleTap();var i={x:e.touches[1].pageX-this.x1,y:e.touches[1].pageY-this.y1};t.x=i.x,t.y=i.y,this.pinchStartLen=Y(t),this.multipointStart.dispatch(e,this.element)}this._preventTap=!1,this.longTapTimeout=setTimeout(function(){this.longTap.dispatch(e,this.element),this._preventTap=!0}.bind(this),750)}}},{key:"move",value:function(e){if(e.touches){var t=this.preV,i=e.touches.length,n=e.touches[0].pageX,s=e.touches[0].pageY;if(this.isDoubleTap=!1,i>1){var l=e.touches[1].pageX,o=e.touches[1].pageY,r={x:e.touches[1].pageX-n,y:e.touches[1].pageY-s};null!==t.x&&(this.pinchStartLen>0&&(e.zoom=Y(r)/this.pinchStartLen,this.pinch.dispatch(e,this.element)),e.angle=q(r,t),this.rotate.dispatch(e,this.element)),t.x=r.x,t.y=r.y,null!==this.x2&&null!==this.sx2?(e.deltaX=(n-this.x2+l-this.sx2)/2,e.deltaY=(s-this.y2+o-this.sy2)/2):(e.deltaX=0,e.deltaY=0),this.twoFingerPressMove.dispatch(e,this.element),this.sx2=l,this.sy2=o}else{if(null!==this.x2){e.deltaX=n-this.x2,e.deltaY=s-this.y2;var a=Math.abs(this.x1-this.x2),h=Math.abs(this.y1-this.y2);(a>10||h>10)&&(this._preventTap=!0)}else e.deltaX=0,e.deltaY=0;this.pressMove.dispatch(e,this.element)}this.touchMove.dispatch(e,this.element),this._cancelLongTap(),this.x2=n,this.y2=s,i>1&&e.preventDefault()}}},{key:"end",value:function(e){if(e.changedTouches){this._cancelLongTap();var t=this;e.touches.length<2&&(this.multipointEnd.dispatch(e,this.element),this.sx2=this.sy2=null),this.x2&&Math.abs(this.x1-this.x2)>30||this.y2&&Math.abs(this.y1-this.y2)>30?(e.direction=this._swipeDirection(this.x1,this.x2,this.y1,this.y2),this.swipeTimeout=setTimeout((function(){t.swipe.dispatch(e,t.element)}),0)):(this.tapTimeout=setTimeout((function(){t._preventTap||t.tap.dispatch(e,t.element),t.isDoubleTap&&(t.doubleTap.dispatch(e,t.element),t.isDoubleTap=!1)}),0),t.isDoubleTap||(t.singleTapTimeout=setTimeout((function(){t.singleTap.dispatch(e,t.element)}),250))),this.touchEnd.dispatch(e,this.element),this.preV.x=0,this.preV.y=0,this.zoom=1,this.pinchStartLen=null,this.x1=this.x2=this.y1=this.y2=null}}},{key:"cancelAll",value:function(){this._preventTap=!0,clearTimeout(this.singleTapTimeout),clearTimeout(this.tapTimeout),clearTimeout(this.longTapTimeout),clearTimeout(this.swipeTimeout)}},{key:"cancel",value:function(e){this.cancelAll(),this.touchCancel.dispatch(e,this.element)}},{key:"_cancelLongTap",value:function(){clearTimeout(this.longTapTimeout)}},{key:"_cancelSingleTap",value:function(){clearTimeout(this.singleTapTimeout)}},{key:"_swipeDirection",value:function(e,t,i,n){return Math.abs(e-t)>=Math.abs(i-n)?e-t>0?"Left":"Right":i-n>0?"Up":"Down"}},{key:"on",value:function(e,t){this[e]&&this[e].add(t)}},{key:"off",value:function(e,t){this[e]&&this[e].del(t)}},{key:"destroy",value:function(){return this.singleTapTimeout&&clearTimeout(this.singleTapTimeout),this.tapTimeout&&clearTimeout(this.tapTimeout),this.longTapTimeout&&clearTimeout(this.longTapTimeout),this.swipeTimeout&&clearTimeout(this.swipeTimeout),this.element.removeEventListener("touchstart",this.start),this.element.removeEventListener("touchmove",this.move),this.element.removeEventListener("touchend",this.end),this.element.removeEventListener("touchcancel",this.cancel),this.rotate.del(),this.touchStart.del(),this.multipointStart.del(),this.multipointEnd.del(),this.pinch.del(),this.swipe.del(),this.tap.del(),this.doubleTap.del(),this.longTap.del(),this.singleTap.del(),this.pressMove.del(),this.twoFingerPressMove.del(),this.touchMove.del(),this.touchEnd.del(),this.touchCancel.del(),this.preV=this.pinchStartLen=this.zoom=this.isDoubleTap=this.delta=this.last=this.now=this.tapTimeout=this.singleTapTimeout=this.longTapTimeout=this.swipeTimeout=this.x1=this.x2=this.y1=this.y2=this.preTapPosition=this.rotate=this.touchStart=this.multipointStart=this.multipointEnd=this.pinch=this.swipe=this.tap=this.doubleTap=this.longTap=this.singleTap=this.pressMove=this.touchMove=this.touchEnd=this.touchCancel=this.twoFingerPressMove=null,window.removeEventListener("scroll",this._cancelAllHandler),null}}]),e}();function B(e){var t=function(){var e,t=document.createElement("fakeelement"),i={transition:"transitionend",OTransition:"oTransitionEnd",MozTransition:"transitionend",WebkitTransition:"webkitTransitionEnd"};for(e in i)if(void 0!==t.style[e])return i[e]}(),i=c(e,"gslide-media")?e:e.querySelector(".gslide-media"),n=e.querySelector(".gslide-description");h(i,"greset"),v(i,"translate3d(0, 0, 0)"),a(t,{onElement:i,once:!0,withCallback:function(e,t){d(i,"greset")}}),i.style.opacity="",n&&(n.style.opacity="")}function W(e){if(e.events.hasOwnProperty("touch"))return!1;var t,i,n,s=y(),l=s.width,o=s.height,r=!1,a=null,g=null,f=null,p=!1,m=1,x=1,b=!1,S=!1,w=null,T=null,k=null,C=null,E=0,A=0,L=!1,I=!1,O={},P={},M=0,X=0,z=document.getElementById("glightbox-slider"),Y=document.querySelector(".goverlay"),q=new _(z,{touchStart:function(t){if(r=!0,(c(t.targetTouches[0].target,"ginner-container")||u(t.targetTouches[0].target,".gslide-desc")||"a"==t.targetTouches[0].target.nodeName.toLowerCase())&&(r=!1),u(t.targetTouches[0].target,".gslide-inline")&&!c(t.targetTouches[0].target.parentNode,"gslide-inline")&&(r=!1),r){if(P=t.targetTouches[0],O.pageX=t.targetTouches[0].pageX,O.pageY=t.targetTouches[0].pageY,M=t.targetTouches[0].clientX,X=t.targetTouches[0].clientY,a=e.activeSlide,g=a.querySelector(".gslide-media"),n=a.querySelector(".gslide-inline"),f=null,c(g,"gslide-image")&&(f=g.querySelector("img")),d(Y,"greset"),t.pageX>20&&t.pageX<window.innerWidth-20)return;t.preventDefault()}},touchMove:function(s){if(r&&(P=s.targetTouches[0],!b&&!S)){if(n&&n.offsetHeight>o){var a=O.pageX-P.pageX;if(Math.abs(a)<=13)return!1}p=!0;var h,d=s.targetTouches[0].clientX,c=s.targetTouches[0].clientY,u=M-d,m=X-c;if(Math.abs(u)>Math.abs(m)?(L=!1,I=!0):(I=!1,L=!0),t=P.pageX-O.pageX,E=100*t/l,i=P.pageY-O.pageY,A=100*i/o,L&&f&&(h=1-Math.abs(i)/o,Y.style.opacity=h,e.settings.touchFollowAxis&&(E=0)),I&&(h=1-Math.abs(t)/l,g.style.opacity=h,e.settings.touchFollowAxis&&(A=0)),!f)return v(g,"translate3d(".concat(E,"%, 0, 0)"));v(g,"translate3d(".concat(E,"%, ").concat(A,"%, 0)"))}},touchEnd:function(){if(r){if(p=!1,S||b)return k=w,void(C=T);var t=Math.abs(parseInt(A)),i=Math.abs(parseInt(E));if(!(t>29&&f))return t<29&&i<25?(h(Y,"greset"),Y.style.opacity=1,B(g)):void 0;e.close()}},multipointEnd:function(){setTimeout((function(){b=!1}),50)},multipointStart:function(){b=!0,m=x||1},pinch:function(e){if(!f||p)return!1;b=!0,f.scaleX=f.scaleY=m*e.zoom;var t=m*e.zoom;if(S=!0,t<=1)return S=!1,t=1,C=null,k=null,w=null,T=null,void f.setAttribute("style","");t>4.5&&(t=4.5),f.style.transform="scale3d(".concat(t,", ").concat(t,", 1)"),x=t},pressMove:function(e){if(S&&!b){var t=P.pageX-O.pageX,i=P.pageY-O.pageY;k&&(t+=k),C&&(i+=C),w=t,T=i;var n="translate3d(".concat(t,"px, ").concat(i,"px, 0)");x&&(n+=" scale3d(".concat(x,", ").concat(x,", 1)")),v(f,n)}},swipe:function(t){if(!S)if(b)b=!1;else{if("Left"==t.direction){if(e.index==e.elements.length-1)return B(g);e.nextSlide()}if("Right"==t.direction){if(0==e.index)return B(g);e.prevSlide()}}}});e.events.touch=q}var H=function(){function e(i,n){var s=this,l=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;if(t(this,e),this.img=i,this.slide=n,this.onclose=l,this.img.setZoomEvents)return!1;this.active=!1,this.zoomedIn=!1,this.dragging=!1,this.currentX=null,this.currentY=null,this.initialX=null,this.initialY=null,this.xOffset=0,this.yOffset=0,this.img.addEventListener("mousedown",(function(e){return s.dragStart(e)}),!1),this.img.addEventListener("mouseup",(function(e){return s.dragEnd(e)}),!1),this.img.addEventListener("mousemove",(function(e){return s.drag(e)}),!1),this.img.addEventListener("click",(function(e){return s.slide.classList.contains("dragging-nav")?(s.zoomOut(),!1):s.zoomedIn?void(s.zoomedIn&&!s.dragging&&s.zoomOut()):s.zoomIn()}),!1),this.img.setZoomEvents=!0}return n(e,[{key:"zoomIn",value:function(){var e=this.widowWidth();if(!(this.zoomedIn||e<=768)){var t=this.img;if(t.setAttribute("data-style",t.getAttribute("style")),t.style.maxWidth=t.naturalWidth+"px",t.style.maxHeight=t.naturalHeight+"px",t.naturalWidth>e){var i=e/2-t.naturalWidth/2;this.setTranslate(this.img.parentNode,i,0)}this.slide.classList.add("zoomed"),this.zoomedIn=!0}}},{key:"zoomOut",value:function(){this.img.parentNode.setAttribute("style",""),this.img.setAttribute("style",this.img.getAttribute("data-style")),this.slide.classList.remove("zoomed"),this.zoomedIn=!1,this.currentX=null,this.currentY=null,this.initialX=null,this.initialY=null,this.xOffset=0,this.yOffset=0,this.onclose&&"function"==typeof this.onclose&&this.onclose()}},{key:"dragStart",value:function(e){e.preventDefault(),this.zoomedIn?("touchstart"===e.type?(this.initialX=e.touches[0].clientX-this.xOffset,this.initialY=e.touches[0].clientY-this.yOffset):(this.initialX=e.clientX-this.xOffset,this.initialY=e.clientY-this.yOffset),e.target===this.img&&(this.active=!0,this.img.classList.add("dragging"))):this.active=!1}},{key:"dragEnd",value:function(e){var t=this;e.preventDefault(),this.initialX=this.currentX,this.initialY=this.currentY,this.active=!1,setTimeout((function(){t.dragging=!1,t.img.isDragging=!1,t.img.classList.remove("dragging")}),100)}},{key:"drag",value:function(e){this.active&&(e.preventDefault(),"touchmove"===e.type?(this.currentX=e.touches[0].clientX-this.initialX,this.currentY=e.touches[0].clientY-this.initialY):(this.currentX=e.clientX-this.initialX,this.currentY=e.clientY-this.initialY),this.xOffset=this.currentX,this.yOffset=this.currentY,this.img.isDragging=!0,this.dragging=!0,this.setTranslate(this.img,this.currentX,this.currentY))}},{key:"onMove",value:function(e){if(this.zoomedIn){var t=e.clientX-this.img.naturalWidth/2,i=e.clientY-this.img.naturalHeight/2;this.setTranslate(this.img,t,i)}}},{key:"setTranslate",value:function(e,t,i){e.style.transform="translate3d("+t+"px, "+i+"px, 0)"}},{key:"widowWidth",value:function(){return window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth}}]),e}(),V=function(){function e(){var i=this,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};t(this,e);var s=n.dragEl,l=n.toleranceX,o=void 0===l?40:l,r=n.toleranceY,a=void 0===r?65:r,h=n.slide,d=void 0===h?null:h,c=n.instance,u=void 0===c?null:c;this.el=s,this.active=!1,this.dragging=!1,this.currentX=null,this.currentY=null,this.initialX=null,this.initialY=null,this.xOffset=0,this.yOffset=0,this.direction=null,this.lastDirection=null,this.toleranceX=o,this.toleranceY=a,this.toleranceReached=!1,this.dragContainer=this.el,this.slide=d,this.instance=u,this.el.addEventListener("mousedown",(function(e){return i.dragStart(e)}),!1),this.el.addEventListener("mouseup",(function(e){return i.dragEnd(e)}),!1),this.el.addEventListener("mousemove",(function(e){return i.drag(e)}),!1)}return n(e,[{key:"dragStart",value:function(e){if(this.slide.classList.contains("zoomed"))this.active=!1;else{"touchstart"===e.type?(this.initialX=e.touches[0].clientX-this.xOffset,this.initialY=e.touches[0].clientY-this.yOffset):(this.initialX=e.clientX-this.xOffset,this.initialY=e.clientY-this.yOffset);var t=e.target.nodeName.toLowerCase();e.target.classList.contains("nodrag")||u(e.target,".nodrag")||-1!==["input","select","textarea","button","a"].indexOf(t)?this.active=!1:(e.preventDefault(),(e.target===this.el||"img"!==t&&u(e.target,".gslide-inline"))&&(this.active=!0,this.el.classList.add("dragging"),this.dragContainer=u(e.target,".ginner-container")))}}},{key:"dragEnd",value:function(e){var t=this;e&&e.preventDefault(),this.initialX=0,this.initialY=0,this.currentX=null,this.currentY=null,this.initialX=null,this.initialY=null,this.xOffset=0,this.yOffset=0,this.active=!1,this.doSlideChange&&(this.instance.preventOutsideClick=!0,"right"==this.doSlideChange&&this.instance.prevSlide(),"left"==this.doSlideChange&&this.instance.nextSlide()),this.doSlideClose&&this.instance.close(),this.toleranceReached||this.setTranslate(this.dragContainer,0,0,!0),setTimeout((function(){t.instance.preventOutsideClick=!1,t.toleranceReached=!1,t.lastDirection=null,t.dragging=!1,t.el.isDragging=!1,t.el.classList.remove("dragging"),t.slide.classList.remove("dragging-nav"),t.dragContainer.style.transform="",t.dragContainer.style.transition=""}),100)}},{key:"drag",value:function(e){if(this.active){e.preventDefault(),this.slide.classList.add("dragging-nav"),"touchmove"===e.type?(this.currentX=e.touches[0].clientX-this.initialX,this.currentY=e.touches[0].clientY-this.initialY):(this.currentX=e.clientX-this.initialX,this.currentY=e.clientY-this.initialY),this.xOffset=this.currentX,this.yOffset=this.currentY,this.el.isDragging=!0,this.dragging=!0,this.doSlideChange=!1,this.doSlideClose=!1;var t=Math.abs(this.currentX),i=Math.abs(this.currentY);if(t>0&&t>=Math.abs(this.currentY)&&(!this.lastDirection||"x"==this.lastDirection)){this.yOffset=0,this.lastDirection="x",this.setTranslate(this.dragContainer,this.currentX,0);var n=this.shouldChange();if(!this.instance.settings.dragAutoSnap&&n&&(this.doSlideChange=n),this.instance.settings.dragAutoSnap&&n)return this.instance.preventOutsideClick=!0,this.toleranceReached=!0,this.active=!1,this.instance.preventOutsideClick=!0,this.dragEnd(null),"right"==n&&this.instance.prevSlide(),void("left"==n&&this.instance.nextSlide())}if(this.toleranceY>0&&i>0&&i>=t&&(!this.lastDirection||"y"==this.lastDirection)){this.xOffset=0,this.lastDirection="y",this.setTranslate(this.dragContainer,0,this.currentY);var s=this.shouldClose();return!this.instance.settings.dragAutoSnap&&s&&(this.doSlideClose=!0),void(this.instance.settings.dragAutoSnap&&s&&this.instance.close())}}}},{key:"shouldChange",value:function(){var e=!1;if(Math.abs(this.currentX)>=this.toleranceX){var t=this.currentX>0?"right":"left";("left"==t&&this.slide!==this.slide.parentNode.lastChild||"right"==t&&this.slide!==this.slide.parentNode.firstChild)&&(e=t)}return e}},{key:"shouldClose",value:function(){var e=!1;return Math.abs(this.currentY)>=this.toleranceY&&(e=!0),e}},{key:"setTranslate",value:function(e,t,i){var n=arguments.length>3&&void 0!==arguments[3]&&arguments[3];e.style.transition=n?"all .2s ease":"",e.style.transform="translate3d(".concat(t,"px, ").concat(i,"px, 0)")}}]),e}();function j(e,t,i,n){var s=e.querySelector(".gslide-media"),l=new Image,o="gSlideTitle_"+i,r="gSlideDesc_"+i;l.addEventListener("load",(function(){T(n)&&n()}),!1),l.src=t.href,l.alt="",""!==t.title&&l.setAttribute("aria-labelledby",o),""!==t.description&&l.setAttribute("aria-describedby",r),s.insertBefore(l,s.firstChild)}function F(e,t,i,n){var s=this,l=e.querySelector(".ginner-container"),o="gvideo"+i,r=e.querySelector(".gslide-media"),a=this.getAllPlayers();h(l,"gvideo-container"),r.insertBefore(m('<div class="gvideo-wrapper"></div>'),r.firstChild);var d=e.querySelector(".gvideo-wrapper");S(this.settings.plyr.css,"Plyr");var c=t.href,u=location.protocol.replace(":",""),g="",v="",f=!1;"file"==u&&(u="http"),r.style.maxWidth=t.width,S(this.settings.plyr.js,"Plyr",(function(){if(c.match(/vimeo\.com\/([0-9]*)/)){var l=/vimeo.*\/(\d+)/i.exec(c);g="vimeo",v=l[1]}if(c.match(/(youtube\.com|youtube-nocookie\.com)\/watch\?v=([a-zA-Z0-9\-_]+)/)||c.match(/youtu\.be\/([a-zA-Z0-9\-_]+)/)||c.match(/(youtube\.com|youtube-nocookie\.com)\/embed\/([a-zA-Z0-9\-_]+)/)){var r=function(e){var t="";t=void 0!==(e=e.replace(/(>|<)/gi,"").split(/(vi\/|v=|\/v\/|youtu\.be\/|\/embed\/)/))[2]?(t=e[2].split(/[^0-9a-z_\-]/i))[0]:e;return t}(c);g="youtube",v=r}if(null!==c.match(/\.(mp4|ogg|webm|mov)$/)){g="local";var u='<video id="'+o+'" ';u+='style="background:#000; max-width: '.concat(t.width,';" '),u+='preload="metadata" ',u+='x-webkit-airplay="allow" ',u+='webkit-playsinline="" ',u+="controls ",u+='class="gvideo-local">';var p=c.toLowerCase().split(".").pop(),y={mp4:"",ogg:"",webm:""};for(var x in y[p="mov"==p?"mp4":p]=c,y)if(y.hasOwnProperty(x)){var S=y[x];t.hasOwnProperty(x)&&(S=t[x]),""!==S&&(u+='<source src="'.concat(S,'" type="video/').concat(x,'">'))}f=m(u+="</video>")}var w=f||m('<div id="'.concat(o,'" data-plyr-provider="').concat(g,'" data-plyr-embed-id="').concat(v,'"></div>'));h(d,"".concat(g,"-video gvideo")),d.appendChild(w),d.setAttribute("data-id",o),d.setAttribute("data-index",i);var k=O(s.settings.plyr,"config")?s.settings.plyr.config:{},C=new Plyr("#"+o,k);C.on("ready",(function(e){var t=e.detail.plyr;a[o]=t,T(n)&&n()})),b((function(){return e.querySelector("iframe")&&"true"==e.querySelector("iframe").dataset.ready}),(function(){s.resize(e)})),C.on("enterfullscreen",R),C.on("exitfullscreen",R)}))}function R(e){var t=u(e.target,".gslide-media");"enterfullscreen"==e.type&&h(t,"fullscreen"),"exitfullscreen"==e.type&&d(t,"fullscreen")}function G(e,t,i,n){var s,l=this,o=e.querySelector(".gslide-media"),r=!(!O(t,"href")||!t.href)&&t.href.split("#").pop().trim(),d=!(!O(t,"content")||!t.content)&&t.content;if(d&&(k(d)&&(s=m('<div class="ginlined-content">'.concat(d,"</div>"))),C(d))){"none"==d.style.display&&(d.style.display="block");var c=document.createElement("div");c.className="ginlined-content",c.appendChild(d),s=c}if(r){var u=document.getElementById(r);if(!u)return!1;var g=u.cloneNode(!0);g.style.height=t.height,g.style.maxWidth=t.width,h(g,"ginlined-content"),s=g}if(!s)return console.error("Unable to append inline slide content",t),!1;o.style.height=t.height,o.style.width=t.width,o.appendChild(s),this.events["inlineclose"+r]=a("click",{onElement:o.querySelectorAll(".gtrigger-close"),withCallback:function(e){e.preventDefault(),l.close()}}),T(n)&&n()}function Z(e,t,i,n){var s=e.querySelector(".gslide-media"),l=function(e){var t=e.url,i=e.allow,n=e.callback,s=e.appendTo,l=document.createElement("iframe");return l.className="vimeo-video gvideo",l.src=t,l.style.width="100%",l.style.height="100%",i&&l.setAttribute("allow",i),l.onload=function(){h(l,"node-ready"),T(n)&&n()},s&&s.appendChild(l),l}({url:t.href,callback:n});s.parentNode.style.maxWidth=t.width,s.parentNode.style.height=t.height,s.appendChild(l)}var $=function(){function e(){var i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};t(this,e),this.defaults={href:"",title:"",type:"",description:"",descPosition:"bottom",effect:"",width:"",height:"",content:!1,zoomable:!0,draggable:!0},L(i)&&(this.defaults=l(this.defaults,i))}return n(e,[{key:"sourceType",value:function(e){var t=e;if(null!==(e=e.toLowerCase()).match(/\.(jpeg|jpg|jpe|gif|png|apn|webp|svg)$/))return"image";if(e.match(/(youtube\.com|youtube-nocookie\.com)\/watch\?v=([a-zA-Z0-9\-_]+)/)||e.match(/youtu\.be\/([a-zA-Z0-9\-_]+)/)||e.match(/(youtube\.com|youtube-nocookie\.com)\/embed\/([a-zA-Z0-9\-_]+)/))return"video";if(e.match(/vimeo\.com\/([0-9]*)/))return"video";if(null!==e.match(/\.(mp4|ogg|webm|mov)$/))return"video";if(null!==e.match(/\.(mp3|wav|wma|aac|ogg)$/))return"audio";if(e.indexOf("#")>-1&&""!==t.split("#").pop().trim())return"inline";return e.indexOf("goajax=true")>-1?"ajax":"external"}},{key:"parseConfig",value:function(e,t){var i=this,n=l({descPosition:t.descPosition},this.defaults);if(L(e)&&!C(e)){O(e,"type")||(O(e,"content")&&e.content?e.type="inline":O(e,"href")&&(e.type=this.sourceType(e.href)));var s=l(n,e);return this.setSize(s,t),s}var r="",a=e.getAttribute("data-glightbox"),h=e.nodeName.toLowerCase();if("a"===h&&(r=e.href),"img"===h&&(r=e.src),n.href=r,o(n,(function(s,l){O(t,l)&&"width"!==l&&(n[l]=t[l]);var o=e.dataset[l];I(o)||(n[l]=i.sanitizeValue(o))})),n.content&&(n.type="inline"),!n.type&&r&&(n.type=this.sourceType(r)),I(a)){if(!n.title&&"a"==h){var d=e.title;I(d)||""===d||(n.title=d)}if(!n.title&&"img"==h){var c=e.alt;I(c)||""===c||(n.title=c)}}else{var u=[];o(n,(function(e,t){u.push(";\\s?"+t)})),u=u.join("\\s?:|"),""!==a.trim()&&o(n,(function(e,t){var s=a,l=new RegExp("s?"+t+"s?:s?(.*?)("+u+"s?:|$)"),o=s.match(l);if(o&&o.length&&o[1]){var r=o[1].trim().replace(/;\s*$/,"");n[t]=i.sanitizeValue(r)}}))}if(n.description&&"."==n.description.substring(0,1)&&document.querySelector(n.description))n.description=document.querySelector(n.description).innerHTML;else{var g=e.querySelector(".glightbox-desc");g&&(n.description=g.innerHTML)}return this.setSize(n,t),this.slideConfig=n,n}},{key:"setSize",value:function(e,t){var i="video"==e.type?this.checkSize(t.videosWidth):this.checkSize(t.width),n=this.checkSize(t.height);return e.width=O(e,"width")&&""!==e.width?this.checkSize(e.width):i,e.height=O(e,"height")&&""!==e.height?this.checkSize(e.height):n,e}},{key:"checkSize",value:function(e){return M(e)?"".concat(e,"px"):e}},{key:"sanitizeValue",value:function(e){return"true"!==e&&"false"!==e?e:"true"===e}}]),e}(),U=function(){function e(i,n,s){t(this,e),this.element=i,this.instance=n,this.index=s}return n(e,[{key:"setContent",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,i=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(c(t,"loaded"))return!1;var n=this.instance.settings,s=this.slideConfig,l=w();T(n.beforeSlideLoad)&&n.beforeSlideLoad({index:this.index,slide:t,player:!1});var o=s.type,r=s.descPosition,a=t.querySelector(".gslide-media"),d=t.querySelector(".gslide-title"),u=t.querySelector(".gslide-desc"),g=t.querySelector(".gdesc-inner"),v=i,f="gSlideTitle_"+this.index,p="gSlideDesc_"+this.index;if(T(n.afterSlideLoad)&&(v=function(){T(i)&&i(),n.afterSlideLoad({index:e.index,slide:t,player:e.instance.getSlidePlayerInstance(e.index)})}),""==s.title&&""==s.description?g&&g.parentNode.parentNode.removeChild(g.parentNode):(d&&""!==s.title?(d.id=f,d.innerHTML=s.title):d.parentNode.removeChild(d),u&&""!==s.description?(u.id=p,l&&n.moreLength>0?(s.smallDescription=this.slideShortDesc(s.description,n.moreLength,n.moreText),u.innerHTML=s.smallDescription,this.descriptionEvents(u,s)):u.innerHTML=s.description):u.parentNode.removeChild(u),h(a.parentNode,"desc-".concat(r)),h(g.parentNode,"description-".concat(r))),h(a,"gslide-".concat(o)),h(t,"loaded"),"video"!==o){if("external"!==o)return"inline"===o?(G.apply(this.instance,[t,s,this.index,v]),void(n.draggable&&new V({dragEl:t.querySelector(".gslide-inline"),toleranceX:n.dragToleranceX,toleranceY:n.dragToleranceY,slide:t,instance:this.instance}))):void("image"!==o?T(v)&&v():j(t,s,this.index,(function(){var i=t.querySelector("img");n.draggable&&new V({dragEl:i,toleranceX:n.dragToleranceX,toleranceY:n.dragToleranceY,slide:t,instance:e.instance}),s.zoomable&&i.naturalWidth>i.offsetWidth&&(h(i,"zoomable"),new H(i,t,(function(){e.instance.resize()}))),T(v)&&v()})));Z.apply(this,[t,s,this.index,v])}else F.apply(this.instance,[t,s,this.index,v])}},{key:"slideShortDesc",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:50,i=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=document.createElement("div");n.innerHTML=e;var s=n.innerText,l=i;if((e=s.trim()).length<=t)return e;var o=e.substr(0,t-1);return l?(n=null,o+'... <a href="#" class="desc-more">'+i+"</a>"):o}},{key:"descriptionEvents",value:function(e,t){var i=this,n=e.querySelector(".desc-more");if(!n)return!1;a("click",{onElement:n,withCallback:function(e,n){e.preventDefault();var s=document.body,l=u(n,".gslide-desc");if(!l)return!1;l.innerHTML=t.description,h(s,"gdesc-open");var o=a("click",{onElement:[s,u(l,".gslide-description")],withCallback:function(e,n){"a"!==e.target.nodeName.toLowerCase()&&(d(s,"gdesc-open"),h(s,"gdesc-closed"),l.innerHTML=t.smallDescription,i.descriptionEvents(l,t),setTimeout((function(){d(s,"gdesc-closed")}),400),o.destroy())}})}})}},{key:"create",value:function(){return m(this.instance.settings.slideHTML)}},{key:"getConfig",value:function(){var e=new $(this.instance.settings.slideExtraAttributes);return this.slideConfig=e.parseConfig(this.element,this.instance.settings),this.slideConfig}}]),e}(),J=w(),K=null!==w()||void 0!==document.createTouch||"ontouchstart"in window||"onmsgesturechange"in window||navigator.msMaxTouchPoints,Q=document.getElementsByTagName("html")[0],ee={selector:".glightbox",elements:null,skin:"clean",theme:"clean",closeButton:!0,startAt:null,autoplayVideos:!0,autofocusVideos:!0,descPosition:"bottom",width:"900px",height:"506px",videosWidth:"960px",beforeSlideChange:null,afterSlideChange:null,beforeSlideLoad:null,afterSlideLoad:null,slideInserted:null,slideRemoved:null,slideExtraAttributes:null,onOpen:null,onClose:null,loop:!1,zoomable:!0,draggable:!0,dragAutoSnap:!1,dragToleranceX:40,dragToleranceY:65,preload:!0,oneSlidePerOpen:!1,touchNavigation:!0,touchFollowAxis:!0,keyboardNavigation:!0,closeOnOutsideClick:!0,plugins:!1,plyr:{css:"https://cdn.plyr.io/3.6.3/plyr.css",js:"https://cdn.plyr.io/3.6.3/plyr.js",config:{ratio:"16:9",fullscreen:{enabled:!0,iosNative:!0},youtube:{noCookie:!0,rel:0,showinfo:0,iv_load_policy:3},vimeo:{byline:!1,portrait:!1,title:!1,transparent:!1}}},openEffect:"zoom",closeEffect:"zoom",slideEffect:"slide",moreText:"See more",moreLength:60,cssEfects:{fade:{in:"fadeIn",out:"fadeOut"},zoom:{in:"zoomIn",out:"zoomOut"},slide:{in:"slideInRight",out:"slideOutLeft"},slideBack:{in:"slideInLeft",out:"slideOutRight"},none:{in:"none",out:"none"}},svg:{close:'<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" xml:space="preserve"><g><g><path d="M505.943,6.058c-8.077-8.077-21.172-8.077-29.249,0L6.058,476.693c-8.077,8.077-8.077,21.172,0,29.249C10.096,509.982,15.39,512,20.683,512c5.293,0,10.586-2.019,14.625-6.059L505.943,35.306C514.019,27.23,514.019,14.135,505.943,6.058z"/></g></g><g><g><path d="M505.942,476.694L35.306,6.059c-8.076-8.077-21.172-8.077-29.248,0c-8.077,8.076-8.077,21.171,0,29.248l470.636,470.636c4.038,4.039,9.332,6.058,14.625,6.058c5.293,0,10.587-2.019,14.624-6.057C514.018,497.866,514.018,484.771,505.942,476.694z"/></g></g></svg>',next:'<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 477.175 477.175" xml:space="preserve"> <g><path d="M360.731,229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1,0s-5.3,13.8,0,19.1l215.5,215.5l-215.5,215.5c-5.3,5.3-5.3,13.8,0,19.1c2.6,2.6,6.1,4,9.5,4c3.4,0,6.9-1.3,9.5-4l225.1-225.1C365.931,242.875,365.931,234.275,360.731,229.075z"/></g></svg>',prev:'<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 477.175 477.175" xml:space="preserve"><g><path d="M145.188,238.575l215.5-215.5c5.3-5.3,5.3-13.8,0-19.1s-13.8-5.3-19.1,0l-225.1,225.1c-5.3,5.3-5.3,13.8,0,19.1l225.1,225c2.6,2.6,6.1,4,9.5,4s6.9-1.3,9.5-4c5.3-5.3,5.3-13.8,0-19.1L145.188,238.575z"/></g></svg>'},slideHTML:'<div class="gslide">\n    <div class="gslide-inner-content">\n        <div class="ginner-container">\n            <div class="gslide-media">\n            </div>\n            <div class="gslide-description">\n                <div class="gdesc-inner">\n                    <h4 class="gslide-title"></h4>\n                    <div class="gslide-desc"></div>\n                </div>\n            </div>\n        </div>\n    </div>\n</div>',lightboxHTML:'<div id="glightbox-body" class="glightbox-container" tabindex="-1" role="dialog" aria-hidden="false">\n    <div class="gloader visible"></div>\n    <div class="goverlay"></div>\n    <div class="gcontainer">\n    <div id="glightbox-slider" class="gslider"></div>\n    <button class="gclose gbtn" aria-label="Close" data-taborder="3">{closeSVG}</button>\n    <button class="gprev gbtn" aria-label="Previous" data-taborder="2">{prevSVG}</button>\n    <button class="gnext gbtn" aria-label="Next" data-taborder="1">{nextSVG}</button>\n</div>\n</div>'},te=function(){function e(){var i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};t(this,e),this.settings=l(ee,i),this.effectsClasses=this.getAnimationClasses(),this.videoPlayers={},this.apiEvents=[],this.fullElementsList=!1}return n(e,[{key:"init",value:function(){var e=this,t=this.getSelector();t&&(this.baseEvents=a("click",{onElement:t,withCallback:function(t,i){t.preventDefault(),e.open(i)}})),this.elements=this.getElements()}},{key:"open",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(0==this.elements.length)return!1;this.activeSlide=null,this.prevActiveSlideIndex=null,this.prevActiveSlide=null;var i=M(t)?t:this.settings.startAt;if(C(e)){var n=e.getAttribute("data-gallery");n&&(this.fullElementsList=this.elements,this.elements=this.getGalleryElements(this.elements,n)),I(i)&&(i=this.getElementIndex(e))<0&&(i=0)}M(i)||(i=0),this.build(),g(this.overlay,"none"==this.settings.openEffect?"none":this.settings.cssEfects.fade.in);var s=document.body,l=window.innerWidth-document.documentElement.clientWidth;if(l>0){var o=document.createElement("style");o.type="text/css",o.className="gcss-styles",o.innerText=".gscrollbar-fixer {margin-right: ".concat(l,"px}"),document.head.appendChild(o),h(s,"gscrollbar-fixer")}h(s,"glightbox-open"),h(Q,"glightbox-open"),J&&(h(document.body,"glightbox-mobile"),this.settings.slideEffect="slide"),this.showSlide(i,!0),1==this.elements.length?(h(this.prevButton,"glightbox-button-hidden"),h(this.nextButton,"glightbox-button-hidden")):(d(this.prevButton,"glightbox-button-hidden"),d(this.nextButton,"glightbox-button-hidden")),this.lightboxOpen=!0,this.trigger("open"),T(this.settings.onOpen)&&this.settings.onOpen(),K&&this.settings.touchNavigation&&W(this),this.settings.keyboardNavigation&&z(this)}},{key:"openAt",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;this.open(null,e)}},{key:"showSlide",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,i=arguments.length>1&&void 0!==arguments[1]&&arguments[1];f(this.loader),this.index=parseInt(t);var n=this.slidesContainer.querySelector(".current");n&&d(n,"current"),this.slideAnimateOut();var s=this.slidesContainer.querySelectorAll(".gslide")[t];if(c(s,"loaded"))this.slideAnimateIn(s,i),p(this.loader);else{f(this.loader);var l=this.elements[t],o={index:this.index,slide:s,slideNode:s,slideConfig:l.slideConfig,slideIndex:this.index,trigger:l.node,player:null};this.trigger("slide_before_load",o),l.instance.setContent(s,(function(){p(e.loader),e.resize(),e.slideAnimateIn(s,i),e.trigger("slide_after_load",o)}))}this.slideDescription=s.querySelector(".gslide-description"),this.slideDescriptionContained=this.slideDescription&&c(this.slideDescription.parentNode,"gslide-media"),this.settings.preload&&(this.preloadSlide(t+1),this.preloadSlide(t-1)),this.updateNavigationClasses(),this.activeSlide=s}},{key:"preloadSlide",value:function(e){var t=this;if(e<0||e>this.elements.length-1)return!1;if(I(this.elements[e]))return!1;var i=this.slidesContainer.querySelectorAll(".gslide")[e];if(c(i,"loaded"))return!1;var n=this.elements[e],s=n.type,l={index:e,slide:i,slideNode:i,slideConfig:n.slideConfig,slideIndex:e,trigger:n.node,player:null};this.trigger("slide_before_load",l),"video"==s||"external"==s?setTimeout((function(){n.instance.setContent(i,(function(){t.trigger("slide_after_load",l)}))}),200):n.instance.setContent(i,(function(){t.trigger("slide_after_load",l)}))}},{key:"prevSlide",value:function(){this.goToSlide(this.index-1)}},{key:"nextSlide",value:function(){this.goToSlide(this.index+1)}},{key:"goToSlide",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];if(this.prevActiveSlide=this.activeSlide,this.prevActiveSlideIndex=this.index,!this.loop()&&(e<0||e>this.elements.length-1))return!1;e<0?e=this.elements.length-1:e>=this.elements.length&&(e=0),this.showSlide(e)}},{key:"insertSlide",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:-1;t<0&&(t=this.elements.length);var i=new U(e,this,t),n=i.getConfig(),s=l({},n),o=i.create(),r=this.elements.length-1;s.index=t,s.node=!1,s.instance=i,s.slideConfig=n,this.elements.splice(t,0,s);var a=null,h=null;if(this.slidesContainer){if(t>r)this.slidesContainer.appendChild(o);else{var d=this.slidesContainer.querySelectorAll(".gslide")[t];this.slidesContainer.insertBefore(o,d)}(this.settings.preload&&0==this.index&&0==t||this.index-1==t||this.index+1==t)&&this.preloadSlide(t),0==this.index&&0==t&&(this.index=1),this.updateNavigationClasses(),a=this.slidesContainer.querySelectorAll(".gslide")[t],h=this.getSlidePlayerInstance(t),s.slideNode=a}this.trigger("slide_inserted",{index:t,slide:a,slideNode:a,slideConfig:n,slideIndex:t,trigger:null,player:h}),T(this.settings.slideInserted)&&this.settings.slideInserted({index:t,slide:a,player:h})}},{key:"removeSlide",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:-1;if(e<0||e>this.elements.length-1)return!1;var t=this.slidesContainer&&this.slidesContainer.querySelectorAll(".gslide")[e];t&&(this.getActiveSlideIndex()==e&&(e==this.elements.length-1?this.prevSlide():this.nextSlide()),t.parentNode.removeChild(t)),this.elements.splice(e,1),this.trigger("slide_removed",e),T(this.settings.slideRemoved)&&this.settings.slideRemoved(e)}},{key:"slideAnimateIn",value:function(e,t){var i=this,n=e.querySelector(".gslide-media"),s=e.querySelector(".gslide-description"),l={index:this.prevActiveSlideIndex,slide:this.prevActiveSlide,slideNode:this.prevActiveSlide,slideIndex:this.prevActiveSlide,slideConfig:I(this.prevActiveSlideIndex)?null:this.elements[this.prevActiveSlideIndex].slideConfig,trigger:I(this.prevActiveSlideIndex)?null:this.elements[this.prevActiveSlideIndex].node,player:this.getSlidePlayerInstance(this.prevActiveSlideIndex)},o={index:this.index,slide:this.activeSlide,slideNode:this.activeSlide,slideConfig:this.elements[this.index].slideConfig,slideIndex:this.index,trigger:this.elements[this.index].node,player:this.getSlidePlayerInstance(this.index)};if(n.offsetWidth>0&&s&&(p(s),s.style.display=""),d(e,this.effectsClasses),t)g(e,this.settings.cssEfects[this.settings.openEffect].in,(function(){i.settings.autoplayVideos&&i.slidePlayerPlay(e),i.trigger("slide_changed",{prev:l,current:o}),T(i.settings.afterSlideChange)&&i.settings.afterSlideChange.apply(i,[l,o])}));else{var r=this.settings.slideEffect,a="none"!==r?this.settings.cssEfects[r].in:r;this.prevActiveSlideIndex>this.index&&"slide"==this.settings.slideEffect&&(a=this.settings.cssEfects.slideBack.in),g(e,a,(function(){i.settings.autoplayVideos&&i.slidePlayerPlay(e),i.trigger("slide_changed",{prev:l,current:o}),T(i.settings.afterSlideChange)&&i.settings.afterSlideChange.apply(i,[l,o])}))}setTimeout((function(){i.resize(e)}),100),h(e,"current")}},{key:"slideAnimateOut",value:function(){if(!this.prevActiveSlide)return!1;var e=this.prevActiveSlide;d(e,this.effectsClasses),h(e,"prev");var t=this.settings.slideEffect,i="none"!==t?this.settings.cssEfects[t].out:t;this.slidePlayerPause(e),this.trigger("slide_before_change",{prev:{index:this.prevActiveSlideIndex,slide:this.prevActiveSlide,slideNode:this.prevActiveSlide,slideIndex:this.prevActiveSlideIndex,slideConfig:I(this.prevActiveSlideIndex)?null:this.elements[this.prevActiveSlideIndex].slideConfig,trigger:I(this.prevActiveSlideIndex)?null:this.elements[this.prevActiveSlideIndex].node,player:this.getSlidePlayerInstance(this.prevActiveSlideIndex)},current:{index:this.index,slide:this.activeSlide,slideNode:this.activeSlide,slideIndex:this.index,slideConfig:this.elements[this.index].slideConfig,trigger:this.elements[this.index].node,player:this.getSlidePlayerInstance(this.index)}}),T(this.settings.beforeSlideChange)&&this.settings.beforeSlideChange.apply(this,[{index:this.prevActiveSlideIndex,slide:this.prevActiveSlide,player:this.getSlidePlayerInstance(this.prevActiveSlideIndex)},{index:this.index,slide:this.activeSlide,player:this.getSlidePlayerInstance(this.index)}]),this.prevActiveSlideIndex>this.index&&"slide"==this.settings.slideEffect&&(i=this.settings.cssEfects.slideBack.out),g(e,i,(function(){var t=e.querySelector(".gslide-media"),i=e.querySelector(".gslide-description");t.style.transform="",d(t,"greset"),t.style.opacity="",i&&(i.style.opacity=""),d(e,"prev")}))}},{key:"getAllPlayers",value:function(){return this.videoPlayers}},{key:"getSlidePlayerInstance",value:function(e){var t="gvideo"+e,i=this.getAllPlayers();return!(!O(i,t)||!i[t])&&i[t]}},{key:"stopSlideVideo",value:function(e){if(C(e)){var t=e.querySelector(".gvideo-wrapper");t&&(e=t.getAttribute("data-index"))}console.log("stopSlideVideo is deprecated, use slidePlayerPause");var i=this.getSlidePlayerInstance(e);i&&i.playing&&i.pause()}},{key:"slidePlayerPause",value:function(e){if(C(e)){var t=e.querySelector(".gvideo-wrapper");t&&(e=t.getAttribute("data-index"))}var i=this.getSlidePlayerInstance(e);i&&i.playing&&i.pause()}},{key:"playSlideVideo",value:function(e){if(C(e)){var t=e.querySelector(".gvideo-wrapper");t&&(e=t.getAttribute("data-index"))}console.log("playSlideVideo is deprecated, use slidePlayerPlay");var i=this.getSlidePlayerInstance(e);i&&!i.playing&&i.play()}},{key:"slidePlayerPlay",value:function(e){if(C(e)){var t=e.querySelector(".gvideo-wrapper");t&&(e=t.getAttribute("data-index"))}var i=this.getSlidePlayerInstance(e);i&&!i.playing&&(i.play(),this.settings.autofocusVideos&&i.elements.container.focus())}},{key:"setElements",value:function(e){var t=this;this.settings.elements=!1;var i=[];e&&e.length&&o(e,(function(e,n){var s=new U(e,t,n),o=s.getConfig(),r=l({},o);r.slideConfig=o,r.instance=s,r.index=n,i.push(r)})),this.elements=i,this.lightboxOpen&&(this.slidesContainer.innerHTML="",this.elements.length&&(o(this.elements,(function(){var e=m(t.settings.slideHTML);t.slidesContainer.appendChild(e)})),this.showSlide(0,!0)))}},{key:"getElementIndex",value:function(e){var t=!1;return o(this.elements,(function(i,n){if(O(i,"node")&&i.node==e)return t=n,!0})),t}},{key:"getElements",value:function(){var e=this,t=[];this.elements=this.elements?this.elements:[],!I(this.settings.elements)&&E(this.settings.elements)&&this.settings.elements.length&&o(this.settings.elements,(function(i,n){var s=new U(i,e,n),o=s.getConfig(),r=l({},o);r.node=!1,r.index=n,r.instance=s,r.slideConfig=o,t.push(r)}));var i=!1;return this.getSelector()&&(i=document.querySelectorAll(this.getSelector())),i?(o(i,(function(i,n){var s=new U(i,e,n),o=s.getConfig(),r=l({},o);r.node=i,r.index=n,r.instance=s,r.slideConfig=o,r.gallery=i.getAttribute("data-gallery"),t.push(r)})),t):t}},{key:"getGalleryElements",value:function(e,t){return e.filter((function(e){return e.gallery==t}))}},{key:"getSelector",value:function(){return!this.settings.elements&&(this.settings.selector&&"data-"==this.settings.selector.substring(0,5)?"*[".concat(this.settings.selector,"]"):this.settings.selector)}},{key:"getActiveSlide",value:function(){return this.slidesContainer.querySelectorAll(".gslide")[this.index]}},{key:"getActiveSlideIndex",value:function(){return this.index}},{key:"getAnimationClasses",value:function(){var e=[];for(var t in this.settings.cssEfects)if(this.settings.cssEfects.hasOwnProperty(t)){var i=this.settings.cssEfects[t];e.push("g".concat(i.in)),e.push("g".concat(i.out))}return e.join(" ")}},{key:"build",value:function(){var e=this;if(this.built)return!1;var t=document.body.childNodes,i=[];o(t,(function(e){e.parentNode==document.body&&"#"!==e.nodeName.charAt(0)&&e.hasAttribute&&!e.hasAttribute("aria-hidden")&&(i.push(e),e.setAttribute("aria-hidden","true"))}));var n=O(this.settings.svg,"next")?this.settings.svg.next:"",s=O(this.settings.svg,"prev")?this.settings.svg.prev:"",l=O(this.settings.svg,"close")?this.settings.svg.close:"",r=this.settings.lightboxHTML;r=m(r=(r=(r=r.replace(/{nextSVG}/g,n)).replace(/{prevSVG}/g,s)).replace(/{closeSVG}/g,l)),document.body.appendChild(r);var d=document.getElementById("glightbox-body");this.modal=d;var g=d.querySelector(".gclose");this.prevButton=d.querySelector(".gprev"),this.nextButton=d.querySelector(".gnext"),this.overlay=d.querySelector(".goverlay"),this.loader=d.querySelector(".gloader"),this.slidesContainer=document.getElementById("glightbox-slider"),this.bodyHiddenChildElms=i,this.events={},h(this.modal,"glightbox-"+this.settings.skin),this.settings.closeButton&&g&&(this.events.close=a("click",{onElement:g,withCallback:function(t,i){t.preventDefault(),e.close()}})),g&&!this.settings.closeButton&&g.parentNode.removeChild(g),this.nextButton&&(this.events.next=a("click",{onElement:this.nextButton,withCallback:function(t,i){t.preventDefault(),e.nextSlide()}})),this.prevButton&&(this.events.prev=a("click",{onElement:this.prevButton,withCallback:function(t,i){t.preventDefault(),e.prevSlide()}})),this.settings.closeOnOutsideClick&&(this.events.outClose=a("click",{onElement:d,withCallback:function(t,i){e.preventOutsideClick||c(document.body,"glightbox-mobile")||u(t.target,".ginner-container")||u(t.target,".gbtn")||c(t.target,"gnext")||c(t.target,"gprev")||e.close()}})),o(this.elements,(function(t,i){e.slidesContainer.appendChild(t.instance.create()),t.slideNode=e.slidesContainer.querySelectorAll(".gslide")[i]})),K&&h(document.body,"glightbox-touch"),this.events.resize=a("resize",{onElement:window,withCallback:function(){e.resize()}}),this.built=!0}},{key:"resize",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;if((e=e||this.activeSlide)&&!c(e,"zoomed")){var t=y(),i=e.querySelector(".gvideo-wrapper"),n=e.querySelector(".gslide-image"),s=this.slideDescription,l=t.width,o=t.height;if(l<=768?h(document.body,"glightbox-mobile"):d(document.body,"glightbox-mobile"),i||n){var r=!1;if(s&&(c(s,"description-bottom")||c(s,"description-top"))&&!c(s,"gabsolute")&&(r=!0),n)if(l<=768){var a=n.querySelector("img");a.setAttribute("style","")}else if(r){var u=s.offsetHeight,g=n.querySelector("img");g.setAttribute("style","max-height: calc(100vh - ".concat(u,"px)")),s.setAttribute("style","max-width: ".concat(g.offsetWidth,"px;"))}if(i){var v=O(this.settings.plyr.config,"ratio")?this.settings.plyr.config.ratio:"";if(!v){var f=i.clientWidth,p=i.clientHeight,m=f/p;v="".concat(f/m,":").concat(p/m)}var x=v.split(":"),b=this.settings.videosWidth,S=this.settings.videosWidth,w=(S=M(b)||-1!==b.indexOf("px")?parseInt(b):-1!==b.indexOf("vw")?l*parseInt(b)/100:-1!==b.indexOf("vh")?o*parseInt(b)/100:-1!==b.indexOf("%")?l*parseInt(b)/100:parseInt(i.clientWidth))/(parseInt(x[0])/parseInt(x[1]));if(w=Math.floor(w),r&&(o-=s.offsetHeight),S>l||w>o||o<w&&l>S){var T=i.offsetWidth,k=i.offsetHeight,C=o/k,E={width:T*C,height:k*C};i.parentNode.setAttribute("style","max-width: ".concat(E.width,"px")),r&&s.setAttribute("style","max-width: ".concat(E.width,"px;"))}else i.parentNode.style.maxWidth="".concat(S),r&&s.setAttribute("style","max-width: ".concat(S,";"))}}}}},{key:"reload",value:function(){this.init()}},{key:"updateNavigationClasses",value:function(){var e=this.loop();d(this.nextButton,"disabled"),d(this.prevButton,"disabled"),0==this.index&&this.elements.length-1==0?(h(this.prevButton,"disabled"),h(this.nextButton,"disabled")):0!==this.index||e?this.index!==this.elements.length-1||e||h(this.nextButton,"disabled"):h(this.prevButton,"disabled")}},{key:"loop",value:function(){var e=O(this.settings,"loopAtEnd")?this.settings.loopAtEnd:null;return e=O(this.settings,"loop")?this.settings.loop:e,e}},{key:"close",value:function(){var e=this;if(!this.lightboxOpen){if(this.events){for(var t in this.events)this.events.hasOwnProperty(t)&&this.events[t].destroy();this.events=null}return!1}if(this.closing)return!1;this.closing=!0,this.slidePlayerPause(this.activeSlide),this.fullElementsList&&(this.elements=this.fullElementsList),this.bodyHiddenChildElms.length&&o(this.bodyHiddenChildElms,(function(e){e.removeAttribute("aria-hidden")})),h(this.modal,"glightbox-closing"),g(this.overlay,"none"==this.settings.openEffect?"none":this.settings.cssEfects.fade.out),g(this.activeSlide,this.settings.cssEfects[this.settings.closeEffect].out,(function(){if(e.activeSlide=null,e.prevActiveSlideIndex=null,e.prevActiveSlide=null,e.built=!1,e.events){for(var t in e.events)e.events.hasOwnProperty(t)&&e.events[t].destroy();e.events=null}var i=document.body;d(Q,"glightbox-open"),d(i,"glightbox-open touching gdesc-open glightbox-touch glightbox-mobile gscrollbar-fixer"),e.modal.parentNode.removeChild(e.modal),e.trigger("close"),T(e.settings.onClose)&&e.settings.onClose();var n=document.querySelector(".gcss-styles");n&&n.parentNode.removeChild(n),e.lightboxOpen=!1,e.closing=null}))}},{key:"destroy",value:function(){this.close(),this.clearAllEvents(),this.baseEvents&&this.baseEvents.destroy()}},{key:"on",value:function(e,t){var i=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(!e||!T(t))throw new TypeError("Event name and callback must be defined");this.apiEvents.push({evt:e,once:i,callback:t})}},{key:"once",value:function(e,t){this.on(e,t,!0)}},{key:"trigger",value:function(e){var t=this,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=[];o(this.apiEvents,(function(t,s){var l=t.evt,o=t.once,r=t.callback;l==e&&(r(i),o&&n.push(s))})),n.length&&o(n,(function(e){return t.apiEvents.splice(e,1)}))}},{key:"clearAllEvents",value:function(){this.apiEvents.splice(0,this.apiEvents.length)}},{key:"version",value:function(){return"3.0.8"}}]),e}();return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=new te(e);return t.init(),t}}));
\ No newline at end of file
diff --git a/public/js/vendor/highlight/bash.min.js b/public/js/vendor/highlight/bash.min.js
new file mode 100644
index 0000000..6f303be
--- /dev/null
+++ b/public/js/vendor/highlight/bash.min.js
@@ -0,0 +1,20 @@
+/*! `bash` grammar compiled for Highlight.js 11.3.1 */
+(()=>{var e=(()=>{"use strict";return e=>{const s=e.regex,t={},n={begin:/\$\{/,
+end:/\}/,contains:["self",{begin:/:-/,contains:[t]}]};Object.assign(t,{
+className:"variable",variants:[{
+begin:s.concat(/\$[\w\d#@][\w\d_]*/,"(?![\\w\\d])(?![$])")},n]});const a={
+className:"subst",begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE]},i={
+begin:/<<-?\s*(?=\w+)/,starts:{contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,
+end:/(\w+)/,className:"string"})]}},c={className:"string",begin:/"/,end:/"/,
+contains:[e.BACKSLASH_ESCAPE,t,a]};a.contains.push(c);const o={begin:/\$\(\(/,
+end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:"number"},e.NUMBER_MODE,t]
+},r=e.SHEBANG({binary:"(fish|bash|zsh|sh|csh|ksh|tcsh|dash|scsh)",relevance:10
+}),l={className:"function",begin:/\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin:!0,
+contains:[e.inherit(e.TITLE_MODE,{begin:/\w[\w\d_]*/})],relevance:0};return{
+name:"Bash",aliases:["sh"],keywords:{$pattern:/\b[a-z._-]+\b/,
+keyword:["if","then","else","elif","fi","for","while","in","do","done","case","esac","function"],
+literal:["true","false"],
+built_in:["break","cd","continue","eval","exec","exit","export","getopts","hash","pwd","readonly","return","shift","test","times","trap","umask","unset","alias","bind","builtin","caller","command","declare","echo","enable","help","let","local","logout","mapfile","printf","read","readarray","source","type","typeset","ulimit","unalias","set","shopt","autoload","bg","bindkey","bye","cap","chdir","clone","comparguments","compcall","compctl","compdescribe","compfiles","compgroups","compquote","comptags","comptry","compvalues","dirs","disable","disown","echotc","echoti","emulate","fc","fg","float","functions","getcap","getln","history","integer","jobs","kill","limit","log","noglob","popd","print","pushd","pushln","rehash","sched","setcap","setopt","stat","suspend","ttyctl","unfunction","unhash","unlimit","unsetopt","vared","wait","whence","where","which","zcompile","zformat","zftp","zle","zmodload","zparseopts","zprof","zpty","zregexparse","zsocket","zstyle","ztcp","chcon","chgrp","chown","chmod","cp","dd","df","dir","dircolors","ln","ls","mkdir","mkfifo","mknod","mktemp","mv","realpath","rm","rmdir","shred","sync","touch","truncate","vdir","b2sum","base32","base64","cat","cksum","comm","csplit","cut","expand","fmt","fold","head","join","md5sum","nl","numfmt","od","paste","ptx","pr","sha1sum","sha224sum","sha256sum","sha384sum","sha512sum","shuf","sort","split","sum","tac","tail","tr","tsort","unexpand","uniq","wc","arch","basename","chroot","date","dirname","du","echo","env","expr","factor","groups","hostid","id","link","logname","nice","nohup","nproc","pathchk","pinky","printenv","printf","pwd","readlink","runcon","seq","sleep","stat","stdbuf","stty","tee","test","timeout","tty","uname","unlink","uptime","users","who","whoami","yes"]
+},contains:[r,e.SHEBANG(),l,o,e.HASH_COMMENT_MODE,i,{match:/(\/[a-z._-]+)+/},c,{
+className:"",begin:/\\"/},{className:"string",begin:/'/,end:/'/},t]}}})()
+;hljs.registerLanguage("bash",e)})();
\ No newline at end of file
diff --git a/public/js/vendor/highlight/csharp.min.js b/public/js/vendor/highlight/csharp.min.js
new file mode 100644
index 0000000..5504b75
--- /dev/null
+++ b/public/js/vendor/highlight/csharp.min.js
@@ -0,0 +1,45 @@
+hljs.registerLanguage("csharp",(()=>{"use strict";return e=>{const n={
+keyword:["abstract","as","base","break","case","catch","class","const","continue","do","else","event","explicit","extern","finally","fixed","for","foreach","goto","if","implicit","in","interface","internal","is","lock","namespace","new","operator","out","override","params","private","protected","public","readonly","record","ref","return","sealed","sizeof","stackalloc","static","struct","switch","this","throw","try","typeof","unchecked","unsafe","using","virtual","void","volatile","while"].concat(["add","alias","and","ascending","async","await","by","descending","equals","from","get","global","group","init","into","join","let","nameof","not","notnull","on","or","orderby","partial","remove","select","set","unmanaged","value|0","var","when","where","with","yield"]),
+built_in:["bool","byte","char","decimal","delegate","double","dynamic","enum","float","int","long","nint","nuint","object","sbyte","short","string","ulong","uint","ushort"],
+literal:["default","false","null","true"]},i=e.inherit(e.TITLE_MODE,{
+begin:"[a-zA-Z](\\.?\\w)*"}),a={className:"number",variants:[{
+begin:"\\b(0b[01']+)"},{
+begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{
+begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"
+}],relevance:0},s={className:"string",begin:'@"',end:'"',contains:[{begin:'""'}]
+},t=e.inherit(s,{illegal:/\n/}),r={className:"subst",begin:/\{/,end:/\}/,
+keywords:n},l=e.inherit(r,{illegal:/\n/}),c={className:"string",begin:/\$"/,
+end:'"',illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/
+},e.BACKSLASH_ESCAPE,l]},o={className:"string",begin:/\$@"/,end:'"',contains:[{
+begin:/\{\{/},{begin:/\}\}/},{begin:'""'},r]},d=e.inherit(o,{illegal:/\n/,
+contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:'""'},l]})
+;r.contains=[o,c,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,a,e.C_BLOCK_COMMENT_MODE],
+l.contains=[d,c,t,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,a,e.inherit(e.C_BLOCK_COMMENT_MODE,{
+illegal:/\n/})];const g={variants:[o,c,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]
+},E={begin:"<",end:">",contains:[{beginKeywords:"in out"},i]
+},_=e.IDENT_RE+"(<"+e.IDENT_RE+"(\\s*,\\s*"+e.IDENT_RE+")*>)?(\\[\\])?",b={
+begin:"@"+e.IDENT_RE,relevance:0};return{name:"C#",aliases:["cs","c#"],
+keywords:n,illegal:/::/,contains:[e.COMMENT("///","$",{returnBegin:!0,
+contains:[{className:"doctag",variants:[{begin:"///",relevance:0},{
+begin:"\x3c!--|--\x3e"},{begin:"</?",end:">"}]}]
+}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"meta",begin:"#",
+end:"$",keywords:{
+keyword:"if else elif endif define undef warning error line region endregion pragma checksum"
+}},g,a,{beginKeywords:"class interface",relevance:0,end:/[{;=]/,
+illegal:/[^\s:,]/,contains:[{beginKeywords:"where class"
+},i,E,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"namespace",
+relevance:0,end:/[{;=]/,illegal:/[^\s:]/,
+contains:[i,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{
+beginKeywords:"record",relevance:0,end:/[{;=]/,illegal:/[^\s:]/,
+contains:[i,E,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"meta",
+begin:"^\\s*\\[(?=[\\w])",excludeBegin:!0,end:"\\]",excludeEnd:!0,contains:[{
+className:"string",begin:/"/,end:/"/}]},{
+beginKeywords:"new return throw await else",relevance:0},{className:"function",
+begin:"("+_+"\\s+)+"+e.IDENT_RE+"\\s*(<.+>\\s*)?\\(",returnBegin:!0,
+end:/\s*[{;=]/,excludeEnd:!0,keywords:n,contains:[{
+beginKeywords:"public private protected static internal protected abstract async extern override unsafe virtual new sealed partial",
+relevance:0},{begin:e.IDENT_RE+"\\s*(<.+>\\s*)?\\(",returnBegin:!0,
+contains:[e.TITLE_MODE,E],relevance:0},{className:"params",begin:/\(/,end:/\)/,
+excludeBegin:!0,excludeEnd:!0,keywords:n,relevance:0,
+contains:[g,a,e.C_BLOCK_COMMENT_MODE]
+},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},b]}}})());
\ No newline at end of file
diff --git a/public/js/vendor/highlight/default.min.css b/public/js/vendor/highlight/default.min.css
new file mode 100644
index 0000000..96e1842
--- /dev/null
+++ b/public/js/vendor/highlight/default.min.css
@@ -0,0 +1,9 @@
+/*!
+  Theme: Default
+  Description: Original highlight.js style
+  Author: (c) Ivan Sagalaev <maniac@softwaremaniacs.org>
+  Maintainer: @highlightjs/core-team
+  Website: https://highlightjs.org/
+  License: see project LICENSE
+  Touched: 2021
+*/pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{background:#f0f0f0;color:#444}.hljs-comment{color:#888}.hljs-punctuation,.hljs-tag{color:#444a}.hljs-tag .hljs-attr,.hljs-tag .hljs-name{color:#444}.hljs-attribute,.hljs-doctag,.hljs-keyword,.hljs-meta .hljs-keyword,.hljs-name,.hljs-selector-tag{font-weight:700}.hljs-deletion,.hljs-number,.hljs-quote,.hljs-selector-class,.hljs-selector-id,.hljs-string,.hljs-template-tag,.hljs-type{color:#800}.hljs-section,.hljs-title{color:#800;font-weight:700}.hljs-link,.hljs-operator,.hljs-regexp,.hljs-selector-attr,.hljs-selector-pseudo,.hljs-symbol,.hljs-template-variable,.hljs-variable{color:#bc6060}.hljs-literal{color:#78a960}.hljs-addition,.hljs-built_in,.hljs-bullet,.hljs-code{color:#397300}.hljs-meta{color:#1f7199}.hljs-meta .hljs-string{color:#4d99bf}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}
\ No newline at end of file
diff --git a/public/js/vendor/highlight/highlight.min.js b/public/js/vendor/highlight/highlight.min.js
new file mode 100644
index 0000000..d165961
--- /dev/null
+++ b/public/js/vendor/highlight/highlight.min.js
@@ -0,0 +1,748 @@
+/*!
+  Highlight.js v11.3.1 (git: 2a972d8658)
+  (c) 2006-2021 Ivan Sagalaev and other contributors
+  License: BSD-3-Clause
+ */
+var hljs=function(){"use strict";var e={exports:{}};function t(e){
+return e instanceof Map?e.clear=e.delete=e.set=()=>{
+throw Error("map is read-only")}:e instanceof Set&&(e.add=e.clear=e.delete=()=>{
+throw Error("set is read-only")
+}),Object.freeze(e),Object.getOwnPropertyNames(e).forEach((n=>{var i=e[n]
+;"object"!=typeof i||Object.isFrozen(i)||t(i)})),e}
+e.exports=t,e.exports.default=t;var n=e.exports;class i{constructor(e){
+void 0===e.data&&(e.data={}),this.data=e.data,this.isMatchIgnored=!1}
+ignoreMatch(){this.isMatchIgnored=!0}}function r(e){
+return e.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&#x27;")
+}function s(e,...t){const n=Object.create(null);for(const t in e)n[t]=e[t]
+;return t.forEach((e=>{for(const t in e)n[t]=e[t]})),n}const o=e=>!!e.kind
+;class a{constructor(e,t){
+this.buffer="",this.classPrefix=t.classPrefix,e.walk(this)}addText(e){
+this.buffer+=r(e)}openNode(e){if(!o(e))return;let t=e.kind
+;t=e.sublanguage?"language-"+t:((e,{prefix:t})=>{if(e.includes(".")){
+const n=e.split(".")
+;return[`${t}${n.shift()}`,...n.map(((e,t)=>`${e}${"_".repeat(t+1)}`))].join(" ")
+}return`${t}${e}`})(t,{prefix:this.classPrefix}),this.span(t)}closeNode(e){
+o(e)&&(this.buffer+="</span>")}value(){return this.buffer}span(e){
+this.buffer+=`<span class="${e}">`}}class c{constructor(){this.rootNode={
+children:[]},this.stack=[this.rootNode]}get top(){
+return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){
+this.top.children.push(e)}openNode(e){const t={kind:e,children:[]}
+;this.add(t),this.stack.push(t)}closeNode(){
+if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){
+for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)}
+walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,t){
+return"string"==typeof t?e.addText(t):t.children&&(e.openNode(t),
+t.children.forEach((t=>this._walk(e,t))),e.closeNode(t)),e}static _collapse(e){
+"string"!=typeof e&&e.children&&(e.children.every((e=>"string"==typeof e))?e.children=[e.children.join("")]:e.children.forEach((e=>{
+c._collapse(e)})))}}class l extends c{constructor(e){super(),this.options=e}
+addKeyword(e,t){""!==e&&(this.openNode(t),this.addText(e),this.closeNode())}
+addText(e){""!==e&&this.add(e)}addSublanguage(e,t){const n=e.root
+;n.kind=t,n.sublanguage=!0,this.add(n)}toHTML(){
+return new a(this,this.options).value()}finalize(){return!0}}function g(e){
+return e?"string"==typeof e?e:e.source:null}function d(e){return f("(?=",e,")")}
+function u(e){return f("(?:",e,")*")}function h(e){return f("(?:",e,")?")}
+function f(...e){return e.map((e=>g(e))).join("")}function p(...e){const t=(e=>{
+const t=e[e.length-1]
+;return"object"==typeof t&&t.constructor===Object?(e.splice(e.length-1,1),t):{}
+})(e);return"("+(t.capture?"":"?:")+e.map((e=>g(e))).join("|")+")"}
+function b(e){return RegExp(e.toString()+"|").exec("").length-1}
+const m=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./
+;function E(e,{joinWith:t}){let n=0;return e.map((e=>{n+=1;const t=n
+;let i=g(e),r="";for(;i.length>0;){const e=m.exec(i);if(!e){r+=i;break}
+r+=i.substring(0,e.index),
+i=i.substring(e.index+e[0].length),"\\"===e[0][0]&&e[1]?r+="\\"+(Number(e[1])+t):(r+=e[0],
+"("===e[0]&&n++)}return r})).map((e=>`(${e})`)).join(t)}
+const x="[a-zA-Z]\\w*",w="[a-zA-Z_]\\w*",y="\\b\\d+(\\.\\d+)?",_="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",v="\\b(0b[01]+)",O={
+begin:"\\\\[\\s\\S]",relevance:0},k={scope:"string",begin:"'",end:"'",
+illegal:"\\n",contains:[O]},N={scope:"string",begin:'"',end:'"',illegal:"\\n",
+contains:[O]},M=(e,t,n={})=>{const i=s({scope:"comment",begin:e,end:t,
+contains:[]},n);i.contains.push({scope:"doctag",
+begin:"[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)",
+end:/(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/,excludeBegin:!0,relevance:0})
+;const r=p("I","a","is","so","us","to","at","if","in","it","on",/[A-Za-z]+['](d|ve|re|ll|t|s|n)/,/[A-Za-z]+[-][a-z]+/,/[A-Za-z][a-z]{2,}/)
+;return i.contains.push({begin:f(/[ ]+/,"(",r,/[.]?[:]?([.][ ]|[ ])/,"){3}")}),i
+},S=M("//","$"),R=M("/\\*","\\*/"),j=M("#","$");var A=Object.freeze({
+__proto__:null,MATCH_NOTHING_RE:/\b\B/,IDENT_RE:x,UNDERSCORE_IDENT_RE:w,
+NUMBER_RE:y,C_NUMBER_RE:_,BINARY_NUMBER_RE:v,
+RE_STARTERS_RE:"!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",
+SHEBANG:(e={})=>{const t=/^#![ ]*\//
+;return e.binary&&(e.begin=f(t,/.*\b/,e.binary,/\b.*/)),s({scope:"meta",begin:t,
+end:/$/,relevance:0,"on:begin":(e,t)=>{0!==e.index&&t.ignoreMatch()}},e)},
+BACKSLASH_ESCAPE:O,APOS_STRING_MODE:k,QUOTE_STRING_MODE:N,PHRASAL_WORDS_MODE:{
+begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/
+},COMMENT:M,C_LINE_COMMENT_MODE:S,C_BLOCK_COMMENT_MODE:R,HASH_COMMENT_MODE:j,
+NUMBER_MODE:{scope:"number",begin:y,relevance:0},C_NUMBER_MODE:{scope:"number",
+begin:_,relevance:0},BINARY_NUMBER_MODE:{scope:"number",begin:v,relevance:0},
+REGEXP_MODE:{begin:/(?=\/[^/\n]*\/)/,contains:[{scope:"regexp",begin:/\//,
+end:/\/[gimuy]*/,illegal:/\n/,contains:[O,{begin:/\[/,end:/\]/,relevance:0,
+contains:[O]}]}]},TITLE_MODE:{scope:"title",begin:x,relevance:0},
+UNDERSCORE_TITLE_MODE:{scope:"title",begin:w,relevance:0},METHOD_GUARD:{
+begin:"\\.\\s*[a-zA-Z_]\\w*",relevance:0},END_SAME_AS_BEGIN:e=>Object.assign(e,{
+"on:begin":(e,t)=>{t.data._beginMatch=e[1]},"on:end":(e,t)=>{
+t.data._beginMatch!==e[1]&&t.ignoreMatch()}})});function I(e,t){
+"."===e.input[e.index-1]&&t.ignoreMatch()}function T(e,t){
+void 0!==e.className&&(e.scope=e.className,delete e.className)}function L(e,t){
+t&&e.beginKeywords&&(e.begin="\\b("+e.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)",
+e.__beforeBegin=I,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,
+void 0===e.relevance&&(e.relevance=0))}function B(e,t){
+Array.isArray(e.illegal)&&(e.illegal=p(...e.illegal))}function D(e,t){
+if(e.match){
+if(e.begin||e.end)throw Error("begin & end are not supported with match")
+;e.begin=e.match,delete e.match}}function P(e,t){
+void 0===e.relevance&&(e.relevance=1)}const H=(e,t)=>{if(!e.beforeMatch)return
+;if(e.starts)throw Error("beforeMatch cannot be used with starts")
+;const n=Object.assign({},e);Object.keys(e).forEach((t=>{delete e[t]
+})),e.keywords=n.keywords,e.begin=f(n.beforeMatch,d(n.begin)),e.starts={
+relevance:0,contains:[Object.assign(n,{endsParent:!0})]
+},e.relevance=0,delete n.beforeMatch
+},C=["of","and","for","in","not","or","if","then","parent","list","value"]
+;function $(e,t,n="keyword"){const i=Object.create(null)
+;return"string"==typeof e?r(n,e.split(" ")):Array.isArray(e)?r(n,e):Object.keys(e).forEach((n=>{
+Object.assign(i,$(e[n],t,n))})),i;function r(e,n){
+t&&(n=n.map((e=>e.toLowerCase()))),n.forEach((t=>{const n=t.split("|")
+;i[n[0]]=[e,U(n[0],n[1])]}))}}function U(e,t){
+return t?Number(t):(e=>C.includes(e.toLowerCase()))(e)?0:1}const z={},K=e=>{
+console.error(e)},W=(e,...t)=>{console.log("WARN: "+e,...t)},X=(e,t)=>{
+z[`${e}/${t}`]||(console.log(`Deprecated as of ${e}. ${t}`),z[`${e}/${t}`]=!0)
+},G=Error();function Z(e,t,{key:n}){let i=0;const r=e[n],s={},o={}
+;for(let e=1;e<=t.length;e++)o[e+i]=r[e],s[e+i]=!0,i+=b(t[e-1])
+;e[n]=o,e[n]._emit=s,e[n]._multi=!0}function F(e){(e=>{
+e.scope&&"object"==typeof e.scope&&null!==e.scope&&(e.beginScope=e.scope,
+delete e.scope)})(e),"string"==typeof e.beginScope&&(e.beginScope={
+_wrap:e.beginScope}),"string"==typeof e.endScope&&(e.endScope={_wrap:e.endScope
+}),(e=>{if(Array.isArray(e.begin)){
+if(e.skip||e.excludeBegin||e.returnBegin)throw K("skip, excludeBegin, returnBegin not compatible with beginScope: {}"),
+G
+;if("object"!=typeof e.beginScope||null===e.beginScope)throw K("beginScope must be object"),
+G;Z(e,e.begin,{key:"beginScope"}),e.begin=E(e.begin,{joinWith:""})}})(e),(e=>{
+if(Array.isArray(e.end)){
+if(e.skip||e.excludeEnd||e.returnEnd)throw K("skip, excludeEnd, returnEnd not compatible with endScope: {}"),
+G
+;if("object"!=typeof e.endScope||null===e.endScope)throw K("endScope must be object"),
+G;Z(e,e.end,{key:"endScope"}),e.end=E(e.end,{joinWith:""})}})(e)}function V(e){
+function t(t,n){
+return RegExp(g(t),"m"+(e.case_insensitive?"i":"")+(e.unicodeRegex?"u":"")+(n?"g":""))
+}class n{constructor(){
+this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}
+addRule(e,t){
+t.position=this.position++,this.matchIndexes[this.matchAt]=t,this.regexes.push([t,e]),
+this.matchAt+=b(e)+1}compile(){0===this.regexes.length&&(this.exec=()=>null)
+;const e=this.regexes.map((e=>e[1]));this.matcherRe=t(E(e,{joinWith:"|"
+}),!0),this.lastIndex=0}exec(e){this.matcherRe.lastIndex=this.lastIndex
+;const t=this.matcherRe.exec(e);if(!t)return null
+;const n=t.findIndex(((e,t)=>t>0&&void 0!==e)),i=this.matchIndexes[n]
+;return t.splice(0,n),Object.assign(t,i)}}class i{constructor(){
+this.rules=[],this.multiRegexes=[],
+this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){
+if(this.multiRegexes[e])return this.multiRegexes[e];const t=new n
+;return this.rules.slice(e).forEach((([e,n])=>t.addRule(e,n))),
+t.compile(),this.multiRegexes[e]=t,t}resumingScanAtSamePosition(){
+return 0!==this.regexIndex}considerAll(){this.regexIndex=0}addRule(e,t){
+this.rules.push([e,t]),"begin"===t.type&&this.count++}exec(e){
+const t=this.getMatcher(this.regexIndex);t.lastIndex=this.lastIndex
+;let n=t.exec(e)
+;if(this.resumingScanAtSamePosition())if(n&&n.index===this.lastIndex);else{
+const t=this.getMatcher(0);t.lastIndex=this.lastIndex+1,n=t.exec(e)}
+return n&&(this.regexIndex+=n.position+1,
+this.regexIndex===this.count&&this.considerAll()),n}}
+if(e.compilerExtensions||(e.compilerExtensions=[]),
+e.contains&&e.contains.includes("self"))throw Error("ERR: contains `self` is not supported at the top-level of a language.  See documentation.")
+;return e.classNameAliases=s(e.classNameAliases||{}),function n(r,o){const a=r
+;if(r.isCompiled)return a
+;[T,D,F,H].forEach((e=>e(r,o))),e.compilerExtensions.forEach((e=>e(r,o))),
+r.__beforeBegin=null,[L,B,P].forEach((e=>e(r,o))),r.isCompiled=!0;let c=null
+;return"object"==typeof r.keywords&&r.keywords.$pattern&&(r.keywords=Object.assign({},r.keywords),
+c=r.keywords.$pattern,
+delete r.keywords.$pattern),c=c||/\w+/,r.keywords&&(r.keywords=$(r.keywords,e.case_insensitive)),
+a.keywordPatternRe=t(c,!0),
+o&&(r.begin||(r.begin=/\B|\b/),a.beginRe=t(a.begin),r.end||r.endsWithParent||(r.end=/\B|\b/),
+r.end&&(a.endRe=t(a.end)),
+a.terminatorEnd=g(a.end)||"",r.endsWithParent&&o.terminatorEnd&&(a.terminatorEnd+=(r.end?"|":"")+o.terminatorEnd)),
+r.illegal&&(a.illegalRe=t(r.illegal)),
+r.contains||(r.contains=[]),r.contains=[].concat(...r.contains.map((e=>(e=>(e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map((t=>s(e,{
+variants:null},t)))),e.cachedVariants?e.cachedVariants:q(e)?s(e,{
+starts:e.starts?s(e.starts):null
+}):Object.isFrozen(e)?s(e):e))("self"===e?r:e)))),r.contains.forEach((e=>{n(e,a)
+})),r.starts&&n(r.starts,o),a.matcher=(e=>{const t=new i
+;return e.contains.forEach((e=>t.addRule(e.begin,{rule:e,type:"begin"
+}))),e.terminatorEnd&&t.addRule(e.terminatorEnd,{type:"end"
+}),e.illegal&&t.addRule(e.illegal,{type:"illegal"}),t})(a),a}(e)}function q(e){
+return!!e&&(e.endsWithParent||q(e.starts))}class J extends Error{
+constructor(e,t){super(e),this.name="HTMLInjectionError",this.html=t}}
+const Y=r,Q=s,ee=Symbol("nomatch");var te=(e=>{
+const t=Object.create(null),r=Object.create(null),s=[];let o=!0
+;const a="Could not find the language '{}', did you forget to load/include a language module?",c={
+disableAutodetect:!0,name:"Plain text",contains:[]};let g={
+ignoreUnescapedHTML:!1,throwUnescapedHTML:!1,noHighlightRe:/^(no-?highlight)$/i,
+languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-",
+cssSelector:"pre code",languages:null,__emitter:l};function b(e){
+return g.noHighlightRe.test(e)}function m(e,t,n){let i="",r=""
+;"object"==typeof t?(i=e,
+n=t.ignoreIllegals,r=t.language):(X("10.7.0","highlight(lang, code, ...args) has been deprecated."),
+X("10.7.0","Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277"),
+r=e,i=t),void 0===n&&(n=!0);const s={code:i,language:r};N("before:highlight",s)
+;const o=s.result?s.result:E(s.language,s.code,n)
+;return o.code=s.code,N("after:highlight",o),o}function E(e,n,r,s){
+const c=Object.create(null);function l(){if(!k.keywords)return void M.addText(S)
+;let e=0;k.keywordPatternRe.lastIndex=0;let t=k.keywordPatternRe.exec(S),n=""
+;for(;t;){n+=S.substring(e,t.index)
+;const r=y.case_insensitive?t[0].toLowerCase():t[0],s=(i=r,k.keywords[i]);if(s){
+const[e,i]=s
+;if(M.addText(n),n="",c[r]=(c[r]||0)+1,c[r]<=7&&(R+=i),e.startsWith("_"))n+=t[0];else{
+const n=y.classNameAliases[e]||e;M.addKeyword(t[0],n)}}else n+=t[0]
+;e=k.keywordPatternRe.lastIndex,t=k.keywordPatternRe.exec(S)}var i
+;n+=S.substr(e),M.addText(n)}function d(){null!=k.subLanguage?(()=>{
+if(""===S)return;let e=null;if("string"==typeof k.subLanguage){
+if(!t[k.subLanguage])return void M.addText(S)
+;e=E(k.subLanguage,S,!0,N[k.subLanguage]),N[k.subLanguage]=e._top
+}else e=x(S,k.subLanguage.length?k.subLanguage:null)
+;k.relevance>0&&(R+=e.relevance),M.addSublanguage(e._emitter,e.language)
+})():l(),S=""}function u(e,t){let n=1;for(;void 0!==t[n];){if(!e._emit[n]){n++
+;continue}const i=y.classNameAliases[e[n]]||e[n],r=t[n]
+;i?M.addKeyword(r,i):(S=r,l(),S=""),n++}}function h(e,t){
+return e.scope&&"string"==typeof e.scope&&M.openNode(y.classNameAliases[e.scope]||e.scope),
+e.beginScope&&(e.beginScope._wrap?(M.addKeyword(S,y.classNameAliases[e.beginScope._wrap]||e.beginScope._wrap),
+S=""):e.beginScope._multi&&(u(e.beginScope,t),S="")),k=Object.create(e,{parent:{
+value:k}}),k}function f(e,t,n){let r=((e,t)=>{const n=e&&e.exec(t)
+;return n&&0===n.index})(e.endRe,n);if(r){if(e["on:end"]){const n=new i(e)
+;e["on:end"](t,n),n.isMatchIgnored&&(r=!1)}if(r){
+for(;e.endsParent&&e.parent;)e=e.parent;return e}}
+if(e.endsWithParent)return f(e.parent,t,n)}function p(e){
+return 0===k.matcher.regexIndex?(S+=e[0],1):(I=!0,0)}function b(e){
+const t=e[0],i=n.substr(e.index),r=f(k,e,i);if(!r)return ee;const s=k
+;k.endScope&&k.endScope._wrap?(d(),
+M.addKeyword(t,k.endScope._wrap)):k.endScope&&k.endScope._multi?(d(),
+u(k.endScope,e)):s.skip?S+=t:(s.returnEnd||s.excludeEnd||(S+=t),
+d(),s.excludeEnd&&(S=t));do{
+k.scope&&M.closeNode(),k.skip||k.subLanguage||(R+=k.relevance),k=k.parent
+}while(k!==r.parent);return r.starts&&h(r.starts,e),s.returnEnd?0:t.length}
+let m={};function w(t,s){const a=s&&s[0];if(S+=t,null==a)return d(),0
+;if("begin"===m.type&&"end"===s.type&&m.index===s.index&&""===a){
+if(S+=n.slice(s.index,s.index+1),!o){const t=Error(`0 width match regex (${e})`)
+;throw t.languageName=e,t.badRule=m.rule,t}return 1}
+if(m=s,"begin"===s.type)return(e=>{
+const t=e[0],n=e.rule,r=new i(n),s=[n.__beforeBegin,n["on:begin"]]
+;for(const n of s)if(n&&(n(e,r),r.isMatchIgnored))return p(t)
+;return n.skip?S+=t:(n.excludeBegin&&(S+=t),
+d(),n.returnBegin||n.excludeBegin||(S=t)),h(n,e),n.returnBegin?0:t.length})(s)
+;if("illegal"===s.type&&!r){
+const e=Error('Illegal lexeme "'+a+'" for mode "'+(k.scope||"<unnamed>")+'"')
+;throw e.mode=k,e}if("end"===s.type){const e=b(s);if(e!==ee)return e}
+if("illegal"===s.type&&""===a)return 1
+;if(A>1e5&&A>3*s.index)throw Error("potential infinite loop, way more iterations than matches")
+;return S+=a,a.length}const y=v(e)
+;if(!y)throw K(a.replace("{}",e)),Error('Unknown language: "'+e+'"')
+;const _=V(y);let O="",k=s||_;const N={},M=new g.__emitter(g);(()=>{const e=[]
+;for(let t=k;t!==y;t=t.parent)t.scope&&e.unshift(t.scope)
+;e.forEach((e=>M.openNode(e)))})();let S="",R=0,j=0,A=0,I=!1;try{
+for(k.matcher.considerAll();;){
+A++,I?I=!1:k.matcher.considerAll(),k.matcher.lastIndex=j
+;const e=k.matcher.exec(n);if(!e)break;const t=w(n.substring(j,e.index),e)
+;j=e.index+t}return w(n.substr(j)),M.closeAllNodes(),M.finalize(),O=M.toHTML(),{
+language:e,value:O,relevance:R,illegal:!1,_emitter:M,_top:k}}catch(t){
+if(t.message&&t.message.includes("Illegal"))return{language:e,value:Y(n),
+illegal:!0,relevance:0,_illegalBy:{message:t.message,index:j,
+context:n.slice(j-100,j+100),mode:t.mode,resultSoFar:O},_emitter:M};if(o)return{
+language:e,value:Y(n),illegal:!1,relevance:0,errorRaised:t,_emitter:M,_top:k}
+;throw t}}function x(e,n){n=n||g.languages||Object.keys(t);const i=(e=>{
+const t={value:Y(e),illegal:!1,relevance:0,_top:c,_emitter:new g.__emitter(g)}
+;return t._emitter.addText(e),t})(e),r=n.filter(v).filter(k).map((t=>E(t,e,!1)))
+;r.unshift(i);const s=r.sort(((e,t)=>{
+if(e.relevance!==t.relevance)return t.relevance-e.relevance
+;if(e.language&&t.language){if(v(e.language).supersetOf===t.language)return 1
+;if(v(t.language).supersetOf===e.language)return-1}return 0})),[o,a]=s,l=o
+;return l.secondBest=a,l}function w(e){let t=null;const n=(e=>{
+let t=e.className+" ";t+=e.parentNode?e.parentNode.className:""
+;const n=g.languageDetectRe.exec(t);if(n){const t=v(n[1])
+;return t||(W(a.replace("{}",n[1])),
+W("Falling back to no-highlight mode for this block.",e)),t?n[1]:"no-highlight"}
+return t.split(/\s+/).find((e=>b(e)||v(e)))})(e);if(b(n))return
+;if(N("before:highlightElement",{el:e,language:n
+}),e.children.length>0&&(g.ignoreUnescapedHTML||(console.warn("One of your code blocks includes unescaped HTML. This is a potentially serious security risk."),
+console.warn("https://github.com/highlightjs/highlight.js/issues/2886"),
+console.warn(e)),
+g.throwUnescapedHTML))throw new J("One of your code blocks includes unescaped HTML.",e.innerHTML)
+;t=e;const i=t.textContent,s=n?m(i,{language:n,ignoreIllegals:!0}):x(i)
+;e.innerHTML=s.value,((e,t,n)=>{const i=t&&r[t]||n
+;e.classList.add("hljs"),e.classList.add("language-"+i)
+})(e,n,s.language),e.result={language:s.language,re:s.relevance,
+relevance:s.relevance},s.secondBest&&(e.secondBest={
+language:s.secondBest.language,relevance:s.secondBest.relevance
+}),N("after:highlightElement",{el:e,result:s,text:i})}let y=!1;function _(){
+"loading"!==document.readyState?document.querySelectorAll(g.cssSelector).forEach(w):y=!0
+}function v(e){return e=(e||"").toLowerCase(),t[e]||t[r[e]]}
+function O(e,{languageName:t}){"string"==typeof e&&(e=[e]),e.forEach((e=>{
+r[e.toLowerCase()]=t}))}function k(e){const t=v(e)
+;return t&&!t.disableAutodetect}function N(e,t){const n=e;s.forEach((e=>{
+e[n]&&e[n](t)}))}
+"undefined"!=typeof window&&window.addEventListener&&window.addEventListener("DOMContentLoaded",(()=>{
+y&&_()}),!1),Object.assign(e,{highlight:m,highlightAuto:x,highlightAll:_,
+highlightElement:w,
+highlightBlock:e=>(X("10.7.0","highlightBlock will be removed entirely in v12.0"),
+X("10.7.0","Please use highlightElement now."),w(e)),configure:e=>{g=Q(g,e)},
+initHighlighting:()=>{
+_(),X("10.6.0","initHighlighting() deprecated.  Use highlightAll() now.")},
+initHighlightingOnLoad:()=>{
+_(),X("10.6.0","initHighlightingOnLoad() deprecated.  Use highlightAll() now.")
+},registerLanguage:(n,i)=>{let r=null;try{r=i(e)}catch(e){
+if(K("Language definition for '{}' could not be registered.".replace("{}",n)),
+!o)throw e;K(e),r=c}
+r.name||(r.name=n),t[n]=r,r.rawDefinition=i.bind(null,e),r.aliases&&O(r.aliases,{
+languageName:n})},unregisterLanguage:e=>{delete t[e]
+;for(const t of Object.keys(r))r[t]===e&&delete r[t]},
+listLanguages:()=>Object.keys(t),getLanguage:v,registerAliases:O,
+autoDetection:k,inherit:Q,addPlugin:e=>{(e=>{
+e["before:highlightBlock"]&&!e["before:highlightElement"]&&(e["before:highlightElement"]=t=>{
+e["before:highlightBlock"](Object.assign({block:t.el},t))
+}),e["after:highlightBlock"]&&!e["after:highlightElement"]&&(e["after:highlightElement"]=t=>{
+e["after:highlightBlock"](Object.assign({block:t.el},t))})})(e),s.push(e)}
+}),e.debugMode=()=>{o=!1},e.safeMode=()=>{o=!0
+},e.versionString="11.3.1",e.regex={concat:f,lookahead:d,either:p,optional:h,
+anyNumberOfTimes:u};for(const e in A)"object"==typeof A[e]&&n(A[e])
+;return Object.assign(e,A),e})({});return te}()
+;"object"==typeof exports&&"undefined"!=typeof module&&(module.exports=hljs);/*! `javascript` grammar compiled for Highlight.js 11.3.1 */
+(()=>{var e=(()=>{"use strict"
+;const e="[A-Za-z$_][0-9A-Za-z$_]*",n=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],a=["true","false","null","undefined","NaN","Infinity"],t=["Object","Function","Boolean","Symbol","Math","Date","Number","BigInt","String","RegExp","Array","Float32Array","Float64Array","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Int32Array","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array","Set","Map","WeakSet","WeakMap","ArrayBuffer","SharedArrayBuffer","Atomics","DataView","JSON","Promise","Generator","GeneratorFunction","AsyncFunction","Reflect","Proxy","Intl","WebAssembly"],s=["Error","EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],r=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],c=["arguments","this","super","console","window","document","localStorage","module","global"],i=[].concat(r,t,s)
+;return o=>{const l=o.regex,b=e,d={begin:/<[A-Za-z0-9\\._:-]+/,
+end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(e,n)=>{
+const a=e[0].length+e.index,t=e.input[a]
+;if("<"===t||","===t)return void n.ignoreMatch();let s
+;">"===t&&(((e,{after:n})=>{const a="</"+e[0].slice(1)
+;return-1!==e.input.indexOf(a,n)})(e,{after:a
+})||n.ignoreMatch()),(s=e.input.substr(a).match(/^\s+extends\s+/))&&0===s.index&&n.ignoreMatch()
+}},g={$pattern:e,keyword:n,literal:a,built_in:i,"variable.language":c
+},u="\\.([0-9](_?[0-9])*)",m="0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*",E={
+className:"number",variants:[{
+begin:`(\\b(${m})((${u})|\\.)?|(${u}))[eE][+-]?([0-9](_?[0-9])*)\\b`},{
+begin:`\\b(${m})\\b((${u})\\b|\\.)?|(${u})\\b`},{
+begin:"\\b(0|[1-9](_?[0-9])*)n\\b"},{
+begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b"},{
+begin:"\\b0[bB][0-1](_?[0-1])*n?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*n?\\b"},{
+begin:"\\b0[0-7]+n?\\b"}],relevance:0},A={className:"subst",begin:"\\$\\{",
+end:"\\}",keywords:g,contains:[]},y={begin:"html`",end:"",starts:{end:"`",
+returnEnd:!1,contains:[o.BACKSLASH_ESCAPE,A],subLanguage:"xml"}},N={
+begin:"css`",end:"",starts:{end:"`",returnEnd:!1,
+contains:[o.BACKSLASH_ESCAPE,A],subLanguage:"css"}},_={className:"string",
+begin:"`",end:"`",contains:[o.BACKSLASH_ESCAPE,A]},f={className:"comment",
+variants:[o.COMMENT(/\/\*\*(?!\/)/,"\\*/",{relevance:0,contains:[{
+begin:"(?=@[A-Za-z]+)",relevance:0,contains:[{className:"doctag",
+begin:"@[A-Za-z]+"},{className:"type",begin:"\\{",end:"\\}",excludeEnd:!0,
+excludeBegin:!0,relevance:0},{className:"variable",begin:b+"(?=\\s*(-)|$)",
+endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]
+}),o.C_BLOCK_COMMENT_MODE,o.C_LINE_COMMENT_MODE]
+},h=[o.APOS_STRING_MODE,o.QUOTE_STRING_MODE,y,N,_,E];A.contains=h.concat({
+begin:/\{/,end:/\}/,keywords:g,contains:["self"].concat(h)})
+;const v=[].concat(f,A.contains),p=v.concat([{begin:/\(/,end:/\)/,keywords:g,
+contains:["self"].concat(v)}]),S={className:"params",begin:/\(/,end:/\)/,
+excludeBegin:!0,excludeEnd:!0,keywords:g,contains:p},w={variants:[{
+match:[/class/,/\s+/,b,/\s+/,/extends/,/\s+/,l.concat(b,"(",l.concat(/\./,b),")*")],
+scope:{1:"keyword",3:"title.class",5:"keyword",7:"title.class.inherited"}},{
+match:[/class/,/\s+/,b],scope:{1:"keyword",3:"title.class"}}]},R={relevance:0,
+match:l.either(/\bJSON/,/\b[A-Z][a-z]+([A-Z][a-z]+|\d)*/,/\b[A-Z]{2,}([A-Z][a-z]+|\d)+/),
+className:"title.class",keywords:{_:[...t,...s]}},O={variants:[{
+match:[/function/,/\s+/,b,/(?=\s*\()/]},{match:[/function/,/\s*(?=\()/]}],
+className:{1:"keyword",3:"title.function"},label:"func.def",contains:[S],
+illegal:/%/},I={
+match:l.concat(/\b/,(k=[...r,"super"],l.concat("(?!",k.join("|"),")")),b,l.lookahead(/\(/)),
+className:"title.function",relevance:0};var k;const x={
+begin:l.concat(/\./,l.lookahead(l.concat(b,/(?![0-9A-Za-z$_(])/))),end:b,
+excludeBegin:!0,keywords:"prototype",className:"property",relevance:0},T={
+match:[/get|set/,/\s+/,b,/(?=\()/],className:{1:"keyword",3:"title.function"},
+contains:[{begin:/\(\)/},S]
+},C="(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|"+o.UNDERSCORE_IDENT_RE+")\\s*=>",M={
+match:[/const|var|let/,/\s+/,b,/\s*/,/=\s*/,l.lookahead(C)],className:{
+1:"keyword",3:"title.function"},contains:[S]};return{name:"Javascript",
+aliases:["js","jsx","mjs","cjs"],keywords:g,exports:{PARAMS_CONTAINS:p,
+CLASS_REFERENCE:R},illegal:/#(?![$_A-z])/,contains:[o.SHEBANG({label:"shebang",
+binary:"node",relevance:5}),{label:"use_strict",className:"meta",relevance:10,
+begin:/^\s*['"]use (strict|asm)['"]/
+},o.APOS_STRING_MODE,o.QUOTE_STRING_MODE,y,N,_,f,E,R,{className:"attr",
+begin:b+l.lookahead(":"),relevance:0},M,{
+begin:"("+o.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",
+keywords:"return throw case",relevance:0,contains:[f,o.REGEXP_MODE,{
+className:"function",begin:C,returnBegin:!0,end:"\\s*=>",contains:[{
+className:"params",variants:[{begin:o.UNDERSCORE_IDENT_RE,relevance:0},{
+className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,
+excludeEnd:!0,keywords:g,contains:p}]}]},{begin:/,/,relevance:0},{match:/\s+/,
+relevance:0},{variants:[{begin:"<>",end:"</>"},{
+match:/<[A-Za-z0-9\\._:-]+\s*\/>/},{begin:d.begin,
+"on:begin":d.isTrulyOpeningTag,end:d.end}],subLanguage:"xml",contains:[{
+begin:d.begin,end:d.end,skip:!0,contains:["self"]}]}]},O,{
+beginKeywords:"while if switch catch for"},{
+begin:"\\b(?!function)"+o.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",
+returnBegin:!0,label:"func.def",contains:[S,o.inherit(o.TITLE_MODE,{begin:b,
+className:"title.function"})]},{match:/\.\.\./,relevance:0},x,{match:"\\$"+b,
+relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:"title.function"},
+contains:[S]},I,{relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,
+className:"variable.constant"},w,T,{match:/\$[(.]/}]}}})()
+;hljs.registerLanguage("javascript",e)})();/*! `cpp` grammar compiled for Highlight.js 11.3.1 */
+(()=>{var e=(()=>{"use strict";return e=>{const t=e.regex,a=e.COMMENT("//","$",{
+contains:[{begin:/\\\n/}]
+}),n="[a-zA-Z_]\\w*::",r="(?!struct)(decltype\\(auto\\)|"+t.optional(n)+"[a-zA-Z_]\\w*"+t.optional("<[^<>]+>")+")",i={
+className:"type",begin:"\\b[a-z\\d_]*_t\\b"},s={className:"string",variants:[{
+begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{
+begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)",
+end:"'",illegal:"."},e.END_SAME_AS_BEGIN({
+begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},c={
+className:"number",variants:[{begin:"\\b(0b[01']+)"},{
+begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"
+},{
+begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"
+}],relevance:0},o={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{
+keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"
+},contains:[{begin:/\\\n/,relevance:0},e.inherit(s,{className:"string"}),{
+className:"string",begin:/<.*?>/},a,e.C_BLOCK_COMMENT_MODE]},l={
+className:"title",begin:t.optional(n)+e.IDENT_RE,relevance:0
+},d=t.optional(n)+e.IDENT_RE+"\\s*\\(",u={
+type:["bool","char","char16_t","char32_t","char8_t","double","float","int","long","short","void","wchar_t","unsigned","signed","const","static"],
+keyword:["alignas","alignof","and","and_eq","asm","atomic_cancel","atomic_commit","atomic_noexcept","auto","bitand","bitor","break","case","catch","class","co_await","co_return","co_yield","compl","concept","const_cast|10","consteval","constexpr","constinit","continue","decltype","default","delete","do","dynamic_cast|10","else","enum","explicit","export","extern","false","final","for","friend","goto","if","import","inline","module","mutable","namespace","new","noexcept","not","not_eq","nullptr","operator","or","or_eq","override","private","protected","public","reflexpr","register","reinterpret_cast|10","requires","return","sizeof","static_assert","static_cast|10","struct","switch","synchronized","template","this","thread_local","throw","transaction_safe","transaction_safe_dynamic","true","try","typedef","typeid","typename","union","using","virtual","volatile","while","xor","xor_eq"],
+literal:["NULL","false","nullopt","nullptr","true"],built_in:["_Pragma"],
+_type_hints:["any","auto_ptr","barrier","binary_semaphore","bitset","complex","condition_variable","condition_variable_any","counting_semaphore","deque","false_type","future","imaginary","initializer_list","istringstream","jthread","latch","lock_guard","multimap","multiset","mutex","optional","ostringstream","packaged_task","pair","promise","priority_queue","queue","recursive_mutex","recursive_timed_mutex","scoped_lock","set","shared_future","shared_lock","shared_mutex","shared_timed_mutex","shared_ptr","stack","string_view","stringstream","timed_mutex","thread","true_type","tuple","unique_lock","unique_ptr","unordered_map","unordered_multimap","unordered_multiset","unordered_set","variant","vector","weak_ptr","wstring","wstring_view"]
+},p={className:"function.dispatch",relevance:0,keywords:{
+_hint:["abort","abs","acos","apply","as_const","asin","atan","atan2","calloc","ceil","cerr","cin","clog","cos","cosh","cout","declval","endl","exchange","exit","exp","fabs","floor","fmod","forward","fprintf","fputs","free","frexp","fscanf","future","invoke","isalnum","isalpha","iscntrl","isdigit","isgraph","islower","isprint","ispunct","isspace","isupper","isxdigit","labs","launder","ldexp","log","log10","make_pair","make_shared","make_shared_for_overwrite","make_tuple","make_unique","malloc","memchr","memcmp","memcpy","memset","modf","move","pow","printf","putchar","puts","realloc","scanf","sin","sinh","snprintf","sprintf","sqrt","sscanf","std","stderr","stdin","stdout","strcat","strchr","strcmp","strcpy","strcspn","strlen","strncat","strncmp","strncpy","strpbrk","strrchr","strspn","strstr","swap","tan","tanh","terminate","to_underlying","tolower","toupper","vfprintf","visit","vprintf","vsprintf"]
+},
+begin:t.concat(/\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!switch)/,/(?!while)/,e.IDENT_RE,t.lookahead(/(<[^<>]+>|)\s*\(/))
+},_=[p,o,i,a,e.C_BLOCK_COMMENT_MODE,c,s],m={variants:[{begin:/=/,end:/;/},{
+begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],
+keywords:u,contains:_.concat([{begin:/\(/,end:/\)/,keywords:u,
+contains:_.concat(["self"]),relevance:0}]),relevance:0},g={className:"function",
+begin:"("+r+"[\\*&\\s]+)+"+d,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,
+keywords:u,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:"decltype\\(auto\\)",
+keywords:u,relevance:0},{begin:d,returnBegin:!0,contains:[l],relevance:0},{
+begin:/::/,relevance:0},{begin:/:/,endsWithParent:!0,contains:[s,c]},{
+relevance:0,match:/,/},{className:"params",begin:/\(/,end:/\)/,keywords:u,
+relevance:0,contains:[a,e.C_BLOCK_COMMENT_MODE,s,c,i,{begin:/\(/,end:/\)/,
+keywords:u,relevance:0,contains:["self",a,e.C_BLOCK_COMMENT_MODE,s,c,i]}]
+},i,a,e.C_BLOCK_COMMENT_MODE,o]};return{name:"C++",
+aliases:["cc","c++","h++","hpp","hh","hxx","cxx"],keywords:u,illegal:"</",
+classNameAliases:{"function.dispatch":"built_in"},
+contains:[].concat(m,g,p,_,[o,{
+begin:"\\b(deque|list|queue|priority_queue|pair|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array|tuple|optional|variant|function)\\s*<",
+end:">",keywords:u,contains:["self",i]},{begin:e.IDENT_RE+"::",keywords:u},{
+match:[/\b(?:enum(?:\s+(?:class|struct))?|class|struct|union)/,/\s+/,/\w+/],
+className:{1:"keyword",3:"title.class"}}])}}})();hljs.registerLanguage("cpp",e)
+})();/*! `sql` grammar compiled for Highlight.js 11.3.1 */
+(()=>{var e=(()=>{"use strict";return e=>{
+const r=e.regex,t=e.COMMENT("--","$"),n=["true","false","unknown"],a=["bigint","binary","blob","boolean","char","character","clob","date","dec","decfloat","decimal","float","int","integer","interval","nchar","nclob","national","numeric","real","row","smallint","time","timestamp","varchar","varying","varbinary"],i=["abs","acos","array_agg","asin","atan","avg","cast","ceil","ceiling","coalesce","corr","cos","cosh","count","covar_pop","covar_samp","cume_dist","dense_rank","deref","element","exp","extract","first_value","floor","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","last_value","lead","listagg","ln","log","log10","lower","max","min","mod","nth_value","ntile","nullif","percent_rank","percentile_cont","percentile_disc","position","position_regex","power","rank","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","row_number","sin","sinh","sqrt","stddev_pop","stddev_samp","substring","substring_regex","sum","tan","tanh","translate","translate_regex","treat","trim","trim_array","unnest","upper","value_of","var_pop","var_samp","width_bucket"],s=["create table","insert into","primary key","foreign key","not null","alter table","add constraint","grouping sets","on overflow","character set","respect nulls","ignore nulls","nulls first","nulls last","depth first","breadth first"],o=i,c=["abs","acos","all","allocate","alter","and","any","are","array","array_agg","array_max_cardinality","as","asensitive","asin","asymmetric","at","atan","atomic","authorization","avg","begin","begin_frame","begin_partition","between","bigint","binary","blob","boolean","both","by","call","called","cardinality","cascaded","case","cast","ceil","ceiling","char","char_length","character","character_length","check","classifier","clob","close","coalesce","collate","collect","column","commit","condition","connect","constraint","contains","convert","copy","corr","corresponding","cos","cosh","count","covar_pop","covar_samp","create","cross","cube","cume_dist","current","current_catalog","current_date","current_default_transform_group","current_path","current_role","current_row","current_schema","current_time","current_timestamp","current_path","current_role","current_transform_group_for_type","current_user","cursor","cycle","date","day","deallocate","dec","decimal","decfloat","declare","default","define","delete","dense_rank","deref","describe","deterministic","disconnect","distinct","double","drop","dynamic","each","element","else","empty","end","end_frame","end_partition","end-exec","equals","escape","every","except","exec","execute","exists","exp","external","extract","false","fetch","filter","first_value","float","floor","for","foreign","frame_row","free","from","full","function","fusion","get","global","grant","group","grouping","groups","having","hold","hour","identity","in","indicator","initial","inner","inout","insensitive","insert","int","integer","intersect","intersection","interval","into","is","join","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","language","large","last_value","lateral","lead","leading","left","like","like_regex","listagg","ln","local","localtime","localtimestamp","log","log10","lower","match","match_number","match_recognize","matches","max","member","merge","method","min","minute","mod","modifies","module","month","multiset","national","natural","nchar","nclob","new","no","none","normalize","not","nth_value","ntile","null","nullif","numeric","octet_length","occurrences_regex","of","offset","old","omit","on","one","only","open","or","order","out","outer","over","overlaps","overlay","parameter","partition","pattern","per","percent","percent_rank","percentile_cont","percentile_disc","period","portion","position","position_regex","power","precedes","precision","prepare","primary","procedure","ptf","range","rank","reads","real","recursive","ref","references","referencing","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","release","result","return","returns","revoke","right","rollback","rollup","row","row_number","rows","running","savepoint","scope","scroll","search","second","seek","select","sensitive","session_user","set","show","similar","sin","sinh","skip","smallint","some","specific","specifictype","sql","sqlexception","sqlstate","sqlwarning","sqrt","start","static","stddev_pop","stddev_samp","submultiset","subset","substring","substring_regex","succeeds","sum","symmetric","system","system_time","system_user","table","tablesample","tan","tanh","then","time","timestamp","timezone_hour","timezone_minute","to","trailing","translate","translate_regex","translation","treat","trigger","trim","trim_array","true","truncate","uescape","union","unique","unknown","unnest","update","upper","user","using","value","values","value_of","var_pop","var_samp","varbinary","varchar","varying","versioning","when","whenever","where","width_bucket","window","with","within","without","year","add","asc","collation","desc","final","first","last","view"].filter((e=>!i.includes(e))),l={
+begin:r.concat(/\b/,r.either(...o),/\s*\(/),relevance:0,keywords:{built_in:o}}
+;return{name:"SQL",case_insensitive:!0,illegal:/[{}]|<\//,keywords:{
+$pattern:/\b[\w\.]+/,keyword:((e,{exceptions:r,when:t}={})=>{const n=t
+;return r=r||[],e.map((e=>e.match(/\|\d+$/)||r.includes(e)?e:n(e)?e+"|0":e))
+})(c,{when:e=>e.length<3}),literal:n,type:a,
+built_in:["current_catalog","current_date","current_default_transform_group","current_path","current_role","current_schema","current_transform_group_for_type","current_user","session_user","system_time","system_user","current_time","localtime","current_timestamp","localtimestamp"]
+},contains:[{begin:r.either(...s),relevance:0,keywords:{$pattern:/[\w\.]+/,
+keyword:c.concat(s),literal:n,type:a}},{className:"type",
+begin:r.either("double precision","large object","with timezone","without timezone")
+},l,{className:"variable",begin:/@[a-z0-9]+/},{className:"string",variants:[{
+begin:/'/,end:/'/,contains:[{begin:/''/}]}]},{begin:/"/,end:/"/,contains:[{
+begin:/""/}]},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t,{className:"operator",
+begin:/[-+*/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?/,relevance:0}]}}})()
+;hljs.registerLanguage("sql",e)})();/*! `json` grammar compiled for Highlight.js 11.3.1 */
+(()=>{var e=(()=>{"use strict";return e=>({name:"JSON",contains:[{
+className:"attr",begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},{
+match:/[{}[\],:]/,className:"punctuation",relevance:0},e.QUOTE_STRING_MODE,{
+beginKeywords:"true false null"
+},e.C_NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE],illegal:"\\S"})
+})();hljs.registerLanguage("json",e)})();/*! `plaintext` grammar compiled for Highlight.js 11.3.1 */
+(()=>{var t=(()=>{"use strict";return t=>({name:"Plain text",
+aliases:["text","txt"],disableAutodetect:!0})})()
+;hljs.registerLanguage("plaintext",t)})();/*! `vbnet` grammar compiled for Highlight.js 11.3.1 */
+(()=>{var e=(()=>{"use strict";return e=>{
+const n=e.regex,t=/\d{1,2}\/\d{1,2}\/\d{4}/,a=/\d{4}-\d{1,2}-\d{1,2}/,i=/(\d|1[012])(:\d+){0,2} *(AM|PM)/,s=/\d{1,2}(:\d{1,2}){1,2}/,r={
+className:"literal",variants:[{begin:n.concat(/# */,n.either(a,t),/ *#/)},{
+begin:n.concat(/# */,s,/ *#/)},{begin:n.concat(/# */,i,/ *#/)},{
+begin:n.concat(/# */,n.either(a,t),/ +/,n.either(i,s),/ *#/)}]
+},l=e.COMMENT(/'''/,/$/,{contains:[{className:"doctag",begin:/<\/?/,end:/>/}]
+}),o=e.COMMENT(null,/$/,{variants:[{begin:/'/},{begin:/([\t ]|^)REM(?=\s)/}]})
+;return{name:"Visual Basic .NET",aliases:["vb"],case_insensitive:!0,
+classNameAliases:{label:"symbol"},keywords:{
+keyword:"addhandler alias aggregate ansi as async assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into iterator join key let lib loop me mid module mustinherit mustoverride mybase myclass namespace narrowing new next notinheritable notoverridable of off on operator option optional order overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly yield",
+built_in:"addressof and andalso await directcast gettype getxmlnamespace is isfalse isnot istrue like mod nameof new not or orelse trycast typeof xor cbool cbyte cchar cdate cdbl cdec cint clng cobj csbyte cshort csng cstr cuint culng cushort",
+type:"boolean byte char date decimal double integer long object sbyte short single string uinteger ulong ushort",
+literal:"true false nothing"},
+illegal:"//|\\{|\\}|endif|gosub|variant|wend|^\\$ ",contains:[{
+className:"string",begin:/"(""|[^/n])"C\b/},{className:"string",begin:/"/,
+end:/"/,illegal:/\n/,contains:[{begin:/""/}]},r,{className:"number",relevance:0,
+variants:[{begin:/\b\d[\d_]*((\.[\d_]+(E[+-]?[\d_]+)?)|(E[+-]?[\d_]+))[RFD@!#]?/
+},{begin:/\b\d[\d_]*((U?[SIL])|[%&])?/},{begin:/&H[\dA-F_]+((U?[SIL])|[%&])?/},{
+begin:/&O[0-7_]+((U?[SIL])|[%&])?/},{begin:/&B[01_]+((U?[SIL])|[%&])?/}]},{
+className:"label",begin:/^\w+:/},l,o,{className:"meta",
+begin:/[\t ]*#(const|disable|else|elseif|enable|end|externalsource|if|region)\b/,
+end:/$/,keywords:{
+keyword:"const disable else elseif enable end externalsource if region then"},
+contains:[o]}]}}})();hljs.registerLanguage("vbnet",e)})();/*! `xml` grammar compiled for Highlight.js 11.3.1 */
+(()=>{var e=(()=>{"use strict";return e=>{
+const a=e.regex,n=a.concat(/[A-Z_]/,a.optional(/[A-Z0-9_.-]*:/),/[A-Z0-9_.-]*/),s={
+className:"symbol",begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},t={begin:/\s/,
+contains:[{className:"keyword",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}]
+},i=e.inherit(t,{begin:/\(/,end:/\)/}),c=e.inherit(e.APOS_STRING_MODE,{
+className:"string"}),l=e.inherit(e.QUOTE_STRING_MODE,{className:"string"}),r={
+endsWithParent:!0,illegal:/</,relevance:0,contains:[{className:"attr",
+begin:/[A-Za-z0-9._:-]+/,relevance:0},{begin:/=\s*/,relevance:0,contains:[{
+className:"string",endsParent:!0,variants:[{begin:/"/,end:/"/,contains:[s]},{
+begin:/'/,end:/'/,contains:[s]},{begin:/[^\s"'=<>`]+/}]}]}]};return{
+name:"HTML, XML",
+aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"],
+case_insensitive:!0,contains:[{className:"meta",begin:/<![a-z]/,end:/>/,
+relevance:10,contains:[t,l,c,i,{begin:/\[/,end:/\]/,contains:[{className:"meta",
+begin:/<![a-z]/,end:/>/,contains:[t,i,l,c]}]}]},e.COMMENT(/<!--/,/-->/,{
+relevance:10}),{begin:/<!\[CDATA\[/,end:/\]\]>/,relevance:10},s,{
+className:"meta",begin:/<\?xml/,end:/\?>/,relevance:10},{className:"tag",
+begin:/<style(?=\s|>)/,end:/>/,keywords:{name:"style"},contains:[r],starts:{
+end:/<\/style>/,returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag",
+begin:/<script(?=\s|>)/,end:/>/,keywords:{name:"script"},contains:[r],starts:{
+end:/<\/script>/,returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{
+className:"tag",begin:/<>|<\/>/},{className:"tag",
+begin:a.concat(/</,a.lookahead(a.concat(n,a.either(/\/>/,/>/,/\s/)))),
+end:/\/?>/,contains:[{className:"name",begin:n,relevance:0,starts:r}]},{
+className:"tag",begin:a.concat(/<\//,a.lookahead(a.concat(n,/>/))),contains:[{
+className:"name",begin:n,relevance:0},{begin:/>/,relevance:0,endsParent:!0}]}]}}
+})();hljs.registerLanguage("xml",e)})();/*! `python` grammar compiled for Highlight.js 11.3.1 */
+(()=>{var e=(()=>{"use strict";return e=>{
+const n=e.regex,a=/[\p{XID_Start}_]\p{XID_Continue}*/u,i={
+$pattern:/[A-Za-z]\w+|__\w+__/,
+keyword:["and","as","assert","async","await","break","class","continue","def","del","elif","else","except","finally","for","from","global","if","import","in","is","lambda","nonlocal|10","not","or","pass","raise","return","try","while","with","yield"],
+built_in:["__import__","abs","all","any","ascii","bin","bool","breakpoint","bytearray","bytes","callable","chr","classmethod","compile","complex","delattr","dict","dir","divmod","enumerate","eval","exec","filter","float","format","frozenset","getattr","globals","hasattr","hash","help","hex","id","input","int","isinstance","issubclass","iter","len","list","locals","map","max","memoryview","min","next","object","oct","open","ord","pow","print","property","range","repr","reversed","round","set","setattr","slice","sorted","staticmethod","str","sum","super","tuple","type","vars","zip"],
+literal:["__debug__","Ellipsis","False","None","NotImplemented","True"],
+type:["Any","Callable","Coroutine","Dict","List","Literal","Generic","Optional","Sequence","Set","Tuple","Type","Union"]
+},s={className:"meta",begin:/^(>>>|\.\.\.) /},t={className:"subst",begin:/\{/,
+end:/\}/,keywords:i,illegal:/#/},r={begin:/\{\{/,relevance:0},l={
+className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{
+begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/,end:/'''/,
+contains:[e.BACKSLASH_ESCAPE,s],relevance:10},{
+begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/,end:/"""/,
+contains:[e.BACKSLASH_ESCAPE,s],relevance:10},{
+begin:/([fF][rR]|[rR][fF]|[fF])'''/,end:/'''/,
+contains:[e.BACKSLASH_ESCAPE,s,r,t]},{begin:/([fF][rR]|[rR][fF]|[fF])"""/,
+end:/"""/,contains:[e.BACKSLASH_ESCAPE,s,r,t]},{begin:/([uU]|[rR])'/,end:/'/,
+relevance:10},{begin:/([uU]|[rR])"/,end:/"/,relevance:10},{
+begin:/([bB]|[bB][rR]|[rR][bB])'/,end:/'/},{begin:/([bB]|[bB][rR]|[rR][bB])"/,
+end:/"/},{begin:/([fF][rR]|[rR][fF]|[fF])'/,end:/'/,
+contains:[e.BACKSLASH_ESCAPE,r,t]},{begin:/([fF][rR]|[rR][fF]|[fF])"/,end:/"/,
+contains:[e.BACKSLASH_ESCAPE,r,t]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]
+},b="[0-9](_?[0-9])*",o=`(\\b(${b}))?\\.(${b})|\\b(${b})\\.`,c={
+className:"number",relevance:0,variants:[{
+begin:`(\\b(${b})|(${o}))[eE][+-]?(${b})[jJ]?\\b`},{begin:`(${o})[jJ]?`},{
+begin:"\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?\\b"},{
+begin:"\\b0[bB](_?[01])+[lL]?\\b"},{begin:"\\b0[oO](_?[0-7])+[lL]?\\b"},{
+begin:"\\b0[xX](_?[0-9a-fA-F])+[lL]?\\b"},{begin:`\\b(${b})[jJ]\\b`}]},d={
+className:"comment",begin:n.lookahead(/# type:/),end:/$/,keywords:i,contains:[{
+begin:/# type:/},{begin:/#/,end:/\b\B/,endsWithParent:!0}]},g={
+className:"params",variants:[{className:"",begin:/\(\s*\)/,skip:!0},{begin:/\(/,
+end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:i,
+contains:["self",s,c,l,e.HASH_COMMENT_MODE]}]};return t.contains=[l,c,s],{
+name:"Python",aliases:["py","gyp","ipython"],unicodeRegex:!0,keywords:i,
+illegal:/(<\/|->|\?)|=>/,contains:[s,c,{begin:/\bself\b/},{beginKeywords:"if",
+relevance:0},l,d,e.HASH_COMMENT_MODE,{match:[/def/,/\s+/,a],scope:{1:"keyword",
+3:"title.function"},contains:[g]},{variants:[{
+match:[/class/,/\s+/,a,/\s*/,/\(\s*/,a,/\s*\)/]},{match:[/class/,/\s+/,a]}],
+scope:{1:"keyword",3:"title.class",6:"title.class.inherited"}},{
+className:"meta",begin:/^[\t ]*@/,end:/(?=#)|$/,contains:[c,g,l]}]}}})()
+;hljs.registerLanguage("python",e)})();/*! `c` grammar compiled for Highlight.js 11.3.1 */
+(()=>{var e=(()=>{"use strict";return e=>{const n=e.regex,t=e.COMMENT("//","$",{
+contains:[{begin:/\\\n/}]
+}),s="[a-zA-Z_]\\w*::",a="(decltype\\(auto\\)|"+n.optional(s)+"[a-zA-Z_]\\w*"+n.optional("<[^<>]+>")+")",r={
+className:"type",variants:[{begin:"\\b[a-z\\d_]*_t\\b"},{
+match:/\batomic_[a-z]{3,6}\b/}]},i={className:"string",variants:[{
+begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{
+begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)",
+end:"'",illegal:"."},e.END_SAME_AS_BEGIN({
+begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},l={
+className:"number",variants:[{begin:"\\b(0b[01']+)"},{
+begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"
+},{
+begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"
+}],relevance:0},o={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{
+keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"
+},contains:[{begin:/\\\n/,relevance:0},e.inherit(i,{className:"string"}),{
+className:"string",begin:/<.*?>/},t,e.C_BLOCK_COMMENT_MODE]},c={
+className:"title",begin:n.optional(s)+e.IDENT_RE,relevance:0
+},d=n.optional(s)+e.IDENT_RE+"\\s*\\(",u={
+keyword:["asm","auto","break","case","continue","default","do","else","enum","extern","for","fortran","goto","if","inline","register","restrict","return","sizeof","struct","switch","typedef","union","volatile","while","_Alignas","_Alignof","_Atomic","_Generic","_Noreturn","_Static_assert","_Thread_local","alignas","alignof","noreturn","static_assert","thread_local","_Pragma"],
+type:["float","double","signed","unsigned","int","short","long","char","void","_Bool","_Complex","_Imaginary","_Decimal32","_Decimal64","_Decimal128","const","static","complex","bool","imaginary"],
+literal:"true false NULL",
+built_in:"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr"
+},g=[o,r,t,e.C_BLOCK_COMMENT_MODE,l,i],m={variants:[{begin:/=/,end:/;/},{
+begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],
+keywords:u,contains:g.concat([{begin:/\(/,end:/\)/,keywords:u,
+contains:g.concat(["self"]),relevance:0}]),relevance:0},p={
+begin:"("+a+"[\\*&\\s]+)+"+d,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,
+keywords:u,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:"decltype\\(auto\\)",
+keywords:u,relevance:0},{begin:d,returnBegin:!0,contains:[e.inherit(c,{
+className:"title.function"})],relevance:0},{relevance:0,match:/,/},{
+className:"params",begin:/\(/,end:/\)/,keywords:u,relevance:0,
+contains:[t,e.C_BLOCK_COMMENT_MODE,i,l,r,{begin:/\(/,end:/\)/,keywords:u,
+relevance:0,contains:["self",t,e.C_BLOCK_COMMENT_MODE,i,l,r]}]
+},r,t,e.C_BLOCK_COMMENT_MODE,o]};return{name:"C",aliases:["h"],keywords:u,
+disableAutodetect:!0,illegal:"</",contains:[].concat(m,p,g,[o,{
+begin:e.IDENT_RE+"::",keywords:u},{className:"class",
+beginKeywords:"enum class struct union",end:/[{;:<>=]/,contains:[{
+beginKeywords:"final class struct"},e.TITLE_MODE]}]),exports:{preprocessor:o,
+strings:i,keywords:u}}}})();hljs.registerLanguage("c",e)})();/*! `bash` grammar compiled for Highlight.js 11.3.1 */
+(()=>{var e=(()=>{"use strict";return e=>{const s=e.regex,t={},n={begin:/\$\{/,
+end:/\}/,contains:["self",{begin:/:-/,contains:[t]}]};Object.assign(t,{
+className:"variable",variants:[{
+begin:s.concat(/\$[\w\d#@][\w\d_]*/,"(?![\\w\\d])(?![$])")},n]});const a={
+className:"subst",begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE]},i={
+begin:/<<-?\s*(?=\w+)/,starts:{contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,
+end:/(\w+)/,className:"string"})]}},c={className:"string",begin:/"/,end:/"/,
+contains:[e.BACKSLASH_ESCAPE,t,a]};a.contains.push(c);const o={begin:/\$\(\(/,
+end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:"number"},e.NUMBER_MODE,t]
+},r=e.SHEBANG({binary:"(fish|bash|zsh|sh|csh|ksh|tcsh|dash|scsh)",relevance:10
+}),l={className:"function",begin:/\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin:!0,
+contains:[e.inherit(e.TITLE_MODE,{begin:/\w[\w\d_]*/})],relevance:0};return{
+name:"Bash",aliases:["sh"],keywords:{$pattern:/\b[a-z._-]+\b/,
+keyword:["if","then","else","elif","fi","for","while","in","do","done","case","esac","function"],
+literal:["true","false"],
+built_in:["break","cd","continue","eval","exec","exit","export","getopts","hash","pwd","readonly","return","shift","test","times","trap","umask","unset","alias","bind","builtin","caller","command","declare","echo","enable","help","let","local","logout","mapfile","printf","read","readarray","source","type","typeset","ulimit","unalias","set","shopt","autoload","bg","bindkey","bye","cap","chdir","clone","comparguments","compcall","compctl","compdescribe","compfiles","compgroups","compquote","comptags","comptry","compvalues","dirs","disable","disown","echotc","echoti","emulate","fc","fg","float","functions","getcap","getln","history","integer","jobs","kill","limit","log","noglob","popd","print","pushd","pushln","rehash","sched","setcap","setopt","stat","suspend","ttyctl","unfunction","unhash","unlimit","unsetopt","vared","wait","whence","where","which","zcompile","zformat","zftp","zle","zmodload","zparseopts","zprof","zpty","zregexparse","zsocket","zstyle","ztcp","chcon","chgrp","chown","chmod","cp","dd","df","dir","dircolors","ln","ls","mkdir","mkfifo","mknod","mktemp","mv","realpath","rm","rmdir","shred","sync","touch","truncate","vdir","b2sum","base32","base64","cat","cksum","comm","csplit","cut","expand","fmt","fold","head","join","md5sum","nl","numfmt","od","paste","ptx","pr","sha1sum","sha224sum","sha256sum","sha384sum","sha512sum","shuf","sort","split","sum","tac","tail","tr","tsort","unexpand","uniq","wc","arch","basename","chroot","date","dirname","du","echo","env","expr","factor","groups","hostid","id","link","logname","nice","nohup","nproc","pathchk","pinky","printenv","printf","pwd","readlink","runcon","seq","sleep","stat","stdbuf","stty","tee","test","timeout","tty","uname","unlink","uptime","users","who","whoami","yes"]
+},contains:[r,e.SHEBANG(),l,o,e.HASH_COMMENT_MODE,i,{match:/(\/[a-z._-]+)+/},c,{
+className:"",begin:/\\"/},{className:"string",begin:/'/,end:/'/},t]}}})()
+;hljs.registerLanguage("bash",e)})();/*! `php` grammar compiled for Highlight.js 11.3.1 */
+(()=>{var e=(()=>{"use strict";return e=>{const r={className:"variable",
+begin:"\\$+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*(?![A-Za-z0-9])(?![$])"},t={
+className:"meta",variants:[{begin:/<\?php/,relevance:10},{begin:/<\?[=]?/},{
+begin:/\?>/}]},a={className:"subst",variants:[{begin:/\$\w+/},{begin:/\{\$/,
+end:/\}/}]},n=e.inherit(e.APOS_STRING_MODE,{illegal:null
+}),i=e.inherit(e.QUOTE_STRING_MODE,{illegal:null,
+contains:e.QUOTE_STRING_MODE.contains.concat(a)}),o=e.END_SAME_AS_BEGIN({
+begin:/<<<[ \t]*(\w+)\n/,end:/[ \t]*(\w+)\b/,
+contains:e.QUOTE_STRING_MODE.contains.concat(a)}),l={className:"string",
+contains:[e.BACKSLASH_ESCAPE,t],variants:[e.inherit(n,{begin:"b'",end:"'"
+}),e.inherit(i,{begin:'b"',end:'"'}),i,n,o]},s={className:"number",variants:[{
+begin:"\\b0b[01]+(?:_[01]+)*\\b"},{begin:"\\b0o[0-7]+(?:_[0-7]+)*\\b"},{
+begin:"\\b0x[\\da-f]+(?:_[\\da-f]+)*\\b"},{
+begin:"(?:\\b\\d+(?:_\\d+)*(\\.(?:\\d+(?:_\\d+)*))?|\\B\\.\\d+)(?:e[+-]?\\d+)?"
+}],relevance:0},c={
+keyword:"__CLASS__ __DIR__ __FILE__ __FUNCTION__ __LINE__ __METHOD__ __NAMESPACE__ __TRAIT__ die echo exit include include_once print require require_once array abstract and as binary bool boolean break callable case catch class clone const continue declare default do double else elseif empty enddeclare endfor endforeach endif endswitch endwhile enum eval extends final finally float for foreach from global goto if implements instanceof insteadof int integer interface isset iterable list match|0 mixed new object or private protected public real return string switch throw trait try unset use var void while xor yield",
+literal:"false null true",
+built_in:"Error|0 AppendIterator ArgumentCountError ArithmeticError ArrayIterator ArrayObject AssertionError BadFunctionCallException BadMethodCallException CachingIterator CallbackFilterIterator CompileError Countable DirectoryIterator DivisionByZeroError DomainException EmptyIterator ErrorException Exception FilesystemIterator FilterIterator GlobIterator InfiniteIterator InvalidArgumentException IteratorIterator LengthException LimitIterator LogicException MultipleIterator NoRewindIterator OutOfBoundsException OutOfRangeException OuterIterator OverflowException ParentIterator ParseError RangeException RecursiveArrayIterator RecursiveCachingIterator RecursiveCallbackFilterIterator RecursiveDirectoryIterator RecursiveFilterIterator RecursiveIterator RecursiveIteratorIterator RecursiveRegexIterator RecursiveTreeIterator RegexIterator RuntimeException SeekableIterator SplDoublyLinkedList SplFileInfo SplFileObject SplFixedArray SplHeap SplMaxHeap SplMinHeap SplObjectStorage SplObserver SplObserver SplPriorityQueue SplQueue SplStack SplSubject SplSubject SplTempFileObject TypeError UnderflowException UnexpectedValueException UnhandledMatchError ArrayAccess Closure Generator Iterator IteratorAggregate Serializable Stringable Throwable Traversable WeakReference WeakMap Directory __PHP_Incomplete_Class parent php_user_filter self static stdClass"
+};return{case_insensitive:!0,keywords:c,
+contains:[e.HASH_COMMENT_MODE,e.COMMENT("//","$",{contains:[t]
+}),e.COMMENT("/\\*","\\*/",{contains:[{className:"doctag",begin:"@[A-Za-z]+"}]
+}),e.COMMENT("__halt_compiler.+?;",!1,{endsWithParent:!0,
+keywords:"__halt_compiler"}),t,{className:"keyword",begin:/\$this\b/},r,{
+begin:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{className:"function",
+relevance:0,beginKeywords:"fn function",end:/[;{]/,excludeEnd:!0,
+illegal:"[$%\\[]",contains:[{beginKeywords:"use"},e.UNDERSCORE_TITLE_MODE,{
+begin:"=>",endsParent:!0},{className:"params",begin:"\\(",end:"\\)",
+excludeBegin:!0,excludeEnd:!0,keywords:c,
+contains:["self",r,e.C_BLOCK_COMMENT_MODE,l,s]}]},{className:"class",variants:[{
+beginKeywords:"enum",illegal:/[($"]/},{beginKeywords:"class interface trait",
+illegal:/[:($"]/}],relevance:0,end:/\{/,excludeEnd:!0,contains:[{
+beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{
+beginKeywords:"namespace",relevance:0,end:";",illegal:/[.']/,
+contains:[e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"use",relevance:0,end:";",
+contains:[e.UNDERSCORE_TITLE_MODE]},l,s]}}})();hljs.registerLanguage("php",e)
+})();/*! `csharp` grammar compiled for Highlight.js 11.3.1 */
+(()=>{var e=(()=>{"use strict";return e=>{const n={
+keyword:["abstract","as","base","break","case","catch","class","const","continue","do","else","event","explicit","extern","finally","fixed","for","foreach","goto","if","implicit","in","interface","internal","is","lock","namespace","new","operator","out","override","params","private","protected","public","readonly","record","ref","return","sealed","sizeof","stackalloc","static","struct","switch","this","throw","try","typeof","unchecked","unsafe","using","virtual","void","volatile","while"].concat(["add","alias","and","ascending","async","await","by","descending","equals","from","get","global","group","init","into","join","let","nameof","not","notnull","on","or","orderby","partial","remove","select","set","unmanaged","value|0","var","when","where","with","yield"]),
+built_in:["bool","byte","char","decimal","delegate","double","dynamic","enum","float","int","long","nint","nuint","object","sbyte","short","string","ulong","uint","ushort"],
+literal:["default","false","null","true"]},a=e.inherit(e.TITLE_MODE,{
+begin:"[a-zA-Z](\\.?\\w)*"}),i={className:"number",variants:[{
+begin:"\\b(0b[01']+)"},{
+begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{
+begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"
+}],relevance:0},s={className:"string",begin:'@"',end:'"',contains:[{begin:'""'}]
+},t=e.inherit(s,{illegal:/\n/}),r={className:"subst",begin:/\{/,end:/\}/,
+keywords:n},l=e.inherit(r,{illegal:/\n/}),c={className:"string",begin:/\$"/,
+end:'"',illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/
+},e.BACKSLASH_ESCAPE,l]},o={className:"string",begin:/\$@"/,end:'"',contains:[{
+begin:/\{\{/},{begin:/\}\}/},{begin:'""'},r]},d=e.inherit(o,{illegal:/\n/,
+contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:'""'},l]})
+;r.contains=[o,c,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,i,e.C_BLOCK_COMMENT_MODE],
+l.contains=[d,c,t,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,i,e.inherit(e.C_BLOCK_COMMENT_MODE,{
+illegal:/\n/})];const g={variants:[o,c,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]
+},E={begin:"<",end:">",contains:[{beginKeywords:"in out"},a]
+},_=e.IDENT_RE+"(<"+e.IDENT_RE+"(\\s*,\\s*"+e.IDENT_RE+")*>)?(\\[\\])?",b={
+begin:"@"+e.IDENT_RE,relevance:0};return{name:"C#",aliases:["cs","c#"],
+keywords:n,illegal:/::/,contains:[e.COMMENT("///","$",{returnBegin:!0,
+contains:[{className:"doctag",variants:[{begin:"///",relevance:0},{
+begin:"\x3c!--|--\x3e"},{begin:"</?",end:">"}]}]
+}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"meta",begin:"#",
+end:"$",keywords:{
+keyword:"if else elif endif define undef warning error line region endregion pragma checksum"
+}},g,i,{beginKeywords:"class interface",relevance:0,end:/[{;=]/,
+illegal:/[^\s:,]/,contains:[{beginKeywords:"where class"
+},a,E,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"namespace",
+relevance:0,end:/[{;=]/,illegal:/[^\s:]/,
+contains:[a,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{
+beginKeywords:"record",relevance:0,end:/[{;=]/,illegal:/[^\s:]/,
+contains:[a,E,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"meta",
+begin:"^\\s*\\[(?=[\\w])",excludeBegin:!0,end:"\\]",excludeEnd:!0,contains:[{
+className:"string",begin:/"/,end:/"/}]},{
+beginKeywords:"new return throw await else",relevance:0},{className:"function",
+begin:"("+_+"\\s+)+"+e.IDENT_RE+"\\s*(<[^=]+>\\s*)?\\(",returnBegin:!0,
+end:/\s*[{;=]/,excludeEnd:!0,keywords:n,contains:[{
+beginKeywords:"public private protected static internal protected abstract async extern override unsafe virtual new sealed partial",
+relevance:0},{begin:e.IDENT_RE+"\\s*(<[^=]+>\\s*)?\\(",returnBegin:!0,
+contains:[e.TITLE_MODE,E],relevance:0},{match:/\(\)/},{className:"params",
+begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:n,relevance:0,
+contains:[g,i,e.C_BLOCK_COMMENT_MODE]
+},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},b]}}})()
+;hljs.registerLanguage("csharp",e)})();/*! `css` grammar compiled for Highlight.js 11.3.1 */
+(()=>{var e=(()=>{"use strict"
+;const e=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],t=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],i=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],o=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],r=["align-content","align-items","align-self","all","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","content","content-visibility","counter-increment","counter-reset","cue","cue-after","cue-before","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-synthesis","font-variant","font-variant-caps","font-variant-east-asian","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","gap","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","isolation","justify-content","left","letter-spacing","line-break","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","max-height","max-width","min-height","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","pause","pause-after","pause-before","perspective","perspective-origin","pointer-events","position","quotes","resize","rest","rest-after","rest-before","right","row-gap","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","shape-image-threshold","shape-margin","shape-outside","speak","speak-as","src","tab-size","table-layout","text-align","text-align-all","text-align-last","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-box","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","z-index"].reverse()
+;return a=>{const n=a.regex,l=(e=>({IMPORTANT:{scope:"meta",begin:"!important"},
+BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",
+begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{
+className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{
+scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",
+contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{
+scope:"number",
+begin:e.NUMBER_RE+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",
+relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z][A-Za-z0-9_-]*/}
+}))(a),s=[a.APOS_STRING_MODE,a.QUOTE_STRING_MODE];return{name:"CSS",
+case_insensitive:!0,illegal:/[=|'\$]/,keywords:{keyframePosition:"from to"},
+classNameAliases:{keyframePosition:"selector-tag"},contains:[l.BLOCK_COMMENT,{
+begin:/-(webkit|moz|ms|o)-(?=[a-z])/},l.CSS_NUMBER_MODE,{
+className:"selector-id",begin:/#[A-Za-z0-9_-]+/,relevance:0},{
+className:"selector-class",begin:"\\.[a-zA-Z-][a-zA-Z0-9_-]*",relevance:0
+},l.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",variants:[{
+begin:":("+i.join("|")+")"},{begin:":(:)?("+o.join("|")+")"}]},l.CSS_VARIABLE,{
+className:"attribute",begin:"\\b("+r.join("|")+")\\b"},{begin:/:/,end:/[;}{]/,
+contains:[l.BLOCK_COMMENT,l.HEXCOLOR,l.IMPORTANT,l.CSS_NUMBER_MODE,...s,{
+begin:/(url|data-uri)\(/,end:/\)/,relevance:0,keywords:{built_in:"url data-uri"
+},contains:[{className:"string",begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}]
+},l.FUNCTION_DISPATCH]},{begin:n.lookahead(/@/),end:"[{;]",relevance:0,
+illegal:/:/,contains:[{className:"keyword",begin:/@-?\w[\w]*(-\w+)*/},{
+begin:/\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{
+$pattern:/[a-z-]+/,keyword:"and or not only",attribute:t.join(" ")},contains:[{
+begin:/[a-z-]+(?=:)/,className:"attribute"},...s,l.CSS_NUMBER_MODE]}]},{
+className:"selector-tag",begin:"\\b("+e.join("|")+")\\b"}]}}})()
+;hljs.registerLanguage("css",e)})();/*! `java` grammar compiled for Highlight.js 11.3.1 */
+(()=>{var e=(()=>{"use strict"
+;var e="\\.([0-9](_*[0-9])*)",a="[0-9a-fA-F](_*[0-9a-fA-F])*",n={
+className:"number",variants:[{
+begin:`(\\b([0-9](_*[0-9])*)((${e})|\\.)?|(${e}))[eE][+-]?([0-9](_*[0-9])*)[fFdD]?\\b`
+},{begin:`\\b([0-9](_*[0-9])*)((${e})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{
+begin:`(${e})[fFdD]?\\b`},{begin:"\\b([0-9](_*[0-9])*)[fFdD]\\b"},{
+begin:`\\b0[xX]((${a})\\.?|(${a})?\\.(${a}))[pP][+-]?([0-9](_*[0-9])*)[fFdD]?\\b`
+},{begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${a})[lL]?\\b`},{
+begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}],
+relevance:0};function s(e,a,n){return-1===n?"":e.replace(a,(t=>s(e,a,n-1)))}
+return e=>{e.regex
+;const a="[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*",t=a+s("(?:<"+a+"~~~(?:\\s*,\\s*"+a+"~~~)*>)?",/~~~/g,2),i={
+keyword:["synchronized","abstract","private","var","static","if","const ","for","while","strictfp","finally","protected","import","native","final","void","enum","else","break","transient","catch","instanceof","volatile","case","assert","package","default","public","try","switch","continue","throws","protected","public","private","module","requires","exports","do"],
+literal:["false","true","null"],
+type:["char","boolean","long","float","int","byte","short","double"],
+built_in:["super","this"]},r={className:"meta",begin:"@"+a,contains:[{
+begin:/\(/,end:/\)/,contains:["self"]}]},l={className:"params",begin:/\(/,
+end:/\)/,keywords:i,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE],endsParent:!0}
+;return{name:"Java",aliases:["jsp"],keywords:i,illegal:/<\/|#/,
+contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{begin:/\w+@/,
+relevance:0},{className:"doctag",begin:"@[A-Za-z]+"}]}),{
+begin:/import java\.[a-z]+\./,keywords:"import",relevance:2
+},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{begin:/"""/,end:/"""/,
+className:"string",contains:[e.BACKSLASH_ESCAPE]
+},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{
+match:[/\b(?:class|interface|enum|extends|implements|new)/,/\s+/,a],className:{
+1:"keyword",3:"title.class"}},{begin:[a,/\s+/,a,/\s+/,/=/],className:{1:"type",
+3:"variable",5:"operator"}},{begin:[/record/,/\s+/,a],className:{1:"keyword",
+3:"title.class"},contains:[l,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{
+beginKeywords:"new throw return else",relevance:0},{
+begin:["(?:"+t+"\\s+)",e.UNDERSCORE_IDENT_RE,/\s*(?=\()/],className:{
+2:"title.function"},keywords:i,contains:[{className:"params",begin:/\(/,
+end:/\)/,keywords:i,relevance:0,
+contains:[r,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,n,e.C_BLOCK_COMMENT_MODE]
+},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},n,r]}}})()
+;hljs.registerLanguage("java",e)})();
\ No newline at end of file
diff --git a/public/js/vendor/highlight/java.min.js b/public/js/vendor/highlight/java.min.js
new file mode 100644
index 0000000..ba7bbba
--- /dev/null
+++ b/public/js/vendor/highlight/java.min.js
@@ -0,0 +1,33 @@
+hljs.registerLanguage("java",(()=>{"use strict"
+;var e="\\.([0-9](_*[0-9])*)",a="[0-9a-fA-F](_*[0-9a-fA-F])*",n={
+className:"number",variants:[{
+begin:`(\\b([0-9](_*[0-9])*)((${e})|\\.)?|(${e}))[eE][+-]?([0-9](_*[0-9])*)[fFdD]?\\b`
+},{begin:`\\b([0-9](_*[0-9])*)((${e})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{
+begin:`(${e})[fFdD]?\\b`},{begin:"\\b([0-9](_*[0-9])*)[fFdD]\\b"},{
+begin:`\\b0[xX]((${a})\\.?|(${a})?\\.(${a}))[pP][+-]?([0-9](_*[0-9])*)[fFdD]?\\b`
+},{begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${a})[lL]?\\b`},{
+begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}],
+relevance:0};function s(e,a,n){return-1===n?"":e.replace(a,(t=>s(e,a,n-1)))}
+return e=>{
+const a="[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*",t=a+s("(?:<"+a+"~~~(?:\\s*,\\s*"+a+"~~~)*>)?",/~~~/g,2),i={
+keyword:["synchronized","abstract","private","var","static","if","const ","for","while","strictfp","finally","protected","import","native","final","void","enum","else","break","transient","catch","instanceof","volatile","case","assert","package","default","public","try","switch","continue","throws","protected","public","private","module","requires","exports","do"],
+literal:["false","true","null"],
+type:["char","boolean","long","float","int","byte","short","double"],
+built_in:["super","this"]},r={className:"meta",begin:"@"+a,contains:[{
+begin:/\(/,end:/\)/,contains:["self"]}]},l={className:"params",begin:/\(/,
+end:/\)/,keywords:i,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE],endsParent:!0}
+;return{name:"Java",aliases:["jsp"],keywords:i,illegal:/<\/|#/,
+contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{begin:/\w+@/,
+relevance:0},{className:"doctag",begin:"@[A-Za-z]+"}]}),{
+begin:/import java\.[a-z]+\./,keywords:"import",relevance:2
+},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{
+match:[/\b(?:class|interface|enum|extends|implements|new)/,/\s+/,a],className:{
+1:"keyword",3:"title.class"}},{begin:[a,/\s+/,a,/\s+/,/=/],className:{1:"type",
+3:"variable",5:"operator"}},{begin:[/record/,/\s+/,a],className:{1:"keyword",
+3:"title.class"},contains:[l,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{
+beginKeywords:"new throw return else",relevance:0},{
+begin:["(?:"+t+"\\s+)",e.UNDERSCORE_IDENT_RE,/\s*(?=\()/],className:{
+2:"title.function"},keywords:i,contains:[{className:"params",begin:/\(/,
+end:/\)/,keywords:i,relevance:0,
+contains:[r,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,n,e.C_BLOCK_COMMENT_MODE]
+},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},n,r]}}})());
\ No newline at end of file
diff --git a/public/js/vendor/highlight/monokai-sublime.css b/public/js/vendor/highlight/monokai-sublime.css
new file mode 100644
index 0000000..224c8ee
--- /dev/null
+++ b/public/js/vendor/highlight/monokai-sublime.css
@@ -0,0 +1,80 @@
+/*
+
+Monokai Sublime style. Derived from Monokai by noformnocontent http://nn.mit-license.org/
+
+*/
+
+.hljs {
+  background: #23241f;
+  color: #f8f8f2;
+}
+
+.hljs-tag,
+.hljs-subst {
+  color: #f8f8f2;
+}
+
+.hljs-strong,
+.hljs-emphasis {
+  color: #a8a8a2;
+}
+
+.hljs-bullet,
+.hljs-quote,
+.hljs-number,
+.hljs-regexp,
+.hljs-literal,
+.hljs-link {
+  color: #ae81ff;
+}
+
+.hljs-code,
+.hljs-title,
+.hljs-section,
+.hljs-selector-class {
+  color: #a6e22e;
+}
+
+.hljs-strong {
+  font-weight: bold;
+}
+
+.hljs-emphasis {
+  font-style: italic;
+}
+
+.hljs-keyword,
+.hljs-selector-tag,
+.hljs-name,
+.hljs-attr {
+  color: #f92672;
+}
+
+.hljs-symbol,
+.hljs-attribute {
+  color: #66d9ef;
+}
+
+.hljs-params,
+.hljs-title.class_,
+.hljs-class .hljs-title {
+  color: #f8f8f2;
+}
+
+.hljs-string,
+.hljs-type,
+.hljs-built_in,
+.hljs-selector-id,
+.hljs-selector-attr,
+.hljs-selector-pseudo,
+.hljs-addition,
+.hljs-variable,
+.hljs-template-variable {
+  color: #e6db74;
+}
+
+.hljs-comment,
+.hljs-deletion,
+.hljs-meta {
+  color: #75715e;
+}
diff --git a/public/js/vendor/highlight/night-owl.css b/public/js/vendor/highlight/night-owl.css
new file mode 100644
index 0000000..151038b
--- /dev/null
+++ b/public/js/vendor/highlight/night-owl.css
@@ -0,0 +1,180 @@
+/*
+
+Night Owl for highlight.js (c) Carl Baxter <carl@cbax.tech>
+
+An adaptation of Sarah Drasner's Night Owl VS Code Theme
+https://github.com/sdras/night-owl-vscode-theme
+
+Copyright (c) 2018 Sarah Drasner
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+*/
+
+.hljs {
+  background: #011627;
+  color: #d6deeb;
+}
+
+/* General Purpose */
+.hljs-keyword {
+  color: #c792ea;
+  font-style: italic;
+}
+.hljs-built_in {
+  color: #addb67;
+  font-style: italic;
+}
+.hljs-type {
+  color: #82aaff;
+}
+.hljs-literal {
+  color: #ff5874;
+}
+.hljs-number {
+  color: #F78C6C;
+}
+.hljs-regexp {
+  color: #5ca7e4;
+}
+.hljs-string {
+  color: #ecc48d;
+}
+.hljs-subst {
+  color: #d3423e;
+}
+.hljs-symbol {
+  color: #82aaff;
+}
+.hljs-class {
+  color: #ffcb8b;
+}
+.hljs-function {
+  color: #82AAFF;
+}
+.hljs-title {
+  color: #DCDCAA;
+  font-style: italic;
+}
+.hljs-params {
+  color: #7fdbca;
+}
+
+/* Meta */
+.hljs-comment {
+  color: #637777;
+  font-style: italic;
+}
+.hljs-doctag {
+  color: #7fdbca;
+}
+.hljs-meta {
+  color: #82aaff;
+}
+.hljs-meta .hljs-keyword {
+
+  color: #82aaff;
+}
+.hljs-meta .hljs-string {
+  color: #ecc48d;
+}
+
+/* Tags, attributes, config */
+.hljs-section {
+  color: #82b1ff;
+}
+.hljs-tag,
+.hljs-name,
+.hljs-tag .hljs-attr, .hljs-tag .hljs-name{
+  color: #7fdbca;
+}
+.hljs-attr {
+  color: #7fdbca;
+}
+.hljs-attribute {
+  color: #80cbc4;
+}
+.hljs-variable {
+  color: #addb67;
+}
+
+/* Markup */
+.hljs-bullet {
+  color: #d9f5dd;
+}
+.hljs-code {
+  color: #80CBC4;
+}
+.hljs-emphasis {
+  color: #c792ea;
+  font-style: italic;
+}
+.hljs-strong {
+  color: #addb67;
+  font-weight: bold;
+}
+.hljs-formula {
+  color: #c792ea;
+}
+.hljs-link {
+  color: #ff869a;
+}
+.hljs-quote {
+  color: #697098;
+  font-style: italic;
+}
+
+/* CSS */
+.hljs-selector-tag {
+  color: #ff6363;
+}
+
+.hljs-selector-id {
+  color: #fad430;
+}
+
+.hljs-selector-class {
+  color: #addb67;
+  font-style: italic;
+}
+
+.hljs-selector-attr,
+.hljs-selector-pseudo {
+  color: #c792ea;
+  font-style: italic;
+}
+
+/* Templates */
+.hljs-template-tag {
+  color: #c792ea;
+}
+.hljs-template-variable {
+  color: #addb67;
+}
+
+/* diff */
+.hljs-addition {
+  color: #addb67ff;
+  font-style: italic;
+}
+
+.hljs-deletion {
+  color: #EF535090;
+  font-style: italic;
+}
diff --git a/public/js/vendor/highlight/xml.min.js b/public/js/vendor/highlight/xml.min.js
new file mode 100644
index 0000000..a6833a8
--- /dev/null
+++ b/public/js/vendor/highlight/xml.min.js
@@ -0,0 +1,31 @@
+hljs.registerLanguage("xml",(()=>{"use strict";function e(e){
+return e?"string"==typeof e?e:e.source:null}function n(e){return a("(?=",e,")")}
+function a(...n){return n.map((n=>e(n))).join("")}function s(...n){
+return"("+((e=>{const n=e[e.length-1]
+;return"object"==typeof n&&n.constructor===Object?(e.splice(e.length-1,1),n):{}
+})(n).capture?"":"?:")+n.map((n=>e(n))).join("|")+")"}return e=>{
+const t=a(/[A-Z_]/,a("(?:",/[A-Z0-9_.-]*:/,")?"),/[A-Z0-9_.-]*/),i={
+className:"symbol",begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},c={begin:/\s/,
+contains:[{className:"keyword",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}]
+},r=e.inherit(c,{begin:/\(/,end:/\)/}),l=e.inherit(e.APOS_STRING_MODE,{
+className:"string"}),g=e.inherit(e.QUOTE_STRING_MODE,{className:"string"}),m={
+endsWithParent:!0,illegal:/</,relevance:0,contains:[{className:"attr",
+begin:/[A-Za-z0-9._:-]+/,relevance:0},{begin:/=\s*/,relevance:0,contains:[{
+className:"string",endsParent:!0,variants:[{begin:/"/,end:/"/,contains:[i]},{
+begin:/'/,end:/'/,contains:[i]},{begin:/[^\s"'=<>`]+/}]}]}]};return{
+name:"HTML, XML",
+aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"],
+case_insensitive:!0,contains:[{className:"meta",begin:/<![a-z]/,end:/>/,
+relevance:10,contains:[c,g,l,r,{begin:/\[/,end:/\]/,contains:[{className:"meta",
+begin:/<![a-z]/,end:/>/,contains:[c,r,g,l]}]}]},e.COMMENT(/<!--/,/-->/,{
+relevance:10}),{begin:/<!\[CDATA\[/,end:/\]\]>/,relevance:10},i,{
+className:"meta",begin:/<\?xml/,end:/\?>/,relevance:10},{className:"tag",
+begin:/<style(?=\s|>)/,end:/>/,keywords:{name:"style"},contains:[m],starts:{
+end:/<\/style>/,returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag",
+begin:/<script(?=\s|>)/,end:/>/,keywords:{name:"script"},contains:[m],starts:{
+end:/<\/script>/,returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{
+className:"tag",begin:/<>|<\/>/},{className:"tag",
+begin:a(/</,n(a(t,s(/\/>/,/>/,/\s/)))),end:/\/?>/,contains:[{className:"name",
+begin:t,relevance:0,starts:m}]},{className:"tag",begin:a(/<\//,n(a(t,/>/))),
+contains:[{className:"name",begin:t,relevance:0},{begin:/>/,relevance:0,
+endsParent:!0}]}]}}})());
\ No newline at end of file
diff --git a/public/js/vendor/hystmodal/hystmodal.min.css b/public/js/vendor/hystmodal/hystmodal.min.css
new file mode 100644
index 0000000..c385adb
--- /dev/null
+++ b/public/js/vendor/hystmodal/hystmodal.min.css
@@ -0,0 +1 @@
+.hystmodal__opened,.hystmodal__shadow{position:fixed;right:0;left:0;overflow:hidden}.hystmodal__shadow{border:none;display:block;width:100%;top:0;bottom:0;pointer-events:none;z-index:98;opacity:0;transition:opacity .15s ease;background-color:#000}.hystmodal__shadow--show{pointer-events:auto;opacity:.6}.hystmodal{position:fixed;top:0;bottom:0;right:0;left:0;overflow:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch;opacity:1;pointer-events:none;display:flex;flex-flow:column nowrap;justify-content:flex-start;z-index:99;visibility:hidden}.hystmodal--active{opacity:1}.hystmodal--active,.hystmodal--moved{pointer-events:auto;visibility:visible}.hystmodal__wrap{flex-shrink:0;flex-grow:0;width:100%;min-height:100%;margin:auto;display:flex;flex-flow:column nowrap;align-items:center;justify-content:center}.hystmodal__window{margin:50px 0;box-sizing:border-box;flex-shrink:0;flex-grow:0;background:#fff;width:600px;max-width:100%;overflow:visible;transition:transform .2s ease 0s,opacity .2s ease 0s;transform:scale(.9);opacity:0}.hystmodal--active .hystmodal__window{transform:scale(1);opacity:1}.hystmodal__close{position:absolute;z-index:10;top:0;right:-40px;display:block;width:30px;height:30px;background-color:transparent;background-position:50%;background-repeat:no-repeat;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' stroke='%23fff' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M22 2L2 22'/%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M2 2l20 20'/%3E%3C/svg%3E");background-size:100% 100%;border:none;font-size:0;cursor:pointer;outline:none}.hystmodal__close:focus{outline:2px dotted #afb3b9;outline-offset:2px}@media (max-width:767px){.hystmodal__close{top:10px;right:10px;width:24px;height:24px;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' stroke='%23111' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M22 2L2 22'/%3E%3Cpath fill='none' stroke='%23111' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M2 2l20 20'/%3E%3C/svg%3E")}.hystmodal__window{margin:0}}
\ No newline at end of file
diff --git a/public/js/vendor/hystmodal/hystmodal.min.js b/public/js/vendor/hystmodal/hystmodal.min.js
new file mode 100644
index 0000000..33b6f3e
--- /dev/null
+++ b/public/js/vendor/hystmodal/hystmodal.min.js
@@ -0,0 +1 @@
+!function(t){var e={};function i(n){if(e[n])return e[n].exports;var o=e[n]={i:n,l:!1,exports:{}};return t[n].call(o.exports,o,o.exports,i),o.l=!0,o.exports}i.m=t,i.c=e,i.d=function(t,e,n){i.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},i.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},i.t=function(t,e){if(1&e&&(t=i(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)i.d(n,o,function(e){return t[e]}.bind(null,o));return n},i.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return i.d(e,"a",e),e},i.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},i.p="",i(i.s=1)}([function(t,e,i){"use strict";function n(){return(n=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var i=arguments[e];for(var n in i)Object.prototype.hasOwnProperty.call(i,n)&&(t[n]=i[n])}return t}).apply(this,arguments)}function o(t,e){for(var i=0;i<e.length;i++){var n=e[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}i.d(e,"a",(function(){return s}));var s=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t);this.config=n({backscroll:!0,linkAttributeName:"data-hystmodal",closeOnOverlay:!0,closeOnEsc:!0,closeOnButton:!0,waitTransitions:!1,catchFocus:!0,fixedSelectors:"*[data-hystfixed]",beforeOpen:function(){},afterClose:function(){}},e),this.config.linkAttributeName&&this.init(),this._closeAfterTransition=this._closeAfterTransition.bind(this)}var e,i,s;return e=t,(i=[{key:"init",value:function(){this.isOpened=!1,this.openedWindow=!1,this.starter=!1,this._nextWindows=!1,this._scrollPosition=0,this._reopenTrigger=!1,this._overlayChecker=!1,this._isMoved=!1,this._focusElements=["a[href]","area[href]",'input:not([disabled]):not([type="hidden"]):not([aria-hidden])',"select:not([disabled]):not([aria-hidden])","textarea:not([disabled]):not([aria-hidden])","button:not([disabled]):not([aria-hidden])","iframe","object","embed","[contenteditable]",'[tabindex]:not([tabindex^="-"])'],this._modalBlock=!1;var t=document.querySelector(".hystmodal__shadow");t?this.shadow=t:(this.shadow=document.createElement("div"),this.shadow.classList.add("hystmodal__shadow"),document.body.appendChild(this.shadow)),this.eventsFeeler()}},{key:"eventsFeeler",value:function(){document.addEventListener("click",function(t){var e=t.target.closest("["+this.config.linkAttributeName+"]");if(!this._isMoved&&e){t.preventDefault(),this.starter=e;var i=this.starter.getAttribute(this.config.linkAttributeName);return this._nextWindows=document.querySelector(i),void this.open()}this.config.closeOnButton&&t.target.closest("[data-hystclose]")&&this.close()}.bind(this)),this.config.closeOnOverlay&&(document.addEventListener("mousedown",function(t){!this._isMoved&&t.target instanceof Element&&!t.target.classList.contains("hystmodal__wrap")||(this._overlayChecker=!0)}.bind(this)),document.addEventListener("mouseup",function(t){if(!this._isMoved&&t.target instanceof Element&&this._overlayChecker&&t.target.classList.contains("hystmodal__wrap"))return t.preventDefault(),this._overlayChecker,void this.close();this._overlayChecker=!1}.bind(this))),window.addEventListener("keydown",function(t){if(!this._isMoved&&this.config.closeOnEsc&&27==t.which&&this.isOpened)return t.preventDefault(),void this.close();!this._isMoved&&this.config.catchFocus&&9==t.which&&this.isOpened&&this.focusCatcher(t)}.bind(this))}},{key:"open",value:function(t){if(t&&(this._nextWindows="string"==typeof t?document.querySelector(t):t),this._nextWindows){if(this.isOpened)return this._reopenTrigger=!0,void this.close();this.openedWindow=this._nextWindows,this._modalBlock=this.openedWindow.querySelector(".hystmodal__window"),this.config.beforeOpen(this),this._bodyScrollControl(),this.shadow.classList.add("hystmodal__shadow--show"),this.openedWindow.classList.add("hystmodal--active"),this.openedWindow.setAttribute("aria-hidden","false"),this.config.catchFocus&&this.focusControl(),this.isOpened=!0}else console.log("Warning: hystModal selector is not found")}},{key:"close",value:function(){this.isOpened&&(this.config.waitTransitions?(this.openedWindow.classList.add("hystmodal--moved"),this._isMoved=!0,this.openedWindow.addEventListener("transitionend",this._closeAfterTransition),this.openedWindow.classList.remove("hystmodal--active")):(this.openedWindow.classList.remove("hystmodal--active"),this._closeAfterTransition()))}},{key:"_closeAfterTransition",value:function(){this.openedWindow.classList.remove("hystmodal--moved"),this.openedWindow.removeEventListener("transitionend",this._closeAfterTransition),this._isMoved=!1,this.shadow.classList.remove("hystmodal__shadow--show"),this.openedWindow.setAttribute("aria-hidden","true"),this.config.catchFocus&&this.focusControl(),this._bodyScrollControl(),this.isOpened=!1,this.openedWindow.scrollTop=0,this.config.afterClose(this),this._reopenTrigger&&(this._reopenTrigger=!1,this.open())}},{key:"focusControl",value:function(){var t=this.openedWindow.querySelectorAll(this._focusElements);this.isOpened&&this.starter?this.starter.focus():t.length&&t[0].focus()}},{key:"focusCatcher",value:function(t){var e=this.openedWindow.querySelectorAll(this._focusElements),i=Array.prototype.slice.call(e);if(this.openedWindow.contains(document.activeElement)){var n=i.indexOf(document.activeElement);console.log(n),t.shiftKey&&0===n&&(i[i.length-1].focus(),t.preventDefault()),t.shiftKey||n!==i.length-1||(i[0].focus(),t.preventDefault())}else i[0].focus(),t.preventDefault()}},{key:"_bodyScrollControl",value:function(){if(this.config.backscroll){var t=Array.prototype.slice.call(document.querySelectorAll(this.config.fixedSelectors)),e=document.documentElement;if(!0===this.isOpened)return e.classList.remove("hystmodal__opened"),e.style.marginRight="",t.map((function(t){t.style.marginRight=""})),window.scrollTo(0,this._scrollPosition),void(e.style.top="");this._scrollPosition=window.pageYOffset;var i=window.innerWidth-e.clientWidth;e.style.top=-this._scrollPosition+"px",i&&(e.style.marginRight=i+"px",t.map((function(t){t.style.marginRight=parseInt(getComputedStyle(t).marginRight)+i+"px"}))),e.classList.add("hystmodal__opened")}}}])&&o(e.prototype,i),s&&o(e,s),t}()},function(t,e,i){"use strict";i.r(e),function(t){var e=i(0);i(3),i(4);t.HystModal=e.a}.call(this,i(2))},function(t,e){var i;i=function(){return this}();try{i=i||new Function("return this")()}catch(t){"object"==typeof window&&(i=window)}t.exports=i},function(t,e){Element.prototype.matches||(Element.prototype.matches=Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector),Element.prototype.closest||(Element.prototype.closest=function(t){var e=this;do{if(e.matches(t))return e;e=e.parentElement||e.parentNode}while(null!==e&&1===e.nodeType);return null})},function(t,e,i){}]);
\ No newline at end of file
diff --git a/public/js/vendor/imask.min.js b/public/js/vendor/imask.min.js
new file mode 100644
index 0000000..f8ebb25
--- /dev/null
+++ b/public/js/vendor/imask.min.js
@@ -0,0 +1 @@
+!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t=t||self).IMask={})}(this,(function(t){"use strict";var e="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function n(t,e){return t(e={exports:{}},e.exports),e.exports}var u=function(t){return t&&t.Math==Math&&t},i=u("object"==typeof globalThis&&globalThis)||u("object"==typeof window&&window)||u("object"==typeof self&&self)||u("object"==typeof e&&e)||Function("return this")(),r=function(t){try{return!!t()}catch(t){return!0}},a=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})),s={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,l={f:o&&!s.call({1:2},1)?function(t){var e=o(this,t);return!!e&&e.enumerable}:s},h=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},c={}.toString,f="".split,p=r((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==function(t){return c.call(t).slice(8,-1)}(t)?f.call(t,""):Object(t)}:Object,d=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t},v=function(t){return p(d(t))},k=function(t){return"object"==typeof t?null!==t:"function"==typeof t},g=function(t,e){if(!k(t))return t;var n,u;if(e&&"function"==typeof(n=t.toString)&&!k(u=n.call(t)))return u;if("function"==typeof(n=t.valueOf)&&!k(u=n.call(t)))return u;if(!e&&"function"==typeof(n=t.toString)&&!k(u=n.call(t)))return u;throw TypeError("Can't convert object to primitive value")},y={}.hasOwnProperty,m=function(t,e){return y.call(t,e)},_=i.document,A=k(_)&&k(_.createElement),b=!a&&!r((function(){return 7!=Object.defineProperty((t="div",A?_.createElement(t):{}),"a",{get:function(){return 7}}).a;var t})),C=Object.getOwnPropertyDescriptor,E={f:a?C:function(t,e){if(t=v(t),e=g(e,!0),b)try{return C(t,e)}catch(t){}if(m(t,e))return h(!l.f.call(t,e),t[e])}},F=function(t){if(!k(t))throw TypeError(String(t)+" is not an object");return t},S=Object.defineProperty,D={f:a?S:function(t,e,n){if(F(t),e=g(e,!0),F(n),b)try{return S(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(t[e]=n.value),t}},B=a?function(t,e,n){return D.f(t,e,h(1,n))}:function(t,e,n){return t[e]=n,t},w=function(t,e){try{B(i,t,e)}catch(n){i[t]=e}return e},M=i["__core-js_shared__"]||w("__core-js_shared__",{}),x=Function.toString;"function"!=typeof M.inspectSource&&(M.inspectSource=function(t){return x.call(t)});var P,O,T,I,j=M.inspectSource,V=i.WeakMap,R="function"==typeof V&&/native code/.test(j(V)),L=n((function(t){(t.exports=function(t,e){return M[t]||(M[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.6.4",mode:"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"})})),N=0,U=Math.random(),z=L("keys"),H={},Y=i.WeakMap;if(R){var Z=new Y,K=Z.get,q=Z.has,G=Z.set;P=function(t,e){return G.call(Z,t,e),e},O=function(t){return K.call(Z,t)||{}},T=function(t){return q.call(Z,t)}}else{var W=z[I="state"]||(z[I]=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++N+U).toString(36)}(I));H[W]=!0,P=function(t,e){return B(t,W,e),e},O=function(t){return m(t,W)?t[W]:{}},T=function(t){return m(t,W)}}var $={set:P,get:O,has:T,enforce:function(t){return T(t)?O(t):P(t,{})},getterFor:function(t){return function(e){var n;if(!k(e)||(n=O(e)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return n}}},X=n((function(t){var e=$.get,n=$.enforce,u=String(String).split("String");(t.exports=function(t,e,r,a){var s=!!a&&!!a.unsafe,o=!!a&&!!a.enumerable,l=!!a&&!!a.noTargetGet;"function"==typeof r&&("string"!=typeof e||m(r,"name")||B(r,"name",e),n(r).source=u.join("string"==typeof e?e:"")),t!==i?(s?!l&&t[e]&&(o=!0):delete t[e],o?t[e]=r:B(t,e,r)):o?t[e]=r:w(e,r)})(Function.prototype,"toString",(function(){return"function"==typeof this&&e(this).source||j(this)}))})),J=i,Q=function(t){return"function"==typeof t?t:void 0},tt=function(t,e){return arguments.length<2?Q(J[t])||Q(i[t]):J[t]&&J[t][e]||i[t]&&i[t][e]},et=Math.ceil,nt=Math.floor,ut=function(t){return isNaN(t=+t)?0:(t>0?nt:et)(t)},it=Math.min,rt=function(t){return t>0?it(ut(t),9007199254740991):0},at=Math.max,st=Math.min,ot=function(t){return function(e,n,u){var i,r=v(e),a=rt(r.length),s=function(t,e){var n=ut(t);return n<0?at(n+e,0):st(n,e)}(u,a);if(t&&n!=n){for(;a>s;)if((i=r[s++])!=i)return!0}else for(;a>s;s++)if((t||s in r)&&r[s]===n)return t||s||0;return!t&&-1}},lt={includes:ot(!0),indexOf:ot(!1)}.indexOf,ht=function(t,e){var n,u=v(t),i=0,r=[];for(n in u)!m(H,n)&&m(u,n)&&r.push(n);for(;e.length>i;)m(u,n=e[i++])&&(~lt(r,n)||r.push(n));return r},ct=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],ft=ct.concat("length","prototype"),pt={f:Object.getOwnPropertyNames||function(t){return ht(t,ft)}},dt={f:Object.getOwnPropertySymbols},vt=tt("Reflect","ownKeys")||function(t){var e=pt.f(F(t)),n=dt.f;return n?e.concat(n(t)):e},kt=function(t,e){for(var n=vt(e),u=D.f,i=E.f,r=0;r<n.length;r++){var a=n[r];m(t,a)||u(t,a,i(e,a))}},gt=/#|\.prototype\./,yt=function(t,e){var n=_t[mt(t)];return n==bt||n!=At&&("function"==typeof e?r(e):!!e)},mt=yt.normalize=function(t){return String(t).replace(gt,".").toLowerCase()},_t=yt.data={},At=yt.NATIVE="N",bt=yt.POLYFILL="P",Ct=yt,Et=E.f,Ft=function(t,e){var n,u,r,a,s,o=t.target,l=t.global,h=t.stat;if(n=l?i:h?i[o]||w(o,{}):(i[o]||{}).prototype)for(u in e){if(a=e[u],r=t.noTargetGet?(s=Et(n,u))&&s.value:n[u],!Ct(l?u:o+(h?".":"#")+u,t.forced)&&void 0!==r){if(typeof a==typeof r)continue;kt(a,r)}(t.sham||r&&r.sham)&&B(a,"sham",!0),X(n,u,a,t)}},St=Object.keys||function(t){return ht(t,ct)},Dt=function(t){return Object(d(t))},Bt=Object.assign,wt=Object.defineProperty,Mt=!Bt||r((function(){if(a&&1!==Bt({b:1},Bt(wt({},"a",{enumerable:!0,get:function(){wt(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},n=Symbol();return t[n]=7,"abcdefghijklmnopqrst".split("").forEach((function(t){e[t]=t})),7!=Bt({},t)[n]||"abcdefghijklmnopqrst"!=St(Bt({},e)).join("")}))?function(t,e){for(var n=Dt(t),u=arguments.length,i=1,r=dt.f,s=l.f;u>i;)for(var o,h=p(arguments[i++]),c=r?St(h).concat(r(h)):St(h),f=c.length,d=0;f>d;)o=c[d++],a&&!s.call(h,o)||(n[o]=h[o]);return n}:Bt;Ft({target:"Object",stat:!0,forced:Object.assign!==Mt},{assign:Mt});var xt="".repeat||function(t){var e=String(d(this)),n="",u=ut(t);if(u<0||u==1/0)throw RangeError("Wrong number of repetitions");for(;u>0;(u>>>=1)&&(e+=e))1&u&&(n+=e);return n},Pt=Math.ceil,Ot=function(t){return function(e,n,u){var i,r,a=String(d(e)),s=a.length,o=void 0===u?" ":String(u),l=rt(n);return l<=s||""==o?a:(i=l-s,(r=xt.call(o,Pt(i/o.length))).length>i&&(r=r.slice(0,i)),t?a+r:r+a)}},Tt={start:Ot(!1),end:Ot(!0)},It=tt("navigator","userAgent")||"",jt=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(It),Vt=Tt.end;Ft({target:"String",proto:!0,forced:jt},{padEnd:function(t){return Vt(this,t,arguments.length>1?arguments[1]:void 0)}});var Rt=Tt.start;function Lt(t){return(Lt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function Nt(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Ut(t,e){for(var n=0;n<e.length;n++){var u=e[n];u.enumerable=u.enumerable||!1,u.configurable=!0,"value"in u&&(u.writable=!0),Object.defineProperty(t,u.key,u)}}function zt(t,e,n){return e&&Ut(t.prototype,e),n&&Ut(t,n),t}function Ht(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&Zt(t,e)}function Yt(t){return(Yt=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function Zt(t,e){return(Zt=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function Kt(t,e){if(null==t)return{};var n,u,i=function(t,e){if(null==t)return{};var n,u,i={},r=Object.keys(t);for(u=0;u<r.length;u++)n=r[u],e.indexOf(n)>=0||(i[n]=t[n]);return i}(t,e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);for(u=0;u<r.length;u++)n=r[u],e.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(t,n)&&(i[n]=t[n])}return i}function qt(t,e){return!e||"object"!=typeof e&&"function"!=typeof e?function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):e}function Gt(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Yt(t)););return t}function Wt(t,e,n){return(Wt="undefined"!=typeof Reflect&&Reflect.get?Reflect.get:function(t,e,n){var u=Gt(t,e);if(u){var i=Object.getOwnPropertyDescriptor(u,e);return i.get?i.get.call(n):i.value}})(t,e,n||t)}function $t(t,e,n,u){return($t="undefined"!=typeof Reflect&&Reflect.set?Reflect.set:function(t,e,n,u){var i,r=Gt(t,e);if(r){if((i=Object.getOwnPropertyDescriptor(r,e)).set)return i.set.call(u,n),!0;if(!i.writable)return!1}if(i=Object.getOwnPropertyDescriptor(u,e)){if(!i.writable)return!1;i.value=n,Object.defineProperty(u,e,i)}else!function(t,e,n){e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n}(u,e,n);return!0})(t,e,n,u)}function Xt(t,e,n,u,i){if(!$t(t,e,n,u||t)&&i)throw new Error("failed to set property");return n}function Jt(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){if(!(Symbol.iterator in Object(t)||"[object Arguments]"===Object.prototype.toString.call(t)))return;var n=[],u=!0,i=!1,r=void 0;try{for(var a,s=t[Symbol.iterator]();!(u=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);u=!0);}catch(t){i=!0,r=t}finally{try{u||null==s.return||s.return()}finally{if(i)throw r}}return n}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}function Qt(t){return"string"==typeof t||t instanceof String}Ft({target:"String",proto:!0,forced:jt},{padStart:function(t){return Rt(this,t,arguments.length>1?arguments[1]:void 0)}}),Ft({target:"String",proto:!0},{repeat:xt}),Ft({global:!0},{globalThis:i});var te="NONE",ee="LEFT",ne="FORCE_LEFT",ue="RIGHT",ie="FORCE_RIGHT";function re(t){switch(t){case ee:return ne;case ue:return ie;default:return t}}function ae(t){return t.replace(/([.*+?^=!:${}()|[\]/\\])/g,"\\$1")}var se=function(){function t(e,n,u,i){for(Nt(this,t),this.value=e,this.cursorPos=n,this.oldValue=u,this.oldSelection=i;this.value.slice(0,this.startChangePos)!==this.oldValue.slice(0,this.startChangePos);)--this.oldSelection.start}return zt(t,[{key:"startChangePos",get:function(){return Math.min(this.cursorPos,this.oldSelection.start)}},{key:"insertedCount",get:function(){return this.cursorPos-this.startChangePos}},{key:"inserted",get:function(){return this.value.substr(this.startChangePos,this.insertedCount)}},{key:"removedCount",get:function(){return Math.max(this.oldSelection.end-this.startChangePos||this.oldValue.length-this.value.length,0)}},{key:"removed",get:function(){return this.oldValue.substr(this.startChangePos,this.removedCount)}},{key:"head",get:function(){return this.value.substring(0,this.startChangePos)}},{key:"tail",get:function(){return this.value.substring(this.startChangePos+this.insertedCount)}},{key:"removeDirection",get:function(){return!this.removedCount||this.insertedCount?te:this.oldSelection.end===this.cursorPos||this.oldSelection.start===this.cursorPos?ue:ee}}]),t}(),oe=function(){function t(e){Nt(this,t),Object.assign(this,{inserted:"",rawInserted:"",skip:!1,tailShift:0},e)}return zt(t,[{key:"aggregate",value:function(t){return this.rawInserted+=t.rawInserted,this.skip=this.skip||t.skip,this.inserted+=t.inserted,this.tailShift+=t.tailShift,this}},{key:"offset",get:function(){return this.tailShift+this.inserted.length}}]),t}(),le=function(){function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,u=arguments.length>2?arguments[2]:void 0;Nt(this,t),this.value=e,this.from=n,this.stop=u}return zt(t,[{key:"toString",value:function(){return this.value}},{key:"extend",value:function(t){this.value+=String(t)}},{key:"appendTo",value:function(t){return t.append(this.toString(),{tail:!0}).aggregate(t._appendPlaceholder())}},{key:"shiftBefore",value:function(t){if(this.from>=t||!this.value.length)return"";var e=this.value[0];return this.value=this.value.slice(1),e}},{key:"state",get:function(){return{value:this.value,from:this.from,stop:this.stop}},set:function(t){Object.assign(this,t)}}]),t}();function he(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new he.InputMask(t,e)}var ce=function(){function t(e){Nt(this,t),this._value="",this._update(Object.assign({},t.DEFAULTS,{},e)),this.isInitialized=!0}return zt(t,[{key:"updateOptions",value:function(t){Object.keys(t).length&&this.withValueRefresh(this._update.bind(this,t))}},{key:"_update",value:function(t){Object.assign(this,t)}},{key:"reset",value:function(){this._value=""}},{key:"resolve",value:function(t){return this.reset(),this.append(t,{input:!0},""),this.doCommit(),this.value}},{key:"nearestInputPos",value:function(t,e){return t}},{key:"extractInput",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length;return this.value.slice(t,e)}},{key:"extractTail",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length;return new le(this.extractInput(t,e),t)}},{key:"appendTail",value:function(t){return Qt(t)&&(t=new le(String(t))),t.appendTo(this)}},{key:"_appendCharRaw",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(t=this.doPrepare(t,e))?(this._value+=t,new oe({inserted:t,rawInserted:t})):new oe}},{key:"_appendChar",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2?arguments[2]:void 0,u=this.state,i=this._appendCharRaw(t,e);if(i.inserted){var r,a=!1!==this.doValidate(e);if(a&&null!=n){var s=this.state;this.overwrite&&(r=n.state,n.shiftBefore(this.value.length));var o=this.appendTail(n);(a=o.rawInserted===n.toString())&&o.inserted&&(this.state=s)}a||(i=new oe,this.state=u,n&&r&&(n.state=r))}return i}},{key:"_appendPlaceholder",value:function(){return new oe}},{key:"append",value:function(t,e,n){if(!Qt(t))throw new Error("value should be string");var u=new oe,i=Qt(n)?new le(String(n)):n;e.tail&&(e._beforeTailState=this.state);for(var r=0;r<t.length;++r)u.aggregate(this._appendChar(t[r],e,i));return null!=i&&(u.tailShift+=this.appendTail(i).tailShift),u}},{key:"remove",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length;return this._value=this.value.slice(0,t)+this.value.slice(e),new oe}},{key:"withValueRefresh",value:function(t){if(this._refreshing||!this.isInitialized)return t();this._refreshing=!0;var e=this.rawInputValue,n=this.value,u=t();return this.rawInputValue=e,this.value!==n&&0===n.indexOf(this.value)&&this.append(n.slice(this.value.length),{},""),delete this._refreshing,u}},{key:"runIsolated",value:function(t){if(this._isolated||!this.isInitialized)return t(this);this._isolated=!0;var e=this.state,n=t(this);return this.state=e,delete this._isolated,n}},{key:"doPrepare",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.prepare?this.prepare(t,this,e):t}},{key:"doValidate",value:function(t){return(!this.validate||this.validate(this.value,this,t))&&(!this.parent||this.parent.doValidate(t))}},{key:"doCommit",value:function(){this.commit&&this.commit(this.value,this)}},{key:"doFormat",value:function(t){return this.format?this.format(t,this):t}},{key:"doParse",value:function(t){return this.parse?this.parse(t,this):t}},{key:"splice",value:function(t,e,n,u){var i=t+e,r=this.extractTail(i),a=this.nearestInputPos(t,u);return new oe({tailShift:a-t}).aggregate(this.remove(a)).aggregate(this.append(n,{input:!0},r))}},{key:"state",get:function(){return{_value:this.value}},set:function(t){this._value=t._value}},{key:"value",get:function(){return this._value},set:function(t){this.resolve(t)}},{key:"unmaskedValue",get:function(){return this.value},set:function(t){this.reset(),this.append(t,{},""),this.doCommit()}},{key:"typedValue",get:function(){return this.doParse(this.value)},set:function(t){this.value=this.doFormat(t)}},{key:"rawInputValue",get:function(){return this.extractInput(0,this.value.length,{raw:!0})},set:function(t){this.reset(),this.append(t,{raw:!0},""),this.doCommit()}},{key:"isComplete",get:function(){return!0}}]),t}();function fe(t){if(null==t)throw new Error("mask property should be defined");return t instanceof RegExp?he.MaskedRegExp:Qt(t)?he.MaskedPattern:t instanceof Date||t===Date?he.MaskedDate:t instanceof Number||"number"==typeof t||t===Number?he.MaskedNumber:Array.isArray(t)||t===Array?he.MaskedDynamic:he.Masked&&t.prototype instanceof he.Masked?t:t instanceof Function?he.MaskedFunction:t instanceof he.Masked?t.constructor:(console.warn("Mask not found for mask",t),he.Masked)}function pe(t){if(he.Masked&&t instanceof he.Masked)return t;var e=(t=Object.assign({},t)).mask;if(he.Masked&&e instanceof he.Masked)return e;var n=fe(e);if(!n)throw new Error("Masked class is not found for provided mask, appropriate module needs to be import manually before creating mask.");return new n(t)}ce.DEFAULTS={format:function(t){return t},parse:function(t){return t}},he.Masked=ce,he.createMask=pe;var de={0:/\d/,a:/[\u0041-\u005A\u0061-\u007A\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]/,"*":/./},ve=function(){function t(e){Nt(this,t);var n=e.mask,u=Kt(e,["mask"]);this.masked=pe({mask:n}),Object.assign(this,u)}return zt(t,[{key:"reset",value:function(){this._isFilled=!1,this.masked.reset()}},{key:"remove",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length;return 0===t&&e>=1?(this._isFilled=!1,this.masked.remove(t,e)):new oe}},{key:"_appendChar",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(this._isFilled)return new oe;var n=this.masked.state,u=this.masked._appendChar(t,e);return u.inserted&&!1===this.doValidate(e)&&(u.inserted=u.rawInserted="",this.masked.state=n),u.inserted||this.isOptional||this.lazy||e.input||(u.inserted=this.placeholderChar),u.skip=!u.inserted&&!this.isOptional,this._isFilled=Boolean(u.inserted),u}},{key:"append",value:function(){var t;return(t=this.masked).append.apply(t,arguments)}},{key:"_appendPlaceholder",value:function(){var t=new oe;return this._isFilled||this.isOptional?t:(this._isFilled=!0,t.inserted=this.placeholderChar,t)}},{key:"extractTail",value:function(){var t;return(t=this.masked).extractTail.apply(t,arguments)}},{key:"appendTail",value:function(){var t;return(t=this.masked).appendTail.apply(t,arguments)}},{key:"extractInput",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length,n=arguments.length>2?arguments[2]:void 0;return this.masked.extractInput(t,e,n)}},{key:"nearestInputPos",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:te,n=0,u=this.value.length,i=Math.min(Math.max(t,n),u);switch(e){case ee:case ne:return this.isComplete?i:n;case ue:case ie:return this.isComplete?i:u;case te:default:return i}}},{key:"doValidate",value:function(){var t,e;return(t=this.masked).doValidate.apply(t,arguments)&&(!this.parent||(e=this.parent).doValidate.apply(e,arguments))}},{key:"doCommit",value:function(){this.masked.doCommit()}},{key:"value",get:function(){return this.masked.value||(this._isFilled&&!this.isOptional?this.placeholderChar:"")}},{key:"unmaskedValue",get:function(){return this.masked.unmaskedValue}},{key:"isComplete",get:function(){return Boolean(this.masked.value)||this.isOptional}},{key:"state",get:function(){return{masked:this.masked.state,_isFilled:this._isFilled}},set:function(t){this.masked.state=t.masked,this._isFilled=t._isFilled}}]),t}(),ke=function(){function t(e){Nt(this,t),Object.assign(this,e),this._value=""}return zt(t,[{key:"reset",value:function(){this._isRawInput=!1,this._value=""}},{key:"remove",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this._value.length;return this._value=this._value.slice(0,t)+this._value.slice(e),this._value||(this._isRawInput=!1),new oe}},{key:"nearestInputPos",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:te,n=0,u=this._value.length;switch(e){case ee:case ne:return n;case te:case ue:case ie:default:return u}}},{key:"extractInput",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this._value.length,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return n.raw&&this._isRawInput&&this._value.slice(t,e)||""}},{key:"_appendChar",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=new oe;if(this._value)return n;var u=this.char===t[0],i=u&&(this.isUnmasking||e.input||e.raw)&&!e.tail;return i&&(n.rawInserted=this.char),this._value=n.inserted=this.char,this._isRawInput=i&&(e.raw||e.input),n}},{key:"_appendPlaceholder",value:function(){var t=new oe;return this._value?t:(this._value=t.inserted=this.char,t)}},{key:"extractTail",value:function(){arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length;return new le("")}},{key:"appendTail",value:function(t){return Qt(t)&&(t=new le(String(t))),t.appendTo(this)}},{key:"append",value:function(t,e,n){var u=this._appendChar(t,e);return null!=n&&(u.tailShift+=this.appendTail(n).tailShift),u}},{key:"doCommit",value:function(){}},{key:"value",get:function(){return this._value}},{key:"unmaskedValue",get:function(){return this.isUnmasking?this.value:""}},{key:"isComplete",get:function(){return!0}},{key:"state",get:function(){return{_value:this._value,_isRawInput:this._isRawInput}},set:function(t){Object.assign(this,t)}}]),t}(),ge=function(){function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;Nt(this,t),this.chunks=e,this.from=n}return zt(t,[{key:"toString",value:function(){return this.chunks.map(String).join("")}},{key:"extend",value:function(e){if(String(e)){Qt(e)&&(e=new le(String(e)));var n=this.chunks[this.chunks.length-1],u=n&&(n.stop===e.stop||null==e.stop)&&e.from===n.from+n.toString().length;if(e instanceof le)u?n.extend(e.toString()):this.chunks.push(e);else if(e instanceof t){if(null==e.stop)for(var i;e.chunks.length&&null==e.chunks[0].stop;)(i=e.chunks.shift()).from+=e.from,this.extend(i);e.toString()&&(e.stop=e.blockIndex,this.chunks.push(e))}}}},{key:"appendTo",value:function(e){if(!(e instanceof he.MaskedPattern))return new le(this.toString()).appendTo(e);for(var n=new oe,u=0;u<this.chunks.length&&!n.skip;++u){var i=this.chunks[u],r=e._mapPosToBlock(e.value.length),a=i.stop,s=void 0;if(null!=a&&(!r||r.index<=a)&&((i instanceof t||e._stops.indexOf(a)>=0)&&n.aggregate(e._appendPlaceholder(a)),s=i instanceof t&&e._blocks[a]),s){var o=s.appendTail(i);o.skip=!1,n.aggregate(o),e._value+=o.inserted;var l=i.toString().slice(o.rawInserted.length);l&&n.aggregate(e.append(l,{tail:!0}))}else n.aggregate(e.append(i.toString(),{tail:!0}))}return n}},{key:"shiftBefore",value:function(t){if(this.from>=t||!this.chunks.length)return"";for(var e=t-this.from,n=0;n<this.chunks.length;){var u=this.chunks[n],i=u.shiftBefore(e);if(u.toString()){if(!i)break;++n}else this.chunks.splice(n,1);if(i)return i}return""}},{key:"state",get:function(){return{chunks:this.chunks.map((function(t){return t.state})),from:this.from,stop:this.stop,blockIndex:this.blockIndex}},set:function(e){var n=e.chunks,u=Kt(e,["chunks"]);Object.assign(this,u),this.chunks=n.map((function(e){var n="chunks"in e?new t:new le;return n.state=e,n}))}}]),t}(),ye=function(t){function e(){return Nt(this,e),qt(this,Yt(e).apply(this,arguments))}return Ht(e,t),zt(e,[{key:"_update",value:function(t){t.mask&&(t.validate=function(e){return e.search(t.mask)>=0}),Wt(Yt(e.prototype),"_update",this).call(this,t)}}]),e}(ce);he.MaskedRegExp=ye;var me=function(t){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return Nt(this,e),t.definitions=Object.assign({},de,t.definitions),qt(this,Yt(e).call(this,Object.assign({},e.DEFAULTS,{},t)))}return Ht(e,t),zt(e,[{key:"_update",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};t.definitions=Object.assign({},this.definitions,t.definitions),Wt(Yt(e.prototype),"_update",this).call(this,t),this._rebuildMask()}},{key:"_rebuildMask",value:function(){var t=this,n=this.definitions;this._blocks=[],this._stops=[],this._maskedBlocks={};var u=this.mask;if(u&&n)for(var i=!1,r=!1,a=0;a<u.length;++a){if(this.blocks)if("continue"===function(){var e=u.slice(a),n=Object.keys(t.blocks).filter((function(t){return 0===e.indexOf(t)}));n.sort((function(t,e){return e.length-t.length}));var i=n[0];if(i){var r=pe(Object.assign({parent:t,lazy:t.lazy,placeholderChar:t.placeholderChar,overwrite:t.overwrite},t.blocks[i]));return r&&(t._blocks.push(r),t._maskedBlocks[i]||(t._maskedBlocks[i]=[]),t._maskedBlocks[i].push(t._blocks.length-1)),a+=i.length-1,"continue"}}())continue;var s=u[a],o=s in n;if(s!==e.STOP_CHAR)if("{"!==s&&"}"!==s)if("["!==s&&"]"!==s){if(s===e.ESCAPE_CHAR){if(++a,!(s=u[a]))break;o=!1}var l=o?new ve({parent:this,lazy:this.lazy,placeholderChar:this.placeholderChar,mask:n[s],isOptional:r}):new ke({char:s,isUnmasking:i});this._blocks.push(l)}else r=!r;else i=!i;else this._stops.push(this._blocks.length)}}},{key:"reset",value:function(){Wt(Yt(e.prototype),"reset",this).call(this),this._blocks.forEach((function(t){return t.reset()}))}},{key:"doCommit",value:function(){this._blocks.forEach((function(t){return t.doCommit()})),Wt(Yt(e.prototype),"doCommit",this).call(this)}},{key:"appendTail",value:function(t){return Wt(Yt(e.prototype),"appendTail",this).call(this,t).aggregate(this._appendPlaceholder())}},{key:"_appendCharRaw",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};t=this.doPrepare(t,e);var n=this._mapPosToBlock(this.value.length),u=new oe;if(!n)return u;for(var i=n.index;;++i){var r=this._blocks[i];if(!r)break;var a=r._appendChar(t,e),s=a.skip;if(u.aggregate(a),s||a.rawInserted)break}return u}},{key:"extractTail",value:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length,u=new ge;return e===n?u:(this._forEachBlocksInRange(e,n,(function(e,n,i,r){var a=e.extractTail(i,r);a.stop=t._findStopBefore(n),a.from=t._blockStartPos(n),a instanceof ge&&(a.blockIndex=n),u.extend(a)})),u)}},{key:"extractInput",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(t===e)return"";var u="";return this._forEachBlocksInRange(t,e,(function(t,e,i,r){u+=t.extractInput(i,r,n)})),u}},{key:"_findStopBefore",value:function(t){for(var e,n=0;n<this._stops.length;++n){var u=this._stops[n];if(!(u<=t))break;e=u}return e}},{key:"_appendPlaceholder",value:function(t){var e=this,n=new oe;if(this.lazy&&null==t)return n;var u=this._mapPosToBlock(this.value.length);if(!u)return n;var i=u.index,r=null!=t?t:this._blocks.length;return this._blocks.slice(i,r).forEach((function(u){if(!u.lazy||null!=t){var i=null!=u._blocks?[u._blocks.length]:[],r=u._appendPlaceholder.apply(u,i);e._value+=r.inserted,n.aggregate(r)}})),n}},{key:"_mapPosToBlock",value:function(t){for(var e="",n=0;n<this._blocks.length;++n){var u=this._blocks[n],i=e.length;if(t<=(e+=u.value).length)return{index:n,offset:t-i}}}},{key:"_blockStartPos",value:function(t){return this._blocks.slice(0,t).reduce((function(t,e){return t+e.value.length}),0)}},{key:"_forEachBlocksInRange",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length,n=arguments.length>2?arguments[2]:void 0,u=this._mapPosToBlock(t);if(u){var i=this._mapPosToBlock(e),r=i&&u.index===i.index,a=u.offset,s=i&&r?i.offset:this._blocks[u.index].value.length;if(n(this._blocks[u.index],u.index,a,s),i&&!r){for(var o=u.index+1;o<i.index;++o)n(this._blocks[o],o,0,this._blocks[o].value.length);n(this._blocks[i.index],i.index,0,i.offset)}}}},{key:"remove",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length,u=Wt(Yt(e.prototype),"remove",this).call(this,t,n);return this._forEachBlocksInRange(t,n,(function(t,e,n,i){u.aggregate(t.remove(n,i))})),u}},{key:"nearestInputPos",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:te,n=this._mapPosToBlock(t)||{index:0,offset:0},u=n.offset,i=n.index,r=this._blocks[i];if(!r)return t;var a=u;0!==a&&a<r.value.length&&(a=r.nearestInputPos(u,re(e)));var s=a===r.value.length,o=0===a;if(!o&&!s)return this._blockStartPos(i)+a;var l=s?i+1:i;if(e===te){if(l>0){var h=l-1,c=this._blocks[h],f=c.nearestInputPos(0,te);if(!c.value.length||f!==c.value.length)return this._blockStartPos(l)}for(var p=l,d=p;d<this._blocks.length;++d){var v=this._blocks[d],k=v.nearestInputPos(0,te);if(!v.value.length||k!==v.value.length)return this._blockStartPos(d)+k}for(var g=l-1;g>=0;--g){var y=this._blocks[g],m=y.nearestInputPos(0,te);if(!y.value.length||m!==y.value.length)return this._blockStartPos(g)+y.value.length}return t}if(e===ee||e===ne){for(var _,A=l;A<this._blocks.length;++A)if(this._blocks[A].value){_=A;break}if(null!=_){var b=this._blocks[_],C=b.nearestInputPos(0,ue);if(0===C&&b.unmaskedValue.length)return this._blockStartPos(_)+C}for(var E,F=-1,S=l-1;S>=0;--S){var D=this._blocks[S],B=D.nearestInputPos(D.value.length,ne);if(D.value&&0===B||(E=S),0!==B){if(B!==D.value.length)return this._blockStartPos(S)+B;F=S;break}}if(e===ee)for(var w=F+1;w<=Math.min(l,this._blocks.length-1);++w){var M=this._blocks[w],x=M.nearestInputPos(0,te),P=this._blockStartPos(w)+x;if(P>t)break;if(x!==M.value.length)return P}if(F>=0)return this._blockStartPos(F)+this._blocks[F].value.length;if(e===ne||this.lazy&&!this.extractInput()&&!_e(this._blocks[l]))return 0;if(null!=E)return this._blockStartPos(E);for(var O=l;O<this._blocks.length;++O){var T=this._blocks[O],I=T.nearestInputPos(0,te);if(!T.value.length||I!==T.value.length)return this._blockStartPos(O)+I}return 0}if(e===ue||e===ie){for(var j,V,R=l;R<this._blocks.length;++R){var L=this._blocks[R],N=L.nearestInputPos(0,te);if(N!==L.value.length){V=this._blockStartPos(R)+N,j=R;break}}if(null!=j&&null!=V){for(var U=j;U<this._blocks.length;++U){var z=this._blocks[U],H=z.nearestInputPos(0,ie);if(H!==z.value.length)return this._blockStartPos(U)+H}return e===ie?this.value.length:V}for(var Y=Math.min(l,this._blocks.length-1);Y>=0;--Y){var Z=this._blocks[Y],K=Z.nearestInputPos(Z.value.length,ee);if(0!==K){var q=this._blockStartPos(Y)+K;if(q>=t)return q;break}}}return t}},{key:"maskedBlock",value:function(t){return this.maskedBlocks(t)[0]}},{key:"maskedBlocks",value:function(t){var e=this,n=this._maskedBlocks[t];return n?n.map((function(t){return e._blocks[t]})):[]}},{key:"state",get:function(){return Object.assign({},Wt(Yt(e.prototype),"state",this),{_blocks:this._blocks.map((function(t){return t.state}))})},set:function(t){var n=t._blocks,u=Kt(t,["_blocks"]);this._blocks.forEach((function(t,e){return t.state=n[e]})),Xt(Yt(e.prototype),"state",u,this,!0)}},{key:"isComplete",get:function(){return this._blocks.every((function(t){return t.isComplete}))}},{key:"unmaskedValue",get:function(){return this._blocks.reduce((function(t,e){return t+e.unmaskedValue}),"")},set:function(t){Xt(Yt(e.prototype),"unmaskedValue",t,this,!0)}},{key:"value",get:function(){return this._blocks.reduce((function(t,e){return t+e.value}),"")},set:function(t){Xt(Yt(e.prototype),"value",t,this,!0)}}]),e}(ce);function _e(t){if(!t)return!1;var e=t.value;return!e||t.nearestInputPos(0,te)!==e.length}me.DEFAULTS={lazy:!0,placeholderChar:"_"},me.STOP_CHAR="`",me.ESCAPE_CHAR="\\",me.InputDefinition=ve,me.FixedDefinition=ke,he.MaskedPattern=me;var Ae=function(t){function e(){return Nt(this,e),qt(this,Yt(e).apply(this,arguments))}return Ht(e,t),zt(e,[{key:"_update",value:function(t){t=Object.assign({to:this.to||0,from:this.from||0},t);var n=String(t.to).length;null!=t.maxLength&&(n=Math.max(n,t.maxLength)),t.maxLength=n;for(var u=String(t.from).padStart(n,"0"),i=String(t.to).padStart(n,"0"),r=0;r<i.length&&i[r]===u[r];)++r;t.mask=i.slice(0,r).replace(/0/g,"\\0")+"0".repeat(n-r),Wt(Yt(e.prototype),"_update",this).call(this,t)}},{key:"boundaries",value:function(t){var e="",n="",u=Jt(t.match(/^(\D*)(\d*)(\D*)/)||[],3),i=u[1],r=u[2];return r&&(e="0".repeat(i.length)+r,n="9".repeat(i.length)+r),[e=e.padEnd(this.maxLength,"0"),n=n.padEnd(this.maxLength,"9")]}},{key:"doPrepare",value:function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(t=Wt(Yt(e.prototype),"doPrepare",this).call(this,t,n).replace(/\D/g,""),!this.autofix)return t;for(var u=String(this.from).padStart(this.maxLength,"0"),i=String(this.to).padStart(this.maxLength,"0"),r=this.value,a="",s=0;s<t.length;++s){var o=r+a+t[s],l=this.boundaries(o),h=Jt(l,2),c=h[0],f=h[1];Number(f)<this.from?a+=u[o.length-1]:Number(c)>this.to?a+=i[o.length-1]:a+=t[s]}return a}},{key:"doValidate",value:function(){var t,n=this.value,u=n.search(/[^0]/);if(-1===u&&n.length<=this._matchFrom)return!0;for(var i=this.boundaries(n),r=Jt(i,2),a=r[0],s=r[1],o=arguments.length,l=new Array(o),h=0;h<o;h++)l[h]=arguments[h];return this.from<=Number(s)&&Number(a)<=this.to&&(t=Wt(Yt(e.prototype),"doValidate",this)).call.apply(t,[this].concat(l))}},{key:"_matchFrom",get:function(){return this.maxLength-String(this.from).length}},{key:"isComplete",get:function(){return Wt(Yt(e.prototype),"isComplete",this)&&Boolean(this.value)}}]),e}(me);he.MaskedRange=Ae;var be=function(t){function e(t){return Nt(this,e),qt(this,Yt(e).call(this,Object.assign({},e.DEFAULTS,{},t)))}return Ht(e,t),zt(e,[{key:"_update",value:function(t){t.mask===Date&&delete t.mask,t.pattern&&(t.mask=t.pattern);var n=t.blocks;t.blocks=Object.assign({},e.GET_DEFAULT_BLOCKS()),t.min&&(t.blocks.Y.from=t.min.getFullYear()),t.max&&(t.blocks.Y.to=t.max.getFullYear()),t.min&&t.max&&t.blocks.Y.from===t.blocks.Y.to&&(t.blocks.m.from=t.min.getMonth()+1,t.blocks.m.to=t.max.getMonth()+1,t.blocks.m.from===t.blocks.m.to&&(t.blocks.d.from=t.min.getDate(),t.blocks.d.to=t.max.getDate())),Object.assign(t.blocks,n),Object.keys(t.blocks).forEach((function(e){var n=t.blocks[e];"autofix"in n||(n.autofix=t.autofix)})),Wt(Yt(e.prototype),"_update",this).call(this,t)}},{key:"doValidate",value:function(){for(var t,n=this.date,u=arguments.length,i=new Array(u),r=0;r<u;r++)i[r]=arguments[r];return(t=Wt(Yt(e.prototype),"doValidate",this)).call.apply(t,[this].concat(i))&&(!this.isComplete||this.isDateExist(this.value)&&null!=n&&(null==this.min||this.min<=n)&&(null==this.max||n<=this.max))}},{key:"isDateExist",value:function(t){return this.format(this.parse(t,this),this).indexOf(t)>=0}},{key:"date",get:function(){return this.typedValue},set:function(t){this.typedValue=t}},{key:"typedValue",get:function(){return this.isComplete?Wt(Yt(e.prototype),"typedValue",this):null},set:function(t){Xt(Yt(e.prototype),"typedValue",t,this,!0)}}]),e}(me);be.DEFAULTS={pattern:"d{.}`m{.}`Y",format:function(t){return[String(t.getDate()).padStart(2,"0"),String(t.getMonth()+1).padStart(2,"0"),t.getFullYear()].join(".")},parse:function(t){var e=Jt(t.split("."),3),n=e[0],u=e[1],i=e[2];return new Date(i,u-1,n)}},be.GET_DEFAULT_BLOCKS=function(){return{d:{mask:Ae,from:1,to:31,maxLength:2},m:{mask:Ae,from:1,to:12,maxLength:2},Y:{mask:Ae,from:1900,to:9999}}},he.MaskedDate=be;var Ce=function(){function t(){Nt(this,t)}return zt(t,[{key:"select",value:function(t,e){if(null!=t&&null!=e&&(t!==this.selectionStart||e!==this.selectionEnd))try{this._unsafeSelect(t,e)}catch(t){}}},{key:"_unsafeSelect",value:function(t,e){}},{key:"bindEvents",value:function(t){}},{key:"unbindEvents",value:function(){}},{key:"selectionStart",get:function(){var t;try{t=this._unsafeSelectionStart}catch(t){}return null!=t?t:this.value.length}},{key:"selectionEnd",get:function(){var t;try{t=this._unsafeSelectionEnd}catch(t){}return null!=t?t:this.value.length}},{key:"isActive",get:function(){return!1}}]),t}();he.MaskElement=Ce;var Ee=function(t){function e(t){var n;return Nt(this,e),(n=qt(this,Yt(e).call(this))).input=t,n._handlers={},n}return Ht(e,t),zt(e,[{key:"_unsafeSelect",value:function(t,e){this.input.setSelectionRange(t,e)}},{key:"bindEvents",value:function(t){var n=this;Object.keys(t).forEach((function(u){return n._toggleEventHandler(e.EVENTS_MAP[u],t[u])}))}},{key:"unbindEvents",value:function(){var t=this;Object.keys(this._handlers).forEach((function(e){return t._toggleEventHandler(e)}))}},{key:"_toggleEventHandler",value:function(t,e){this._handlers[t]&&(this.input.removeEventListener(t,this._handlers[t]),delete this._handlers[t]),e&&(this.input.addEventListener(t,e),this._handlers[t]=e)}},{key:"rootElement",get:function(){return this.input.getRootNode?this.input.getRootNode():document}},{key:"isActive",get:function(){return this.input===this.rootElement.activeElement}},{key:"_unsafeSelectionStart",get:function(){return this.input.selectionStart}},{key:"_unsafeSelectionEnd",get:function(){return this.input.selectionEnd}},{key:"value",get:function(){return this.input.value},set:function(t){this.input.value=t}}]),e}(Ce);Ee.EVENTS_MAP={selectionChange:"keydown",input:"input",drop:"drop",click:"click",focus:"focus",commit:"blur"},he.HTMLMaskElement=Ee;var Fe=function(t){function e(){return Nt(this,e),qt(this,Yt(e).apply(this,arguments))}return Ht(e,t),zt(e,[{key:"_unsafeSelect",value:function(t,e){if(this.rootElement.createRange){var n=this.rootElement.createRange();n.setStart(this.input.firstChild||this.input,t),n.setEnd(this.input.lastChild||this.input,e);var u=this.rootElement,i=u.getSelection&&u.getSelection();i&&(i.removeAllRanges(),i.addRange(n))}}},{key:"_unsafeSelectionStart",get:function(){var t=this.rootElement,e=t.getSelection&&t.getSelection();return e&&e.anchorOffset}},{key:"_unsafeSelectionEnd",get:function(){var t=this.rootElement,e=t.getSelection&&t.getSelection();return e&&this._unsafeSelectionStart+String(e).length}},{key:"value",get:function(){return this.input.textContent},set:function(t){this.input.textContent=t}}]),e}(Ee);he.HTMLContenteditableMaskElement=Fe;var Se=function(){function t(e,n){Nt(this,t),this.el=e instanceof Ce?e:e.isContentEditable&&"INPUT"!==e.tagName&&"TEXTAREA"!==e.tagName?new Fe(e):new Ee(e),this.masked=pe(n),this._listeners={},this._value="",this._unmaskedValue="",this._saveSelection=this._saveSelection.bind(this),this._onInput=this._onInput.bind(this),this._onChange=this._onChange.bind(this),this._onDrop=this._onDrop.bind(this),this._onFocus=this._onFocus.bind(this),this._onClick=this._onClick.bind(this),this.alignCursor=this.alignCursor.bind(this),this.alignCursorFriendly=this.alignCursorFriendly.bind(this),this._bindEvents(),this.updateValue(),this._onChange()}return zt(t,[{key:"maskEquals",value:function(t){return null==t||t===this.masked.mask||t===Date&&this.masked instanceof be}},{key:"_bindEvents",value:function(){this.el.bindEvents({selectionChange:this._saveSelection,input:this._onInput,drop:this._onDrop,click:this._onClick,focus:this._onFocus,commit:this._onChange})}},{key:"_unbindEvents",value:function(){this.el&&this.el.unbindEvents()}},{key:"_fireEvent",value:function(t){for(var e=arguments.length,n=new Array(e>1?e-1:0),u=1;u<e;u++)n[u-1]=arguments[u];var i=this._listeners[t];i&&i.forEach((function(t){return t.apply(void 0,n)}))}},{key:"_saveSelection",value:function(){this.value!==this.el.value&&console.warn("Element value was changed outside of mask. Syncronize mask using `mask.updateValue()` to work properly."),this._selection={start:this.selectionStart,end:this.cursorPos}}},{key:"updateValue",value:function(){this.masked.value=this.el.value,this._value=this.masked.value}},{key:"updateControl",value:function(){var t=this.masked.unmaskedValue,e=this.masked.value,n=this.unmaskedValue!==t||this.value!==e;this._unmaskedValue=t,this._value=e,this.el.value!==e&&(this.el.value=e),n&&this._fireChangeEvents()}},{key:"updateOptions",value:function(t){var e=t.mask,n=Kt(t,["mask"]),u=!this.maskEquals(e),i=!function t(e,n){if(n===e)return!0;var u,i=Array.isArray(n),r=Array.isArray(e);if(i&&r){if(n.length!=e.length)return!1;for(u=0;u<n.length;u++)if(!t(n[u],e[u]))return!1;return!0}if(i!=r)return!1;if(n&&e&&"object"===Lt(n)&&"object"===Lt(e)){var a=n instanceof Date,s=e instanceof Date;if(a&&s)return n.getTime()==e.getTime();if(a!=s)return!1;var o=n instanceof RegExp,l=e instanceof RegExp;if(o&&l)return n.toString()==e.toString();if(o!=l)return!1;var h=Object.keys(n);for(u=0;u<h.length;u++)if(!Object.prototype.hasOwnProperty.call(e,h[u]))return!1;for(u=0;u<h.length;u++)if(!t(e[h[u]],n[h[u]]))return!1;return!0}return!(!n||!e||"function"!=typeof n||"function"!=typeof e)&&n.toString()===e.toString()}(this.masked,n);u&&(this.mask=e),i&&this.masked.updateOptions(n),(u||i)&&this.updateControl()}},{key:"updateCursor",value:function(t){null!=t&&(this.cursorPos=t,this._delayUpdateCursor(t))}},{key:"_delayUpdateCursor",value:function(t){var e=this;this._abortUpdateCursor(),this._changingCursorPos=t,this._cursorChanging=setTimeout((function(){e.el&&(e.cursorPos=e._changingCursorPos,e._abortUpdateCursor())}),10)}},{key:"_fireChangeEvents",value:function(){this._fireEvent("accept",this._inputEvent),this.masked.isComplete&&this._fireEvent("complete",this._inputEvent)}},{key:"_abortUpdateCursor",value:function(){this._cursorChanging&&(clearTimeout(this._cursorChanging),delete this._cursorChanging)}},{key:"alignCursor",value:function(){this.cursorPos=this.masked.nearestInputPos(this.cursorPos,ee)}},{key:"alignCursorFriendly",value:function(){this.selectionStart===this.cursorPos&&this.alignCursor()}},{key:"on",value:function(t,e){return this._listeners[t]||(this._listeners[t]=[]),this._listeners[t].push(e),this}},{key:"off",value:function(t,e){if(!this._listeners[t])return this;if(!e)return delete this._listeners[t],this;var n=this._listeners[t].indexOf(e);return n>=0&&this._listeners[t].splice(n,1),this}},{key:"_onInput",value:function(t){if(this._inputEvent=t,this._abortUpdateCursor(),!this._selection)return this.updateValue();var e=new se(this.el.value,this.cursorPos,this.value,this._selection),n=this.masked.rawInputValue,u=this.masked.splice(e.startChangePos,e.removed.length,e.inserted,e.removeDirection).offset,i=n===this.masked.rawInputValue?e.removeDirection:te,r=this.masked.nearestInputPos(e.startChangePos+u,i);this.updateControl(),this.updateCursor(r),delete this._inputEvent}},{key:"_onChange",value:function(){this.value!==this.el.value&&this.updateValue(),this.masked.doCommit(),this.updateControl(),this._saveSelection()}},{key:"_onDrop",value:function(t){t.preventDefault(),t.stopPropagation()}},{key:"_onFocus",value:function(t){this.alignCursorFriendly()}},{key:"_onClick",value:function(t){this.alignCursorFriendly()}},{key:"destroy",value:function(){this._unbindEvents(),this._listeners.length=0,delete this.el}},{key:"mask",get:function(){return this.masked.mask},set:function(t){if(!this.maskEquals(t))if(t instanceof he.Masked||this.masked.constructor!==fe(t)){var e=pe({mask:t});e.unmaskedValue=this.masked.unmaskedValue,this.masked=e}else this.masked.updateOptions({mask:t})}},{key:"value",get:function(){return this._value},set:function(t){this.masked.value=t,this.updateControl(),this.alignCursor()}},{key:"unmaskedValue",get:function(){return this._unmaskedValue},set:function(t){this.masked.unmaskedValue=t,this.updateControl(),this.alignCursor()}},{key:"typedValue",get:function(){return this.masked.typedValue},set:function(t){this.masked.typedValue=t,this.updateControl(),this.alignCursor()}},{key:"selectionStart",get:function(){return this._cursorChanging?this._changingCursorPos:this.el.selectionStart}},{key:"cursorPos",get:function(){return this._cursorChanging?this._changingCursorPos:this.el.selectionEnd},set:function(t){this.el&&this.el.isActive&&(this.el.select(t,t),this._saveSelection())}}]),t}();he.InputMask=Se;var De=function(t){function e(){return Nt(this,e),qt(this,Yt(e).apply(this,arguments))}return Ht(e,t),zt(e,[{key:"_update",value:function(t){t.enum&&(t.mask="*".repeat(t.enum[0].length)),Wt(Yt(e.prototype),"_update",this).call(this,t)}},{key:"doValidate",value:function(){for(var t,n=this,u=arguments.length,i=new Array(u),r=0;r<u;r++)i[r]=arguments[r];return this.enum.some((function(t){return t.indexOf(n.unmaskedValue)>=0}))&&(t=Wt(Yt(e.prototype),"doValidate",this)).call.apply(t,[this].concat(i))}}]),e}(me);he.MaskedEnum=De;var Be=function(t){function e(t){return Nt(this,e),qt(this,Yt(e).call(this,Object.assign({},e.DEFAULTS,{},t)))}return Ht(e,t),zt(e,[{key:"_update",value:function(t){Wt(Yt(e.prototype),"_update",this).call(this,t),this._updateRegExps()}},{key:"_updateRegExps",value:function(){var t="^"+(this.allowNegative?"[+|\\-]?":""),e=(this.scale?"("+ae(this.radix)+"\\d{0,"+this.scale+"})?":"")+"$";this._numberRegExpInput=new RegExp(t+"(0|([1-9]+\\d*))?"+e),this._numberRegExp=new RegExp(t+"\\d*"+e),this._mapToRadixRegExp=new RegExp("["+this.mapToRadix.map(ae).join("")+"]","g"),this._thousandsSeparatorRegExp=new RegExp(ae(this.thousandsSeparator),"g")}},{key:"_removeThousandsSeparators",value:function(t){return t.replace(this._thousandsSeparatorRegExp,"")}},{key:"_insertThousandsSeparators",value:function(t){var e=t.split(this.radix);return e[0]=e[0].replace(/\B(?=(\d{3})+(?!\d))/g,this.thousandsSeparator),e.join(this.radix)}},{key:"doPrepare",value:function(t){for(var n,u=arguments.length,i=new Array(u>1?u-1:0),r=1;r<u;r++)i[r-1]=arguments[r];return(n=Wt(Yt(e.prototype),"doPrepare",this)).call.apply(n,[this,this._removeThousandsSeparators(t.replace(this._mapToRadixRegExp,this.radix))].concat(i))}},{key:"_separatorsCount",value:function(t){for(var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=0,u=0;u<t;++u)this._value.indexOf(this.thousandsSeparator,u)===u&&(++n,e&&(t+=this.thousandsSeparator.length));return n}},{key:"_separatorsCountFromSlice",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this._value;return this._separatorsCount(this._removeThousandsSeparators(t).length,!0)}},{key:"extractInput",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length,u=arguments.length>2?arguments[2]:void 0,i=this._adjustRangeWithSeparators(t,n),r=Jt(i,2);return t=r[0],n=r[1],this._removeThousandsSeparators(Wt(Yt(e.prototype),"extractInput",this).call(this,t,n,u))}},{key:"_appendCharRaw",value:function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(!this.thousandsSeparator)return Wt(Yt(e.prototype),"_appendCharRaw",this).call(this,t,n);var u=n.tail&&n._beforeTailState?n._beforeTailState._value:this._value,i=this._separatorsCountFromSlice(u);this._value=this._removeThousandsSeparators(this.value);var r=Wt(Yt(e.prototype),"_appendCharRaw",this).call(this,t,n);this._value=this._insertThousandsSeparators(this._value);var a=n.tail&&n._beforeTailState?n._beforeTailState._value:this._value,s=this._separatorsCountFromSlice(a);return r.tailShift+=(s-i)*this.thousandsSeparator.length,r.skip=!r.rawInserted&&t===this.thousandsSeparator,r}},{key:"_findSeparatorAround",value:function(t){if(this.thousandsSeparator){var e=t-this.thousandsSeparator.length+1,n=this.value.indexOf(this.thousandsSeparator,e);if(n<=t)return n}return-1}},{key:"_adjustRangeWithSeparators",value:function(t,e){var n=this._findSeparatorAround(t);n>=0&&(t=n);var u=this._findSeparatorAround(e);return u>=0&&(e=u+this.thousandsSeparator.length),[t,e]}},{key:"remove",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.value.length,n=this._adjustRangeWithSeparators(t,e),u=Jt(n,2);t=u[0],e=u[1];var i=this.value.slice(0,t),r=this.value.slice(e),a=this._separatorsCount(i.length);this._value=this._insertThousandsSeparators(this._removeThousandsSeparators(i+r));var s=this._separatorsCountFromSlice(i);return new oe({tailShift:(s-a)*this.thousandsSeparator.length})}},{key:"nearestInputPos",value:function(t,e){if(!this.thousandsSeparator)return t;switch(e){case te:case ee:case ne:var n=this._findSeparatorAround(t-1);if(n>=0){var u=n+this.thousandsSeparator.length;if(t<u||this.value.length<=u||e===ne)return n}break;case ue:case ie:var i=this._findSeparatorAround(t);if(i>=0)return i+this.thousandsSeparator.length}return t}},{key:"doValidate",value:function(t){var n=(t.input?this._numberRegExpInput:this._numberRegExp).test(this._removeThousandsSeparators(this.value));if(n){var u=this.number;n=n&&!isNaN(u)&&(null==this.min||this.min>=0||this.min<=this.number)&&(null==this.max||this.max<=0||this.number<=this.max)}return n&&Wt(Yt(e.prototype),"doValidate",this).call(this,t)}},{key:"doCommit",value:function(){if(this.value){var t=this.number,n=t;null!=this.min&&(n=Math.max(n,this.min)),null!=this.max&&(n=Math.min(n,this.max)),n!==t&&(this.unmaskedValue=String(n));var u=this.value;this.normalizeZeros&&(u=this._normalizeZeros(u)),this.padFractionalZeros&&(u=this._padFractionalZeros(u)),this._value=u}Wt(Yt(e.prototype),"doCommit",this).call(this)}},{key:"_normalizeZeros",value:function(t){var e=this._removeThousandsSeparators(t).split(this.radix);return e[0]=e[0].replace(/^(\D*)(0*)(\d*)/,(function(t,e,n,u){return e+u})),t.length&&!/\d$/.test(e[0])&&(e[0]=e[0]+"0"),e.length>1&&(e[1]=e[1].replace(/0*$/,""),e[1].length||(e.length=1)),this._insertThousandsSeparators(e.join(this.radix))}},{key:"_padFractionalZeros",value:function(t){if(!t)return t;var e=t.split(this.radix);return e.length<2&&e.push(""),e[1]=e[1].padEnd(this.scale,"0"),e.join(this.radix)}},{key:"unmaskedValue",get:function(){return this._removeThousandsSeparators(this._normalizeZeros(this.value)).replace(this.radix,".")},set:function(t){Xt(Yt(e.prototype),"unmaskedValue",t.replace(".",this.radix),this,!0)}},{key:"typedValue",get:function(){return Number(this.unmaskedValue)},set:function(t){Xt(Yt(e.prototype),"unmaskedValue",String(t),this,!0)}},{key:"number",get:function(){return this.typedValue},set:function(t){this.typedValue=t}},{key:"allowNegative",get:function(){return this.signed||null!=this.min&&this.min<0||null!=this.max&&this.max<0}}]),e}(ce);Be.DEFAULTS={radix:",",thousandsSeparator:"",mapToRadix:["."],scale:2,signed:!1,normalizeZeros:!0,padFractionalZeros:!1},he.MaskedNumber=Be;var we=function(t){function e(){return Nt(this,e),qt(this,Yt(e).apply(this,arguments))}return Ht(e,t),zt(e,[{key:"_update",value:function(t){t.mask&&(t.validate=t.mask),Wt(Yt(e.prototype),"_update",this).call(this,t)}}]),e}(ce);he.MaskedFunction=we;var Me=function(t){function e(t){var n;return Nt(this,e),(n=qt(this,Yt(e).call(this,Object.assign({},e.DEFAULTS,{},t)))).currentMask=null,n}return Ht(e,t),zt(e,[{key:"_update",value:function(t){Wt(Yt(e.prototype),"_update",this).call(this,t),"mask"in t&&(this.compiledMasks=Array.isArray(t.mask)?t.mask.map((function(t){return pe(t)})):[])}},{key:"_appendCharRaw",value:function(){var t,e=this._applyDispatch.apply(this,arguments);this.currentMask&&e.aggregate((t=this.currentMask)._appendChar.apply(t,arguments));return e}},{key:"_applyDispatch",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.tail&&null!=e._beforeTailState?e._beforeTailState._value:this.value,u=this.rawInputValue,i=e.tail&&null!=e._beforeTailState?e._beforeTailState._rawInputValue:u,r=u.slice(i.length),a=this.currentMask,s=new oe,o=a&&a.state;if(this.currentMask=this.doDispatch(t,Object.assign({},e)),this.currentMask)if(this.currentMask!==a){this.currentMask.reset();var l=this.currentMask.append(i,{raw:!0});s.tailShift=l.inserted.length-n.length,r&&(s.tailShift+=this.currentMask.append(r,{raw:!0,tail:!0}).tailShift)}else this.currentMask.state=o;return s}},{key:"_appendPlaceholder",value:function(){var t=this._applyDispatch.apply(this,arguments);return this.currentMask&&t.aggregate(this.currentMask._appendPlaceholder()),t}},{key:"doDispatch",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.dispatch(t,this,e)}},{key:"doValidate",value:function(){for(var t,n,u=arguments.length,i=new Array(u),r=0;r<u;r++)i[r]=arguments[r];return(t=Wt(Yt(e.prototype),"doValidate",this)).call.apply(t,[this].concat(i))&&(!this.currentMask||(n=this.currentMask).doValidate.apply(n,i))}},{key:"reset",value:function(){this.currentMask&&this.currentMask.reset(),this.compiledMasks.forEach((function(t){return t.reset()}))}},{key:"remove",value:function(){var t,e=new oe;this.currentMask&&e.aggregate((t=this.currentMask).remove.apply(t,arguments)).aggregate(this._applyDispatch());return e}},{key:"extractInput",value:function(){var t;return this.currentMask?(t=this.currentMask).extractInput.apply(t,arguments):""}},{key:"extractTail",value:function(){for(var t,n,u=arguments.length,i=new Array(u),r=0;r<u;r++)i[r]=arguments[r];return this.currentMask?(t=this.currentMask).extractTail.apply(t,i):(n=Wt(Yt(e.prototype),"extractTail",this)).call.apply(n,[this].concat(i))}},{key:"doCommit",value:function(){this.currentMask&&this.currentMask.doCommit(),Wt(Yt(e.prototype),"doCommit",this).call(this)}},{key:"nearestInputPos",value:function(){for(var t,n,u=arguments.length,i=new Array(u),r=0;r<u;r++)i[r]=arguments[r];return this.currentMask?(t=this.currentMask).nearestInputPos.apply(t,i):(n=Wt(Yt(e.prototype),"nearestInputPos",this)).call.apply(n,[this].concat(i))}},{key:"value",get:function(){return this.currentMask?this.currentMask.value:""},set:function(t){Xt(Yt(e.prototype),"value",t,this,!0)}},{key:"unmaskedValue",get:function(){return this.currentMask?this.currentMask.unmaskedValue:""},set:function(t){Xt(Yt(e.prototype),"unmaskedValue",t,this,!0)}},{key:"typedValue",get:function(){return this.currentMask?this.currentMask.typedValue:""},set:function(t){var e=String(t);this.currentMask&&(this.currentMask.typedValue=t,e=this.currentMask.unmaskedValue),this.unmaskedValue=e}},{key:"isComplete",get:function(){return!!this.currentMask&&this.currentMask.isComplete}},{key:"state",get:function(){return Object.assign({},Wt(Yt(e.prototype),"state",this),{_rawInputValue:this.rawInputValue,compiledMasks:this.compiledMasks.map((function(t){return t.state})),currentMaskRef:this.currentMask,currentMask:this.currentMask&&this.currentMask.state})},set:function(t){var n=t.compiledMasks,u=t.currentMaskRef,i=t.currentMask,r=Kt(t,["compiledMasks","currentMaskRef","currentMask"]);this.compiledMasks.forEach((function(t,e){return t.state=n[e]})),null!=u&&(this.currentMask=u,this.currentMask.state=i),Xt(Yt(e.prototype),"state",r,this,!0)}},{key:"overwrite",get:function(){return this.currentMask?this.currentMask.overwrite:Wt(Yt(e.prototype),"overwrite",this)},set:function(t){console.warn('"overwrite" option is not available in dynamic mask, use this option in siblings')}}]),e}(ce);Me.DEFAULTS={dispatch:function(t,e,n){if(e.compiledMasks.length){var u=e.rawInputValue,i=e.compiledMasks.map((function(e,i){return e.reset(),e.append(u,{raw:!0}),e.append(t,n),{weight:e.rawInputValue.length,index:i}}));return i.sort((function(t,e){return e.weight-t.weight})),e.compiledMasks[i[0].index]}}},he.MaskedDynamic=Me;var xe={MASKED:"value",UNMASKED:"unmaskedValue",TYPED:"typedValue"};function Pe(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:xe.MASKED,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:xe.MASKED,u=pe(t);return function(t){return u.runIsolated((function(u){return u[e]=t,u[n]}))}}function Oe(t){for(var e=arguments.length,n=new Array(e>1?e-1:0),u=1;u<e;u++)n[u-1]=arguments[u];return Pe.apply(void 0,n)(t)}he.PIPE_TYPE=xe,he.createPipe=Pe,he.pipe=Oe;try{globalThis.IMask=he}catch(t){}t.HTMLContenteditableMaskElement=Fe,t.HTMLMaskElement=Ee,t.InputMask=Se,t.MaskElement=Ce,t.Masked=ce,t.MaskedDate=be,t.MaskedDynamic=Me,t.MaskedEnum=De,t.MaskedFunction=we,t.MaskedNumber=Be,t.MaskedPattern=me,t.MaskedRange=Ae,t.MaskedRegExp=ye,t.PIPE_TYPE=xe,t.createMask=pe,t.createPipe=Pe,t.default=he,t.pipe=Oe,Object.defineProperty(t,"__esModule",{value:!0})}));
\ No newline at end of file
diff --git a/public/js/vendor/swiper/swiper-bundle.min.css b/public/js/vendor/swiper/swiper-bundle.min.css
new file mode 100644
index 0000000..ec50b4c
--- /dev/null
+++ b/public/js/vendor/swiper/swiper-bundle.min.css
@@ -0,0 +1,13 @@
+/**
+ * Swiper 7.0.8
+ * Most modern mobile touch slider and framework with hardware accelerated transitions
+ * https://swiperjs.com
+ *
+ * Copyright 2014-2021 Vladimir Kharlampidi
+ *
+ * Released under the MIT License
+ *
+ * Released on: October 4, 2021
+ */
+
+@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
\ No newline at end of file
diff --git a/public/js/vendor/swiper/swiper-bundle.min.js b/public/js/vendor/swiper/swiper-bundle.min.js
new file mode 100644
index 0000000..f3122ca
--- /dev/null
+++ b/public/js/vendor/swiper/swiper-bundle.min.js
@@ -0,0 +1,14 @@
+/**
+ * Swiper 7.0.8
+ * Most modern mobile touch slider and framework with hardware accelerated transitions
+ * https://swiperjs.com
+ *
+ * Copyright 2014-2021 Vladimir Kharlampidi
+ *
+ * Released under the MIT License
+ *
+ * Released on: October 4, 2021
+ */
+
+!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).Swiper=t()}(this,(function(){"use strict";function e(e){return null!==e&&"object"==typeof e&&"constructor"in e&&e.constructor===Object}function t(s={},a={}){Object.keys(a).forEach((i=>{void 0===s[i]?s[i]=a[i]:e(a[i])&&e(s[i])&&Object.keys(a[i]).length>0&&t(s[i],a[i])}))}const s={body:{},addEventListener(){},removeEventListener(){},activeElement:{blur(){},nodeName:""},querySelector:()=>null,querySelectorAll:()=>[],getElementById:()=>null,createEvent:()=>({initEvent(){}}),createElement:()=>({children:[],childNodes:[],style:{},setAttribute(){},getElementsByTagName:()=>[]}),createElementNS:()=>({}),importNode:()=>null,location:{hash:"",host:"",hostname:"",href:"",origin:"",pathname:"",protocol:"",search:""}};function a(){const e="undefined"!=typeof document?document:{};return t(e,s),e}const i={document:s,navigator:{userAgent:""},location:{hash:"",host:"",hostname:"",href:"",origin:"",pathname:"",protocol:"",search:""},history:{replaceState(){},pushState(){},go(){},back(){}},CustomEvent:function(){return this},addEventListener(){},removeEventListener(){},getComputedStyle:()=>({getPropertyValue:()=>""}),Image(){},Date(){},screen:{},setTimeout(){},clearTimeout(){},matchMedia:()=>({}),requestAnimationFrame:e=>"undefined"==typeof setTimeout?(e(),null):setTimeout(e,0),cancelAnimationFrame(e){"undefined"!=typeof setTimeout&&clearTimeout(e)}};function r(){const e="undefined"!=typeof window?window:{};return t(e,i),e}class n extends Array{constructor(e){super(...e||[]),function(e){const t=e.__proto__;Object.defineProperty(e,"__proto__",{get:()=>t,set(e){t.__proto__=e}})}(this)}}function l(e=[]){const t=[];return e.forEach((e=>{Array.isArray(e)?t.push(...l(e)):t.push(e)})),t}function o(e,t){return Array.prototype.filter.call(e,t)}function d(e,t){const s=r(),i=a();let l=[];if(!t&&e instanceof n)return e;if(!e)return new n(l);if("string"==typeof e){const s=e.trim();if(s.indexOf("<")>=0&&s.indexOf(">")>=0){let e="div";0===s.indexOf("<li")&&(e="ul"),0===s.indexOf("<tr")&&(e="tbody"),0!==s.indexOf("<td")&&0!==s.indexOf("<th")||(e="tr"),0===s.indexOf("<tbody")&&(e="table"),0===s.indexOf("<option")&&(e="select");const t=i.createElement(e);t.innerHTML=s;for(let e=0;e<t.childNodes.length;e+=1)l.push(t.childNodes[e])}else l=function(e,t){if("string"!=typeof e)return[e];const s=[],a=t.querySelectorAll(e);for(let e=0;e<a.length;e+=1)s.push(a[e]);return s}(e.trim(),t||i)}else if(e.nodeType||e===s||e===i)l.push(e);else if(Array.isArray(e)){if(e instanceof n)return e;l=e}return new n(function(e){const t=[];for(let s=0;s<e.length;s+=1)-1===t.indexOf(e[s])&&t.push(e[s]);return t}(l))}d.fn=n.prototype;const c={addClass:function(...e){const t=l(e.map((e=>e.split(" "))));return this.forEach((e=>{e.classList.add(...t)})),this},removeClass:function(...e){const t=l(e.map((e=>e.split(" "))));return this.forEach((e=>{e.classList.remove(...t)})),this},hasClass:function(...e){const t=l(e.map((e=>e.split(" "))));return o(this,(e=>t.filter((t=>e.classList.contains(t))).length>0)).length>0},toggleClass:function(...e){const t=l(e.map((e=>e.split(" "))));this.forEach((e=>{t.forEach((t=>{e.classList.toggle(t)}))}))},attr:function(e,t){if(1===arguments.length&&"string"==typeof e)return this[0]?this[0].getAttribute(e):void 0;for(let s=0;s<this.length;s+=1)if(2===arguments.length)this[s].setAttribute(e,t);else for(const t in e)this[s][t]=e[t],this[s].setAttribute(t,e[t]);return this},removeAttr:function(e){for(let t=0;t<this.length;t+=1)this[t].removeAttribute(e);return this},transform:function(e){for(let t=0;t<this.length;t+=1)this[t].style.transform=e;return this},transition:function(e){for(let t=0;t<this.length;t+=1)this[t].style.transitionDuration="string"!=typeof e?`${e}ms`:e;return this},on:function(...e){let[t,s,a,i]=e;function r(e){const t=e.target;if(!t)return;const i=e.target.dom7EventData||[];if(i.indexOf(e)<0&&i.unshift(e),d(t).is(s))a.apply(t,i);else{const e=d(t).parents();for(let t=0;t<e.length;t+=1)d(e[t]).is(s)&&a.apply(e[t],i)}}function n(e){const t=e&&e.target&&e.target.dom7EventData||[];t.indexOf(e)<0&&t.unshift(e),a.apply(this,t)}"function"==typeof e[1]&&([t,a,i]=e,s=void 0),i||(i=!1);const l=t.split(" ");let o;for(let e=0;e<this.length;e+=1){const t=this[e];if(s)for(o=0;o<l.length;o+=1){const e=l[o];t.dom7LiveListeners||(t.dom7LiveListeners={}),t.dom7LiveListeners[e]||(t.dom7LiveListeners[e]=[]),t.dom7LiveListeners[e].push({listener:a,proxyListener:r}),t.addEventListener(e,r,i)}else for(o=0;o<l.length;o+=1){const e=l[o];t.dom7Listeners||(t.dom7Listeners={}),t.dom7Listeners[e]||(t.dom7Listeners[e]=[]),t.dom7Listeners[e].push({listener:a,proxyListener:n}),t.addEventListener(e,n,i)}}return this},off:function(...e){let[t,s,a,i]=e;"function"==typeof e[1]&&([t,a,i]=e,s=void 0),i||(i=!1);const r=t.split(" ");for(let e=0;e<r.length;e+=1){const t=r[e];for(let e=0;e<this.length;e+=1){const r=this[e];let n;if(!s&&r.dom7Listeners?n=r.dom7Listeners[t]:s&&r.dom7LiveListeners&&(n=r.dom7LiveListeners[t]),n&&n.length)for(let e=n.length-1;e>=0;e-=1){const s=n[e];a&&s.listener===a||a&&s.listener&&s.listener.dom7proxy&&s.listener.dom7proxy===a?(r.removeEventListener(t,s.proxyListener,i),n.splice(e,1)):a||(r.removeEventListener(t,s.proxyListener,i),n.splice(e,1))}}}return this},trigger:function(...e){const t=r(),s=e[0].split(" "),a=e[1];for(let i=0;i<s.length;i+=1){const r=s[i];for(let s=0;s<this.length;s+=1){const i=this[s];if(t.CustomEvent){const s=new t.CustomEvent(r,{detail:a,bubbles:!0,cancelable:!0});i.dom7EventData=e.filter(((e,t)=>t>0)),i.dispatchEvent(s),i.dom7EventData=[],delete i.dom7EventData}}}return this},transitionEnd:function(e){const t=this;return e&&t.on("transitionend",(function s(a){a.target===this&&(e.call(this,a),t.off("transitionend",s))})),this},outerWidth:function(e){if(this.length>0){if(e){const e=this.styles();return this[0].offsetWidth+parseFloat(e.getPropertyValue("margin-right"))+parseFloat(e.getPropertyValue("margin-left"))}return this[0].offsetWidth}return null},outerHeight:function(e){if(this.length>0){if(e){const e=this.styles();return this[0].offsetHeight+parseFloat(e.getPropertyValue("margin-top"))+parseFloat(e.getPropertyValue("margin-bottom"))}return this[0].offsetHeight}return null},styles:function(){const e=r();return this[0]?e.getComputedStyle(this[0],null):{}},offset:function(){if(this.length>0){const e=r(),t=a(),s=this[0],i=s.getBoundingClientRect(),n=t.body,l=s.clientTop||n.clientTop||0,o=s.clientLeft||n.clientLeft||0,d=s===e?e.scrollY:s.scrollTop,c=s===e?e.scrollX:s.scrollLeft;return{top:i.top+d-l,left:i.left+c-o}}return null},css:function(e,t){const s=r();let a;if(1===arguments.length){if("string"!=typeof e){for(a=0;a<this.length;a+=1)for(const t in e)this[a].style[t]=e[t];return this}if(this[0])return s.getComputedStyle(this[0],null).getPropertyValue(e)}if(2===arguments.length&&"string"==typeof e){for(a=0;a<this.length;a+=1)this[a].style[e]=t;return this}return this},each:function(e){return e?(this.forEach(((t,s)=>{e.apply(t,[t,s])})),this):this},html:function(e){if(void 0===e)return this[0]?this[0].innerHTML:null;for(let t=0;t<this.length;t+=1)this[t].innerHTML=e;return this},text:function(e){if(void 0===e)return this[0]?this[0].textContent.trim():null;for(let t=0;t<this.length;t+=1)this[t].textContent=e;return this},is:function(e){const t=r(),s=a(),i=this[0];let l,o;if(!i||void 0===e)return!1;if("string"==typeof e){if(i.matches)return i.matches(e);if(i.webkitMatchesSelector)return i.webkitMatchesSelector(e);if(i.msMatchesSelector)return i.msMatchesSelector(e);for(l=d(e),o=0;o<l.length;o+=1)if(l[o]===i)return!0;return!1}if(e===s)return i===s;if(e===t)return i===t;if(e.nodeType||e instanceof n){for(l=e.nodeType?[e]:e,o=0;o<l.length;o+=1)if(l[o]===i)return!0;return!1}return!1},index:function(){let e,t=this[0];if(t){for(e=0;null!==(t=t.previousSibling);)1===t.nodeType&&(e+=1);return e}},eq:function(e){if(void 0===e)return this;const t=this.length;if(e>t-1)return d([]);if(e<0){const s=t+e;return d(s<0?[]:[this[s]])}return d([this[e]])},append:function(...e){let t;const s=a();for(let a=0;a<e.length;a+=1){t=e[a];for(let e=0;e<this.length;e+=1)if("string"==typeof t){const a=s.createElement("div");for(a.innerHTML=t;a.firstChild;)this[e].appendChild(a.firstChild)}else if(t instanceof n)for(let s=0;s<t.length;s+=1)this[e].appendChild(t[s]);else this[e].appendChild(t)}return this},prepend:function(e){const t=a();let s,i;for(s=0;s<this.length;s+=1)if("string"==typeof e){const a=t.createElement("div");for(a.innerHTML=e,i=a.childNodes.length-1;i>=0;i-=1)this[s].insertBefore(a.childNodes[i],this[s].childNodes[0])}else if(e instanceof n)for(i=0;i<e.length;i+=1)this[s].insertBefore(e[i],this[s].childNodes[0]);else this[s].insertBefore(e,this[s].childNodes[0]);return this},next:function(e){return this.length>0?e?this[0].nextElementSibling&&d(this[0].nextElementSibling).is(e)?d([this[0].nextElementSibling]):d([]):this[0].nextElementSibling?d([this[0].nextElementSibling]):d([]):d([])},nextAll:function(e){const t=[];let s=this[0];if(!s)return d([]);for(;s.nextElementSibling;){const a=s.nextElementSibling;e?d(a).is(e)&&t.push(a):t.push(a),s=a}return d(t)},prev:function(e){if(this.length>0){const t=this[0];return e?t.previousElementSibling&&d(t.previousElementSibling).is(e)?d([t.previousElementSibling]):d([]):t.previousElementSibling?d([t.previousElementSibling]):d([])}return d([])},prevAll:function(e){const t=[];let s=this[0];if(!s)return d([]);for(;s.previousElementSibling;){const a=s.previousElementSibling;e?d(a).is(e)&&t.push(a):t.push(a),s=a}return d(t)},parent:function(e){const t=[];for(let s=0;s<this.length;s+=1)null!==this[s].parentNode&&(e?d(this[s].parentNode).is(e)&&t.push(this[s].parentNode):t.push(this[s].parentNode));return d(t)},parents:function(e){const t=[];for(let s=0;s<this.length;s+=1){let a=this[s].parentNode;for(;a;)e?d(a).is(e)&&t.push(a):t.push(a),a=a.parentNode}return d(t)},closest:function(e){let t=this;return void 0===e?d([]):(t.is(e)||(t=t.parents(e).eq(0)),t)},find:function(e){const t=[];for(let s=0;s<this.length;s+=1){const a=this[s].querySelectorAll(e);for(let e=0;e<a.length;e+=1)t.push(a[e])}return d(t)},children:function(e){const t=[];for(let s=0;s<this.length;s+=1){const a=this[s].children;for(let s=0;s<a.length;s+=1)e&&!d(a[s]).is(e)||t.push(a[s])}return d(t)},filter:function(e){return d(o(this,e))},remove:function(){for(let e=0;e<this.length;e+=1)this[e].parentNode&&this[e].parentNode.removeChild(this[e]);return this}};function p(e,t=0){return setTimeout(e,t)}function u(){return Date.now()}function h(e,t="x"){const s=r();let a,i,n;const l=function(e){const t=r();let s;return t.getComputedStyle&&(s=t.getComputedStyle(e,null)),!s&&e.currentStyle&&(s=e.currentStyle),s||(s=e.style),s}(e);return s.WebKitCSSMatrix?(i=l.transform||l.webkitTransform,i.split(",").length>6&&(i=i.split(", ").map((e=>e.replace(",","."))).join(", ")),n=new s.WebKitCSSMatrix("none"===i?"":i)):(n=l.MozTransform||l.OTransform||l.MsTransform||l.msTransform||l.transform||l.getPropertyValue("transform").replace("translate(","matrix(1, 0, 0, 1,"),a=n.toString().split(",")),"x"===t&&(i=s.WebKitCSSMatrix?n.m41:16===a.length?parseFloat(a[12]):parseFloat(a[4])),"y"===t&&(i=s.WebKitCSSMatrix?n.m42:16===a.length?parseFloat(a[13]):parseFloat(a[5])),i||0}function m(e){return"object"==typeof e&&null!==e&&e.constructor&&"Object"===Object.prototype.toString.call(e).slice(8,-1)}function f(...e){const t=Object(e[0]),s=["__proto__","constructor","prototype"];for(let i=1;i<e.length;i+=1){const r=e[i];if(null!=r&&(a=r,!("undefined"!=typeof window&&void 0!==window.HTMLElement?a instanceof HTMLElement:a&&(1===a.nodeType||11===a.nodeType)))){const e=Object.keys(Object(r)).filter((e=>s.indexOf(e)<0));for(let s=0,a=e.length;s<a;s+=1){const a=e[s],i=Object.getOwnPropertyDescriptor(r,a);void 0!==i&&i.enumerable&&(m(t[a])&&m(r[a])?r[a].__swiper__?t[a]=r[a]:f(t[a],r[a]):!m(t[a])&&m(r[a])?(t[a]={},r[a].__swiper__?t[a]=r[a]:f(t[a],r[a])):t[a]=r[a])}}}var a;return t}function g(e,t,s){e.style.setProperty(t,s)}function v({swiper:e,targetPosition:t,side:s}){const a=r(),i=-e.translate;let n,l=null;const o=e.params.speed;e.wrapperEl.style.scrollSnapType="none",a.cancelAnimationFrame(e.cssModeFrameID);const d=t>i?"next":"prev",c=(e,t)=>"next"===d&&e>=t||"prev"===d&&e<=t,p=()=>{n=(new Date).getTime(),null===l&&(l=n);const r=Math.max(Math.min((n-l)/o,1),0),d=.5-Math.cos(r*Math.PI)/2;let u=i+d*(t-i);if(c(u,t)&&(u=t),e.wrapperEl.scrollTo({[s]:u}),c(u,t))return e.wrapperEl.style.overflow="hidden",e.wrapperEl.style.scrollSnapType="",setTimeout((()=>{e.wrapperEl.style.overflow="",e.wrapperEl.scrollTo({[s]:u})})),void a.cancelAnimationFrame(e.cssModeFrameID);e.cssModeFrameID=a.requestAnimationFrame(p)};p()}let w,b,x;function y(){return w||(w=function(){const e=r(),t=a();return{smoothScroll:t.documentElement&&"scrollBehavior"in t.documentElement.style,touch:!!("ontouchstart"in e||e.DocumentTouch&&t instanceof e.DocumentTouch),passiveListener:function(){let t=!1;try{const s=Object.defineProperty({},"passive",{get(){t=!0}});e.addEventListener("testPassiveListener",null,s)}catch(e){}return t}(),gestures:"ongesturestart"in e}}()),w}function E(e={}){return b||(b=function({userAgent:e}={}){const t=y(),s=r(),a=s.navigator.platform,i=e||s.navigator.userAgent,n={ios:!1,android:!1},l=s.screen.width,o=s.screen.height,d=i.match(/(Android);?[\s\/]+([\d.]+)?/);let c=i.match(/(iPad).*OS\s([\d_]+)/);const p=i.match(/(iPod)(.*OS\s([\d_]+))?/),u=!c&&i.match(/(iPhone\sOS|iOS)\s([\d_]+)/),h="Win32"===a;let m="MacIntel"===a;return!c&&m&&t.touch&&["1024x1366","1366x1024","834x1194","1194x834","834x1112","1112x834","768x1024","1024x768","820x1180","1180x820","810x1080","1080x810"].indexOf(`${l}x${o}`)>=0&&(c=i.match(/(Version)\/([\d.]+)/),c||(c=[0,1,"13_0_0"]),m=!1),d&&!h&&(n.os="android",n.android=!0),(c||u||p)&&(n.os="ios",n.ios=!0),n}(e)),b}function T(){return x||(x=function(){const e=r();return{isSafari:function(){const t=e.navigator.userAgent.toLowerCase();return t.indexOf("safari")>=0&&t.indexOf("chrome")<0&&t.indexOf("android")<0}(),isWebView:/(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/i.test(e.navigator.userAgent)}}()),x}Object.keys(c).forEach((e=>{Object.defineProperty(d.fn,e,{value:c[e],writable:!0})}));var C={on(e,t,s){const a=this;if("function"!=typeof t)return a;const i=s?"unshift":"push";return e.split(" ").forEach((e=>{a.eventsListeners[e]||(a.eventsListeners[e]=[]),a.eventsListeners[e][i](t)})),a},once(e,t,s){const a=this;if("function"!=typeof t)return a;function i(...s){a.off(e,i),i.__emitterProxy&&delete i.__emitterProxy,t.apply(a,s)}return i.__emitterProxy=t,a.on(e,i,s)},onAny(e,t){const s=this;if("function"!=typeof e)return s;const a=t?"unshift":"push";return s.eventsAnyListeners.indexOf(e)<0&&s.eventsAnyListeners[a](e),s},offAny(e){const t=this;if(!t.eventsAnyListeners)return t;const s=t.eventsAnyListeners.indexOf(e);return s>=0&&t.eventsAnyListeners.splice(s,1),t},off(e,t){const s=this;return s.eventsListeners?(e.split(" ").forEach((e=>{void 0===t?s.eventsListeners[e]=[]:s.eventsListeners[e]&&s.eventsListeners[e].forEach(((a,i)=>{(a===t||a.__emitterProxy&&a.__emitterProxy===t)&&s.eventsListeners[e].splice(i,1)}))})),s):s},emit(...e){const t=this;if(!t.eventsListeners)return t;let s,a,i;"string"==typeof e[0]||Array.isArray(e[0])?(s=e[0],a=e.slice(1,e.length),i=t):(s=e[0].events,a=e[0].data,i=e[0].context||t),a.unshift(i);return(Array.isArray(s)?s:s.split(" ")).forEach((e=>{t.eventsAnyListeners&&t.eventsAnyListeners.length&&t.eventsAnyListeners.forEach((t=>{t.apply(i,[e,...a])})),t.eventsListeners&&t.eventsListeners[e]&&t.eventsListeners[e].forEach((e=>{e.apply(i,a)}))})),t}};function $({swiper:e,runCallbacks:t,direction:s,step:a}){const{activeIndex:i,previousIndex:r}=e;let n=s;if(n||(n=i>r?"next":i<r?"prev":"reset"),e.emit(`transition${a}`),t&&i!==r){if("reset"===n)return void e.emit(`slideResetTransition${a}`);e.emit(`slideChangeTransition${a}`),"next"===n?e.emit(`slideNextTransition${a}`):e.emit(`slidePrevTransition${a}`)}}function S(e){const t=this,s=a(),i=r(),n=t.touchEventsData,{params:l,touches:o,enabled:c}=t;if(!c)return;if(t.animating&&l.preventInteractionOnTransition)return;!t.animating&&l.cssMode&&l.loop&&t.loopFix();let p=e;p.originalEvent&&(p=p.originalEvent);let h=d(p.target);if("wrapper"===l.touchEventsTarget&&!h.closest(t.wrapperEl).length)return;if(n.isTouchEvent="touchstart"===p.type,!n.isTouchEvent&&"which"in p&&3===p.which)return;if(!n.isTouchEvent&&"button"in p&&p.button>0)return;if(n.isTouched&&n.isMoved)return;!!l.noSwipingClass&&""!==l.noSwipingClass&&p.target&&p.target.shadowRoot&&e.path&&e.path[0]&&(h=d(e.path[0]));const m=l.noSwipingSelector?l.noSwipingSelector:`.${l.noSwipingClass}`,f=!(!p.target||!p.target.shadowRoot);if(l.noSwiping&&(f?function(e,t=this){return function t(s){return s&&s!==a()&&s!==r()?(s.assignedSlot&&(s=s.assignedSlot),s.closest(e)||t(s.getRootNode().host)):null}(t)}(m,p.target):h.closest(m)[0]))return void(t.allowClick=!0);if(l.swipeHandler&&!h.closest(l.swipeHandler)[0])return;o.currentX="touchstart"===p.type?p.targetTouches[0].pageX:p.pageX,o.currentY="touchstart"===p.type?p.targetTouches[0].pageY:p.pageY;const g=o.currentX,v=o.currentY,w=l.edgeSwipeDetection||l.iOSEdgeSwipeDetection,b=l.edgeSwipeThreshold||l.iOSEdgeSwipeThreshold;if(w&&(g<=b||g>=i.innerWidth-b)){if("prevent"!==w)return;e.preventDefault()}if(Object.assign(n,{isTouched:!0,isMoved:!1,allowTouchCallbacks:!0,isScrolling:void 0,startMoving:void 0}),o.startX=g,o.startY=v,n.touchStartTime=u(),t.allowClick=!0,t.updateSize(),t.swipeDirection=void 0,l.threshold>0&&(n.allowThresholdMove=!1),"touchstart"!==p.type){let e=!0;h.is(n.focusableElements)&&(e=!1),s.activeElement&&d(s.activeElement).is(n.focusableElements)&&s.activeElement!==h[0]&&s.activeElement.blur();const a=e&&t.allowTouchMove&&l.touchStartPreventDefault;!l.touchStartForcePreventDefault&&!a||h[0].isContentEditable||p.preventDefault()}t.emit("touchStart",p)}function M(e){const t=a(),s=this,i=s.touchEventsData,{params:r,touches:n,rtlTranslate:l,enabled:o}=s;if(!o)return;let c=e;if(c.originalEvent&&(c=c.originalEvent),!i.isTouched)return void(i.startMoving&&i.isScrolling&&s.emit("touchMoveOpposite",c));if(i.isTouchEvent&&"touchmove"!==c.type)return;const p="touchmove"===c.type&&c.targetTouches&&(c.targetTouches[0]||c.changedTouches[0]),h="touchmove"===c.type?p.pageX:c.pageX,m="touchmove"===c.type?p.pageY:c.pageY;if(c.preventedByNestedSwiper)return n.startX=h,void(n.startY=m);if(!s.allowTouchMove)return s.allowClick=!1,void(i.isTouched&&(Object.assign(n,{startX:h,startY:m,currentX:h,currentY:m}),i.touchStartTime=u()));if(i.isTouchEvent&&r.touchReleaseOnEdges&&!r.loop)if(s.isVertical()){if(m<n.startY&&s.translate<=s.maxTranslate()||m>n.startY&&s.translate>=s.minTranslate())return i.isTouched=!1,void(i.isMoved=!1)}else if(h<n.startX&&s.translate<=s.maxTranslate()||h>n.startX&&s.translate>=s.minTranslate())return;if(i.isTouchEvent&&t.activeElement&&c.target===t.activeElement&&d(c.target).is(i.focusableElements))return i.isMoved=!0,void(s.allowClick=!1);if(i.allowTouchCallbacks&&s.emit("touchMove",c),c.targetTouches&&c.targetTouches.length>1)return;n.currentX=h,n.currentY=m;const f=n.currentX-n.startX,g=n.currentY-n.startY;if(s.params.threshold&&Math.sqrt(f**2+g**2)<s.params.threshold)return;if(void 0===i.isScrolling){let e;s.isHorizontal()&&n.currentY===n.startY||s.isVertical()&&n.currentX===n.startX?i.isScrolling=!1:f*f+g*g>=25&&(e=180*Math.atan2(Math.abs(g),Math.abs(f))/Math.PI,i.isScrolling=s.isHorizontal()?e>r.touchAngle:90-e>r.touchAngle)}if(i.isScrolling&&s.emit("touchMoveOpposite",c),void 0===i.startMoving&&(n.currentX===n.startX&&n.currentY===n.startY||(i.startMoving=!0)),i.isScrolling)return void(i.isTouched=!1);if(!i.startMoving)return;s.allowClick=!1,!r.cssMode&&c.cancelable&&c.preventDefault(),r.touchMoveStopPropagation&&!r.nested&&c.stopPropagation(),i.isMoved||(r.loop&&!r.cssMode&&s.loopFix(),i.startTranslate=s.getTranslate(),s.setTransition(0),s.animating&&s.$wrapperEl.trigger("webkitTransitionEnd transitionend"),i.allowMomentumBounce=!1,!r.grabCursor||!0!==s.allowSlideNext&&!0!==s.allowSlidePrev||s.setGrabCursor(!0),s.emit("sliderFirstMove",c)),s.emit("sliderMove",c),i.isMoved=!0;let v=s.isHorizontal()?f:g;n.diff=v,v*=r.touchRatio,l&&(v=-v),s.swipeDirection=v>0?"prev":"next",i.currentTranslate=v+i.startTranslate;let w=!0,b=r.resistanceRatio;if(r.touchReleaseOnEdges&&(b=0),v>0&&i.currentTranslate>s.minTranslate()?(w=!1,r.resistance&&(i.currentTranslate=s.minTranslate()-1+(-s.minTranslate()+i.startTranslate+v)**b)):v<0&&i.currentTranslate<s.maxTranslate()&&(w=!1,r.resistance&&(i.currentTranslate=s.maxTranslate()+1-(s.maxTranslate()-i.startTranslate-v)**b)),w&&(c.preventedByNestedSwiper=!0),!s.allowSlideNext&&"next"===s.swipeDirection&&i.currentTranslate<i.startTranslate&&(i.currentTranslate=i.startTranslate),!s.allowSlidePrev&&"prev"===s.swipeDirection&&i.currentTranslate>i.startTranslate&&(i.currentTranslate=i.startTranslate),s.allowSlidePrev||s.allowSlideNext||(i.currentTranslate=i.startTranslate),r.threshold>0){if(!(Math.abs(v)>r.threshold||i.allowThresholdMove))return void(i.currentTranslate=i.startTranslate);if(!i.allowThresholdMove)return i.allowThresholdMove=!0,n.startX=n.currentX,n.startY=n.currentY,i.currentTranslate=i.startTranslate,void(n.diff=s.isHorizontal()?n.currentX-n.startX:n.currentY-n.startY)}r.followFinger&&!r.cssMode&&((r.freeMode&&r.freeMode.enabled&&s.freeMode||r.watchSlidesProgress)&&(s.updateActiveIndex(),s.updateSlidesClasses()),s.params.freeMode&&r.freeMode.enabled&&s.freeMode&&s.freeMode.onTouchMove(),s.updateProgress(i.currentTranslate),s.setTranslate(i.currentTranslate))}function P(e){const t=this,s=t.touchEventsData,{params:a,touches:i,rtlTranslate:r,slidesGrid:n,enabled:l}=t;if(!l)return;let o=e;if(o.originalEvent&&(o=o.originalEvent),s.allowTouchCallbacks&&t.emit("touchEnd",o),s.allowTouchCallbacks=!1,!s.isTouched)return s.isMoved&&a.grabCursor&&t.setGrabCursor(!1),s.isMoved=!1,void(s.startMoving=!1);a.grabCursor&&s.isMoved&&s.isTouched&&(!0===t.allowSlideNext||!0===t.allowSlidePrev)&&t.setGrabCursor(!1);const d=u(),c=d-s.touchStartTime;if(t.allowClick&&(t.updateClickedSlide(o),t.emit("tap click",o),c<300&&d-s.lastClickTime<300&&t.emit("doubleTap doubleClick",o)),s.lastClickTime=u(),p((()=>{t.destroyed||(t.allowClick=!0)})),!s.isTouched||!s.isMoved||!t.swipeDirection||0===i.diff||s.currentTranslate===s.startTranslate)return s.isTouched=!1,s.isMoved=!1,void(s.startMoving=!1);let h;if(s.isTouched=!1,s.isMoved=!1,s.startMoving=!1,h=a.followFinger?r?t.translate:-t.translate:-s.currentTranslate,a.cssMode)return;if(t.params.freeMode&&a.freeMode.enabled)return void t.freeMode.onTouchEnd({currentPos:h});let m=0,f=t.slidesSizesGrid[0];for(let e=0;e<n.length;e+=e<a.slidesPerGroupSkip?1:a.slidesPerGroup){const t=e<a.slidesPerGroupSkip-1?1:a.slidesPerGroup;void 0!==n[e+t]?h>=n[e]&&h<n[e+t]&&(m=e,f=n[e+t]-n[e]):h>=n[e]&&(m=e,f=n[n.length-1]-n[n.length-2])}const g=(h-n[m])/f,v=m<a.slidesPerGroupSkip-1?1:a.slidesPerGroup;if(c>a.longSwipesMs){if(!a.longSwipes)return void t.slideTo(t.activeIndex);"next"===t.swipeDirection&&(g>=a.longSwipesRatio?t.slideTo(m+v):t.slideTo(m)),"prev"===t.swipeDirection&&(g>1-a.longSwipesRatio?t.slideTo(m+v):t.slideTo(m))}else{if(!a.shortSwipes)return void t.slideTo(t.activeIndex);t.navigation&&(o.target===t.navigation.nextEl||o.target===t.navigation.prevEl)?o.target===t.navigation.nextEl?t.slideTo(m+v):t.slideTo(m):("next"===t.swipeDirection&&t.slideTo(m+v),"prev"===t.swipeDirection&&t.slideTo(m))}}function k(){const e=this,{params:t,el:s}=e;if(s&&0===s.offsetWidth)return;t.breakpoints&&e.setBreakpoint();const{allowSlideNext:a,allowSlidePrev:i,snapGrid:r}=e;e.allowSlideNext=!0,e.allowSlidePrev=!0,e.updateSize(),e.updateSlides(),e.updateSlidesClasses(),("auto"===t.slidesPerView||t.slidesPerView>1)&&e.isEnd&&!e.isBeginning&&!e.params.centeredSlides?e.slideTo(e.slides.length-1,0,!1,!0):e.slideTo(e.activeIndex,0,!1,!0),e.autoplay&&e.autoplay.running&&e.autoplay.paused&&e.autoplay.run(),e.allowSlidePrev=i,e.allowSlideNext=a,e.params.watchOverflow&&r!==e.snapGrid&&e.checkOverflow()}function z(e){const t=this;t.enabled&&(t.allowClick||(t.params.preventClicks&&e.preventDefault(),t.params.preventClicksPropagation&&t.animating&&(e.stopPropagation(),e.stopImmediatePropagation())))}function O(){const e=this,{wrapperEl:t,rtlTranslate:s,enabled:a}=e;if(!a)return;let i;e.previousTranslate=e.translate,e.isHorizontal()?e.translate=-t.scrollLeft:e.translate=-t.scrollTop,-0===e.translate&&(e.translate=0),e.updateActiveIndex(),e.updateSlidesClasses();const r=e.maxTranslate()-e.minTranslate();i=0===r?0:(e.translate-e.minTranslate())/r,i!==e.progress&&e.updateProgress(s?-e.translate:e.translate),e.emit("setTranslate",e.translate,!1)}let I=!1;function L(){}const A=(e,t)=>{const s=a(),{params:i,touchEvents:r,el:n,wrapperEl:l,device:o,support:d}=e,c=!!i.nested,p="on"===t?"addEventListener":"removeEventListener",u=t;if(d.touch){const t=!("touchstart"!==r.start||!d.passiveListener||!i.passiveListeners)&&{passive:!0,capture:!1};n[p](r.start,e.onTouchStart,t),n[p](r.move,e.onTouchMove,d.passiveListener?{passive:!1,capture:c}:c),n[p](r.end,e.onTouchEnd,t),r.cancel&&n[p](r.cancel,e.onTouchEnd,t)}else n[p](r.start,e.onTouchStart,!1),s[p](r.move,e.onTouchMove,c),s[p](r.end,e.onTouchEnd,!1);(i.preventClicks||i.preventClicksPropagation)&&n[p]("click",e.onClick,!0),i.cssMode&&l[p]("scroll",e.onScroll),i.updateOnWindowResize?e[u](o.ios||o.android?"resize orientationchange observerUpdate":"resize observerUpdate",k,!0):e[u]("observerUpdate",k,!0)};const D=(e,t)=>e.grid&&t.grid&&t.grid.rows>1;var G={init:!0,direction:"horizontal",touchEventsTarget:"wrapper",initialSlide:0,speed:300,cssMode:!1,updateOnWindowResize:!0,resizeObserver:!0,nested:!1,createElements:!1,enabled:!0,focusableElements:"input, select, option, textarea, button, video, label",width:null,height:null,preventInteractionOnTransition:!1,userAgent:null,url:null,edgeSwipeDetection:!1,edgeSwipeThreshold:20,autoHeight:!1,setWrapperSize:!1,virtualTranslate:!1,effect:"slide",breakpoints:void 0,breakpointsBase:"window",spaceBetween:0,slidesPerView:1,slidesPerGroup:1,slidesPerGroupSkip:0,slidesPerGroupAuto:!1,centeredSlides:!1,centeredSlidesBounds:!1,slidesOffsetBefore:0,slidesOffsetAfter:0,normalizeSlideIndex:!0,centerInsufficientSlides:!1,watchOverflow:!0,roundLengths:!1,touchRatio:1,touchAngle:45,simulateTouch:!0,shortSwipes:!0,longSwipes:!0,longSwipesRatio:.5,longSwipesMs:300,followFinger:!0,allowTouchMove:!0,threshold:0,touchMoveStopPropagation:!1,touchStartPreventDefault:!0,touchStartForcePreventDefault:!1,touchReleaseOnEdges:!1,uniqueNavElements:!0,resistance:!0,resistanceRatio:.85,watchSlidesProgress:!1,grabCursor:!1,preventClicks:!0,preventClicksPropagation:!0,slideToClickedSlide:!1,preloadImages:!0,updateOnImagesReady:!0,loop:!1,loopAdditionalSlides:0,loopedSlides:null,loopFillGroupWithBlank:!1,loopPreventsSlide:!0,allowSlidePrev:!0,allowSlideNext:!0,swipeHandler:null,noSwiping:!0,noSwipingClass:"swiper-no-swiping",noSwipingSelector:null,passiveListeners:!0,containerModifierClass:"swiper-",slideClass:"swiper-slide",slideBlankClass:"swiper-slide-invisible-blank",slideActiveClass:"swiper-slide-active",slideDuplicateActiveClass:"swiper-slide-duplicate-active",slideVisibleClass:"swiper-slide-visible",slideDuplicateClass:"swiper-slide-duplicate",slideNextClass:"swiper-slide-next",slideDuplicateNextClass:"swiper-slide-duplicate-next",slidePrevClass:"swiper-slide-prev",slideDuplicatePrevClass:"swiper-slide-duplicate-prev",wrapperClass:"swiper-wrapper",runCallbacksOnInit:!0,_emitClasses:!1};function N(e,t){return function(s={}){const a=Object.keys(s)[0],i=s[a];"object"==typeof i&&null!==i?(["navigation","pagination","scrollbar"].indexOf(a)>=0&&!0===e[a]&&(e[a]={auto:!0}),a in e&&"enabled"in i?(!0===e[a]&&(e[a]={enabled:!0}),"object"!=typeof e[a]||"enabled"in e[a]||(e[a].enabled=!0),e[a]||(e[a]={enabled:!1}),f(t,s)):f(t,s)):f(t,s)}}const B={eventsEmitter:C,update:{updateSize:function(){const e=this;let t,s;const a=e.$el;t=void 0!==e.params.width&&null!==e.params.width?e.params.width:a[0].clientWidth,s=void 0!==e.params.height&&null!==e.params.height?e.params.height:a[0].clientHeight,0===t&&e.isHorizontal()||0===s&&e.isVertical()||(t=t-parseInt(a.css("padding-left")||0,10)-parseInt(a.css("padding-right")||0,10),s=s-parseInt(a.css("padding-top")||0,10)-parseInt(a.css("padding-bottom")||0,10),Number.isNaN(t)&&(t=0),Number.isNaN(s)&&(s=0),Object.assign(e,{width:t,height:s,size:e.isHorizontal()?t:s}))},updateSlides:function(){const e=this;function t(t){return e.isHorizontal()?t:{width:"height","margin-top":"margin-left","margin-bottom ":"margin-right","margin-left":"margin-top","margin-right":"margin-bottom","padding-left":"padding-top","padding-right":"padding-bottom",marginRight:"marginBottom"}[t]}function s(e,s){return parseFloat(e.getPropertyValue(t(s))||0)}const a=e.params,{$wrapperEl:i,size:r,rtlTranslate:n,wrongRTL:l}=e,o=e.virtual&&a.virtual.enabled,d=o?e.virtual.slides.length:e.slides.length,c=i.children(`.${e.params.slideClass}`),p=o?e.virtual.slides.length:c.length;let u=[];const h=[],m=[];let f=a.slidesOffsetBefore;"function"==typeof f&&(f=a.slidesOffsetBefore.call(e));let v=a.slidesOffsetAfter;"function"==typeof v&&(v=a.slidesOffsetAfter.call(e));const w=e.snapGrid.length,b=e.slidesGrid.length;let x=a.spaceBetween,y=-f,E=0,T=0;if(void 0===r)return;"string"==typeof x&&x.indexOf("%")>=0&&(x=parseFloat(x.replace("%",""))/100*r),e.virtualSize=-x,n?c.css({marginLeft:"",marginBottom:"",marginTop:""}):c.css({marginRight:"",marginBottom:"",marginTop:""}),a.centeredSlides&&a.cssMode&&(g(e.wrapperEl,"--swiper-centered-offset-before",""),g(e.wrapperEl,"--swiper-centered-offset-after",""));const C=a.grid&&a.grid.rows>1&&e.grid;let $;C&&e.grid.initSlides(p);const S="auto"===a.slidesPerView&&a.breakpoints&&Object.keys(a.breakpoints).filter((e=>void 0!==a.breakpoints[e].slidesPerView)).length>0;for(let i=0;i<p;i+=1){$=0;const n=c.eq(i);if(C&&e.grid.updateSlide(i,n,p,t),"none"!==n.css("display")){if("auto"===a.slidesPerView){S&&(c[i].style[t("width")]="");const r=getComputedStyle(n[0]),l=n[0].style.transform,o=n[0].style.webkitTransform;if(l&&(n[0].style.transform="none"),o&&(n[0].style.webkitTransform="none"),a.roundLengths)$=e.isHorizontal()?n.outerWidth(!0):n.outerHeight(!0);else{const e=s(r,"width"),t=s(r,"padding-left"),a=s(r,"padding-right"),i=s(r,"margin-left"),l=s(r,"margin-right"),o=r.getPropertyValue("box-sizing");if(o&&"border-box"===o)$=e+i+l;else{const{clientWidth:s,offsetWidth:r}=n[0];$=e+t+a+i+l+(r-s)}}l&&(n[0].style.transform=l),o&&(n[0].style.webkitTransform=o),a.roundLengths&&($=Math.floor($))}else $=(r-(a.slidesPerView-1)*x)/a.slidesPerView,a.roundLengths&&($=Math.floor($)),c[i]&&(c[i].style[t("width")]=`${$}px`);c[i]&&(c[i].swiperSlideSize=$),m.push($),a.centeredSlides?(y=y+$/2+E/2+x,0===E&&0!==i&&(y=y-r/2-x),0===i&&(y=y-r/2-x),Math.abs(y)<.001&&(y=0),a.roundLengths&&(y=Math.floor(y)),T%a.slidesPerGroup==0&&u.push(y),h.push(y)):(a.roundLengths&&(y=Math.floor(y)),(T-Math.min(e.params.slidesPerGroupSkip,T))%e.params.slidesPerGroup==0&&u.push(y),h.push(y),y=y+$+x),e.virtualSize+=$+x,E=$,T+=1}}if(e.virtualSize=Math.max(e.virtualSize,r)+v,n&&l&&("slide"===a.effect||"coverflow"===a.effect)&&i.css({width:`${e.virtualSize+a.spaceBetween}px`}),a.setWrapperSize&&i.css({[t("width")]:`${e.virtualSize+a.spaceBetween}px`}),C&&e.grid.updateWrapperSize($,u,t),!a.centeredSlides){const t=[];for(let s=0;s<u.length;s+=1){let i=u[s];a.roundLengths&&(i=Math.floor(i)),u[s]<=e.virtualSize-r&&t.push(i)}u=t,Math.floor(e.virtualSize-r)-Math.floor(u[u.length-1])>1&&u.push(e.virtualSize-r)}if(0===u.length&&(u=[0]),0!==a.spaceBetween){const s=e.isHorizontal()&&n?"marginLeft":t("marginRight");c.filter(((e,t)=>!a.cssMode||t!==c.length-1)).css({[s]:`${x}px`})}if(a.centeredSlides&&a.centeredSlidesBounds){let e=0;m.forEach((t=>{e+=t+(a.spaceBetween?a.spaceBetween:0)})),e-=a.spaceBetween;const t=e-r;u=u.map((e=>e<0?-f:e>t?t+v:e))}if(a.centerInsufficientSlides){let e=0;if(m.forEach((t=>{e+=t+(a.spaceBetween?a.spaceBetween:0)})),e-=a.spaceBetween,e<r){const t=(r-e)/2;u.forEach(((e,s)=>{u[s]=e-t})),h.forEach(((e,s)=>{h[s]=e+t}))}}if(Object.assign(e,{slides:c,snapGrid:u,slidesGrid:h,slidesSizesGrid:m}),a.centeredSlides&&a.cssMode&&!a.centeredSlidesBounds){g(e.wrapperEl,"--swiper-centered-offset-before",-u[0]+"px"),g(e.wrapperEl,"--swiper-centered-offset-after",e.size/2-m[m.length-1]/2+"px");const t=-e.snapGrid[0],s=-e.slidesGrid[0];e.snapGrid=e.snapGrid.map((e=>e+t)),e.slidesGrid=e.slidesGrid.map((e=>e+s))}p!==d&&e.emit("slidesLengthChange"),u.length!==w&&(e.params.watchOverflow&&e.checkOverflow(),e.emit("snapGridLengthChange")),h.length!==b&&e.emit("slidesGridLengthChange"),a.watchSlidesProgress&&e.updateSlidesOffset()},updateAutoHeight:function(e){const t=this,s=[],a=t.virtual&&t.params.virtual.enabled;let i,r=0;"number"==typeof e?t.setTransition(e):!0===e&&t.setTransition(t.params.speed);const n=e=>a?t.slides.filter((t=>parseInt(t.getAttribute("data-swiper-slide-index"),10)===e))[0]:t.slides.eq(e)[0];if("auto"!==t.params.slidesPerView&&t.params.slidesPerView>1)if(t.params.centeredSlides)t.visibleSlides.each((e=>{s.push(e)}));else for(i=0;i<Math.ceil(t.params.slidesPerView);i+=1){const e=t.activeIndex+i;if(e>t.slides.length&&!a)break;s.push(n(e))}else s.push(n(t.activeIndex));for(i=0;i<s.length;i+=1)if(void 0!==s[i]){const e=s[i].offsetHeight;r=e>r?e:r}r&&t.$wrapperEl.css("height",`${r}px`)},updateSlidesOffset:function(){const e=this,t=e.slides;for(let s=0;s<t.length;s+=1)t[s].swiperSlideOffset=e.isHorizontal()?t[s].offsetLeft:t[s].offsetTop},updateSlidesProgress:function(e=this&&this.translate||0){const t=this,s=t.params,{slides:a,rtlTranslate:i}=t;if(0===a.length)return;void 0===a[0].swiperSlideOffset&&t.updateSlidesOffset();let r=-e;i&&(r=e),a.removeClass(s.slideVisibleClass),t.visibleSlidesIndexes=[],t.visibleSlides=[];for(let e=0;e<a.length;e+=1){const n=a[e];let l=n.swiperSlideOffset;s.cssMode&&s.centeredSlides&&(l-=a[0].swiperSlideOffset);const o=(r+(s.centeredSlides?t.minTranslate():0)-l)/(n.swiperSlideSize+s.spaceBetween),d=-(r-l),c=d+t.slidesSizesGrid[e];(d>=0&&d<t.size-1||c>1&&c<=t.size||d<=0&&c>=t.size)&&(t.visibleSlides.push(n),t.visibleSlidesIndexes.push(e),a.eq(e).addClass(s.slideVisibleClass)),n.progress=i?-o:o}t.visibleSlides=d(t.visibleSlides)},updateProgress:function(e){const t=this;if(void 0===e){const s=t.rtlTranslate?-1:1;e=t&&t.translate&&t.translate*s||0}const s=t.params,a=t.maxTranslate()-t.minTranslate();let{progress:i,isBeginning:r,isEnd:n}=t;const l=r,o=n;0===a?(i=0,r=!0,n=!0):(i=(e-t.minTranslate())/a,r=i<=0,n=i>=1),Object.assign(t,{progress:i,isBeginning:r,isEnd:n}),(s.watchSlidesProgress||s.centeredSlides&&s.autoHeight)&&t.updateSlidesProgress(e),r&&!l&&t.emit("reachBeginning toEdge"),n&&!o&&t.emit("reachEnd toEdge"),(l&&!r||o&&!n)&&t.emit("fromEdge"),t.emit("progress",i)},updateSlidesClasses:function(){const e=this,{slides:t,params:s,$wrapperEl:a,activeIndex:i,realIndex:r}=e,n=e.virtual&&s.virtual.enabled;let l;t.removeClass(`${s.slideActiveClass} ${s.slideNextClass} ${s.slidePrevClass} ${s.slideDuplicateActiveClass} ${s.slideDuplicateNextClass} ${s.slideDuplicatePrevClass}`),l=n?e.$wrapperEl.find(`.${s.slideClass}[data-swiper-slide-index="${i}"]`):t.eq(i),l.addClass(s.slideActiveClass),s.loop&&(l.hasClass(s.slideDuplicateClass)?a.children(`.${s.slideClass}:not(.${s.slideDuplicateClass})[data-swiper-slide-index="${r}"]`).addClass(s.slideDuplicateActiveClass):a.children(`.${s.slideClass}.${s.slideDuplicateClass}[data-swiper-slide-index="${r}"]`).addClass(s.slideDuplicateActiveClass));let o=l.nextAll(`.${s.slideClass}`).eq(0).addClass(s.slideNextClass);s.loop&&0===o.length&&(o=t.eq(0),o.addClass(s.slideNextClass));let d=l.prevAll(`.${s.slideClass}`).eq(0).addClass(s.slidePrevClass);s.loop&&0===d.length&&(d=t.eq(-1),d.addClass(s.slidePrevClass)),s.loop&&(o.hasClass(s.slideDuplicateClass)?a.children(`.${s.slideClass}:not(.${s.slideDuplicateClass})[data-swiper-slide-index="${o.attr("data-swiper-slide-index")}"]`).addClass(s.slideDuplicateNextClass):a.children(`.${s.slideClass}.${s.slideDuplicateClass}[data-swiper-slide-index="${o.attr("data-swiper-slide-index")}"]`).addClass(s.slideDuplicateNextClass),d.hasClass(s.slideDuplicateClass)?a.children(`.${s.slideClass}:not(.${s.slideDuplicateClass})[data-swiper-slide-index="${d.attr("data-swiper-slide-index")}"]`).addClass(s.slideDuplicatePrevClass):a.children(`.${s.slideClass}.${s.slideDuplicateClass}[data-swiper-slide-index="${d.attr("data-swiper-slide-index")}"]`).addClass(s.slideDuplicatePrevClass)),e.emitSlidesClasses()},updateActiveIndex:function(e){const t=this,s=t.rtlTranslate?t.translate:-t.translate,{slidesGrid:a,snapGrid:i,params:r,activeIndex:n,realIndex:l,snapIndex:o}=t;let d,c=e;if(void 0===c){for(let e=0;e<a.length;e+=1)void 0!==a[e+1]?s>=a[e]&&s<a[e+1]-(a[e+1]-a[e])/2?c=e:s>=a[e]&&s<a[e+1]&&(c=e+1):s>=a[e]&&(c=e);r.normalizeSlideIndex&&(c<0||void 0===c)&&(c=0)}if(i.indexOf(s)>=0)d=i.indexOf(s);else{const e=Math.min(r.slidesPerGroupSkip,c);d=e+Math.floor((c-e)/r.slidesPerGroup)}if(d>=i.length&&(d=i.length-1),c===n)return void(d!==o&&(t.snapIndex=d,t.emit("snapIndexChange")));const p=parseInt(t.slides.eq(c).attr("data-swiper-slide-index")||c,10);Object.assign(t,{snapIndex:d,realIndex:p,previousIndex:n,activeIndex:c}),t.emit("activeIndexChange"),t.emit("snapIndexChange"),l!==p&&t.emit("realIndexChange"),(t.initialized||t.params.runCallbacksOnInit)&&t.emit("slideChange")},updateClickedSlide:function(e){const t=this,s=t.params,a=d(e.target).closest(`.${s.slideClass}`)[0];let i,r=!1;if(a)for(let e=0;e<t.slides.length;e+=1)if(t.slides[e]===a){r=!0,i=e;break}if(!a||!r)return t.clickedSlide=void 0,void(t.clickedIndex=void 0);t.clickedSlide=a,t.virtual&&t.params.virtual.enabled?t.clickedIndex=parseInt(d(a).attr("data-swiper-slide-index"),10):t.clickedIndex=i,s.slideToClickedSlide&&void 0!==t.clickedIndex&&t.clickedIndex!==t.activeIndex&&t.slideToClickedSlide()}},translate:{getTranslate:function(e=(this.isHorizontal()?"x":"y")){const{params:t,rtlTranslate:s,translate:a,$wrapperEl:i}=this;if(t.virtualTranslate)return s?-a:a;if(t.cssMode)return a;let r=h(i[0],e);return s&&(r=-r),r||0},setTranslate:function(e,t){const s=this,{rtlTranslate:a,params:i,$wrapperEl:r,wrapperEl:n,progress:l}=s;let o,d=0,c=0;s.isHorizontal()?d=a?-e:e:c=e,i.roundLengths&&(d=Math.floor(d),c=Math.floor(c)),i.cssMode?n[s.isHorizontal()?"scrollLeft":"scrollTop"]=s.isHorizontal()?-d:-c:i.virtualTranslate||r.transform(`translate3d(${d}px, ${c}px, 0px)`),s.previousTranslate=s.translate,s.translate=s.isHorizontal()?d:c;const p=s.maxTranslate()-s.minTranslate();o=0===p?0:(e-s.minTranslate())/p,o!==l&&s.updateProgress(e),s.emit("setTranslate",s.translate,t)},minTranslate:function(){return-this.snapGrid[0]},maxTranslate:function(){return-this.snapGrid[this.snapGrid.length-1]},translateTo:function(e=0,t=this.params.speed,s=!0,a=!0,i){const r=this,{params:n,wrapperEl:l}=r;if(r.animating&&n.preventInteractionOnTransition)return!1;const o=r.minTranslate(),d=r.maxTranslate();let c;if(c=a&&e>o?o:a&&e<d?d:e,r.updateProgress(c),n.cssMode){const e=r.isHorizontal();if(0===t)l[e?"scrollLeft":"scrollTop"]=-c;else{if(!r.support.smoothScroll)return v({swiper:r,targetPosition:-c,side:e?"left":"top"}),!0;l.scrollTo({[e?"left":"top"]:-c,behavior:"smooth"})}return!0}return 0===t?(r.setTransition(0),r.setTranslate(c),s&&(r.emit("beforeTransitionStart",t,i),r.emit("transitionEnd"))):(r.setTransition(t),r.setTranslate(c),s&&(r.emit("beforeTransitionStart",t,i),r.emit("transitionStart")),r.animating||(r.animating=!0,r.onTranslateToWrapperTransitionEnd||(r.onTranslateToWrapperTransitionEnd=function(e){r&&!r.destroyed&&e.target===this&&(r.$wrapperEl[0].removeEventListener("transitionend",r.onTranslateToWrapperTransitionEnd),r.$wrapperEl[0].removeEventListener("webkitTransitionEnd",r.onTranslateToWrapperTransitionEnd),r.onTranslateToWrapperTransitionEnd=null,delete r.onTranslateToWrapperTransitionEnd,s&&r.emit("transitionEnd"))}),r.$wrapperEl[0].addEventListener("transitionend",r.onTranslateToWrapperTransitionEnd),r.$wrapperEl[0].addEventListener("webkitTransitionEnd",r.onTranslateToWrapperTransitionEnd))),!0}},transition:{setTransition:function(e,t){const s=this;s.params.cssMode||s.$wrapperEl.transition(e),s.emit("setTransition",e,t)},transitionStart:function(e=!0,t){const s=this,{params:a}=s;a.cssMode||(a.autoHeight&&s.updateAutoHeight(),$({swiper:s,runCallbacks:e,direction:t,step:"Start"}))},transitionEnd:function(e=!0,t){const s=this,{params:a}=s;s.animating=!1,a.cssMode||(s.setTransition(0),$({swiper:s,runCallbacks:e,direction:t,step:"End"}))}},slide:{slideTo:function(e=0,t=this.params.speed,s=!0,a,i){if("number"!=typeof e&&"string"!=typeof e)throw new Error(`The 'index' argument cannot have type other than 'number' or 'string'. [${typeof e}] given.`);if("string"==typeof e){const t=parseInt(e,10);if(!isFinite(t))throw new Error(`The passed-in 'index' (string) couldn't be converted to 'number'. [${e}] given.`);e=t}const r=this;let n=e;n<0&&(n=0);const{params:l,snapGrid:o,slidesGrid:d,previousIndex:c,activeIndex:p,rtlTranslate:u,wrapperEl:h,enabled:m}=r;if(r.animating&&l.preventInteractionOnTransition||!m&&!a&&!i)return!1;const f=Math.min(r.params.slidesPerGroupSkip,n);let g=f+Math.floor((n-f)/r.params.slidesPerGroup);g>=o.length&&(g=o.length-1),(p||l.initialSlide||0)===(c||0)&&s&&r.emit("beforeSlideChangeStart");const w=-o[g];if(r.updateProgress(w),l.normalizeSlideIndex)for(let e=0;e<d.length;e+=1){const t=-Math.floor(100*w),s=Math.floor(100*d[e]),a=Math.floor(100*d[e+1]);void 0!==d[e+1]?t>=s&&t<a-(a-s)/2?n=e:t>=s&&t<a&&(n=e+1):t>=s&&(n=e)}if(r.initialized&&n!==p){if(!r.allowSlideNext&&w<r.translate&&w<r.minTranslate())return!1;if(!r.allowSlidePrev&&w>r.translate&&w>r.maxTranslate()&&(p||0)!==n)return!1}let b;if(b=n>p?"next":n<p?"prev":"reset",u&&-w===r.translate||!u&&w===r.translate)return r.updateActiveIndex(n),l.autoHeight&&r.updateAutoHeight(),r.updateSlidesClasses(),"slide"!==l.effect&&r.setTranslate(w),"reset"!==b&&(r.transitionStart(s,b),r.transitionEnd(s,b)),!1;if(l.cssMode){const e=r.isHorizontal(),s=u?w:-w;if(0===t){const t=r.virtual&&r.params.virtual.enabled;t&&(r.wrapperEl.style.scrollSnapType="none",r._immediateVirtual=!0),h[e?"scrollLeft":"scrollTop"]=s,t&&requestAnimationFrame((()=>{r.wrapperEl.style.scrollSnapType="",r._swiperImmediateVirtual=!1}))}else{if(!r.support.smoothScroll)return v({swiper:r,targetPosition:s,side:e?"left":"top"}),!0;h.scrollTo({[e?"left":"top"]:s,behavior:"smooth"})}return!0}return 0===t?(r.setTransition(0),r.setTranslate(w),r.updateActiveIndex(n),r.updateSlidesClasses(),r.emit("beforeTransitionStart",t,a),r.transitionStart(s,b),r.transitionEnd(s,b)):(r.setTransition(t),r.setTranslate(w),r.updateActiveIndex(n),r.updateSlidesClasses(),r.emit("beforeTransitionStart",t,a),r.transitionStart(s,b),r.animating||(r.animating=!0,r.onSlideToWrapperTransitionEnd||(r.onSlideToWrapperTransitionEnd=function(e){r&&!r.destroyed&&e.target===this&&(r.$wrapperEl[0].removeEventListener("transitionend",r.onSlideToWrapperTransitionEnd),r.$wrapperEl[0].removeEventListener("webkitTransitionEnd",r.onSlideToWrapperTransitionEnd),r.onSlideToWrapperTransitionEnd=null,delete r.onSlideToWrapperTransitionEnd,r.transitionEnd(s,b))}),r.$wrapperEl[0].addEventListener("transitionend",r.onSlideToWrapperTransitionEnd),r.$wrapperEl[0].addEventListener("webkitTransitionEnd",r.onSlideToWrapperTransitionEnd))),!0},slideToLoop:function(e=0,t=this.params.speed,s=!0,a){const i=this;let r=e;return i.params.loop&&(r+=i.loopedSlides),i.slideTo(r,t,s,a)},slideNext:function(e=this.params.speed,t=!0,s){const a=this,{animating:i,enabled:r,params:n}=a;if(!r)return a;let l=n.slidesPerGroup;"auto"===n.slidesPerView&&1===n.slidesPerGroup&&n.slidesPerGroupAuto&&(l=Math.max(a.slidesPerViewDynamic("current",!0),1));const o=a.activeIndex<n.slidesPerGroupSkip?1:l;if(n.loop){if(i&&n.loopPreventsSlide)return!1;a.loopFix(),a._clientLeft=a.$wrapperEl[0].clientLeft}return a.slideTo(a.activeIndex+o,e,t,s)},slidePrev:function(e=this.params.speed,t=!0,s){const a=this,{params:i,animating:r,snapGrid:n,slidesGrid:l,rtlTranslate:o,enabled:d}=a;if(!d)return a;if(i.loop){if(r&&i.loopPreventsSlide)return!1;a.loopFix(),a._clientLeft=a.$wrapperEl[0].clientLeft}function c(e){return e<0?-Math.floor(Math.abs(e)):Math.floor(e)}const p=c(o?a.translate:-a.translate),u=n.map((e=>c(e)));let h=n[u.indexOf(p)-1];if(void 0===h&&i.cssMode){let e;n.forEach(((t,s)=>{p>=t&&(e=s)})),void 0!==e&&(h=n[e>0?e-1:e])}let m=0;return void 0!==h&&(m=l.indexOf(h),m<0&&(m=a.activeIndex-1),"auto"===i.slidesPerView&&1===i.slidesPerGroup&&i.slidesPerGroupAuto&&(m=m-a.slidesPerViewDynamic("previous",!0)+1,m=Math.max(m,0))),a.slideTo(m,e,t,s)},slideReset:function(e=this.params.speed,t=!0,s){return this.slideTo(this.activeIndex,e,t,s)},slideToClosest:function(e=this.params.speed,t=!0,s,a=.5){const i=this;let r=i.activeIndex;const n=Math.min(i.params.slidesPerGroupSkip,r),l=n+Math.floor((r-n)/i.params.slidesPerGroup),o=i.rtlTranslate?i.translate:-i.translate;if(o>=i.snapGrid[l]){const e=i.snapGrid[l];o-e>(i.snapGrid[l+1]-e)*a&&(r+=i.params.slidesPerGroup)}else{const e=i.snapGrid[l-1];o-e<=(i.snapGrid[l]-e)*a&&(r-=i.params.slidesPerGroup)}return r=Math.max(r,0),r=Math.min(r,i.slidesGrid.length-1),i.slideTo(r,e,t,s)},slideToClickedSlide:function(){const e=this,{params:t,$wrapperEl:s}=e,a="auto"===t.slidesPerView?e.slidesPerViewDynamic():t.slidesPerView;let i,r=e.clickedIndex;if(t.loop){if(e.animating)return;i=parseInt(d(e.clickedSlide).attr("data-swiper-slide-index"),10),t.centeredSlides?r<e.loopedSlides-a/2||r>e.slides.length-e.loopedSlides+a/2?(e.loopFix(),r=s.children(`.${t.slideClass}[data-swiper-slide-index="${i}"]:not(.${t.slideDuplicateClass})`).eq(0).index(),p((()=>{e.slideTo(r)}))):e.slideTo(r):r>e.slides.length-a?(e.loopFix(),r=s.children(`.${t.slideClass}[data-swiper-slide-index="${i}"]:not(.${t.slideDuplicateClass})`).eq(0).index(),p((()=>{e.slideTo(r)}))):e.slideTo(r)}else e.slideTo(r)}},loop:{loopCreate:function(){const e=this,t=a(),{params:s,$wrapperEl:i}=e;i.children(`.${s.slideClass}.${s.slideDuplicateClass}`).remove();let r=i.children(`.${s.slideClass}`);if(s.loopFillGroupWithBlank){const e=s.slidesPerGroup-r.length%s.slidesPerGroup;if(e!==s.slidesPerGroup){for(let a=0;a<e;a+=1){const e=d(t.createElement("div")).addClass(`${s.slideClass} ${s.slideBlankClass}`);i.append(e)}r=i.children(`.${s.slideClass}`)}}"auto"!==s.slidesPerView||s.loopedSlides||(s.loopedSlides=r.length),e.loopedSlides=Math.ceil(parseFloat(s.loopedSlides||s.slidesPerView,10)),e.loopedSlides+=s.loopAdditionalSlides,e.loopedSlides>r.length&&(e.loopedSlides=r.length);const n=[],l=[];r.each(((t,s)=>{const a=d(t);s<e.loopedSlides&&l.push(t),s<r.length&&s>=r.length-e.loopedSlides&&n.push(t),a.attr("data-swiper-slide-index",s)}));for(let e=0;e<l.length;e+=1)i.append(d(l[e].cloneNode(!0)).addClass(s.slideDuplicateClass));for(let e=n.length-1;e>=0;e-=1)i.prepend(d(n[e].cloneNode(!0)).addClass(s.slideDuplicateClass))},loopFix:function(){const e=this;e.emit("beforeLoopFix");const{activeIndex:t,slides:s,loopedSlides:a,allowSlidePrev:i,allowSlideNext:r,snapGrid:n,rtlTranslate:l}=e;let o;e.allowSlidePrev=!0,e.allowSlideNext=!0;const d=-n[t]-e.getTranslate();if(t<a){o=s.length-3*a+t,o+=a;e.slideTo(o,0,!1,!0)&&0!==d&&e.setTranslate((l?-e.translate:e.translate)-d)}else if(t>=s.length-a){o=-s.length+t+a,o+=a;e.slideTo(o,0,!1,!0)&&0!==d&&e.setTranslate((l?-e.translate:e.translate)-d)}e.allowSlidePrev=i,e.allowSlideNext=r,e.emit("loopFix")},loopDestroy:function(){const{$wrapperEl:e,params:t,slides:s}=this;e.children(`.${t.slideClass}.${t.slideDuplicateClass},.${t.slideClass}.${t.slideBlankClass}`).remove(),s.removeAttr("data-swiper-slide-index")}},grabCursor:{setGrabCursor:function(e){const t=this;if(t.support.touch||!t.params.simulateTouch||t.params.watchOverflow&&t.isLocked||t.params.cssMode)return;const s="container"===t.params.touchEventsTarget?t.el:t.wrapperEl;s.style.cursor="move",s.style.cursor=e?"-webkit-grabbing":"-webkit-grab",s.style.cursor=e?"-moz-grabbin":"-moz-grab",s.style.cursor=e?"grabbing":"grab"},unsetGrabCursor:function(){const e=this;e.support.touch||e.params.watchOverflow&&e.isLocked||e.params.cssMode||(e["container"===e.params.touchEventsTarget?"el":"wrapperEl"].style.cursor="")}},events:{attachEvents:function(){const e=this,t=a(),{params:s,support:i}=e;e.onTouchStart=S.bind(e),e.onTouchMove=M.bind(e),e.onTouchEnd=P.bind(e),s.cssMode&&(e.onScroll=O.bind(e)),e.onClick=z.bind(e),i.touch&&!I&&(t.addEventListener("touchstart",L),I=!0),A(e,"on")},detachEvents:function(){A(this,"off")}},breakpoints:{setBreakpoint:function(){const e=this,{activeIndex:t,initialized:s,loopedSlides:a=0,params:i,$el:r}=e,n=i.breakpoints;if(!n||n&&0===Object.keys(n).length)return;const l=e.getBreakpoint(n,e.params.breakpointsBase,e.el);if(!l||e.currentBreakpoint===l)return;const o=(l in n?n[l]:void 0)||e.originalParams,d=D(e,i),c=D(e,o),p=i.enabled;d&&!c?(r.removeClass(`${i.containerModifierClass}grid ${i.containerModifierClass}grid-column`),e.emitContainerClasses()):!d&&c&&(r.addClass(`${i.containerModifierClass}grid`),(o.grid.fill&&"column"===o.grid.fill||!o.grid.fill&&"column"===i.grid.fill)&&r.addClass(`${i.containerModifierClass}grid-column`),e.emitContainerClasses());const u=o.direction&&o.direction!==i.direction,h=i.loop&&(o.slidesPerView!==i.slidesPerView||u);u&&s&&e.changeDirection(),f(e.params,o);const m=e.params.enabled;Object.assign(e,{allowTouchMove:e.params.allowTouchMove,allowSlideNext:e.params.allowSlideNext,allowSlidePrev:e.params.allowSlidePrev}),p&&!m?e.disable():!p&&m&&e.enable(),e.currentBreakpoint=l,e.emit("_beforeBreakpoint",o),h&&s&&(e.loopDestroy(),e.loopCreate(),e.updateSlides(),e.slideTo(t-a+e.loopedSlides,0,!1)),e.emit("breakpoint",o)},getBreakpoint:function(e,t="window",s){if(!e||"container"===t&&!s)return;let a=!1;const i=r(),n="window"===t?i.innerHeight:s.clientHeight,l=Object.keys(e).map((e=>{if("string"==typeof e&&0===e.indexOf("@")){const t=parseFloat(e.substr(1));return{value:n*t,point:e}}return{value:e,point:e}}));l.sort(((e,t)=>parseInt(e.value,10)-parseInt(t.value,10)));for(let e=0;e<l.length;e+=1){const{point:r,value:n}=l[e];"window"===t?i.matchMedia(`(min-width: ${n}px)`).matches&&(a=r):n<=s.clientWidth&&(a=r)}return a||"max"}},checkOverflow:{checkOverflow:function(){const e=this,{isLocked:t,params:s}=e,{slidesOffsetBefore:a}=s;if(a){const t=e.slides.length-1,s=e.slidesGrid[t]+e.slidesSizesGrid[t]+2*a;e.isLocked=e.size>s}else e.isLocked=1===e.snapGrid.length;!0===s.allowSlideNext&&(e.allowSlideNext=!e.isLocked),!0===s.allowSlidePrev&&(e.allowSlidePrev=!e.isLocked),t&&t!==e.isLocked&&(e.isEnd=!1),t!==e.isLocked&&e.emit(e.isLocked?"lock":"unlock")}},classes:{addClasses:function(){const e=this,{classNames:t,params:s,rtl:a,$el:i,device:r,support:n}=e,l=function(e,t){const s=[];return e.forEach((e=>{"object"==typeof e?Object.keys(e).forEach((a=>{e[a]&&s.push(t+a)})):"string"==typeof e&&s.push(t+e)})),s}(["initialized",s.direction,{"pointer-events":!n.touch},{"free-mode":e.params.freeMode&&s.freeMode.enabled},{autoheight:s.autoHeight},{rtl:a},{grid:s.grid&&s.grid.rows>1},{"grid-column":s.grid&&s.grid.rows>1&&"column"===s.grid.fill},{android:r.android},{ios:r.ios},{"css-mode":s.cssMode},{centered:s.cssMode&&s.centeredSlides}],s.containerModifierClass);t.push(...l),i.addClass([...t].join(" ")),e.emitContainerClasses()},removeClasses:function(){const{$el:e,classNames:t}=this;e.removeClass(t.join(" ")),this.emitContainerClasses()}},images:{loadImage:function(e,t,s,a,i,n){const l=r();let o;function c(){n&&n()}d(e).parent("picture")[0]||e.complete&&i?c():t?(o=new l.Image,o.onload=c,o.onerror=c,a&&(o.sizes=a),s&&(o.srcset=s),t&&(o.src=t)):c()},preloadImages:function(){const e=this;function t(){null!=e&&e&&!e.destroyed&&(void 0!==e.imagesLoaded&&(e.imagesLoaded+=1),e.imagesLoaded===e.imagesToLoad.length&&(e.params.updateOnImagesReady&&e.update(),e.emit("imagesReady")))}e.imagesToLoad=e.$el.find("img");for(let s=0;s<e.imagesToLoad.length;s+=1){const a=e.imagesToLoad[s];e.loadImage(a,a.currentSrc||a.getAttribute("src"),a.srcset||a.getAttribute("srcset"),a.sizes||a.getAttribute("sizes"),!0,t)}}}},X={};class H{constructor(...e){let t,s;if(1===e.length&&e[0].constructor&&"Object"===Object.prototype.toString.call(e[0]).slice(8,-1)?s=e[0]:[t,s]=e,s||(s={}),s=f({},s),t&&!s.el&&(s.el=t),s.el&&d(s.el).length>1){const e=[];return d(s.el).each((t=>{const a=f({},s,{el:t});e.push(new H(a))})),e}const a=this;a.__swiper__=!0,a.support=y(),a.device=E({userAgent:s.userAgent}),a.browser=T(),a.eventsListeners={},a.eventsAnyListeners=[],a.modules=[...a.__modules__],s.modules&&Array.isArray(s.modules)&&a.modules.push(...s.modules);const i={};a.modules.forEach((e=>{e({swiper:a,extendParams:N(s,i),on:a.on.bind(a),once:a.once.bind(a),off:a.off.bind(a),emit:a.emit.bind(a)})}));const r=f({},G,i);return a.params=f({},r,X,s),a.originalParams=f({},a.params),a.passedParams=f({},s),a.params&&a.params.on&&Object.keys(a.params.on).forEach((e=>{a.on(e,a.params.on[e])})),a.params&&a.params.onAny&&a.onAny(a.params.onAny),a.$=d,Object.assign(a,{enabled:a.params.enabled,el:t,classNames:[],slides:d(),slidesGrid:[],snapGrid:[],slidesSizesGrid:[],isHorizontal:()=>"horizontal"===a.params.direction,isVertical:()=>"vertical"===a.params.direction,activeIndex:0,realIndex:0,isBeginning:!0,isEnd:!1,translate:0,previousTranslate:0,progress:0,velocity:0,animating:!1,allowSlideNext:a.params.allowSlideNext,allowSlidePrev:a.params.allowSlidePrev,touchEvents:function(){const e=["touchstart","touchmove","touchend","touchcancel"],t=["pointerdown","pointermove","pointerup"];return a.touchEventsTouch={start:e[0],move:e[1],end:e[2],cancel:e[3]},a.touchEventsDesktop={start:t[0],move:t[1],end:t[2]},a.support.touch||!a.params.simulateTouch?a.touchEventsTouch:a.touchEventsDesktop}(),touchEventsData:{isTouched:void 0,isMoved:void 0,allowTouchCallbacks:void 0,touchStartTime:void 0,isScrolling:void 0,currentTranslate:void 0,startTranslate:void 0,allowThresholdMove:void 0,focusableElements:a.params.focusableElements,lastClickTime:u(),clickTimeout:void 0,velocities:[],allowMomentumBounce:void 0,isTouchEvent:void 0,startMoving:void 0},allowClick:!0,allowTouchMove:a.params.allowTouchMove,touches:{startX:0,startY:0,currentX:0,currentY:0,diff:0},imagesToLoad:[],imagesLoaded:0}),a.emit("_swiper"),a.params.init&&a.init(),a}enable(){const e=this;e.enabled||(e.enabled=!0,e.params.grabCursor&&e.setGrabCursor(),e.emit("enable"))}disable(){const e=this;e.enabled&&(e.enabled=!1,e.params.grabCursor&&e.unsetGrabCursor(),e.emit("disable"))}setProgress(e,t){const s=this;e=Math.min(Math.max(e,0),1);const a=s.minTranslate(),i=(s.maxTranslate()-a)*e+a;s.translateTo(i,void 0===t?0:t),s.updateActiveIndex(),s.updateSlidesClasses()}emitContainerClasses(){const e=this;if(!e.params._emitClasses||!e.el)return;const t=e.el.className.split(" ").filter((t=>0===t.indexOf("swiper")||0===t.indexOf(e.params.containerModifierClass)));e.emit("_containerClasses",t.join(" "))}getSlideClasses(e){const t=this;return e.className.split(" ").filter((e=>0===e.indexOf("swiper-slide")||0===e.indexOf(t.params.slideClass))).join(" ")}emitSlidesClasses(){const e=this;if(!e.params._emitClasses||!e.el)return;const t=[];e.slides.each((s=>{const a=e.getSlideClasses(s);t.push({slideEl:s,classNames:a}),e.emit("_slideClass",s,a)})),e.emit("_slideClasses",t)}slidesPerViewDynamic(e="current",t=!1){const{params:s,slides:a,slidesGrid:i,slidesSizesGrid:r,size:n,activeIndex:l}=this;let o=1;if(s.centeredSlides){let e,t=a[l].swiperSlideSize;for(let s=l+1;s<a.length;s+=1)a[s]&&!e&&(t+=a[s].swiperSlideSize,o+=1,t>n&&(e=!0));for(let s=l-1;s>=0;s-=1)a[s]&&!e&&(t+=a[s].swiperSlideSize,o+=1,t>n&&(e=!0))}else if("current"===e)for(let e=l+1;e<a.length;e+=1){(t?i[e]+r[e]-i[l]<n:i[e]-i[l]<n)&&(o+=1)}else for(let e=l-1;e>=0;e-=1){i[l]-i[e]<n&&(o+=1)}return o}update(){const e=this;if(!e||e.destroyed)return;const{snapGrid:t,params:s}=e;function a(){const t=e.rtlTranslate?-1*e.translate:e.translate,s=Math.min(Math.max(t,e.maxTranslate()),e.minTranslate());e.setTranslate(s),e.updateActiveIndex(),e.updateSlidesClasses()}let i;s.breakpoints&&e.setBreakpoint(),e.updateSize(),e.updateSlides(),e.updateProgress(),e.updateSlidesClasses(),e.params.freeMode&&e.params.freeMode.enabled?(a(),e.params.autoHeight&&e.updateAutoHeight()):(i=("auto"===e.params.slidesPerView||e.params.slidesPerView>1)&&e.isEnd&&!e.params.centeredSlides?e.slideTo(e.slides.length-1,0,!1,!0):e.slideTo(e.activeIndex,0,!1,!0),i||a()),s.watchOverflow&&t!==e.snapGrid&&e.checkOverflow(),e.emit("update")}changeDirection(e,t=!0){const s=this,a=s.params.direction;return e||(e="horizontal"===a?"vertical":"horizontal"),e===a||"horizontal"!==e&&"vertical"!==e||(s.$el.removeClass(`${s.params.containerModifierClass}${a}`).addClass(`${s.params.containerModifierClass}${e}`),s.emitContainerClasses(),s.params.direction=e,s.slides.each((t=>{"vertical"===e?t.style.width="":t.style.height=""})),s.emit("changeDirection"),t&&s.update()),s}mount(e){const t=this;if(t.mounted)return!0;const s=d(e||t.params.el);if(!(e=s[0]))return!1;e.swiper=t;const i=()=>`.${(t.params.wrapperClass||"").trim().split(" ").join(".")}`;let r=(()=>{if(e&&e.shadowRoot&&e.shadowRoot.querySelector){const t=d(e.shadowRoot.querySelector(i()));return t.children=e=>s.children(e),t}return s.children(i())})();if(0===r.length&&t.params.createElements){const e=a().createElement("div");r=d(e),e.className=t.params.wrapperClass,s.append(e),s.children(`.${t.params.slideClass}`).each((e=>{r.append(e)}))}return Object.assign(t,{$el:s,el:e,$wrapperEl:r,wrapperEl:r[0],mounted:!0,rtl:"rtl"===e.dir.toLowerCase()||"rtl"===s.css("direction"),rtlTranslate:"horizontal"===t.params.direction&&("rtl"===e.dir.toLowerCase()||"rtl"===s.css("direction")),wrongRTL:"-webkit-box"===r.css("display")}),!0}init(e){const t=this;if(t.initialized)return t;return!1===t.mount(e)||(t.emit("beforeInit"),t.params.breakpoints&&t.setBreakpoint(),t.addClasses(),t.params.loop&&t.loopCreate(),t.updateSize(),t.updateSlides(),t.params.watchOverflow&&t.checkOverflow(),t.params.grabCursor&&t.enabled&&t.setGrabCursor(),t.params.preloadImages&&t.preloadImages(),t.params.loop?t.slideTo(t.params.initialSlide+t.loopedSlides,0,t.params.runCallbacksOnInit,!1,!0):t.slideTo(t.params.initialSlide,0,t.params.runCallbacksOnInit,!1,!0),t.attachEvents(),t.initialized=!0,t.emit("init"),t.emit("afterInit")),t}destroy(e=!0,t=!0){const s=this,{params:a,$el:i,$wrapperEl:r,slides:n}=s;return void 0===s.params||s.destroyed||(s.emit("beforeDestroy"),s.initialized=!1,s.detachEvents(),a.loop&&s.loopDestroy(),t&&(s.removeClasses(),i.removeAttr("style"),r.removeAttr("style"),n&&n.length&&n.removeClass([a.slideVisibleClass,a.slideActiveClass,a.slideNextClass,a.slidePrevClass].join(" ")).removeAttr("style").removeAttr("data-swiper-slide-index")),s.emit("destroy"),Object.keys(s.eventsListeners).forEach((e=>{s.off(e)})),!1!==e&&(s.$el[0].swiper=null,function(e){const t=e;Object.keys(t).forEach((e=>{try{t[e]=null}catch(e){}try{delete t[e]}catch(e){}}))}(s)),s.destroyed=!0),null}static extendDefaults(e){f(X,e)}static get extendedDefaults(){return X}static get defaults(){return G}static installModule(e){H.prototype.__modules__||(H.prototype.__modules__=[]);const t=H.prototype.__modules__;"function"==typeof e&&t.indexOf(e)<0&&t.push(e)}static use(e){return Array.isArray(e)?(e.forEach((e=>H.installModule(e))),H):(H.installModule(e),H)}}function Y(e,t,s,i){const r=a();return e.params.createElements&&Object.keys(i).forEach((a=>{if(!s[a]&&!0===s.auto){let n=e.$el.children(`.${i[a]}`)[0];n||(n=r.createElement("div"),n.className=i[a],e.$el.append(n)),s[a]=n,t[a]=n}})),s}function W(e=""){return`.${e.trim().replace(/([\.:!\/])/g,"\\$1").replace(/ /g,".")}`}function R(e){const t=this,{$wrapperEl:s,params:a}=t;if(a.loop&&t.loopDestroy(),"object"==typeof e&&"length"in e)for(let t=0;t<e.length;t+=1)e[t]&&s.append(e[t]);else s.append(e);a.loop&&t.loopCreate(),a.observer||t.update()}function j(e){const t=this,{params:s,$wrapperEl:a,activeIndex:i}=t;s.loop&&t.loopDestroy();let r=i+1;if("object"==typeof e&&"length"in e){for(let t=0;t<e.length;t+=1)e[t]&&a.prepend(e[t]);r=i+e.length}else a.prepend(e);s.loop&&t.loopCreate(),s.observer||t.update(),t.slideTo(r,0,!1)}function _(e,t){const s=this,{$wrapperEl:a,params:i,activeIndex:r}=s;let n=r;i.loop&&(n-=s.loopedSlides,s.loopDestroy(),s.slides=a.children(`.${i.slideClass}`));const l=s.slides.length;if(e<=0)return void s.prependSlide(t);if(e>=l)return void s.appendSlide(t);let o=n>e?n+1:n;const d=[];for(let t=l-1;t>=e;t-=1){const e=s.slides.eq(t);e.remove(),d.unshift(e)}if("object"==typeof t&&"length"in t){for(let e=0;e<t.length;e+=1)t[e]&&a.append(t[e]);o=n>e?n+t.length:n}else a.append(t);for(let e=0;e<d.length;e+=1)a.append(d[e]);i.loop&&s.loopCreate(),i.observer||s.update(),i.loop?s.slideTo(o+s.loopedSlides,0,!1):s.slideTo(o,0,!1)}function V(e){const t=this,{params:s,$wrapperEl:a,activeIndex:i}=t;let r=i;s.loop&&(r-=t.loopedSlides,t.loopDestroy(),t.slides=a.children(`.${s.slideClass}`));let n,l=r;if("object"==typeof e&&"length"in e){for(let s=0;s<e.length;s+=1)n=e[s],t.slides[n]&&t.slides.eq(n).remove(),n<l&&(l-=1);l=Math.max(l,0)}else n=e,t.slides[n]&&t.slides.eq(n).remove(),n<l&&(l-=1),l=Math.max(l,0);s.loop&&t.loopCreate(),s.observer||t.update(),s.loop?t.slideTo(l+t.loopedSlides,0,!1):t.slideTo(l,0,!1)}function q(){const e=this,t=[];for(let s=0;s<e.slides.length;s+=1)t.push(s);e.removeSlide(t)}function F(e){const{effect:t,swiper:s,on:a,setTranslate:i,setTransition:r,overwriteParams:n,perspective:l}=e;a("beforeInit",(()=>{if(s.params.effect!==t)return;s.classNames.push(`${s.params.containerModifierClass}${t}`),l&&l()&&s.classNames.push(`${s.params.containerModifierClass}3d`);const e=n?n():{};Object.assign(s.params,e),Object.assign(s.originalParams,e)})),a("setTranslate",(()=>{s.params.effect===t&&i()})),a("setTransition",((e,a)=>{s.params.effect===t&&r(a)}))}function U(e,t){return e.transformEl?t.find(e.transformEl).css({"backface-visibility":"hidden","-webkit-backface-visibility":"hidden"}):t}function K({swiper:e,duration:t,transformEl:s,allSlides:a}){const{slides:i,activeIndex:r,$wrapperEl:n}=e;if(e.params.virtualTranslate&&0!==t){let t,l=!1;t=a?s?i.find(s):i:s?i.eq(r).find(s):i.eq(r),t.transitionEnd((()=>{if(l)return;if(!e||e.destroyed)return;l=!0,e.animating=!1;const t=["webkitTransitionEnd","transitionend"];for(let e=0;e<t.length;e+=1)n.trigger(t[e])}))}}function Z(e,t,s){const a="swiper-slide-shadow"+(s?`-${s}`:""),i=e.transformEl?t.find(e.transformEl):t;let r=i.children(`.${a}`);return r.length||(r=d(`<div class="swiper-slide-shadow${s?`-${s}`:""}"></div>`),i.append(r)),r}Object.keys(B).forEach((e=>{Object.keys(B[e]).forEach((t=>{H.prototype[t]=B[e][t]}))})),H.use([function({swiper:e,on:t,emit:s}){const a=r();let i=null;const n=()=>{e&&!e.destroyed&&e.initialized&&(s("beforeResize"),s("resize"))},l=()=>{e&&!e.destroyed&&e.initialized&&s("orientationchange")};t("init",(()=>{e.params.resizeObserver&&void 0!==a.ResizeObserver?e&&!e.destroyed&&e.initialized&&(i=new ResizeObserver((t=>{const{width:s,height:a}=e;let i=s,r=a;t.forEach((({contentBoxSize:t,contentRect:s,target:a})=>{a&&a!==e.el||(i=s?s.width:(t[0]||t).inlineSize,r=s?s.height:(t[0]||t).blockSize)})),i===s&&r===a||n()})),i.observe(e.el)):(a.addEventListener("resize",n),a.addEventListener("orientationchange",l))})),t("destroy",(()=>{i&&i.unobserve&&e.el&&(i.unobserve(e.el),i=null),a.removeEventListener("resize",n),a.removeEventListener("orientationchange",l)}))},function({swiper:e,extendParams:t,on:s,emit:a}){const i=[],n=r(),l=(e,t={})=>{const s=new(n.MutationObserver||n.WebkitMutationObserver)((e=>{if(1===e.length)return void a("observerUpdate",e[0]);const t=function(){a("observerUpdate",e[0])};n.requestAnimationFrame?n.requestAnimationFrame(t):n.setTimeout(t,0)}));s.observe(e,{attributes:void 0===t.attributes||t.attributes,childList:void 0===t.childList||t.childList,characterData:void 0===t.characterData||t.characterData}),i.push(s)};t({observer:!1,observeParents:!1,observeSlideChildren:!1}),s("init",(()=>{if(e.params.observer){if(e.params.observeParents){const t=e.$el.parents();for(let e=0;e<t.length;e+=1)l(t[e])}l(e.$el[0],{childList:e.params.observeSlideChildren}),l(e.$wrapperEl[0],{attributes:!1})}})),s("destroy",(()=>{i.forEach((e=>{e.disconnect()})),i.splice(0,i.length)}))}]);const J=[function({swiper:e,extendParams:t,on:s}){let a;function i(t,s){const a=e.params.virtual;if(a.cache&&e.virtual.cache[s])return e.virtual.cache[s];const i=a.renderSlide?d(a.renderSlide.call(e,t,s)):d(`<div class="${e.params.slideClass}" data-swiper-slide-index="${s}">${t}</div>`);return i.attr("data-swiper-slide-index")||i.attr("data-swiper-slide-index",s),a.cache&&(e.virtual.cache[s]=i),i}function r(t){const{slidesPerView:s,slidesPerGroup:a,centeredSlides:r}=e.params,{addSlidesBefore:n,addSlidesAfter:l}=e.params.virtual,{from:o,to:d,slides:c,slidesGrid:p,offset:u}=e.virtual;e.params.cssMode||e.updateActiveIndex();const h=e.activeIndex||0;let m,f,g;m=e.rtlTranslate?"right":e.isHorizontal()?"left":"top",r?(f=Math.floor(s/2)+a+l,g=Math.floor(s/2)+a+n):(f=s+(a-1)+l,g=a+n);const v=Math.max((h||0)-g,0),w=Math.min((h||0)+f,c.length-1),b=(e.slidesGrid[v]||0)-(e.slidesGrid[0]||0);function x(){e.updateSlides(),e.updateProgress(),e.updateSlidesClasses(),e.lazy&&e.params.lazy.enabled&&e.lazy.load()}if(Object.assign(e.virtual,{from:v,to:w,offset:b,slidesGrid:e.slidesGrid}),o===v&&d===w&&!t)return e.slidesGrid!==p&&b!==u&&e.slides.css(m,`${b}px`),void e.updateProgress();if(e.params.virtual.renderExternal)return e.params.virtual.renderExternal.call(e,{offset:b,from:v,to:w,slides:function(){const e=[];for(let t=v;t<=w;t+=1)e.push(c[t]);return e}()}),void(e.params.virtual.renderExternalUpdate&&x());const y=[],E=[];if(t)e.$wrapperEl.find(`.${e.params.slideClass}`).remove();else for(let t=o;t<=d;t+=1)(t<v||t>w)&&e.$wrapperEl.find(`.${e.params.slideClass}[data-swiper-slide-index="${t}"]`).remove();for(let e=0;e<c.length;e+=1)e>=v&&e<=w&&(void 0===d||t?E.push(e):(e>d&&E.push(e),e<o&&y.push(e)));E.forEach((t=>{e.$wrapperEl.append(i(c[t],t))})),y.sort(((e,t)=>t-e)).forEach((t=>{e.$wrapperEl.prepend(i(c[t],t))})),e.$wrapperEl.children(".swiper-slide").css(m,`${b}px`),x()}t({virtual:{enabled:!1,slides:[],cache:!0,renderSlide:null,renderExternal:null,renderExternalUpdate:!0,addSlidesBefore:0,addSlidesAfter:0}}),e.virtual={cache:{},from:void 0,to:void 0,slides:[],offset:0,slidesGrid:[]},s("beforeInit",(()=>{e.params.virtual.enabled&&(e.virtual.slides=e.params.virtual.slides,e.classNames.push(`${e.params.containerModifierClass}virtual`),e.params.watchSlidesProgress=!0,e.originalParams.watchSlidesProgress=!0,e.params.initialSlide||r())})),s("setTranslate",(()=>{e.params.virtual.enabled&&(e.params.cssMode&&!e._immediateVirtual?(clearTimeout(a),a=setTimeout((()=>{r()}),100)):r())})),s("init update resize",(()=>{e.params.virtual.enabled&&e.params.cssMode&&g(e.wrapperEl,"--swiper-virtual-size",`${e.virtualSize}px`)})),Object.assign(e.virtual,{appendSlide:function(t){if("object"==typeof t&&"length"in t)for(let s=0;s<t.length;s+=1)t[s]&&e.virtual.slides.push(t[s]);else e.virtual.slides.push(t);r(!0)},prependSlide:function(t){const s=e.activeIndex;let a=s+1,i=1;if(Array.isArray(t)){for(let s=0;s<t.length;s+=1)t[s]&&e.virtual.slides.unshift(t[s]);a=s+t.length,i=t.length}else e.virtual.slides.unshift(t);if(e.params.virtual.cache){const t=e.virtual.cache,s={};Object.keys(t).forEach((e=>{const a=t[e],r=a.attr("data-swiper-slide-index");r&&a.attr("data-swiper-slide-index",parseInt(r,10)+i),s[parseInt(e,10)+i]=a})),e.virtual.cache=s}r(!0),e.slideTo(a,0)},removeSlide:function(t){if(null==t)return;let s=e.activeIndex;if(Array.isArray(t))for(let a=t.length-1;a>=0;a-=1)e.virtual.slides.splice(t[a],1),e.params.virtual.cache&&delete e.virtual.cache[t[a]],t[a]<s&&(s-=1),s=Math.max(s,0);else e.virtual.slides.splice(t,1),e.params.virtual.cache&&delete e.virtual.cache[t],t<s&&(s-=1),s=Math.max(s,0);r(!0),e.slideTo(s,0)},removeAllSlides:function(){e.virtual.slides=[],e.params.virtual.cache&&(e.virtual.cache={}),r(!0),e.slideTo(0,0)},update:r})},function({swiper:e,extendParams:t,on:s,emit:i}){const n=a(),l=r();function o(t){if(!e.enabled)return;const{rtlTranslate:s}=e;let a=t;a.originalEvent&&(a=a.originalEvent);const r=a.keyCode||a.charCode,o=e.params.keyboard.pageUpDown,d=o&&33===r,c=o&&34===r,p=37===r,u=39===r,h=38===r,m=40===r;if(!e.allowSlideNext&&(e.isHorizontal()&&u||e.isVertical()&&m||c))return!1;if(!e.allowSlidePrev&&(e.isHorizontal()&&p||e.isVertical()&&h||d))return!1;if(!(a.shiftKey||a.altKey||a.ctrlKey||a.metaKey||n.activeElement&&n.activeElement.nodeName&&("input"===n.activeElement.nodeName.toLowerCase()||"textarea"===n.activeElement.nodeName.toLowerCase()))){if(e.params.keyboard.onlyInViewport&&(d||c||p||u||h||m)){let t=!1;if(e.$el.parents(`.${e.params.slideClass}`).length>0&&0===e.$el.parents(`.${e.params.slideActiveClass}`).length)return;const a=e.$el,i=a[0].clientWidth,r=a[0].clientHeight,n=l.innerWidth,o=l.innerHeight,d=e.$el.offset();s&&(d.left-=e.$el[0].scrollLeft);const c=[[d.left,d.top],[d.left+i,d.top],[d.left,d.top+r],[d.left+i,d.top+r]];for(let e=0;e<c.length;e+=1){const s=c[e];if(s[0]>=0&&s[0]<=n&&s[1]>=0&&s[1]<=o){if(0===s[0]&&0===s[1])continue;t=!0}}if(!t)return}e.isHorizontal()?((d||c||p||u)&&(a.preventDefault?a.preventDefault():a.returnValue=!1),((c||u)&&!s||(d||p)&&s)&&e.slideNext(),((d||p)&&!s||(c||u)&&s)&&e.slidePrev()):((d||c||h||m)&&(a.preventDefault?a.preventDefault():a.returnValue=!1),(c||m)&&e.slideNext(),(d||h)&&e.slidePrev()),i("keyPress",r)}}function c(){e.keyboard.enabled||(d(n).on("keydown",o),e.keyboard.enabled=!0)}function p(){e.keyboard.enabled&&(d(n).off("keydown",o),e.keyboard.enabled=!1)}e.keyboard={enabled:!1},t({keyboard:{enabled:!1,onlyInViewport:!0,pageUpDown:!0}}),s("init",(()=>{e.params.keyboard.enabled&&c()})),s("destroy",(()=>{e.keyboard.enabled&&p()})),Object.assign(e.keyboard,{enable:c,disable:p})},function({swiper:e,extendParams:t,on:s,emit:a}){const i=r();let n;t({mousewheel:{enabled:!1,releaseOnEdges:!1,invert:!1,forceToAxis:!1,sensitivity:1,eventsTarget:"container",thresholdDelta:null,thresholdTime:null}}),e.mousewheel={enabled:!1};let l,o=u();const c=[];function h(){e.enabled&&(e.mouseEntered=!0)}function m(){e.enabled&&(e.mouseEntered=!1)}function f(t){return!(e.params.mousewheel.thresholdDelta&&t.delta<e.params.mousewheel.thresholdDelta)&&(!(e.params.mousewheel.thresholdTime&&u()-o<e.params.mousewheel.thresholdTime)&&(t.delta>=6&&u()-o<60||(t.direction<0?e.isEnd&&!e.params.loop||e.animating||(e.slideNext(),a("scroll",t.raw)):e.isBeginning&&!e.params.loop||e.animating||(e.slidePrev(),a("scroll",t.raw)),o=(new i.Date).getTime(),!1)))}function g(t){let s=t,i=!0;if(!e.enabled)return;const r=e.params.mousewheel;e.params.cssMode&&s.preventDefault();let o=e.$el;if("container"!==e.params.mousewheel.eventsTarget&&(o=d(e.params.mousewheel.eventsTarget)),!e.mouseEntered&&!o[0].contains(s.target)&&!r.releaseOnEdges)return!0;s.originalEvent&&(s=s.originalEvent);let h=0;const m=e.rtlTranslate?-1:1,g=function(e){let t=0,s=0,a=0,i=0;return"detail"in e&&(s=e.detail),"wheelDelta"in e&&(s=-e.wheelDelta/120),"wheelDeltaY"in e&&(s=-e.wheelDeltaY/120),"wheelDeltaX"in e&&(t=-e.wheelDeltaX/120),"axis"in e&&e.axis===e.HORIZONTAL_AXIS&&(t=s,s=0),a=10*t,i=10*s,"deltaY"in e&&(i=e.deltaY),"deltaX"in e&&(a=e.deltaX),e.shiftKey&&!a&&(a=i,i=0),(a||i)&&e.deltaMode&&(1===e.deltaMode?(a*=40,i*=40):(a*=800,i*=800)),a&&!t&&(t=a<1?-1:1),i&&!s&&(s=i<1?-1:1),{spinX:t,spinY:s,pixelX:a,pixelY:i}}(s);if(r.forceToAxis)if(e.isHorizontal()){if(!(Math.abs(g.pixelX)>Math.abs(g.pixelY)))return!0;h=-g.pixelX*m}else{if(!(Math.abs(g.pixelY)>Math.abs(g.pixelX)))return!0;h=-g.pixelY}else h=Math.abs(g.pixelX)>Math.abs(g.pixelY)?-g.pixelX*m:-g.pixelY;if(0===h)return!0;r.invert&&(h=-h);let v=e.getTranslate()+h*r.sensitivity;if(v>=e.minTranslate()&&(v=e.minTranslate()),v<=e.maxTranslate()&&(v=e.maxTranslate()),i=!!e.params.loop||!(v===e.minTranslate()||v===e.maxTranslate()),i&&e.params.nested&&s.stopPropagation(),e.params.freeMode&&e.params.freeMode.enabled){const t={time:u(),delta:Math.abs(h),direction:Math.sign(h)},i=l&&t.time<l.time+500&&t.delta<=l.delta&&t.direction===l.direction;if(!i){l=void 0,e.params.loop&&e.loopFix();let o=e.getTranslate()+h*r.sensitivity;const d=e.isBeginning,u=e.isEnd;if(o>=e.minTranslate()&&(o=e.minTranslate()),o<=e.maxTranslate()&&(o=e.maxTranslate()),e.setTransition(0),e.setTranslate(o),e.updateProgress(),e.updateActiveIndex(),e.updateSlidesClasses(),(!d&&e.isBeginning||!u&&e.isEnd)&&e.updateSlidesClasses(),e.params.freeMode.sticky){clearTimeout(n),n=void 0,c.length>=15&&c.shift();const s=c.length?c[c.length-1]:void 0,a=c[0];if(c.push(t),s&&(t.delta>s.delta||t.direction!==s.direction))c.splice(0);else if(c.length>=15&&t.time-a.time<500&&a.delta-t.delta>=1&&t.delta<=6){const s=h>0?.8:.2;l=t,c.splice(0),n=p((()=>{e.slideToClosest(e.params.speed,!0,void 0,s)}),0)}n||(n=p((()=>{l=t,c.splice(0),e.slideToClosest(e.params.speed,!0,void 0,.5)}),500))}if(i||a("scroll",s),e.params.autoplay&&e.params.autoplayDisableOnInteraction&&e.autoplay.stop(),o===e.minTranslate()||o===e.maxTranslate())return!0}}else{const s={time:u(),delta:Math.abs(h),direction:Math.sign(h),raw:t};c.length>=2&&c.shift();const a=c.length?c[c.length-1]:void 0;if(c.push(s),a?(s.direction!==a.direction||s.delta>a.delta||s.time>a.time+150)&&f(s):f(s),function(t){const s=e.params.mousewheel;if(t.direction<0){if(e.isEnd&&!e.params.loop&&s.releaseOnEdges)return!0}else if(e.isBeginning&&!e.params.loop&&s.releaseOnEdges)return!0;return!1}(s))return!0}return s.preventDefault?s.preventDefault():s.returnValue=!1,!1}function v(t){let s=e.$el;"container"!==e.params.mousewheel.eventsTarget&&(s=d(e.params.mousewheel.eventsTarget)),s[t]("mouseenter",h),s[t]("mouseleave",m),s[t]("wheel",g)}function w(){return e.params.cssMode?(e.wrapperEl.removeEventListener("wheel",g),!0):!e.mousewheel.enabled&&(v("on"),e.mousewheel.enabled=!0,!0)}function b(){return e.params.cssMode?(e.wrapperEl.addEventListener(event,g),!0):!!e.mousewheel.enabled&&(v("off"),e.mousewheel.enabled=!1,!0)}s("init",(()=>{!e.params.mousewheel.enabled&&e.params.cssMode&&b(),e.params.mousewheel.enabled&&w()})),s("destroy",(()=>{e.params.cssMode&&w(),e.mousewheel.enabled&&b()})),Object.assign(e.mousewheel,{enable:w,disable:b})},function({swiper:e,extendParams:t,on:s,emit:a}){function i(t){let s;return t&&(s=d(t),e.params.uniqueNavElements&&"string"==typeof t&&s.length>1&&1===e.$el.find(t).length&&(s=e.$el.find(t))),s}function r(t,s){const a=e.params.navigation;t&&t.length>0&&(t[s?"addClass":"removeClass"](a.disabledClass),t[0]&&"BUTTON"===t[0].tagName&&(t[0].disabled=s),e.params.watchOverflow&&e.enabled&&t[e.isLocked?"addClass":"removeClass"](a.lockClass))}function n(){if(e.params.loop)return;const{$nextEl:t,$prevEl:s}=e.navigation;r(s,e.isBeginning),r(t,e.isEnd)}function l(t){t.preventDefault(),e.isBeginning&&!e.params.loop||e.slidePrev()}function o(t){t.preventDefault(),e.isEnd&&!e.params.loop||e.slideNext()}function c(){const t=e.params.navigation;if(e.params.navigation=Y(e,e.originalParams.navigation,e.params.navigation,{nextEl:"swiper-button-next",prevEl:"swiper-button-prev"}),!t.nextEl&&!t.prevEl)return;const s=i(t.nextEl),a=i(t.prevEl);s&&s.length>0&&s.on("click",o),a&&a.length>0&&a.on("click",l),Object.assign(e.navigation,{$nextEl:s,nextEl:s&&s[0],$prevEl:a,prevEl:a&&a[0]}),e.enabled||(s&&s.addClass(t.lockClass),a&&a.addClass(t.lockClass))}function p(){const{$nextEl:t,$prevEl:s}=e.navigation;t&&t.length&&(t.off("click",o),t.removeClass(e.params.navigation.disabledClass)),s&&s.length&&(s.off("click",l),s.removeClass(e.params.navigation.disabledClass))}t({navigation:{nextEl:null,prevEl:null,hideOnClick:!1,disabledClass:"swiper-button-disabled",hiddenClass:"swiper-button-hidden",lockClass:"swiper-button-lock"}}),e.navigation={nextEl:null,$nextEl:null,prevEl:null,$prevEl:null},s("init",(()=>{c(),n()})),s("toEdge fromEdge lock unlock",(()=>{n()})),s("destroy",(()=>{p()})),s("enable disable",(()=>{const{$nextEl:t,$prevEl:s}=e.navigation;t&&t[e.enabled?"removeClass":"addClass"](e.params.navigation.lockClass),s&&s[e.enabled?"removeClass":"addClass"](e.params.navigation.lockClass)})),s("click",((t,s)=>{const{$nextEl:i,$prevEl:r}=e.navigation,n=s.target;if(e.params.navigation.hideOnClick&&!d(n).is(r)&&!d(n).is(i)){if(e.pagination&&e.params.pagination&&e.params.pagination.clickable&&(e.pagination.el===n||e.pagination.el.contains(n)))return;let t;i?t=i.hasClass(e.params.navigation.hiddenClass):r&&(t=r.hasClass(e.params.navigation.hiddenClass)),a(!0===t?"navigationShow":"navigationHide"),i&&i.toggleClass(e.params.navigation.hiddenClass),r&&r.toggleClass(e.params.navigation.hiddenClass)}})),Object.assign(e.navigation,{update:n,init:c,destroy:p})},function({swiper:e,extendParams:t,on:s,emit:a}){const i="swiper-pagination";let r;t({pagination:{el:null,bulletElement:"span",clickable:!1,hideOnClick:!1,renderBullet:null,renderProgressbar:null,renderFraction:null,renderCustom:null,progressbarOpposite:!1,type:"bullets",dynamicBullets:!1,dynamicMainBullets:1,formatFractionCurrent:e=>e,formatFractionTotal:e=>e,bulletClass:`${i}-bullet`,bulletActiveClass:`${i}-bullet-active`,modifierClass:`${i}-`,currentClass:`${i}-current`,totalClass:`${i}-total`,hiddenClass:`${i}-hidden`,progressbarFillClass:`${i}-progressbar-fill`,progressbarOppositeClass:`${i}-progressbar-opposite`,clickableClass:`${i}-clickable`,lockClass:`${i}-lock`,horizontalClass:`${i}-horizontal`,verticalClass:`${i}-vertical`}}),e.pagination={el:null,$el:null,bullets:[]};let n=0;function l(){return!e.params.pagination.el||!e.pagination.el||!e.pagination.$el||0===e.pagination.$el.length}function o(t,s){const{bulletActiveClass:a}=e.params.pagination;t[s]().addClass(`${a}-${s}`)[s]().addClass(`${a}-${s}-${s}`)}function c(){const t=e.rtl,s=e.params.pagination;if(l())return;const i=e.virtual&&e.params.virtual.enabled?e.virtual.slides.length:e.slides.length,c=e.pagination.$el;let p;const u=e.params.loop?Math.ceil((i-2*e.loopedSlides)/e.params.slidesPerGroup):e.snapGrid.length;if(e.params.loop?(p=Math.ceil((e.activeIndex-e.loopedSlides)/e.params.slidesPerGroup),p>i-1-2*e.loopedSlides&&(p-=i-2*e.loopedSlides),p>u-1&&(p-=u),p<0&&"bullets"!==e.params.paginationType&&(p=u+p)):p=void 0!==e.snapIndex?e.snapIndex:e.activeIndex||0,"bullets"===s.type&&e.pagination.bullets&&e.pagination.bullets.length>0){const a=e.pagination.bullets;let i,l,u;if(s.dynamicBullets&&(r=a.eq(0)[e.isHorizontal()?"outerWidth":"outerHeight"](!0),c.css(e.isHorizontal()?"width":"height",r*(s.dynamicMainBullets+4)+"px"),s.dynamicMainBullets>1&&void 0!==e.previousIndex&&(n+=p-e.previousIndex,n>s.dynamicMainBullets-1?n=s.dynamicMainBullets-1:n<0&&(n=0)),i=p-n,l=i+(Math.min(a.length,s.dynamicMainBullets)-1),u=(l+i)/2),a.removeClass(["","-next","-next-next","-prev","-prev-prev","-main"].map((e=>`${s.bulletActiveClass}${e}`)).join(" ")),c.length>1)a.each((e=>{const t=d(e),a=t.index();a===p&&t.addClass(s.bulletActiveClass),s.dynamicBullets&&(a>=i&&a<=l&&t.addClass(`${s.bulletActiveClass}-main`),a===i&&o(t,"prev"),a===l&&o(t,"next"))}));else{const t=a.eq(p),r=t.index();if(t.addClass(s.bulletActiveClass),s.dynamicBullets){const t=a.eq(i),n=a.eq(l);for(let e=i;e<=l;e+=1)a.eq(e).addClass(`${s.bulletActiveClass}-main`);if(e.params.loop)if(r>=a.length-s.dynamicMainBullets){for(let e=s.dynamicMainBullets;e>=0;e-=1)a.eq(a.length-e).addClass(`${s.bulletActiveClass}-main`);a.eq(a.length-s.dynamicMainBullets-1).addClass(`${s.bulletActiveClass}-prev`)}else o(t,"prev"),o(n,"next");else o(t,"prev"),o(n,"next")}}if(s.dynamicBullets){const i=Math.min(a.length,s.dynamicMainBullets+4),n=(r*i-r)/2-u*r,l=t?"right":"left";a.css(e.isHorizontal()?l:"top",`${n}px`)}}if("fraction"===s.type&&(c.find(W(s.currentClass)).text(s.formatFractionCurrent(p+1)),c.find(W(s.totalClass)).text(s.formatFractionTotal(u))),"progressbar"===s.type){let t;t=s.progressbarOpposite?e.isHorizontal()?"vertical":"horizontal":e.isHorizontal()?"horizontal":"vertical";const a=(p+1)/u;let i=1,r=1;"horizontal"===t?i=a:r=a,c.find(W(s.progressbarFillClass)).transform(`translate3d(0,0,0) scaleX(${i}) scaleY(${r})`).transition(e.params.speed)}"custom"===s.type&&s.renderCustom?(c.html(s.renderCustom(e,p+1,u)),a("paginationRender",c[0])):a("paginationUpdate",c[0]),e.params.watchOverflow&&e.enabled&&c[e.isLocked?"addClass":"removeClass"](s.lockClass)}function p(){const t=e.params.pagination;if(l())return;const s=e.virtual&&e.params.virtual.enabled?e.virtual.slides.length:e.slides.length,i=e.pagination.$el;let r="";if("bullets"===t.type){let a=e.params.loop?Math.ceil((s-2*e.loopedSlides)/e.params.slidesPerGroup):e.snapGrid.length;e.params.freeMode&&e.params.freeMode.enabled&&!e.params.loop&&a>s&&(a=s);for(let s=0;s<a;s+=1)t.renderBullet?r+=t.renderBullet.call(e,s,t.bulletClass):r+=`<${t.bulletElement} class="${t.bulletClass}"></${t.bulletElement}>`;i.html(r),e.pagination.bullets=i.find(W(t.bulletClass))}"fraction"===t.type&&(r=t.renderFraction?t.renderFraction.call(e,t.currentClass,t.totalClass):`<span class="${t.currentClass}"></span> / <span class="${t.totalClass}"></span>`,i.html(r)),"progressbar"===t.type&&(r=t.renderProgressbar?t.renderProgressbar.call(e,t.progressbarFillClass):`<span class="${t.progressbarFillClass}"></span>`,i.html(r)),"custom"!==t.type&&a("paginationRender",e.pagination.$el[0])}function u(){e.params.pagination=Y(e,e.originalParams.pagination,e.params.pagination,{el:"swiper-pagination"});const t=e.params.pagination;if(!t.el)return;let s=d(t.el);0!==s.length&&(e.params.uniqueNavElements&&"string"==typeof t.el&&s.length>1&&(s=e.$el.find(t.el),s.length>1&&(s=s.filter((t=>d(t).parents(".swiper")[0]===e.el)))),"bullets"===t.type&&t.clickable&&s.addClass(t.clickableClass),s.addClass(t.modifierClass+t.type),s.addClass(t.modifierClass+e.params.direction),"bullets"===t.type&&t.dynamicBullets&&(s.addClass(`${t.modifierClass}${t.type}-dynamic`),n=0,t.dynamicMainBullets<1&&(t.dynamicMainBullets=1)),"progressbar"===t.type&&t.progressbarOpposite&&s.addClass(t.progressbarOppositeClass),t.clickable&&s.on("click",W(t.bulletClass),(function(t){t.preventDefault();let s=d(this).index()*e.params.slidesPerGroup;e.params.loop&&(s+=e.loopedSlides),e.slideTo(s)})),Object.assign(e.pagination,{$el:s,el:s[0]}),e.enabled||s.addClass(t.lockClass))}function h(){const t=e.params.pagination;if(l())return;const s=e.pagination.$el;s.removeClass(t.hiddenClass),s.removeClass(t.modifierClass+t.type),s.removeClass(t.modifierClass+e.params.direction),e.pagination.bullets&&e.pagination.bullets.removeClass&&e.pagination.bullets.removeClass(t.bulletActiveClass),t.clickable&&s.off("click",W(t.bulletClass))}s("init",(()=>{u(),p(),c()})),s("activeIndexChange",(()=>{(e.params.loop||void 0===e.snapIndex)&&c()})),s("snapIndexChange",(()=>{e.params.loop||c()})),s("slidesLengthChange",(()=>{e.params.loop&&(p(),c())})),s("snapGridLengthChange",(()=>{e.params.loop||(p(),c())})),s("destroy",(()=>{h()})),s("enable disable",(()=>{const{$el:t}=e.pagination;t&&t[e.enabled?"removeClass":"addClass"](e.params.pagination.lockClass)})),s("lock unlock",(()=>{c()})),s("click",((t,s)=>{const i=s.target,{$el:r}=e.pagination;if(e.params.pagination.el&&e.params.pagination.hideOnClick&&r.length>0&&!d(i).hasClass(e.params.pagination.bulletClass)){if(e.navigation&&(e.navigation.nextEl&&i===e.navigation.nextEl||e.navigation.prevEl&&i===e.navigation.prevEl))return;const t=r.hasClass(e.params.pagination.hiddenClass);a(!0===t?"paginationShow":"paginationHide"),r.toggleClass(e.params.pagination.hiddenClass)}})),Object.assign(e.pagination,{render:p,update:c,init:u,destroy:h})},function({swiper:e,extendParams:t,on:s,emit:i}){const r=a();let n,l,o,c,u=!1,h=null,m=null;function f(){if(!e.params.scrollbar.el||!e.scrollbar.el)return;const{scrollbar:t,rtlTranslate:s,progress:a}=e,{$dragEl:i,$el:r}=t,n=e.params.scrollbar;let d=l,c=(o-l)*a;s?(c=-c,c>0?(d=l-c,c=0):-c+l>o&&(d=o+c)):c<0?(d=l+c,c=0):c+l>o&&(d=o-c),e.isHorizontal()?(i.transform(`translate3d(${c}px, 0, 0)`),i[0].style.width=`${d}px`):(i.transform(`translate3d(0px, ${c}px, 0)`),i[0].style.height=`${d}px`),n.hide&&(clearTimeout(h),r[0].style.opacity=1,h=setTimeout((()=>{r[0].style.opacity=0,r.transition(400)}),1e3))}function g(){if(!e.params.scrollbar.el||!e.scrollbar.el)return;const{scrollbar:t}=e,{$dragEl:s,$el:a}=t;s[0].style.width="",s[0].style.height="",o=e.isHorizontal()?a[0].offsetWidth:a[0].offsetHeight,c=e.size/(e.virtualSize+e.params.slidesOffsetBefore-(e.params.centeredSlides?e.snapGrid[0]:0)),l="auto"===e.params.scrollbar.dragSize?o*c:parseInt(e.params.scrollbar.dragSize,10),e.isHorizontal()?s[0].style.width=`${l}px`:s[0].style.height=`${l}px`,a[0].style.display=c>=1?"none":"",e.params.scrollbar.hide&&(a[0].style.opacity=0),e.params.watchOverflow&&e.enabled&&t.$el[e.isLocked?"addClass":"removeClass"](e.params.scrollbar.lockClass)}function v(t){return e.isHorizontal()?"touchstart"===t.type||"touchmove"===t.type?t.targetTouches[0].clientX:t.clientX:"touchstart"===t.type||"touchmove"===t.type?t.targetTouches[0].clientY:t.clientY}function w(t){const{scrollbar:s,rtlTranslate:a}=e,{$el:i}=s;let r;r=(v(t)-i.offset()[e.isHorizontal()?"left":"top"]-(null!==n?n:l/2))/(o-l),r=Math.max(Math.min(r,1),0),a&&(r=1-r);const d=e.minTranslate()+(e.maxTranslate()-e.minTranslate())*r;e.updateProgress(d),e.setTranslate(d),e.updateActiveIndex(),e.updateSlidesClasses()}function b(t){const s=e.params.scrollbar,{scrollbar:a,$wrapperEl:r}=e,{$el:l,$dragEl:o}=a;u=!0,n=t.target===o[0]||t.target===o?v(t)-t.target.getBoundingClientRect()[e.isHorizontal()?"left":"top"]:null,t.preventDefault(),t.stopPropagation(),r.transition(100),o.transition(100),w(t),clearTimeout(m),l.transition(0),s.hide&&l.css("opacity",1),e.params.cssMode&&e.$wrapperEl.css("scroll-snap-type","none"),i("scrollbarDragStart",t)}function x(t){const{scrollbar:s,$wrapperEl:a}=e,{$el:r,$dragEl:n}=s;u&&(t.preventDefault?t.preventDefault():t.returnValue=!1,w(t),a.transition(0),r.transition(0),n.transition(0),i("scrollbarDragMove",t))}function y(t){const s=e.params.scrollbar,{scrollbar:a,$wrapperEl:r}=e,{$el:n}=a;u&&(u=!1,e.params.cssMode&&(e.$wrapperEl.css("scroll-snap-type",""),r.transition("")),s.hide&&(clearTimeout(m),m=p((()=>{n.css("opacity",0),n.transition(400)}),1e3)),i("scrollbarDragEnd",t),s.snapOnRelease&&e.slideToClosest())}function E(t){const{scrollbar:s,touchEventsTouch:a,touchEventsDesktop:i,params:n,support:l}=e,o=s.$el[0],d=!(!l.passiveListener||!n.passiveListeners)&&{passive:!1,capture:!1},c=!(!l.passiveListener||!n.passiveListeners)&&{passive:!0,capture:!1};if(!o)return;const p="on"===t?"addEventListener":"removeEventListener";l.touch?(o[p](a.start,b,d),o[p](a.move,x,d),o[p](a.end,y,c)):(o[p](i.start,b,d),r[p](i.move,x,d),r[p](i.end,y,c))}function T(){const{scrollbar:t,$el:s}=e;e.params.scrollbar=Y(e,e.originalParams.scrollbar,e.params.scrollbar,{el:"swiper-scrollbar"});const a=e.params.scrollbar;if(!a.el)return;let i=d(a.el);e.params.uniqueNavElements&&"string"==typeof a.el&&i.length>1&&1===s.find(a.el).length&&(i=s.find(a.el));let r=i.find(`.${e.params.scrollbar.dragClass}`);0===r.length&&(r=d(`<div class="${e.params.scrollbar.dragClass}"></div>`),i.append(r)),Object.assign(t,{$el:i,el:i[0],$dragEl:r,dragEl:r[0]}),a.draggable&&e.params.scrollbar.el&&E("on"),i&&i[e.enabled?"removeClass":"addClass"](e.params.scrollbar.lockClass)}function C(){e.params.scrollbar.el&&E("off")}t({scrollbar:{el:null,dragSize:"auto",hide:!1,draggable:!1,snapOnRelease:!0,lockClass:"swiper-scrollbar-lock",dragClass:"swiper-scrollbar-drag"}}),e.scrollbar={el:null,dragEl:null,$el:null,$dragEl:null},s("init",(()=>{T(),g(),f()})),s("update resize observerUpdate lock unlock",(()=>{g()})),s("setTranslate",(()=>{f()})),s("setTransition",((t,s)=>{!function(t){e.params.scrollbar.el&&e.scrollbar.el&&e.scrollbar.$dragEl.transition(t)}(s)})),s("enable disable",(()=>{const{$el:t}=e.scrollbar;t&&t[e.enabled?"removeClass":"addClass"](e.params.scrollbar.lockClass)})),s("destroy",(()=>{C()})),Object.assign(e.scrollbar,{updateSize:g,setTranslate:f,init:T,destroy:C})},function({swiper:e,extendParams:t,on:s}){t({parallax:{enabled:!1}});const a=(t,s)=>{const{rtl:a}=e,i=d(t),r=a?-1:1,n=i.attr("data-swiper-parallax")||"0";let l=i.attr("data-swiper-parallax-x"),o=i.attr("data-swiper-parallax-y");const c=i.attr("data-swiper-parallax-scale"),p=i.attr("data-swiper-parallax-opacity");if(l||o?(l=l||"0",o=o||"0"):e.isHorizontal()?(l=n,o="0"):(o=n,l="0"),l=l.indexOf("%")>=0?parseInt(l,10)*s*r+"%":l*s*r+"px",o=o.indexOf("%")>=0?parseInt(o,10)*s+"%":o*s+"px",null!=p){const e=p-(p-1)*(1-Math.abs(s));i[0].style.opacity=e}if(null==c)i.transform(`translate3d(${l}, ${o}, 0px)`);else{const e=c-(c-1)*(1-Math.abs(s));i.transform(`translate3d(${l}, ${o}, 0px) scale(${e})`)}},i=()=>{const{$el:t,slides:s,progress:i,snapGrid:r}=e;t.children("[data-swiper-parallax], [data-swiper-parallax-x], [data-swiper-parallax-y], [data-swiper-parallax-opacity], [data-swiper-parallax-scale]").each((e=>{a(e,i)})),s.each(((t,s)=>{let n=t.progress;e.params.slidesPerGroup>1&&"auto"!==e.params.slidesPerView&&(n+=Math.ceil(s/2)-i*(r.length-1)),n=Math.min(Math.max(n,-1),1),d(t).find("[data-swiper-parallax], [data-swiper-parallax-x], [data-swiper-parallax-y], [data-swiper-parallax-opacity], [data-swiper-parallax-scale]").each((e=>{a(e,n)}))}))};s("beforeInit",(()=>{e.params.parallax.enabled&&(e.params.watchSlidesProgress=!0,e.originalParams.watchSlidesProgress=!0)})),s("init",(()=>{e.params.parallax.enabled&&i()})),s("setTranslate",(()=>{e.params.parallax.enabled&&i()})),s("setTransition",((t,s)=>{e.params.parallax.enabled&&((t=e.params.speed)=>{const{$el:s}=e;s.find("[data-swiper-parallax], [data-swiper-parallax-x], [data-swiper-parallax-y], [data-swiper-parallax-opacity], [data-swiper-parallax-scale]").each((e=>{const s=d(e);let a=parseInt(s.attr("data-swiper-parallax-duration"),10)||t;0===t&&(a=0),s.transition(a)}))})(s)}))},function({swiper:e,extendParams:t,on:s,emit:a}){const i=r();t({zoom:{enabled:!1,maxRatio:3,minRatio:1,toggle:!0,containerClass:"swiper-zoom-container",zoomedSlideClass:"swiper-slide-zoomed"}}),e.zoom={enabled:!1};let n,l,o,c=1,p=!1;const u={$slideEl:void 0,slideWidth:void 0,slideHeight:void 0,$imageEl:void 0,$imageWrapEl:void 0,maxRatio:3},m={isTouched:void 0,isMoved:void 0,currentX:void 0,currentY:void 0,minX:void 0,minY:void 0,maxX:void 0,maxY:void 0,width:void 0,height:void 0,startX:void 0,startY:void 0,touchesStart:{},touchesCurrent:{}},f={x:void 0,y:void 0,prevPositionX:void 0,prevPositionY:void 0,prevTime:void 0};let g=1;function v(e){if(e.targetTouches.length<2)return 1;const t=e.targetTouches[0].pageX,s=e.targetTouches[0].pageY,a=e.targetTouches[1].pageX,i=e.targetTouches[1].pageY;return Math.sqrt((a-t)**2+(i-s)**2)}function w(t){const s=e.support,a=e.params.zoom;if(l=!1,o=!1,!s.gestures){if("touchstart"!==t.type||"touchstart"===t.type&&t.targetTouches.length<2)return;l=!0,u.scaleStart=v(t)}u.$slideEl&&u.$slideEl.length||(u.$slideEl=d(t.target).closest(`.${e.params.slideClass}`),0===u.$slideEl.length&&(u.$slideEl=e.slides.eq(e.activeIndex)),u.$imageEl=u.$slideEl.find(`.${a.containerClass}`).eq(0).find("img, svg, canvas, picture, .swiper-zoom-target"),u.$imageWrapEl=u.$imageEl.parent(`.${a.containerClass}`),u.maxRatio=u.$imageWrapEl.attr("data-swiper-zoom")||a.maxRatio,0!==u.$imageWrapEl.length)?(u.$imageEl&&u.$imageEl.transition(0),p=!0):u.$imageEl=void 0}function b(t){const s=e.support,a=e.params.zoom,i=e.zoom;if(!s.gestures){if("touchmove"!==t.type||"touchmove"===t.type&&t.targetTouches.length<2)return;o=!0,u.scaleMove=v(t)}u.$imageEl&&0!==u.$imageEl.length?(s.gestures?i.scale=t.scale*c:i.scale=u.scaleMove/u.scaleStart*c,i.scale>u.maxRatio&&(i.scale=u.maxRatio-1+(i.scale-u.maxRatio+1)**.5),i.scale<a.minRatio&&(i.scale=a.minRatio+1-(a.minRatio-i.scale+1)**.5),u.$imageEl.transform(`translate3d(0,0,0) scale(${i.scale})`)):"gesturechange"===t.type&&w(t)}function x(t){const s=e.device,a=e.support,i=e.params.zoom,r=e.zoom;if(!a.gestures){if(!l||!o)return;if("touchend"!==t.type||"touchend"===t.type&&t.changedTouches.length<2&&!s.android)return;l=!1,o=!1}u.$imageEl&&0!==u.$imageEl.length&&(r.scale=Math.max(Math.min(r.scale,u.maxRatio),i.minRatio),u.$imageEl.transition(e.params.speed).transform(`translate3d(0,0,0) scale(${r.scale})`),c=r.scale,p=!1,1===r.scale&&(u.$slideEl=void 0))}function y(t){const s=e.zoom;if(!u.$imageEl||0===u.$imageEl.length)return;if(e.allowClick=!1,!m.isTouched||!u.$slideEl)return;m.isMoved||(m.width=u.$imageEl[0].offsetWidth,m.height=u.$imageEl[0].offsetHeight,m.startX=h(u.$imageWrapEl[0],"x")||0,m.startY=h(u.$imageWrapEl[0],"y")||0,u.slideWidth=u.$slideEl[0].offsetWidth,u.slideHeight=u.$slideEl[0].offsetHeight,u.$imageWrapEl.transition(0));const a=m.width*s.scale,i=m.height*s.scale;if(!(a<u.slideWidth&&i<u.slideHeight)){if(m.minX=Math.min(u.slideWidth/2-a/2,0),m.maxX=-m.minX,m.minY=Math.min(u.slideHeight/2-i/2,0),m.maxY=-m.minY,m.touchesCurrent.x="touchmove"===t.type?t.targetTouches[0].pageX:t.pageX,m.touchesCurrent.y="touchmove"===t.type?t.targetTouches[0].pageY:t.pageY,!m.isMoved&&!p){if(e.isHorizontal()&&(Math.floor(m.minX)===Math.floor(m.startX)&&m.touchesCurrent.x<m.touchesStart.x||Math.floor(m.maxX)===Math.floor(m.startX)&&m.touchesCurrent.x>m.touchesStart.x))return void(m.isTouched=!1);if(!e.isHorizontal()&&(Math.floor(m.minY)===Math.floor(m.startY)&&m.touchesCurrent.y<m.touchesStart.y||Math.floor(m.maxY)===Math.floor(m.startY)&&m.touchesCurrent.y>m.touchesStart.y))return void(m.isTouched=!1)}t.cancelable&&t.preventDefault(),t.stopPropagation(),m.isMoved=!0,m.currentX=m.touchesCurrent.x-m.touchesStart.x+m.startX,m.currentY=m.touchesCurrent.y-m.touchesStart.y+m.startY,m.currentX<m.minX&&(m.currentX=m.minX+1-(m.minX-m.currentX+1)**.8),m.currentX>m.maxX&&(m.currentX=m.maxX-1+(m.currentX-m.maxX+1)**.8),m.currentY<m.minY&&(m.currentY=m.minY+1-(m.minY-m.currentY+1)**.8),m.currentY>m.maxY&&(m.currentY=m.maxY-1+(m.currentY-m.maxY+1)**.8),f.prevPositionX||(f.prevPositionX=m.touchesCurrent.x),f.prevPositionY||(f.prevPositionY=m.touchesCurrent.y),f.prevTime||(f.prevTime=Date.now()),f.x=(m.touchesCurrent.x-f.prevPositionX)/(Date.now()-f.prevTime)/2,f.y=(m.touchesCurrent.y-f.prevPositionY)/(Date.now()-f.prevTime)/2,Math.abs(m.touchesCurrent.x-f.prevPositionX)<2&&(f.x=0),Math.abs(m.touchesCurrent.y-f.prevPositionY)<2&&(f.y=0),f.prevPositionX=m.touchesCurrent.x,f.prevPositionY=m.touchesCurrent.y,f.prevTime=Date.now(),u.$imageWrapEl.transform(`translate3d(${m.currentX}px, ${m.currentY}px,0)`)}}function E(){const t=e.zoom;u.$slideEl&&e.previousIndex!==e.activeIndex&&(u.$imageEl&&u.$imageEl.transform("translate3d(0,0,0) scale(1)"),u.$imageWrapEl&&u.$imageWrapEl.transform("translate3d(0,0,0)"),t.scale=1,c=1,u.$slideEl=void 0,u.$imageEl=void 0,u.$imageWrapEl=void 0)}function T(t){const s=e.zoom,a=e.params.zoom;if(u.$slideEl||(t&&t.target&&(u.$slideEl=d(t.target).closest(`.${e.params.slideClass}`)),u.$slideEl||(e.params.virtual&&e.params.virtual.enabled&&e.virtual?u.$slideEl=e.$wrapperEl.children(`.${e.params.slideActiveClass}`):u.$slideEl=e.slides.eq(e.activeIndex)),u.$imageEl=u.$slideEl.find(`.${a.containerClass}`).eq(0).find("img, svg, canvas, picture, .swiper-zoom-target"),u.$imageWrapEl=u.$imageEl.parent(`.${a.containerClass}`)),!u.$imageEl||0===u.$imageEl.length||!u.$imageWrapEl||0===u.$imageWrapEl.length)return;let r,n,l,o,p,h,f,g,v,w,b,x,y,E,T,C,$,S;e.params.cssMode&&(e.wrapperEl.style.overflow="hidden",e.wrapperEl.style.touchAction="none"),u.$slideEl.addClass(`${a.zoomedSlideClass}`),void 0===m.touchesStart.x&&t?(r="touchend"===t.type?t.changedTouches[0].pageX:t.pageX,n="touchend"===t.type?t.changedTouches[0].pageY:t.pageY):(r=m.touchesStart.x,n=m.touchesStart.y),s.scale=u.$imageWrapEl.attr("data-swiper-zoom")||a.maxRatio,c=u.$imageWrapEl.attr("data-swiper-zoom")||a.maxRatio,t?($=u.$slideEl[0].offsetWidth,S=u.$slideEl[0].offsetHeight,l=u.$slideEl.offset().left+i.scrollX,o=u.$slideEl.offset().top+i.scrollY,p=l+$/2-r,h=o+S/2-n,v=u.$imageEl[0].offsetWidth,w=u.$imageEl[0].offsetHeight,b=v*s.scale,x=w*s.scale,y=Math.min($/2-b/2,0),E=Math.min(S/2-x/2,0),T=-y,C=-E,f=p*s.scale,g=h*s.scale,f<y&&(f=y),f>T&&(f=T),g<E&&(g=E),g>C&&(g=C)):(f=0,g=0),u.$imageWrapEl.transition(300).transform(`translate3d(${f}px, ${g}px,0)`),u.$imageEl.transition(300).transform(`translate3d(0,0,0) scale(${s.scale})`)}function C(){const t=e.zoom,s=e.params.zoom;u.$slideEl||(e.params.virtual&&e.params.virtual.enabled&&e.virtual?u.$slideEl=e.$wrapperEl.children(`.${e.params.slideActiveClass}`):u.$slideEl=e.slides.eq(e.activeIndex),u.$imageEl=u.$slideEl.find(`.${s.containerClass}`).eq(0).find("img, svg, canvas, picture, .swiper-zoom-target"),u.$imageWrapEl=u.$imageEl.parent(`.${s.containerClass}`)),u.$imageEl&&0!==u.$imageEl.length&&u.$imageWrapEl&&0!==u.$imageWrapEl.length&&(e.params.cssMode&&(e.wrapperEl.style.overflow="",e.wrapperEl.style.touchAction=""),t.scale=1,c=1,u.$imageWrapEl.transition(300).transform("translate3d(0,0,0)"),u.$imageEl.transition(300).transform("translate3d(0,0,0) scale(1)"),u.$slideEl.removeClass(`${s.zoomedSlideClass}`),u.$slideEl=void 0)}function $(t){const s=e.zoom;s.scale&&1!==s.scale?C():T(t)}function S(){const t=e.support;return{passiveListener:!("touchstart"!==e.touchEvents.start||!t.passiveListener||!e.params.passiveListeners)&&{passive:!0,capture:!1},activeListenerWithCapture:!t.passiveListener||{passive:!1,capture:!0}}}function M(){return`.${e.params.slideClass}`}function P(t){const{passiveListener:s}=S(),a=M();e.$wrapperEl[t]("gesturestart",a,w,s),e.$wrapperEl[t]("gesturechange",a,b,s),e.$wrapperEl[t]("gestureend",a,x,s)}function k(){n||(n=!0,P("on"))}function z(){n&&(n=!1,P("off"))}function O(){const t=e.zoom;if(t.enabled)return;t.enabled=!0;const s=e.support,{passiveListener:a,activeListenerWithCapture:i}=S(),r=M();s.gestures?(e.$wrapperEl.on(e.touchEvents.start,k,a),e.$wrapperEl.on(e.touchEvents.end,z,a)):"touchstart"===e.touchEvents.start&&(e.$wrapperEl.on(e.touchEvents.start,r,w,a),e.$wrapperEl.on(e.touchEvents.move,r,b,i),e.$wrapperEl.on(e.touchEvents.end,r,x,a),e.touchEvents.cancel&&e.$wrapperEl.on(e.touchEvents.cancel,r,x,a)),e.$wrapperEl.on(e.touchEvents.move,`.${e.params.zoom.containerClass}`,y,i)}function I(){const t=e.zoom;if(!t.enabled)return;const s=e.support;t.enabled=!1;const{passiveListener:a,activeListenerWithCapture:i}=S(),r=M();s.gestures?(e.$wrapperEl.off(e.touchEvents.start,k,a),e.$wrapperEl.off(e.touchEvents.end,z,a)):"touchstart"===e.touchEvents.start&&(e.$wrapperEl.off(e.touchEvents.start,r,w,a),e.$wrapperEl.off(e.touchEvents.move,r,b,i),e.$wrapperEl.off(e.touchEvents.end,r,x,a),e.touchEvents.cancel&&e.$wrapperEl.off(e.touchEvents.cancel,r,x,a)),e.$wrapperEl.off(e.touchEvents.move,`.${e.params.zoom.containerClass}`,y,i)}Object.defineProperty(e.zoom,"scale",{get:()=>g,set(e){if(g!==e){const t=u.$imageEl?u.$imageEl[0]:void 0,s=u.$slideEl?u.$slideEl[0]:void 0;a("zoomChange",e,t,s)}g=e}}),s("init",(()=>{e.params.zoom.enabled&&O()})),s("destroy",(()=>{I()})),s("touchStart",((t,s)=>{e.zoom.enabled&&function(t){const s=e.device;u.$imageEl&&0!==u.$imageEl.length&&(m.isTouched||(s.android&&t.cancelable&&t.preventDefault(),m.isTouched=!0,m.touchesStart.x="touchstart"===t.type?t.targetTouches[0].pageX:t.pageX,m.touchesStart.y="touchstart"===t.type?t.targetTouches[0].pageY:t.pageY))}(s)})),s("touchEnd",((t,s)=>{e.zoom.enabled&&function(){const t=e.zoom;if(!u.$imageEl||0===u.$imageEl.length)return;if(!m.isTouched||!m.isMoved)return m.isTouched=!1,void(m.isMoved=!1);m.isTouched=!1,m.isMoved=!1;let s=300,a=300;const i=f.x*s,r=m.currentX+i,n=f.y*a,l=m.currentY+n;0!==f.x&&(s=Math.abs((r-m.currentX)/f.x)),0!==f.y&&(a=Math.abs((l-m.currentY)/f.y));const o=Math.max(s,a);m.currentX=r,m.currentY=l;const d=m.width*t.scale,c=m.height*t.scale;m.minX=Math.min(u.slideWidth/2-d/2,0),m.maxX=-m.minX,m.minY=Math.min(u.slideHeight/2-c/2,0),m.maxY=-m.minY,m.currentX=Math.max(Math.min(m.currentX,m.maxX),m.minX),m.currentY=Math.max(Math.min(m.currentY,m.maxY),m.minY),u.$imageWrapEl.transition(o).transform(`translate3d(${m.currentX}px, ${m.currentY}px,0)`)}()})),s("doubleTap",((t,s)=>{!e.animating&&e.params.zoom.enabled&&e.zoom.enabled&&e.params.zoom.toggle&&$(s)})),s("transitionEnd",(()=>{e.zoom.enabled&&e.params.zoom.enabled&&E()})),s("slideChange",(()=>{e.zoom.enabled&&e.params.zoom.enabled&&e.params.cssMode&&E()})),Object.assign(e.zoom,{enable:O,disable:I,in:T,out:C,toggle:$})},function({swiper:e,extendParams:t,on:s,emit:a}){t({lazy:{checkInView:!1,enabled:!1,loadPrevNext:!1,loadPrevNextAmount:1,loadOnTransitionStart:!1,scrollingElement:"",elementClass:"swiper-lazy",loadingClass:"swiper-lazy-loading",loadedClass:"swiper-lazy-loaded",preloaderClass:"swiper-lazy-preloader"}}),e.lazy={};let i=!1,n=!1;function l(t,s=!0){const i=e.params.lazy;if(void 0===t)return;if(0===e.slides.length)return;const r=e.virtual&&e.params.virtual.enabled?e.$wrapperEl.children(`.${e.params.slideClass}[data-swiper-slide-index="${t}"]`):e.slides.eq(t),n=r.find(`.${i.elementClass}:not(.${i.loadedClass}):not(.${i.loadingClass})`);!r.hasClass(i.elementClass)||r.hasClass(i.loadedClass)||r.hasClass(i.loadingClass)||n.push(r[0]),0!==n.length&&n.each((t=>{const n=d(t);n.addClass(i.loadingClass);const o=n.attr("data-background"),c=n.attr("data-src"),p=n.attr("data-srcset"),u=n.attr("data-sizes"),h=n.parent("picture");e.loadImage(n[0],c||o,p,u,!1,(()=>{if(null!=e&&e&&(!e||e.params)&&!e.destroyed){if(o?(n.css("background-image",`url("${o}")`),n.removeAttr("data-background")):(p&&(n.attr("srcset",p),n.removeAttr("data-srcset")),u&&(n.attr("sizes",u),n.removeAttr("data-sizes")),h.length&&h.children("source").each((e=>{const t=d(e);t.attr("data-srcset")&&(t.attr("srcset",t.attr("data-srcset")),t.removeAttr("data-srcset"))})),c&&(n.attr("src",c),n.removeAttr("data-src"))),n.addClass(i.loadedClass).removeClass(i.loadingClass),r.find(`.${i.preloaderClass}`).remove(),e.params.loop&&s){const t=r.attr("data-swiper-slide-index");if(r.hasClass(e.params.slideDuplicateClass)){l(e.$wrapperEl.children(`[data-swiper-slide-index="${t}"]:not(.${e.params.slideDuplicateClass})`).index(),!1)}else{l(e.$wrapperEl.children(`.${e.params.slideDuplicateClass}[data-swiper-slide-index="${t}"]`).index(),!1)}}a("lazyImageReady",r[0],n[0]),e.params.autoHeight&&e.updateAutoHeight()}})),a("lazyImageLoad",r[0],n[0])}))}function o(){const{$wrapperEl:t,params:s,slides:a,activeIndex:i}=e,r=e.virtual&&s.virtual.enabled,o=s.lazy;let c=s.slidesPerView;function p(e){if(r){if(t.children(`.${s.slideClass}[data-swiper-slide-index="${e}"]`).length)return!0}else if(a[e])return!0;return!1}function u(e){return r?d(e).attr("data-swiper-slide-index"):d(e).index()}if("auto"===c&&(c=0),n||(n=!0),e.params.watchSlidesProgress)t.children(`.${s.slideVisibleClass}`).each((e=>{l(r?d(e).attr("data-swiper-slide-index"):d(e).index())}));else if(c>1)for(let e=i;e<i+c;e+=1)p(e)&&l(e);else l(i);if(o.loadPrevNext)if(c>1||o.loadPrevNextAmount&&o.loadPrevNextAmount>1){const e=o.loadPrevNextAmount,t=c,s=Math.min(i+t+Math.max(e,t),a.length),r=Math.max(i-Math.max(t,e),0);for(let e=i+c;e<s;e+=1)p(e)&&l(e);for(let e=r;e<i;e+=1)p(e)&&l(e)}else{const e=t.children(`.${s.slideNextClass}`);e.length>0&&l(u(e));const a=t.children(`.${s.slidePrevClass}`);a.length>0&&l(u(a))}}function c(){const t=r();if(!e||e.destroyed)return;const s=e.params.lazy.scrollingElement?d(e.params.lazy.scrollingElement):d(t),a=s[0]===t,n=a?t.innerWidth:s[0].offsetWidth,l=a?t.innerHeight:s[0].offsetHeight,p=e.$el.offset(),{rtlTranslate:u}=e;let h=!1;u&&(p.left-=e.$el[0].scrollLeft);const m=[[p.left,p.top],[p.left+e.width,p.top],[p.left,p.top+e.height],[p.left+e.width,p.top+e.height]];for(let e=0;e<m.length;e+=1){const t=m[e];if(t[0]>=0&&t[0]<=n&&t[1]>=0&&t[1]<=l){if(0===t[0]&&0===t[1])continue;h=!0}}const f=!("touchstart"!==e.touchEvents.start||!e.support.passiveListener||!e.params.passiveListeners)&&{passive:!0,capture:!1};h?(o(),s.off("scroll",c,f)):i||(i=!0,s.on("scroll",c,f))}s("beforeInit",(()=>{e.params.lazy.enabled&&e.params.preloadImages&&(e.params.preloadImages=!1)})),s("init",(()=>{e.params.lazy.enabled&&(e.params.lazy.checkInView?c():o())})),s("scroll",(()=>{e.params.freeMode&&e.params.freeMode.enabled&&!e.params.freeMode.sticky&&o()})),s("scrollbarDragMove resize _freeModeNoMomentumRelease",(()=>{e.params.lazy.enabled&&(e.params.lazy.checkInView?c():o())})),s("transitionStart",(()=>{e.params.lazy.enabled&&(e.params.lazy.loadOnTransitionStart||!e.params.lazy.loadOnTransitionStart&&!n)&&(e.params.lazy.checkInView?c():o())})),s("transitionEnd",(()=>{e.params.lazy.enabled&&!e.params.lazy.loadOnTransitionStart&&(e.params.lazy.checkInView?c():o())})),s("slideChange",(()=>{const{lazy:t,cssMode:s,watchSlidesProgress:a,touchReleaseOnEdges:i,resistanceRatio:r}=e.params;t.enabled&&(s||a&&(i||0===r))&&o()})),Object.assign(e.lazy,{load:o,loadInSlide:l})},function({swiper:e,extendParams:t,on:s}){function a(e,t){const s=function(){let e,t,s;return(a,i)=>{for(t=-1,e=a.length;e-t>1;)s=e+t>>1,a[s]<=i?t=s:e=s;return e}}();let a,i;return this.x=e,this.y=t,this.lastIndex=e.length-1,this.interpolate=function(e){return e?(i=s(this.x,e),a=i-1,(e-this.x[a])*(this.y[i]-this.y[a])/(this.x[i]-this.x[a])+this.y[a]):0},this}function i(){e.controller.control&&e.controller.spline&&(e.controller.spline=void 0,delete e.controller.spline)}t({controller:{control:void 0,inverse:!1,by:"slide"}}),e.controller={control:void 0},s("beforeInit",(()=>{e.controller.control=e.params.controller.control})),s("update",(()=>{i()})),s("resize",(()=>{i()})),s("observerUpdate",(()=>{i()})),s("setTranslate",((t,s,a)=>{e.controller.control&&e.controller.setTranslate(s,a)})),s("setTransition",((t,s,a)=>{e.controller.control&&e.controller.setTransition(s,a)})),Object.assign(e.controller,{setTranslate:function(t,s){const i=e.controller.control;let r,n;const l=e.constructor;function o(t){const s=e.rtlTranslate?-e.translate:e.translate;"slide"===e.params.controller.by&&(!function(t){e.controller.spline||(e.controller.spline=e.params.loop?new a(e.slidesGrid,t.slidesGrid):new a(e.snapGrid,t.snapGrid))}(t),n=-e.controller.spline.interpolate(-s)),n&&"container"!==e.params.controller.by||(r=(t.maxTranslate()-t.minTranslate())/(e.maxTranslate()-e.minTranslate()),n=(s-e.minTranslate())*r+t.minTranslate()),e.params.controller.inverse&&(n=t.maxTranslate()-n),t.updateProgress(n),t.setTranslate(n,e),t.updateActiveIndex(),t.updateSlidesClasses()}if(Array.isArray(i))for(let e=0;e<i.length;e+=1)i[e]!==s&&i[e]instanceof l&&o(i[e]);else i instanceof l&&s!==i&&o(i)},setTransition:function(t,s){const a=e.constructor,i=e.controller.control;let r;function n(s){s.setTransition(t,e),0!==t&&(s.transitionStart(),s.params.autoHeight&&p((()=>{s.updateAutoHeight()})),s.$wrapperEl.transitionEnd((()=>{i&&(s.params.loop&&"slide"===e.params.controller.by&&s.loopFix(),s.transitionEnd())})))}if(Array.isArray(i))for(r=0;r<i.length;r+=1)i[r]!==s&&i[r]instanceof a&&n(i[r]);else i instanceof a&&s!==i&&n(i)}})},function({swiper:e,extendParams:t,on:s}){t({a11y:{enabled:!0,notificationClass:"swiper-notification",prevSlideMessage:"Previous slide",nextSlideMessage:"Next slide",firstSlideMessage:"This is the first slide",lastSlideMessage:"This is the last slide",paginationBulletMessage:"Go to slide {{index}}",slideLabelMessage:"{{index}} / {{slidesLength}}",containerMessage:null,containerRoleDescriptionMessage:null,itemRoleDescriptionMessage:null,slideRole:"group"}});let a=null;function i(e){const t=a;0!==t.length&&(t.html(""),t.html(e))}function r(e){e.attr("tabIndex","0")}function n(e){e.attr("tabIndex","-1")}function l(e,t){e.attr("role",t)}function o(e,t){e.attr("aria-roledescription",t)}function c(e,t){e.attr("aria-label",t)}function p(e){e.attr("aria-disabled",!0)}function u(e){e.attr("aria-disabled",!1)}function h(t){if(13!==t.keyCode&&32!==t.keyCode)return;const s=e.params.a11y,a=d(t.target);e.navigation&&e.navigation.$nextEl&&a.is(e.navigation.$nextEl)&&(e.isEnd&&!e.params.loop||e.slideNext(),e.isEnd?i(s.lastSlideMessage):i(s.nextSlideMessage)),e.navigation&&e.navigation.$prevEl&&a.is(e.navigation.$prevEl)&&(e.isBeginning&&!e.params.loop||e.slidePrev(),e.isBeginning?i(s.firstSlideMessage):i(s.prevSlideMessage)),e.pagination&&a.is(W(e.params.pagination.bulletClass))&&a[0].click()}function m(){if(e.params.loop||!e.navigation)return;const{$nextEl:t,$prevEl:s}=e.navigation;s&&s.length>0&&(e.isBeginning?(p(s),n(s)):(u(s),r(s))),t&&t.length>0&&(e.isEnd?(p(t),n(t)):(u(t),r(t)))}function f(){return e.pagination&&e.params.pagination.clickable&&e.pagination.bullets&&e.pagination.bullets.length}const g=(e,t,s)=>{r(e),"BUTTON"!==e[0].tagName&&(l(e,"button"),e.on("keydown",h)),c(e,s),function(e,t){e.attr("aria-controls",t)}(e,t)};function v(){const t=e.params.a11y;e.$el.append(a);const s=e.$el;t.containerRoleDescriptionMessage&&o(s,t.containerRoleDescriptionMessage),t.containerMessage&&c(s,t.containerMessage);const i=e.$wrapperEl,r=i.attr("id")||`swiper-wrapper-${function(e=16){return"x".repeat(e).replace(/x/g,(()=>Math.round(16*Math.random()).toString(16)))}(16)}`,n=e.params.autoplay&&e.params.autoplay.enabled?"off":"polite";var p;p=r,i.attr("id",p),function(e,t){e.attr("aria-live",t)}(i,n),t.itemRoleDescriptionMessage&&o(d(e.slides),t.itemRoleDescriptionMessage),l(d(e.slides),t.slideRole);const u=e.params.loop?e.slides.filter((t=>!t.classList.contains(e.params.slideDuplicateClass))).length:e.slides.length;let m,v;e.slides.each(((s,a)=>{const i=d(s),r=e.params.loop?parseInt(i.attr("data-swiper-slide-index"),10):a;c(i,t.slideLabelMessage.replace(/\{\{index\}\}/,r+1).replace(/\{\{slidesLength\}\}/,u))})),e.navigation&&e.navigation.$nextEl&&(m=e.navigation.$nextEl),e.navigation&&e.navigation.$prevEl&&(v=e.navigation.$prevEl),m&&m.length&&g(m,r,t.nextSlideMessage),v&&v.length&&g(v,r,t.prevSlideMessage),f()&&e.pagination.$el.on("keydown",W(e.params.pagination.bulletClass),h)}s("beforeInit",(()=>{a=d(`<span class="${e.params.a11y.notificationClass}" aria-live="assertive" aria-atomic="true"></span>`)})),s("afterInit",(()=>{e.params.a11y.enabled&&(v(),m())})),s("toEdge",(()=>{e.params.a11y.enabled&&m()})),s("fromEdge",(()=>{e.params.a11y.enabled&&m()})),s("paginationUpdate",(()=>{e.params.a11y.enabled&&function(){const t=e.params.a11y;f()&&e.pagination.bullets.each((s=>{const a=d(s);r(a),e.params.pagination.renderBullet||(l(a,"button"),c(a,t.paginationBulletMessage.replace(/\{\{index\}\}/,a.index()+1)))}))}()})),s("destroy",(()=>{e.params.a11y.enabled&&function(){let t,s;a&&a.length>0&&a.remove(),e.navigation&&e.navigation.$nextEl&&(t=e.navigation.$nextEl),e.navigation&&e.navigation.$prevEl&&(s=e.navigation.$prevEl),t&&t.off("keydown",h),s&&s.off("keydown",h),f()&&e.pagination.$el.off("keydown",W(e.params.pagination.bulletClass),h)}()}))},function({swiper:e,extendParams:t,on:s}){t({history:{enabled:!1,root:"",replaceState:!1,key:"slides"}});let a=!1,i={};const n=e=>e.toString().replace(/\s+/g,"-").replace(/[^\w-]+/g,"").replace(/--+/g,"-").replace(/^-+/,"").replace(/-+$/,""),l=e=>{const t=r();let s;s=e?new URL(e):t.location;const a=s.pathname.slice(1).split("/").filter((e=>""!==e)),i=a.length;return{key:a[i-2],value:a[i-1]}},o=(t,s)=>{const i=r();if(!a||!e.params.history.enabled)return;let l;l=e.params.url?new URL(e.params.url):i.location;const o=e.slides.eq(s);let d=n(o.attr("data-history"));if(e.params.history.root.length>0){let s=e.params.history.root;"/"===s[s.length-1]&&(s=s.slice(0,s.length-1)),d=`${s}/${t}/${d}`}else l.pathname.includes(t)||(d=`${t}/${d}`);const c=i.history.state;c&&c.value===d||(e.params.history.replaceState?i.history.replaceState({value:d},null,d):i.history.pushState({value:d},null,d))},d=(t,s,a)=>{if(s)for(let i=0,r=e.slides.length;i<r;i+=1){const r=e.slides.eq(i);if(n(r.attr("data-history"))===s&&!r.hasClass(e.params.slideDuplicateClass)){const s=r.index();e.slideTo(s,t,a)}}else e.slideTo(0,t,a)},c=()=>{i=l(e.params.url),d(e.params.speed,e.paths.value,!1)};s("init",(()=>{e.params.history.enabled&&(()=>{const t=r();if(e.params.history){if(!t.history||!t.history.pushState)return e.params.history.enabled=!1,void(e.params.hashNavigation.enabled=!0);a=!0,i=l(e.params.url),(i.key||i.value)&&(d(0,i.value,e.params.runCallbacksOnInit),e.params.history.replaceState||t.addEventListener("popstate",c))}})()})),s("destroy",(()=>{e.params.history.enabled&&(()=>{const t=r();e.params.history.replaceState||t.removeEventListener("popstate",c)})()})),s("transitionEnd _freeModeNoMomentumRelease",(()=>{a&&o(e.params.history.key,e.activeIndex)})),s("slideChange",(()=>{a&&e.params.cssMode&&o(e.params.history.key,e.activeIndex)}))},function({swiper:e,extendParams:t,emit:s,on:i}){let n=!1;const l=a(),o=r();t({hashNavigation:{enabled:!1,replaceState:!1,watchState:!1}});const c=()=>{s("hashChange");const t=l.location.hash.replace("#","");if(t!==e.slides.eq(e.activeIndex).attr("data-hash")){const s=e.$wrapperEl.children(`.${e.params.slideClass}[data-hash="${t}"]`).index();if(void 0===s)return;e.slideTo(s)}},p=()=>{if(n&&e.params.hashNavigation.enabled)if(e.params.hashNavigation.replaceState&&o.history&&o.history.replaceState)o.history.replaceState(null,null,`#${e.slides.eq(e.activeIndex).attr("data-hash")}`||""),s("hashSet");else{const t=e.slides.eq(e.activeIndex),a=t.attr("data-hash")||t.attr("data-history");l.location.hash=a||"",s("hashSet")}};i("init",(()=>{e.params.hashNavigation.enabled&&(()=>{if(!e.params.hashNavigation.enabled||e.params.history&&e.params.history.enabled)return;n=!0;const t=l.location.hash.replace("#","");if(t){const s=0;for(let a=0,i=e.slides.length;a<i;a+=1){const i=e.slides.eq(a);if((i.attr("data-hash")||i.attr("data-history"))===t&&!i.hasClass(e.params.slideDuplicateClass)){const t=i.index();e.slideTo(t,s,e.params.runCallbacksOnInit,!0)}}}e.params.hashNavigation.watchState&&d(o).on("hashchange",c)})()})),i("destroy",(()=>{e.params.hashNavigation.enabled&&e.params.hashNavigation.watchState&&d(o).off("hashchange",c)})),i("transitionEnd _freeModeNoMomentumRelease",(()=>{n&&p()})),i("slideChange",(()=>{n&&e.params.cssMode&&p()}))},function({swiper:e,extendParams:t,on:s,emit:i}){let r;function n(){const t=e.slides.eq(e.activeIndex);let s=e.params.autoplay.delay;t.attr("data-swiper-autoplay")&&(s=t.attr("data-swiper-autoplay")||e.params.autoplay.delay),clearTimeout(r),r=p((()=>{let t;e.params.autoplay.reverseDirection?e.params.loop?(e.loopFix(),t=e.slidePrev(e.params.speed,!0,!0),i("autoplay")):e.isBeginning?e.params.autoplay.stopOnLastSlide?o():(t=e.slideTo(e.slides.length-1,e.params.speed,!0,!0),i("autoplay")):(t=e.slidePrev(e.params.speed,!0,!0),i("autoplay")):e.params.loop?(e.loopFix(),t=e.slideNext(e.params.speed,!0,!0),i("autoplay")):e.isEnd?e.params.autoplay.stopOnLastSlide?o():(t=e.slideTo(0,e.params.speed,!0,!0),i("autoplay")):(t=e.slideNext(e.params.speed,!0,!0),i("autoplay")),(e.params.cssMode&&e.autoplay.running||!1===t)&&n()}),s)}function l(){return void 0===r&&(!e.autoplay.running&&(e.autoplay.running=!0,i("autoplayStart"),n(),!0))}function o(){return!!e.autoplay.running&&(void 0!==r&&(r&&(clearTimeout(r),r=void 0),e.autoplay.running=!1,i("autoplayStop"),!0))}function d(t){e.autoplay.running&&(e.autoplay.paused||(r&&clearTimeout(r),e.autoplay.paused=!0,0!==t&&e.params.autoplay.waitForTransition?["transitionend","webkitTransitionEnd"].forEach((t=>{e.$wrapperEl[0].addEventListener(t,u)})):(e.autoplay.paused=!1,n())))}function c(){const t=a();"hidden"===t.visibilityState&&e.autoplay.running&&d(),"visible"===t.visibilityState&&e.autoplay.paused&&(n(),e.autoplay.paused=!1)}function u(t){e&&!e.destroyed&&e.$wrapperEl&&t.target===e.$wrapperEl[0]&&(["transitionend","webkitTransitionEnd"].forEach((t=>{e.$wrapperEl[0].removeEventListener(t,u)})),e.autoplay.paused=!1,e.autoplay.running?n():o())}function h(){e.params.autoplay.disableOnInteraction?o():d(),["transitionend","webkitTransitionEnd"].forEach((t=>{e.$wrapperEl[0].removeEventListener(t,u)}))}function m(){e.params.autoplay.disableOnInteraction||(e.autoplay.paused=!1,n())}e.autoplay={running:!1,paused:!1},t({autoplay:{enabled:!1,delay:3e3,waitForTransition:!0,disableOnInteraction:!0,stopOnLastSlide:!1,reverseDirection:!1,pauseOnMouseEnter:!1}}),s("init",(()=>{if(e.params.autoplay.enabled){l();a().addEventListener("visibilitychange",c),e.params.autoplay.pauseOnMouseEnter&&(e.$el.on("mouseenter",h),e.$el.on("mouseleave",m))}})),s("beforeTransitionStart",((t,s,a)=>{e.autoplay.running&&(a||!e.params.autoplay.disableOnInteraction?e.autoplay.pause(s):o())})),s("sliderFirstMove",(()=>{e.autoplay.running&&(e.params.autoplay.disableOnInteraction?o():d())})),s("touchEnd",(()=>{e.params.cssMode&&e.autoplay.paused&&!e.params.autoplay.disableOnInteraction&&n()})),s("destroy",(()=>{e.$el.off("mouseenter",h),e.$el.off("mouseleave",m),e.autoplay.running&&o();a().removeEventListener("visibilitychange",c)})),Object.assign(e.autoplay,{pause:d,run:n,start:l,stop:o})},function({swiper:e,extendParams:t,on:s}){t({thumbs:{swiper:null,multipleActiveThumbs:!0,autoScrollOffset:0,slideThumbActiveClass:"swiper-slide-thumb-active",thumbsContainerClass:"swiper-thumbs"}});let a=!1,i=!1;function r(){const t=e.thumbs.swiper;if(!t)return;const s=t.clickedIndex,a=t.clickedSlide;if(a&&d(a).hasClass(e.params.thumbs.slideThumbActiveClass))return;if(null==s)return;let i;if(i=t.params.loop?parseInt(d(t.clickedSlide).attr("data-swiper-slide-index"),10):s,e.params.loop){let t=e.activeIndex;e.slides.eq(t).hasClass(e.params.slideDuplicateClass)&&(e.loopFix(),e._clientLeft=e.$wrapperEl[0].clientLeft,t=e.activeIndex);const s=e.slides.eq(t).prevAll(`[data-swiper-slide-index="${i}"]`).eq(0).index(),a=e.slides.eq(t).nextAll(`[data-swiper-slide-index="${i}"]`).eq(0).index();i=void 0===s?a:void 0===a?s:a-t<t-s?a:s}e.slideTo(i)}function n(){const{thumbs:t}=e.params;if(a)return!1;a=!0;const s=e.constructor;if(t.swiper instanceof s)e.thumbs.swiper=t.swiper,Object.assign(e.thumbs.swiper.originalParams,{watchSlidesProgress:!0,slideToClickedSlide:!1}),Object.assign(e.thumbs.swiper.params,{watchSlidesProgress:!0,slideToClickedSlide:!1});else if(m(t.swiper)){const a=Object.assign({},t.swiper);Object.assign(a,{watchSlidesProgress:!0,slideToClickedSlide:!1}),e.thumbs.swiper=new s(a),i=!0}return e.thumbs.swiper.$el.addClass(e.params.thumbs.thumbsContainerClass),e.thumbs.swiper.on("tap",r),!0}function l(t){const s=e.thumbs.swiper;if(!s)return;const a="auto"===s.params.slidesPerView?s.slidesPerViewDynamic():s.params.slidesPerView,i=e.params.thumbs.autoScrollOffset,r=i&&!s.params.loop;if(e.realIndex!==s.realIndex||r){let n,l,o=s.activeIndex;if(s.params.loop){s.slides.eq(o).hasClass(s.params.slideDuplicateClass)&&(s.loopFix(),s._clientLeft=s.$wrapperEl[0].clientLeft,o=s.activeIndex);const t=s.slides.eq(o).prevAll(`[data-swiper-slide-index="${e.realIndex}"]`).eq(0).index(),a=s.slides.eq(o).nextAll(`[data-swiper-slide-index="${e.realIndex}"]`).eq(0).index();n=void 0===t?a:void 0===a?t:a-o==o-t?s.params.slidesPerGroup>1?a:o:a-o<o-t?a:t,l=e.activeIndex>e.previousIndex?"next":"prev"}else n=e.realIndex,l=n>e.previousIndex?"next":"prev";r&&(n+="next"===l?i:-1*i),s.visibleSlidesIndexes&&s.visibleSlidesIndexes.indexOf(n)<0&&(s.params.centeredSlides?n=n>o?n-Math.floor(a/2)+1:n+Math.floor(a/2)-1:n>o&&s.params.slidesPerGroup,s.slideTo(n,t?0:void 0))}let n=1;const l=e.params.thumbs.slideThumbActiveClass;if(e.params.slidesPerView>1&&!e.params.centeredSlides&&(n=e.params.slidesPerView),e.params.thumbs.multipleActiveThumbs||(n=1),n=Math.floor(n),s.slides.removeClass(l),s.params.loop||s.params.virtual&&s.params.virtual.enabled)for(let t=0;t<n;t+=1)s.$wrapperEl.children(`[data-swiper-slide-index="${e.realIndex+t}"]`).addClass(l);else for(let t=0;t<n;t+=1)s.slides.eq(e.realIndex+t).addClass(l)}e.thumbs={swiper:null},s("beforeInit",(()=>{const{thumbs:t}=e.params;t&&t.swiper&&(n(),l(!0))})),s("slideChange update resize observerUpdate",(()=>{e.thumbs.swiper&&l()})),s("setTransition",((t,s)=>{const a=e.thumbs.swiper;a&&a.setTransition(s)})),s("beforeDestroy",(()=>{const t=e.thumbs.swiper;t&&i&&t&&t.destroy()})),Object.assign(e.thumbs,{init:n,update:l})},function({swiper:e,extendParams:t,emit:s,once:a}){t({freeMode:{enabled:!1,momentum:!0,momentumRatio:1,momentumBounce:!0,momentumBounceRatio:1,momentumVelocityRatio:1,sticky:!1,minimumVelocity:.02}}),Object.assign(e,{freeMode:{onTouchMove:function(){const{touchEventsData:t,touches:s}=e;0===t.velocities.length&&t.velocities.push({position:s[e.isHorizontal()?"startX":"startY"],time:t.touchStartTime}),t.velocities.push({position:s[e.isHorizontal()?"currentX":"currentY"],time:u()})},onTouchEnd:function({currentPos:t}){const{params:i,$wrapperEl:r,rtlTranslate:n,snapGrid:l,touchEventsData:o}=e,d=u()-o.touchStartTime;if(t<-e.minTranslate())e.slideTo(e.activeIndex);else if(t>-e.maxTranslate())e.slides.length<l.length?e.slideTo(l.length-1):e.slideTo(e.slides.length-1);else{if(i.freeMode.momentum){if(o.velocities.length>1){const t=o.velocities.pop(),s=o.velocities.pop(),a=t.position-s.position,r=t.time-s.time;e.velocity=a/r,e.velocity/=2,Math.abs(e.velocity)<i.freeMode.minimumVelocity&&(e.velocity=0),(r>150||u()-t.time>300)&&(e.velocity=0)}else e.velocity=0;e.velocity*=i.freeMode.momentumVelocityRatio,o.velocities.length=0;let t=1e3*i.freeMode.momentumRatio;const d=e.velocity*t;let c=e.translate+d;n&&(c=-c);let p,h=!1;const m=20*Math.abs(e.velocity)*i.freeMode.momentumBounceRatio;let f;if(c<e.maxTranslate())i.freeMode.momentumBounce?(c+e.maxTranslate()<-m&&(c=e.maxTranslate()-m),p=e.maxTranslate(),h=!0,o.allowMomentumBounce=!0):c=e.maxTranslate(),i.loop&&i.centeredSlides&&(f=!0);else if(c>e.minTranslate())i.freeMode.momentumBounce?(c-e.minTranslate()>m&&(c=e.minTranslate()+m),p=e.minTranslate(),h=!0,o.allowMomentumBounce=!0):c=e.minTranslate(),i.loop&&i.centeredSlides&&(f=!0);else if(i.freeMode.sticky){let t;for(let e=0;e<l.length;e+=1)if(l[e]>-c){t=e;break}c=Math.abs(l[t]-c)<Math.abs(l[t-1]-c)||"next"===e.swipeDirection?l[t]:l[t-1],c=-c}if(f&&a("transitionEnd",(()=>{e.loopFix()})),0!==e.velocity){if(t=n?Math.abs((-c-e.translate)/e.velocity):Math.abs((c-e.translate)/e.velocity),i.freeMode.sticky){const s=Math.abs((n?-c:c)-e.translate),a=e.slidesSizesGrid[e.activeIndex];t=s<a?i.speed:s<2*a?1.5*i.speed:2.5*i.speed}}else if(i.freeMode.sticky)return void e.slideToClosest();i.freeMode.momentumBounce&&h?(e.updateProgress(p),e.setTransition(t),e.setTranslate(c),e.transitionStart(!0,e.swipeDirection),e.animating=!0,r.transitionEnd((()=>{e&&!e.destroyed&&o.allowMomentumBounce&&(s("momentumBounce"),e.setTransition(i.speed),setTimeout((()=>{e.setTranslate(p),r.transitionEnd((()=>{e&&!e.destroyed&&e.transitionEnd()}))}),0))}))):e.velocity?(s("_freeModeNoMomentumRelease"),e.updateProgress(c),e.setTransition(t),e.setTranslate(c),e.transitionStart(!0,e.swipeDirection),e.animating||(e.animating=!0,r.transitionEnd((()=>{e&&!e.destroyed&&e.transitionEnd()})))):e.updateProgress(c),e.updateActiveIndex(),e.updateSlidesClasses()}else{if(i.freeMode.sticky)return void e.slideToClosest();i.freeMode&&s("_freeModeNoMomentumRelease")}(!i.freeMode.momentum||d>=i.longSwipesMs)&&(e.updateProgress(),e.updateActiveIndex(),e.updateSlidesClasses())}}}})},function({swiper:e,extendParams:t}){let s,a,i;t({grid:{rows:1,fill:"column"}}),e.grid={initSlides:t=>{const{slidesPerView:r}=e.params,{rows:n,fill:l}=e.params.grid;a=s/n,i=Math.floor(t/n),s=Math.floor(t/n)===t/n?t:Math.ceil(t/n)*n,"auto"!==r&&"row"===l&&(s=Math.max(s,r*n))},updateSlide:(t,r,n,l)=>{const{slidesPerGroup:o,spaceBetween:d}=e.params,{rows:c,fill:p}=e.params.grid;let u,h,m;if("row"===p&&o>1){const e=Math.floor(t/(o*c)),a=t-c*o*e,i=0===e?o:Math.min(Math.ceil((n-e*c*o)/c),o);m=Math.floor(a/i),h=a-m*i+e*o,u=h+m*s/c,r.css({"-webkit-order":u,order:u})}else"column"===p?(h=Math.floor(t/c),m=t-h*c,(h>i||h===i&&m===c-1)&&(m+=1,m>=c&&(m=0,h+=1))):(m=Math.floor(t/a),h=t-m*a);r.css(l("margin-top"),0!==m?d&&`${d}px`:"")},updateWrapperSize:(t,a,i)=>{const{spaceBetween:r,centeredSlides:n,roundLengths:l}=e.params,{rows:o}=e.params.grid;if(e.virtualSize=(t+r)*s,e.virtualSize=Math.ceil(e.virtualSize/o)-r,e.$wrapperEl.css({[i("width")]:`${e.virtualSize+r}px`}),n){a.splice(0,a.length);const t=[];for(let s=0;s<a.length;s+=1){let i=a[s];l&&(i=Math.floor(i)),a[s]<e.virtualSize+a[0]&&t.push(i)}a.push(...t)}}}},function({swiper:e}){Object.assign(e,{appendSlide:R.bind(e),prependSlide:j.bind(e),addSlide:_.bind(e),removeSlide:V.bind(e),removeAllSlides:q.bind(e)})},function({swiper:e,extendParams:t,on:s}){t({fadeEffect:{crossFade:!1,transformEl:null}}),F({effect:"fade",swiper:e,on:s,setTranslate:()=>{const{slides:t}=e,s=e.params.fadeEffect;for(let a=0;a<t.length;a+=1){const t=e.slides.eq(a);let i=-t[0].swiperSlideOffset;e.params.virtualTranslate||(i-=e.translate);let r=0;e.isHorizontal()||(r=i,i=0);const n=e.params.fadeEffect.crossFade?Math.max(1-Math.abs(t[0].progress),0):1+Math.min(Math.max(t[0].progress,-1),0);U(s,t).css({opacity:n}).transform(`translate3d(${i}px, ${r}px, 0px)`)}},setTransition:t=>{const{transformEl:s}=e.params.fadeEffect;(s?e.slides.find(s):e.slides).transition(t),K({swiper:e,duration:t,transformEl:s,allSlides:!0})},overwriteParams:()=>({slidesPerView:1,slidesPerGroup:1,watchSlidesProgress:!0,spaceBetween:0,virtualTranslate:!e.params.cssMode})})},function({swiper:e,extendParams:t,on:s}){t({cubeEffect:{slideShadows:!0,shadow:!0,shadowOffset:20,shadowScale:.94}}),F({effect:"cube",swiper:e,on:s,setTranslate:()=>{const{$el:t,$wrapperEl:s,slides:a,width:i,height:r,rtlTranslate:n,size:l,browser:o}=e,c=e.params.cubeEffect,p=e.isHorizontal(),u=e.virtual&&e.params.virtual.enabled;let h,m=0;c.shadow&&(p?(h=s.find(".swiper-cube-shadow"),0===h.length&&(h=d('<div class="swiper-cube-shadow"></div>'),s.append(h)),h.css({height:`${i}px`})):(h=t.find(".swiper-cube-shadow"),0===h.length&&(h=d('<div class="swiper-cube-shadow"></div>'),t.append(h))));for(let e=0;e<a.length;e+=1){const t=a.eq(e);let s=e;u&&(s=parseInt(t.attr("data-swiper-slide-index"),10));let i=90*s,r=Math.floor(i/360);n&&(i=-i,r=Math.floor(-i/360));const o=Math.max(Math.min(t[0].progress,1),-1);let h=0,f=0,g=0;s%4==0?(h=4*-r*l,g=0):(s-1)%4==0?(h=0,g=4*-r*l):(s-2)%4==0?(h=l+4*r*l,g=l):(s-3)%4==0&&(h=-l,g=3*l+4*l*r),n&&(h=-h),p||(f=h,h=0);const v=`rotateX(${p?0:-i}deg) rotateY(${p?i:0}deg) translate3d(${h}px, ${f}px, ${g}px)`;if(o<=1&&o>-1&&(m=90*s+90*o,n&&(m=90*-s-90*o)),t.transform(v),c.slideShadows){let e=p?t.find(".swiper-slide-shadow-left"):t.find(".swiper-slide-shadow-top"),s=p?t.find(".swiper-slide-shadow-right"):t.find(".swiper-slide-shadow-bottom");0===e.length&&(e=d(`<div class="swiper-slide-shadow-${p?"left":"top"}"></div>`),t.append(e)),0===s.length&&(s=d(`<div class="swiper-slide-shadow-${p?"right":"bottom"}"></div>`),t.append(s)),e.length&&(e[0].style.opacity=Math.max(-o,0)),s.length&&(s[0].style.opacity=Math.max(o,0))}}if(s.css({"-webkit-transform-origin":`50% 50% -${l/2}px`,"transform-origin":`50% 50% -${l/2}px`}),c.shadow)if(p)h.transform(`translate3d(0px, ${i/2+c.shadowOffset}px, ${-i/2}px) rotateX(90deg) rotateZ(0deg) scale(${c.shadowScale})`);else{const e=Math.abs(m)-90*Math.floor(Math.abs(m)/90),t=1.5-(Math.sin(2*e*Math.PI/360)/2+Math.cos(2*e*Math.PI/360)/2),s=c.shadowScale,a=c.shadowScale/t,i=c.shadowOffset;h.transform(`scale3d(${s}, 1, ${a}) translate3d(0px, ${r/2+i}px, ${-r/2/a}px) rotateX(-90deg)`)}const f=o.isSafari||o.isWebView?-l/2:0;s.transform(`translate3d(0px,0,${f}px) rotateX(${e.isHorizontal()?0:m}deg) rotateY(${e.isHorizontal()?-m:0}deg)`)},setTransition:t=>{const{$el:s,slides:a}=e;a.transition(t).find(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").transition(t),e.params.cubeEffect.shadow&&!e.isHorizontal()&&s.find(".swiper-cube-shadow").transition(t)},perspective:()=>!0,overwriteParams:()=>({slidesPerView:1,slidesPerGroup:1,watchSlidesProgress:!0,resistanceRatio:0,spaceBetween:0,centeredSlides:!1,virtualTranslate:!0})})},function({swiper:e,extendParams:t,on:s}){t({flipEffect:{slideShadows:!0,limitRotation:!0,transformEl:null}}),F({effect:"flip",swiper:e,on:s,setTranslate:()=>{const{slides:t,rtlTranslate:s}=e,a=e.params.flipEffect;for(let i=0;i<t.length;i+=1){const r=t.eq(i);let n=r[0].progress;e.params.flipEffect.limitRotation&&(n=Math.max(Math.min(r[0].progress,1),-1));const l=r[0].swiperSlideOffset;let o=-180*n,d=0,c=e.params.cssMode?-l-e.translate:-l,p=0;if(e.isHorizontal()?s&&(o=-o):(p=c,c=0,d=-o,o=0),r[0].style.zIndex=-Math.abs(Math.round(n))+t.length,a.slideShadows){let t=e.isHorizontal()?r.find(".swiper-slide-shadow-left"):r.find(".swiper-slide-shadow-top"),s=e.isHorizontal()?r.find(".swiper-slide-shadow-right"):r.find(".swiper-slide-shadow-bottom");0===t.length&&(t=Z(a,r,e.isHorizontal()?"left":"top")),0===s.length&&(s=Z(a,r,e.isHorizontal()?"right":"bottom")),t.length&&(t[0].style.opacity=Math.max(-n,0)),s.length&&(s[0].style.opacity=Math.max(n,0))}const u=`translate3d(${c}px, ${p}px, 0px) rotateX(${d}deg) rotateY(${o}deg)`;U(a,r).transform(u)}},setTransition:t=>{const{transformEl:s}=e.params.flipEffect;(s?e.slides.find(s):e.slides).transition(t).find(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").transition(t),K({swiper:e,duration:t,transformEl:s})},perspective:()=>!0,overwriteParams:()=>({slidesPerView:1,slidesPerGroup:1,watchSlidesProgress:!0,spaceBetween:0,virtualTranslate:!e.params.cssMode})})},function({swiper:e,extendParams:t,on:s}){t({coverflowEffect:{rotate:50,stretch:0,depth:100,scale:1,modifier:1,slideShadows:!0,transformEl:null}}),F({effect:"coverflow",swiper:e,on:s,setTranslate:()=>{const{width:t,height:s,slides:a,slidesSizesGrid:i}=e,r=e.params.coverflowEffect,n=e.isHorizontal(),l=e.translate,o=n?t/2-l:s/2-l,d=n?r.rotate:-r.rotate,c=r.depth;for(let e=0,t=a.length;e<t;e+=1){const t=a.eq(e),s=i[e],l=(o-t[0].swiperSlideOffset-s/2)/s*r.modifier;let p=n?d*l:0,u=n?0:d*l,h=-c*Math.abs(l),m=r.stretch;"string"==typeof m&&-1!==m.indexOf("%")&&(m=parseFloat(r.stretch)/100*s);let f=n?0:m*l,g=n?m*l:0,v=1-(1-r.scale)*Math.abs(l);Math.abs(g)<.001&&(g=0),Math.abs(f)<.001&&(f=0),Math.abs(h)<.001&&(h=0),Math.abs(p)<.001&&(p=0),Math.abs(u)<.001&&(u=0),Math.abs(v)<.001&&(v=0);const w=`translate3d(${g}px,${f}px,${h}px)  rotateX(${u}deg) rotateY(${p}deg) scale(${v})`;if(U(r,t).transform(w),t[0].style.zIndex=1-Math.abs(Math.round(l)),r.slideShadows){let e=n?t.find(".swiper-slide-shadow-left"):t.find(".swiper-slide-shadow-top"),s=n?t.find(".swiper-slide-shadow-right"):t.find(".swiper-slide-shadow-bottom");0===e.length&&(e=Z(r,t,n?"left":"top")),0===s.length&&(s=Z(r,t,n?"right":"bottom")),e.length&&(e[0].style.opacity=l>0?l:0),s.length&&(s[0].style.opacity=-l>0?-l:0)}}},setTransition:t=>{const{transformEl:s}=e.params.coverflowEffect;(s?e.slides.find(s):e.slides).transition(t).find(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").transition(t)},perspective:()=>!0,overwriteParams:()=>({watchSlidesProgress:!0})})},function({swiper:e,extendParams:t,on:s}){t({creativeEffect:{transformEl:null,limitProgress:1,shadowPerProgress:!1,progressMultiplier:1,perspective:!0,prev:{translate:[0,0,0],rotate:[0,0,0],opacity:1,scale:1},next:{translate:[0,0,0],rotate:[0,0,0],opacity:1,scale:1}}});const a=e=>"string"==typeof e?e:`${e}px`;F({effect:"creative",swiper:e,on:s,setTranslate:()=>{const{slides:t}=e,s=e.params.creativeEffect,{progressMultiplier:i}=s;for(let r=0;r<t.length;r+=1){const n=t.eq(r),l=n[0].progress,o=Math.min(Math.max(n[0].progress,-s.limitProgress),s.limitProgress),d=n[0].swiperSlideOffset,c=[e.params.cssMode?-d-e.translate:-d,0,0],p=[0,0,0];let u=!1;e.isHorizontal()||(c[1]=c[0],c[0]=0);let h={translate:[0,0,0],rotate:[0,0,0],scale:1,opacity:1};o<0?(h=s.next,u=!0):o>0&&(h=s.prev,u=!0),c.forEach(((e,t)=>{c[t]=`calc(${e}px + (${a(h.translate[t])} * ${Math.abs(o*i)}))`})),p.forEach(((e,t)=>{p[t]=h.rotate[t]*Math.abs(o*i)})),n[0].style.zIndex=-Math.abs(Math.round(l))+t.length;const m=c.join(", "),f=`rotateX(${p[0]}deg) rotateY(${p[1]}deg) rotateZ(${p[2]}deg)`,g=o<0?`scale(${1+(1-h.scale)*o*i})`:`scale(${1-(1-h.scale)*o*i})`,v=o<0?1+(1-h.opacity)*o*i:1-(1-h.opacity)*o*i,w=`translate3d(${m}) ${f} ${g}`;if(u&&h.shadow||!u){let e=n.children(".swiper-slide-shadow");if(0===e.length&&h.shadow&&(e=Z(s,n)),e.length){const t=s.shadowPerProgress?o*(1/s.limitProgress):o;e[0].style.opacity=Math.min(Math.max(Math.abs(t),0),1)}}const b=U(s,n);b.transform(w).css({opacity:v}),h.origin&&b.css("transform-origin",h.origin)}},setTransition:t=>{const{transformEl:s}=e.params.creativeEffect;(s?e.slides.find(s):e.slides).transition(t).find(".swiper-slide-shadow").transition(t),K({swiper:e,duration:t,transformEl:s,allSlides:!0})},perspective:()=>e.params.creativeEffect.perspective,overwriteParams:()=>({watchSlidesProgress:!0,virtualTranslate:!e.params.cssMode})})},function({swiper:e,extendParams:t,on:s}){t({cardsEffect:{slideShadows:!0,transformEl:null}}),F({effect:"cards",swiper:e,on:s,setTranslate:()=>{const{slides:t,activeIndex:s}=e,a=e.params.cardsEffect,{startTranslate:i,isTouched:r}=e.touchEventsData,n=e.translate;for(let l=0;l<t.length;l+=1){const o=t.eq(l),d=o[0].progress,c=Math.min(Math.max(d,-4),4);let p=o[0].swiperSlideOffset;e.params.centeredSlides&&!e.params.cssMode&&e.$wrapperEl.transform(`translateX(${e.minTranslate()}px)`),e.params.centeredSlides&&e.params.cssMode&&(p-=t[0].swiperSlideOffset);let u=e.params.cssMode?-p-e.translate:-p,h=0;const m=-100*Math.abs(c);let f=1,g=-2*c,v=8-.75*Math.abs(c);const w=(l===s||l===s-1)&&c>0&&c<1&&(r||e.params.cssMode)&&n<i,b=(l===s||l===s+1)&&c<0&&c>-1&&(r||e.params.cssMode)&&n>i;if(w||b){const e=(1-Math.abs((Math.abs(c)-.5)/.5))**.5;g+=-28*c*e,f+=-.5*e,v+=96*e,h=-25*e*Math.abs(c)+"%"}if(u=c<0?`calc(${u}px + (${v*Math.abs(c)}%))`:c>0?`calc(${u}px + (-${v*Math.abs(c)}%))`:`${u}px`,!e.isHorizontal()){const e=h;h=u,u=e}const x=`\n        translate3d(${u}, ${h}, ${m}px)\n        rotateZ(${g}deg)\n        scale(${c<0?""+(1+(1-f)*c):""+(1-(1-f)*c)})\n      `;if(a.slideShadows){let e=o.find(".swiper-slide-shadow");0===e.length&&(e=Z(a,o)),e.length&&(e[0].style.opacity=Math.min(Math.max((Math.abs(c)-.5)/.5,0),1))}o[0].style.zIndex=-Math.abs(Math.round(d))+t.length;U(a,o).transform(x)}},setTransition:t=>{const{transformEl:s}=e.params.cardsEffect;(s?e.slides.find(s):e.slides).transition(t).find(".swiper-slide-shadow").transition(t),K({swiper:e,duration:t,transformEl:s})},perspective:()=>!0,overwriteParams:()=>({watchSlidesProgress:!0,virtualTranslate:!e.params.cssMode})})}];return H.use(J),H}));
+//# sourceMappingURL=swiper-bundle.min.js.map
\ No newline at end of file
diff --git a/public/js/vendor/vanillajs-datepicker/datepicker-full.min.js b/public/js/vendor/vanillajs-datepicker/datepicker-full.min.js
new file mode 100644
index 0000000..9b689b5
--- /dev/null
+++ b/public/js/vendor/vanillajs-datepicker/datepicker-full.min.js
@@ -0,0 +1 @@
+!function(){"use strict";function e(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function t(e){return e[e.length-1]}function i(e,...t){return t.forEach(t=>{e.includes(t)||e.push(t)}),e}function s(e,t){return e?e.split(t):[]}function a(e,t,i){return(void 0===t||e>=t)&&(void 0===i||e<=i)}function n(e,t,i){return e<t?t:e>i?i:e}function r(e,t,i={},s=0,a=""){a+=`<${Object.keys(i).reduce((e,t)=>{let a=i[t];return"function"==typeof a&&(a=a(s)),`${e} ${t}="${a}"`},e)}></${e}>`;const n=s+1;return n<t?r(e,t,i,n,a):a}function d(e){return e.replace(/>\s+/g,">").replace(/\s+</,"<")}function o(e){return new Date(e).setHours(0,0,0,0)}function c(){return(new Date).setHours(0,0,0,0)}function l(...e){switch(e.length){case 0:return c();case 1:return o(e[0])}const t=new Date(0);return t.setFullYear(...e),t.setHours(0,0,0,0)}function h(e,t){const i=new Date(e);return i.setDate(i.getDate()+t)}function u(e,t){const i=new Date(e),s=i.getMonth()+t;let a=s%12;a<0&&(a+=12);const n=i.setMonth(s);return i.getMonth()!==a?i.setDate(0):n}function f(e,t){const i=new Date(e),s=i.getMonth(),a=i.setFullYear(i.getFullYear()+t);return 1===s&&2===i.getMonth()?i.setDate(0):a}function p(e,t){return(e-t+7)%7}function g(e,t,i=0){const s=new Date(e).getDay();return h(e,p(t,i)-p(s,i))}function m(e,t){const i=new Date(e).getFullYear();return Math.floor(i/t)*t}const w=/dd?|DD?|mm?|MM?|yy?(?:yy)?/,y=/[\s!-/:-@[-`{-~年月日]+/;let k={};const D={y:(e,t)=>new Date(e).setFullYear(parseInt(t,10)),m(e,t,i){const s=new Date(e);let a=parseInt(t,10)-1;if(isNaN(a)){if(!t)return NaN;const e=t.toLowerCase(),s=t=>t.toLowerCase().startsWith(e);if((a=i.monthsShort.findIndex(s))<0&&(a=i.months.findIndex(s)),a<0)return NaN}return s.setMonth(a),s.getMonth()!==function e(t){return t>-1?t%12:e(t+12)}(a)?s.setDate(0):s.getTime()},d:(e,t)=>new Date(e).setDate(parseInt(t,10))},v={d:e=>e.getDate(),dd:e=>b(e.getDate(),2),D:(e,t)=>t.daysShort[e.getDay()],DD:(e,t)=>t.days[e.getDay()],m:e=>e.getMonth()+1,mm:e=>b(e.getMonth()+1,2),M:(e,t)=>t.monthsShort[e.getMonth()],MM:(e,t)=>t.months[e.getMonth()],y:e=>e.getFullYear(),yy:e=>b(e.getFullYear(),2).slice(-2),yyyy:e=>b(e.getFullYear(),4)};function b(e,t){return e.toString().padStart(t,"0")}function x(e){if("string"!=typeof e)throw new Error("Invalid date format.");if(e in k)return k[e];const i=e.split(w),s=e.match(new RegExp(w,"g"));if(0===i.length||!s)throw new Error("Invalid date format.");const a=s.map(e=>v[e]),n=Object.keys(D).reduce((e,t)=>{return s.find(e=>"D"!==e[0]&&e[0].toLowerCase()===t)&&e.push(t),e},[]);return k[e]={parser(e,t){const i=e.split(y).reduce((e,t,i)=>{if(t.length>0&&s[i]){const a=s[i][0];"M"===a?e.m=t:"D"!==a&&(e[a]=t)}return e},{});return n.reduce((e,s)=>{const a=D[s](e,i[s],t);return isNaN(a)?e:a},c())},formatter:(e,s)=>a.reduce((t,a,n)=>t+`${i[n]}${a(e,s)}`,"")+t(i)}}function M(e,t,i){if(e instanceof Date||"number"==typeof e){const t=o(e);return isNaN(t)?void 0:t}if(e){if("today"===e)return c();if(t&&t.toValue){const s=t.toValue(e,t,i);return isNaN(s)?void 0:o(s)}return x(t).parser(e,i)}}function S(e,t,i){if(isNaN(e)||!e&&0!==e)return"";const s="number"==typeof e?new Date(e):e;return t.toDisplay?t.toDisplay(s,t,i):x(t).formatter(s,i)}const O=new WeakMap,{addEventListener:C,removeEventListener:E}=EventTarget.prototype;function F(e,t){let i=O.get(e);i||(i=[],O.set(e,i)),t.forEach(e=>{C.call(...e),i.push(e)})}function V(e){let t=O.get(e);t&&(t.forEach(e=>{E.call(...e)}),O.delete(e))}if(!Event.prototype.composedPath){const e=(t,i=[])=>{let s;return i.push(t),t.parentNode?s=t.parentNode:t.host?s=t.host:t.defaultView&&(s=t.defaultView),s?e(s,i):i};Event.prototype.composedPath=function(){return e(this.target)}}function N(e,t){const i="function"==typeof t?t:e=>e.matches(t);return function e(t,i,s,a=0){const n=t[a];return i(n)?n:n!==s&&n.parentElement?e(t,i,s,a+1):void 0}(e.composedPath(),i,e.currentTarget)}const L={en:{days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",clear:"Clear",titleFormat:"MM y"}},B={autohide:!1,beforeShowDay:null,beforeShowDecade:null,beforeShowMonth:null,beforeShowYear:null,calendarWeeks:!1,clearBtn:!1,dateDelimiter:",",datesDisabled:[],daysOfWeekDisabled:[],daysOfWeekHighlighted:[],defaultViewDate:void 0,disableTouchKeyboard:!1,format:"mm/dd/yyyy",language:"en",maxDate:null,maxNumberOfDates:1,maxView:3,minDate:null,nextArrow:"»",orientation:"auto",pickLevel:0,prevArrow:"«",showDaysOfWeek:!0,showOnClick:!0,showOnFocus:!0,startView:0,title:"",todayBtn:!1,todayBtnMode:0,todayHighlight:!1,updateOnBlur:!0,weekStart:0},A=document.createRange();function Y(e){return A.createContextualFragment(e)}function W(e){"none"!==e.style.display&&(e.style.display&&(e.dataset.styleDisplay=e.style.display),e.style.display="none")}function _(e){"none"===e.style.display&&(e.dataset.styleDisplay?(e.style.display=e.dataset.styleDisplay,delete e.dataset.styleDisplay):e.style.display="")}function K(e){e.firstChild&&(e.removeChild(e.firstChild),K(e))}const{language:T,format:j,weekStart:H}=B;function $(e,t){return e.length<6&&t>=0&&t<7?i(e,t):e}function P(e){return(e+6)%7}function R(e,t,i,s){const a=M(e,t,i);return void 0!==a?a:s}function I(e,t,i=3){const s=parseInt(e,10);return s>=0&&s<=i?s:t}function q(t,s){const a=Object.assign({},t),n={},r=s.constructor.locales;let{format:d,language:o,locale:c,maxDate:h,maxView:u,minDate:f,pickLevel:p,startView:g,weekStart:m}=s.config||{};if(a.language){let e;if(a.language!==o&&(r[a.language]?e=a.language:void 0===r[e=a.language.split("-")[0]]&&(e=!1)),delete a.language,e){o=n.language=e;const t=c||r[T];c=Object.assign({format:j,weekStart:H},r[T]),o!==T&&Object.assign(c,r[o]),n.locale=c,d===t.format&&(d=n.format=c.format),m===t.weekStart&&(m=n.weekStart=c.weekStart,n.weekEnd=P(c.weekStart))}}if(a.format){const e="function"==typeof a.format.toDisplay,t="function"==typeof a.format.toValue,i=w.test(a.format);(e&&t||i)&&(d=n.format=a.format),delete a.format}let y=f,k=h;if(void 0!==a.minDate&&(y=null===a.minDate?l(0,0,1):R(a.minDate,d,c,y),delete a.minDate),void 0!==a.maxDate&&(k=null===a.maxDate?void 0:R(a.maxDate,d,c,k),delete a.maxDate),k<y?(f=n.minDate=k,h=n.maxDate=y):(f!==y&&(f=n.minDate=y),h!==k&&(h=n.maxDate=k)),a.datesDisabled&&(n.datesDisabled=a.datesDisabled.reduce((e,t)=>{const s=M(t,d,c);return void 0!==s?i(e,s):e},[]),delete a.datesDisabled),void 0!==a.defaultViewDate){const e=M(a.defaultViewDate,d,c);void 0!==e&&(n.defaultViewDate=e),delete a.defaultViewDate}if(void 0!==a.weekStart){const e=Number(a.weekStart)%7;isNaN(e)||(m=n.weekStart=e,n.weekEnd=P(e)),delete a.weekStart}if(a.daysOfWeekDisabled&&(n.daysOfWeekDisabled=a.daysOfWeekDisabled.reduce($,[]),delete a.daysOfWeekDisabled),a.daysOfWeekHighlighted&&(n.daysOfWeekHighlighted=a.daysOfWeekHighlighted.reduce($,[]),delete a.daysOfWeekHighlighted),void 0!==a.maxNumberOfDates){const e=parseInt(a.maxNumberOfDates,10);e>=0&&(n.maxNumberOfDates=e,n.multidate=1!==e),delete a.maxNumberOfDates}a.dateDelimiter&&(n.dateDelimiter=String(a.dateDelimiter),delete a.dateDelimiter);let D=p;void 0!==a.pickLevel&&(D=I(a.pickLevel,2),delete a.pickLevel),D!==p&&(p=n.pickLevel=D);let v=u;void 0!==a.maxView&&(v=I(a.maxView,u),delete a.maxView),(v=p>v?p:v)!==u&&(u=n.maxView=v);let b=g;if(void 0!==a.startView&&(b=I(a.startView,b),delete a.startView),b<p?b=p:b>u&&(b=u),b!==g&&(n.startView=b),a.prevArrow){const e=Y(a.prevArrow);e.childNodes.length>0&&(n.prevArrow=e.childNodes),delete a.prevArrow}if(a.nextArrow){const e=Y(a.nextArrow);e.childNodes.length>0&&(n.nextArrow=e.childNodes),delete a.nextArrow}if(void 0!==a.disableTouchKeyboard&&(n.disableTouchKeyboard="ontouchstart"in document&&!!a.disableTouchKeyboard,delete a.disableTouchKeyboard),a.orientation){const e=a.orientation.toLowerCase().split(/\s+/g);n.orientation={x:e.find(e=>"left"===e||"right"===e)||"auto",y:e.find(e=>"top"===e||"bottom"===e)||"auto"},delete a.orientation}if(void 0!==a.todayBtnMode){switch(a.todayBtnMode){case 0:case 1:n.todayBtnMode=a.todayBtnMode}delete a.todayBtnMode}return Object.keys(a).forEach(t=>{void 0!==a[t]&&e(B,t)&&(n[t]=a[t])}),n}const J=d('<div class="datepicker">\n  <div class="datepicker-picker">\n    <div class="datepicker-header">\n      <div class="datepicker-title"></div>\n      <div class="datepicker-controls">\n        <button type="button" class="%buttonClass% prev-btn"></button>\n        <button type="button" class="%buttonClass% view-switch"></button>\n        <button type="button" class="%buttonClass% next-btn"></button>\n      </div>\n    </div>\n    <div class="datepicker-main"></div>\n    <div class="datepicker-footer">\n      <div class="datepicker-controls">\n        <button type="button" class="%buttonClass% today-btn"></button>\n        <button type="button" class="%buttonClass% clear-btn"></button>\n      </div>\n    </div>\n  </div>\n</div>'),U=d(`<div class="days">\n  <div class="days-of-week">${r("span",7,{class:"dow"})}</div>\n  <div class="datepicker-grid">${r("span",42)}</div>\n</div>`),z=d(`<div class="calendar-weeks">\n  <div class="days-of-week"><span class="dow"></span></div>\n  <div class="weeks">${r("span",6,{class:"week"})}</div>\n</div>`);class X{constructor(e,t){Object.assign(this,t,{picker:e,element:Y('<div class="datepicker-view"></div>').firstChild,selected:[]}),this.init(this.picker.datepicker.config)}init(e){void 0!==e.pickLevel&&(this.isMinView=this.id===e.pickLevel),this.setOptions(e),this.updateFocus(),this.updateSelection()}performBeforeHook(e,t,s){let a=this.beforeShow(new Date(s));switch(typeof a){case"boolean":a={enabled:a};break;case"string":a={classes:a}}if(a){if(!1===a.enabled&&(e.classList.add("disabled"),i(this.disabled,t)),a.classes){const s=a.classes.split(/\s+/);e.classList.add(...s),s.includes("disabled")&&i(this.disabled,t)}a.content&&function(e,t){K(e),t instanceof DocumentFragment?e.appendChild(t):"string"==typeof t?e.appendChild(Y(t)):"function"==typeof t.forEach&&t.forEach(t=>{e.appendChild(t)})}(e,a.content)}}}class G extends X{constructor(e){super(e,{id:0,name:"days",cellClass:"day"})}init(e,t=!0){if(t){const e=Y(U).firstChild;this.dow=e.firstChild,this.grid=e.lastChild,this.element.appendChild(e)}super.init(e)}setOptions(t){let i;if(e(t,"minDate")&&(this.minDate=t.minDate),e(t,"maxDate")&&(this.maxDate=t.maxDate),t.datesDisabled&&(this.datesDisabled=t.datesDisabled),t.daysOfWeekDisabled&&(this.daysOfWeekDisabled=t.daysOfWeekDisabled,i=!0),t.daysOfWeekHighlighted&&(this.daysOfWeekHighlighted=t.daysOfWeekHighlighted),void 0!==t.todayHighlight&&(this.todayHighlight=t.todayHighlight),void 0!==t.weekStart&&(this.weekStart=t.weekStart,this.weekEnd=t.weekEnd,i=!0),t.locale){const e=this.locale=t.locale;this.dayNames=e.daysMin,this.switchLabelFormat=e.titleFormat,i=!0}if(void 0!==t.beforeShowDay&&(this.beforeShow="function"==typeof t.beforeShowDay?t.beforeShowDay:void 0),void 0!==t.calendarWeeks)if(t.calendarWeeks&&!this.calendarWeeks){const e=Y(z).firstChild;this.calendarWeeks={element:e,dow:e.firstChild,weeks:e.lastChild},this.element.insertBefore(e,this.element.firstChild)}else this.calendarWeeks&&!t.calendarWeeks&&(this.element.removeChild(this.calendarWeeks.element),this.calendarWeeks=null);void 0!==t.showDaysOfWeek&&(t.showDaysOfWeek?(_(this.dow),this.calendarWeeks&&_(this.calendarWeeks.dow)):(W(this.dow),this.calendarWeeks&&W(this.calendarWeeks.dow))),i&&Array.from(this.dow.children).forEach((e,t)=>{const i=(this.weekStart+t)%7;e.textContent=this.dayNames[i],e.className=this.daysOfWeekDisabled.includes(i)?"dow disabled":"dow"})}updateFocus(){const e=new Date(this.picker.viewDate),t=e.getFullYear(),i=e.getMonth(),s=l(t,i,1),a=g(s,this.weekStart,this.weekStart);this.first=s,this.last=l(t,i+1,0),this.start=a,this.focused=this.picker.viewDate}updateSelection(){const{dates:e,rangepicker:t}=this.picker.datepicker;this.selected=e,t&&(this.range=t.dates)}render(){this.today=this.todayHighlight?c():void 0,this.disabled=[...this.datesDisabled];const e=S(this.focused,this.switchLabelFormat,this.locale);if(this.picker.setViewSwitchLabel(e),this.picker.setPrevBtnDisabled(this.first<=this.minDate),this.picker.setNextBtnDisabled(this.last>=this.maxDate),this.calendarWeeks){const e=g(this.first,1,1);Array.from(this.calendarWeeks.weeks.children).forEach((t,i)=>{t.textContent=function(e){const t=g(e,4,1),i=g(new Date(t).setMonth(0,4),4,1);return Math.round((t-i)/6048e5)+1}(h(e,7*i))})}Array.from(this.grid.children).forEach((e,t)=>{const s=e.classList,a=h(this.start,t),n=new Date(a),r=n.getDay();if(e.className=`datepicker-cell ${this.cellClass}`,e.dataset.date=a,e.textContent=n.getDate(),a<this.first?s.add("prev"):a>this.last&&s.add("next"),this.today===a&&s.add("today"),(a<this.minDate||a>this.maxDate||this.disabled.includes(a))&&s.add("disabled"),this.daysOfWeekDisabled.includes(r)&&(s.add("disabled"),i(this.disabled,a)),this.daysOfWeekHighlighted.includes(r)&&s.add("highlighted"),this.range){const[e,t]=this.range;a>e&&a<t&&s.add("range"),a===e&&s.add("range-start"),a===t&&s.add("range-end")}this.selected.includes(a)&&s.add("selected"),a===this.focused&&s.add("focused"),this.beforeShow&&this.performBeforeHook(e,a,a)})}refresh(){const[e,t]=this.range||[];this.grid.querySelectorAll(".range, .range-start, .range-end, .selected, .focused").forEach(e=>{e.classList.remove("range","range-start","range-end","selected","focused")}),Array.from(this.grid.children).forEach(i=>{const s=Number(i.dataset.date),a=i.classList;s>e&&s<t&&a.add("range"),s===e&&a.add("range-start"),s===t&&a.add("range-end"),this.selected.includes(s)&&a.add("selected"),s===this.focused&&a.add("focused")})}refreshFocus(){const e=Math.round((this.focused-this.start)/864e5);this.grid.querySelectorAll(".focused").forEach(e=>{e.classList.remove("focused")}),this.grid.children[e].classList.add("focused")}}function Q(e,t){if(!e||!e[0]||!e[1])return;const[[i,s],[a,n]]=e;return i>t||a<t?void 0:[i===t?s:-1,a===t?n:12]}class Z extends X{constructor(e){super(e,{id:1,name:"months",cellClass:"month"})}init(e,t=!0){t&&(this.grid=this.element,this.element.classList.add("months","datepicker-grid"),this.grid.appendChild(Y(r("span",12,{"data-month":e=>e})))),super.init(e)}setOptions(t){if(t.locale&&(this.monthNames=t.locale.monthsShort),e(t,"minDate"))if(void 0===t.minDate)this.minYear=this.minMonth=this.minDate=void 0;else{const e=new Date(t.minDate);this.minYear=e.getFullYear(),this.minMonth=e.getMonth(),this.minDate=e.setDate(1)}if(e(t,"maxDate"))if(void 0===t.maxDate)this.maxYear=this.maxMonth=this.maxDate=void 0;else{const e=new Date(t.maxDate);this.maxYear=e.getFullYear(),this.maxMonth=e.getMonth(),this.maxDate=l(this.maxYear,this.maxMonth+1,0)}void 0!==t.beforeShowMonth&&(this.beforeShow="function"==typeof t.beforeShowMonth?t.beforeShowMonth:void 0)}updateFocus(){const e=new Date(this.picker.viewDate);this.year=e.getFullYear(),this.focused=e.getMonth()}updateSelection(){const{dates:e,rangepicker:t}=this.picker.datepicker;this.selected=e.reduce((e,t)=>{const s=new Date(t),a=s.getFullYear(),n=s.getMonth();return void 0===e[a]?e[a]=[n]:i(e[a],n),e},{}),t&&t.dates&&(this.range=t.dates.map(e=>{const t=new Date(e);return isNaN(t)?void 0:[t.getFullYear(),t.getMonth()]}))}render(){this.disabled=[],this.picker.setViewSwitchLabel(this.year),this.picker.setPrevBtnDisabled(this.year<=this.minYear),this.picker.setNextBtnDisabled(this.year>=this.maxYear);const e=this.selected[this.year]||[],t=this.year<this.minYear||this.year>this.maxYear,i=this.year===this.minYear,s=this.year===this.maxYear,a=Q(this.range,this.year);Array.from(this.grid.children).forEach((n,r)=>{const d=n.classList,o=l(this.year,r,1);if(n.className=`datepicker-cell ${this.cellClass}`,this.isMinView&&(n.dataset.date=o),n.textContent=this.monthNames[r],(t||i&&r<this.minMonth||s&&r>this.maxMonth)&&d.add("disabled"),a){const[e,t]=a;r>e&&r<t&&d.add("range"),r===e&&d.add("range-start"),r===t&&d.add("range-end")}e.includes(r)&&d.add("selected"),r===this.focused&&d.add("focused"),this.beforeShow&&this.performBeforeHook(n,r,o)})}refresh(){const e=this.selected[this.year]||[],[t,i]=Q(this.range,this.year)||[];this.grid.querySelectorAll(".range, .range-start, .range-end, .selected, .focused").forEach(e=>{e.classList.remove("range","range-start","range-end","selected","focused")}),Array.from(this.grid.children).forEach((s,a)=>{const n=s.classList;a>t&&a<i&&n.add("range"),a===t&&n.add("range-start"),a===i&&n.add("range-end"),e.includes(a)&&n.add("selected"),a===this.focused&&n.add("focused")})}refreshFocus(){this.grid.querySelectorAll(".focused").forEach(e=>{e.classList.remove("focused")}),this.grid.children[this.focused].classList.add("focused")}}class ee extends X{constructor(e,t){super(e,t)}init(e,t=!0){var i;t&&(this.navStep=10*this.step,this.beforeShowOption=`beforeShow${i=this.cellClass,[...i].reduce((e,t,i)=>e+=i?t:t.toUpperCase(),"")}`,this.grid=this.element,this.element.classList.add(this.name,"datepicker-grid"),this.grid.appendChild(Y(r("span",12)))),super.init(e)}setOptions(t){if(e(t,"minDate")&&(void 0===t.minDate?this.minYear=this.minDate=void 0:(this.minYear=m(t.minDate,this.step),this.minDate=l(this.minYear,0,1))),e(t,"maxDate")&&(void 0===t.maxDate?this.maxYear=this.maxDate=void 0:(this.maxYear=m(t.maxDate,this.step),this.maxDate=l(this.maxYear,11,31))),void 0!==t[this.beforeShowOption]){const e=t[this.beforeShowOption];this.beforeShow="function"==typeof e?e:void 0}}updateFocus(){const e=new Date(this.picker.viewDate),t=m(e,this.navStep),i=t+9*this.step;this.first=t,this.last=i,this.start=t-this.step,this.focused=m(e,this.step)}updateSelection(){const{dates:e,rangepicker:t}=this.picker.datepicker;this.selected=e.reduce((e,t)=>i(e,m(t,this.step)),[]),t&&t.dates&&(this.range=t.dates.map(e=>{if(void 0!==e)return m(e,this.step)}))}render(){this.disabled=[],this.picker.setViewSwitchLabel(`${this.first}-${this.last}`),this.picker.setPrevBtnDisabled(this.first<=this.minYear),this.picker.setNextBtnDisabled(this.last>=this.maxYear),Array.from(this.grid.children).forEach((e,t)=>{const i=e.classList,s=this.start+t*this.step,a=l(s,0,1);if(e.className=`datepicker-cell ${this.cellClass}`,this.isMinView&&(e.dataset.date=a),e.textContent=e.dataset.year=s,0===t?i.add("prev"):11===t&&i.add("next"),(s<this.minYear||s>this.maxYear)&&i.add("disabled"),this.range){const[e,t]=this.range;s>e&&s<t&&i.add("range"),s===e&&i.add("range-start"),s===t&&i.add("range-end")}this.selected.includes(s)&&i.add("selected"),s===this.focused&&i.add("focused"),this.beforeShow&&this.performBeforeHook(e,s,a)})}refresh(){const[e,t]=this.range||[];this.grid.querySelectorAll(".range, .range-start, .range-end, .selected, .focused").forEach(e=>{e.classList.remove("range","range-start","range-end","selected","focused")}),Array.from(this.grid.children).forEach(i=>{const s=Number(i.textContent),a=i.classList;s>e&&s<t&&a.add("range"),s===e&&a.add("range-start"),s===t&&a.add("range-end"),this.selected.includes(s)&&a.add("selected"),s===this.focused&&a.add("focused")})}refreshFocus(){const e=Math.round((this.focused-this.start)/this.step);this.grid.querySelectorAll(".focused").forEach(e=>{e.classList.remove("focused")}),this.grid.children[e].classList.add("focused")}}function te(e,t){const i={date:e.getDate(),viewDate:new Date(e.picker.viewDate),viewId:e.picker.currentView.id,datepicker:e};e.element.dispatchEvent(new CustomEvent(t,{detail:i}))}function ie(e,t){const{minDate:i,maxDate:s}=e.config,{currentView:a,viewDate:r}=e.picker;let d;switch(a.id){case 0:d=u(r,t);break;case 1:d=f(r,t);break;default:d=f(r,t*a.navStep)}d=n(d,i,s),e.picker.changeFocus(d).render()}function se(e){const t=e.picker.currentView.id;t!==e.config.maxView&&e.picker.changeView(t+1).render()}function ae(e){e.config.updateOnBlur?e.update({autohide:!0}):(e.refresh("input"),e.hide())}function ne(e,t){const i=e.picker,s=new Date(i.viewDate),a=i.currentView.id,n=1===a?u(s,t-s.getMonth()):f(s,t-s.getFullYear());i.changeFocus(n).changeView(a-1).render()}function re(t,i){if(void 0!==i.title&&(i.title?(t.controls.title.textContent=i.title,_(t.controls.title)):(t.controls.title.textContent="",W(t.controls.title))),i.prevArrow){const e=t.controls.prevBtn;K(e),i.prevArrow.forEach(t=>{e.appendChild(t.cloneNode(!0))})}if(i.nextArrow){const e=t.controls.nextBtn;K(e),i.nextArrow.forEach(t=>{e.appendChild(t.cloneNode(!0))})}if(i.locale&&(t.controls.todayBtn.textContent=i.locale.today,t.controls.clearBtn.textContent=i.locale.clear),void 0!==i.todayBtn&&(i.todayBtn?_(t.controls.todayBtn):W(t.controls.todayBtn)),e(i,"minDate")||e(i,"maxDate")){const{minDate:e,maxDate:i}=t.datepicker.config;t.controls.todayBtn.disabled=!a(c(),e,i)}void 0!==i.clearBtn&&(i.clearBtn?_(t.controls.clearBtn):W(t.controls.clearBtn))}function de(e){const{dates:i,config:s}=e;return n(i.length>0?t(i):s.defaultViewDate,s.minDate,s.maxDate)}function oe(e,t){const i=new Date(e.viewDate),s=new Date(t),{id:a,year:n,first:r,last:d}=e.currentView,o=s.getFullYear();switch(e.viewDate=t,o!==i.getFullYear()&&te(e.datepicker,"changeYear"),s.getMonth()!==i.getMonth()&&te(e.datepicker,"changeMonth"),a){case 0:return t<r||t>d;case 1:return o!==n;default:return o<r||o>d}}function ce(e){return window.getComputedStyle(e).direction}class le{constructor(e){this.datepicker=e;const t=J.replace(/%buttonClass%/g,e.config.buttonClass),i=this.element=Y(t).firstChild,[s,a,n]=i.firstChild.children,r=s.firstElementChild,[d,o,l]=s.lastElementChild.children,[h,u]=n.firstChild.children,f={title:r,prevBtn:d,viewSwitch:o,nextBtn:l,todayBtn:h,clearBtn:u};this.main=a,this.controls=f;const p=e.inline?"inline":"dropdown";i.classList.add(`datepicker-${p}`),re(this,e.config),this.viewDate=de(e),F(e,[[i,"click",function(e){e.inline||e.config.disableTouchKeyboard||e.inputField.focus()}.bind(null,e),{capture:!0}],[a,"click",function(e,t){const i=N(t,".datepicker-cell");if(!i||i.classList.contains("disabled"))return;const{id:s,isMinView:a}=e.picker.currentView;a?e.setDate(Number(i.dataset.date)):ne(e,1===s?Number(i.dataset.month):Number(i.dataset.year))}.bind(null,e)],[f.viewSwitch,"click",function(e){se(e)}.bind(null,e)],[f.prevBtn,"click",function(e){ie(e,-1)}.bind(null,e)],[f.nextBtn,"click",function(e){ie(e,1)}.bind(null,e)],[f.todayBtn,"click",function(e){const t=e.picker,i=c();if(1===e.config.todayBtnMode){if(e.config.autohide)return void e.setDate(i);e.setDate(i,{render:!1}),t.update()}t.viewDate!==i&&t.changeFocus(i),t.changeView(0).render()}.bind(null,e)],[f.clearBtn,"click",function(e){e.setDate({clear:!0})}.bind(null,e)]]),this.views=[new G(this),new Z(this),new ee(this,{id:2,name:"years",cellClass:"year",step:1}),new ee(this,{id:3,name:"decades",cellClass:"decade",step:10})],this.currentView=this.views[e.config.startView],this.currentView.render(),this.main.appendChild(this.currentView.element),e.config.container.appendChild(this.element)}setOptions(e){re(this,e),this.views.forEach(t=>{t.init(e,!1)}),this.currentView.render()}detach(){this.datepicker.config.container.removeChild(this.element)}show(){if(this.active)return;this.element.classList.add("active"),this.active=!0;const e=this.datepicker;if(!e.inline){const t=ce(e.inputField);t!==ce(e.config.container)?this.element.dir=t:this.element.dir&&this.element.removeAttribute("dir"),this.place(),e.config.disableTouchKeyboard&&e.inputField.blur()}te(e,"show")}hide(){this.active&&(this.datepicker.exitEditMode(),this.element.classList.remove("active"),this.active=!1,te(this.datepicker,"hide"))}place(){const{classList:e,style:t}=this.element,{config:i,inputField:s}=this.datepicker,a=i.container,{width:n,height:r}=this.element.getBoundingClientRect(),{left:d,top:o,width:c}=a.getBoundingClientRect(),{left:l,top:h,width:u,height:f}=s.getBoundingClientRect();let p,g,m,{x:w,y:y}=i.orientation;a===document.body?(p=window.scrollY,g=l+window.scrollX,m=h+p):(g=l-d,m=h-o+(p=a.scrollTop)),"auto"===w&&(g<0?(w="left",g=10):w=g+n>c?"right":"rtl"===ce(s)?"right":"left"),"right"===w&&(g-=n-u),"auto"===y&&(y=m-r<p?"bottom":"top"),"top"===y?m-=r:m+=f,e.remove("datepicker-orient-top","datepicker-orient-bottom","datepicker-orient-right","datepicker-orient-left"),e.add(`datepicker-orient-${y}`,`datepicker-orient-${w}`),t.top=m?`${m}px`:m,t.left=g?`${g}px`:g}setViewSwitchLabel(e){this.controls.viewSwitch.textContent=e}setPrevBtnDisabled(e){this.controls.prevBtn.disabled=e}setNextBtnDisabled(e){this.controls.nextBtn.disabled=e}changeView(e){const t=this.currentView,i=this.views[e];return i.id!==t.id&&(this.currentView=i,this._renderMethod="render",te(this.datepicker,"changeView"),this.main.replaceChild(i.element,t.element)),this}changeFocus(e){return this._renderMethod=oe(this,e)?"render":"refreshFocus",this.views.forEach(e=>{e.updateFocus()}),this}update(){const e=de(this.datepicker);return this._renderMethod=oe(this,e)?"render":"refresh",this.views.forEach(e=>{e.updateFocus(),e.updateSelection()}),this}render(e=!0){const t=e&&this._renderMethod||"render";delete this._renderMethod,this.currentView[t]()}}function he(e,t,i,s){const n=e.picker,r=n.currentView,d=r.step||1;let o,c,l=n.viewDate;switch(r.id){case 0:l=s?h(l,7*i):t.ctrlKey||t.metaKey?f(l,i):h(l,i),o=h,c=(e=>r.disabled.includes(e));break;case 1:l=u(l,s?4*i:i),o=u,c=(e=>{const t=new Date(e),{year:i,disabled:s}=r;return t.getFullYear()===i&&s.includes(t.getMonth())});break;default:l=f(l,i*(s?4:1)*d),o=f,c=(e=>r.disabled.includes(m(e,d)))}void 0!==(l=function e(t,i,s,n,r,d){if(a(t,r,d))return n(t)?e(i(t,s),i,s,n,r,d):t}(l,o,i<0?-d:d,c,r.minDate,r.maxDate))&&n.changeFocus(l).render()}function ue(e,t){return e.map(e=>S(e,t.format,t.locale)).join(t.dateDelimiter)}function fe(e,t,i=!1){const{config:s,dates:n,rangepicker:r}=e;if(0===t.length)return i?[]:void 0;const d=r&&e===r.datepickers[1];let o=t.reduce((e,t)=>{let i=M(t,s.format,s.locale);if(void 0===i)return e;if(s.pickLevel>0){const e=new Date(i);i=1===s.pickLevel?d?e.setMonth(e.getMonth()+1,0):e.setDate(1):d?e.setFullYear(e.getFullYear()+1,0,0):e.setMonth(0,1)}return!a(i,s.minDate,s.maxDate)||e.includes(i)||s.datesDisabled.includes(i)||s.daysOfWeekDisabled.includes(new Date(i).getDay())||e.push(i),e},[]);return 0!==o.length?(s.multidate&&!i&&(o=o.reduce((e,t)=>(n.includes(t)||e.push(t),e),n.filter(e=>!o.includes(e)))),s.maxNumberOfDates&&o.length>s.maxNumberOfDates?o.slice(-1*s.maxNumberOfDates):o):void 0}function pe(e,t=3,i=!0){const{config:s,picker:a,inputField:n}=e;if(2&t){const e=a.active?s.pickLevel:s.startView;a.update().changeView(e).render(i)}1&t&&n&&(n.value=ue(e.dates,s))}function ge(e,t,i){let{clear:s,render:a,autohide:n}=i;void 0===a&&(a=!0),a?void 0===n&&(n=e.config.autohide):n=!1;const r=fe(e,t,s);r&&(r.toString()!==e.dates.toString()?(e.dates=r,pe(e,a?3:1),te(e,"changeDate")):pe(e,1),n&&e.hide())}class me{constructor(e,t={},i){e.datepicker=this,this.element=e;const a=this.config=Object.assign({buttonClass:t.buttonClass&&String(t.buttonClass)||"button",container:document.body,defaultViewDate:c(),maxDate:void 0,minDate:void 0},q(B,this));this._options=t,Object.assign(a,q(t,this));const n=this.inline="INPUT"!==e.tagName;let r,d;if(n)a.container=e,d=s(e.dataset.date,a.dateDelimiter),delete e.dataset.date;else{const i=t.container?document.querySelector(t.container):null;i&&(a.container=i),(r=this.inputField=e).classList.add("datepicker-input"),d=s(r.value,a.dateDelimiter)}if(i){const e=i.inputs.indexOf(r),t=i.datepickers;if(e<0||e>1||!Array.isArray(t))throw Error("Invalid rangepicker object.");t[e]=this,Object.defineProperty(this,"rangepicker",{get:()=>i})}this.dates=[];const o=fe(this,d);o&&o.length>0&&(this.dates=o),r&&(r.value=ue(this.dates,a));const l=this.picker=new le(this);if(n)this.show();else{const e=function(e,t){const i=e.element;if(i!==document.activeElement)return;const s=e.picker.element;N(t,e=>e===i||e===s)||ae(e)}.bind(null,this);F(this,[[r,"keydown",function(e,t){if("Tab"===t.key)return void ae(e);const i=e.picker,{id:s,isMinView:a}=i.currentView;if(i.active)if(e.editMode)switch(t.key){case"Escape":i.hide();break;case"Enter":e.exitEditMode({update:!0,autohide:e.config.autohide});break;default:return}else switch(t.key){case"Escape":i.hide();break;case"ArrowLeft":if(t.ctrlKey||t.metaKey)ie(e,-1);else{if(t.shiftKey)return void e.enterEditMode();he(e,t,-1,!1)}break;case"ArrowRight":if(t.ctrlKey||t.metaKey)ie(e,1);else{if(t.shiftKey)return void e.enterEditMode();he(e,t,1,!1)}break;case"ArrowUp":if(t.ctrlKey||t.metaKey)se(e);else{if(t.shiftKey)return void e.enterEditMode();he(e,t,-1,!0)}break;case"ArrowDown":if(t.shiftKey&&!t.ctrlKey&&!t.metaKey)return void e.enterEditMode();he(e,t,1,!0);break;case"Enter":a?e.setDate(i.viewDate):i.changeView(s-1).render();break;case"Backspace":case"Delete":return void e.enterEditMode();default:return void(1!==t.key.length||t.ctrlKey||t.metaKey||e.enterEditMode())}else switch(t.key){case"ArrowDown":case"Escape":i.show();break;case"Enter":e.update();break;default:return}t.preventDefault(),t.stopPropagation()}.bind(null,this)],[r,"focus",function(e){e.config.showOnFocus&&!e._showing&&e.show()}.bind(null,this)],[r,"mousedown",function(e,t){const i=t.target;(e.picker.active||e.config.showOnClick)&&(i._active=i===document.activeElement,i._clicking=setTimeout(()=>{delete i._active,delete i._clicking},2e3))}.bind(null,this)],[r,"click",function(e,t){const i=t.target;i._clicking&&(clearTimeout(i._clicking),delete i._clicking,i._active&&e.enterEditMode(),delete i._active,e.config.showOnClick&&e.show())}.bind(null,this)],[r,"paste",function(e,t){t.clipboardData.types.includes("text/plain")&&e.enterEditMode()}.bind(null,this)],[document,"mousedown",e],[document,"touchstart",e],[window,"resize",l.place.bind(l)]])}}static formatDate(e,t,i){return S(e,t,i&&L[i]||L.en)}static parseDate(e,t,i){return M(e,t,i&&L[i]||L.en)}static get locales(){return L}get active(){return!(!this.picker||!this.picker.active)}get pickerElement(){return this.picker?this.picker.element:void 0}setOptions(e){const t=this.picker,i=q(e,this);Object.assign(this._options,e),Object.assign(this.config,i),t.setOptions(i),pe(this,3)}show(){if(this.inputField){if(this.inputField.disabled)return;this.inputField!==document.activeElement&&(this._showing=!0,this.inputField.focus(),delete this._showing)}this.picker.show()}hide(){this.inline||(this.picker.hide(),this.picker.update().changeView(this.config.startView).render())}destroy(){return this.hide(),V(this),this.picker.detach(),this.inline||this.inputField.classList.remove("datepicker-input"),delete this.element.datepicker,this}getDate(e){const t=e?t=>S(t,e,this.config.locale):e=>new Date(e);return this.config.multidate?this.dates.map(t):this.dates.length>0?t(this.dates[0]):void 0}setDate(...e){const i=[...e],s={},a=t(e);"object"!=typeof a||Array.isArray(a)||a instanceof Date||!a||Object.assign(s,i.pop()),ge(this,Array.isArray(i[0])?i[0]:i,s)}update(e){if(this.inline)return;const t={clear:!0,autohide:!(!e||!e.autohide)};ge(this,s(this.inputField.value,this.config.dateDelimiter),t)}refresh(e,t=!1){let i;e&&"string"!=typeof e&&(t=e,e=void 0),pe(this,i="picker"===e?2:"input"===e?1:3,!t)}enterEditMode(){this.inline||!this.picker.active||this.editMode||(this.editMode=!0,this.inputField.classList.add("in-edit"))}exitEditMode(e){if(this.inline||!this.editMode)return;const t=Object.assign({update:!1},e);delete this.editMode,this.inputField.classList.remove("in-edit"),t.update&&this.update(t)}}function we(e){const t=Object.assign({},e);return delete t.inputs,delete t.allowOneSidedRange,delete t.maxNumberOfDates,t}function ye(e,t,i,s){F(e,[[i,"changeDate",t]]),new me(i,s,e)}function ke(e,t){if(e._updating)return;e._updating=!0;const i=t.target;if(void 0===i.datepicker)return;const s=e.datepickers,a={render:!1},n=e.inputs.indexOf(i),r=0===n?1:0,d=s[n].dates[0],o=s[r].dates[0];void 0!==d&&void 0!==o?0===n&&d>o?(s[0].setDate(o,a),s[1].setDate(d,a)):1===n&&d<o&&(s[0].setDate(d,a),s[1].setDate(o,a)):e.allowOneSidedRange||void 0===d&&void 0===o||(a.clear=!0,s[r].setDate(s[n].dates,a)),s[0].picker.update().render(),s[1].picker.update().render(),delete e._updating}window.Datepicker=me,window.DateRangePicker=class{constructor(e,t={}){const i=Array.isArray(t.inputs)?t.inputs:Array.from(e.querySelectorAll("input"));if(i.length<2)return;e.rangepicker=this,this.element=e,this.inputs=i.slice(0,2),this.allowOneSidedRange=!!t.allowOneSidedRange;const s=ke.bind(null,this),a=we(t),n=[];Object.defineProperty(this,"datepickers",{get:()=>n}),ye(this,s,this.inputs[0],a),ye(this,s,this.inputs[1],a),Object.freeze(n),n[0].dates.length>0?ke(this,{target:this.inputs[0]}):n[1].dates.length>0&&ke(this,{target:this.inputs[1]})}get dates(){return 2===this.datepickers.length?[this.datepickers[0].dates[0],this.datepickers[1].dates[0]]:void 0}setOptions(e){this.allowOneSidedRange=!!e.allowOneSidedRange;const t=we(e);this.datepickers[0].setOptions(t),this.datepickers[1].setOptions(t)}destroy(){this.datepickers[0].destroy(),this.datepickers[1].destroy(),V(this),delete this.element.rangepicker}getDates(e){const t=e?t=>S(t,e,this.datepickers[0].config.locale):e=>new Date(e);return this.dates.map(e=>void 0===e?e:t(e))}setDates(e,t){const[i,s]=this.datepickers,a=this.dates;this._updating=!0,i.setDate(e),s.setDate(t),delete this._updating,s.dates[0]!==a[1]?ke(this,{target:this.inputs[1]}):i.dates[0]!==a[0]&&ke(this,{target:this.inputs[0]})}}}();
\ No newline at end of file
diff --git a/public/js/vendor/vanillajs-datepicker/datepicker.min.css b/public/js/vendor/vanillajs-datepicker/datepicker.min.css
new file mode 100644
index 0000000..e709ac0
--- /dev/null
+++ b/public/js/vendor/vanillajs-datepicker/datepicker.min.css
@@ -0,0 +1 @@
+.datepicker{display:none}.datepicker.active{display:block}.datepicker-dropdown{position:absolute;top:0;left:0;z-index:20;padding-top:4px}.datepicker-dropdown.datepicker-orient-top{padding-top:0;padding-bottom:4px}.datepicker-picker{display:inline-block;border-radius:4px;background-color:#fff}.datepicker-dropdown .datepicker-picker{box-shadow:0 2px 3px rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.1)}.datepicker-picker span{display:block;flex:1;border:0;border-radius:4px;cursor:default;text-align:center;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.datepicker-main{padding:2px}.datepicker-footer{box-shadow:inset 0 1px 1px rgba(10,10,10,.1);background-color:#f5f5f5}.datepicker-controls,.datepicker-grid,.datepicker-view,.datepicker-view .days-of-week{display:flex}.datepicker-grid{flex-wrap:wrap}.datepicker-view .days .datepicker-cell,.datepicker-view .dow{flex-basis:14.28571%}.datepicker-view.datepicker-grid .datepicker-cell{flex-basis:25%}.datepicker-cell,.datepicker-view .week{height:2.25rem;line-height:2.25rem}.datepicker-title{box-shadow:inset 0 -1px 1px rgba(10,10,10,.1);background-color:#f5f5f5;padding:.375rem .75rem;text-align:center;font-weight:700}.datepicker-header .datepicker-controls{padding:2px 2px 0}.datepicker-controls .button{display:inline-flex;position:relative;align-items:center;justify-content:center;margin:0;border:1px solid #dbdbdb;border-radius:4px;box-shadow:none;background-color:#fff;cursor:pointer;padding:calc(.375em - 1px) .75em;height:2.25em;vertical-align:top;text-align:center;line-height:1.5;white-space:nowrap;color:#363636;font-size:1rem}.datepicker-controls .button:active,.datepicker-controls .button:focus{outline:none}.datepicker-controls .button:hover{border-color:#b5b5b5;color:#363636}.datepicker-controls .button:focus{border-color:#3273dc;color:#363636}.datepicker-controls .button:focus:not(:active){box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.datepicker-controls .button:active{border-color:#4a4a4a;color:#363636}.datepicker-controls .button[disabled]{cursor:not-allowed}.datepicker-header .datepicker-controls .button{border-color:transparent;font-weight:700}.datepicker-header .datepicker-controls .button:hover{background-color:#f9f9f9}.datepicker-header .datepicker-controls .button:focus:not(:active){box-shadow:0 0 0 .125em hsla(0,0%,100%,.25)}.datepicker-header .datepicker-controls .button:active{background-color:#f2f2f2}.datepicker-header .datepicker-controls .button[disabled]{box-shadow:none}.datepicker-footer .datepicker-controls .button{margin:calc(.375rem - 1px) .375rem;border-radius:2px;width:100%;font-size:.75rem}.datepicker-controls .view-switch{flex:auto}.datepicker-controls .next-btn,.datepicker-controls .prev-btn{padding-right:.375rem;padding-left:.375rem;width:2.25rem}.datepicker-controls .next-btn.disabled,.datepicker-controls .prev-btn.disabled{visibility:hidden}.datepicker-view .dow{height:1.5rem;line-height:1.5rem;font-size:.875rem;font-weight:700}.datepicker-view .week{width:2.25rem;color:#b5b5b5;font-size:.75rem}@media (max-width:22.5rem){.datepicker-view .week{width:1.96875rem}}.datepicker-grid{width:15.75rem}@media (max-width:22.5rem){.calendar-weeks+.days .datepicker-grid{width:13.78125rem}}.datepicker-cell:not(.disabled):hover{background-color:#f9f9f9;cursor:pointer}.datepicker-cell.focused:not(.selected){background-color:#e8e8e8}.datepicker-cell.selected,.datepicker-cell.selected:hover{background-color:#3273dc;color:#fff;font-weight:600}.datepicker-cell.disabled{color:#dbdbdb}.datepicker-cell.next:not(.disabled),.datepicker-cell.prev:not(.disabled){color:#7a7a7a}.datepicker-cell.next.selected,.datepicker-cell.prev.selected{color:#e6e6e6}.datepicker-cell.highlighted:not(.selected):not(.range):not(.today){border-radius:0;background-color:#f5f5f5}.datepicker-cell.highlighted:not(.selected):not(.range):not(.today):not(.disabled):hover{background-color:#eee}.datepicker-cell.highlighted:not(.selected):not(.range):not(.today).focused{background-color:#e8e8e8}.datepicker-cell.today:not(.selected){background-color:#00d1b2}.datepicker-cell.today:not(.selected):not(.disabled){color:#fff}.datepicker-cell.today.focused:not(.selected){background-color:#00c4a7}.datepicker-cell.range-end:not(.selected),.datepicker-cell.range-start:not(.selected){background-color:#b5b5b5;color:#fff}.datepicker-cell.range-end.focused:not(.selected),.datepicker-cell.range-start.focused:not(.selected){background-color:#afafaf}.datepicker-cell.range-start{border-radius:4px 0 0 4px}.datepicker-cell.range-end{border-radius:0 4px 4px 0}.datepicker-cell.range{border-radius:0;background-color:#dbdbdb}.datepicker-cell.range:not(.disabled):not(.focused):not(.today):hover{background-color:#d5d5d5}.datepicker-cell.range.disabled{color:#c2c2c2}.datepicker-cell.range.focused{background-color:#cfcfcf}.datepicker-view.datepicker-grid .datepicker-cell{height:4.5rem;line-height:4.5rem}.datepicker-input.in-edit{border-color:#2366d1}.datepicker-input.in-edit:active,.datepicker-input.in-edit:focus{box-shadow:0 0 .25em .25em rgba(35,102,209,.2)}
\ No newline at end of file
diff --git a/public/js/vendor/vanillajs-datepicker/ru.js b/public/js/vendor/vanillajs-datepicker/ru.js
new file mode 100644
index 0000000..f85cc51
--- /dev/null
+++ b/public/js/vendor/vanillajs-datepicker/ru.js
@@ -0,0 +1,18 @@
+/**
+ * Russian translation for bootstrap-datepicker
+ * Victor Taranenko <darwin@snowdale.com>
+ */
+(function () {
+  Datepicker.locales.ru = {
+    days: ["Воскресенье", "Понедельник", "Вторник", "Среда", "Четверг", "Пятница", "Суббота"],
+    daysShort: ["Вск", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб"],
+    daysMin: ["Вс", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб"],
+    months: ["Январь", "Февраль", "Март", "Апрель", "Май", "Июнь", "Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь"],
+    monthsShort: ["Янв", "Фев", "Мар", "Апр", "Май", "Июн", "Июл", "Авг", "Сен", "Окт", "Ноя", "Дек"],
+    today: "Сегодня",
+    clear: "Очистить",
+    format: "dd.mm.yyyy",
+    weekStart: 1,
+    monthsTitle: 'Месяцы'
+  };
+}());
diff --git a/public/js/vendor/waypoints.min.js b/public/js/vendor/waypoints.min.js
new file mode 100644
index 0000000..edfacb5
--- /dev/null
+++ b/public/js/vendor/waypoints.min.js
@@ -0,0 +1,7 @@
+/*!
+Waypoints - 4.0.1
+Copyright © 2011-2016 Caleb Troughton
+Licensed under the MIT license.
+https://github.com/imakewebthings/waypoints/blob/master/licenses.txt
+*/
+!function(){"use strict";function t(n){if(!n)throw new Error("No options passed to Waypoint constructor");if(!n.element)throw new Error("No element option passed to Waypoint constructor");if(!n.handler)throw new Error("No handler option passed to Waypoint constructor");this.key="waypoint-"+e,this.options=t.Adapter.extend({},t.defaults,n),this.element=this.options.element,this.adapter=new t.Adapter(this.element),this.callback=n.handler,this.axis=this.options.horizontal?"horizontal":"vertical",this.enabled=this.options.enabled,this.triggerPoint=null,this.group=t.Group.findOrCreate({name:this.options.group,axis:this.axis}),this.context=t.Context.findOrCreateByElement(this.options.context),t.offsetAliases[this.options.offset]&&(this.options.offset=t.offsetAliases[this.options.offset]),this.group.add(this),this.context.add(this),i[this.key]=this,e+=1}var e=0,i={};t.prototype.queueTrigger=function(t){this.group.queueTrigger(this,t)},t.prototype.trigger=function(t){this.enabled&&this.callback&&this.callback.apply(this,t)},t.prototype.destroy=function(){this.context.remove(this),this.group.remove(this),delete i[this.key]},t.prototype.disable=function(){return this.enabled=!1,this},t.prototype.enable=function(){return this.context.refresh(),this.enabled=!0,this},t.prototype.next=function(){return this.group.next(this)},t.prototype.previous=function(){return this.group.previous(this)},t.invokeAll=function(t){var e=[];for(var n in i)e.push(i[n]);for(var o=0,r=e.length;r>o;o++)e[o][t]()},t.destroyAll=function(){t.invokeAll("destroy")},t.disableAll=function(){t.invokeAll("disable")},t.enableAll=function(){t.Context.refreshAll();for(var e in i)i[e].enabled=!0;return this},t.refreshAll=function(){t.Context.refreshAll()},t.viewportHeight=function(){return window.innerHeight||document.documentElement.clientHeight},t.viewportWidth=function(){return document.documentElement.clientWidth},t.adapters=[],t.defaults={context:window,continuous:!0,enabled:!0,group:"default",horizontal:!1,offset:0},t.offsetAliases={"bottom-in-view":function(){return this.context.innerHeight()-this.adapter.outerHeight()},"right-in-view":function(){return this.context.innerWidth()-this.adapter.outerWidth()}},window.Waypoint=t}(),function(){"use strict";function t(t){window.setTimeout(t,1e3/60)}function e(t){this.element=t,this.Adapter=o.Adapter,this.adapter=new this.Adapter(t),this.key="waypoint-context-"+i,this.didScroll=!1,this.didResize=!1,this.oldScroll={x:this.adapter.scrollLeft(),y:this.adapter.scrollTop()},this.waypoints={vertical:{},horizontal:{}},t.waypointContextKey=this.key,n[t.waypointContextKey]=this,i+=1,o.windowContext||(o.windowContext=!0,o.windowContext=new e(window)),this.createThrottledScrollHandler(),this.createThrottledResizeHandler()}var i=0,n={},o=window.Waypoint,r=window.onload;e.prototype.add=function(t){var e=t.options.horizontal?"horizontal":"vertical";this.waypoints[e][t.key]=t,this.refresh()},e.prototype.checkEmpty=function(){var t=this.Adapter.isEmptyObject(this.waypoints.horizontal),e=this.Adapter.isEmptyObject(this.waypoints.vertical),i=this.element==this.element.window;t&&e&&!i&&(this.adapter.off(".waypoints"),delete n[this.key])},e.prototype.createThrottledResizeHandler=function(){function t(){e.handleResize(),e.didResize=!1}var e=this;this.adapter.on("resize.waypoints",function(){e.didResize||(e.didResize=!0,o.requestAnimationFrame(t))})},e.prototype.createThrottledScrollHandler=function(){function t(){e.handleScroll(),e.didScroll=!1}var e=this;this.adapter.on("scroll.waypoints",function(){(!e.didScroll||o.isTouch)&&(e.didScroll=!0,o.requestAnimationFrame(t))})},e.prototype.handleResize=function(){o.Context.refreshAll()},e.prototype.handleScroll=function(){var t={},e={horizontal:{newScroll:this.adapter.scrollLeft(),oldScroll:this.oldScroll.x,forward:"right",backward:"left"},vertical:{newScroll:this.adapter.scrollTop(),oldScroll:this.oldScroll.y,forward:"down",backward:"up"}};for(var i in e){var n=e[i],o=n.newScroll>n.oldScroll,r=o?n.forward:n.backward;for(var s in this.waypoints[i]){var l=this.waypoints[i][s];if(null!==l.triggerPoint){var a=n.oldScroll<l.triggerPoint,h=n.newScroll>=l.triggerPoint,p=a&&h,u=!a&&!h;(p||u)&&(l.queueTrigger(r),t[l.group.id]=l.group)}}}for(var d in t)t[d].flushTriggers();this.oldScroll={x:e.horizontal.newScroll,y:e.vertical.newScroll}},e.prototype.innerHeight=function(){return this.element==this.element.window?o.viewportHeight():this.adapter.innerHeight()},e.prototype.remove=function(t){delete this.waypoints[t.axis][t.key],this.checkEmpty()},e.prototype.innerWidth=function(){return this.element==this.element.window?o.viewportWidth():this.adapter.innerWidth()},e.prototype.destroy=function(){var t=[];for(var e in this.waypoints)for(var i in this.waypoints[e])t.push(this.waypoints[e][i]);for(var n=0,o=t.length;o>n;n++)t[n].destroy()},e.prototype.refresh=function(){var t,e=this.element==this.element.window,i=e?void 0:this.adapter.offset(),n={};this.handleScroll(),t={horizontal:{contextOffset:e?0:i.left,contextScroll:e?0:this.oldScroll.x,contextDimension:this.innerWidth(),oldScroll:this.oldScroll.x,forward:"right",backward:"left",offsetProp:"left"},vertical:{contextOffset:e?0:i.top,contextScroll:e?0:this.oldScroll.y,contextDimension:this.innerHeight(),oldScroll:this.oldScroll.y,forward:"down",backward:"up",offsetProp:"top"}};for(var r in t){var s=t[r];for(var l in this.waypoints[r]){var a,h,p,u,d,f=this.waypoints[r][l],c=f.options.offset,w=f.triggerPoint,y=0,g=null==w;f.element!==f.element.window&&(y=f.adapter.offset()[s.offsetProp]),"function"==typeof c?c=c.apply(f):"string"==typeof c&&(c=parseFloat(c),f.options.offset.indexOf("%")>-1&&(c=Math.ceil(s.contextDimension*c/100))),a=s.contextScroll-s.contextOffset,f.triggerPoint=Math.floor(y+a-c),h=w<s.oldScroll,p=f.triggerPoint>=s.oldScroll,u=h&&p,d=!h&&!p,!g&&u?(f.queueTrigger(s.backward),n[f.group.id]=f.group):!g&&d?(f.queueTrigger(s.forward),n[f.group.id]=f.group):g&&s.oldScroll>=f.triggerPoint&&(f.queueTrigger(s.forward),n[f.group.id]=f.group)}}return o.requestAnimationFrame(function(){for(var t in n)n[t].flushTriggers()}),this},e.findOrCreateByElement=function(t){return e.findByElement(t)||new e(t)},e.refreshAll=function(){for(var t in n)n[t].refresh()},e.findByElement=function(t){return n[t.waypointContextKey]},window.onload=function(){r&&r(),e.refreshAll()},o.requestAnimationFrame=function(e){var i=window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||t;i.call(window,e)},o.Context=e}(),function(){"use strict";function t(t,e){return t.triggerPoint-e.triggerPoint}function e(t,e){return e.triggerPoint-t.triggerPoint}function i(t){this.name=t.name,this.axis=t.axis,this.id=this.name+"-"+this.axis,this.waypoints=[],this.clearTriggerQueues(),n[this.axis][this.name]=this}var n={vertical:{},horizontal:{}},o=window.Waypoint;i.prototype.add=function(t){this.waypoints.push(t)},i.prototype.clearTriggerQueues=function(){this.triggerQueues={up:[],down:[],left:[],right:[]}},i.prototype.flushTriggers=function(){for(var i in this.triggerQueues){var n=this.triggerQueues[i],o="up"===i||"left"===i;n.sort(o?e:t);for(var r=0,s=n.length;s>r;r+=1){var l=n[r];(l.options.continuous||r===n.length-1)&&l.trigger([i])}}this.clearTriggerQueues()},i.prototype.next=function(e){this.waypoints.sort(t);var i=o.Adapter.inArray(e,this.waypoints),n=i===this.waypoints.length-1;return n?null:this.waypoints[i+1]},i.prototype.previous=function(e){this.waypoints.sort(t);var i=o.Adapter.inArray(e,this.waypoints);return i?this.waypoints[i-1]:null},i.prototype.queueTrigger=function(t,e){this.triggerQueues[e].push(t)},i.prototype.remove=function(t){var e=o.Adapter.inArray(t,this.waypoints);e>-1&&this.waypoints.splice(e,1)},i.prototype.first=function(){return this.waypoints[0]},i.prototype.last=function(){return this.waypoints[this.waypoints.length-1]},i.findOrCreate=function(t){return n[t.axis][t.name]||new i(t)},o.Group=i}(),function(){"use strict";function t(t){return t===t.window}function e(e){return t(e)?e:e.defaultView}function i(t){this.element=t,this.handlers={}}var n=window.Waypoint;i.prototype.innerHeight=function(){var e=t(this.element);return e?this.element.innerHeight:this.element.clientHeight},i.prototype.innerWidth=function(){var e=t(this.element);return e?this.element.innerWidth:this.element.clientWidth},i.prototype.off=function(t,e){function i(t,e,i){for(var n=0,o=e.length-1;o>n;n++){var r=e[n];i&&i!==r||t.removeEventListener(r)}}var n=t.split("."),o=n[0],r=n[1],s=this.element;if(r&&this.handlers[r]&&o)i(s,this.handlers[r][o],e),this.handlers[r][o]=[];else if(o)for(var l in this.handlers)i(s,this.handlers[l][o]||[],e),this.handlers[l][o]=[];else if(r&&this.handlers[r]){for(var a in this.handlers[r])i(s,this.handlers[r][a],e);this.handlers[r]={}}},i.prototype.offset=function(){if(!this.element.ownerDocument)return null;var t=this.element.ownerDocument.documentElement,i=e(this.element.ownerDocument),n={top:0,left:0};return this.element.getBoundingClientRect&&(n=this.element.getBoundingClientRect()),{top:n.top+i.pageYOffset-t.clientTop,left:n.left+i.pageXOffset-t.clientLeft}},i.prototype.on=function(t,e){var i=t.split("."),n=i[0],o=i[1]||"__default",r=this.handlers[o]=this.handlers[o]||{},s=r[n]=r[n]||[];s.push(e),this.element.addEventListener(n,e)},i.prototype.outerHeight=function(e){var i,n=this.innerHeight();return e&&!t(this.element)&&(i=window.getComputedStyle(this.element),n+=parseInt(i.marginTop,10),n+=parseInt(i.marginBottom,10)),n},i.prototype.outerWidth=function(e){var i,n=this.innerWidth();return e&&!t(this.element)&&(i=window.getComputedStyle(this.element),n+=parseInt(i.marginLeft,10),n+=parseInt(i.marginRight,10)),n},i.prototype.scrollLeft=function(){var t=e(this.element);return t?t.pageXOffset:this.element.scrollLeft},i.prototype.scrollTop=function(){var t=e(this.element);return t?t.pageYOffset:this.element.scrollTop},i.extend=function(){function t(t,e){if("object"==typeof t&&"object"==typeof e)for(var i in e)e.hasOwnProperty(i)&&(t[i]=e[i]);return t}for(var e=Array.prototype.slice.call(arguments),i=1,n=e.length;n>i;i++)t(e[0],e[i]);return e[0]},i.inArray=function(t,e,i){return null==e?-1:e.indexOf(t,i)},i.isEmptyObject=function(t){for(var e in t)return!1;return!0},n.adapters.push({name:"noframework",Adapter:i}),n.Adapter=i}();
\ No newline at end of file
diff --git a/public/resources.html b/public/resources.html
new file mode 100644
index 0000000..8d58a13
--- /dev/null
+++ b/public/resources.html
@@ -0,0 +1,319 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>Resources | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/resources.css" />
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__grey">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <!--Миксин для блока с видео-->
+    <section class="reshero">
+      <div class="container">
+        <img class="reshero__img" src="/img/resourses/hero.svg" alt="" />
+        <h1 class="reshero__h1 h1">Apache Ignite <br />Resources</h1>
+        <div class="reshero__descr h5 pt-3">Elevate your Ignite experience with the help of&nbsp;community-curated technical resources, code samples, how-to videos, training courses and&nbsp;other materials</div>
+      </div>
+    </section>
+    <!-- /.reshero-->
+    <section class="restechnical container">
+      <p class="capstext">TECHNICAL RESOURCES</p>
+      <div class="restechnical__grid">
+        <article class="restechnical__item">
+          <div class="restechnical__title flexi pb-5"><img src="/img/resourses/res2-book.svg" alt="" /><span class="h4">Apache Ignite Documentation</span></div>
+          <div class="restechnical__box cardsimple">
+            <div class="restechnical__subtitle h5">Start with the technical documentation to find out:</div>
+            <div class="restechnical__text pt-2">
+              <ul class="dashlist">
+                <li>What are the key Apache Ignite capabilities</li>
+                <li>How to use certain features</li>
+                <li>How to approach cluster optimizations</li>
+                <li>Best troubleshooting techniques</li>
+              </ul>
+            </div>
+            <div class="restechnical__action"><a class="button" href="https://ignite.apache.org/docs/latest/index" target="_blank">Discover the entire documentation</a></div>
+          </div>
+        </article>
+        <!-- /.restechnical__item-1-->
+        <article class="restechnical__item">
+          <div class="restechnical__title flexi pb-5"><img src="/img/resourses/res2-book2.svg" alt="" /><span class="h4">Ignite Wiki</span></div>
+          <div class="restechnical__box cardsimple">
+            <div class="restechnical__subtitle h5">A collection of low-level design documents and instructions:</div>
+            <div class="restechnical__text pt-2">
+              <ul class="dashlist">
+                <li>Architectural internals of Ignite components</li>
+                <li>Ignite Enhancement Proposals: next big things for Ignite</li>
+                <li>Coding and release guidelines</li>
+              </ul>
+            </div>
+            <div class="restechnical__action"><a class="button" href="https://cwiki.apache.org/confluence/display/IGNITE/" target="_blank">Check out Wiki</a></div>
+          </div>
+        </article>
+        <!-- /.restechnical__item-2-->
+        <article class="restechnical__item">
+          <div class="restechnical__title flexi pb-5"><img src="/img/icon-github.svg" alt="" /><span class="h4">Git Repositories</span></div>
+          <div class="restechnical__box cardsimple">
+            <div class="restechnical__subtitle h5">Ignite Source Code</div>
+            <div class="restechnical__text pt-2">
+              <p class="pb-3">Download Apache Ignite and install in your environment.</p>
+              <p>Select one of the following links:</p>
+            </div>
+            <div class="restechnical__action flexi">
+              <a class="button" href="https://gitbox.apache.org/repos/asf?p=ignite.git" target="_blank">Ignite Git</a><a class="button" href="https://github.com/apache/ignite" target="_blank">GitHub Mirror</a>
+            </div>
+          </div>
+        </article>
+        <!-- /.restechnical__item-3-->
+        <article class="restechnical__item">
+          <div class="restechnical__title restechnical__title--empty flexi pb-5"><span class="h4">&nbsp;</span></div>
+          <div class="restechnical__box cardsimple">
+            <div class="restechnical__subtitle h5">Code samples and examples</div>
+            <div class="restechnical__text pt-2"><p>Get access to examples that illustrate various Ignite functionality.</p></div>
+            <div class="restechnical__action"><a class="button" href="https://github.com/apache/ignite/tree/master/examples" target="_blank">Examples Git</a></div>
+          </div>
+        </article>
+        <!-- /.restechnical__item-4-->
+      </div>
+    </section>
+    <!-- /.restechnical-->
+    <section class="resvideos">
+      <div class="container">
+        <p class="capstext">LEARNING RESOURCES</p>
+        <h2 class="h4 resicontitle flexi"><img src="/img/resourses/block-video.svg" alt="" /><span>Essential Videos and Webinar Recordings</span></h2>
+        <p class="h5 pt-1x">Explore our collection of videos featuring widespread use-cases.</p>
+        <div class="resvideos__grid pt-5">
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.youtube.com/watch?v=UeQKuAQaMNU" data-youtube
+                ><span class="comvideo__txt comvideo__smalltxt">In memoty computing <br />essentials</span><span class="comvideo__sub undefined">Webinar <br />recording</span><img src="/img/resourses/video.png" alt=""
+              /></a>
+            </div>
+            <div class="comvideo__descr pt-2"><p>In&nbsp;this video, we&nbsp;introduce the fundamental capabilities of&nbsp;in-memory computing platforms, such as&nbsp;high-speed performance and scalability.</p></div>
+          </article>
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.youtube.com/watch?v=hrnrsIkCnI0" data-youtube
+                ><span class="comvideo__txt comvideo__smalltxt">Distributed Computing <br />With Apache Ignite</span><span class="comvideo__sub undefined">Webinar <br />recording</span><img src="/img/resourses/video.png" alt=""
+              /></a>
+            </div>
+            <div class="comvideo__descr pt-2"><p>In&nbsp;this video, we&nbsp;show how to&nbsp;design and execute distributed computations considering all the pros and cons.</p></div>
+          </article>
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.youtube.com/watch?v=TCsl-W0tsEE" data-youtube
+                ><span class="comvideo__txt comvideo__smalltxt">Consistency And Transactions <br />Of Apache Ignite</span><span class="comvideo__sub undefined">Webinar <br />recording</span><img src="/img/resourses/video.png" alt=""
+              /></a>
+            </div>
+            <div class="comvideo__descr pt-2"><p>In&nbsp;this webinar, we&nbsp;provide a&nbsp;deep understanding of&nbsp;Apache Ignite&rsquo;s support for ACID transactions and data consistency.</p></div>
+          </article>
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.youtube.com/watch?v=eYV-tNLzIts" data-youtube
+                ><span class="comvideo__txt comvideo__smalltxt">Apache Ignite <br />Sql Essentials</span><span class="comvideo__sub undefined">Webinar <br />recording</span><img src="/img/resourses/video.png" alt=""
+              /></a>
+            </div>
+            <div class="comvideo__descr pt-2"><p>Learn how to&nbsp;apply a&nbsp;classic SQL database experience while enabling in-memory speeds at&nbsp;petabyte scale for a&nbsp;variety of&nbsp;workloads.</p></div>
+          </article>
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.youtube.com/watch?v=38YgdAOs038" data-youtube
+                ><span class="comvideo__txt comvideo__smalltxt">Deploying Apache Ignite In&nbsp;Kubernetes</span><span class="comvideo__sub undefined">Webinar <br />recording</span><img src="/img/resourses/video.png" alt=""
+              /></a>
+            </div>
+            <div class="comvideo__descr pt-2"><p>In&nbsp;this webinar, speakers provide steps on&nbsp;how to&nbsp;deploy Ignite in&nbsp;Kubernetes.</p></div>
+          </article>
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.youtube.com/watch?v=eGlmZoBSS8g" data-youtube
+                ><span class="comvideo__txt comvideo__smalltxt">Machine Learning<br />With Apache Ignite</span><span class="comvideo__sub undefined">Webinar <br />recording</span><img src="/img/resourses/video.png" alt=""
+              /></a>
+            </div>
+            <div class="comvideo__descr pt-2"><p>Watch this webinar to&nbsp;learn how to&nbsp;leverage the Apache Ignite machine learning framework to&nbsp;implement a&nbsp;continuous machine learning platform.</p></div>
+          </article>
+        </div>
+        <div class="resvideos__youtube h5">Explore <a href="https://www.youtube.com/channel/UChYD3lCEnzHlWioUb2sNgSg" target="_blank">the full collection of Apache Ignite videos</a> and recordings on YouTube.</div>
+      </div>
+    </section>
+    <!-- /.resvideos-->
+    <section class="rescourses container">
+      <h2 class="h4 resicontitle flexi"><img src="/img/resourses/icon-training.svg" alt="" /><span>Trainings and Courses</span></h2>
+      <p class="pt-2 h5">Enhance your knowledge in building high-performance and <br />data-intensive applications with the Apache Ignite capabilities.</p>
+      <div class="rescourses__wrap pt-5">
+        <article class="rescourse cardsimple">
+          <h3 class="fz20 rescourse__title pb-2 maxline3">Apache Ignite Management <br />and Monitoring Guide</h3>
+          <img class="rescourse__pic" src="/img/resourses/training1.svg" alt="" />
+          <p class="rescourse__descr pb-3 pt-2">Learn how to monitor and manage Apache Ignite clusters in production</p>
+          <a class="rescourse__button button" href="https://www.gridgain.com/services/training" target="_blank">Training Schedule</a>
+        </article>
+        <article class="rescourse cardsimple">
+          <h3 class="fz20 rescourse__title pb-2 maxline3">Apache Ignite Essentials: Key Design Principles for Building Data-Intensive Applications</h3>
+          <img class="rescourse__pic" src="/img/resourses/training2.svg" alt="" />
+          <p class="rescourse__descr pb-3 pt-2">Learn about data partitioning, affinity co-location, and co-located processing</p>
+          <a class="rescourse__button button" href="https://www.gridgain.com/services/training" target="_blank">Training Schedule</a>
+        </article>
+        <article class="rescourse cardsimple">
+          <h3 class="fz20 rescourse__title pb-2 maxline3">Apache Ignite for Spring Boot and&nbsp;Spring Data Development</h3>
+          <img class="rescourse__pic" src="/img/resourses/training3.svg" alt="" />
+          <p class="rescourse__descr pb-3 pt-2">Explore the best practices and nuances of&nbsp;using Spring Boot and Spring Data with Apache Ignite</p>
+          <a class="rescourse__button button" href="https://www.gridgain.com/services/training" target="_blank">Training Schedule</a>
+        </article>
+      </div>
+    </section>
+    <!-- /.rescourses-->
+    <section class="resbook container">
+      <h2 class="h4 resicontitle flexi"><img src="/img/resourses/block-book.svg" alt="" /><span>Apache Ignite Book</span></h2>
+      <p class="pt-2 h5">This book is useful for developers and architects who want to expand <br />their knowledge in in-memory computing and distributed databases.</p>
+      <div class="resbook__wrap pt-5 flexi">
+        <div class="resbook__picwrap"><img src="/img/resourses/book-cover.jpg" alt="" /></div>
+        <div class="resbook__content">
+          <div class="resbook__caps capstext pb-5">The book is recommended by <br />the Apache Ignite Community</div>
+          <blockquote class="resbook__quote h5">
+            This is&nbsp;one of&nbsp;the very few good books on&nbsp;Apache Ignite. It&nbsp;covers <br />the whole spectrum of&nbsp;Ignite. From use-cases and architecture to&nbsp;maintenance and code examples that get your hands dirty.
+            If&nbsp;you want one book to&nbsp;get it&nbsp;all, this is&nbsp;it!
+          </blockquote>
+          <div class="cmtyhistory__avaavtor pt-3 flexi">
+            <div class="cmtyhistory__ava"><img src="/img/community/b2-cos.jpg" alt="" /></div>
+            <div class="cmtyhistory__avaright">
+              <div class="cmtyhistory__avaname">Cos Boudnik</div>
+              <div class="cmtyhistory__avaproff">ASF member, Apache Ignite Mentor</div>
+            </div>
+          </div>
+          <a class="button resbook__button" href="#" target="_blank">Visit the book web-site</a>
+        </div>
+      </div>
+    </section>
+    <!-- /.resbook-->
+    <section class="rescontacts container">
+      <h2 class="h4 resicontitle flexi"><img src="/img/resourses/block-email.svg" alt="" /><span>Mailing Lists, Forums and Discussion Archives</span></h2>
+      <div class="rescontacts__wrap">
+        <article class="faqblock flexi">
+          <h3 class="faqblock__title faqblock__title--simple h5"><span>For general questions about Ignite</span></h3>
+          <div class="faqblock__right">
+            <h4>By e-mail</h4>
+            <p>For general questions about Ignite <a href="mailto:user@ignite.apache.org">user@ignite.apache.org</a></p>
+            <div class="faqblock__buttons flexi pb-5 pt-2">
+              <a class="faqblock__button flexi" href="mailto:user-subscribe@ignite.apache.org"> <img class="faqblock__eicon" src="/img/icon-email+.svg" alt="" /><span>Subscribe</span></a
+              ><a class="faqblock__button flexi" href="mailto:user-unsubscribe@ignite.apache.org"> <img class="faqblock__eicon" src="/img/icon-email-.svg" alt="" /><span>Unsubscribe</span></a
+              ><a class="faqblock__button flexi" href="https://lists.apache.org/list.html?user@ignite.apache.org" target="_blank"> <img src="/img/icon-folder.svg" alt="" /><span>Archives</span></a>
+            </div>
+            <h4>On StackOverflow</h4>
+            <p>Or&nbsp;ask a&nbsp;question on&nbsp;StackOverflow tagging the question with &laquo;ignite&raquo; or&nbsp;&laquo;apacheignite&raquo;</p>
+            <div class="faqblock__buttons flexi pt-2">
+              <a class="faqblock__button flexi" href="http://stackoverflow.com/questions/tagged/ignite" target="_blank">
+                <img class="faqblock__stackicon" src="/img/icon-stackoverflow.svg" alt="" /><span>Ask question on StackOverflow</span></a
+              >
+            </div>
+          </div>
+        </article>
+        <!-- /.faqblock-->
+        <article class="faqblock flexi">
+          <h3 class="faqblock__title faqblock__title--simple h5"><span>For contribution-related discussions</span></h3>
+          <div class="faqblock__right">
+            <h4>By e-mail</h4>
+            <p><a href="mailto:dev@ignite.apache.org">dev@ignite.apache.org</a></p>
+            <div class="faqblock__buttons flexi pb-4 pt-2">
+              <a class="faqblock__button flexi" href="mailto:dev-subscribe@ignite.apache.org"> <img class="faqblock__eicon" src="/img/icon-email+.svg" alt="" /><span>Subscribe</span></a
+              ><a class="faqblock__button flexi" href="mailto:dev-unsubscribe@ignite.apache.org"> <img class="faqblock__eicon" src="/img/icon-email-.svg" alt="" /><span>Unsubscribe</span></a
+              ><a class="faqblock__button flexi" href="https://lists.apache.org/list.html?user@ignite.apache.org" target="_blank"> <img src="/img/icon-folder.svg" alt="" /><span>Archives</span></a>
+            </div>
+          </div>
+        </article>
+        <!-- /.faqblock-->
+        <article class="faqblock flexi">
+          <h3 class="faqblock__title faqblock__title--simple h5">
+            <span>Report about bugs, possible <br />improvements and ctr.</span>
+          </h3>
+          <div class="faqblock__right">
+            <h4>By e-mail</h4>
+            <p><a href="mailto:issues@ignite.apache.org">issues@ignite.apache.org</a></p>
+            <div class="faqblock__buttons flexi pb-5 pt-2">
+              <a class="faqblock__button flexi" href="mailto:notifications-subscribe@ignite.apache.org"> <img class="faqblock__eicon" src="/img/icon-email+.svg" alt="" /><span>Subscribe</span></a
+              ><a class="faqblock__button flexi" href="mailto:issues-unsubscribe@ignite.apache.org"> <img class="faqblock__eicon" src="/img/icon-email-.svg" alt="" /><span>Unsubscribe</span></a
+              ><a class="faqblock__button flexi" href="https://lists.apache.org/list.html?issues@ignite.apache.org" target="_blank"> <img src="/img/icon-folder.svg" alt="" /><span>Archives</span></a>
+            </div>
+          </div>
+        </article>
+        <!-- /.faqblock-->
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/use-cases/digital-integration-hub.html b/public/use-cases/digital-integration-hub.html
new file mode 100644
index 0000000..2545145
--- /dev/null
+++ b/public/use-cases/digital-integration-hub.html
@@ -0,0 +1,284 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>Digital Integration Hub | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/native-persistence.css" />
+    <link rel="stylesheet" href="../css/compute-apis.css" />
+    <link rel="stylesheet" href="../css/digital-hub.css" />
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__blue">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo-white.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="innerhero">
+      <div class="container innerhero__cont">
+        <div class="innerhero__main innerhero__mainhub">
+          <h1 class="h1 innerhero__h1">Digital Integration Hub</h1>
+          <div class="h1 pt-2">With Apache Ignite</div>
+          <div class="innerhero__descr pt-2 h5">
+            Build new types of applications that require real-time access<br />
+            to data scattered across disparate data sources
+          </div>
+          <div class="innerhero__action"><a class="button innerhero__button" href="https://ignite.apache.org/docs/latest/index">Start Coding</a></div>
+        </div>
+        <img class="innerhero__pic innerhero__pic--hub" src="/img/usecases/digital-hub/hero-image.svg" alt="hero-image" />
+      </div>
+    </section>
+    <!-- /.innerhero-->
+    <section class="hub1">
+      <div class="container">
+        <h2 class="compute2__h2">Digital Integration Hub Overview</h2>
+        <div class="hub1__block flexi">
+          <div class="hub1__info">
+            <h3 class="h5 hub1__title">What is a digital integration hub?</h3>
+            <p class="hub1__text">A digital integration hub (DIH) is an advanced platform architecture that aggregates multiple back-end systems and databases into a low-latency and shared data store.</p>
+            <p class="pt-1">The store caches and persists data sets scattered across many disjointed back-end databases and makes them available to your applications through high-performance APIs.</p>
+            <h3 class="h5 hub1__title hub1__titleend">How digital integration hub works</h3>
+            <p class="hub1__text">Applications access Ignite via an API service layer and experience substantial performance improvements by requesting data from only the Ignite distributed store.</p>
+          </div>
+          <img class="hub1__image" src="/img/usecases/digital-hub/image.svg" alt="image" />
+        </div>
+      </div>
+    </section>
+    <!-- /.hub1 -->
+    <section class="compute2">
+      <div class="container">
+        <h2 class="compute2__h2">Benefits Of Using Apache Ignite as a Digital Integration Hub</h2>
+        <div class="compute2__grid flexi hub2__grid">
+          <div class="compute2item hub2item">
+            <div class="compute2-points__item fz20"></div>
+            <div class="compute2item__block">
+              <h3 class="fz20 compute2item__title">
+                Advanced architecture that aggregates data<br />
+                from multiple back-end data sources
+              </h3>
+              <p class="compute2__text hub2__text">No need to clutter the applications with logic accessing numerous data stores.</p>
+            </div>
+          </div>
+          <div class="compute2item hub2item">
+            <div class="compute2-points__item fz20"></div>
+            <div class="compute2item__block">
+              <h3 class="fz20 compute2item__title">
+                Unified data access layer for new types<br />
+                of applications and services
+              </h3>
+              <p class="compute2__text hub2__text">Have applications accessing a single low-latency store for hybrid operations.</p>
+            </div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.compute2-->
+    <section class="hub3">
+      <div class="container">
+        <h2 class="h4">Digital Integration Hub Synchronization Techniques</h2>
+        <p class="hub3__subtext">Ignite, as a high-performance data store, can be synchronized with the back-end databases via:</p>
+        <div class="hub3__parts flexi">
+          <div class="hub3__part flexi">
+            <div class="compute2-points__item fz20"></div>
+            <div class="hub3__item">Streaming</div>
+          </div>
+          <div class="hub3__part flexi">
+            <div class="compute2-points__item fz20"></div>
+            <div class="hub3__item">Event-based</div>
+          </div>
+          <div class="hub3__part flexi">
+            <div class="compute2-points__item fz20"></div>
+            <div class="hub3__item">Change data capture (CDC)</div>
+          </div>
+          <div class="hub3__part flexi">
+            <div class="compute2-points__item fz20"></div>
+            <div class="hub3__item">And other techniques</div>
+          </div>
+        </div>
+        <div class="hub3__blocks flexi">
+          <div class="hub3__block">
+            <p class="hub3__text">
+              <strong>For uni-directional synchronization</strong> between an Ignite cluster<br />
+              and an external store, Ignite provides the CacheStore interface.
+            </p>
+            <p class="hub3__text pt-1">This interface allows Ignite to write-through or write-behind all the changes to the backend-systems automatically.</p>
+            <p class="hub3__text pt-1">It also includes transactions. Ignite coordinates and commits a transaction across its in-memory cluster as well as an external transactional database.</p>
+          </div>
+          <div class="hub3__block">
+            <p class="hub3__text"><strong>For bi-directional synchronization,</strong> you can consider various streaming, CDC, and event-based technologies, such as: Kafka, Spark, Debezium and others.</p>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.hub3-->
+    <section class="hub4">
+      <div class="container">
+        <h2 class="hub4__h2 h4">
+          Why Do Businesses Need<br />
+          Digital Integration Hub Solutions?
+        </h2>
+        <div class="hub4__blocks flexi">
+          <p class="hub4__subtext h5">To create new types of applications that should query data from disperse data sources.</p>
+          <p class="hub4__grey h5">DIH is a contemporary way to complete this challenging task.</p>
+        </div>
+        <div class="hub4__numbers flexi">
+          <div class="hub4__number">
+            <div class="hub4__num h5">01</div>
+            <p class="hub4__text">Accumulate data from dozens of data sources</p>
+          </div>
+          <div class="hub4__number">
+            <div class="hub4__num h5">02</div>
+            <p class="hub4__text hub4__textall">Keep data in a shared and low-latency store</p>
+          </div>
+          <div class="hub4__number">
+            <div class="hub4__num h5">03</div>
+            <p class="hub4__text hub4__textall">Get data synchronized with back-end system</p>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.hub4 -->
+    <section class="hub5">
+      <div class="container">
+        <h2 class="compute2__h2">Apache Ignite User Stories</h2>
+        <div class="highcases__two">
+          <div class="hub5__twowrap flexi pt-5">
+            <div class="hub5__item">
+              <article class="comvideo">
+                <div class="comvideo__box">
+                  <a class="comvideo__screen" href="https://www.youtube.com/watch?v=EdFOKJIjRSg&amp;feature=emb_imp_woyt" data-youtube="data-youtube"
+                    ><span class="comvideo__txt comvideo__txt--white hub5__video">Fitness + In Memory Computing = Getting Ahead Of The Game</span><img src="/img/usecases/digital-hub/one-video.png" alt=""
+                  /></a>
+                </div>
+                <div class="pt-1"></div>
+                <div class="comvideo__descr pt-1"></div>
+              </article>
+              <h3 class="h4 hub5__title">24 Hour Fitness</h3>
+              <p class="hub5__text">implements a Digital Integration Hub to offload API calls and enable new data access patterns.</p>
+            </div>
+            <div class="hub5__item">
+              <article class="comvideo">
+                <div class="comvideo__box">
+                  <a class="comvideo__screen" href="https://www.youtube.com/watch?v=g1FcrOPXWyg" data-youtube="data-youtube"
+                    ><span class="comvideo__txt comvideo__txt--black comvideo__txthub hub5__video">Using Ignite And JBoss Drools To Implement A Complex Event Processing Solution</span
+                    ><img src="/img/usecases/digital-hub/two-video.png" alt=""
+                  /></a>
+                </div>
+                <div class="pt-1"></div>
+                <div class="comvideo__descr pt-1"></div>
+              </article>
+              <h3 class="h4 hub5__title">Вanco do Brasil</h3>
+              <p class="hub5__text">uses digital integration hub capabilities to develop the omnichannel Horus platform.</p>
+            </div>
+          </div>
+          <div class="hub5__twowrap flexi pt-5">
+            <div class="hub5__item">
+              <article class="comvideo">
+                <div class="comvideo__box">
+                  <a class="comvideo__screen" href="https://www.youtube.com/watch?v=3FFexcYIpmA" data-youtube="data-youtube"
+                    ><span class="comvideo__txt comvideo__txt--white hub5__video">Leveraging In-Memory Compute Grids With Core Systems Of Record</span><img src="/img/usecases/digital-hub/three-video.png" alt=""
+                  /></a>
+                </div>
+                <div class="pt-1"></div>
+                <div class="comvideo__descr pt-1"></div>
+              </article>
+              <h3 class="h4 hub5__title">IBM</h3>
+              <p class="hub5__text">launches the Z Digital Integration Hub built on Apache Ignite to enable real-time business agility for organizations.</p>
+            </div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <section class="native-bottom container">
+      <div class="native-bottom__grid">
+        <article class="nativebotblock">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-rocket.svg" alt="" /><span>Ready to Start?</span></h3>
+          <p class="nativebotblock__text">
+            Discover our quick start guide and build your first<br />
+            application in 5-10 minutes
+          </p>
+          <a class="nativebotblock__link arrowlink" href="https://ignite.apache.org/docs/latest/" target="_blank">Quick Start Guide</a>
+        </article>
+        <article class="nativebotblock nativebotblock--learn">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-docs.svg" alt="" /><span>Want to Learn More?</span></h3>
+          <p class="nativebotblock__text">Run our digital integration hub sample application</p>
+          <a class="nativebotblock__link arrowlink" href="https://cwiki.apache.org/confluence/display/IGNITE/Ignite+Persistent+Store+-+under+the+hood" target="_blank">Download the sample project</a>
+        </article>
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/use-cases/high-performance-computing.html b/public/use-cases/high-performance-computing.html
new file mode 100644
index 0000000..68f248c
--- /dev/null
+++ b/public/use-cases/high-performance-computing.html
@@ -0,0 +1,320 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>High Performance Computing | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/native-persistence.css" />
+    <link rel="stylesheet" href="../css/high-performance-computing.css" />
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__blue">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo-white.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="innerhero">
+      <div class="container innerhero__cont">
+        <div class="innerhero__main">
+          <h1 class="h1 innerhero__h1">High Performance <br />Computing<span class="highperf__herosmall"> With Apache Ignite</span></h1>
+          <div class="innerhero__descr pt-2 h5">Minimize network utilization by executing kilobyte-size custom <br />code over petabytes of data</div>
+          <div class="innerhero__action"><a class="button innerhero__button" href="https://ignite.apache.org/docs/latest/index">Start Coding</a></div>
+        </div>
+        <img class="innerhero__pic innerhero__pic--highperf" src="/img/usecases/high-peformance/hero.svg" alt="High Performance Computing" />
+      </div>
+    </section>
+    <!-- /.innerhero-->
+    <section class="high1 container">
+      <div class="capstext pb-5">High Performance Computing Overview</div>
+      <div class="high1__wrap flexi">
+        <div class="high1__main pt-1">
+          <h3 class="h5 high1__title">What is high performance computing?</h3>
+          <div class="high1__text pt-3 pb-5">
+            <p>High-performance computing is the ability to process data and perform complex calculations at high speeds.</p>
+            <p>You keep all your data on the cluster node and execute your kilobyte-size custom code over petabytes of data avoiding network-like utilization.</p>
+          </div>
+          <h3 class="h5 high1__title">How it works</h3>
+          <div class="high1__text pt-2">
+            <div class="high1__sub pb-2">In traditional disk-based systems, <br />such as relational or NoSQL databases</div>
+            <p>Client applications usually bring data from servers, use the records for local calculations, and discard the data as soon as the business task is complete.</p>
+            <p>This approach does not scale well if a significant volume of data gets transferred over the network.</p>
+            <div class="high1__sub pt-2 pb-2">In in-memory computing systems, <br />such as Apache Ignite</div>
+            <p>
+              Apache Ignite supports a co-located processing technique. The primary aim of this technique is to increase the performance of your data-intensive or compute-intensive calculations by running them straight on Ignite cluster
+              nodes.
+            </p>
+            <p>In co-located processing, calculations are done on local data sets of the cluster nodes. This avoids records shuffling over the network and eliminates the impact of network latency on the performance of your applications.</p>
+          </div>
+        </div>
+        <aside class="high1__picwrap">
+          <img class="high1__pic" src="/img/usecases/high-peformance/perf-pic.svg" alt="" />
+          <div class="high1__picdescr flexi">
+            <div class="high1__arrowline flexi">
+              <i>1</i>
+              <p>– Map Phace</p>
+            </div>
+            <div class="high1__arrowline flexi">
+              <i>2</i>
+              <p>– Execution Phase</p>
+            </div>
+            <div class="high1__arrowline flexi">
+              <i>3</i>
+              <p>– Reduse Phace</p>
+            </div>
+          </div>
+        </aside>
+      </div>
+    </section>
+    <!-- /.high1-->
+    <section class="high2">
+      <div class="container">
+        <div class="capstext">Benefits Of Apache Ignite Compute APIs</div>
+        <div class="high2__wrap">
+          <div class="high2__block">
+            <div class="high2__title">Broadcast or execute on specific nodes</div>
+            <div class="high2__text">
+              <p>— Broadcast your tasks to&nbsp;use all the CPUs of&nbsp;your distributed cluster.</p>
+              <p class="pt-1">— Or&nbsp;execute your computations on&nbsp;a&nbsp;specific group of&nbsp;nodes.</p>
+            </div>
+          </div>
+          <div class="high2__block">
+            <div class="high2__title">Load balance your querie</div>
+            <div class="high2__text"><p>If&nbsp;some of&nbsp;the nodes are over-utilized, Ignite can load balance your calculations to&nbsp;the other node.</p></div>
+          </div>
+          <div class="high2__block">
+            <div class="high2__title">All computations are fault-tolerant</div>
+            <div class="high2__text">
+              <p>Some computations might take minutes or&nbsp;hours to&nbsp;complete, e.g. drug discovery or&nbsp;logistics planning. You don&rsquo;t need to&nbsp;start from the very beginning if&nbsp;something goes wrong.</p>
+            </div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.high2-->
+    <section class="highicons container">
+      <h2 class="h4">Sample Data- And Compute-Intensive Tasks That <br />Leverage High Performance Computing</h2>
+      <div class="highicons__wrap pt-5">
+        <div class="highicons__item">
+          <div class="highicons__iconwrap flexi"><img class="highicons__icon" src="/img/usecases/high-peformance/icon-perf1.svg" alt="" /></div>
+          <div class="highicons__title">Finance</div>
+          <div class="highicons__descr">e.g. fraud-detection, risk management, financial modeling</div>
+        </div>
+        <div class="highicons__item">
+          <div class="highicons__iconwrap flexi"><img class="highicons__icon" src="/img/usecases/high-peformance/icon-perf2.svg" alt="" /></div>
+          <div class="highicons__title">Retail & Hospitality</div>
+          <div class="highicons__descr">e.g. recommendation systems, 360 customer experience</div>
+        </div>
+        <div class="highicons__item">
+          <div class="highicons__iconwrap flexi"><img class="highicons__icon" src="/img/usecases/high-peformance/icon-perf3.svg" alt="" /></div>
+          <div class="highicons__title">Media & Entertainment</div>
+          <div class="highicons__descr">e.g. creating animations, rendering special effects</div>
+        </div>
+        <div class="highicons__item">
+          <div class="highicons__iconwrap flexi"><img class="highicons__icon" src="/img/usecases/high-peformance/icon-perf4.svg" alt="" /></div>
+          <div class="highicons__title">Logistic and transportation</div>
+          <div class="highicons__descr">e.g. logistics planning, detecting potential hazardous situations</div>
+        </div>
+        <div class="highicons__item">
+          <div class="highicons__iconwrap flexi"><img class="highicons__icon" src="/img/usecases/high-peformance/icon-perf5.svg" alt="" /></div>
+          <div class="highicons__title">Biotech</div>
+          <div class="highicons__descr">e.g. drugs and vaccines discovery, sequencing DNA</div>
+        </div>
+      </div>
+    </section>
+    <!-- /.highicons-->
+    <section class="highcases container">
+      <h2 class="h4">High Performance Computing Ignite <br />User Stories</h2>
+      <div class="highcases__one flexi pt-2 pb-4">
+        <div class="highcases__topleft">
+          <div class="highcases__subtitle pb-2">Personalized websites with dynamically changing content</div>
+          <p class="pb-3">Whenever you visit Amazon, Walmart, Booking.com, or other websites, you see personalized content, such as relevant deals made especially for you.</p>
+          <p>
+            Personalized content considering your age, location, preferences, and previous interactions is being processed and displayed in few seconds thanks to high-performance computing tasks that process gigabytes of data within a
+            second.
+          </p>
+        </div>
+        <div class="highcases__topright">
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.youtube.com/watch?v=qYd9GGRC4L0" data-youtube="data-youtube"
+                ><span class="comvideo__txt">An Ignite Compute Grid <br />In The Cloud</span><img src="/img/usecases/high-peformance/video-1.png" alt=""
+              /></a>
+            </div>
+            <div class="pt-1"></div>
+            <div class="comvideo__descr pt-1">
+              <p><strong>HomeAway,</strong> rental website with personalized offer</p>
+            </div>
+          </article>
+        </div>
+      </div>
+      <div class="highcases__two pt-4 pb-4">
+        <div class="highcases__subtitle pb-2">Data-driven modelling and simulations</div>
+        <p>To create a new vaccine or drug you have to run thousands or millions <br />of simulations to come up with the best formula.</p>
+        <div class="highcases__twowrap flexi pt-5">
+          <div class="highcases__twoitem">
+            <article class="comvideo">
+              <div class="comvideo__box">
+                <a class="comvideo__screen" href="https://www.youtube.com/watch?v=PFHb-UuhGkk" data-youtube="data-youtube"
+                  ><span class="comvideo__txt">Data Driven Drug Discovery</span><img src="/img/usecases/high-peformance/video-2.png" alt=""
+                /></a>
+              </div>
+              <div class="pt-1"></div>
+              <div class="comvideo__descr pt-1"></div>
+            </article>
+            <p><strong>E-Therapeutics</strong> uses Apache Ignite capabilities for drug discovery</p>
+          </div>
+          <div class="highcases__twoitem">
+            <article class="comvideo">
+              <div class="comvideo__box">
+                <a class="comvideo__screen" href="https://www.youtube.com/watch?v=NUxdoL-K9Ys" data-youtube="data-youtube"
+                  ><span class="comvideo__txt comvideo__txt--small">How nference.ai Leverages Ignite For Distributed Analytics In The Bioinformatics Domain</span><img src="/img/usecases/high-peformance/video-3.png" alt=""
+                /></a>
+              </div>
+              <div class="pt-1"></div>
+              <div class="comvideo__descr pt-1">
+                <p><strong>nference.ai:</strong> high performance compute APIs used to&nbsp;define different statistical analyses and execute numerical data in&nbsp;real-time</p>
+              </div>
+            </article>
+          </div>
+        </div>
+      </div>
+      <div class="highcases__one flexi pt-4 pb-4">
+        <div class="highcases__topleft">
+          <div class="highcases__subtitle pb-2">Logistic and transportation companies use advanced calculations for logistics planning</div>
+          <p>
+            <strong>Dutch Railways</strong> have thousands of different trains to deliver cargo and people across the country. They need to calculate how all those trains should be moving in real time. These calculations also happen with
+            high compute APIs.
+          </p>
+        </div>
+        <div class="highcases__topright">
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.youtube.com/watch?v=wkCW8YC8eKU" data-youtube="data-youtube"
+                ><span class="comvideo__txt comvideo__txt--small">Detecting Potential Hazardous Situations In The Dutch Railway Planning Using Apache Ignite</span><img src="/img/usecases/high-peformance/video-4.png" alt=""
+              /></a>
+            </div>
+            <div class="pt-1"></div>
+            <div class="comvideo__descr pt-1"></div>
+          </article>
+        </div>
+      </div>
+      <div class="highcases__two pt-4">
+        <div class="highcases__subtitle pb-2">Real-time analytics to enable fast and precise decisions</div>
+        <p>High performance computing allows to process unlimited data sets and analyze <br />them in seconds.</p>
+        <div class="highcases__twowrap flexi pt-5">
+          <div class="highcases__twoitem">
+            <article class="comvideo">
+              <div class="comvideo__box">
+                <a class="comvideo__screen" href="https://www.youtube.com/watch?v=jF9T2cJB6t0" data-youtube="data-youtube"
+                  ><span class="comvideo__txt comvideo__txt--small">High Performance Exposure Management With Apache Ignite</span><img src="/img/usecases/high-peformance/video-5.png" alt=""
+                /></a>
+              </div>
+              <div class="pt-1"></div>
+              <div class="comvideo__descr pt-1"></div>
+            </article>
+            <p><strong>JPMorgan Chase</strong> use Apache Ignite for heavy computations which help to&nbsp;make effective exposure management.</p>
+          </div>
+          <div class="highcases__twoitem">
+            <article class="comvideo">
+              <div class="comvideo__box">
+                <a class="comvideo__screen" href="https://www.youtube.com/watch?v=B8A8yR_e6VM" data-youtube="data-youtube"
+                  ><span class="comvideo__txt">Real Time Exposure Management Using Ignite</span><img src="/img/usecases/high-peformance/video-6.png" alt=""
+                /></a>
+              </div>
+              <div class="pt-1"></div>
+              <div class="comvideo__descr pt-1"></div>
+            </article>
+          </div>
+        </div>
+      </div>
+    </section>
+    <section class="native-bottom container">
+      <div class="native-bottom__grid">
+        <article class="nativebotblock">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-rocket.svg" alt="" /><span>Ready to Start?</span></h3>
+          <p class="nativebotblock__text">Discover our quick start guide and build <br />your first application in 5-10 minutes</p>
+          <a class="nativebotblock__link arrowlink" href="https://ignite.apache.org/docs/latest/" target="_blank">Quick Start Guide</a>
+        </article>
+        <article class="nativebotblock nativebotblock--learn">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-docs.svg" alt="" /><span>Want to View More Use-Cases?</span></h3>
+          <p class="nativebotblock__text">Check out success stories from <br />different industries across the world</p>
+          <a class="nativebotblock__link arrowlink" href="/use-cases/provenusecases.html">Companies Stories</a>
+        </article>
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/use-cases/in-memory-cache.html b/public/use-cases/in-memory-cache.html
new file mode 100644
index 0000000..6b01e60
--- /dev/null
+++ b/public/use-cases/in-memory-cache.html
@@ -0,0 +1,251 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>Multi-Tier Storage | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/native-persistence.css" />
+    <link rel="stylesheet" href="../css/in-memory-cache.css" />
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__blue">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo-white.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="innerhero">
+      <div class="container innerhero__cont">
+        <div class="innerhero__main innerhero__main--long">
+          <div class="innerhero__pre pb-5">Apache Ignite</div>
+          <h1 class="h1 innerhero__h1">Distributed <br />In-Memory Cache</h1>
+          <div class="innerhero__descr pt-2 h5">
+            Improve the performance and scalability of&nbsp;your applications, <br />
+            databases, and microservices with Apache Ignite
+          </div>
+          <div class="innerhero__action"><a class="button innerhero__button" href="https://ignite.apache.org/docs/latest/index">Start Coding</a></div>
+        </div>
+        <img class="innerhero__pic innerhero__pic--inmemory" src="/img/usecases/in-memory-hero.svg" alt="Distributed In-Memory Cache" />
+      </div>
+    </section>
+    <!-- /.innerhero-->
+    <section class="inmememor1 container">
+      <header class="blockheader blockheader--spl flexi">
+        <h2 class="capstext pb-3">What Is In-Memory Cache</h2>
+        <div class="inmememor1__text">
+          <p>In-memory cache is&nbsp;a&nbsp;storage layer placed between applications and databases. The cache keeps your hot data in&nbsp;memory to&nbsp;offload existing databases and accelerate applications.</p>
+        </div>
+      </header>
+    </section>
+    <!-- /.inmememor1-->
+    <section class="inmememor-adv">
+      <div class="container">
+        <header class="blockheader blockheader--spl flexi">
+          <h2 class="h4">Advantages of Distributed In-Memory Cache</h2>
+          <div class="blockheader__right fz20">A distributed in-memory cache is <strong>the most straightforward and scalable</strong> way to accelerate your existing applications and databases, thanks to:</div>
+        </header>
+        <div class="inmememor-adv__wrap">
+          <div class="inmememor-adv__item">
+            <h3 class="h4">Speed</h3>
+            <div class="inmememor-adv__text">Memory as a storage layer provides the&nbsp;lowest latency and highest throughput. Laws of physics.</div>
+          </div>
+          <div class="inmememor-adv__item">
+            <h3 class="h4">Scale</h3>
+            <div class="inmememor-adv__text">Horizontal scalability lets you grow the&nbsp;cluster unlimitedly to accommodate <br />data size and throughput.</div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.inmememor-adv-->
+    <section class="inmememor-api container">
+      <header class="blockheader blockheader--spl flexi">
+        <h2 class="h4 blockheader__left blockheader__left--full">Unlike Standard In-Memory Caches, Apache Ignite <br />Supports Essential Developers APIs</h2>
+      </header>
+      <div class="inmememor-api__wrap flexi">
+        <div class="inmememor-api__item">
+          <img class="inmememor-api__icon" src="/img/features/in-memory/01-ACID-Transactions.svg" alt="" />
+          <p class="fz20 pt-3">ACID transactions <br />to&nbsp;ensure consistency <br />of&nbsp;data</p>
+        </div>
+        <div class="inmememor-api__item">
+          <img class="inmememor-api__icon" src="/img/features/in-memory/02-sql.svg" alt="" />
+          <p class="fz20 pt-3">SQL queries execution</p>
+        </div>
+        <div class="inmememor-api__item">
+          <img class="inmememor-api__icon" src="/img/features/in-memory/03-user.svg" alt="" />
+          <p class="fz20 pt-3">Custom computations, <br />e.g. on Java, available</p>
+        </div>
+      </div>
+    </section>
+    <!-- /.inmememor-api-->
+    <section class="inmememor2 container">
+      <h2 class="h4">Read-Through / Write-Through Caching</h2>
+      <p class="fz20 pt-5"><strong>How It Works</strong></p>
+      <div class="inmememor2__work flexi pt-2">
+        <div class="inmememor2__left">
+          <p>
+            <em>The read-through/write-through caching strategy can be <br />classified as&nbsp;an&nbsp;in-memory, data-grid type of&nbsp;deployment.</em>
+          </p>
+        </div>
+        <div class="inmememor2__right">
+          <p>When Apache Ignite is&nbsp;deployed as&nbsp;a&nbsp;data grid, the application layer begins to&nbsp;treat Ignite as&nbsp;the primary store.</p>
+          <p>As&nbsp;applications write to&nbsp;and read from the data grid, Ignite ensures that all underlying external databases stay updated and are consistent with the in-memory data.</p>
+        </div>
+      </div>
+      <div class="inmememor2__picwrap">
+        <picture
+          ><source media="(min-width: 1024px)" srcset="/img/features/in-memory/write-through-caching.svg" sizes="" />
+          <img src="/img/features/in-memory/write-through-caching-mob.svg" alt=""
+        /></picture>
+      </div>
+      <p class="fz20"><strong>How It Works</strong></p>
+      <div class="inmememor2__work flexi pt-3">
+        <div class="inmememor2__left inmememor2__left--icon">
+          <p>This strategy is recommended for architectures that need to:</p>
+          <ul class="dashlist pt-1">
+            <li>accelerate disk-based databases;</li>
+            <li>create a shared caching layer across various data sources.</li>
+          </ul>
+        </div>
+        <div class="inmememor2__right">
+          <p>Ignite integrates with many databases out-of-the-box and, in&nbsp;write-through or&nbsp;write-behind mode, can synchronize all changes to&nbsp;the databases.</p>
+          <p>The strategy also applies to&nbsp;ACID&nbsp;transactions: Ignite will coordinate and commit a&nbsp;transaction across its in-memory cluster as&nbsp;well as&nbsp;to&nbsp;a&nbsp;relational database.</p>
+          <p>Read-through capability implies that, if&nbsp;a&nbsp;record is&nbsp;missing from memory, a&nbsp;cache can read the data from an&nbsp;external database. Ignite fully supports this capability for key-value APIs.</p>
+          <p>When you use Ignite SQL, you must preload the dataset into memory&mdash;because Ignite SQL can query on-disk data only if&nbsp;the data is&nbsp;stored in&nbsp;native persistence.</p>
+        </div>
+      </div>
+    </section>
+    <!-- /.inmememor2-->
+    <section class="inmememor3 container pt-5">
+      <h2 class="h4">Cache-Aside Deployment</h2>
+      <div class="inmememor2__picwrap">
+        <picture
+          ><source media="(min-width: 1024px)" srcset="/img/features/in-memory/cache-aside-deployment.svg" sizes="" />
+          <img src="/img/features/in-memory/cache-aside-deployment-mob.svg" alt=""
+        /></picture>
+      </div>
+      <p class="fz20 pt-3"><strong>When It Works</strong></p>
+      <div class="inmememor2__work flexi pt-3">
+        <div class="inmememor2__left">
+          <p>This strategy works well in two cases:</p>
+          <ul class="pt-1">
+            <li>1. The cached data is relatively static, i.e. not updated frequently</li>
+            <li>2. A temporary data lag is allowed between the primary store and the cache</li>
+          </ul>
+        </div>
+        <div class="inmememor2__right">
+          <p>It&rsquo;s usually assumed that changes will be&nbsp;fully replicated eventually and, <br />thus, the cache and the primary store will become consistent.</p>
+        </div>
+      </div>
+      <div class="inmememor3__bottom">
+        <h3 class="fz20">Cach-Aside Deployment And Native Persistence</h3>
+        <div class="inmememor3__botwrap flexi pt-3">
+          <div class="inmememor2__left">
+            <p>
+              When Apache Ignite is&nbsp;deployed in&nbsp;a&nbsp;cache-aside configuration, its native persistence can be&nbsp;used as&nbsp;a&nbsp;disk store for Ignite datasets. Native persistence allows for elimination of&nbsp;the
+              time-consuming cache warm-up step.
+            </p>
+            <p>
+              As&nbsp;native persistence maintains a&nbsp;full copy of&nbsp;data on&nbsp;disk, you can cache a&nbsp;subset of&nbsp;records in&nbsp;memory. If&nbsp;a&nbsp;required data record is&nbsp;missing from memory, then Ignite reads
+              the record from the disk automatically, regardless of&nbsp;which API you use&nbsp;&mdash; whether SQL, key-value, or&nbsp;scan queries.
+            </p>
+          </div>
+          <div class="inmememor2__right">
+            <ul class="inmememor3__checklist">
+              <li>Seconds needed for recovery</li>
+              <li>Full copy of cached records is duplicated on disk</li>
+              <li>Use any API: SQL, key-value, or scan queries</li>
+            </ul>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.inmememor3-->
+    <section class="native-bottom container">
+      <div class="native-bottom__grid">
+        <article class="nativebotblock">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-rocket.svg" alt="" /><span>Ready to Start?</span></h3>
+          <p class="nativebotblock__text">Discover our quick start guide and build your first application in 5-10 minutes</p>
+          <a class="nativebotblock__link arrowlink" href="/docs/quick-start.html" target="_blank">Quick Start Guide </a>
+        </article>
+        <article class="nativebotblock nativebotblock--learn">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-docs.svg" alt="" /><span>Want to View More Use-Cases?</span></h3>
+          <p class="nativebotblock__text">Read In-Memory Data Grid article</p>
+          <a class="nativebotblock__link arrowlink" href="#" target="_blank">In-Memory Data Grid</a>
+        </article>
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/use-cases/in-memory-data-grid.html b/public/use-cases/in-memory-data-grid.html
new file mode 100644
index 0000000..e643c2c
--- /dev/null
+++ b/public/use-cases/in-memory-data-grid.html
@@ -0,0 +1,288 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>In-Memory Data Grid | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/native-persistence.css" />
+    <link rel="stylesheet" href="../css/compute-apis.css" />
+    <link rel="stylesheet" href="../css/digital-hub.css" />
+    <link rel="stylesheet" href="../css/database.css" />
+    <link rel="stylesheet" href="../css/datagrid.css" />
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__blue">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo-white.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="innerhero">
+      <div class="container innerhero__cont">
+        <div class="innerhero__main">
+          <h1 class="h1 innerhero__h1">In-Memory Data Grid</h1>
+          <div class="h1 pt-2">With Apache Ignite</div>
+          <div class="innerhero__descr pt-2 h5">
+            Use an advanced read-through / write-through cache<br />
+            that is deployed on top of one or several databases
+          </div>
+          <div class="innerhero__action"><a class="button innerhero__button" href="https://ignite.apache.org/docs/latest/index">Start Coding</a></div>
+        </div>
+        <img class="innerhero__pic innerhero__pic--datagrid" src="/img/usecases/datagrid/hero-image.svg" alt="hero-image" />
+      </div>
+    </section>
+    <!-- /.innerhero-->
+    <section class="grid1">
+      <div class="container">
+        <h2 class="grid1__h2 h4">In-memory data grid with Apache Ignite <strong>accelerates and scales</strong> your existing databases and data stores.</h2>
+      </div>
+    </section>
+    <!-- /.grid1-->
+    <section class="hub1 grid2">
+      <div class="container">
+        <h2 class="compute2__h2">In-Memory Data Grid Overview</h2>
+        <div class="hub1__block flexi">
+          <div class="hub1__info">
+            <h3 class="h5 hub1__title">What is in-memory data-grid?</h3>
+            <p class="hub1__text">An in-memory data grid (IMDG) is an advanced read-through/write-through cache that is deployed on top of multiple databases.</p>
+            <p class="hub1__text">Applications write to and read from the grid, and the grid propagates changes to the underlying data stores in a consistent way.</p>
+            <h3 class="h5 hub1__title hub1__titleend">How does an in-memory data grid work?</h3>
+            <p class="hub1__text">Co-location is the main IMDG feature. It organizes related data for storage in the same node and enables low latency with high throughput computing.</p>
+            <p class="hub1__text">Co-located applications can access in-memory data without network movement.</p>
+            <p class="hub1__text">In in-memory data grid queries are processed at high speeds and scaled to multiple nodes, because there's no distance between data and applications.</p>
+          </div>
+          <img class="hub1__image" src="/img/usecases/datagrid/image.svg" alt="image" />
+        </div>
+      </div>
+    </section>
+    <!-- /.hub1 -->
+    <section class="base3">
+      <div class="container">
+        <h2 class="base3__h2 h4">Apache Ignite as a data grid supports a variety of developer APIs</h2>
+        <div class="base3__blocks flexi">
+          <div class="base3__block">
+            <h3 class="base3__h3">Essential Developer APIs</h3>
+            <div class="base3__images flexi">
+              <div class="base3__item flexi">
+                <img class="base3__image" src="/img/features/03-distributed-SQL.svg" alt="sql" />
+                <div class="base3__subtext">SQL</div>
+              </div>
+              <div class="base3__item flexi">
+                <img class="base3__image" src="/img/features/05-key-value-APIs.svg" alt="apis" />
+                <div class="base3__subtext">Key-value</div>
+              </div>
+              <div class="base3__item flexi">
+                <img class="base3__image" src="/img/features/04-ACID-transactions.svg" alt="acid" />
+                <div class="base3__subtext">
+                  ACID<br />
+                  transactions
+                </div>
+              </div>
+            </div>
+            <p class="base3__text">Enable you to request, join, and group distributed datasets.</p>
+          </div>
+          <div class="base3__block">
+            <h3 class="base3__h3">High Performance Computing APIs</h3>
+            <div class="base3__images flexi">
+              <div class="base3__item flexi">
+                <img class="base3__image" src="/img/features/06-compute-APIs.svg" alt="sql" />
+                <div class="base3__subtext">Compute</div>
+              </div>
+              <div class="base3__item flexi">
+                <img class="base3__image" src="/img/features/07-machine-learning.svg" alt="apis" />
+                <div class="base3__subtext">
+                  Machine<br />
+                  learning
+                </div>
+              </div>
+              <div class="base3__item flexi">
+                <img class="base3__image" src="/img/features/08-services.svg" alt="acid" />
+                <div class="base3__subtext">Services</div>
+              </div>
+            </div>
+            <p class="base3__text">Execute logic close to the data, thus eliminating expensive data shuffling over the network.</p>
+          </div>
+          <div class="base3__block">
+            <h3 class="base3__h3">Real-Time Streaming APIs</h3>
+            <div class="base3__images flexi">
+              <div class="base3__item flexi">
+                <img class="base3__image" src="/img/features/09-streaming.svg" alt="sql" />
+                <div class="base3__subtext">Streaming</div>
+              </div>
+              <div class="base3__item flexi">
+                <img class="base3__image" src="/img/features/10-continuous-queries.svg" alt="apis" />
+                <div class="base3__subtext">
+                  Continuous<br />
+                  Queries
+                </div>
+              </div>
+              <div class="base3__item flexi">
+                <img class="base3__image" src="/img/features/11-messaging.svg" alt="acid" />
+                <div class="base3__subtext">Messaging</div>
+              </div>
+            </div>
+            <p class="base3__text base3__textend">Allow the seamless implementation of event-driven architectures.</p>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.base3 -->
+    <section class="grid4">
+      <div class="container">
+        <div class="grid4__blocks flexi">
+          <h2 class="grid4__h2 h5">Native Persistence And In-Memory Data</h2>
+          <div class="grid4__block">
+            <p class="grid4__text">
+              When <a href="/arch/native-persistence.html">Native Persistence</a> is enabled, Ignite stores both data and indexes<br />
+              on disk, thus eliminating the time-consuming cache warm-up step.
+            </p>
+            <p class="grid4__text pt-1">
+              Native Persistence keeps a full copy of data on disk, so you are free<br />
+              to cache a subset of records in memory.
+            </p>
+            <p class="grid4__text pt-1">If a required data record is missing from memory, Ignite reads the record from the disk automatically.</p>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.grid4-->
+    <section class="grid5">
+      <div class="container">
+        <h2 class="grid5__h2 h4">In-memory data grid is frequently used when a business works with large datasets at low latency and high throughput.</h2>
+        <div class="grid5__blocks flexi">
+          <article class="native2item grid5__item"><p class="grid5__text">Increase the performance and scalability of real-time applications and external databases.</p></article>
+          <article class="native2item grid5__item">
+            <p class="grid5__text">Support<a href="https://ignite.apache.org/use-cases/high-performance-computing.html" target="_blank">high-performance computing.</a></p>
+          </article>
+          <article class="native2item grid5__item"><p class="grid5__text">Cache data that is scattered across databases.</p></article>
+        </div>
+      </div>
+    </section>
+    <!-- /.grid5                -->
+    <section class="hub5">
+      <div class="container">
+        <h2 class="compute2__h2">In-Memory Data Grid Ignite User Stories</h2>
+        <div class="highcases__two">
+          <div class="hub5__twowrap flexi pt-5">
+            <div class="hub5__item">
+              <article class="comvideo">
+                <div class="comvideo__box">
+                  <a class="comvideo__screen" href="https://www.youtube.com/watch?v=78UE11GrWzk&amp;t=2586s " data-youtube="data-youtube"
+                    ><span class="comvideo__txt comvideo__txt--white hub5__video">Leveraging In Memory Data Grid For Faster Time To Market </span><img src="/img/usecases/database/one-video.png" alt=""
+                  /></a>
+                </div>
+                <div class="pt-1"></div>
+                <div class="comvideo__descr pt-1"></div>
+              </article>
+              <h3 class="h4 hub5__title">Agilent Technologies Inc.</h3>
+              <p class="hub5__text base5__text">improved its online channel by implementing in-memory solutions. They leveraged in-memory data grid to achieve faster time-to-market, and data flexibility across digital channels.</p>
+            </div>
+            <div class="hub5__item">
+              <article class="comvideo">
+                <div class="comvideo__box">
+                  <a class="comvideo__screen" href="https://www.youtube.com/watch?v=CPmwnjDJ1Sk&amp;feature=emb_imp_woyt" data-youtube="data-youtube"
+                    ><span class="comvideo__txt comvideo__txt--white comvideo__txthub hub5__video">Embracing The Service Consumption Shift In Banking</span><img src="/img/usecases/database/two-video.png" alt=""
+                  /></a>
+                </div>
+                <div class="pt-1"></div>
+                <div class="comvideo__descr pt-1"></div>
+              </article>
+              <h3 class="h4 hub5__title">ING Bank</h3>
+              <p class="hub5__text base5__text base5__textend">used in-memory computing platforms to meet increasing demand for performance and scalability.</p>
+            </div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <section class="native-bottom container">
+      <div class="native-bottom__grid">
+        <article class="nativebotblock">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-rocket.svg" alt="" /><span>Ready to Start?</span></h3>
+          <p class="nativebotblock__text">
+            Discover our quick start guide and build your first<br />
+            application in 5-10 minutes
+          </p>
+          <a class="nativebotblock__link arrowlink" href="https://ignite.apache.org/docs/latest/" target="_blank">Quick Start Guide</a>
+        </article>
+        <article class="nativebotblock nativebotblock--learn">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-docs.svg" alt="" /><span>Want to View More Use-Cases?</span></h3>
+          <p class="nativebotblock__text">Read the In-Memory Database article</p>
+          <a class="nativebotblock__link arrowlink" href="https://ignite.apache.org/use-cases/in-memory-database.html" target="_blank">In-Memory Database</a>
+        </article>
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/use-cases/in-memory-database.html b/public/use-cases/in-memory-database.html
new file mode 100644
index 0000000..6ed8abc
--- /dev/null
+++ b/public/use-cases/in-memory-database.html
@@ -0,0 +1,296 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>In-Memory Database | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/native-persistence.css" />
+    <link rel="stylesheet" href="../css/compute-apis.css" />
+    <link rel="stylesheet" href="../css/digital-hub.css" />
+    <link rel="stylesheet" href="../css/database.css" />
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__blue">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo-white.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="innerhero">
+      <div class="container innerhero__cont">
+        <div class="innerhero__main">
+          <h1 class="h1 innerhero__h1">In-Memory Database</h1>
+          <div class="h1 pt-2">With Apache Ignite</div>
+          <div class="innerhero__descr pt-2 h5">
+            In-memory database that scales horizontally across memory<br />
+            and disk with full SQL support
+          </div>
+          <div class="innerhero__action"><a class="button innerhero__button" href="https://ignite.apache.org/docs/latest/index">Start Coding</a></div>
+        </div>
+        <img class="innerhero__pic innerhero__pic--database" src="/img/usecases/database/hero-image.svg" alt="hero-image" />
+      </div>
+    </section>
+    <!-- /.innerhero-->
+    <section class="hub1">
+      <div class="container">
+        <h2 class="compute2__h2">In-Memory Database Overview</h2>
+        <div class="hub1__block flexi">
+          <div class="hub1__info">
+            <h3 class="h5 hub1__title">What is an in-memory database?</h3>
+            <p class="hub1__text">An in-memory database (IMDB) is a data management system that stores data primarily in the computer’s main memory.</p>
+            <h3 class="h5 hub1__title hub1__titleend">How an in-memory database works?</h3>
+            <p class="hub1__text">In-memory databases rely on spinning disks for data storage. IMDBs allow mission-critical applications to benefit from faster response times than disk-based databases.</p>
+          </div>
+          <img class="hub1__image" src="/img/usecases/database/image.svg" alt="image" />
+        </div>
+      </div>
+    </section>
+    <!-- /.hub1 -->
+    <section class="base1">
+      <div class="container">
+        <h2 class="base1__h2 h5">Apache Ignite as a distributed in-memory database scales horizontally across memory and disk with no compromises</h2>
+        <div class="base1__blocks flexi">
+          <div class="base1__block">
+            <p class="base1__text">Apache Ignite works with memory, disk, and Intel Optane as active storage tiers.</p>
+            <p class="base1__text pt-1">This <a href="/arch/multi-tier-storage.html">multi-tier</a> architecture combines, in one system, the advantages of in-memory computing with disk durability and strong consistency.</p>
+          </div>
+          <div class="base1__block">
+            <div class="base1__item flexi">
+              <div class="compute2-points__item fz20"></div>
+              <h3 class="base1__black">Speed of memory</h3>
+            </div>
+            <div class="base1__item flexi">
+              <div class="compute2-points__item fz20"></div>
+              <h3 class="base1__black">Strong consistency</h3>
+            </div>
+            <div class="base1__item flexi">
+              <div class="compute2-points__item fz20"></div>
+              <h3 class="base1__black">Durability of disk</h3>
+            </div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.base1-->
+    <section class="compute2">
+      <div class="container">
+        <h2 class="compute2__h2">Advantages Of Ignite Multi-Tiered Architecture</h2>
+        <div class="compute2__grid flexi hub2__grid">
+          <div class="compute2item hub2item">
+            <div class="compute2-points__item fz20"></div>
+            <div class="compute2item__block">
+              <h3 class="fz20 compute2item__title">Instantaneous cluster restarts</h3>
+              <p class="compute2__text base2__text">Ignite becomes fully operational from disk upon a cluster startup or restarts without requiring to preload or warm up the memory tier.</p>
+            </div>
+          </div>
+          <div class="compute2item hub2item">
+            <div class="compute2-points__item fz20"></div>
+            <div class="compute2item__block">
+              <h3 class="fz20 compute2item__title">Multi-tiered storage</h3>
+              <p class="compute2__text base2__text">Ignite treats disk as an active storage layer allowing to cache a subset of the data in memory and query both in-memory and disk-only records with SQL and all other available</p>
+            </div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.compute2-->
+    <section class="base3">
+      <div class="container">
+        <h2 class="base3__h2 h4">Apache Ignite as a data grid supports a variety of developer APIs</h2>
+        <div class="base3__blocks flexi">
+          <div class="base3__block">
+            <h3 class="base3__h3">Essential Developer APIs</h3>
+            <div class="base3__images flexi">
+              <div class="base3__item flexi">
+                <img class="base3__image" src="/img/features/03-distributed-SQL.svg" alt="sql" />
+                <div class="base3__subtext">SQL</div>
+              </div>
+              <div class="base3__item flexi">
+                <img class="base3__image" src="/img/features/05-key-value-APIs.svg" alt="apis" />
+                <div class="base3__subtext">Key-value</div>
+              </div>
+              <div class="base3__item flexi">
+                <img class="base3__image" src="/img/features/04-ACID-transactions.svg" alt="acid" />
+                <div class="base3__subtext">
+                  ACID<br />
+                  transactions
+                </div>
+              </div>
+            </div>
+            <p class="base3__text">Enable you to request, join, and group distributed datasets.</p>
+          </div>
+          <div class="base3__block">
+            <h3 class="base3__h3">High Performance Computing APIs</h3>
+            <div class="base3__images flexi">
+              <div class="base3__item flexi">
+                <img class="base3__image" src="/img/features/06-compute-APIs.svg" alt="sql" />
+                <div class="base3__subtext">Compute</div>
+              </div>
+              <div class="base3__item flexi">
+                <img class="base3__image" src="/img/features/07-machine-learning.svg" alt="apis" />
+                <div class="base3__subtext">
+                  Machine<br />
+                  learning
+                </div>
+              </div>
+              <div class="base3__item flexi">
+                <img class="base3__image" src="/img/features/08-services.svg" alt="acid" />
+                <div class="base3__subtext">Services</div>
+              </div>
+            </div>
+            <p class="base3__text">Execute logic close to the data, thus eliminating expensive data shuffling over the network.</p>
+          </div>
+          <div class="base3__block">
+            <h3 class="base3__h3">Real-Time Streaming APIs</h3>
+            <div class="base3__images flexi">
+              <div class="base3__item flexi">
+                <img class="base3__image" src="/img/features/09-streaming.svg" alt="sql" />
+                <div class="base3__subtext">Streaming</div>
+              </div>
+              <div class="base3__item flexi">
+                <img class="base3__image" src="/img/features/10-continuous-queries.svg" alt="apis" />
+                <div class="base3__subtext">
+                  Continuous<br />
+                  Queries
+                </div>
+              </div>
+              <div class="base3__item flexi">
+                <img class="base3__image" src="/img/features/11-messaging.svg" alt="acid" />
+                <div class="base3__subtext">Messaging</div>
+              </div>
+            </div>
+            <p class="base3__text base3__textend">Allow the seamless implementation of event-driven architectures.</p>
+          </div>
+        </div>
+      </div>
+    </section>
+    <section class="hub5">
+      <div class="container">
+        <h2 class="compute2__h2">In-Memory Database Ignite User Stories</h2>
+        <div class="highcases__two">
+          <div class="hub5__twowrap flexi pt-5">
+            <div class="hub5__item">
+              <article class="comvideo">
+                <div class="comvideo__box">
+                  <a class="comvideo__screen" href="https://www.youtube.com/watch?v=-t-Syy9blXQ" data-youtube="data-youtube"
+                    ><span class="comvideo__txt comvideo__txt--white hub5__video">Apache Ignite As A Hybrid Transactional-Analytical Processing Solution At A Large Investment Bank</span
+                    ><img src="/img/usecases/database/one-video.png" alt=""
+                  /></a>
+                </div>
+                <div class="pt-1"></div>
+                <div class="comvideo__descr pt-1"></div>
+              </article>
+              <h3 class="h4 hub5__title">BNP Paribas</h3>
+              <p class="hub5__text base5__text">
+                with the help of Apache Ignite managed to design, build, and optimize a hybrid transactional-analytical processing (HTAP) solution. This enabled the bank to make key business decisions in real-time.
+              </p>
+            </div>
+            <div class="hub5__item">
+              <article class="comvideo">
+                <div class="comvideo__box">
+                  <a class="comvideo__screen" href="https://www.youtube.com/watch?v=B8A8yR_e6VM&amp;t=2s" data-youtube="data-youtube"
+                    ><span class="comvideo__txt comvideo__txt--white hub5__video">Real Time Exposure Management Using Ignite</span><img src="/img/usecases/datagrid/two-video.png" alt=""
+                  /></a>
+                </div>
+                <div class="pt-1"></div>
+                <div class="comvideo__descr pt-1"></div>
+              </article>
+              <h3 class="h4 hub5__title">JP MorganChase</h3>
+              <p class="hub5__text base5__text">faced an increasing need to apply transformations to large datasets in real-time. To meet this need, their team selected Ignite to achieve persistence, caching and integrated compute.</p>
+            </div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <section class="native-bottom container">
+      <div class="native-bottom__grid">
+        <article class="nativebotblock">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-rocket.svg" alt="" /><span>Ready to Start?</span></h3>
+          <p class="nativebotblock__text">
+            Discover our quick start guide and build your first<br />
+            application in 5-10 minutes
+          </p>
+          <a class="nativebotblock__link arrowlink" href="https://ignite.apache.org/docs/latest/" target="_blank">Quick Start Guide</a>
+        </article>
+        <article class="nativebotblock nativebotblock--learn">
+          <h3 class="h4 nativebotblock__title"><img class="nativebotblock__icon" src="/img/features/native-docs.svg" alt="" /><span>Want to View More Use-Cases?</span></h3>
+          <p class="nativebotblock__text">Read the In-Memory Cache article</p>
+          <a class="nativebotblock__link arrowlink" href="https://ignite.apache.org/use-cases/in-memory-cache.html" target="_blank">In-Memory Cache</a>
+        </article>
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/use-cases/index.html b/public/use-cases/index.html
new file mode 100644
index 0000000..628b1ff
--- /dev/null
+++ b/public/use-cases/index.html
@@ -0,0 +1,181 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>Use Cases | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/usecases.css" />
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__blue">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo-white.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="innerhero">
+      <div class="container innerhero__cont">
+        <div class="innerhero__main">
+          <div class="innerhero__pre pb-3">Apache Ignite</div>
+          <h1 class="h1 innerhero__h1">Use Cases</h1>
+          <div class="innerhero__descr pt-2 h5">
+            With plenty of capabilities, Apache Ignite finds its route in many use-cases, ranging from a basic distributed cache, distributed database for hybrid transactional/analytical processing, to a sophisticated digital integration
+            hub.
+          </div>
+        </div>
+        <img class="innerhero__pic innerhero__pic--usecase" src="/img/usecases/head-bg.svg" alt="Apache Ignite Use Cases" />
+      </div>
+    </section>
+    <section class="usecase2" id="usecase2">
+      <div class="container">
+        <p class="blockcapslead">Widespread use-cases</p>
+        <header class="blockheader flexi">
+          <h2 class="h4 blockheader__left">
+            Application Acceleration<br />
+            And Scale Out
+          </h2>
+          <div class="blockheader__right fz20"><p>Accelerate your existing applications by 100x or more by using in-memory computing. There are several deployment options.</p></div>
+        </header>
+        <div class="usecase2__wrap">
+          <div class="usecasecard cardsimple">
+            <h4 class="cardsimple__title">In-Memory Cache</h4>
+            <div class="cardsimple__text">Cache data with extra capabilities: query with SQL and update atomically by using ACID transactions.</div>
+            <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="/use-cases/in-memory-cache.html">Learn More</a></div>
+          </div>
+          <div class="usecasecard cardsimple">
+            <h4 class="cardsimple__title">In-Memory Data Grid</h4>
+            <div class="cardsimple__text">Use an advanced read-through / write-through cache that is deployed on top of one or several databases.</div>
+            <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="/use-cases/in-memory-data-grid.html">Learn More</a></div>
+          </div>
+          <div class="usecasecard cardsimple">
+            <h4 class="cardsimple__title">In-Memory Database</h4>
+            <div class="cardsimple__text">Use Apache Ignite as an ultra-fast and horizontally scalable in-memory database.</div>
+            <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="/use-cases/in-memory-database.html">Learn More</a></div>
+          </div>
+          <div class="usecasecard cardsimple">
+            <h4 class="cardsimple__title">High-Performance Computing</h4>
+            <div class="cardsimple__text cardsimple__text--long">
+              Execute kilobyte-size custom code over petabytes of data. Turn your Ignite database into a distributed supercomputer for low-latency calculations, complex analytics, and machine learning.
+            </div>
+            <div class="cardsimple__bottom"><a class="cardsimple__button button button--shadow" href="/use-cases/high-performance-computing.html">Learn More</a></div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.usecase2-->
+    <section class="usecase3">
+      <div class="container">
+        <div class="blockheader usecase3__block flexi">
+          <h2 class="h4 blockheader__left">Distributed Database For HTAP Workloads</h2>
+          <div class="blockheader__right fz20">
+            <p>Build modern applications that support transactional and analytical workloads by using Ignite as&nbsp;a&nbsp;database that scales beyond available memory capacity.</p>
+            <p>Ignite allocates memory for your hot data and goes to disk whenever applications query cold records.</p>
+          </div>
+        </div>
+        <div class="blockheader usecase3__block flexi">
+          <h2 class="h4 blockheader__left">Digital Integration Hub</h2>
+          <div class="blockheader__right fz20">
+            <p>Аn advanced platform architecture that aggregates multiple back-end systems and databases into a low-latency and shared data store.</p>
+            <a class="blockheader__button button button--shadow" href="/use-cases/digital-integration-hub.html">Learn More</a>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.usecase3-->
+    <section class="usecase4">
+      <div class="container">
+        <p class="blockcapslead">Other use-cases</p>
+        <div class="usecase4__wrap">
+          <div class="usecasecard cardsimple">
+            <h4 class="cardsimple__title">Key-Value Store</h4>
+            <div class="cardsimple__text">Access the cluster with key-value requests or take advantage of APIs available exclusively in Ignite.</div>
+            <div class="cardsimple__bottom"><a class="cardsimple__button button" href="/use-cases/key-value-store.html">Learn More</a></div>
+          </div>
+          <div class="usecasecard cardsimple">
+            <h4 class="cardsimple__title">Apache Spark Performance Acceleration</h4>
+            <div class="cardsimple__text">Accelerate the performance of Apache Spark® by keeping data in a shared Apache Ignite® in-memory cluster.</div>
+            <div class="cardsimple__bottom"><a class="cardsimple__button button" href="/use-cases/spark-acceleration.html">Learn More</a></div>
+          </div>
+          <div class="usecasecard cardsimple">
+            <h4 class="cardsimple__title">Apache Hadoop Performance Acceleration</h4>
+            <div class="cardsimple__text">Get real-time analytics across Apache™ Hadoop® operational and&nbsp;historical data silos.</div>
+            <div class="cardsimple__bottom"><a class="cardsimple__button button" href="/use-cases/hadoop-acceleration.html">Learn More</a></div>
+          </div>
+        </div>
+      </div>
+    </section>
+    <!-- /.usecase4--><a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/public/use-cases/provenusecases.html b/public/use-cases/provenusecases.html
new file mode 100644
index 0000000..b5801e2
--- /dev/null
+++ b/public/use-cases/provenusecases.html
@@ -0,0 +1,430 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
+    <title>Powered By | Apache Ignite</title>
+    <link rel="stylesheet" href="/js/vendor/hystmodal/hystmodal.min.css" />
+    <link rel="stylesheet" href="/js/vendor/swiper/swiper-bundle.min.css" />
+    <link rel="stylesheet" href="/css/utils.css" />
+    <link rel="stylesheet" href="/css/site.css" />
+    <link rel="stylesheet" href="/css/media.css" media="only screen and (max-width:1199px)" />
+    <link rel="icon" type="image/png" href="/img/favicon.png" />
+    <link rel="stylesheet" href="../css/usecases.css" />
+  </head>
+  <body>
+    <!-- MOBILE MENU START -->
+    <div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+      <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+          <button data-hystclose class="hystmodal__close">Close</button>
+          <div class="mobmenu__wrap">
+            <a href="/" class="mobmenu__logo"><img src="/img/logo.svg" alt="Логотип" /></a>
+            <div class="mobmenu__menu">
+              <div class="mobmenu__h1 berlin">Navigation</div>
+              <ul>
+                <li>
+                  <a href="/index.html">Get started</a>
+                </li>
+                <li>
+                  <a href="/features/">Features</a>
+                </li>
+                <li>
+                  <a href="/community.html">Community</a>
+                </li>
+                <li>
+                  <a href="/use-cases/provenusecases.html">Powered by</a>
+                </li>
+                <li>
+                  <a href="/docs.html">Docs</a>
+                </li>
+              </ul>
+            </div>
+            <!-- //mobmenu__menu -->
+          </div>
+          <!-- //mobmenu__wrap -->
+        </div>
+        <!-- //mobmenu -->
+      </div>
+    </div>
+    <!-- MOBILE MENU END -->
+    <header class="hdr hdr__grey">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a class="hdrmenu__current" href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <header class="hdrfloat">
+      <div class="cmtyhero__wrap flexi">
+        <button class="hdr__burger" data-menumodal="#jsMenuModal"><img src="/img/menu.svg" alt="" /></button><a class="hdr__logo" href="/"><img class="hdr__logoimg" src="/img/logo.svg" alt="" /></a
+        ><a class="button hdr__button" href="https://ignite.apache.org/download.cgi" target="_blank">Download Ignite 2.11 </a>
+        <nav class="hdrmenu">
+          <ul class="flexi">
+            <li><a href="/">Get started</a></li>
+            <li><a href="/features">Features</a></li>
+            <li><a href="/community.html">Community</a></li>
+            <li><a class="hdrmenu__current" href="/use-cases/provenusecases.html">Powered by</a></li>
+            <li><a href="/docs.html">Docs</a></li>
+          </ul>
+        </nav>
+      </div>
+    </header>
+    <section class="grayhero">
+      <div class="container">
+        <h1 class="grayhero__h1 h1">Apache Ignite Is Chosen By&nbsp;Leading Companies Across The World</h1>
+        <div class="grayhero__logos flexi">
+          <span class="grayhero__logo"><img src="/img/poweredby/logos/microsoft.svg" alt="" /></span><span class="grayhero__logo"><img src="/img/poweredby/logos/netflix.svg" alt="" /></span
+          ><span class="grayhero__logo"><img src="/img/poweredby/logos/apple.png" alt="" /></span><span class="grayhero__logo"><img src="/img/poweredby/logos/dreamworks.png" alt="" /></span
+          ><span class="grayhero__logo"><img src="/img/poweredby/logos/yahoo.svg" alt="" /></span><span class="grayhero__logo"><img src="/img/poweredby/logos/bloomberg.svg" alt="" /></span
+          ><span class="grayhero__logo"><img src="/img/poweredby/logos/sberbank.svg" alt="" /></span><span class="grayhero__logo"><img src="/img/poweredby/logos/paypal.svg" alt="" /></span
+          ><span class="grayhero__logo"><img src="/img/poweredby/logos/banco-do-brasil.svg" alt="" /></span>
+        </div>
+      </div>
+    </section>
+    <!-- /.grayhero-->
+    <section class="powered2 container">
+      <h2 class="h4">Explore Featured Stories</h2>
+      <p class="powered2__descr h5 pt-2">You can find dozens of&nbsp;Apache Ignite case-studies across various industries:</p>
+      <div class="powered2__grid pt-5">
+        <div class="powered2item">eCommerce</div>
+        <div class="powered2item">Pharma & Healthcare</div>
+        <div class="powered2item">Financial Services</div>
+        <div class="powered2item">Banking</div>
+        <div class="powered2item">Internet of things</div>
+        <div class="powered2item">Logistics & Transportation</div>
+        <div class="powered2item">Retail</div>
+        <div class="powered2item">Leisure & Hospitality</div>
+        <div class="powered2item">Entertainment</div>
+        <div class="powered2item">Defense</div>
+        <div class="powered2item">Gaming</div>
+        <div class="powered2item">Biotech</div>
+        <div class="powered2item">Software & SaaS</div>
+        <div class="powered2item">Telecommunications</div>
+      </div>
+    </section>
+    <!-- /.powered2-->
+    <section class="poweredbanner container">
+      <div class="poweredbanner__bg flexi">
+        <div class="poweredbanner__left flexi">
+          <h3 class="h4">Do&nbsp;you have an&nbsp;Apache Ignite use-case to&nbsp;share?</h3>
+          <p class="pt-1 fz20">Reach&nbsp;us out on&nbsp;the Ignite dev list, and we&rsquo;ll add it&nbsp;to&nbsp;this page</p>
+        </div>
+        <div class="poweredbanner__right"><a class="button poweredbanner__button" href="#">Lets go</a></div>
+      </div>
+    </section>
+    <!-- /.poweredbanner-->
+    <section class="poweredvideos container">
+      <div class="poweredvideos__grid">
+        <article class="comvideo">
+          <div class="comvideo__box">
+            <a class="comvideo__screen" href="https://www.youtube.com/watch?v=3FFexcYIpmA" data-youtube="data-youtube"
+              ><span class="comvideo__txt">Leveraging In&nbsp;Memory Compute Grids With Core Systems of&nbsp;Record</span><img src="/img/poweredby/videos/001.png" alt=""
+            /></a>
+          </div>
+          <h4 class="h4 pt-2 comvideo__title">IBM</h4>
+          <div class="comvideo__descr pt-1"><p>Apache Ignite is&nbsp;used for IBM Z&nbsp;Mainframes workloads acceleration.</p></div>
+        </article>
+        <article class="comvideo">
+          <div class="comvideo__box">
+            <a class="comvideo__screen" href="https://www.youtube.com/watch?v=Mhtt2QL_qCQ" data-youtube="data-youtube"
+              ><span class="comvideo__txt comvideo__txt--black">How To&nbsp;Use Apache Ignite To&nbsp;Rescue The Backend Of&nbsp;A&nbsp;Bank</span><img src="/img/poweredby/videos/002.png" alt=""
+            /></a>
+          </div>
+          <h4 class="h4 pt-2 comvideo__title">Raiffeisen Bank</h4>
+          <div class="comvideo__descr pt-1">
+            <p>As users transition to digital channels, the load on the bank's systems has increased.</p>
+            <p class="comvideo__gray">For example, since the beginning of 2020, the number of requests to the ABS subsystems from Raiffeisen-Online has grown by a third.</p>
+            <p>Therefore, load reduction and system scaling are constant and top priorities.</p>
+          </div>
+        </article>
+        <article class="comvideo">
+          <div class="comvideo__box">
+            <a class="comvideo__screen" href="https://www.youtube.com/watch?v=z28rthKIrDk" data-youtube="data-youtube"
+              ><span class="comvideo__txt">S9D Using Apache Ignite As&nbsp;A&nbsp;Part Of&nbsp;Real Time Campaigning</span><img src="/img/poweredby/videos/003.png" alt=""
+            /></a>
+          </div>
+          <h4 class="h4 pt-2 comvideo__title">Teradata</h4>
+          <div class="comvideo__descr pt-1"><p>Apache Ignite usage for handling real-time marketing campaigns</p></div>
+        </article>
+        <article class="comvideo">
+          <div class="comvideo__box">
+            <a class="comvideo__screen" href="https://techblog.yahoo.co.jp/oss/yahoo_shopping_purchases_ignite/" target="_blank"
+              ><span class="comvideo__txt">&laquo;Recent Purchases&raquo; With Apache Ignite</span><img src="/img/poweredby/videos/004.png" alt=""
+            /></a>
+          </div>
+          <h4 class="h4 pt-2 comvideo__title">Yahoo! Japan</h4>
+          <div class="comvideo__descr pt-1">
+            <p>Post explains why Yahoo! Japan chose Apache Ignite for a highly scalable caching system that can process tens of thousands of requests per second.</p>
+            <p class="comvideo__gray">
+              SQL queries were performed via thin clients since they do not require a standard topology join and therefore are easier to be handled through container services. After a successful POC, Ignite fully met their requirements and
+              was quickly rolled into production.
+            </p>
+          </div>
+        </article>
+        <article class="comvideo">
+          <div class="comvideo__box">
+            <a class="comvideo__screen" href="https://techblog.yahoo.co.jp/oss/yahoo_shopping_purchases_ignite/" target="_blank"
+              ><span class="comvideo__txt">In&nbsp;Memory Computing Patterns For High Volume, Real Time Applications</span><img src="/img/poweredby/videos/005.png" alt=""
+            /></a>
+          </div>
+          <h4 class="h4 pt-2 comvideo__title">American Airlines</h4>
+          <div class="comvideo__descr pt-1">
+            <p>American Airlines IT&nbsp;transformations are due to&nbsp;the following advantages of&nbsp;Apache Ignite:</p>
+            <ul class="dashlist pt-1">
+              <li>Bandwidth and response times improvement</li>
+              <li>Improved availability</li>
+              <li>Horizontal and vertically scalability</li>
+              <li>Efficiency</li>
+              <li>ANSI-99 SQL and ACID transaction guarantees ant ctr.</li>
+            </ul>
+          </div>
+        </article>
+        <article class="comvideo">
+          <div class="comvideo__box">
+            <a class="comvideo__screen" href="https://www.youtube.com/watch?v=CPmwnjDJ1Sk" data-youtube="data-youtube"
+              ><span class="comvideo__txt">Embracing The Service Consumption Shift In&nbsp;Banking</span><img src="/img/poweredby/videos/006.png" alt=""
+            /></a>
+          </div>
+          <h4 class="h4 pt-2 comvideo__title">ING Bank</h4>
+          <div class="comvideo__descr pt-1"><p>ING core banking system transformation with Apache Ignite</p></div>
+        </article>
+        <article class="comvideo">
+          <div class="comvideo__box">
+            <a class="comvideo__screen" href="https://www.youtube.com/watch?v=g1FcrOPXWyg" data-youtube="data-youtube"
+              ><span class="comvideo__txt comvideo__txt--black">Using Ignite And JBoss Drools To&nbsp;Implement A&nbsp;Complex Event Processing Solution</span><img src="/img/poweredby/videos/007.png" alt=""
+            /></a>
+          </div>
+          <h4 class="h4 pt-2 comvideo__title">Banco do Brasil</h4>
+          <div class="comvideo__descr pt-1">
+            <p>
+              Вanco do&nbsp;Brasil is&nbsp;developing the omnichannel Horus platform in-house. They implemented a&nbsp;complex event processing ecosystem that is&nbsp;based on&nbsp;Apache Ignite, JBoss Drools, and other components. The team
+              also built microservices and interface applications, both event-driven
+            </p>
+          </div>
+        </article>
+        <article class="comvideo">
+          <div class="comvideo__box">
+            <a class="comvideo__screen" href="https://www.youtube.com/watch?v=EdFOKJIjRSg" data-youtube="data-youtube"
+              ><span class="comvideo__txt">Fitness + In Memory Computing = Getting Ahead Of The Game</span><img src="/img/poweredby/videos/008.png" alt=""
+            /></a>
+          </div>
+          <h4 class="h4 pt-2 comvideo__title">24 Hour Fitness</h4>
+          <div class="comvideo__descr pt-1"><p>Apache Ignite as a digital integration hub and database for a variety of 24 Hour Fitness services</p></div>
+        </article>
+        <article class="comvideo">
+          <div class="comvideo__box">
+            <a class="comvideo__screen" href="https://www.youtube.com/watch?v=jF9T2cJB6t0" data-youtube="data-youtube"
+              ><span class="comvideo__txt comvideo__txt--black">High Performance Exposure Management With Apache Ignite</span><img src="/img/poweredby/videos/009.png" alt=""
+            /></a>
+          </div>
+          <h4 class="h4 pt-2 comvideo__title">JPMorgan Chase</h4>
+          <div class="comvideo__descr pt-1">
+            <p>
+              Exposure management poses unique technical challenges for Asset Management. Requests involve heavy computation on&nbsp;top of&nbsp;millions of&nbsp;data points with target response times of&nbsp;around a&nbsp;1/3&nbsp;second.
+            </p>
+            <p>This challenge was solved using an&nbsp;Apache Ignite-based platform.</p>
+          </div>
+        </article>
+        <article class="comvideo">
+          <div class="comvideo__box">
+            <a class="comvideo__screen" href="https://www.youtube.com/watch?v=B8A8yR_e6VM" data-youtube="data-youtube"
+              ><span class="comvideo__txt comvideo__txt--black">Real Time Exposure Management Using Ignite</span><img src="/img/poweredby/videos/010.png" alt=""
+            /></a>
+          </div>
+          <h4 class="h4 pt-2 comvideo__title">JPMorgan Chase</h4>
+          <div class="comvideo__descr pt-1">
+            <p>
+              The increasing need in&nbsp;the finance world to&nbsp;apply transformations to&nbsp;large datasets in&nbsp;real-time led the Asset Management&rsquo;s portfolio management system team to&nbsp;select Ignite to&nbsp;achieve
+              persistence, caching and integrated compute.
+            </p>
+          </div>
+        </article>
+      </div>
+      <div class="poweredvideos__linkwrap pt-5"><a class="poweredvideos__loadmore" href="#" data-hideopen="morevideo" data-invis="1">Load more stories</a></div>
+      <div class="poweredvideos__morewrap" data-hidebox="morevideo">
+        <div class="poweredvideos__more">
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.youtube.com/watch?v=-t-Syy9blXQ" data-youtube="data-youtube"
+                ><span class="comvideo__txt comvideo__txt--black">Apache Ignite As&nbsp;A&nbsp;Hybrid Transactional-Analytical Processing Solution At&nbsp;A&nbsp;Large Investment Bank</span><img src="/img/poweredby/videos/011.png" alt=""
+              /></a>
+            </div>
+            <h4 class="h4 pt-2 comvideo__title">BNP Paribas</h4>
+            <div class="comvideo__descr pt-1">
+              <p>A&nbsp;hybrid transactional-analytical processing (HTAP) solution in&nbsp;BNP Paribas is&nbsp;powered by&nbsp;Apache Ignite and enables the bank to&nbsp;make key business decisions in&nbsp;real-time.</p>
+            </div>
+          </article>
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.youtube.com/watch?v=NUxdoL-K9Ys" data-youtube="data-youtube"
+                ><span class="comvideo__txt comvideo__txt--black">How nference.ai Leverages Ignite For Distributed Analytics In&nbsp;The Bioinformatics Domain</span><img src="/img/poweredby/videos/012.png" alt=""
+              /></a>
+            </div>
+            <h4 class="h4 pt-2 comvideo__title">nference.ai</h4>
+            <div class="comvideo__descr pt-1">
+              <p>nference.ai uses Ignite for distributed analytics in&nbsp;the bioinformatics domain.</p>
+              <p>Ignite as&nbsp;a&nbsp;horizontally scalable framework allows to&nbsp;define different statistical analyses and execute it&nbsp;on&nbsp;TB&rsquo;s of&nbsp;numerical data in&nbsp;real-time, without movement of&nbsp;data.</p>
+            </div>
+          </article>
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.youtube.com/watch?v=NUxdoL-K9Ys" data-youtube="data-youtube"
+                ><span class="comvideo__txt comvideo__txt--black">Building A&nbsp;Live Geospatial Analytics Platform For Construction Productivity With Apache Ignite</span><img src="/img/poweredby/videos/013.png" alt=""
+              /></a>
+            </div>
+            <h4 class="h4 pt-2 comvideo__title">Trimble</h4>
+            <div class="comvideo__descr pt-1">
+              <p>Trimble built a&nbsp;live geospatial analytics platform for construction productivity with Apache Ignite.</p>
+              <p class="comvideo__gray">
+                Apache Ignite forms a&nbsp;key infrastructure component of&nbsp;TRex platform. It&nbsp;supports real-time ingest of&nbsp;data from the field along with OLTP style analytics and queries against that data such as&nbsp;thematic
+                tiling, volumes &amp;&nbsp;cut/fill calculations, spatial profiling, etc.
+              </p>
+            </div>
+          </article>
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.youtube.com/watch?v=_mnZQ3JDcn8" data-youtube="data-youtube"
+                ><span class="comvideo__txt comvideo__txt--black">Ignite Success Story: How Ignite Fuels The High Throughput Messaging In&nbsp;Sentienz Akiro</span><img src="/img/poweredby/videos/014.png" alt=""
+              /></a>
+            </div>
+            <h4 class="h4 pt-2 comvideo__title">Sentienz</h4>
+            <div class="comvideo__descr pt-1"><p>Sentienz uses Apache Ignite to&nbsp;handle more than 1Millions Requests per second from 10&nbsp;Million devices with a&nbsp;single cluster IoT platform.</p></div>
+          </article>
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.imcsummit.org/2017/eu/sessions/using-memory-grid-compute-achieve-scalability-and-high-performance-legacy-travel" target="_blank"
+                ><span class="comvideo__txt">Using In-Memory Grid Compute To&nbsp;Achieve Scalability And High Performance With Legacy Travel Applications</span><img src="/img/poweredby/videos/015.png" alt=""
+              /></a>
+            </div>
+            <h4 class="h4 pt-2 comvideo__title">JacTravel</h4>
+            <div class="comvideo__descr pt-1">
+              <p>
+                <a href="https://www.imcsummit.org/2017/eu/sessions/using-memory-grid-compute-achieve-scalability-and-high-performance-legacy-travel">This presentation</a> looks at&nbsp;the technical challenges presented to&nbsp;JacTravel
+                Group following the acquisition of&nbsp;rival hotel accommodation provider TotalStay Group in&nbsp;2016.
+              </p>
+              <p class="comvideo__gray">
+                Working with specialist technology consultancy, CG Consultancy, a strategic 18 month project was formed with a roadmap to consolidate booking platforms, ring-fence legacy functionality and to deliver enhanced search
+                capability - underpinned <strong>with in-memory data grid</strong> capabilities of Apache Ignite.
+              </p>
+            </div>
+          </article>
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.youtube.com/watch?v=0iJ0a9Cy_rA" data-youtube="data-youtube"
+                ><span class="comvideo__txt">High Availability And Disaster Recovery For IMDG</span><img src="/img/poweredby/videos/016.png" alt=""
+              /></a>
+            </div>
+            <h4 class="h4 pt-2 comvideo__title">Sberbank</h4>
+            <div class="comvideo__descr pt-1"><p>Digital transformation of Sberbank banking services with Apache Ignite.</p></div>
+          </article>
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.youtube.com/watch?v=MMI0RIiLadM" data-youtube="data-youtube"
+                ><span class="comvideo__txt">Implementation Of&nbsp;Investment Book Of&nbsp;Record (IBOR) Using Apache Ignite</span><img src="/img/poweredby/videos/017.png" alt=""
+              /></a>
+            </div>
+            <h4 class="h4 pt-2 comvideo__title">Wellington Management</h4>
+            <div class="comvideo__descr pt-1"><p>Implementation Of&nbsp;Investment Book Of&nbsp;Record (IBOR) Using Apache Ignite</p></div>
+          </article>
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.youtube.com/watch?v=PFHb-UuhGkk" data-youtube="data-youtube"
+                ><span class="comvideo__txt comvideo__txt--black">Data Driven Drug Discovery</span><img src="/img/poweredby/videos/018.png" alt=""
+              /></a>
+            </div>
+            <h4 class="h4 pt-2 comvideo__title">E-Therapeutics</h4>
+            <div class="comvideo__descr pt-1"><p>Apache Ignite as&nbsp;a&nbsp;high-performance compute system for drugs&rsquo; discovery.</p></div>
+          </article>
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.youtube.com/watch?v=GoXBevB9iKA" data-youtube="data-youtube"
+                ><span class="comvideo__txt">Building A&nbsp;Graph Centric Platform On&nbsp;Ignite</span><img src="/img/poweredby/videos/019.png" alt=""
+              /></a>
+            </div>
+            <h4 class="h4 pt-2 comvideo__title">Hypi</h4>
+            <div class="comvideo__descr pt-1"><p>Apache Ignite as&nbsp;a&nbsp;graph centric platform.</p></div>
+          </article>
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.youtube.com/watch?v=v5ecWoC1TC4" data-youtube="data-youtube"
+                ><span class="comvideo__txt comvideo__txt--black">Interactive Historical Data Analysis</span><img src="/img/poweredby/videos/020.png" alt=""
+              /></a>
+            </div>
+            <h4 class="h4 pt-2 comvideo__title">TrendMiner</h4>
+            <div class="comvideo__descr pt-1"><p>Visualization and analysis of&nbsp;massive amounts of&nbsp;historical data in&nbsp;real-time with Apache Ignite compute grid capabilities.</p></div>
+          </article>
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.youtube.com/watch?v=78UE11GrWzk" data-youtube="data-youtube"
+                ><span class="comvideo__txt">Leveraging In&nbsp;Memory Data Grid For Faster Time To&nbsp;Market</span><img src="/img/poweredby/videos/021.png" alt=""
+              /></a>
+            </div>
+            <h4 class="h4 pt-2 comvideo__title">Agilent Technologies Inc.</h4>
+            <div class="comvideo__descr pt-1"><p>Leveraging In-Memory Data Grid for faster Time-to-Market and Data Flexibility problems of&nbsp;Digital Channels.</p></div>
+          </article>
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.youtube.com/watch?v=1D8hyLWMtfM" data-youtube="data-youtube"
+                ><span class="comvideo__txt comvideo__txt--black">How To&nbsp;Build An&nbsp;Event Driven, Dynamically Re-configurable Microservices Platform</span><img src="/img/poweredby/videos/022.png" alt=""
+              /></a>
+            </div>
+            <h4 class="h4 pt-2 comvideo__title">The Glue</h4>
+            <div class="comvideo__descr pt-1"><p>How to&nbsp;build an&nbsp;event driven, dynamically re-configurable micro services platform with Apache Ignite.</p></div>
+          </article>
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.youtube.com/watch?v=RxWLt3x_yBk" data-youtube="data-youtube"
+                ><span class="comvideo__txt comvideo__txt--black">Scaling Sports Betting From FSB Tech</span><img src="/img/poweredby/videos/023.png" alt=""
+              /></a>
+            </div>
+            <h4 class="h4 pt-2 comvideo__title">FSB Tech</h4>
+            <div class="comvideo__descr pt-1"><p>Building a&nbsp;real-time sports betting platform with Apache Ignite.</p></div>
+          </article>
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.youtube.com/watch?v=wkCW8YC8eKU" data-youtube="data-youtube"
+                ><span class="comvideo__txt comvideo__txt--black">Detecting Potential Hazardous Situations In The Dutch Railway Planning Using Apache Ignite</span><img src="/img/poweredby/videos/024.png" alt=""
+              /></a>
+            </div>
+            <h4 class="h4 pt-2 comvideo__title">Dutch Railways</h4>
+            <div class="comvideo__descr pt-1">
+              <p>
+                Detecting Potential Hazardous Situations in&nbsp;the Dutch Railway Planning to&nbsp;meet challenges of&nbsp;one of&nbsp;the busiest rail infrastructures in&nbsp;Europe JDriven built a&nbsp;space-based architecture with
+                Apache Ignite
+              </p>
+            </div>
+          </article>
+          <article class="comvideo">
+            <div class="comvideo__box">
+              <a class="comvideo__screen" href="https://www.youtube.com/watch?v=qYd9GGRC4L0" data-youtube="data-youtube"
+                ><span class="comvideo__txt">An&nbsp;Ignite Compute Grid In&nbsp;The Cloud</span><img src="/img/poweredby/videos/017.png" alt=""
+              /></a>
+            </div>
+            <h4 class="h4 pt-2 comvideo__title">HomeAway</h4>
+            <div class="comvideo__descr pt-1">
+              <p>HomeAway is&nbsp;one of&nbsp;the leading vacation rental websites.</p>
+              <p>With Ignite, HomeAway employed a&nbsp;large, in-memory compute grid to&nbsp;move a&nbsp;myriad of&nbsp;their systems to&nbsp;the Cloud.</p>
+            </div>
+          </article>
+        </div>
+      </div>
+    </section>
+    <a class="scrollTop" href="#"
+      ><svg class="feather feather-chevron-up" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+        <polyline points="18 15 12 9 6 15"></polyline></svg
+    ></a>
+    <script src="/js/vendor/hystmodal/hystmodal.min.js"></script>
+    <script src="/js/vendor/swiper/swiper-bundle.min.js"></script>
+    <script src="/js/vendor/waypoints.min.js"></script>
+    <script src="/js/main.js"></script>
+  </body>
+</html>
diff --git a/src/_components/base.pug b/src/_components/base.pug
new file mode 100644
index 0000000..37e3868
--- /dev/null
+++ b/src/_components/base.pug
@@ -0,0 +1,30 @@
+-  var config = { hdrClassName: '' }
+include ../_components/mixins.pug
+doctype html
+html(lang="en")
+    head
+        meta(charset="UTF-8")
+        meta(name="viewport",content="width=device-width, initial-scale=1.0, maximum-scale=1")
+        title
+            block pagetitle
+                | Page 
+            || Apache Ignite 
+        link(rel="stylesheet", href="/js/vendor/hystmodal/hystmodal.min.css")
+        link(rel="stylesheet", href="/js/vendor/swiper/swiper-bundle.min.css")
+        link(rel="stylesheet", href="/css/utils.css")
+        link(rel="stylesheet", href="/css/site.css")
+        link(rel="stylesheet", href="/css/media.css", media='only screen and (max-width:1199px)')
+        link(rel="icon", type="image/png", href="/img/favicon.png")
+        block css
+    body
+        block main
+
+
+        a(href="#").scrollTop
+            svg.feather.feather-chevron-up(xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewbox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round')
+                polyline(points='18 15 12 9 6 15')
+
+        script(src="/js/vendor/hystmodal/hystmodal.min.js")
+        script(src="/js/vendor/swiper/swiper-bundle.min.js")
+        script(src="/js/vendor/waypoints.min.js")
+        script(src="/js/main.js")
\ No newline at end of file
diff --git a/src/_components/cmty-committers.pug b/src/_components/cmty-committers.pug
new file mode 100644
index 0000000..d9fdafa
--- /dev/null
+++ b/src/_components/cmty-committers.pug
@@ -0,0 +1,83 @@
+mixin committer(name, githubLink, apacheLink)
+    .committer.flexi
+        .committer__name #{name}
+        a.committer__github(href=githubLink)
+            img(src="/public/img/icon-github.svg", alt="")
+        a.committer__apache(href=apacheLink)
+            img(src="/public/img/icon-pero.svg", alt="")
+
+
+.committers__left
+    +committer('Alexander Shapkin', 'https://github.com/', '/')
+    +committer('Alexey Goncharuk', 'https://github.com/', '/')
+    +committer('Alexey Kuznetsov', 'https://github.com/', '/')
+    +committer('Alexey Plehanov', 'https://github.com/', '/')
+    +committer('Alexey Scherbakov', 'https://github.com/', '/')
+    +committer('Alexey Zinoviev', 'https://github.com/', '/')
+    a.committers__morelink(href="#", data-hideopen="committersLeft", data-invis="1") Load more
+    .committers__more.jsOpener(data-hidebox="committersLeft")
+        .jsOpenerWrap
+            +committer('Andrey Alexandrov', 'https://github.com/', '/')
+            +committer('Andrey Gura', 'https://github.com/', '/')
+            +committer('Andrey Novikov', 'https://github.com/', '/')
+            +committer('Andrew Mashenkov', 'https://github.com/', '/')
+            +committer('Anton Vinogradov', 'https://github.com/', '/')
+            +committer('Artem Budnikov', 'https://github.com/', '/')
+            +committer('Branko Čibej', 'https://github.com/', '/')
+            +committer('Denis Magda', 'https://github.com/', '/')
+            +committer('Dmitriy Govorukhin', 'https://github.com/', '/')
+            +committer('Dmitriy Pavlov*', 'https://github.com/', '/')
+            +committer('Dmitriy Setrakyan', 'https://github.com/', '/')
+            +committer('Evans Ye', 'https://github.com/', '/')
+            +committer('Evgeny Stanilovsky', 'https://github.com/', '/')
+            +committer('Gianfranco Murador', 'https://github.com/', '/')
+            +committer('Henry Saputra', 'https://github.com/', '/')
+            +committer('Igor Rudyak', 'https://github.com/', '/')
+            +committer('Igor Sapego', 'https://github.com/', '/')
+            +committer('Igor Seliverstov', 'https://github.com/', '/')
+            +committer('Ilya Kasnacheev', 'https://github.com/', '/')
+            +committer('Ilya Lantukh', 'https://github.com/', '/')
+            +committer('Ilya Sterin', 'https://github.com/', '/')
+            +committer('Irina Vasilinets', 'https://github.com/', '/')
+            +committer('Ivan Bessonov', 'https://github.com/', '/')
+            +committer('Ivan Daschinsky', 'https://github.com/', '/')
+            +committer('Ivan Pavlukhin', 'https://github.com/', '/')
+            +committer('Ivan Rakov', 'https://github.com/', '/')
+
+
+.committers__right
+    +committer('Konstantin Boudnik', 'https://github.com/', '/')
+    +committer('Kseniya Romanova', 'https://github.com/', '/')
+    +committer('Maxim Muzafarov', 'https://github.com/', '/')
+    +committer('Mauricio Stekl', 'https://github.com/', '/')
+    +committer('Michael Stack', 'https://github.com/', '/')
+    +committer('Nikita Amelchev', 'https://github.com/', '/')
+    a.committers__morelink(href="#", data-hideopen="committersRight", data-invis="1") Load more
+    .committers__more.jsOpener(data-hidebox="committersRight")
+        .jsOpenerWrap
+            +committer('Nikita Ivanov', 'https://github.com/', '/')
+            +committer('Nikolai Izhikov', 'https://github.com/', '/')
+            +committer('Nikolai Tikhonov', 'https://github.com/', '/')
+            +committer('Ognen Duzlevski', 'https://github.com/', '/')
+            +committer('Pavel Tupitsyn', 'https://github.com/', '/')
+            +committer('Pavel Kovalenko', 'https://github.com/', '/')
+            +committer('Peter Ivanov', 'https://github.com/', '/')
+            +committer('Raúl Kripalani', 'https://github.com/', '/')
+            +committer('Roman Shaposhnik', 'https://github.com/', '/')
+            +committer('Roman Shtykh', 'https://github.com/', '/')
+            +committer('Saikat Maitra', 'https://github.com/', '/')
+            +committer('Semyon Boikov', 'https://github.com/', '/')
+            +committer('Sergey Chugunov', 'https://github.com/', '/')
+            +committer('Sergey Evdokimov', 'https://github.com/', '/')
+            +committer('Sergey Khisamov', 'https://github.com/', '/')
+            +committer('Sergey Vladykin', 'https://github.com/', '/')
+            +committer('Sergey Stronchinsky', 'https://github.com/', '/')
+            +committer('Taras Ledkov', 'https://github.com/', '/')
+            +committer('Valentin Kulichenko', 'https://github.com/', '/')
+            +committer('Vladimir Ozerov', 'https://github.com/', '/')
+            +committer('Vladisav Jelisavcic', 'https://github.com/', '/')
+            +committer('Vyacheslav Daradur', 'https://github.com/', '/')
+            +committer('Vyacheslav Koptilin', 'https://github.com/', '/')
+            +committer('Yakov Zhdanov', 'https://github.com/', '/')
+            +committer('Yury Babak', 'https://github.com/', '/')
+            +committer('Zhenya Stanilovsky', 'https://github.com/', '/')
\ No newline at end of file
diff --git a/src/_components/cmty-phs.pug b/src/_components/cmty-phs.pug
new file mode 100644
index 0000000..811c355
--- /dev/null
+++ b/src/_components/cmty-phs.pug
@@ -0,0 +1,56 @@
+mixin cmty-pm-item(prof, name, work, githubLink, apacheLink)
+    article.cmty-pmitem
+        if prof
+            .cmty-pmitem__proff
+                img(src="/public/img/community/b7-chair-star.svg", alt="")
+                span #{prof}
+        h3.cmty-pmitem__name.h5 !{name}
+        small.cmty-pmitem__work.pt-2 #{work}
+        .cmty-pmitem__links.flexi 
+            a.cmty-pmitem__github(href=githubLink)
+                img(src="/public/img/icon-github.svg", alt="")
+            a.cmty-pmitem__apache(href=apacheLink)
+                img(src="/public/img/icon-pero.svg", alt="")
+
+.cmty-pm__wrap.pt-5
+    +cmty-pm-item('CHAIR', 'Dmitriy <br>Pavlov', '', 'https://github.com/', '/')
+    +cmty-pm-item('', 'Alexey Goncharuk', '', 'https://github.com/', '/')
+    +cmty-pm-item('', 'Alexey Kuznetsov', '', 'https://github.com/', '/')
+    +cmty-pm-item('', 'Alexey Plehanov', '', 'https://github.com/', '/')
+.cmty-pm__more.jsOpener(data-hidebox="pmMore")
+    .jsOpenerWrap.cmty-pm__wrap
+        +cmty-pm-item('', 'Alexey Zinoviev', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Andrey Gura', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Andrey Novikov', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Anton Vinogradov', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Denis Magda', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Dmitriy Setrakyan', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Evans Ye', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Gianfranco Murador', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Igor Sapego', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Ilya Kasnacheev', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Ilya Sterin', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Irina Vasilinets', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Ivan Pavlukhin', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Konstantin Boudnik', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Kseniya Romanova', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Maxim Muzafarov', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Nikita Ivanov', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Nikolai Izhikov', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Nikolai Tikhonov', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Ognen Duzlevski', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Pavel Tupitsyn', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Raúl Kripalani', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Roman Shaposhnik', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Roman Shtykh', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Saikat Maitra', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Semyon Boikov', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Sergey Evdokimov', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Sergey Khisamov', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Sergey Vladykin', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Valentin Kulichenko', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Vladimir Ozerov', '', 'https://github.com/', '/')
+        +cmty-pm-item('', 'Yakov Zhdanov', '', 'https://github.com/', '/')
+a.cmty-pm__morelink(href="#", data-hideopen="pmMore") 
+    i Load more
+    span Hide
diff --git a/src/_components/header.pug b/src/_components/header.pug
new file mode 100644
index 0000000..9dd5c13
--- /dev/null
+++ b/src/_components/header.pug
@@ -0,0 +1,43 @@
+mixin menuItem(link, text)
+    if global.pageHref == link
+        li 
+            a(href="/" + link).hdrmenu__current #{text}
+    else
+        li 
+            a(href="/" + link) #{text}
+
+
+include mobmenu.html
+header(class="hdr " + config.hdrClassName)
+    .cmtyhero__wrap.flexi
+        button.hdr__burger(data-menumodal="#jsMenuModal")
+            img(src="/public/img/menu.svg", alt="")
+        a.hdr__logo(href="/")
+            if config.hdrClassName != "hdr__blue"
+                img(src="/public/img/logo.svg", alt="").hdr__logoimg
+            else
+                img(src="/public/img/logo-white.svg", alt="").hdr__logoimg
+        a.button.hdr__button(href="https://ignite.apache.org/download.cgi" target="_blank") Download Ignite 2.11 
+        nav.hdrmenu
+            ul.flexi
+                +menuItem("", "Get started")
+                +menuItem("features", "Features")
+                +menuItem("community.html", "Community")
+                +menuItem("use-cases/provenusecases.html", "Powered by")
+                +menuItem("docs.html", "Docs")
+
+
+header.hdrfloat
+    .cmtyhero__wrap.flexi
+        button.hdr__burger(data-menumodal="#jsMenuModal")
+            img(src="/public/img/menu.svg", alt="")
+        a.hdr__logo(href="/")
+            img(src="/public/img/logo.svg", alt="").hdr__logoimg
+        a.button.hdr__button(href="https://ignite.apache.org/download.cgi" target="_blank") Download Ignite 2.11 
+        nav.hdrmenu
+            ul.flexi
+                +menuItem("", "Get started")
+                +menuItem("features", "Features")
+                +menuItem("community.html", "Community")
+                +menuItem("use-cases/provenusecases.html", "Powered by")
+                +menuItem("docs.html", "Docs")
\ No newline at end of file
diff --git a/src/_components/mixins.pug b/src/_components/mixins.pug
new file mode 100644
index 0000000..b011fc3
--- /dev/null
+++ b/src/_components/mixins.pug
@@ -0,0 +1,17 @@
+mixin powvideo(url, thumbname, title, videotitile, blacktitile="", isYouTube=true)
+    article.comvideo
+        .comvideo__box
+            if isYouTube
+                a.comvideo__screen(href=url, data-youtube)
+                    span(class="comvideo__txt " + blacktitile) !{videotitile}
+                    img(src=thumbname, alt="")
+            else
+                a.comvideo__screen(href=url, target="_blank")
+                    span(class="comvideo__txt " + blacktitile) !{videotitile}
+                    img(src=thumbname, alt="")
+        if title
+            h4.h4.pt-2.comvideo__title !{title}
+        else 
+            .pt-1
+        .comvideo__descr.pt-1
+            block
\ No newline at end of file
diff --git a/src/_components/mobmenu.html b/src/_components/mobmenu.html
new file mode 100644
index 0000000..522b4a1
--- /dev/null
+++ b/src/_components/mobmenu.html
@@ -0,0 +1,32 @@
+<!-- MOBILE MENU START -->
+<div class="hystmodal" id="jsMenuModal" aria-hidden="true">
+    <div class="hystmodal__wrap">
+        <div class="hystmodal__window mobmenu" role="dialog" aria-modal="true">
+            <button data-hystclose class="hystmodal__close">Close</button>  
+            <div class="mobmenu__wrap">
+                <a href="/" class="mobmenu__logo"><img src="/public/img/logo.svg" alt="Логотип"></a>
+                <div class="mobmenu__menu">
+                    <div class="mobmenu__h1 berlin">Navigation</div>
+                    <ul>
+                        <li>
+                            <a href="/index.html">Get started</a>
+                        </li>
+                        <li>
+                            <a href="/features/">Features</a>
+                        </li>
+                        <li>
+                            <a href="/community.html">Community</a>
+                        </li>
+                        <li>
+                            <a href="/use-cases/provenusecases.html">Powered by</a>
+                        </li>
+                        <li>
+                            <a href="/docs.html">Docs</a>
+                        </li>
+                    </ul>
+                </div><!-- //mobmenu__menu -->
+            </div><!-- //mobmenu__wrap -->
+        </div><!-- //mobmenu -->
+    </div> 
+</div>
+<!-- MOBILE MENU END -->
\ No newline at end of file
diff --git a/src/_components/powered-videos.pug b/src/_components/powered-videos.pug
new file mode 100644
index 0000000..9a885f2
--- /dev/null
+++ b/src/_components/powered-videos.pug
@@ -0,0 +1,236 @@
+section.poweredvideos.container 
+    .poweredvideos__grid
+        +powvideo(
+            "https://www.youtube.com/watch?v=3FFexcYIpmA",
+            "/public/img/poweredby/videos/001.png",
+            "IBM",
+            "Leveraging In&nbsp;Memory Compute Grids With Core Systems of&nbsp;Record"
+        )
+            p Apache Ignite is&nbsp;used for IBM Z&nbsp;Mainframes workloads acceleration.
+
+        +powvideo(
+            "https://www.youtube.com/watch?v=Mhtt2QL_qCQ",
+            "/public/img/poweredby/videos/002.png",
+            "Raiffeisen Bank",
+            "How To&nbsp;Use Apache Ignite To&nbsp;Rescue The Backend Of&nbsp;A&nbsp;Bank",
+            "comvideo__txt--black"
+        )
+            p As users transition to digital channels, the load on the bank's systems has increased.
+            p.comvideo__gray For example, since the beginning of 2020, the number of requests to the ABS subsystems from Raiffeisen-Online has grown by a third. 
+            p Therefore, load reduction and system scaling  are constant and top priorities.
+
+        +powvideo(
+            "https://www.youtube.com/watch?v=z28rthKIrDk",
+            "/public/img/poweredby/videos/003.png",
+            "Teradata",
+            "S9D Using Apache Ignite As&nbsp;A&nbsp;Part Of&nbsp;Real Time Campaigning"
+        )
+            p Apache Ignite usage for handling real-time marketing campaigns
+
+        +powvideo(
+            "https://techblog.yahoo.co.jp/oss/yahoo_shopping_purchases_ignite/",
+            "/public/img/poweredby/videos/004.png",
+            "Yahoo! Japan",
+            "&laquo;Recent Purchases&raquo; With Apache Ignite",
+            "", false
+        )
+            p Post explains why Yahoo! Japan chose Apache Ignite for a highly scalable caching system that can process tens of thousands of requests per second.
+            p.comvideo__gray SQL queries were performed via thin clients since they do not require a standard topology join and therefore are easier to be handled through container services. After a successful POC, Ignite fully met their requirements and was quickly rolled into production.
+
+        +powvideo(
+            "https://techblog.yahoo.co.jp/oss/yahoo_shopping_purchases_ignite/",
+            "/public/img/poweredby/videos/005.png",
+            "American Airlines",
+            "In&nbsp;Memory Computing Patterns For High Volume, Real Time Applications",
+            "", false
+        )
+            p American Airlines IT&nbsp;transformations are due to&nbsp;the following advantages of&nbsp;Apache Ignite:
+            ul.dashlist.pt-1
+                li Bandwidth and response times improvement
+                li Improved availability
+                li Horizontal and vertically scalability
+                li Efficiency
+                li ANSI-99 SQL and ACID transaction guarantees ant ctr.
+
+        +powvideo(
+            "https://www.youtube.com/watch?v=CPmwnjDJ1Sk",
+            "/public/img/poweredby/videos/006.png",
+            "ING Bank",
+            "Embracing The Service Consumption Shift In&nbsp;Banking"
+        )
+            p ING core banking system transformation with Apache Ignite
+
+        +powvideo(
+            "https://www.youtube.com/watch?v=g1FcrOPXWyg",
+            "/public/img/poweredby/videos/007.png",
+            "Banco do Brasil",
+            "Using Ignite And JBoss Drools To&nbsp;Implement A&nbsp;Complex Event Processing Solution",
+            "comvideo__txt--black"
+        )
+            p Вanco do&nbsp;Brasil is&nbsp;developing the omnichannel Horus platform in-house. They implemented a&nbsp;complex event processing ecosystem that is&nbsp;based on&nbsp;Apache Ignite, JBoss Drools, and other components. The team also built microservices and interface applications, both event-driven
+
+        +powvideo(
+            "https://www.youtube.com/watch?v=EdFOKJIjRSg",
+            "/public/img/poweredby/videos/008.png",
+            "24 Hour Fitness",
+            "Fitness + In Memory Computing = Getting Ahead Of The Game"
+        )
+            p Apache Ignite as a digital integration hub and database for a variety of 24 Hour Fitness services
+
+        +powvideo(
+            "https://www.youtube.com/watch?v=jF9T2cJB6t0",
+            "/public/img/poweredby/videos/009.png",
+            "JPMorgan Chase",
+            "High Performance Exposure Management With Apache Ignite",
+            "comvideo__txt--black"
+        )
+            p Exposure management poses unique technical challenges for Asset Management. Requests involve heavy computation on&nbsp;top of&nbsp;millions of&nbsp;data points with target response times of&nbsp;around a&nbsp;1/3&nbsp;second. 
+            p This challenge was solved using an&nbsp;Apache Ignite-based platform.
+
+        +powvideo(
+            "https://www.youtube.com/watch?v=B8A8yR_e6VM",
+            "/public/img/poweredby/videos/010.png",
+            "JPMorgan Chase",
+            "Real Time Exposure Management Using Ignite",
+            "comvideo__txt--black"
+        )
+            p The increasing need in&nbsp;the finance world to&nbsp;apply transformations to&nbsp;large datasets in&nbsp;real-time led the Asset Management&rsquo;s portfolio management system team to&nbsp;select Ignite to&nbsp;achieve persistence, caching and integrated compute.
+
+    .poweredvideos__linkwrap.pt-5
+        a.poweredvideos__loadmore(href="#", data-hideopen="morevideo", data-invis="1") Load more stories
+
+    .poweredvideos__morewrap(data-hidebox="morevideo")
+        .poweredvideos__more
+            +powvideo(
+                "https://www.youtube.com/watch?v=-t-Syy9blXQ",
+                "/public/img/poweredby/videos/011.png",
+                "BNP Paribas",
+                "Apache Ignite As&nbsp;A&nbsp;Hybrid Transactional-Analytical Processing Solution At&nbsp;A&nbsp;Large Investment Bank",
+                "comvideo__txt--black"
+            )
+                p A&nbsp;hybrid transactional-analytical processing (HTAP) solution in&nbsp;BNP Paribas is&nbsp;powered by&nbsp;Apache Ignite and enables the bank to&nbsp;make key business decisions in&nbsp;real-time.
+
+            +powvideo(
+                "https://www.youtube.com/watch?v=NUxdoL-K9Ys",
+                "/public/img/poweredby/videos/012.png",
+                "nference.ai",
+                "How nference.ai Leverages Ignite For Distributed Analytics In&nbsp;The Bioinformatics Domain",
+                "comvideo__txt--black"
+            )
+                p nference.ai uses Ignite for distributed analytics in&nbsp;the bioinformatics domain.
+                p Ignite as&nbsp;a&nbsp;horizontally scalable framework allows to&nbsp;define different statistical analyses and execute it&nbsp;on&nbsp;TB&rsquo;s of&nbsp;numerical data in&nbsp;real-time, without movement of&nbsp;data.
+
+            +powvideo(
+                "https://www.youtube.com/watch?v=NUxdoL-K9Ys",
+                "/public/img/poweredby/videos/013.png",
+                "Trimble",
+                "Building A&nbsp;Live Geospatial Analytics Platform For Construction Productivity With Apache Ignite",
+                "comvideo__txt--black"
+            )
+                p Trimble built a&nbsp;live geospatial analytics platform for construction productivity with Apache Ignite.
+                p.comvideo__gray Apache Ignite forms a&nbsp;key infrastructure component of&nbsp;TRex platform. It&nbsp;supports real-time ingest of&nbsp;data from the field along with OLTP style analytics and queries against that data such as&nbsp;thematic tiling, volumes &amp;&nbsp;cut/fill calculations, spatial profiling, etc.
+
+            +powvideo(
+                "https://www.youtube.com/watch?v=_mnZQ3JDcn8",
+                "/public/img/poweredby/videos/014.png",
+                "Sentienz",
+                "Ignite Success Story: How Ignite Fuels The High Throughput Messaging In&nbsp;Sentienz Akiro",
+                "comvideo__txt--black"
+            )
+                p Sentienz uses Apache Ignite to&nbsp;handle more than 1Millions Requests per second from 10&nbsp;Million devices with a&nbsp;single cluster IoT platform.
+
+            +powvideo(
+                "https://www.imcsummit.org/2017/eu/sessions/using-memory-grid-compute-achieve-scalability-and-high-performance-legacy-travel",
+                "/public/img/poweredby/videos/015.png",
+                "JacTravel",
+                "Using In-Memory Grid Compute To&nbsp;Achieve Scalability And High Performance With Legacy Travel Applications",
+                "", false
+            )
+                p <a href="https://www.imcsummit.org/2017/eu/sessions/using-memory-grid-compute-achieve-scalability-and-high-performance-legacy-travel">This presentation</a> looks at&nbsp;the technical challenges presented to&nbsp;JacTravel Group following the acquisition of&nbsp;rival hotel accommodation provider TotalStay Group in&nbsp;2016.
+                p.comvideo__gray Working with specialist technology consultancy, CG Consultancy, a strategic 18 month project was formed with a roadmap to consolidate booking platforms, ring-fence legacy functionality and to deliver enhanced search capability - underpinned <strong>with in-memory data grid</strong> capabilities of Apache Ignite.
+
+            +powvideo(
+                "https://www.youtube.com/watch?v=0iJ0a9Cy_rA",
+                "/public/img/poweredby/videos/016.png",
+                "Sberbank",
+                "High Availability And Disaster Recovery For IMDG"
+            )
+                p Digital transformation of Sberbank banking services with Apache Ignite.
+
+            +powvideo(
+                "https://www.youtube.com/watch?v=MMI0RIiLadM",
+                "/public/img/poweredby/videos/017.png",
+                "Wellington Management",
+                "Implementation Of&nbsp;Investment Book Of&nbsp;Record (IBOR) Using Apache Ignite"
+            )
+                p Implementation Of&nbsp;Investment Book Of&nbsp;Record (IBOR) Using Apache Ignite
+
+            +powvideo(
+                "https://www.youtube.com/watch?v=PFHb-UuhGkk",
+                "/public/img/poweredby/videos/018.png",
+                "E-Therapeutics",
+                "Data Driven Drug Discovery",
+                "comvideo__txt--black"
+            )
+                p Apache Ignite as&nbsp;a&nbsp;high-performance compute system for drugs&rsquo; discovery.
+
+            +powvideo(
+                "https://www.youtube.com/watch?v=GoXBevB9iKA",
+                "/public/img/poweredby/videos/019.png",
+                "Hypi",
+                "Building A&nbsp;Graph Centric Platform On&nbsp;Ignite"
+            )
+                p Apache Ignite as&nbsp;a&nbsp;graph centric platform.
+
+            +powvideo(
+                "https://www.youtube.com/watch?v=v5ecWoC1TC4",
+                "/public/img/poweredby/videos/020.png",
+                "TrendMiner",
+                "Interactive Historical Data Analysis",
+                "comvideo__txt--black"
+            )
+                p Visualization and analysis of&nbsp;massive amounts of&nbsp;historical data in&nbsp;real-time with Apache Ignite compute grid capabilities.
+
+            +powvideo(
+                "https://www.youtube.com/watch?v=78UE11GrWzk",
+                "/public/img/poweredby/videos/021.png",
+                "Agilent Technologies Inc.",
+                "Leveraging In&nbsp;Memory Data Grid For Faster Time To&nbsp;Market"
+            )
+                p Leveraging In-Memory Data Grid for faster Time-to-Market and Data Flexibility problems of&nbsp;Digital Channels.
+
+            +powvideo(
+                "https://www.youtube.com/watch?v=1D8hyLWMtfM",
+                "/public/img/poweredby/videos/022.png",
+                "The Glue",
+                "How To&nbsp;Build An&nbsp;Event Driven, Dynamically Re-configurable Microservices Platform",
+                "comvideo__txt--black"
+            )
+                p How to&nbsp;build an&nbsp;event driven, dynamically re-configurable micro services platform with Apache Ignite.
+
+            +powvideo(
+                "https://www.youtube.com/watch?v=RxWLt3x_yBk",
+                "/public/img/poweredby/videos/023.png",
+                "FSB Tech",
+                "Scaling Sports Betting From FSB Tech",
+                "comvideo__txt--black"
+            )
+                p Building a&nbsp;real-time sports betting platform with Apache Ignite.
+
+            +powvideo(
+                "https://www.youtube.com/watch?v=wkCW8YC8eKU",
+                "/public/img/poweredby/videos/024.png",
+                "Dutch Railways",
+                "Detecting Potential Hazardous Situations In The Dutch Railway Planning Using Apache Ignite",
+                "comvideo__txt--black"  
+            )
+                p Detecting Potential Hazardous Situations in&nbsp;the Dutch Railway Planning to&nbsp;meet challenges of&nbsp;one of&nbsp;the busiest rail infrastructures in&nbsp;Europe JDriven built a&nbsp;space-based architecture with Apache Ignite
+
+            +powvideo(
+                "https://www.youtube.com/watch?v=qYd9GGRC4L0",
+                "/public/img/poweredby/videos/017.png",
+                "HomeAway",
+                "An&nbsp;Ignite Compute Grid In&nbsp;The Cloud"
+            )
+                p HomeAway is&nbsp;one of&nbsp;the leading vacation rental websites.
+                p With Ignite, HomeAway employed a&nbsp;large, in-memory compute grid to&nbsp;move a&nbsp;myriad of&nbsp;their systems to&nbsp;the Cloud.
\ No newline at end of file
diff --git a/src/_components/tabletest.pug b/src/_components/tabletest.pug
new file mode 100644
index 0000000..d86542b
--- /dev/null
+++ b/src/_components/tabletest.pug
@@ -0,0 +1,80 @@
+.downtable__wrap 
+    table.downtable 
+        tr 
+            th.downtable1 Version
+            th.downtable2 Docs
+            th.downtable3 Release Notes
+            th.downtable4 Date
+            th.downtable5
+                span Source
+                .downtable__meny.jsDownTablePopUp
+                    button.downtable__button 
+                    .downtable__popup
+                        a(href="#") JSON
+                        a(href="#") HTML
+                        a(href="#") CSV
+                        a(href="#") XLS
+                        a(href="#") PDF
+        tbody
+            +downloadRow({
+                ver: "3.0.0 (Alpha 3)",
+                date: "2021-10-18",
+                guide: "https://ignite.apache.org/docs/3.0.0-alpha",
+                sourcelink: "https://downloads.apache.org/ignite/3.0.0-alpha3/apache-ignite-3.0.0-alpha3-src.zip"
+            })
+            +downloadRow({
+                ver: "2.11.0 (latest)",
+                date: "2021-09-17",
+                guide: "https://ignite.apache.org/docs/latest",
+                javadoc: "https://ignite.apache.org/releases/2.11.0/javadoc/",
+                notes: "https://ignite.apache.org/releases/2.11.0/release_notes.html",
+                sourcelink: "https://dlcdn.apache.org//ignite/2.11.0/apache-ignite-2.11.0-src.zip"
+            })
+            +downloadRow({
+                ver: "2.10.0",
+                date: "2021-09-17",
+                guide: "https://ignite.apache.org/docs/latest",
+                javadoc: "https://ignite.apache.org/releases/2.10.0/javadoc/",
+                notes: "https://ignite.apache.org/releases/2.10.0/release_notes.html",
+                sourcelink: "https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip"
+            })
+            +downloadRow({
+                ver: "2.9.1",
+                date: "2021-09-17",
+                guide: "https://ignite.apache.org/docs/latest",
+                javadoc: "https://ignite.apache.org/releases/2.10.0/javadoc/",
+                notes: "https://ignite.apache.org/releases/2.10.0/release_notes.html",
+                sourcelink: "https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip"
+            })
+            +downloadRow({
+                ver: "2.9.0",
+                date: "2021-09-17",
+                guide: "https://ignite.apache.org/docs/latest",
+                javadoc: "https://ignite.apache.org/releases/2.10.0/javadoc/",
+                notes: "https://ignite.apache.org/releases/2.10.0/release_notes.html",
+                sourcelink: "https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip"
+            })
+            +downloadRow({
+                ver: "2.8.1",
+                date: "2021-09-17",
+                guide: "https://ignite.apache.org/docs/latest",
+                javadoc: "https://ignite.apache.org/releases/2.10.0/javadoc/",
+                notes: "https://ignite.apache.org/releases/2.10.0/release_notes.html",
+                sourcelink: "https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip"
+            })
+            +downloadRow({
+                ver: "2.8.0",
+                date: "2021-09-17",
+                guide: "https://ignite.apache.org/docs/latest",
+                javadoc: "https://ignite.apache.org/releases/2.10.0/javadoc/",
+                notes: "https://ignite.apache.org/releases/2.10.0/release_notes.html",
+                sourcelink: "https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip"
+            })
+            +downloadRow({
+                ver: "2.7.6",
+                date: "2021-09-17",
+                guide: "https://ignite.apache.org/docs/latest",
+                javadoc: "https://ignite.apache.org/releases/2.10.0/javadoc/",
+                notes: "https://ignite.apache.org/releases/2.10.0/release_notes.html",
+                sourcelink: "https://archive.apache.org/dist/ignite/2.10.0/apache-ignite-2.10.0-src.zip"
+            })
\ No newline at end of file
diff --git a/src/_components/variables.pug b/src/_components/variables.pug
new file mode 100644
index 0000000..d9b1c39
--- /dev/null
+++ b/src/_components/variables.pug
@@ -0,0 +1 @@
+-  var config = { hdrClassName: '' }
\ No newline at end of file
diff --git a/src/arch/clustering.pug b/src/arch/clustering.pug
new file mode 100644
index 0000000..e704517
--- /dev/null
+++ b/src/arch/clustering.pug
@@ -0,0 +1,66 @@
+extend ../_components/base.pug
+
+block pagetitle
+    | Deployment Options  
+
+block css 
+    link(rel="stylesheet", href="../css/native-persistence.css")
+    link(rel="stylesheet", href="../css/deployment-opts.css")
+
+
+
+block main
+    - global.pageHref = "features"
+    - config.hdrClassName = "hdr__blue"
+    include ../_components/header.pug
+
+
+    section.innerhero
+        .container.innerhero__cont
+            .innerhero__main
+                .innerhero__pre.pb-3 Apache Ignite
+                h1.h1.innerhero__h1.innerhero__mega Deployment <br>Options
+            img.innerhero__pic.innerhero__pic--deploy(src="/public/img/features/deployment/hero.svg", alt="Deployment Options")
+    // /.innerhero
+
+
+    section.deploymenytext.container.flexi 
+        .deploymenytext__main
+            p Apache Ignite&reg; implements the shared-nothing architecture where all cluster nodes are equal and there is&nbsp;no&nbsp;single point of&nbsp;failure or&nbsp;bottleneck. Ignite does NOT have a&nbsp;component such as&nbsp;a&nbsp;master node or&nbsp;name node that is&nbsp;present in&nbsp;most distributed systems.
+            
+            p Ignite nodes discover each other automatically in&nbsp;your environment, and the cluster can be&nbsp;scaled out or&nbsp;in&nbsp;easily.
+
+            p.pb-4 Apache Ignite can run on&nbsp;bare metal, virtual machines, Docker, Kubernetes, and cloud environments. Technically there are no&nbsp;limitations in&nbsp;regards to&nbsp;deployment environments&nbsp;&mdash; since Ignite nodes can auto-discover each other via the TCP/IP interface, you can launch a&nbsp;cluster anywhere.
+
+            h3.h5.pt-2.pb-2.deploymenytext__title Servers, clients and protocols
+            p Ignite defines two types of&nbsp;nodes&nbsp;&mdash; servers and clients. A&nbsp;server node is&nbsp;the base computational and data storage unit. Typically, you start a&nbsp;single server node per machine or&nbsp;container and it&nbsp;will scale vertically by&nbsp;utilizing all of&nbsp;the CPU, RAM, and other resources available unless specified differently. These resources are pooled and become available to&nbsp;Ignite applications once the server node joins the cluster of&nbsp;other server nodes.
+            
+            p A&nbsp;cluster is&nbsp;a&nbsp;group of&nbsp;server nodes interconnected together in&nbsp;order to&nbsp;provide shared resources like RAM and CPU to&nbsp;your applications.
+
+            p Client nodes (aka. thick clients) are your connection endpoints and gateways from the application layer to&nbsp;the cluster of&nbsp;server nodes. You always embed a&nbsp;client into your application code and execute the required APIs. The clients shield all the complexity of&nbsp;Ignite&rsquo;s distributed nature from application developers who will see the cluster as&nbsp;a&nbsp;single unit. It&rsquo;s as&nbsp;simple as&nbsp;connecting to&nbsp;an&nbsp;RDBMS via a&nbsp;JDBC driver or&nbsp;Spring Data framework.
+
+            p In&nbsp;addition to&nbsp;the thick clients, you can access the cluster with Ignite thin clients, JDBC and ODBC drivers, or&nbsp;the REST API.
+
+
+        aside.deploymenytext__picwrap.picwrap 
+            img.deploymenytext__pic(src="/public/img/features/deployment/deploy-pic.svg", alt="")
+
+
+    section.native-bottom.container
+        .native-bottom__grid 
+            article.nativebotblock
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-rocket.svg", alt="").nativebotblock__icon
+                    span Ready to Start?
+                p.nativebotblock__text Discover more details about multi-tier storage <br>and configure it for your use-case
+                a.nativebotblock__link.arrowlink(href="https://cwiki.apache.org/confluence/display/IGNITE/Ignite+Persistent+Store+-+under+the+hood", target="_blank") Working with SQL Guide 
+            article.nativebotblock.nativebotblock--learn
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-docs.svg", alt="").nativebotblock__icon
+                    span Want to View More Use-Cases?
+                p.nativebotblock__text Check out success stories from different industries across the world 
+                a.nativebotblock__link.arrowlink(href="https://ignite.apache.org/docs/latest/persistence/native-persistence", target="_blank") Multi-Tier Storage Implementation Details
+
+
+
+
diff --git a/src/arch/multi-tier-storage.pug b/src/arch/multi-tier-storage.pug
new file mode 100644
index 0000000..3fd3402
--- /dev/null
+++ b/src/arch/multi-tier-storage.pug
@@ -0,0 +1,128 @@
+extend ../_components/base.pug
+
+block pagetitle
+    | Multi-Tier Storage   
+
+block css 
+    link(rel="stylesheet", href="../css/native-persistence.css")
+    link(rel="stylesheet", href="../css/multi-tier.css")
+    link(rel="stylesheet", href="../js/vendor/glightbox/glightbox.min.css")
+    script(src="../js/vendor/glightbox/glightbox.min.js")
+
+
+
+block main
+    - global.pageHref = "features"
+    - config.hdrClassName = "hdr__blue"
+    include ../_components/header.pug
+
+
+    section.innerhero
+        .container.innerhero__cont
+            .innerhero__main
+                .innerhero__pre.pb-3 Apache Ignite
+                h1.h1.innerhero__h1 Multi-Tier Storage
+                .innerhero__descr.pt-2.h5.
+                    Store and access your data across memory <br>and disk with no compromises
+                .innerhero__action 
+                    a.button.innerhero__button(href="https://ignite.apache.org/docs/latest/index") Start Coding
+            img.innerhero__pic.innerhero__pic--multitier(src="/public/img/usecases/in-memory-hero.svg", alt="Distributed In-Memory Cache")
+    // /.innerhero
+
+
+    section.multitier2
+    .container 
+        h2.h3.multitier2__title.
+            Apache Ignite multi-tier storage implements a cutting-edge storage architecture that combines performance benefits of&nbsp;memory with the scalability and durability advantages of disk-based databases.
+
+
+    section.multitiers.container
+        header.blockheader.blockheader--spl.flexi
+                h2.h4.blockheader__left.blockheader__left--full Primary Multi-Tier Storage Usage Modes
+        .multitier3.flexi
+            .multitiers__left
+                article.multitierblock
+                    h3.multitierblock__title In-Memory Mode
+                    p.fz20.pt-2 Get all the benefits of in-memory computing solutions. Store and process data at the lowest latency and highest throughput.
+                    img.multitierblock__pic(src="/public/img/features/multitier/01-bd.svg", alt="")
+            .multitiers__right.multitiers__text
+                h4.multitier3__h4.fz20.pb-1x How It Works
+                p The whole data set is available in memory tier only.
+                p In order to survive node failures, we recommend keeping at least one backup copy of the data in the cluster. DRAM or Intel® Optane™ operating in the Memory Mode can be used as a storage device.
+                h4.multitier3__h4.fz20.pt-3 Use-Cases
+                ul.dashlist.pt-2
+                    li In-memory caching
+                    li High-performance computing
+                    li Web-session caching
+                    li Real-time processing of continuous data streams
+                .multitiervid.pt-3
+                    span.multitiervid__link 
+                        span In-Memory Mode Case-Study
+                    a(href="https://www.youtube.com/watch?v=Mhtt2QL_qCQ&t=639s", target="_blank", data-gallery="1").multitiervid__screen.glightbox
+                        img(src="/public/img/features/multitier/video-1.png", alt="")
+                    .multitiervid__descr Raiffeisen Bank uses in-memory mode to store their data
+        // /.multitier3
+
+        .multitier4.flexi
+            .multitiers__left.multitiers__text
+                h4.multitier3__h4.fz20.pb-1x How It Works
+                p Ignite slides in between your existing application and data layer. Ignite <a href="https://ignite.apache.org/docs/latest/persistence/external-storage#read-through-and-write-through" target="_blank">writes-through</a> or <a href="https://ignite.apache.org/docs/latest/persistence/external-storage#write-behind-caching" target="_blank">writes-behind</a> all data modifications to the underlying external databases.
+                h4.multitier3__h4.fz20.pt-3.pb-2 Use-Cases
+                p Offloading and acceleration of existing databases, backend-systems, applications and APIs.
+                .multitiervid.pt-4 
+                    span.multitiervid__link 
+                        span In-Memory + External Database Mode Case-Study
+                    a.multitiervid__screen(href="#") 
+                        img(src="/public/img/features/multitier/video-2.png", alt="")
+                    .multitiervid__descr Short description
+            .multitiers__right 
+                article.multitierblock
+                    h3.multitierblock__title In-Memory + External Database Mode
+                    p.fz20.pt-1x Accelerate and offload your existing databases by deploying Ignite as a caching layer on top of existing disk-based databases and back-end systems.
+                    img.multitierblock__pic(src="/public/img/features/multitier/03-bd.svg", alt="")
+        // /.multitier4
+
+        .multitier5.flexi
+            .multitiers__left
+                article.multitierblock
+                    h3.multitierblock__title Multi-Tier Database Mode
+                    p.fz20.pt-1x Scale beyond the available memory capacity and skip memory warm-ups on restarts 
+                    img.multitierblock__pic(src="/public/img/features/multitier/04-bd.svg", alt="")
+            .multitiers__right.multitiers__text
+                h4.multitier3__h4.fz20.pb-1x How It Works
+                p 100% of data is persisted to Ignite native persistence, and the same or smaller amount is cached in memory. The more data cached, the faster the performance.
+                p Applications can query both in-memory and disk-only records transparently scaling beyond available memory capacity.
+                p There is no need for memory warm-ups on restarts since Ignite can serve data from disk. SSD, Flash, HDD or Intel® Optane™ operating in the AppDirect Mode can be used as a storage device.
+                h4.multitier3__h4.fz20.pt-3.pb-2 Use-Cases
+                p Ignite as a distributed database for HTAP workloads or digital integration hub with the active persistence layer.
+                .multitiervid.pt-4 
+                    span.multitiervid__link 
+                        span Native Persistence Case-Study
+                    a.multitiervid__screen.glightbox(href="https://www.youtube.com/watch?v=jF9T2cJB6t0&t=137s", target="_blank", data-gallery="2") 
+                        img(src="/public/img/features/multitier/video-3.png", alt="")
+                    .multitiervid__descr JP Morgan team use Ignite to achieve persistence, caching and integrated compute
+        // /.multitier3
+    // /.multitiers
+
+
+
+    section.native-bottom.container
+        .native-bottom__grid 
+            article.nativebotblock
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-rocket.svg", alt="").nativebotblock__icon
+                    span Ready to Start?
+                p.nativebotblock__text Discover more details about multi-tier storage <br>and configure it for your use-case
+                a.nativebotblock__link.arrowlink(href="https://cwiki.apache.org/confluence/display/IGNITE/Ignite+Persistent+Store+-+under+the+hood", target="_blank") Working with SQL Guide 
+            article.nativebotblock.nativebotblock--learn
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-docs.svg", alt="").nativebotblock__icon
+                    span Want to Learn More?
+                p.nativebotblock__text Check multi-tier storage implementation <br>details article 
+                a.nativebotblock__link.arrowlink(href="https://ignite.apache.org/docs/latest/persistence/native-persistence", target="_blank") Multi-Tier Storage Implementation Details
+
+
+
+
+
+
diff --git a/src/arch/native-persistence.pug b/src/arch/native-persistence.pug
new file mode 100644
index 0000000..f6f6692
--- /dev/null
+++ b/src/arch/native-persistence.pug
@@ -0,0 +1,174 @@
+extend ../_components/base.pug
+
+block pagetitle
+    | Native Persistence  
+
+block css 
+    link(rel="stylesheet", href="../css/native-persistence.css")
+    link(rel="stylesheet", href="../js/vendor/highlight/default.min.css")
+    link(rel="stylesheet", href="../js/vendor/highlight/night-owl.css")
+    script(src="../js/vendor/highlight/highlight.min.js")
+
+
+
+block main
+    - global.pageHref = "features"
+    - config.hdrClassName = "hdr__blue"
+    include ../_components/header.pug
+
+
+    section.innerhero
+        .container.innerhero__cont
+            .innerhero__main
+                .innerhero__pre.pb-3 Apache Ignite
+                h1.h1.innerhero__h1 Native Persistence
+                .innerhero__descr.pt-2.h5.
+                    Scale beyond available memory capacity <br>
+                    and skip memory warm-ups on restarts
+                .innerhero__action 
+                    a.button.innerhero__button(href="https://ignite.apache.org/docs/latest/index") Start Coding
+            img.innerhero__pic.innerhero__pic--native(src="/public/img/features/native-header.svg", alt="Native Persistence")
+    // /.innerhero
+
+    
+    section.native1.container.flexi
+        .native1__block.native1__block--bad
+            img.native1__icon(src="/public/img/features/icon-check-err.svg", alt="")
+            .native1__title.fz20.pt-1x Usually, in-memory caches and databases provide limited persistence capabilities.
+            p.pt-2 For instance, some solutions just do a backup copy of <br>the in-memory data purely for restart purposes.
+        .native1__block
+            img.native1__icon(src="/public/img/features/icon-check-ok.svg", alt="")
+            .native1__title.fz20.pt-1x.
+                Ignite persistence doesn’t have any limitations. <br>
+                Our native persistence behaves like a classic <br>disk-based database.
+
+
+    section.native2.container
+        .native2__grid 
+            article.native2item
+                h3.fz20.native2item__title Scale beyond memory <br>capacity
+                p.pt-1x 100% of&nbsp;data is&nbsp;always stored on&nbsp;disk. You decide how much memory allocate to&nbsp;your data.
+            article.native2item
+                h3.fz20.native2item__title Seconds needed <br>for recovery
+                p.pt-1x Ignite becomes operational from disk instantaneously. There is&nbsp;no&nbsp;need to&nbsp;wait for the data to&nbsp;get preloaded on&nbsp;restarts.
+            article.native2item
+                h3.fz20.native2item__title Query in-memory <br>and on-disk data
+                p.pt-1x If&nbsp;any record is&nbsp;missing in&nbsp;memory, then Ignite reads it&nbsp;from disk. This is&nbsp;supported for all the APIs including SQL.
+
+    
+    section.native-howwork.container
+        .native-howwork__wrap.flexi 
+            .native-howwork__left 
+                h3.h5 How it works?
+                .native-howwork__text.pt-1
+                    p The native persistence functions as&nbsp;a&nbsp;distributed, ACID, and SQL-compliant disk-based store. It&nbsp;integrates into the Ignite <a href="/features/multi-tier-storage.html">multi-tier storage</a> as&nbsp;a&nbsp;disk tier.
+                    p.pt-1 When the native persistence enabled, Ignite stores a&nbsp;superset of&nbsp;data on&nbsp;disk and caches as&nbsp;much as&nbsp;it&nbsp;can in&nbsp;memory.
+            .native-howwork__right
+                p For example
+                p.pt-1x If&nbsp;your application needs to&nbsp;store 200 records in&nbsp;an&nbsp;Ignite cluster and the memory capacity allows caching only 150&nbsp;records, then all 200 will be&nbsp;stored on&nbsp;disk, out of&nbsp;which 150 will be&nbsp;served from memory while the rest 50&nbsp;from disk whenever the application requests them.
+        
+
+    section.native-points.container 
+        h2.h4 Checkpointing And Write-Ahead Logging <br>Ensure Durability And Consistency Of&nbsp;Data
+        .native-points__grid.pt-5 
+            .native-points__item.fz20
+                p Committed transactions always survive failures
+            .native-points__item.fz20
+                p The cluster can always be&nbsp;recovered to&nbsp;the latest successfully committed transaction
+
+    section.native-steps
+        .container
+            h2.h4 Three-Step Process To&nbsp;Update Your Data <br>At&nbsp;In-Memory Speed But Not Losing A&nbsp;Bit
+            img.native-steps__pic(src="/public/img/features/native-stepspic.svg", alt="")
+            .native-steps__grid 
+                article.nativestepitem 
+                    i.fz20.pb-1x 01
+                    //- .nativestepitem__title.fz20 First Step
+                    .nativestepitem__text
+                        p As&nbsp;soon as&nbsp;the update comes from the application side, a&nbsp;record is&nbsp;updated in&nbsp;memory. Then, the change is&nbsp;added <a href="https://ignite.apache.org/docs/latest/persistence/native-persistence.html#write-ahead-log">to&nbsp;the write-ahead log (WAL).</a>
+                        p The purpose is&nbsp;to&nbsp;propagate updates to&nbsp;disk in&nbsp;the fastest way possible and provide a&nbsp;consistent recovery mechanism that remediates full cluster failures.
+                article.nativestepitem 
+                    i.fz20.pb-1x 02
+                    //- .nativestepitem__title.fz20 Second Step
+                    .nativestepitem__text
+                        p As&nbsp;the WAL grows, it&nbsp;periodically gets checkpointed to&nbsp;the main storage.
+                        p <a href="https://ignite.apache.org/docs/latest/persistence/native-persistence.html#checkpointing">Checkpointing</a> is&nbsp;the process of&nbsp;copying dirty pages from the memory tier to&nbsp;the partition files on&nbsp;disk.
+                        p.nativestepitem__small A&nbsp;dirty page is&nbsp;a&nbsp;page that was updated in&nbsp;memory, was appended to&nbsp;the WAL, but was not written to&nbsp;the respective partition file on&nbsp;disk yet.
+                article.nativestepitem 
+                    i.fz20.pb-1x 03
+                    //- .nativestepitem__title.fz20 Third Step
+                    .nativestepitem__text
+                        p After a&nbsp;while, the information about updates in&nbsp;WAL can be&nbsp;removed, compressed or&nbsp;moved to&nbsp;archive.
+                        p So&nbsp;you can reuse your disk space.
+
+        
+    section.nativecode.container.jsTabWrap
+        header.blockheader.blockheader--spl.flexi
+            h2.h4.blockheader__left You Decide Which Data To Persist
+            .blockheader__right.fz20
+                p Toggle a&nbsp;single configuration setting to&nbsp;turn a&nbsp;cluster into a&nbsp;database <br>that scales across memory and disk
+        .nativecode__tabctrls.flexi
+            a(href="#", data-tablink="nativeTabXML").nativecode__link.active XML
+            a(href="#", data-tablink="nativeTabJava").nativecode__link Java
+            a(href="#", data-tablink="nativeTabNET").nativecode__link C#/.NET
+        .nativecode__tabs
+            .nativecode__tab(data-tab="nativeTabXML").active
+                pre.nativecode__codebox 
+                    code.xml.
+                        &lt;bean class="org.apache.ignite.configuration.IgniteConfiguration"&gt;
+                            &lt;property name="dataStorageConfiguration"&gt;
+                                &lt;bean class="org.apache.ignite.configuration.DataStorageConfiguration"&gt;
+                                    &lt;property name="defaultDataRegionConfiguration"&gt;
+                                        &lt;bean class="org.apache.ignite.configuration.DataRegionConfiguration"&gt;
+                                            &lt;property name="persistenceEnabled" value="true"/&gt;
+                                        &lt;/bean&gt;
+                                    &lt;/property&gt;
+                                &lt;/bean&gt;
+                            &lt;/property&gt;
+                        &lt;/bean&gt;
+            .nativecode__tab(data-tab="nativeTabJava")
+                pre.nativecode__codebox 
+                    code.java.
+                        IgniteConfiguration cfg = new IgniteConfiguration();
+
+                        DataStorageConfiguration storageCfg = new DataStorageConfiguration();
+
+                        // Enable Ignite Persistence
+                        storageCfg.getDefaultDataRegionConfiguration().setPersistenceEnabled(true);
+
+                        // Using the new storage configuration
+                        cfg.setDataStorageConfiguration(storageCfg);
+            .nativecode__tab(data-tab="nativeTabNET")
+                pre.nativecode__codebox 
+                    code.csharp.
+                        var cfg = new IgniteConfiguration
+                        {
+                            DataStorageConfiguration = new DataStorageConfiguration
+                            {
+                                DefaultDataRegionConfiguration = new DataRegionConfiguration
+                                {
+                                    Name = "Default_Region",
+                                    PersistenceEnabled = true
+                                }
+                            }
+                        };
+    // /.nativecode
+
+
+    section.native-bottom.container
+        .native-bottom__grid 
+            article.nativebotblock
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-rocket.svg", alt="").nativebotblock__icon
+                    span Ready to Start?
+                p.nativebotblock__text Discover more details about native persistence <br>and configure it&nbsp;for your use-case
+                a.nativebotblock__link.arrowlink(href="https://ignite.apache.org/docs/latest/persistence/native-persistence", target="_blank") Native Persistence Usage and Configuration
+            article.nativebotblock.nativebotblock--learn
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-docs.svg", alt="").nativebotblock__icon
+                    span Want to&nbsp;Learn More?
+                p.nativebotblock__text Check out the details of&nbsp;native persistence <br>implementation, <a href="https://www.youtube.com/watch?v=6Yg5QW-XFVc&list=PLMc7NR20hA-I2EfyXeaSRHY5dRFtK_NF0&index=6" target="_blank">or&nbsp;watch a&nbsp;video</a>
+                a.nativebotblock__link.arrowlink(href="https://cwiki.apache.org/confluence/display/IGNITE/Ignite+Persistent+Store+-+under+the+hood", target="_blank") Native Persistence Implementation Details
+
+
+    
\ No newline at end of file
diff --git a/src/community.pug b/src/community.pug
new file mode 100644
index 0000000..7506c2c
--- /dev/null
+++ b/src/community.pug
@@ -0,0 +1,400 @@
+extend _components/base.pug
+
+block pagetitle
+    | Community 
+
+block main
+    - global.pageHref = "community.html"
+    include ./_components/header.pug
+    section.cmtyhero
+        .container
+            .cmtyhero__main
+                h1.cmtyhero__h1.
+                    Welcome To The Apache <br>Ignite Community
+                .cmtyhero__text.
+                    The community of software engineers, tech writers, and technologists who drive the evolution of a top-5 project of the Apache Software Foundation
+                .cmtyhero__sub
+                    a(href="https://blogs.apache.org/ignite/entry/apache-ignite-momentum-highlights-from" target="_blank") Learn more 
+                    | about Ignite ranking in various categories.
+            img.cmtyhero__img(src="/public/img/community/b1-photo.svg", alt="Welcome to the Apache Ignite Community")
+    // /.cmtyhero
+
+
+    
+    section.cmtynavblock.jsNavBlock
+        .container
+            ul.cmtynavblock__list.flexi 
+                li
+                    a.cmtynavblock__active(href="#story")  Learn Our Story
+                li
+                    a(href="#community") Meet the Community
+                li
+                    a(href="#contributing") Start Contributing
+                li
+                    a(href="#faq") Ask a Question
+    // /.cmtynavblock
+
+    
+    section.cmtyhistory
+        .container#story
+            .cmtyhistory1
+                h2.cmtyhistory1__title Apache Ignite Story
+                .cmtyhistory1__wrap.flexi
+                    .cmtyhistory1__left
+                        .cmtyhistory__year 2014
+                        img(src="/public/img/community/b3-rocket1.svg", alt="")
+                    .cmtyhistory1__right
+                        h3.cmtyhistory1__h3.fz30.pb-3 Ignite is contributed to ASF
+                        p A <a href="https://incubator.apache.org/projects/ignite.html" target="_blank">new project enters the Apache Software Foundation incubator</a> under the name of "Apache Ignite"🚀. The first members form its community.
+                        .cmtyhistory__hr(data-hideopen="cmtyhistory1")
+                            i
+                            span
+                        .cmtyhistory__more(data-hidebox="cmtyhistory1")
+                            p At&nbsp;that time, Ignite is&nbsp;used as&nbsp;a&nbsp;distributed in-memory data fabric for computing and transacting on&nbsp;large-scale data sets in&nbsp;real-time, orders of&nbsp;magnitude faster than possible with traditional disk-based solutions.
+                            blockquote.cmtyhistory__quote.
+                                It&nbsp;was time of&nbsp;intensive learning experience. While being in&nbsp;the Incubator, guys were learning how to&nbsp;build a&nbsp;vibrant community, create releases and do&nbsp;tings other open source projects&nbsp;do.
+                            .cmtyhistory__avaavtor.pt-2.flexi
+                                .cmtyhistory__ava
+                                    img(src="/public/img/community/b2-cos.jpg", alt="")
+                                .cmtyhistory__avaright 
+                                    .cmtyhistory__avaname Cos Boudnik
+                                    .cmtyhistory__avaproff ASF member, Apache Ignite Mentor
+            // /.cmtyhistory1
+
+            .cmtyhistory2
+                .cmtyhistory2__wrap.flexi
+                    .cmtyhistory2__right
+                        .cmtyhistory__year.cmtyhistory__year--right 2015
+                        img(src="/public/img/community/b3-rocket2.svg", alt="")
+                    .cmtyhistory2__left
+                        h3.cmtyhistory1__h3.fz30.pb-3 Ignite graduates from the incubator
+                        p In&nbsp;less than a&nbsp;year <a href="https://blogs.apache.org/foundation/entry/the_apache_software_foundation_announces79" target="_blank">Ignite successfully graduates</a> from the ASF incubator and became a&nbsp;top-level project of&nbsp;the Apache Software Foundation.
+                        .cmtyhistory__hr(data-hideopen="cmtyhistory2")
+                            i
+                            span
+                        .cmtyhistory__more(data-hidebox="cmtyhistory2")
+                            p The community keeps expanding rapidly. Hundreds of&nbsp;developers and architects start using Ignite as&nbsp;a&nbsp;distributed in-memory data grid (aka. write-through/read-through cache) for its native support of&nbsp;SQL, ACID transactions and high-performance computing APIs.
+            // /.cmtyhistory2
+
+            .cmtyhistory3
+                .cmtyhistory3__wrap.flexi
+                    .cmtyhistory3__left
+                        .cmtyhistory__year 2017
+                        img(src="/public/img/community/b3-rocket3.svg", alt="")
+                    .cmtyhistory3__right
+                        h3.cmtyhistory1__h3.fz30.pb-3 Ignite introduces Native Persistence and becomes a Top-5 Project
+                        p In 2017, two notable events happened. 
+                        .cmtyhistory__hr(data-hideopen="cmtyhistory3")
+                            i
+                            span
+                        .cmtyhistory__more(data-hidebox="cmtyhistory3")
+                            p.pb-3 First, with the donation of&nbsp;the Ignite native persistence to&nbsp;the project&rsquo;s codebase, a&nbsp;new chapter in&nbsp;the Ignite story begins. Since then, many will be&nbsp;using Ignite as&nbsp;a&nbsp;distributed database that scales across memory and disk with no&nbsp;compromises💥.
+                            p Second, that&rsquo;s the year when Ignite is&nbsp;ranked as&nbsp;a&nbsp;top-5 project of&nbsp;the ASF in&nbsp;various categories 🏆 for the first time. This trend continues in&nbsp;the years to&nbsp;come.
+            // /.cmtyhistory3
+
+            .cmtyhistory2.cmtyhistory4
+                .cmtyhistory2__wrap.flexi
+                    .cmtyhistory2__right
+                        .cmtyhistory__year.cmtyhistory__year--right 2020
+                        img(src="/public/img/community/b3-rocket4.svg", alt="")
+                    .cmtyhistory2__left
+                        h3.cmtyhistory1__h3.fz30.pb-3 Ignite becomes (officially) <br>a distributed database
+                        p In 3 years, after the initial release of the Ignite Native Persistence, the community and application developers carried on improving and adopting this capability for mission-critical production workloads. 
+                        .cmtyhistory__hr(data-hideopen="cmtyhistory4")
+                            i
+                            span
+                        .cmtyhistory__more(data-hidebox="cmtyhistory4")
+                            p Finally, after seeing the rapid adoption of Ignite as a database by application developers, the community repositions Ignite as "distributed database for high-performance computing with in-memory speed". 
+            // /.cmtyhistory4
+
+            .cmtyhistory3.cmtyhistory5
+                .cmtyhistory3__wrap.flexi
+                    .cmtyhistory3__left
+                        .cmtyhistory__year Until now
+                        img(src="/public/img/community/b3-rocket5.svg", alt="")
+                    .cmtyhistory3__right
+                        h3.cmtyhistory1__h3.fz30.pb-3 Ignite 3.0 version is under way
+                        p Even when your project can boast of&nbsp;hundreds of&nbsp;thousands of&nbsp;downloads a&nbsp;month and is&nbsp;being selected by&nbsp;elite developers and architects for applications that are used by&nbsp;millions of&nbsp;people daily, there is&nbsp;still room for innovation.
+                        .cmtyhistory__hr(data-hideopen="cmtyhistory5")
+                            i
+                            span
+                        .cmtyhistory__more(data-hidebox="cmtyhistory5")
+                            p Ignite 3&nbsp;is a&nbsp;significant leap forward for both the project and its community. Join or&nbsp;support&nbsp;us in&nbsp;an&nbsp;effort to&nbsp;create a&nbsp;cutting-edge distributed database...
+            // /.cmtyhistory5
+    // /.cmtyhistory
+
+
+
+    section.cmty-meet#community
+        .container
+            .cmty-meet__wrap.flexi
+                .cmty-meet__main
+                    h2.cmty-meet__h2 Meet The Community
+                    .cmty-meet__text.pt-3.
+                        A global community of professionals with different skills and experiences who drive the evolution of Ignite together 3.0 version is under way.
+                    .cmty-meet__sub <a href="http://www.apache.org/theapacheway/" target="_blank">The Apache Way</a> &ndash; get to know our collaboration and contribution values with principles.
+                .cmty-meet__pic 
+                    img(src="/public/img/community/b4-img.svg", alt="")
+    // /.cmty-meet
+
+
+
+    section.cmty-contrib 
+        .container 
+            .cmty-contrib__wrap.flexi
+                .cmty-contrib__main 
+                    h2.h4 Contributers
+                    .cmty-contrib__text.pt-2.
+                        More than 100 members help the project to grow and progress daily. Code contributions, documentation creation, project awareness, developer support — <strong>is a sample of contributions that we recognize.</strong>
+                .cmty-contrib__pic 
+                    img(src="/public/img/community/b5-img.png", alt="")
+    // /.cmty-contrib
+
+
+
+
+
+    section.cmty-committers 
+        .container
+            h2.h4 Committers
+            .cmty-committers__text.pt-2 Most active contributors who make a&nbsp;significant contribution <br>to&nbsp;the project become Apache Ignite committers.
+            p.cmty-committers__small.pt-2 <a href="https://ignite.apache.org/community/resources.html#people" target="_blank">Here is</a> the list of committers for the project.
+            .committers__wrap.flexi 
+                include _components/cmty-committers.pug
+    // /.cmty-committers 
+
+
+
+    section.cmty-pm 
+        .container 
+            h2.fz30 Project Management Committee
+            .cmty-committers__text.pt-2 A group of Ignite committers who oversee project management and operational matters. <br>They vote on new committers, releases and do other vital decisions.
+            p.cmty-committers__small.pt-2 <a href="#">Here is</a> the list of PMC members for the project.
+            
+            include _components/cmty-phs.pug
+    // /.cmty-pm
+
+
+
+    section.cmty-startcont#contributing
+        .container
+            .cmty-startcont__wrap.flexi 
+                .cmty-startcont__main 
+                    h2.h3.cmty-startcont__title Start Contributing
+                    .cmty-startcont__text.h5.pt-3.
+                        There are multiple ways of how you can contribute to Ignite &mdash; contribute to the codebase, help developers on the mailing lists, write technical docs or popularize our technology!
+                .cmty-startcont__pic 
+                    img(src="/public/img/community/b8-img.svg", alt="")
+    // /.cmty-startcont
+
+
+
+    section.cmty-docs 
+        .container 
+            h2.h4 Code and technical documentation contributions
+            .cmty-docs__wrap.flexi.pt-5
+                .cmty-docblock 
+                    .cmty-docblock__icon
+                        img(src="/public/img/community/b9-icon-code.svg", alt="")
+                    h3.cmty-docblock__title.h4 Develop Ignite
+                    .cmty-docblock__text.pt-2.fz20
+                        p Contribute to the Apache Ignite:
+                    ul.cmty-docblock__list 
+                        li code base
+                        li integrations and extensions
+                        li programming languages, such as .NET, Python, Node.JS, or other programming languages different from Java
+                .cmty-docblock.cmty-docblock--bg
+                    .cmty-docblock__icon
+                        img(src="/public/img/community/b9-icon-paper.svg", alt="")
+                    h3.cmty-docblock__title.h4 Improve technical documentation
+                    .cmty-docblock__text.pt-2.fz20
+                        p Documentation educates users about Ignite capabilities, configuration techniques, optimization aspects and many other things.
+                    ul.cmty-docblock__list 
+                        li Produce and maintain the documentation pages <br>or API references
+                        li Edit and correct existing content
+    // /.cmty-docs
+
+
+
+    section.cmty-ready
+        .container
+            h2.h4.pb-1 Ready to start?
+            .cmty-ready__text.fz20 4 Steps to Start Contributing to the Code and Technical Documentation
+            .cmty-ready__wrap.pt-4
+                .cmty-ready__item 
+                    i 01
+                    p.fz20 Create <a href="https://issues.apache.org/jira/" target="_blank">ASF JIRA <br>account</a>, if&nbsp;you haven&rsquo;t got it&nbsp;yet
+                .cmty-ready__item 
+                    i 02
+                    p.fz20 Join <a href="mailto:dev-subscribe@ignite.apache.org" target="_blank">dev mailing list</a> and introduce yourself
+                .cmty-ready__item 
+                    i 03
+                    p.fz20.pb-2 Pick a ticket to start with
+                    p 
+                        span.cmty-ready__openlink(data-hideopen="cmtyready3") Chose the tickets to develop Apache Ignite:
+                    .cmty-ready__hider(data-hidebox="cmtyready3")
+                        p <a href="https://issues.apache.org/jira/projects/IGNITE/issues/IGNITE-15437?filter=allopenissues" target="_blank">Click here</a> to view the tickets for code contribution
+                        p <a href="https://issues.apache.org/jira/browse/IGNITE-15644?jql=project%20%3D%20IGNITE%20AND%20component%20%3D%20documentation" target="_blank">Click here</a> to view the tickets for technical documentation
+                .cmty-ready__item 
+                    i 04
+                    p.fz20 To get more details, check out the <a href="https://cwiki.apache.org/confluence/display/IGNITE/How+to+Contribute" target="_blank">Contribution and Development</a> process
+            .cmty-ready__bottom.flexi
+                h3.cmty-ready__botttl
+                    .h5 Top contributors 💪<br>
+                    .cmty-ready__botlinks.pt-1.
+                        <a href="https://github.com/apache/ignite/graphs/contributors" target="_blank">@Ignite Core and <br>Documentation</a><br>
+                        <a href="https://github.com/apache/ignite-extensions/graphs/contributors" target="_blank">@Ignite Extensions</a><br>
+                        <a href="https://github.com/apache/ignite-teamcity-bot/graphs/contributors" target="_blank">@Ignite Team City </a><br>
+                        <a href="https://github.com/apache/ignite-website" target="_blank">@Ignite Website</a><br>
+                .cmty-ready__screens
+                    a(href="https://github.com/sboikov" target="_blank") 
+                        img(src="/public/img/community/b11-stat1.jpg", alt="")
+                    a(href="https://github.com/agoncharuk" target="_blank") 
+                        img(src="/public/img/community/b11-stat2.jpg", alt="")
+                .cmty-ready__more 
+                    a(href="https://github.com/apache/ignite/graphs/contributors" target="_blank") Load more
+    // /.cmty-ready
+
+    
+    section.cmty-red
+        .container 
+            h2.h4 Contribute By Building The Awareness <br>Of Ignite And Helping Fellow Developers
+            .cmty-red__wrap
+                article.cmty-redblock.cmty-red__wrap--bg.tplbox
+                    img(src="/public/img/community/b12-code.svg", alt="").tplbox__icon
+                    h3.h4.pb-2 Build the Project Awareness
+                    p.fz20 You can contribute by doing any project awareness activities.
+                    ul.dashlist.pt-5
+                        li 
+                            a(href="https://recognition.gridgain.com/main?product=ignite", target="_blank") Create demos
+                        li 
+                            a(href="https://recognition.gridgain.com/main?product=ignite", target="_blank") Write a blog post
+                        li 
+                            a(href="https://recognition.gridgain.com/main?product=ignite", target="_blank") Talk about Ignite at conferences and other events
+                article.cmty-redblock.tplbox
+                    img.cmty-redblock__questimg(src="/public/img/community/b12-icon-quest.svg", alt="").tplbox__icon
+                    h3.h4.pb-2 Help application developers
+                    p.fz20 If you already have some experience with Apache Ignite, for instance, you created your applications, or your services use AI, come and help others.
+                    ul.dashlist.pt-5
+                        li <a href="mailto:user@ignite.apache.org">Answer on the user list</a>
+                        li <a href="https://stackoverflow.com/questions/tagged/ignite" target="_blank">Answer on StackOverflow</a>
+    // /.cmty-red
+
+
+
+    section.cmty-redstart 
+        .container 
+            h2.fz30.pb-1 Ready to start?
+            p.fz20 2 steps to start contributing by building the awareness and helping developers
+            .cmty-redstart__wrap.pt-4
+                article.cmty-redstep.cmty-redstep--1
+                    i 01
+                    p <a href="mailto:dev-subscribe@ignite.apache.org">Join dev mailing list</a> and introduce yourself
+                article.cmty-redstep.cmty-redstep--2
+                    i 02
+                    h3.cmty-redstep__h3 If you want to build project awareness
+                    p <a href="https://recognition.gridgain.com/about" target="_blank">Get instructions</a> and start spreading the word about Apache Ignite.
+                article.cmty-redstep.cmty-redstep--3
+                    i 02
+                    h3.cmty-redstep__h3 If you want to help application developpers
+                    p Look for new questions on the <a href="mailto:user-subscribe@ignite.apache.org">user mailing list</a> or <a href="https://stackoverflow.com/questions/tagged/ignite" target="_blank">StackOverflow</a> (#ignite) and help others to use Ignite successfully.
+            .cmty-redstart__bottom.flexi 
+                h3.cmty-redstart__bottitle.h5.
+                    We do recognise and welcome non-code contributions. There are dozens of Apache Ignite community members who contribute this way
+                a.cmty-redstart__botright(href="https://recognition.gridgain.com/main?date=prev-quarter", target="_blank") 
+                    iframe(src="https://recognition-dev.gridgain.com/leaderboard-frame?limit=10&interval=prev-quarter", frameborder="0").cmty-redstart__iframe.themescroll
+    // /.cmty-redstart
+
+
+
+    section.cmty-ask.boxpiccenter#faq
+        .container
+            .cmty-ask__wrap.flexi
+                .cmty-ask__main
+                    h2.cmty-ask__title.fz50.pb-3 Ask a Question
+                    .cmty-ask__text.h5 Feel free to&nbsp;reach to&nbsp;our community if&nbsp;you have any <br>questions, doubts or&nbsp;proposals. There are a&nbsp;few <br>ways to&nbsp;do&nbsp;that
+                img.cmty-ask__bg(src="/public/img/community/b15-askimg.svg", alt="")
+    // /.cmty-ask
+
+
+
+    section.faq
+        .container
+            article.faqblock.flexi
+                h3.faqblock__title.h5
+                    img(src="/public/img/community/b16-icon-quest.svg", alt="")
+                    span For General Questions
+                .faqblock__right
+                    h4 By e-mail
+                    p For general questions about Ignite <a href="mailto:user@ignite.apache.org">user@ignite.apache.org</a>
+                    .faqblock__buttons.flexi.pb-5.pt-2
+                        a.faqblock__button.flexi(href="mailto:user-subscribe@ignite.apache.org") 
+                            img(src="/public/img/icon-email+.svg", alt="").faqblock__eicon
+                            span Subscribe
+                        a.faqblock__button.flexi(href="mailto:user-unsubscribe@ignite.apache.org") 
+                            img(src="/public/img/icon-email-.svg", alt="").faqblock__eicon
+                            span Unsubscribe
+                        a.faqblock__button.flexi(href="https://lists.apache.org/list.html?user@ignite.apache.org" target="_blank") 
+                            img(src="/public/img/icon-folder.svg", alt="")
+                            span Archives
+                    h4 On StackOverflow
+                    p Many Ignite community members watch <a href="http://stackoverflow.com/questions/tagged/ignite" target="_blank">Stack Overflow</a> for the tag "ignite" or "apacheignite", so you can post your questions there as well.
+                    .faqblock__buttons.flexi.pt-2
+                        a.faqblock__button.flexi(href="http://stackoverflow.com/questions/tagged/ignite" target="_blank") 
+                            img(src="/public/img/icon-stackoverflow.svg", alt="").faqblock__stackicon
+                            span Ask question on StackOverflow
+            // /.faqblock
+            article.faqblock.flexi
+                h3.faqblock__title.h5
+                    img(src="/public/img/community/b16-icon-comments.svg", alt="")
+                    span For Contribution Related <br>Questions and Discussions
+                .faqblock__right
+                    h4 By e-mail
+                    p For contribution-related discussions <a href="mailto:dev@ignite.apache.org">dev@ignite.apache.org</a>
+                    .faqblock__buttons.flexi.pb-4.pt-2
+                        a.faqblock__button.flexi(href="mailto:dev-subscribe@ignite.apache.org") 
+                            img(src="/public/img/icon-email+.svg", alt="").faqblock__eicon
+                            span Subscribe
+                        a.faqblock__button.flexi(href="mailto:dev-unsubscribe@ignite.apache.org") 
+                            img(src="/public/img/icon-email-.svg", alt="").faqblock__eicon
+                            span Unsubscribe
+                        a.faqblock__button.flexi(href="https://lists.apache.org/list.html?user@ignite.apache.org" target="_blank") 
+                            img(src="/public/img/icon-folder.svg", alt="")
+                            span Archives
+                    h4 On StackOverflow
+                    p Many Ignite community contributors monitor <a href="http://stackoverflow.com/questions/tagged/ignite" target="_blank">Stack Overflow</a> for the tag "ignite" or "apacheignite" to support Ignite developers, so you can post your questions there as well.
+                    .faqblock__buttons.flexi.pt-2
+                        a.faqblock__button.flexi(href="http://stackoverflow.com/questions/tagged/ignite") 
+                            img(src="/public/img/icon-stackoverflow.svg", alt="").faqblock__stackicon
+                            span Ask question on StackOverflow
+            // /.faqblock
+            article.faqblock.flexi
+                h3.faqblock__title.h5
+                    img(src="/public/img/community/b16-icon-reports.svg", alt="")
+                    span Report an Issue 
+                .faqblock__right
+                    h4 By e-mail
+                    p For contribution-related discussions <a href="https://lists.apache.org/list.html?issues@ignite.apache.org">issues@ignite.apache.org</a>
+                    .faqblock__buttons.flexi.pb-5.pt-2
+                        a.faqblock__button.flexi(href="mailto:notifications-subscribe@ignite.apache.org") 
+                            img(src="/public/img/icon-email+.svg", alt="").faqblock__eicon
+                            span Subscribe
+                        a.faqblock__button.flexi(href="mailto:issues-unsubscribe@ignite.apache.org") 
+                            img(src="/public/img/icon-email-.svg", alt="").faqblock__eicon
+                            span Unsubscribe
+                        a.faqblock__button.flexi(href="https://lists.apache.org/list.html?issues@ignite.apache.org" target="_blank") 
+                            img(src="/public/img/icon-folder.svg", alt="")
+                            span Archives
+                    h4 On Jira
+                    p Visit <a href="https://issues.apache.org/jira/browse/IGNITE" target="_blank">Ignite Jira</a> if you would like to file a new issue or view existing issues.
+                    .faqblock__buttons.flexi.pt-2
+                        a.faqblock__button.flexi(href="http://stackoverflow.com/questions/tagged/ignite" target="_blank") 
+                            img(src="/public/img/icon-stackoverflow.svg", alt="").faqblock__stackicon
+                            span Ask question on StackOverflow
+            // /.faqblock
+
+
+
+
+
+                
\ No newline at end of file
diff --git a/src/download.pug b/src/download.pug
new file mode 100644
index 0000000..6504dbc
--- /dev/null
+++ b/src/download.pug
@@ -0,0 +1,191 @@
+extend _components/base.pug
+
+block pagetitle
+    | Resources  
+
+block css 
+    link(rel="stylesheet", href="../css/native-persistence.css")
+    link(rel="stylesheet", href="../css/download.css")
+    link(rel="stylesheet", href="../js/vendor/highlight/default.min.css")
+    link(rel="stylesheet", href="../js/vendor/highlight/night-owl.css")
+    script(src="../js/vendor/highlight/highlight.min.js")
+    script(src="../js/vendor/highlight/xml.min.js")
+    //- script(src="../js/vendor/highlight/bash.min.js")
+
+block main
+    - global.pageHref = "download"
+    - config.hdrClassName = "hdr__blue"
+    include ./_components/header.pug
+
+    mixin downloadRow(params)
+        tr 
+            td !{params.ver}
+            td
+                if(params.guide)
+                    a(href=params.guide, target="_blank") guide
+                if(params.javadoc)
+                    a(href=params.javadoc, target="_blank") javadoc
+                if(params.scaladoc)
+                    a(href=params.scaladoc, target="_blank") scaladoc
+            td
+                if(params.notes)
+                    a(href=params.notes, target="_blank") release notes
+            td !{params.date}
+            td 
+                
+                if(params.sourcelink)
+                    - let fileNameArr = params.sourcelink.split("/");
+                    - let fileName = fileNameArr[fileNameArr.length - 1];
+                    a.sourcelink(href=params.sourcelink, target="_blank") !{fileName}
+                    |  (
+                    a(href=params.sourcelink + ".asc", target="_blank") pgp
+                    a(href=params.sourcelink + ".sha512", target="_blank") sha512
+                    | )
+
+
+
+
+
+
+    section.innerhero.innerhero--download
+        .container.innerhero__cont
+            .innerhero__main
+                .innerhero__pre.pb-3 Apache Ignite
+                h1.h1.innerhero__h1.innerhero__mega Downloads
+            img.innerhero__pic.innerhero__pic--download(src="/public/img/downloads/hero.svg", alt="Downloads")
+    // /.innerhero
+
+
+
+    section.downloadtitle.container.pb-5
+        h2 Download Apache Ignite® and install in your environment. <br>Select from one of the available options.
+
+    section.cmtynavblock.jsNavBlock.cmtynavblock--downwrap
+        .container
+            ul.cmtynavblock__list.flexi.cmtynavblock--down
+                li
+                    a.cmtynavblock__active(href="#source") Source Releases
+                li
+                    a(href="#binary") Binary Releases
+                li
+                    a(href="#docker") Docker and <br>Cloud Images
+                li
+                    a(href="#git") Git Repository
+                li
+                    a(href="#extensions") Extensions
+                li
+                    a(href="#party3rd") 3rd Party Binaries 
+    // /.cmtynavblock
+
+    section.download-src#source.container
+        .capstext.pb-5 SOURCE RELEASES
+
+        include ./_components/tabletest.pug
+        .download-src__bottom.flexi.pt-5
+            .download-src__left
+                p.
+                    If you are looking for an earlier version of Apache Ignite, please find it in the archive. If you encounter a problem with the selected mirror, please choose another one. If primary mirrors are not reachable, switch to backup servers added to the end of the list.
+            .download-src__right 
+                .download-choser.flexi 
+                    .download-choser__label Selected mirror:
+                    .download-choser__select.flexi
+                        select(name="download_domain").jsDownloadDomenSelect
+                            option(value="https://dlcdn.apache.org") https://dlcdn.apache.org
+                            option(value="https://dlcdn.apache.org") https://dlcdn.apache.org
+                        a.download-choser__button(href="#")  Change
+    // /.download-src
+
+
+
+
+
+    section.download-bin.container#binary
+        .capstext BINARY RELEASES
+
+        .download-bin__header.pt-4.pb-5
+            p.
+                Binary release packages are provided for your convenience and not considered as primary release artifacts of the ASF. It's recommended to verify a release downloadable, following <a href="#verification">this guidelines.</a> For more information about Apache release policy see <a href="http://www.apache.org/dev/release.html#what" target="_blank">What is a Release?</a>
+
+        include ./_components/tabletest.pug
+        // /.downtable__wrap
+        p.pt-5 f you are looking for previous release versions of Apache Ignite, please have a look in the <a href="https://archive.apache.org/dist/ignite" target="_blank">archive</a>.
+    // /.download-bin
+
+
+
+
+
+    
+
+
+    section.downloadslim.container 
+        h3.h5.pb-2 Slim binary releases
+        include ./_components/tabletest.pug
+    // /.downloadslim
+
+
+
+    section.download-docker.container#docker
+        h3.capstext.pb-5 DOCKER AND CLOUD IMAGES
+        include ./_components/tabletest.pug
+    // /.download-docker
+
+
+
+
+    section.downverify.container#verify.pt-5
+        h3.h5 How to verify
+        .downverify__wrap.flexi.pt-4
+            .downverify__left
+                p The PGP signatures can be verified using PGP or GPG. First download the <a href="https://downloads.apache.org/ignite/KEYS" target="_blank">Apache Ignite KEYS</a> file as well as the .asc signature files for the desired release version. Make sure you get these files from the main distribution directory, rather than from a mirror. Then verify the signatures.
+            aside.downverify__right 
+                p Please check <a href="https://www.apache.org/info/verification.html" target="_blank">How to Verify Downloaded Files</a> for more information on how and why you should verify Apache Ignite releases.
+                downverify.downverify__code
+                    p.pb-1 % gpg --import KEYS
+                    p % gpg --verify apache-ignite-2.9.1-src.zip.asc apache-ignite-2.9.1-src.zip
+    // /.downverify
+
+
+
+    section.downfooter.container#git
+        p.capstext.pb-3 GIT REPOSITORY
+        pre.nativecode__codebox.nomargin
+            code.bash.
+                $ git clone https://gitbox.apache.org/repos/asf/ignite
+        
+        .downfooter__spacer.pt-5.pb-5
+        p.capstext.pb-3#extensions EXTENSIONS
+
+        -
+            var xmlCode = `<dependency>
+                <groupId>org.apache.ignite</groupId>
+                <artifactId>ignite-spring-boot-autoconfigure-ext</artifactId>
+                <version>1.0.0</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.ignite</groupId>
+                <artifactId>ignite-spring-boot-thin-client-autoconfigure-ext</artifactId>
+                <version>1.0.0</version>
+            </dependency>`;
+
+        pre.nativecode__codebox.nomargin
+            code.xml #{xmlCode}
+
+
+
+    section.party3rd#party3rd.container
+        p.capstext 3RD PARTY BINARIES
+        .party3rd__wrap.pt-5.flexi
+            .party3rd__left
+                p.pb-2 This is a list of 3rd party binary packages based on Apache Ignite. The Apache Ignite project does not endorse or maintain any 3rd party binary packages.
+                p <a href="https://www.gridgain.com/resources/download#communityEdition" target="_blank">GridGain Community Edition</a> is a binary build of Apache Ignite created by GridGain, which includes optional LGPL dependencies, such as Hibernate L2 cache integration and Geospatial Indexing, as well as bug fixes and features which may be included into the future official Apache Ignite releases.
+            .party3rd__right
+                p GridGain also provides his own <a href="http://www.gridgainsystems.com/nexus/content/repositories/external" target="_blank">GridGain Maven Repository</a> containing Apache Ignite LGPL artifacts such as ignite-hibernate.
+                p Please note that artifacts located at GridGain Maven Repository provided for convenience and are NOT official Apache Ignite artifacts.
+                p If you would like to provide your own edition of Apache Ignite here, please send email to <a href="mailto:dev@ignite.apache.org">Ignite dev list.</a>
+
+
+
+
+
+
diff --git a/src/events.pug b/src/events.pug
new file mode 100644
index 0000000..25d5a6e
--- /dev/null
+++ b/src/events.pug
@@ -0,0 +1,300 @@
+extend _components/base.pug
+
+block pagetitle
+    | Events 
+
+block css 
+    link(rel="stylesheet", href="../css/events.css")
+
+block main
+    - global.pageHref = "events.html"
+    include ./_components/header.pug
+
+
+
+    section.eventhero
+        .container
+            .eventhero__main
+                h2.h2.
+                    Join The Apache Ignite <br>
+                    Community At&nbsp;Conferences, <br>
+                    Summits And Other Events
+                .h5.pt-3.
+                    The community meets online and offline regularly. <br>
+                    Join our meetup groups and events to learn from <br>Ignite experts or to share your Ignite experience.
+            img.eventhero__img(src="/public/img/events/b1-mainpic.svg", alt="Join the Apache Ignite Community at Conferences, Summits and Other Events")
+    // /.eventhero
+
+
+    section.cmtynavblock 
+        .container
+            ul.cmtynavblock__list.flexi 
+                li
+                    a.cmtynavblock__active(href="#summit")  Ignite Summit
+                li
+                    a(href="#meetups") Meetups Worldwide
+                li
+                    a(href="#upcoming") Upcoming Events
+                li
+                    a(href="#past") Past Events
+    // /.cmtynavblock
+
+
+
+    section.event-featured.container 
+        p.capstext Featured Event
+        a(href="#").event-featured__banner.pt-5
+            .event-featured__placeholder(style="background:#E8F2FA; height:340px;")
+    // /.event-featured
+
+
+
+    section.evsummit.container#summit
+        .evsummit__date.flexi 
+            .evsummit__day 16
+            .evsummit__month.h5 NOVEMBER <br>2021
+        .evsummit__info.flexi.pt-5
+            .evsummit__logo 
+                img(src="/public/img/events/b2-summit.svg", alt="")
+            .evsummit__descr
+                h3.h3 Apache Ignite Summit
+                p.h5.pt-2.
+                    This virtual conference will feature speakers from industry-leading companies <br>
+                    and hundreds of participants from all over the world. 
+        .evsummit__blocks.pt-5.flexi 
+            a(href="#").evsummblock.evsummblock--speaker
+                p.h4.evsummblock__title Become a speaker
+                p.fz20.pt-1x.evsummblock__descr Submit a talk by October 15
+                p.evsummblock__listtitle.pt-4
+                    strong We are looking for:
+                ul.evsummblock__list.dashlist.pt-1
+                    li Ignite cloud-related deployment stories
+                    li technical deep dives
+                    li integration experiences
+            a(href="#").evsummblock.evsummblock--join
+                p.h4.evsummblock__title Join Summit online
+                p.fz20.pt-1x.evsummblock__descr.
+                    Become a&nbsp;part of&nbsp;a&nbsp;true community event 
+                    and learn more about up-to-date<br>
+                    in-memory computing solutions.
+    // /.evsummit
+        
+
+    section.event-planet#meetups
+        .container
+            .event-planet__wrap.flexi 
+                .event-planet__main 
+                    h3.h3.pb-1 Apache Ignite Meetups Worldwide
+                    p.h5.pt-5 Meet the community&nbsp;&mdash; developers, experts, and practitioners&nbsp;&mdash; face-to-face, virtually, or&nbsp;onsite in&nbsp;your city.
+                .event-planet__pic 
+                    img(src="/public/img/events/b4-world.svg", alt="")
+    // /.event-planet
+        
+
+
+    section.event-virtual.container 
+        .eventvirt.flexi 
+            .eventvirt__left 
+                h3.h4 Virtual Apache Ignite Meetup
+                p.pt-2 Join Ignite users, developers, committers, contributors, and architects from all over the world and&nbsp;get access to&nbsp;the online-talks and presentations by&nbsp;Apache Ignite experts and practitioners.
+            .eventvirt__right 
+                a.button(href="#") Join Virtual Meetup
+
+        .event-virtbot.flexi
+            .event-virtbot__col
+                h4.h4 Recordings Of Past Meetups
+                p.pt-2 Find a collection of past Virtual Apache Ignite Meetup <br>presentations, talks, and webinars.
+                .event-recording.pb-2
+                    a(href="#").event-recorditem.videoscr.glightbox
+                        .event-recpic(style="border-radius:10px; background:#F6F6F6;")
+                    a(href="#").event-recorditem.videoscr.glightbox
+                        .event-recpic(style="border-radius:10px; background:#F6F6F6;")
+                    a(href="#").event-recorditem.videoscr.glightbox
+                        .event-recpic(style="border-radius:10px; background:#F6F6F6;")
+                a.event-recbutton.button.button--shadow(href="https://www.youtube.com/playlist?list=PLMc7NR20hA-LQ0GR1QW5SDQflMOuPUqDQ", target="_blank")
+                    i.
+                        <svg width="9" height="10" viewBox="0 0 9 10" fill="none" xmlns="http://www.w3.org/2000/svg">
+                            <path d="M8.71423 4.99993L0.142805 9.94865L0.142805 0.0512134L8.71423 4.99993Z"/>
+                        </svg>
+                    span Watch Virtual Meetup videos 
+
+            .event-virtbot__col
+                h4.h4 Upcoming Virtual Meetup
+                p.pt-2.event-virtbot__gray November 16, 2021
+                .event-dynamicsect
+                a.button.button--shadow.event-recmorebutton(href="https://www.meetup.com/ru-RU/Apache-Ignite-Virtual-Meetup/events/280383112/", target="_blank") Learn more
+    // /.event-virtual
+
+
+
+    section.eventyoucity.container 
+        h2.h4 Apache Ignite Meetups In Your City
+        .eventyoucity__wrap.pt-5
+            article.eventyoucity__item
+                .eventyoucity__icon 
+                    img(src="/public/img/events/flag-uk.svg", alt="")
+                .eventyoucity__town.h5
+                    strong London
+                    span Apache Ignite Meetup
+                .eventyoucity__action 
+                    a.button.button--shadow(href="#")
+                        img(src="/public/img/events/icon-plus.svg", alt="")
+                        span Join 
+            article.eventyoucity__item
+                .eventyoucity__icon 
+                    img(src="/public/img/events/flag-ru.svg", alt="")
+                .eventyoucity__town.h5
+                    strong St.Petersburg
+                    span Apache Ignite Meetup
+                .eventyoucity__action 
+                    a.button.button--shadow(href="#")
+                        img(src="/public/img/events/icon-plus.svg", alt="")
+                        span Join 
+            article.eventyoucity__item
+                .eventyoucity__icon 
+                    img(src="/public/img/events/flag-ru.svg", alt="")
+                .eventyoucity__town.h5
+                    strong Moscow
+                    span Apache Ignite Meetup
+                .eventyoucity__action 
+                    a.button.button--shadow(href="#")
+                        img(src="/public/img/events/icon-plus.svg", alt="")
+                        span Join
+            article.eventyoucity__last
+                p.fz20.pb-3 Start an onsite Apache Ignite Meetup in your city.
+                small Take the first step.
+                small Send us a note to <br><a href="mailto:dev@ignite.apache.org">dev@ignite.apache.org</a> <br>and we'll see what can be done.
+    // /.eventyoucity
+
+
+
+    section.eventupcoming.container#upcoming 
+        .capstext.pb-1 Upcoming Events Schedule
+        .eventupcoming__wrap.pt-4
+            h2.h4.eventupcoming__head.pb-5 Online events (2)
+            article.eventcomingitem.flexi 
+                .eventcomingitem__left
+                    p.eventcomingitem__num 21
+                    p.eventcomingitem__month SEPTEMBER
+                    p.eventcomingitem__year.pt-3 2021
+                .eventcomingitem__main
+                    p.eventcomingitem__title.h5 Distributed Java Databases Under the Hood: Main Components and Interactions Between Them
+                    p.eventcomingitem__descr.pt-1 We will describe the minimal architecture of distributed data storage—the main components and how these components work together.
+                    a.eventcomingitem__more(href="#")  Learn more details
+                .eventcomingitem__right
+                    .eventcomingitem__mic
+                        .eventcomingitem__speaker Valentin Kulichenko
+                    .eventcomingitem__loc
+                        .eventcomingitem__locblock
+                            img(src="/public/img/events/icon-pero.png", alt="")
+                        .eventcomingitem__camera Online event
+            // /.eventcomingitem
+
+            article.eventcomingitem.flexi 
+                .eventcomingitem__left
+                    p.eventcomingitem__num 23
+                    p.eventcomingitem__month SEPTEMBER
+                    p.eventcomingitem__year.pt-3 2021
+                .eventcomingitem__main
+                    p.eventcomingitem__title.h5 Apache Ignite Extensions – Modularization 
+                    p.eventcomingitem__descr.pt-1 Apache Ignite Extensions to allow Apache Ignite codebase host core modules capabilities and migrate 3rd party integrations in a separate repository.
+                    a.eventcomingitem__more(href="#") Learn more details
+                .eventcomingitem__right
+                    .eventcomingitem__mic
+                        .eventcomingitem__speaker Saikat Maitra
+                    .eventcomingitem__loc
+                        .eventcomingitem__locblock
+                            img(src="/public/img/events/icon-pero.png", alt="")
+                        .eventcomingitem__camera Online event
+            // /.eventcomingitem
+
+        .eventupcoming__wrap.pt-4
+            h2.h4.py-4 Offline events (4)
+            article.eventcomingitem.flexi 
+                .eventcomingitem__left
+                    p.eventcomingitem__num 20
+                    p.eventcomingitem__month SEPTEMBER
+                    p.eventcomingitem__year.pt-3 2021
+                .eventcomingitem__main
+                    .eventcomingitem__complextitle.flexi
+                        img.eventcomingitem__logo(src="/public/img/events/content/event1.png", alt="")
+                        p.eventcomingitem__title.h5 Apache Ignite. Now with CDC!
+                    p.eventcomingitem__descr.pt-2 Nikolay Izhikov, Apache Ignite PMC, will introduce the audience to Change Data Capture and share how it's organized in Apache Ignite
+                    a.eventcomingitem__more(href="#") Learn more details
+                .eventcomingitem__right
+                    .eventcomingitem__mic
+                        .eventcomingitem__speaker Nikolay Izhikov
+                    .eventcomingitem__loc
+                        .eventcomingitem__locblock Saint-Petersburg, Russia
+                        .eventcomingitem__camera Online event
+            // /.eventcomingitem
+
+            article.eventcomingitem.flexi 
+                .eventcomingitem__left
+                    p.eventcomingitem__num 23
+                    p.eventcomingitem__month SEPTEMBER
+                    p.eventcomingitem__year.pt-3 2021
+                .eventcomingitem__main
+                    .eventcomingitem__complextitle.flexi
+                        img.eventcomingitem__logo(src="/public/img/events/content/event2.png", alt="")
+                        p.eventcomingitem__title.h5 Organization of testing distributed systems on the example of a real Java project
+                    p.eventcomingitem__descr.pt-2 First offline meeting in 2021! Ignite Committers will talk about recently updated features. Dmitry Gorchakov will introduce the case – building a distributed system of "super services" on Apache Ignite.
+                    a.eventcomingitem__more(href="#") Learn more details
+                .eventcomingitem__right
+                    .eventcomingitem__mic
+                        .eventcomingitem__speaker.
+                            Ivan Bessonov<br>
+                            Maxim Muzafarov<br>
+                            Dmitry Gorchakov
+                    .eventcomingitem__loc 
+                        .eventcomingitem__locblock Moscow, Russia
+            // /.eventcomingitem
+    // /.eventupcoming
+
+
+
+
+    section.eventspast#past.container
+        h3.capstext.pb-5 Past Events
+        .eventspast__tablinks.flexi 
+            button.eventpast__link(data-tablink="e2021").active 2021
+            button.eventpast__link(data-tablink="e2021") 2020
+            button.eventpast__link(data-tablink="e2021") 2019
+            button.eventpast__link(data-tablink="e2021") 2018
+            button.eventpast__link(data-tablink="e2021") 2017
+            button.eventpast__link(data-tablink="e2021") 2016
+            button.eventpast__link(data-tablink="e2021") 2015
+            button.eventpast__link(data-tablink="e2021") 2014
+        .eventspast__tabs
+            .eventspast__tab 
+                article.eventcard
+                    .eventcard__date September 2, 2021
+                    h3.h5.pt-3 Building a low-code BaaS platform on Apache Ignite
+                    .eventcard__info.pt-2 
+                        .eventcard__speaker Courtney Robinson
+                            small (Hypi, co-founder and CEO)
+                        .eventcard__loc Virtual Apache Ignite Meetup
+                    a.eventcard__button.button.button--shadow Learn more details
+                article.eventcard
+                    .eventcard__date September 2, 2021
+                    h3.h5.pt-3 Apache Ignite 3.0.0 Alpha 2 Build Community Gathering
+                    .eventcard__info.pt-2 
+                        .eventcard__speaker.eventcard__speaker--one Valentin Kulichenko
+                        .eventcard__loc Virtual Apache Ignite Meetup
+                    a.eventcard__button.button.button--shadow Learn more details
+                article.eventcard
+                    .eventcard__date June 19, 2021
+                    h3.h5.pt-3 Apache Ignite on Kubernetes
+                    .eventcard__info.pt-2 
+                        .eventcard__speaker.eventcard__speaker--one Colin Capriati
+                        .eventcard__loc Virtual Apache Ignite Meetup
+                    a.eventcard__button.button.button--shadow Learn more details
+            // /.eventspast__tab
+            .eventspast__bottom.pt-5
+                a.eventspast__more.jsLoadMoreEvents(href="#")  Show more
+    // /.eventspast
+        
+
+
+
+    
\ No newline at end of file
diff --git a/src/faq.pug b/src/faq.pug
new file mode 100644
index 0000000..7ca0574
--- /dev/null
+++ b/src/faq.pug
@@ -0,0 +1,159 @@
+extend _components/base.pug
+
+block pagetitle
+    | FAQ   
+
+block css 
+    link(rel="stylesheet", href="../css/faq.css")
+    link(rel="stylesheet", href="../css/tooling.css")
+
+block main
+    - global.pageHref = "faq"
+    - config.hdrClassName = "hdr__blue"
+    include ./_components/header.pug
+
+
+    section.innerhero.innerhero--faq
+        .container.innerhero__cont
+            .innerhero__main.innerhero__main--long
+                h1.h1.innerhero__h1 Frequently Asked Questions <br>About Apache Ignite
+                .innerhero__descr.pt-5.h4.
+                    Ignite’s rich feature set enables it for a myriad of use cases. <br>
+                    Is Ignite a cache, transactional database, key-value store? <br>Find the answers below.
+            img.innerhero__pic.innerhero__pic--faq(src="/public/img/faq/hero.svg", alt="Frequently asked questions")
+    // /.innerhero
+
+
+
+    section.faqabout.container 
+        .capstext Apache Ignite FAQs
+        .faqabout__wrap.flexi.pt-5
+            .faqabout__left
+                h2.h4.pb-2 What Is In-memory Computing?
+                p In-memory computing is a software and data-processing technique that stores data sets in memory across a cluster of interconnected nodes. An average speed performance is 10-1000x faster than in disk-based systems. 
+                p In-memory computing software includes a distributed in-memory store with APIs and libraries optimized for high-performance data processing. Each cluster node (physical or virtual machine) contributes its available memory space with CPU cores to the total capacity of the cluster. 
+                p An application interacts with the cluster as a single unit, letting the in-memory computing software shield and manage all the internals related to inter-node communications, data distribution, and queries processing. The cluster scales linearly and horizontally to meet the data volume and throughput goals of the applications.
+            aside.faqabout__right
+                .faqabout__num.h3 10-1000x
+                p.h5 performance increase
+                .faqabout__rightbot.h5 Unlimited horizontal scalability
+    // /.faqabout
+
+
+
+
+    section.faqfeats.container
+        .h4.faqfeats__title Apache Ignite Belongs to&nbsp;The In-memory <br>Computing Category:
+        .faqfeats__wrap.flexi.pt-5
+            article.faqfeat.pt-1
+                .faqfeat__iconwrap.flexi 
+                    img(src="/public/img/faq/icon-faq1.svg", alt="")
+                .faqfeat__text.pt-2 Build real-time and event-driven solutions that process data with in-memory speed
+            article.faqfeat.pt-1
+                .faqfeat__iconwrap.flexi 
+                    img(src="/public/img/faq/icon-faq2.svg", alt="")
+                .faqfeat__text.pt-2 Scale up&nbsp;and out across available memory and disk capacity
+            article.faqfeat.pt-1
+                .faqfeat__iconwrap.flexi 
+                    img(src="/public/img/faq/icon-faq3.svg", alt="")
+                .faqfeat__text.pt-2 Take advantage of&nbsp;built-in SQL, high-performance computing and real-time processing APIs
+    // /.faqfeats
+
+
+
+
+    section.faqboxs.container
+        article.faqbox.cardsimple
+            .faqbox__itemtitle.h5 Is Ignite a Distributed Cache?
+            .faqbox__anwser.h5.pt-3 Yes
+            .faqbox__text.pt-3
+                p When Ignite native persistence is&nbsp;disabled, Ignite can function as&nbsp;a&nbsp;distributed in-memory cache with support distributed ACID&nbsp;transactions, SQL queries, high-performance computing APIs, and more.
+            .cardsimple__bottom
+                a.cardsimple__button.button.button--shadow(href="/use-cases/in-memory-cache.html") Learn more: In-Memory Cache
+
+        article.faqbox.cardsimple
+            .faqbox__itemtitle.h5 Is Ignite a Distributed Database?
+            .faqbox__anwser.h5.pt-3 Yes
+            .faqbox__text.pt-3
+                p Ignite is&nbsp;a&nbsp;distributed database for high-performance computing with in-memory speed.
+                p Data in&nbsp;Ignite is&nbsp;stored in-memory and/or on-disk, and is&nbsp;either partitioned or&nbsp;replicated across a&nbsp;cluster of&nbsp;multiple nodes. This provides scalability, performance, and resiliency.
+            .cardsimple__bottom
+                a.cardsimple__button.button.button--shadow(href="/use-cases/in-memory-data-grid.html") Learn more: In-Memory Database
+
+        article.faqbox.cardsimple
+            .faqbox__itemtitle.h5 Is Ignite an In-memory Database?
+            .faqbox__anwser.h5.pt-3 Yes
+            .faqbox__text.pt-3
+                p Ignite multi-tier storage supports both in-memory and disk tiers. You can always disable the native persistence and use Ignite as&nbsp;a&nbsp;distributed in-memory database, with support for SQL, transactions and other APIs.
+            .cardsimple__bottom
+                a.cardsimple__button.button.button--shadow(href="/use-cases/in-memory-database.html") Learn more: In-Memory Database
+
+        article.faqbox.cardsimple
+            .faqbox__itemtitle.h5 Is Ignite an In-memory Data Grid?
+            .faqbox__anwser.h5.pt-3 Yes
+            .faqbox__text.pt-3
+                p Ignite is&nbsp;a&nbsp;full-featured distributed data grid. As&nbsp;a&nbsp;grid, Ignite can automatically integrate with and accelerate any 3rd party databases, including any RDBMS or&nbsp;NoSQL stores.
+            .cardsimple__bottom
+                a.cardsimple__button.button.button--shadow(href="/use-cases/in-memory-data-grid.html") Learn more: In-Memory Data Grid
+
+        article.faqbox.cardsimple
+            .faqbox__itemtitle.h5 Is Ignite an SQL Database?
+            .faqbox__anwser.h5.pt-3 Not fully
+            .faqbox__text.pt-3
+                p Although Ignite supports SQL natively, there are differences in&nbsp;how Ignite handles constraints and indexes.
+                p Ignite supports primary and secondary indexes, however the uniqueness can only be&nbsp;enforced for the primary indexes. Ignite also does not support foreign key constraints at&nbsp;the moment.
+            .cardsimple__bottom
+                a.cardsimple__button.button.button--shadow(href="/use-cases/in-memory-database.html") Learn more: In-Memory Database
+
+        article.faqbox.cardsimple
+            .faqbox__itemtitle.h5 Is Ignite a Disk- or Memory-Only Storage?
+            .faqbox__anwser.h5.pt-3 Both
+            .faqbox__text.pt-3
+                p Native persistence in&nbsp;Ignite can be&nbsp;turned on&nbsp;and off. This allows Ignite to&nbsp;store data sets bigger than can fit in&nbsp;the available memory.
+                p Essentially, smaller operational data sets can be&nbsp;stored in-memory only, and larger data sets that do&nbsp;not fit in&nbsp;memory can be&nbsp;stored on&nbsp;disk, using memory as&nbsp;a&nbsp;caching layer for better performance.
+            .cardsimple__bottom
+                a.cardsimple__button.button.button--shadow(href="/arch/native-persistence.html") Learn more: Native Persistence
+
+        article.faqbox.cardsimple
+            .faqbox__itemtitle.h5 Is Ignite a NoSQL Database?
+            .faqbox__anwser.h5.pt-3 Not exactly
+            .faqbox__text.pt-3
+                p Just like other NoSQL databases, Ignite is&nbsp;highly available and horizontally scalable.
+                p However, unlike other NoSQL databases, Ignite supports SQL and ACID transactions across multiple cluster nodes.
+        
+        article.faqbox.cardsimple
+            .faqbox__itemtitle.h5 Is Ignite a Transactional Database?
+            .faqbox__anwser.h5.pt-3 Not fully
+            .faqbox__text.pt-3
+                p ACID Transactions are supported, but only at&nbsp;key-value API level. Ignite also supports cross-partition transactions, which means that transactions can span keys residing in&nbsp;different partitions on&nbsp;different servers.
+                p At&nbsp;SQL level, Ignite supports atomic, but not yet transactional consistency. SQL transactions implementation is&nbsp;already <a href="https://cwiki.apache.org/confluence/display/IGNITE/IEP-3%3A+Transactional+SQL" target="_blank">in&nbsp;the works</a> and will be&nbsp;released in&nbsp;Ignite&nbsp;3.
+            .cardsimple__bottom
+                a.cardsimple__button.button.button--shadow(href="/features/acid-transactions.html") Learn more: ACID Transactions
+
+        article.faqbox.cardsimple
+            .faqbox__itemtitle.h5 Is Ignite a Multi-Model Database?
+            .faqbox__anwser.h5.pt-3 Yes
+            .faqbox__text.pt-3
+                p Ignite supports both key-value and SQL for modelling and accessing data. 
+                p In&nbsp;addition, Ignite provides strong processing APIs for computing on&nbsp;distributed data.
+            .cardsimple__bottom
+                a.cardsimple__button.button.button--shadow(href="/use-cases/in-memory-database.html") Learn more: In-Memory Database
+
+        article.faqbox.cardsimple
+            .faqbox__itemtitle.h5 Is Ignite a Key-Value Store?
+            .faqbox__anwser.h5.pt-3 Yes
+            .faqbox__text.pt-3
+                p Ignite provides a&nbsp;feature-rich key-value API, that is&nbsp;JCache (JSR-107) compliant and supports Java, C++, .NET, and other programming languages.
+            .cardsimple__bottom
+                a.cardsimple__button.button.button--shadow(href="/use-cases/key-value-store.html") Learn more: Distributed Key-Value Store
+    // /.faqboxs
+  
+
+
+    section.toolingend
+        .container.flexi
+            .toolingend__main
+                h2.toolingend__title.h4 Ready to Start with Apache Ignite?
+                p.fz20.pt-1x Start with our Quick Start Guides and build your first application <br>in 5-10 minutes
+            .toolingend__action
+                a.button Build your first application
\ No newline at end of file
diff --git a/src/features/acid-transactions.pug b/src/features/acid-transactions.pug
new file mode 100644
index 0000000..a82967e
--- /dev/null
+++ b/src/features/acid-transactions.pug
@@ -0,0 +1,109 @@
+extend ../_components/base.pug
+
+block pagetitle
+    | ACID transactions  
+
+block css 
+    link(rel="stylesheet", href="../css/native-persistence.css")
+    link(rel="stylesheet", href="../css/acid-transactions.css")
+
+
+
+block main
+    - global.pageHref = "features"
+    - config.hdrClassName = "hdr__blue"
+    include ../_components/header.pug
+
+
+    section.innerhero
+        .container.innerhero__cont
+            .innerhero__main
+                h1.h1.innerhero__h1 Distributed ACID <br>transactions
+                .pt-2.h3 with Apache Ignite
+                .innerhero__descr.pt-4.h5.
+                    Classical ACID transactions that let you update distributed data <br>consistently, durably and with in-memory speed
+                .innerhero__action 
+                    a.button.innerhero__button(href="https://ignite.apache.org/docs/latest/index") Start Coding
+            img.innerhero__pic.innerhero__pic--acid(src="/public/img/features/acid/hero.svg", alt="Distributed ACID transactions")
+    // /.innerhero
+
+
+
+
+
+
+    section.acid1.container 
+        h2.acid1__h2.h4 Update multiple records from different tables that span across many cluster nodes
+        .acid1__wrap.flexi
+            .acid1__item
+                .acid1__title.fz20 Consistency
+                .acid1__text.pt-3
+                    p Ignite transactional APIs are used by&nbsp;banks to&nbsp;implement payments services that transfer money between accounts in&nbsp;real-time.
+            .acid1__item
+                .acid1__title.fz20 Durability
+                .acid1__text.pt-3
+                    p Multi-tier storage persists changes durably to&nbsp;disk. Committed transactions always survive failures, incomplete transactions are rolled back.
+            .acid1__item
+                .acid1__title.fz20 Fault-Tolerance
+                .acid1__text.pt-3
+                    p The transactional engine avoids inconsistencies even if&nbsp;your transaction is&nbsp;failed in&nbsp;the middle of&nbsp;a&nbsp;commit.
+    // /.acid1
+
+
+
+
+    section.acid2.container 
+        h2.acid2__h2 To guarantee data consistency, durability and fault-<br>tolerance Ignite implements the two-phase commit protocol
+        .acid2__wrap.flexi.pt-5
+            .acid2__main
+                p In distributed systems, a transaction usually spans across multiple cluster nodes. 
+                p To handle possible distributed failures properly and avoid data inconsistencies cluster-wide, a two-phase commit protocol (2PC) is used.
+                h3.acid2__subtitle.h5.pb-2 How ACID transactions work
+                p Whenever the records get updated within a&nbsp;transaction, Ignite keeps the transactional state in&nbsp;a&nbsp;local transaction map until the changes are committed.
+                p At&nbsp;which point, the data is&nbsp;transferred to&nbsp;the participating remote nodes. Only the nodes that hold primary or&nbsp;backup copies of&nbsp;the data participate in&nbsp;the transaction.
+                p If&nbsp;a&nbsp;transaction is&nbsp;mapped to&nbsp;a&nbsp;single node, then, Ignite optimizes the transaction execution by&nbsp;switching to&nbsp;the one-phase-commit (1PC) protocol.
+            aside.acid2__right
+                img(src="/public/img/features/acid/acid-func.svg", alt="").acid2__funcimg
+    // /.acid2
+
+
+
+    section.acid3.container.pt-5
+        h2.h4.acid3__title Records are updated consistently across <br>memory and disk tiers
+        .acid3__wrap.pt-5.flexi
+            .acid3__col 
+                h3.h5.pb-2 Transactions with Ignite native persistence
+                p.fz20.acid3__collead In case of any failure you can always recover to a consistent state
+                .acid3__small.pt-4
+                    p When native persistence mode is&nbsp;enabled and Apache Ignite is&nbsp;used as&nbsp;a&nbsp;database that scales beyond available memory capacity, the distributed transactions update data across memory and disk in&nbsp;a&nbsp;consistent way.
+                    p All the changes stay durable, because they are written to&nbsp;the write-ahead log (WAL) files. It&nbsp;guarantees data consistency even if&nbsp;the cluster or&nbsp;individual nodes go&nbsp;down in&nbsp;the middle of&nbsp;a&nbsp;transaction.
+                a.acid3__detlink(href="#", data-hideopen="acidbox")  WAL in details
+                .acid3__detwrap(data-hidebox="acidbox")
+                    .acid3__detmore
+                        button.acid3__close(data-hideopen="acidbox")
+                            img(src="/public/img/features/acid/icon-cross.svg", alt="")
+                        p The purpose of&nbsp;the WAL is&nbsp;to&nbsp;propagate updates to&nbsp;the disk in&nbsp;the append-only mode, which is&nbsp;the fastest way to&nbsp;persist data to&nbsp;disk.
+                        p.pt-1 The WAL provides a&nbsp;recovery mechanism for failure scenarios when a&nbsp;single node or&nbsp;the whole cluster goes down. A&nbsp;cluster can always be&nbsp;recovered to&nbsp;the latest successfully committed transaction.
+            .acid3__col
+                h3.h5.pb-2 Transactions with external databases
+                p.fz20.acid3__collead Your transactions will be updated both i&nbsp;external database and Apache Ignite
+                .acid3__small.pt-4
+                    p When Apache Ignite is&nbsp;used as&nbsp;a&nbsp;caching layer for an&nbsp;external database, such as&nbsp;RDBMS, transactions span the cached data in&nbsp;Ignite as&nbsp;well as&nbsp;the data persisted in&nbsp;a&nbsp;database supporting transactional APIs.
+                    p For instance, if&nbsp;a&nbsp;relational database is&nbsp;configured as&nbsp;a&nbsp;disk tier, Ignite writes the transactional changes to&nbsp;the database before sending a&nbsp;commit message to&nbsp;participating cluster nodes.
+                    p This way, if&nbsp;a&nbsp;transaction fails at&nbsp;the database level, Ignite can still send the rollback message to&nbsp;the cluster nodes, keeping the data consistent across memory and disk tiers.
+
+    
+    section.native-bottom.container
+        .native-bottom__grid 
+            article.nativebotblock
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-rocket.svg", alt="").nativebotblock__icon
+                    span Ready to Start?
+                p.nativebotblock__text Create your transactional application <br>with Apache Ignite
+                a.nativebotblock__link.arrowlink(href="https://ignite.apache.org/docs/latest/key-value-api/transactions", target="_blank") Performing ACID Transactions
+            article.nativebotblock.nativebotblock--learn
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-docs.svg", alt="").nativebotblock__icon
+                    span Want to&nbsp;Learn More?
+                p.nativebotblock__text Ignite&nbsp;3.0 advances its replication and transactional components with the support of&nbsp;the <strong>Raft consensus algorithm</strong>
+                a.nativebotblock__link.arrowlink(href="https://cwiki.apache.org/confluence/display/IGNITE/IEP-61%3A+Common+Replication+Infrastructure", target="_blank") Ignite 3.0 and Raft Details
\ No newline at end of file
diff --git a/src/features/compute-apis.pug b/src/features/compute-apis.pug
new file mode 100644
index 0000000..ee8d50a
--- /dev/null
+++ b/src/features/compute-apis.pug
@@ -0,0 +1,190 @@
+extend ../_components/base.pug
+
+block pagetitle
+    | Compute APIs   
+
+block css 
+    link(rel="stylesheet", href="../css/native-persistence.css")
+    link(rel="stylesheet", href="../css/compute-apis.css")
+    link(rel="stylesheet", href="../js/vendor/highlight/night-owl.css")
+
+    script(src="../js/vendor/highlight/highlight.min.js")
+    script(src="../js/vendor/highlight/java.min.js")
+    script(src="../js/vendor/highlight/xml.min.js")
+    script(src="../js/vendor/highlight/csharp.min.js")
+
+
+
+block main
+    - global.pageHref = "features"
+    - config.hdrClassName = "hdr__blue"
+    include ../_components/header.pug
+
+
+    section.innerhero
+        .container.innerhero__cont
+            .innerhero__main
+                .innerhero__pre.pb-3 Apache Ignite
+                h1.h1.innerhero__h1 Compute APIs
+                .innerhero__descr.pt-2.h5.
+                    Develop custom tasks in contemporary languages<br> and get the logic executed over a distributed cluster
+                .innerhero__action 
+                    a.button.innerhero__button(href="https://ignite.apache.org/docs/latest/index") Start Coding
+            img.innerhero__pic.innerhero__pic--computeapis(src="/public/img/features/compute-apis/compute-hero.svg", alt="Distributed In-Memory Cache")
+    // /.innerhero
+
+  
+
+    section.compute1.container
+       h2.compute1__h2.h4 Execute Data-Intensive And Compute-Intensive Tasks At High Speeds
+       .compute1__deskr Get an order-of-magnitude performance increase for custom complex logic:
+       .compute1__block.flexi
+         .compute1__item
+           img(src="/public/img/features/compute-apis/icon-one.svg" alt="").compute1__icon
+           p.compute1__text By minimizing or avoiding network<br> utilization
+         .compute1__item
+           img(src="/public/img/features/compute-apis/icon-two.svg" alt="").compute1__icon
+           p.compute1__text By executing the logic straight on the <br>cluster nodes
+    // /.compute1
+    
+    section.compute2
+     .container
+       h2.compute2__h2 Benefits Of Apache Ignite Compute APIs
+       .compute2__grid 
+            .compute2item
+              .compute2-points__item.fz20
+              .compute2item__block
+                h3.fz20.compute2item__title Broadcast or execute<br> on specific nodes
+                p.compute2__text – Broadcast your tasks to use all<br> the CPUs of your distributed cluster.
+                p.compute2__text – Or schedule the tasks for execution on a subset of the nodes based<br> on custom criteria
+            .compute2item
+              .compute2-points__item.fz20
+              .compute2item__block
+                h3.fz20.compute2item__title Load balance your querie
+                p.compute2__text If some of the nodes are overutilized, Ignite can automatically load-balance your computations to other nodes.
+                p.compute2__text There are three ways to enable that:<br> – Round-robin load balancing <br>– Random and weighted load balancing<br> – Job stealing.
+            .compute2item
+              .compute2-points__item.fz20
+              .compute2item__block
+                h3.fz20.compute2item__title Execute computations<br> in a fault-tolerant fashion
+                p.compute2__text Some computations might take minutes or hours to complete, e.g. <em> drugs discovery or logistics simulations.</em>
+                p.compute2__text You don't need to begin from scratch if the execution fails in the middle. Restart a calculation from the point<br> of failure. 
+    // /.compute2
+
+    section.nativecode.container.jsTabWrap
+        header.blockheader.blockheader--spl.flexi
+            h2.h4.blockheader__left Forget about PLSQL, use<br> the language you code with daily
+            .blockheader__right.fz20
+                p Create tasks in the language of your choice. You don’t need<br> to learn PLSQL any more.
+        .nativecode__tabctrls.flexi
+            a(href="#", data-tablink="nativeTabJava").nativecode__link.active Java
+            a(href="#", data-tablink="nativeTabNET").nativecode__link C#/.NET
+            a(href="#", data-tablink="nativeTabCpp").nativecode__link C++
+        .nativecode__tabs
+            .nativecode__tab(data-tab="nativeTabJava").active
+                pre.nativecode__codebox 
+                    code.java.
+                        // Broadcast the task to server nodes only.
+                        IgniteCompute compute = ignite.compute(ignite.cluster().forServers());
+
+                        // Each remote server node will execute the logic of the task/lambda below.
+                        compute.broadcast(() -> System.out.println(
+                        "Hello Node: " + ignite.cluster().localNode().id()));
+            
+            .nativecode__tab(data-tab="nativeTabNET")
+                pre.nativecode__codebox 
+                    code.csharp.
+                        // Broadcast the task to server nodes only.
+                        var compute = ignite.GetCluster().ForServers().GetCompute();
+
+                        // Each remote server node will execute the custom PrintNodeIdAction task.
+                        compute.Broadcast(new PrintNodeIdAction());
+            .nativecode__tab(data-tab="nativeTabCpp")
+                pre.nativecode__codebox 
+                    code.java.
+                         // Broadcast the task to server nodes only.
+                        IgniteCompute compute = ignite.compute(ignite.cluster().forServers());
+
+                        // Each remote server node will execute the logic of the task/lambda below.
+                        compute.broadcast(() -> System.out.println(
+                        "Hello Node: " + ignite.cluster().localNode().id()));
+    // /.nativecode
+
+    section.compute3.container 
+      h3.compute2__h2 Example Of Logic Building
+      h2.compute3__h2.h4 Execute the logic in place and eliminate network impact on the performance of the calculation
+      p.compute3__text Imagine that a winter storm is about to hit a highly-populated city. As a telecommunication company, you have to send a text message to 20 million residents notifying about the blizzard.
+      .compute4.flexi
+        .compute4__block.compute4__block--bad
+            img.compute4__icon(src="/public/img/features/icon-check-err.svg", alt="")
+            p.pt-3 With the client-server approach, the company would read all 20 million records from a database to an application that needs to execute some logic and send a message to the residents eventually.
+        .compute4__block
+            img.compute4__icon(src="/public/img/features/icon-check-ok.svg", alt="")
+            p.pt-3 A much more efficient approach would be to broadcast this logic to the cluster nodes that keep data about the city's residents. The logic gets executed on those nodes only and text messages are sent from there.
+            p.pt-3 With this technique, instead of pulling 20 million records via the network, you execute the logic in place and eliminate the network impact on the performance of the calculation.
+      
+      .jsTabWrap
+        header.blockheader.blockheader--spl.flexi
+            
+        .nativecode__tabs
+           
+            .nativecode__tab(data-tab="nativeTabJava").active
+                pre.nativecode__codebox 
+                    code.java.
+                        Ignite ignite = ...
+          
+                        // NewYork ID.
+                        long newYorkId = 2;
+
+                        // Send the logic to the cluster node that stores NewYork and all its inhabitants.
+                        ignite.compute().affinityRun("City", newYorkId, new IgniteRunnable() {
+
+                          @IgniteInstanceResource
+                          Ignite ignite;
+
+                          @Override
+                          public void run() {
+                            // Get access to the Person cache.
+                            IgniteCache&#60;BinaryObject, BinaryObject&#62; people = ignite.cache("Person").withKeepBinary();
+
+
+                            ScanQuery&#60;BinaryObject, BinaryObject&#62; query = new ScanQuery &#60;BinaryObject, BinaryObject&#62;();
+
+                            try (QueryCursor&#60;Cache.Entry&#60;BinaryObject, BinaryObject&#62;&#62; cursor = people.query(query)) {
+                              // Iteration over the local cluster node data using the scan query.
+                              for (Cache.Entry&#60;BinaryObject, BinaryObject&#62; entry : cursor) {
+                                BinaryObject personKey = entry.getKey();
+
+                                // Pick NewYorkers only.
+                                if (personKey.&#60;Long&#62;field("CITY_ID") == newYorkId) {
+                                  person = entry.getValue();
+
+                                  // Send the warning message to the person.
+
+                                }
+                              }
+                            }
+                          }
+                        }
+    // /.compute4 
+
+   
+    section.native-bottom.container
+        .native-bottom__grid 
+            article.nativebotblock
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-rocket.svg", alt="").nativebotblock__icon
+                    span Ready to Start?
+                p.nativebotblock__text Start coding distributed computing APIs
+                a.nativebotblock__link.arrowlink(href="https://ignite.apache.org/docs/latest/key-value-api/transactions", target="_blank") Performing Distributed Computing 
+            article.nativebotblock.nativebotblock--learn
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-docs.svg", alt="").nativebotblock__icon
+                    span Want to Learn More?
+                p.nativebotblock__text Learn more about high-performance computing use cases and see how it works in practice 
+                a.nativebotblock__link.arrowlink(href="https://ignite.apache.org/use-cases/high-performance-computing.html", target="_blank") High-Performance Computing Use-Cases
+
+
+
+
+
diff --git a/src/features/distributed-key-value-store.pug b/src/features/distributed-key-value-store.pug
new file mode 100644
index 0000000..bf01f1e
--- /dev/null
+++ b/src/features/distributed-key-value-store.pug
@@ -0,0 +1,121 @@
+extend ../_components/base.pug
+
+block pagetitle
+    | Distributed Key-Value APIs 
+
+block css 
+    link(rel="stylesheet", href="../css/native-persistence.css")
+    link(rel="stylesheet", href="../css/key-value-api.css")
+
+
+
+block main
+    - global.pageHref = "features"
+    - config.hdrClassName = "hdr__blue"
+    include ../_components/header.pug
+
+
+    section.innerhero.innerhero--keyvalue
+        .container.innerhero__cont
+            .innerhero__main
+                .innerhero__pre.pb-5 Apache Ignite
+                h1.h1.innerhero__h1 Distributed <br>Key-Value APIs
+                .innerhero__descr.pt-2.h5.
+                    Query your distributed data in the fastest way possible <br>with key-value APIs 
+                .innerhero__action 
+                    a.button.innerhero__button(href="https://ignite.apache.org/docs/latest/index") Start Coding
+            img.innerhero__pic.innerhero__pic--keyvalue(src="/public/img/features/key-value/hero.svg", alt="Distributed Key-Value APIs")
+    // /.innerhero
+
+
+
+    section.keyvalue1.container.flexi
+        .keyvalue1__left
+            .capstext Key-Value APIs Overview
+            .keyvaluetext.pt-5
+                p Every record in Ignite is stored as a key-value pair. All the records are distributed evenly across the cluster nodes. Your key-value queries are directed automatically to the nodes that store requested data. This is how Ignite utilizes all the given memory, disk, and CPU resources.
+                p Key-value APIs are supported by all existing Ignite client libraries:
+            .keyvalue1__libs.pt-5
+                p.h5.leyvalue__lang Java <small>(implements JSR-107 specification known as JCache)</small>
+                p.h5.leyvalue__lang .NET
+                p.h5.leyvalue__lang Python
+                p.h5.leyvalue__lang Node.JS
+                p.h5.leyvalue__lang Your language
+        .keyvalue1__right 
+            .keyvalue1__picwrap.picwrap
+                img(src="/public/img/features/key-value/key-value-api-pic.svg", alt="").keyvalue1__pic
+    // /.keyvalue1
+
+
+
+    section.keyvalueplank.container 
+        .keyvalueplank__inner Apache Ignite key-value APIs provide additional capabilities such as&nbsp;<strong>automatic synchronization</strong> with external databases, <strong>near caching</strong> and <strong>ACID transactions.</strong>
+
+
+
+    section.keyvalue2.container.flexi
+        .keyvalue2__left
+            .keyvalue__title Automatic Synchronization With External <br>Databases To Keep A Consistent Copy Of Data
+            .keyvaluetext.pt-2.pb-5
+                p Two synchronization strategies are available in Apache Ignite: <br>write-through/behind and read-through.
+            dl.keyvalue2__box.pb-2
+                dt Write-through and write-behind capabilities
+                dd.pt-2 Ignite can automatically write-through or&nbsp;write-behind all the changes to&nbsp;an&nbsp;external database for every key-value request issued by&nbsp;your applications.
+            dl.keyvalue2__box
+                dt Read-through capabilities
+                dd Read-through means that Ignite can automatically load data from an&nbsp;external database if&nbsp;a&nbsp;record is&nbsp;missing in&nbsp;memory.
+        .keyvalue2__right 
+            .keyvalue2__picwrap.picwrap
+                img(src="/public/img/features/key-value/key-value-api-2.svg", alt="").keyvalue2__pic
+    // /.keyvalue2
+
+
+
+
+
+    section.keyvalue3.container.flexi
+        .keyvalue3__right
+            .keyvalue__title Automatic Synchronization With External <br>Databases To Keep A Consistent Copy Of Data
+            .keyvaluetext.pt-2.pb-5
+                p Two synchronization strategies are available in Apache Ignite: write-through/behind and read-through
+            .keyvalue__title How it works
+            .keyvaluetext.pt-2.pb-5
+                p It&nbsp;is&nbsp;applied for applications that require a&nbsp;consistent response time ranging in&nbsp;microseconds. Ignite automatically invalidates and updates the near cache. 
+                p Whenever the primary copy of&nbsp;a&nbsp;record gets updated on&nbsp;a&nbsp;server node, Ignite propagates the change to&nbsp;all the nodes that store the record&rsquo;s backup copy, as&nbsp;well as&nbsp;to&nbsp;the applications that keep the record&rsquo;s copy in&nbsp;their near caches.
+        .keyvalue3__left
+            .keyvalue3__picwrap.picwrap
+                img(src="/public/img/features/key-value/key-value-api-3.svg", alt="").keyvalue3__pic
+    // /.keyvalue3
+
+
+
+    section.keyvalue4.container.flexi.pb-1
+        .keyvalue4__left
+            .keyvalue__title ACID Transactions To Update Your Distributed Records Consistently
+            .keyvaluetext.pt-2.pb-5
+                p Apache Ignite key-value APIs are fully transactional which means that data can be&nbsp;updated consistently and reliably.
+            .keyvalue__title How it works
+            .keyvaluetext.pt-2.pb-5
+                p An&nbsp;Ignite transaction can update multiple records from different tables stored on&nbsp;different cluster nodes. Ignite can even span a&nbsp;transaction to&nbsp;an&nbsp;underlying relational database. Ignite implements <a href="/features/acid-transactions.html">two-phase-commit protocol to&nbsp;ensure data consistency at&nbsp;scale.</a>
+        .keyvalue4__right
+            .keyvalue4__picwrap.picwrap
+                img(src="/public/img/features/key-value/key-value-api-4.svg", alt="").keyvalue4__pic
+    // /.keyvalue3
+
+
+
+
+    section.native-bottom.container
+        .native-bottom__grid 
+            article.nativebotblock
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-rocket.svg", alt="").nativebotblock__icon
+                    span Ready to Start?
+                p.nativebotblock__text Create your first application using <br>Ignite key-value APIs
+                a.nativebotblock__link.arrowlink(href="https://ignite.apache.org/docs/latest/key-value-api/basic-cache-operations", target="_blank") Using Key-Value APIs
+            article.nativebotblock.nativebotblock--learn
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-docs.svg", alt="").nativebotblock__icon
+                    span Want to Learn More?
+                p.nativebotblock__text Check out how Apache Ignite can be configured <br>and used as a standard key-value store
+                a.nativebotblock__link.arrowlink(href="/use-cases/key-value-store.html", target="_blank") Key-Value Store
\ No newline at end of file
diff --git a/src/features/index.pug b/src/features/index.pug
new file mode 100644
index 0000000..51f93d6
--- /dev/null
+++ b/src/features/index.pug
@@ -0,0 +1,199 @@
+extend ../_components/base.pug
+
+block pagetitle
+    | Features 
+
+block css 
+    link(rel="stylesheet", href="../css/features.css")
+
+
+
+block main
+    - global.pageHref = "features"
+    - config.hdrClassName = "hdr__blue"
+    include ../_components/header.pug
+
+
+    section.innerhero
+        .container.innerhero__cont
+            .innerhero__main
+                .innerhero__pre.pb-3 Apache Ignite
+                h1.h1.innerhero__h1 Features
+                .innerhero__descr.pt-2.h5.
+                    Scale across memory and disk with no compromises. <br>Adapt easily with essential and high-performance computing APIs.
+            img.innerhero__pic.innerhero__pic--features(src="/public/img/features/hero-bg.svg", alt="Apache Ignite Features")
+    // /.innerhero
+
+
+    section.features2#features2
+        .container 
+            h2.h3.features2__title Apache Ignite in-memory computing platform <br>comprises the following set of components
+            header.blockheader.blockheader--spl.flexi
+                h2.h4.blockheader__left Distributed Multi-Tiered Storage
+                .blockheader__right.fz20
+                    p State-of-the-art storage engine that performs at in-memory <br>speed and stores data durably at unlimited scale
+
+            .cardswrap
+                .usecasecard.cardsimple
+                    .cardsimple__icon 
+                        img(src="/public/img/features/01-multi-tier-storage.svg", alt="")
+                    h3.cardsimple__title Multi-Tier Storage
+                    .cardsimple__text.cardsimple__text--long.
+                        Chose a storage mode for your 
+                        performance and capacity needs: 
+                        in-memory, in-memory +&nbsp;external 
+                        database, or in-memory + native 
+                        persistence.
+                    .cardsimple__bottom
+                        a(href="/arch/multi-tier-storage.html").cardsimple__button.button.button--shadow Learn More
+                .usecasecard.cardsimple
+                    .cardsimple__icon 
+                        img(src="/public/img/features/02-native-persistence.svg", alt="")
+                    h3.cardsimple__title Native Persistence
+                    .cardsimple__text.
+                        Turn Ignite into a database with 
+                        capacity and durability characteristics 
+                        of traditional disk-based databases.
+                    .cardsimple__bottom
+                        a(href="/arch/native-persistence.html").cardsimple__button.button.button--shadow Learn More
+    // /.features2
+
+                
+    section.features3
+        .container
+            header.blockheader.blockheader--spl.flexi
+                h2.h4.blockheader__left Essential Developer APIs
+                .blockheader__right.fz20
+                    p Start with Ignite seamlessly using the APIs you are already <br>experienced with
+            .cardswrap 
+                .usecasecard.cardsimple
+                    .cardsimple__icon 
+                        img(src="/public/img/features/03-distributed-SQL.svg", alt="")
+                    h3.cardsimple__title Distributed SQL
+                    .cardsimple__text.
+                        Interact with Ignite as with a regular 
+                        SQL database using JDBC, 
+                        ODBC drivers, or native SQL APIs.
+                    .cardsimple__bottom
+                        a(href="/features/sql.html").cardsimple__button.button.button--shadow Learn More
+                .usecasecard.cardsimple
+                    .cardsimple__icon 
+                        img(src="/public/img/features/04-ACID-transactions.svg", alt="")
+                    h3.cardsimple__title ACID Transactions
+                    .cardsimple__text.cardsimple__text--long.
+                        Be sure Apache Ignite operates
+                        in a strongly consistent mode 
+                        with full support for distributed 
+                        ACID transactions.
+                    .cardsimple__bottom
+                        a(href="/features/acid-transactions.html").cardsimple__button.button.button--shadow Learn More
+                .usecasecard.cardsimple
+                    .cardsimple__icon 
+                        img(src="/public/img/features/05-key-value-APIs.svg", alt="")
+                    h3.cardsimple__title Key Value APIs
+                    .cardsimple__text.
+                        Use simple key-value requests
+                        for fast data look-ups
+                        and updates.
+                    .cardsimple__bottom
+                        a(href="/features/distributed-key-value-store.html").cardsimple__button.button.button--shadow Learn More
+    // /.features3
+
+
+    section.features4
+        .container 
+            header.blockheader.blockheader--spl.flexi
+                h2.h4.blockheader__left High-Performance Computing APIs
+                .blockheader__right.fz20
+                    p Execute kilobyte-size custom code over petabytes of data
+            .cardswrap 
+                .usecasecard.cardsimple
+                    .cardsimple__icon 
+                        img(src="/public/img/features/06-compute-APIs.svg", alt="")
+                    h3.cardsimple__title Compute APIs
+                    .cardsimple__text.
+                        Execute data-intensive and
+                        compute-intensive logic over 
+                        your distributed cluster.
+                    .cardsimple__bottom
+                        a(href="/features/compute-apis.html").cardsimple__button.button.button--shadow Learn More
+                .usecasecard.cardsimple
+                    .cardsimple__icon 
+                        img(src="/public/img/features/07-machine-learning.svg", alt="")
+                    h3.cardsimple__title Machine Learning
+                    .cardsimple__text.
+                        Use built-in algorithms to train
+                        and execute machine and deep learning
+                        models at scale.
+                    .cardsimple__bottom
+                        a(href="/features/machinelearning.html").cardsimple__button.button.button--shadow Learn More
+                .usecasecard.cardsimple
+                    .cardsimple__icon 
+                        img(src="/public/img/features/08-services.svg", alt="")
+                    h3.cardsimple__title Services
+                    .cardsimple__text.
+                        Create and deploy custom 
+                        micro-service on your cluster 
+                        nodes.
+                    .cardsimple__bottom
+                        a(href="/features/servicegrid.html").cardsimple__button.button.button--shadow Learn More
+    // /.features4
+
+
+    section.features5
+        .container
+            header.blockheader.blockheader--spl.flexi
+                h2.h4.blockheader__left Real-Time Streaming APIs
+                .blockheader__right.fz20
+                    p Implement event-driven architectures seamlessly <br>with the following Ignite product features:
+            .cardswrap 
+                .usecasecard.cardsimple
+                    .cardsimple__icon 
+                        img(src="/public/img/features/09-streaming.svg", alt="")
+                    h3.cardsimple__title Streaming
+                    .cardsimple__text.
+                        Stream and process your data
+                        in a scalable and fault-tolerant 
+                        fashion.
+                    .cardsimple__bottom
+                        a(href="/features/streaming.html").cardsimple__button.button.button--shadow Learn More
+                .usecasecard.cardsimple
+                    .cardsimple__icon 
+                        img(src="/public/img/features/10-continuous-queries.svg", alt="")
+                    h3.cardsimple__title Continuous Queries
+                    .cardsimple__text.
+                        Execute your custom logic in response
+                        to data changes happening across
+                        the cluster.
+                    .cardsimple__bottom
+                        a(href="https://ignite.apache.org/docs/latest/key-value-api/continuous-queries").cardsimple__button.button.button--shadow Learn More
+                .usecasecard.cardsimple
+                    .cardsimple__icon 
+                        img(src="/public/img/features/11-messaging.svg", alt="")
+                    h3.cardsimple__title Messaging
+                    .cardsimple__text.
+                        Exchange messages across 
+                        the publisher-subscriber 
+                        pattern.
+                    .cardsimple__bottom
+                        a(href="https://ignite.apache.org/docs/latest/messaging").cardsimple__button.button.button--shadow Learn More
+    // /.features5
+
+
+
+    section.featureslast 
+        .container
+            .featureslast__main
+                h2.h4.featureslast__title.pb-1 Looking For Something Else?
+                .featureslast__descr.fz20 Explore our technical documentation to discover Ignite's other features 
+                ul.featureslast__links.pt-4
+                    li
+                        a(href="https://ignite.apache.org/docs/latest/data-structures/queue-and-set").arrowlink Data Structures
+                    li
+                        a(href="https://ignite.apache.org/docs/latest/clustering/clustering").arrowlink Clustering
+                    li
+                        a(href="https://ignite.apache.org/docs/latest/extensions-and-integrations/spring/spring-boot").arrowlink Other Integrations
+                    li
+                        a(href="/features/multilanguage.html").arrowlink Multi-Language Support
+
+                    
\ No newline at end of file
diff --git a/src/features/machinelearning.pug b/src/features/machinelearning.pug
new file mode 100644
index 0000000..86e69e0
--- /dev/null
+++ b/src/features/machinelearning.pug
@@ -0,0 +1,112 @@
+extend ../_components/base.pug
+
+block pagetitle
+    | Machine Learning APIs  
+
+block css 
+    link(rel="stylesheet", href="../css/native-persistence.css")
+    link(rel="stylesheet", href="../css/compute-apis.css")
+    link(rel="stylesheet", href="../css/machinelearning.css")
+
+  
+
+
+
+block main
+    - global.pageHref = "features"
+    - config.hdrClassName = "hdr__blue"
+    include ../_components/header.pug
+
+
+    section.innerhero
+        .container.innerhero__cont
+            .innerhero__main
+                .innerhero__pre.pb-3 Apache Ignite
+                h1.h1.innerhero__h1 Machine Learning<br> APIs
+                .innerhero__descr.pt-2.h5.
+                    Continuously train, execute and update your machine learning<br> models at scale and in real-time
+                .innerhero__action 
+                    a.button.innerhero__button(href="https://ignite.apache.org/docs/latest/index") Start Coding
+            img.innerhero__pic.innerhero__pic--machine(src="/public/img/features/machinelearning/machine.svg", alt="Machine-hero")
+    // /.innerhero
+
+  
+
+    section.machine1
+      .container
+         .machine1__block.flexi
+              .machine1__info
+                 h2.compute2__h2 Ignite Machine Learning APIs Overview
+                 h3.machine1__title.machine-top What is it?
+                 p.machine1__text Ignite Machine Learning (ML) is a set of simple, scalable, and efficient tools that allow building predictive machine learning models without costly data transfers.
+                 h3.machine1__title.machine-top How does Apache Ignite support ML APIs?
+                 p.machine1__text You have two options:
+                 .machine1__options.flexi
+                   .machine1__option
+                     .machine1__number 01
+                     .machine1__subtext Use built-in ML APIs for some of the typical ML and deep learning (DL) tasks, such as:
+                     .machine1__subtext.flexi
+                       span — Classification
+                       span — Regression
+                       span  — Clustering
+                       span — Recommendation
+                       span — Preprocessing
+                   .machine1__option 
+                     .machine1__number 02
+                     .machine1__subtext Use external ML and DL libraries that use Apache Ignite as scalable and high-performance distributed data storage:
+                     .machine1__subtext.flexi
+                       span — TensorFlow
+                       span — Scikit
+                       span — Spark
+                       span — And more
+                      
+                   
+              img.machine1__image(src="/public/img/features/machinelearning/image.svg", alt="image") 
+     
+
+    section.compute2
+     .container
+       h2.compute2__h2 Benefits of Apache Ignite Machine Learning API
+       .machineitem.machineitem1.flexi
+          h3.machine__title Expedite the training process with horizontal cluster scalability
+          .machine__info
+            p.machine__text You can distribute your training data set over an unlimited number of cluster nodes and train your models with the speed of memory.<br> With built-in Ignite ML APIs, you:
+            .machine__part.flexi
+              .compute2-points__item.fz20
+              .machine__subtext Avoid, or minimise ETL
+            .machine__part.flexi
+              .compute2-points__item.fz20
+              .machine__subtext Load all your training data sets in the same cluster
+            .machine__part.flexi
+              .compute2-points__item.fz20
+              .machine__subtext Minimise network utilization during the training process
+       .machineitem.machineitem1.flexi
+          h3.machine__title Execute your ML models with in-memory speed from your application code
+          .machine__info
+            p.machine__text Once the model is trained, deploy it on the cluster and execute it with in-memory speed. Use built-in Ignite APIs or 3rd party libraries.
+       .machineitem.machineitem1.flexi
+          h3.machine__title Continue updating your models with new data in real-time
+          .machine__info
+            p.machine__text Data and user behaviours change rapidly, so you always need to advance your models. With Apache Ignite, you can update your already deployed ML models with new data sets.
+
+            
+    // /.compute2
+
+    section.native-bottom.container
+        .native-bottom__grid 
+            article.nativebotblock
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-rocket.svg", alt="").nativebotblock__icon
+                    span Ready to Start?
+                p.nativebotblock__text Start coding machine learning APIs
+                a.nativebotblock__link.arrowlink(href="https://ignite.apache.org/docs/latest/machine-learning/machine-learning", target="_blank") Performing Machine Learning
+            article.nativebotblock.nativebotblock--learn
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-docs.svg", alt="").nativebotblock__icon
+                    span Want to Learn More?
+                p.nativebotblock__text Check out how Apache Ignite updates<br> trained models in real time
+                a.nativebotblock__link.arrowlink(href="https://ignite.apache.org/docs/latest/machine-learning/updating-trained-models", target="_blank") Updating Trained Models
+
+
+
+
diff --git a/src/features/multilanguage.pug b/src/features/multilanguage.pug
new file mode 100644
index 0000000..992c637
--- /dev/null
+++ b/src/features/multilanguage.pug
@@ -0,0 +1,73 @@
+extend ../_components/base.pug
+
+block pagetitle
+    | Multi-language Support   
+
+block css 
+    link(rel="stylesheet", href="../css/native-persistence.css")
+    link(rel="stylesheet", href="../css/compute-apis.css")
+    link(rel="stylesheet", href="../css/multilanguage.css")
+    
+  
+
+   
+
+
+
+block main
+    - global.pageHref = "features"
+    - config.hdrClassName = "hdr__blue"
+    include ../_components/header.pug
+
+
+    section.innerhero
+        .container.innerhero__cont
+            .innerhero__main.innherhero__lang
+                .innerhero__pre.pb-3 Apache Ignite
+                h1.h1.innerhero__h1 Multi-language<br> Support
+                .innerhero__action 
+                    a.button.innerhero__button(href="https://ignite.apache.org/docs/latest/index") Start Coding
+              
+            img.innerhero__pic.innerhero__pic--lang(src="/public/img/features/multilanguage/multi.svg", alt="Distributed In-Memory Cache")
+    // /.innerhero
+
+  
+    section.lang
+       .container
+        .lang-block.flexi
+           p.lang__text
+                    span Apache Ignite® is a Java-powered database and computing platform that works with operating systems and architectures supported by Java Virtual Machines. You can find Ignite deployments running on Linux, Windows, Mac OS, Oracle Solaris, IBM zOS and x86, x64, SPARC, and PowerPC instruction set architectures.<br><br>
+                    span All the features and capabilities available in Ignite are supported in its Java libraries. This includes SQL, key-value, co-located computations, machine learning algorithms, and much more.<br><br>
+                    span In addition to Java, Ignite supports C#, C++, Python, Node.JS, and PHP languages out-of-the-box. The thin client protocol allows expanding Ignite support to other programming languages. For instance, you can find a Go client for Ignite that is not being developed or maintained by the Ignite community.<br><br>
+                    span Furthermore, you can interact with Ignite as you would with any other SQL database with the usage of JDBC or ODBC drivers.
+           .lang__image
+              .lang__one.flexi
+                 img.lang__img.lang__img1(src="/public/img/features/multilanguage/one.svg", alt="one")
+                 img.lang__img(src="/public/img/features/multilanguage/two.svg", alt="two")
+              .lang__two.flexi
+                 img.lang__img(src="/public/img/features/multilanguage/three.png", alt="three")
+                 img.lang__img.lang__img4(src="/public/img/features/multilanguage/four.png", alt="four")
+    
+
+    
+
+    
+
+    section.native-bottom.container
+        .native-bottom__grid 
+            article.nativebotblock
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-rocket.svg", alt="").nativebotblock__icon
+                    span Ready to Start?
+                p.nativebotblock__text Discover our quick start guide and build your first<br> application in 5-10 minutes
+                a.nativebotblock__link.arrowlink(href="https://ignite.apache.org/docs/latest/index", target="_blank") Quick Start Guide 
+            article.nativebotblock.nativebotblock--learn
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-docs.svg", alt="").nativebotblock__icon
+                    span Want to Learn More?
+                p.nativebotblock__text Check out how to run Ignite with Java, .NET/C#, C++, Python, Node.JS, SQL, PHP, or REST API
+                a.nativebotblock__link.arrowlink(href="#", target="_blank") Multi-language guide
+
+
+
+
diff --git a/src/features/servicegrid.pug b/src/features/servicegrid.pug
new file mode 100644
index 0000000..b36b0e0
--- /dev/null
+++ b/src/features/servicegrid.pug
@@ -0,0 +1,142 @@
+extend ../_components/base.pug
+
+block pagetitle
+    | Service APIs   
+
+block css 
+    link(rel="stylesheet", href="../css/native-persistence.css")
+    link(rel="stylesheet", href="../css/service.css")
+    link(rel="stylesheet", href="../css/compute-apis.css")
+    link(rel="stylesheet", href="../js/vendor/highlight/night-owl.css")
+
+    script(src="../js/vendor/highlight/highlight.min.js")
+    script(src="../js/vendor/highlight/java.min.js")
+    script(src="../js/vendor/highlight/xml.min.js")
+    script(src="../js/vendor/highlight/csharp.min.js")
+
+
+
+block main
+    - global.pageHref = "features"
+    - config.hdrClassName = "hdr__blue"
+    include ../_components/header.pug
+
+
+    section.innerhero
+        .container.innerhero__cont
+            .innerhero__main
+                .innerhero__pre.pb-3 Apache Ignite
+                h1.h1.innerhero__h1 Service APIs
+                .innerhero__descr.pt-2.h5.
+                    Deploy your microservices straight on the cluster nodes and<br> trigger execution from the application code
+                .innerhero__action 
+                    a.button.innerhero__button(href="https://ignite.apache.org/docs/latest/index") Start Coding
+            img.innerhero__pic.innerhero__pic--servicegrid(src="/public/img/features/service/service-hero.svg", alt="Distributed In-Memory Cache")
+    // /.innerhero
+
+  
+
+    section.service1
+      .container
+       h2.service1__h2 Apache Ignite Service APIs Overview
+       .fz20.service1__text With the services API, you can create and deploy arbitrary services on the cluster. Apache Ignite Service APIs Overview For instance, you may want to implement custom counters, hierarchical maps, or anything that you treat as a microservice.
+    // /.service1    
+    
+
+    section.nativecode.container.jsTabWrap
+        header.blockheader.blockheader--spl.flexi
+            h2.h4.blockheader__left Use Contemporary Powerful Languages
+            .blockheader__right.service-subtextvideo.fz20
+                p Microservices APIs supported by Java and С#/.NET
+        .nativecode__tabctrls.flexi
+            a(href="#", data-tablink="nativeTabJava").nativecode__link.active Java
+            a(href="#", data-tablink="nativeTabNET").nativecode__link C#/.NET
+         
+        .nativecode__tabs
+            .nativecode__tab(data-tab="nativeTabJava").active
+                pre.nativecode__codebox 
+                    code.java.
+                        Ignite ignite = Ignition.start();
+
+                        //get the services interface associated with all server nodes
+                        IgniteServices services = ignite.services();
+                        
+                        //start a node singleton
+                        services.deployClusterSingleton("myCounterService", new MyCounterServiceImpl());
+            
+            .nativecode__tab(data-tab="nativeTabNET")
+                pre.nativecode__codebox 
+                    code.csharp.
+                        // Broadcast the task to server nodes only.
+                        var compute = ignite.GetCluster().ForServers().GetCompute();
+
+                        // Each remote server node will execute the custom PrintNodeIdAction task.
+                        compute.Broadcast(new PrintNodeIdAction());
+            
+    // /.nativecode
+
+    section.service2
+      .container
+         h2.service2__h2.h4 Services Deployment Modes
+         .service2__text Deploy single or many instances of a service on the cluster
+         .service2__block
+             .service2item.service2item__one.flexi
+                .service2item__info
+                   h3.service2item__title Cluster Singleton
+                   p.service2item__text The most commonly used feature is to deploy singleton services on the cluster.
+                   p.service2item__text There is only one instance of the service in the cluster, and Ignite guarantees<br> that the instance is always available. 
+                   p.service2item__text In case the cluster node on which the service is deployed disconnects, Ignite automatically redeploys the instance to another node.
+                   
+                img.service2item__image1(src="/public/img/features/service/one-image.svg", alt="one-image")
+
+             .service2item.service2item__two.flexi
+                img.service2item__image2(src="/public/img/features/service/two-image.svg", alt="two-image")
+                .service2item__info.service2item__info2
+                   h3.service2item__title Node Singleton
+                   p.service2item__text You can specify your service as part of the node configuration and start<br> the service together with the node.
+                   p.service2item__text The service is started on each node of the cluster. If the service is a cluster singleton, it is started in the first cluster node, and is redeployed to one <br>of the other nodes if the first node terminates.
+              
+   
+     
+
+    section.compute2
+     .container
+       h2.compute2__h2 Benefits Of Apache Ignite Service APIs
+       .compute2__grid 
+            .compute2item
+              .compute2-points__item.fz20
+              .compute2item__block
+                h3.fz20.compute2item__title Load balancing
+                p.compute2__text In all cases, other than singleton service deployment, Ignite makes sure that an equal number of services are deployed on each node within the cluster. 
+                p.compute2__text Whenever cluster topology changes, Ignite will re-evaluate service deployments and may re-deploy an already deployed service on another node for better load balancing.
+            .compute2item
+              .compute2-points__item.fz20
+              .compute2item__block
+                h3.fz20.compute2item__title Fault Tolerance
+                p.compute2__text Ignite always guarantees that services are continuously available, and are deployed according to the specified configuration, regardless of any topology changes or node crashes.
+            .compute2item
+              .compute2-points__item.fz20
+              .compute2item__block
+                h3.fz20.compute2item__title Hot Redeployment
+                p.compute2__text You can update the implementation of a service without stopping the cluster.
+                p.compute2__text Use Ignite’s DeploymentSpi configuration to re-deploy services without restarting the cluster. 
+    // /.compute2
+
+    section.native-bottom.container
+        .native-bottom__grid 
+            article.nativebotblock
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-rocket.svg", alt="").nativebotblock__icon
+                    span Ready to Start?
+                p.nativebotblock__text Start coding with Ignite Service APIs
+                a.nativebotblock__link.arrowlink(href="https://ignite.apache.org/docs/latest/services/services#re-deploying-services", target="_blank") Performing Service APIs 
+            article.nativebotblock.nativebotblock--learn
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-docs.svg", alt="").nativebotblock__icon
+                    span Want to Learn More?
+                p.nativebotblock__text Check out a special tutorial that shows how to build and deploy microservices with Ignite Service APIs
+                a.nativebotblock__link.servicenativelink.arrowlink(href="https://www.gridgain.com/resources/blog/implementing-microservices-apache-ignite-service-apis-part-iii", target="_blank") Implementing Microservices<br> With Apache Ignite Service APIs
+
+
+
+
diff --git a/src/features/sql.pug b/src/features/sql.pug
new file mode 100644
index 0000000..87898bb
--- /dev/null
+++ b/src/features/sql.pug
@@ -0,0 +1,159 @@
+extend ../_components/base.pug
+
+block pagetitle
+    | Distributed ANSI SQL 
+
+block css 
+    link(rel="stylesheet", href="../css/native-persistence.css")
+    link(rel="stylesheet", href="../css/compute-apis.css")
+    link(rel="stylesheet", href="../css/sql.css")
+ 
+
+  
+
+
+
+block main
+    - global.pageHref = "features"
+    - config.hdrClassName = "hdr__blue"
+    include ../_components/header.pug
+
+
+    section.innerhero
+        .container.innerhero__cont
+            .innerhero__main
+                .innerhero__pre.pb-3 Apache Ignite
+                h1.h1.innerhero__h1 Distributed ANSI SQL
+                .innerhero__descr.pt-2.h5.
+                    The same SQL you've been using for years but now with<br> in-memory speed and at unlimited scale
+                .innerhero__action 
+                    a.button.innerhero__button(href="https://ignite.apache.org/docs/latest/index") Start Coding
+            img.innerhero__pic.innerhero__pic--sql(src="/public/img/features/sql/hero-image.svg", alt="sql-hero")
+    // /.innerhero
+
+    section.dist
+       .container
+         .dist__block.flexi
+            .dist__info
+              h2.dist__h2.h4 Apache Ignite as a SQL Database
+              p.dist__text The native support for SQL let’s you work with Ignite as with a standard SQL database. Literally, you can use just SQL if your applications need nothing else:
+              .dist__items.flexi
+                .dist__item
+                  h3.dist__item-title DDL commands
+                  .dist__item-grey.dist__item-grey1.flexi
+                      .dist__itemitem.flexi
+                          span.dist__item-span CREATE
+                          span.dist__item-span ALTER
+                          span.dist__item-span DROP
+                    
+                .dist__item
+                  h3.dist__item-title DML commands
+                  .dist__item-grey.dist__item-grey2.flexi
+                     .dist__itemitem.flexi
+                         span.dist__item-span SELECT
+                         span.dist__item-span INSERT
+                         span.dist__item-span UPDATE
+                     .dist__itemitem.dist__itemitem__end.flexi
+                         span.dist__item-span MERGE
+                         span.dist__item-span DELETE
+                         
+              h3.dist__h3 Apache Ignite is shipped with:
+              .dist__parts.flexi
+                .dist__part.flexi
+                   .compute2-points__item.fz20
+                   .dist__part-text JDBC driver
+                .dist__part.flexi
+                   .compute2-points__item.fz20
+                   .dist__part-text ODBC driver
+                .dist__part.flexi
+                   .compute2-points__item.fz20
+                   .dist__part-text.dist__part-textend.flexi Built-in SQL APIs
+                      .dist__part-grey Available for Java, C#, C++, Python, and other programming languages
+                      
+                
+            img.dist__image(src="/public/img/features/sql/image.svg", alt="sql-hero")
+    // /.dist
+
+    section.dist1
+       .container 
+          h2.dist1__h2.h4 Join, Group and Aggregate Distributed Data Sets
+          .dist1__subtext Whether you use a two or thousand-node cluster, you always can do the following:
+          .dist1__parts.flexi
+            .dist1__part group data
+            .dist1__part join data
+            .dist1__part order data
+            .dist1__part.dist1__partend aggregate data
+          .dist1__title What is a distributed join?
+          p.dist1__text.h4 A distributed join is a SQL statement with a join clause that combines two or more tables that have their data distributed across many cluster nodes.
+          h3.dist1__h3.h4 Types of joins in Ignite
+          .dist1__blocks.flexi
+              .dist1__block 
+                 h4.dist1__h4 Co-located joins
+                 p.dist1__texts this is the most performant type of joins that avoid data shuffling between nodes and minimize network usage.
+                 p.dist1__texts.pt-1 This type of join is used if you join <a class="dist1__link" href="https://ignite.apache.org/docs/latest/data-modeling/affinity-collocation" target="_blank">partitioned and replicated tables</a> or partitioned tables that are co-located with each other.
+              .dist1__block 
+                 h4.dist1__h4 Non-colocated joins:
+                 p.dist1__texts less performant type of joins that join data of non-colocated tables. Ignite needs to shuffle data over the network to produce a correct result set.
+              .dist1__block 
+                 h4.dist1__h4 Hash joins:
+                 p.dist1__texts Ignite supports classic hash join algorithm that is more efficient than nested loop joins for many scenarios.
+    // /.dist1
+
+    section.dist2
+       .container
+          h2.dist2__h2.h4 Ignite SQL Engine and Multi-Tier Storage
+          p.dist2__p Depending on your storage configuration, Ignite SQL engine can query both in-memory and disk-only records
+          .dist2__blocks.flexi
+             .dist2__block
+                h3.dist2__h3 In-Memory Mode
+                p.dist2__text.dist2__text1 Ignite caches data only in memory   
+                details.dist2__details 
+                   summary.dist2__active
+                     img(src="/public/img/features/sql/plus.svg", alt="sql-hero")
+                   .dist2__subtext 
+                     p In this mode, Ignite SQL performs the fastest way possible as long as all the data is served from memory with no usage of the disk tier at all.
+             .dist2__block
+                h3.dist2__h3 In-Memory <br>+ Native Persistence Mode
+                p.dist2__text Ignite scales beyond available<br> memory capacity   
+                details.dist2__details 
+                   summary.dist2__active
+                     img(src="/public/img/features/sql/plus.svg", alt="sql-hero")
+                   .dist2__subtext 
+                      p Ignite persists 100% of data and indexes in the <a href="/arch/native-persistence.html">native persistence</a> while caching as much as possible in memory. 
+                      p.pt-1 Ignite SQL engine does not require to cache an entire data set in memory to operate correctly.
+                      p.pt-1 If the engine finds that a record is not cached, then it will read the record from disk. Your application only executes SQL queries, and Ignite gets the records from both memory and disk automatically.
+                      p.pt-1 On cluster restarts, Ignite reads data and indexes from disk, eliminating the need for memory warm-up, which significantly decreases downtime.
+                
+             .dist2__block
+                h3.dist2__h3 In-Memory<br>+ External Database Mode
+                p.dist2__text Ignite accelerates your<br> existing databases   
+                details.dist2__details 
+                   summary.dist2__active
+                     img(src="/public/img/features/sql/plus.svg", alt="sql-hero")
+                   .dist2__subtext 
+                     p In this mode, the Ignite SQL engine requires caching all the data needed for distributed queries in memory since the engine currently does not support federated queries.
+                     p.pt-1 If federated queries between Ignite and an external database are required, then you can consider Ignite integration for Spark, where the DataFrames API can join the data stored in Ignite and other systems.
+           
+          
+
+    // /.dist2
+
+    section.native-bottom.container
+        .native-bottom__grid 
+            article.nativebotblock
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-rocket.svg", alt="").nativebotblock__icon
+                    span Ready to Start?
+                p.nativebotblock__text Discover more details about Apache Ignite SQL engine<br> and apply it for your use-case
+                a.nativebotblock__link.arrowlink(href="https://ignite.apache.org/docs/latest/persistence/native-persistence", target="_blank") Memory Architecture
+            article.nativebotblock.nativebotblock--learn
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-docs.svg", alt="").nativebotblock__icon
+                    span Want to Learn More?
+                p.nativebotblock__text Ignite SQL will become even more powerful and advanced with the release of the Apache Calcite based engine
+                .dist__link Coming in Ignite 3.0  
+                a.nativebotblock__link.arrowlink(href="https://cwiki.apache.org/confluence/display/IGNITE/Apache+Calcite-powered+SQL+Engine+Roadmap", target="_blank") New Calcite powered SQL engine
+
+
+
+
diff --git a/src/features/streaming.pug b/src/features/streaming.pug
new file mode 100644
index 0000000..1be56dd
--- /dev/null
+++ b/src/features/streaming.pug
@@ -0,0 +1,117 @@
+extend ../_components/base.pug
+
+block pagetitle
+    | Real-Time Streaming APIs
+
+block css 
+    link(rel="stylesheet", href="../css/native-persistence.css")
+    link(rel="stylesheet", href="../css/compute-apis.css")
+    link(rel="stylesheet", href="../css/streaming.css")
+ 
+
+  
+
+
+
+block main
+    - global.pageHref = "features"
+    - config.hdrClassName = "hdr__blue"
+    include ../_components/header.pug
+
+
+    section.innerhero
+        .container.innerhero__cont
+            .innerhero__main
+                .innerhero__pre.pb-3 Apache Ignite
+                h1.h1.innerhero__h1 Real-Time Streaming<br> APIs
+                .innerhero__descr.pt-2.h5.
+                    Ingest streams of data and build  event-driven architectures
+                .innerhero__action 
+                    a.button.innerhero__button(href="https://ignite.apache.org/docs/latest/index") Start Coding
+            img.innerhero__pic.innerhero__pic--stream(src="/public/img/features/streaming/hero-image.svg", alt="stream-hero")
+    // /.innerhero
+
+    section.stream1
+       .container
+          .stream1__block.flexi
+              p.stream1__p.h4 With Apache Ignite you can<strong> load and stream</strong> large finite — or never-ending — volumes of data<strong> in a scalable and fault-tolerant way</strong> into the cluster.
+              .stream1__part
+                   img.stream1__img(src="/public/img/features/streaming/speed.png", alt="speed")
+                   p.stream1__text The rate at which data can be injected into Ignite <strong>exceeds millions of events per second </strong>on a moderately sized cluster.
+    // /.stream1
+
+    section.stream2
+       .container
+           .stream2__block.flexi
+              .stream2__content
+                  h2.stream2__h2.h4 Ignite Core Streaming APIs
+                  h3.stream2__h3 What are those APIs?
+                  p.stream2__text With Ignite core streaming APIs such as IgniteDataStreamer you get basic streaming capabilities out of the box. You can stream and transform your data originating from multiple custom sources.<br><br>Ignite data streamers automatically buffer the data and group it into batches for better performance and send it in parallel to multiple nodes.
+              img.stream2__img(src="/public/img/features/streaming/sql.svg", alt="sql")
+    // /.stream2
+
+    section.stream3
+       .container
+          h2.stream3__h2.h4 IgniteDataStreamer is used for:
+          .stream3__blocks.flexi
+               .stream3__block
+                   .stream3__part.flexi
+                       .compute2-points__item.fz20
+                       p.stream3__text Data loading
+                   .stream3__part.stream3__end.flexi.ml-04
+                       .compute2-points__item.fz20
+                       p.stream3__text Real-time data streaming
+               .stream3__block
+                   .stream3__part.stream3__first.flexi
+                       .compute2-points__item.fz20
+                       p.stream3__text Achieving advanced streaming capabilities by integrating with streaming frameworks:
+                   .stream3__item.stream3__itemstart.flexi 
+                       img.stream3__img(src="/public/img/features/streaming/one.png", alt="one")
+                       img.stream3__img(src="/public/img/features/streaming/two.svg", alt="two")
+                       img.stream3__img(src="/public/img/features/streaming/three.png", alt="three")
+                   .stream3__item.flexi
+                       img.stream3__img(src="/public/img/features/streaming/four.svg", alt="four")
+                       img.stream3__img(src="/public/img/features/streaming/five.svg", alt="five")
+                       img.stream3__img(src="/public/img/features/streaming/six.svg", alt="six")
+    // /.stream3
+
+    section.stream4
+       .container
+          h2.stream4__h2.h4 Event-Driven Architecture Basic Principles
+          p.stream4__p In many cases, streams of data we receive comprise events that we have to react to.<br>
+              span.stream4__greys With Apache Ignite, you can:
+          .stream4__block.flexi
+             .stream4__part
+                .stream4__number 01
+                .stream4__text Enrich and transform your data<br> on on-the-fly.
+             .stream4__part.stream4__parttwo
+                .stream4__number 02
+                .stream4__text Execute any calculations in response<br> to an event on the cluster-node side.
+             .stream4__part
+                .stream4__number 03
+                .stream4__text React to your streams of data on the application side with continuous queries.
+                .stream4__grey If streamed data represents an event, your application-side logic can react to it after receiving a notification from continuous queries.
+
+
+    // /.stream4              
+                
+           
+
+    section.native-bottom.container
+        .native-bottom__grid 
+            article.nativebotblock
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-rocket.svg", alt="").nativebotblock__icon
+                    span Ready to Start?
+                p.nativebotblock__text Start coding with Ignite Streaming APIs
+                a.nativebotblock__link.arrowlink(href="https://ignite.apache.org/docs/latest/data-streaming", target="_blank") Ignite Streaming APIs
+            article.nativebotblock.nativebotblock--learn
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-docs.svg", alt="").nativebotblock__icon
+                    span Want to Learn More?
+                p.nativebotblock__text Explore our out-of-the-box integrations with Kafka, Flink, MQTT and other advanced streaming technologies
+                a.nativebotblock__link.arrowlink(href="https://ignite.apache.org/docs/latest/extensions-and-integrations/spring/spring-boot", target="_blank") Extensions and integrations guide
+
+
+
+
diff --git a/src/features/tooling.pug b/src/features/tooling.pug
new file mode 100644
index 0000000..65c8689
--- /dev/null
+++ b/src/features/tooling.pug
@@ -0,0 +1,194 @@
+extend ../_components/base.pug
+
+block pagetitle
+    | Tooling 
+
+block css 
+    link(rel="stylesheet", href="../css/tooling.css")
+
+
+
+block main
+    - global.pageHref = "features"
+    - config.hdrClassName = "hdr__blue"
+    include ../_components/header.pug
+
+
+    section.innerhero.innerhero--tooling
+        .container.innerhero__cont
+            .innerhero__main
+                h1.h1.innerhero__h1.
+                    Tools And Solutions <br>
+                    For Apache Ignite Management <br>
+                    And Monitoring
+                .innerhero__descr.pt-4.h4.
+                    Apache Ignite exposes metrics in&nbsp;JMX and <br>OpenCensus formats. Use a&nbsp;broad range of&nbsp;tools
+                img.innerhero__pic.innerhero__pic--tooling(src="/public/img/features/tooling/herobg.svg", alt="")
+    // /.innerhero
+
+
+
+
+    section.tooling-leading.container 
+        h2.h4 Out-Of-The-Box Solutions
+        p.h5.pt-2 Tools developed specifically for Ignite cluster management and monitoring
+
+
+
+    section.toolingbox.container
+        h2.toolingbox__title.h4.flexi
+            img(src="/public/img/features/tooling/icon-apache.svg", alt="")
+            span VISOR COMMAND LINE AND CONTROL SCRIPT
+        
+        .toolingbox__picwrap 
+            img(src="/public/img/features/tooling/visor-command-line.png", alt="")
+        .toolingbox__bg
+            .toolingbox__picdescr.h5.
+                Apache Ignite officially supports two command-line tools <br>
+                to manage and monitor the cluster:
+            .toolvarlist1 
+                .toolvarlist1__left
+                    h3.toolvarlist1__title Visor Command Line tool
+                    .toolvarlist1__list 
+                        dl.toolvarlist1__dl
+                            dt Get statistics about
+                            dd 
+                                p – cluster nodes
+                                p – compute tasks
+                                p – caches
+                        dl.toolvarlist1__dl
+                            dt Manage the size of your cluster by starting or&nbsp;stopping nodes.
+                    .toolvarlist1__more 
+                        a.button(href="/use-cases/in-memory-cache.html") Learn more 
+                .toolvarlist1__right
+                    h3.toolvarlist1__title Control Script
+                    p.toolvarlist1__descr An advanced command-line utility. It can  <br>do the following: 
+                    .toolvarlist1__list 
+                        dl.toolvarlist1__dl
+                            dt Change the baseline topology
+                        dl.toolvarlist1__dl
+                            dt Activate and deactivate the cluster
+                        dl.toolvarlist1__dl
+                            dt Perform consistency checks of your data and indexes
+                        dl.toolvarlist1__dl
+                            dt Detect long-running or hanging transactions
+                    .toolvarlist1__more 
+                        a.button(href="/use-cases/in-memory-cache.html") Learn more
+    // /.toolingbox1
+
+
+
+
+
+    section.toolingbox.container
+        h2.toolingbox__title.h4.flexi
+            img(src="/public/img/features/tooling/icon-gridgain.svg", alt="")
+            span GRIDGAIN CONTROL CENTER
+        
+        .toolingbox__picwrap 
+            img(src="/public/img/features/tooling/grid-gain.png", alt="")
+        .toolingbox__bg
+            .toolingbox__picdescr.h5.
+                GridGain Control Center is a troubleshooting, management <br>
+                and monitoring tool created just for Apache Ignite:
+            .toolvarlist1.toolvarlist1--simple 
+                .toolvarlist1__left
+                    .toolvarlist1__list 
+                        dl.toolvarlist1__dl
+                            dt Debug SQL query performance bottleneck
+                        dl.toolvarlist1__dl
+                            dt Define custom alerts to track and react on&nbsp;over 200 cluster, node, and storage 
+                        dl.toolvarlist1__dl
+                            dt Upgrade clusters while in production, with&nbsp;zero downtime
+                .toolvarlist1__right
+                    .toolvarlist1__list 
+                        dl.toolvarlist1__dl
+                            dt Trace the performance of your operations under load
+                        dl.toolvarlist1__dl
+                            dt Proactively manage data skews to optimize cluster utilization
+                        dl.toolvarlist1__dl
+                            dt Monitor the state of the cluster with customizable dashboards
+            .toolvarlist1-bottom 
+                a.button(href="https://www.gridgain.com/products/control-center", target="_blank") Learn more  
+    // /.toolingbox2
+
+
+
+
+
+    section.toolingbox.container
+        h2.toolingbox__title.h4.flexi
+            img(src="/public/img/features/tooling/icon-datadog.svg", alt="")
+            span DATADOG INTEGRATION FOR APACHE IGNITE
+        
+        .toolingbox__picwrap 
+            img(src="/public/img/features/tooling/data-dog.jpg", alt="")
+        .toolingbox__bg
+            .toolingbox__picdescr.h5.
+                Datadog is a general-purpose monitoring service that integrates <br>
+                natively with Apache Ignite and supports the following:
+            .toolvarlist2
+                .toolvarlist2__item
+                    p Collect and visualize metrics for your Ignite nodes through an out-of-the-box dashboard
+                .toolvarlist2__item
+                    p Track cluster-wide memory usage, including detailed garbage collection activity
+                .toolvarlist2__item
+                    p Use the built-in health check for Ignite to&nbsp;create an&nbsp;alert and notify you about the &laquo;node goes offline&raquo; events
+            .toolvarlist1-bottom 
+                a.button(href="https://www.datadoghq.com/blog/monitor-apache-ignite-with-datadog/", target="_blank") Learn more  
+    // /.toolingbox3
+
+
+
+
+
+    section.toolingbox.container
+        h2.toolingbox__title.h4.flexi
+            img(src="/public/img/features/tooling/icon-zabbix.svg", alt="")
+            span ZABBIX
+        
+        .toolingbox__picwrap 
+            img(src="/public/img/features/tooling/zabbix.png", alt="")
+        .toolingbox__bg
+            .toolingbox4__wrap 
+                .toolingbox4__left
+                    h3.toolingbox4__title Zabbix is an open-source monitoring <br>software tool for diverse IT components:
+                    ul.dashlist
+                        li networks
+                        li servers
+                        li virtual machines
+                        li cloud services
+                .toolingbox4__right
+                    h3.toolingbox4__title Zabbix provides monitoring <br>metrics:
+                    ul.dashlist
+                        li network utilization
+                        li CPU load
+                        li disk space consumption.
+            .toolingbox4__numblock 
+                h3.h5.toolingbox4__numtitle Essential characteristics:
+                .toolingbox4__numwrap.pt-3
+                    .toolingbox4__numitem 
+                        i 01
+                        p Official JMX Template for Apache Ignite computing platform.
+                        p.toolingbox4__small This template is contributed and maintained by an Ignite community member.
+                    .toolingbox4__numitem 
+                        i 02
+                        p For Zabbix version: 5.4 and higher of data loss or corruption execute on nodes across the cluster.
+                    .toolingbox4__numitem 
+                        i 03
+                        p This template works with standalone and cluster instances. Metrics are collected by&nbsp;JMX. All metrics are discoverable.
+            .toolvarlist1-bottom 
+                a.button(href="https://www.zabbix.com/integrations/ignite#tab:official1", target="_blank") Learn more  
+    // /.toolingbox4
+
+
+
+
+    section.toolingend
+        .container.flexi
+            .toolingend__main
+                h2.toolingend__title.h4 Ready to Start with Apache Ignite?
+                p.fz20.pt-1x Start with our Quick Start Guides and build your first application <br>in 5-10 minutes
+            .toolingend__action
+                a.button Build your first application
+
diff --git a/src/index.pug b/src/index.pug
new file mode 100644
index 0000000..356bb41
--- /dev/null
+++ b/src/index.pug
@@ -0,0 +1,66 @@
+extend _components/base.pug
+
+block pagetitle
+    | Main Page 
+
+
+
+block main
+    - global.pageHref = ""
+    - var user = {description: 'foo bar baz'}
+    include ./_components/header.pug
+
+    section.temppages.container.pt-5 
+        h2.pt-5 Pages List
+        ul.dashlist.pt-4.pb-5
+            li 
+                a(href="/community.html") Сommunity 
+            li 
+                a(href="/use-cases/") UseCases Root Page
+            li 
+                a(href="/features/") Features Root Page
+            li 
+                a(href="/arch/multi-tier-storage.html") Features: multi-tier-storage
+            li 
+                a(href="/arch/native-persistence.html") Features: native-persistence
+            li 
+                a(href="/use-cases/in-memory-cache.html") Use Cases: in-memory-cache
+            li 
+                a(href="/events.html") Events
+            li 
+                a(href="/use-cases/provenusecases.html") Use Cases: Powered By
+            li
+                a(href="/resources.html") Resources
+            li
+                a(href="/features/tooling.html") Tooling
+            li 
+                a(href="/features/acid-transactions.html") Features: ACID transactions
+            li 
+                a(href="/faq.html") FAQ
+            li
+                a(href="/features/compute-apis.html") Features: Compute APIs
+            li
+                a(href="/use-cases/high-performance-computing.html") Use Cases: High Performance Computing
+            li
+                a(href="/features/distributed-key-value-store.html") Features: Distributed Key-Value APIs
+            li
+                a(href="/features/multilanguage.html") Features: Multi-Language Support
+            li
+                a(href="/features/servicegrid.html") Features: Service APIs
+            li
+                a(href="/features/machinelearning.html") Features: Machine Learning APIs
+            li
+                a(href="/features/streaming.html") Features: Streaming
+            li
+                a(href="/features/sql.html") Features: Distributed ANSI SQL
+            li
+                a(href="/use-cases/digital-integration-hub.html") Use Cases: Digital Integration Hub
+            li 
+                a(href="/use-cases/in-memory-data-grid.html") Use Cases: In-Memory Data Grid
+            li 
+                a(href="/use-cases/in-memory-database.html") Use Cases: In-Memory Database
+            li
+                a(href="/arch/clustering.html") Features: Deployment Options
+            li 
+                a(href="/download.html") Downloads  
+                
\ No newline at end of file
diff --git a/src/resources.pug b/src/resources.pug
new file mode 100644
index 0000000..b5ef66b
--- /dev/null
+++ b/src/resources.pug
@@ -0,0 +1,239 @@
+extend _components/base.pug
+
+block pagetitle
+    | Resources  
+
+block css 
+    link(rel="stylesheet", href="../css/resources.css")
+
+block main
+    - global.pageHref = "resources.html"
+    - config.hdrClassName = "hdr__grey"
+    include ./_components/header.pug
+
+
+    //Миксин для блока с видео
+    mixin resvideo(url, title, textclass="", thumbname="/public/img/resourses/video.png", sub="Webinar <br>recording", )
+        article.comvideo
+            .comvideo__box
+                a.comvideo__screen(href=url, data-youtube)
+                    span(class="comvideo__txt comvideo__smalltxt " + textclass) !{title}
+                    span(class="comvideo__sub " + blacktitile) !{sub}
+                    img(src=thumbname, alt="")
+            .comvideo__descr.pt-2
+                block
+
+
+    section.reshero
+        .container
+            img.reshero__img(src="/public/img/resourses/hero.svg", alt="")
+            h1.reshero__h1.h1 Apache Ignite <br>Resources
+            .reshero__descr.h5.pt-3.
+                Elevate your Ignite experience with the help of&nbsp;community-curated technical resources, code samples, how-to videos, training courses and&nbsp;other materials
+    // /.reshero
+
+
+
+    section.restechnical.container 
+        p.capstext TECHNICAL RESOURCES
+        .restechnical__grid 
+            article.restechnical__item
+                .restechnical__title.flexi.pb-5
+                    img(src="/public/img/resourses/res2-book.svg", alt="")
+                    span.h4 Apache Ignite Documentation
+                .restechnical__box.cardsimple
+                    .restechnical__subtitle.h5 Start with the technical documentation to find out:
+                    .restechnical__text.pt-2
+                        ul.dashlist 
+                            li What are the key Apache Ignite capabilities
+                            li How to use certain features
+                            li How to approach cluster optimizations
+                            li Best troubleshooting techniques
+                    .restechnical__action 
+                        a.button(href="https://ignite.apache.org/docs/latest/index", target="_blank") Discover the entire documentation
+            // /.restechnical__item-1
+
+            article.restechnical__item
+                .restechnical__title.flexi.pb-5
+                    img(src="/public/img/resourses/res2-book2.svg", alt="")
+                    span.h4 Ignite Wiki
+                .restechnical__box.cardsimple
+                    .restechnical__subtitle.h5 A collection of low-level design documents and instructions:
+                    .restechnical__text.pt-2
+                        ul.dashlist 
+                            li Architectural internals of Ignite components
+                            li Ignite Enhancement Proposals: next big things for Ignite
+                            li Coding and release guidelines
+                    .restechnical__action 
+                        a.button(href="https://cwiki.apache.org/confluence/display/IGNITE/", target="_blank") Check out Wiki
+            // /.restechnical__item-2
+
+            article.restechnical__item
+                .restechnical__title.flexi.pb-5
+                    img(src="/public/img/icon-github.svg", alt="")
+                    span.h4 Git Repositories
+                .restechnical__box.cardsimple
+                    .restechnical__subtitle.h5 Ignite Source Code
+                    .restechnical__text.pt-2
+                        p.pb-3 Download Apache Ignite and install in your environment.
+                        p Select one of the following links:
+                    .restechnical__action.flexi
+                        a.button(href="https://gitbox.apache.org/repos/asf?p=ignite.git", target="_blank") Ignite Git
+                        a.button(href="https://github.com/apache/ignite", target="_blank") GitHub Mirror
+            // /.restechnical__item-3
+
+            article.restechnical__item
+                .restechnical__title.restechnical__title--empty.flexi.pb-5
+                    span.h4 &nbsp;
+                .restechnical__box.cardsimple
+                    .restechnical__subtitle.h5 Code samples and examples
+                    .restechnical__text.pt-2
+                        p Get access to examples that illustrate various Ignite functionality.
+                    .restechnical__action 
+                        a.button(href="https://github.com/apache/ignite/tree/master/examples", target="_blank") Examples Git
+            // /.restechnical__item-4
+    // /.restechnical
+
+
+
+    
+    section.resvideos
+        .container 
+            p.capstext LEARNING RESOURCES
+            h2.h4.resicontitle.flexi
+                img(src="/public/img/resourses/block-video.svg", alt="")
+                span Essential Videos and Webinar Recordings
+            p.h5.pt-1x Explore our collection of videos featuring widespread use-cases.
+            .resvideos__grid.pt-5
+                +resvideo('https://www.youtube.com/watch?v=UeQKuAQaMNU', "In memoty computing <br>essentials")
+                    p In&nbsp;this video, we&nbsp;introduce the fundamental capabilities of&nbsp;in-memory computing platforms, such as&nbsp;high-speed performance and scalability.
+                +resvideo('https://www.youtube.com/watch?v=hrnrsIkCnI0', "Distributed Computing <br>With Apache Ignite")
+                    p In&nbsp;this video, we&nbsp;show how to&nbsp;design and execute distributed computations considering all the pros and cons.
+                +resvideo('https://www.youtube.com/watch?v=TCsl-W0tsEE', "Consistency And Transactions <Br>Of Apache Ignite")
+                    p In&nbsp;this webinar, we&nbsp;provide a&nbsp;deep understanding of&nbsp;Apache Ignite&rsquo;s support for ACID transactions and data consistency.
+
+                +resvideo('https://www.youtube.com/watch?v=eYV-tNLzIts', "Apache Ignite <br>Sql Essentials")
+                    p Learn how to&nbsp;apply a&nbsp;classic SQL database experience while enabling in-memory speeds at&nbsp;petabyte scale for a&nbsp;variety of&nbsp;workloads.
+                +resvideo('https://www.youtube.com/watch?v=38YgdAOs038', "Deploying Apache Ignite In&nbsp;Kubernetes")
+                    p In&nbsp;this webinar, speakers provide steps on&nbsp;how to&nbsp;deploy Ignite in&nbsp;Kubernetes.
+                +resvideo('https://www.youtube.com/watch?v=eGlmZoBSS8g', "Machine Learning<br>With Apache Ignite")
+                    p Watch this webinar to&nbsp;learn how to&nbsp;leverage the Apache Ignite machine learning framework to&nbsp;implement a&nbsp;continuous machine learning platform.
+            .resvideos__youtube.h5.
+                Explore <a href="https://www.youtube.com/channel/UChYD3lCEnzHlWioUb2sNgSg" target="_blank">the full collection of Apache Ignite videos</a> and recordings on YouTube.
+    // /.resvideos
+
+
+
+    section.rescourses.container
+        h2.h4.resicontitle.flexi
+            img(src="/public/img/resourses/icon-training.svg", alt="")
+            span Trainings and Courses
+        p.pt-2.h5 Enhance your knowledge in building high-performance and <br>data-intensive applications with the Apache Ignite capabilities.
+        .rescourses__wrap.pt-5
+            article.rescourse.cardsimple
+                h3.fz20.rescourse__title.pb-2.maxline3 Apache Ignite Management <br>and Monitoring Guide
+                img.rescourse__pic(src="/public/img/resourses/training1.svg", alt="")
+                p.rescourse__descr.pb-3.pt-2 Learn how to monitor and manage Apache Ignite clusters in production
+                a.rescourse__button.button(href="https://www.gridgain.com/services/training", target="_blank") Training Schedule
+            article.rescourse.cardsimple
+                h3.fz20.rescourse__title.pb-2.maxline3.
+                    Apache Ignite Essentials: Key Design Principles for Building Data-Intensive Applications
+                img.rescourse__pic(src="/public/img/resourses/training2.svg", alt="")
+                p.rescourse__descr.pb-3.pt-2 Learn about data partitioning, affinity co-location, and co-located processing
+                a.rescourse__button.button(href="https://www.gridgain.com/services/training", target="_blank") Training Schedule
+            article.rescourse.cardsimple
+                h3.fz20.rescourse__title.pb-2.maxline3 Apache Ignite for Spring Boot and&nbsp;Spring Data Development
+                img.rescourse__pic(src="/public/img/resourses/training3.svg", alt="")
+                p.rescourse__descr.pb-3.pt-2 Explore the best practices and nuances of&nbsp;using Spring Boot and Spring Data with Apache Ignite
+                a.rescourse__button.button(href="https://www.gridgain.com/services/training", target="_blank") Training Schedule
+    // /.rescourses
+
+
+
+    section.resbook.container
+        h2.h4.resicontitle.flexi
+            img(src="/public/img/resourses/block-book.svg", alt="")
+            span Apache Ignite Book
+        p.pt-2.h5 This book is useful for developers and architects who want to expand <br>their knowledge in in-memory computing and distributed databases.
+        .resbook__wrap.pt-5.flexi 
+            .resbook__picwrap
+                img(src="/public/img/resourses/book-cover.jpg", alt="")
+            .resbook__content
+                .resbook__caps.capstext.pb-5 The book is recommended by <br>the Apache Ignite Community
+                blockquote.resbook__quote.h5.
+                    This is&nbsp;one of&nbsp;the very few good books on&nbsp;Apache Ignite. It&nbsp;covers <br>the whole spectrum of&nbsp;Ignite. From use-cases and architecture to&nbsp;maintenance and code examples that get your hands dirty. If&nbsp;you want one book to&nbsp;get it&nbsp;all, this is&nbsp;it!
+                .cmtyhistory__avaavtor.pt-3.flexi
+                    .cmtyhistory__ava
+                        img(src="/public/img/community/b2-cos.jpg", alt="")
+                    .cmtyhistory__avaright 
+                        .cmtyhistory__avaname Cos Boudnik
+                        .cmtyhistory__avaproff ASF member, Apache Ignite Mentor
+                a.button.resbook__button(href="#", target="_blank") Visit the book web-site
+    // /.resbook
+
+
+
+    section.rescontacts.container
+        h2.h4.resicontitle.flexi
+            img(src="/public/img/resourses/block-email.svg", alt="")
+            span Mailing Lists, Forums and Discussion Archives
+        .rescontacts__wrap
+            article.faqblock.flexi
+                h3.faqblock__title.faqblock__title--simple.h5
+                    span For general questions about Ignite
+                .faqblock__right
+                    h4 By e-mail
+                    p For general questions about Ignite <a href="mailto:user@ignite.apache.org">user@ignite.apache.org</a>
+                    .faqblock__buttons.flexi.pb-5.pt-2
+                        a.faqblock__button.flexi(href="mailto:user-subscribe@ignite.apache.org") 
+                            img(src="/public/img/icon-email+.svg", alt="").faqblock__eicon
+                            span Subscribe
+                        a.faqblock__button.flexi(href="mailto:user-unsubscribe@ignite.apache.org") 
+                            img(src="/public/img/icon-email-.svg", alt="").faqblock__eicon
+                            span Unsubscribe
+                        a.faqblock__button.flexi(href="https://lists.apache.org/list.html?user@ignite.apache.org" target="_blank") 
+                            img(src="/public/img/icon-folder.svg", alt="")
+                            span Archives
+                    h4 On StackOverflow
+                    p Or&nbsp;ask a&nbsp;question on&nbsp;StackOverflow tagging the question with &laquo;ignite&raquo; or&nbsp;&laquo;apacheignite&raquo;
+                    .faqblock__buttons.flexi.pt-2
+                        a.faqblock__button.flexi(href="http://stackoverflow.com/questions/tagged/ignite" target="_blank") 
+                            img(src="/public/img/icon-stackoverflow.svg", alt="").faqblock__stackicon
+                            span Ask question on StackOverflow
+            // /.faqblock
+
+            article.faqblock.flexi
+                h3.faqblock__title.faqblock__title--simple.h5
+                    span For contribution-related discussions
+                .faqblock__right
+                    h4 By e-mail
+                    p <a href="mailto:dev@ignite.apache.org">dev@ignite.apache.org</a>
+                    .faqblock__buttons.flexi.pb-4.pt-2
+                        a.faqblock__button.flexi(href="mailto:dev-subscribe@ignite.apache.org") 
+                            img(src="/public/img/icon-email+.svg", alt="").faqblock__eicon
+                            span Subscribe
+                        a.faqblock__button.flexi(href="mailto:dev-unsubscribe@ignite.apache.org") 
+                            img(src="/public/img/icon-email-.svg", alt="").faqblock__eicon
+                            span Unsubscribe
+                        a.faqblock__button.flexi(href="https://lists.apache.org/list.html?user@ignite.apache.org" target="_blank") 
+                            img(src="/public/img/icon-folder.svg", alt="")
+                            span Archives
+            // /.faqblock
+
+            article.faqblock.flexi
+                h3.faqblock__title.faqblock__title--simple.h5
+                    span Report about bugs, possible <br>improvements and ctr.
+                .faqblock__right
+                    h4 By e-mail
+                    p <a href="mailto:issues@ignite.apache.org">issues@ignite.apache.org</a>
+                    .faqblock__buttons.flexi.pb-5.pt-2
+                        a.faqblock__button.flexi(href="mailto:notifications-subscribe@ignite.apache.org") 
+                            img(src="/public/img/icon-email+.svg", alt="").faqblock__eicon
+                            span Subscribe
+                        a.faqblock__button.flexi(href="mailto:issues-unsubscribe@ignite.apache.org") 
+                            img(src="/public/img/icon-email-.svg", alt="").faqblock__eicon
+                            span Unsubscribe
+                        a.faqblock__button.flexi(href="https://lists.apache.org/list.html?issues@ignite.apache.org" target="_blank") 
+                            img(src="/public/img/icon-folder.svg", alt="")
+                            span Archives
+            // /.faqblock
\ No newline at end of file
diff --git a/src/use-cases/digital-integration-hub.pug b/src/use-cases/digital-integration-hub.pug
new file mode 100644
index 0000000..5d87677
--- /dev/null
+++ b/src/use-cases/digital-integration-hub.pug
@@ -0,0 +1,175 @@
+extend ../_components/base.pug
+
+block pagetitle
+    | Digital Integration Hub 
+
+block css 
+    link(rel="stylesheet", href="../css/native-persistence.css")
+    link(rel="stylesheet", href="../css/compute-apis.css")
+    
+    link(rel="stylesheet", href="../css/digital-hub.css")
+
+  
+
+
+
+block main
+    - global.pageHref = "usecases"
+    - config.hdrClassName = "hdr__blue"
+    include ../_components/header.pug
+
+
+    section.innerhero
+        .container.innerhero__cont
+            .innerhero__main.innerhero__mainhub
+                h1.h1.innerhero__h1 Digital Integration Hub
+                .h1.pt-2 With Apache Ignite 
+                .innerhero__descr.pt-2.h5.
+                    Build new types of applications that require real-time access<br> to data scattered across disparate data sources
+                .innerhero__action 
+                    a.button.innerhero__button(href="https://ignite.apache.org/docs/latest/index") Start Coding
+            img.innerhero__pic.innerhero__pic--hub(src="/public/img/usecases/digital-hub/hero-image.svg", alt="hero-image")
+    // /.innerhero
+
+  
+    section.hub1 
+       .container
+          h2.compute2__h2 Digital Integration Hub Overview 
+          .hub1__block.flexi
+            .hub1__info
+              h3.h5.hub1__title What is a digital integration hub?
+              p.hub1__text A digital integration hub (DIH) is an advanced platform architecture that aggregates multiple back-end systems and databases into a low-latency and shared data store. 
+              p.pt-1 The store caches and persists data sets scattered across many disjointed back-end databases and makes them available to your applications through high-performance APIs.
+              h3.h5.hub1__title.hub1__titleend How digital integration hub works
+              p.hub1__text Applications access Ignite via an API service layer and experience substantial performance improvements by requesting data from only the Ignite distributed store. 
+            img.hub1__image(src="/public/img/usecases/digital-hub/image.svg", alt="image")
+    // /.hub1 
+    
+    
+    section.compute2
+     .container
+       h2.compute2__h2 Benefits Of Using Apache Ignite as a Digital Integration Hub
+       .compute2__grid.flexi.hub2__grid 
+            .compute2item.hub2item
+              .compute2-points__item.fz20
+              .compute2item__block
+                h3.fz20.compute2item__title Advanced architecture that aggregates data<br> from multiple back-end data sources
+                p.compute2__text.hub2__text No need to clutter the applications with logic accessing numerous data stores.
+          
+            .compute2item.hub2item
+              .compute2-points__item.fz20
+              .compute2item__block
+                h3.fz20.compute2item__title Unified data access layer for new types<br> of applications and services
+                p.compute2__text.hub2__text Have applications accessing a single low-latency store for hybrid operations.
+                
+            
+    // /.compute2
+
+    section.hub3 
+      .container 
+          h2.h4 Digital Integration Hub Synchronization Techniques
+          p.hub3__subtext Ignite, as a high-performance data store, can be synchronized with the back-end databases via:
+          .hub3__parts.flexi
+            .hub3__part.flexi
+              .compute2-points__item.fz20 
+              .hub3__item Streaming
+            .hub3__part.flexi 
+                 .compute2-points__item.fz20 
+                 .hub3__item Event-based
+            .hub3__part.flexi
+               .compute2-points__item.fz20 
+               .hub3__item Change data capture (CDC)
+            .hub3__part.flexi
+                .compute2-points__item.fz20  
+                .hub3__item And other techniques
+          .hub3__blocks.flexi
+             .hub3__block 
+                 p.hub3__text <strong>For uni-directional synchronization</strong> between an Ignite cluster<br> and an external store, Ignite provides the CacheStore interface.
+                 p.hub3__text.pt-1 This interface allows Ignite to write-through or write-behind all the changes to the backend-systems automatically.
+                 p.hub3__text.pt-1 It also includes transactions. Ignite coordinates and commits a transaction across its in-memory cluster as well as an external transactional database.
+             .hub3__block 
+                 p.hub3__text <strong>For bi-directional synchronization,</strong> you can consider various streaming, CDC, and event-based technologies, such as: Kafka, Spark, Debezium and others.
+    // /.hub3
+
+    section.hub4
+       .container 
+           h2.hub4__h2.h4 Why Do Businesses Need<br> Digital Integration Hub Solutions?
+           .hub4__blocks.flexi
+             p.hub4__subtext.h5 To create new types of applications that should query data from disperse data sources.
+             p.hub4__grey.h5 DIH is a contemporary way to complete this challenging task.
+           .hub4__numbers.flexi
+              .hub4__number
+                .hub4__num.h5 01
+                p.hub4__text Accumulate data from dozens of data sources
+              .hub4__number
+                .hub4__num.h5 02
+                p.hub4__text.hub4__textall Keep data in a shared and low-latency store
+              .hub4__number
+                .hub4__num.h5 03
+                p.hub4__text.hub4__textall Get data synchronized with back-end system 
+
+    // /.hub4 
+
+    section.hub5 
+      .container
+         h2.compute2__h2 Apache Ignite User Stories 
+         .highcases__two
+            .hub5__twowrap.flexi.pt-5
+                .hub5__item
+                    +powvideo(
+                        "https://www.youtube.com/watch?v=EdFOKJIjRSg&feature=emb_imp_woyt",
+                        "/public/img/usecases/digital-hub/one-video.png",
+                        "",
+                        "Fitness + In Memory Computing = Getting Ahead Of The Game",
+                        "comvideo__txt--white hub5__video"
+                    )
+                    h3.h4.hub5__title 24 Hour Fitness 
+                    p.hub5__text implements a Digital Integration Hub to offload API calls and enable new data access patterns.
+                .hub5__item
+                    +powvideo(
+                        "https://www.youtube.com/watch?v=g1FcrOPXWyg",
+                        "/public/img/usecases/digital-hub/two-video.png",
+                        "",
+                        "Using Ignite And JBoss Drools To Implement A Complex Event Processing Solution",
+                        "comvideo__txt--black comvideo__txthub hub5__video"
+                    )
+                    h3.h4.hub5__title Вanco do Brasil 
+                    p.hub5__text uses digital integration hub capabilities to develop the omnichannel Horus platform.
+            .hub5__twowrap.flexi.pt-5
+                .hub5__item
+                    +powvideo(
+                        "https://www.youtube.com/watch?v=3FFexcYIpmA",
+                        "/public/img/usecases/digital-hub/three-video.png",
+                        "",
+                        "Leveraging In-Memory Compute Grids With Core Systems Of Record",
+                        "comvideo__txt--white hub5__video"
+                    )
+                    h3.h4.hub5__title IBM
+                    p.hub5__text launches the Z Digital Integration Hub built on Apache Ignite to enable real-time business agility for organizations.
+              
+
+
+
+    
+
+   
+    section.native-bottom.container
+        .native-bottom__grid 
+            article.nativebotblock
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-rocket.svg", alt="").nativebotblock__icon
+                    span Ready to Start?
+                p.nativebotblock__text Discover our quick start guide and build your first<br> application in 5-10 minutes
+                a.nativebotblock__link.arrowlink(href="https://ignite.apache.org/docs/latest/", target="_blank") Quick Start Guide
+            article.nativebotblock.nativebotblock--learn
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-docs.svg", alt="").nativebotblock__icon
+                    span Want to Learn More?
+                p.nativebotblock__text Run our digital integration hub sample application
+                a.nativebotblock__link.arrowlink(href="https://cwiki.apache.org/confluence/display/IGNITE/Ignite+Persistent+Store+-+under+the+hood", target="_blank") Download the sample project
+
+
+
+
+
+
diff --git a/src/use-cases/high-performance-computing.pug b/src/use-cases/high-performance-computing.pug
new file mode 100644
index 0000000..6bc7b12
--- /dev/null
+++ b/src/use-cases/high-performance-computing.pug
@@ -0,0 +1,206 @@
+extend ../_components/base.pug
+
+block pagetitle
+    | High Performance Computing   
+
+block css 
+    link(rel="stylesheet", href="../css/native-persistence.css")
+    link(rel="stylesheet", href="../css/high-performance-computing.css")
+
+
+
+block main
+    - global.pageHref = "usecases"
+    - config.hdrClassName = "hdr__blue"
+    include ../_components/header.pug
+
+
+    section.innerhero
+        .container.innerhero__cont
+            .innerhero__main
+                h1.h1.innerhero__h1 High Performance <br>Computing
+                    span.highperf__herosmall  With Apache Ignite
+                .innerhero__descr.pt-2.h5.
+                    Minimize network utilization by executing kilobyte-size custom <br>code over petabytes of data 
+                .innerhero__action 
+                    a.button.innerhero__button(href="https://ignite.apache.org/docs/latest/index") Start Coding
+            img.innerhero__pic.innerhero__pic--highperf(src="/public/img/usecases/high-peformance/hero.svg", alt="High Performance Computing")
+    // /.innerhero
+
+
+
+    section.high1.container 
+        .capstext.pb-5 High Performance Computing Overview
+        .high1__wrap.flexi
+            .high1__main.pt-1
+                h3.h5.high1__title What is high performance computing?
+                .high1__text.pt-3.pb-5
+                    p High-performance computing is the ability to process data and perform complex calculations at high speeds. 
+                    p You keep all your data on the cluster node and execute your kilobyte-size custom code over petabytes of data avoiding network-like utilization.
+                h3.h5.high1__title How it works
+                .high1__text.pt-2
+                    .high1__sub.pb-2 In traditional disk-based systems, <br>such as relational or NoSQL databases
+                    p Client applications usually bring data from servers, use the records for local calculations, and discard the data as soon as the business task is complete.
+                    p This approach does not scale well if a significant volume of data gets transferred over the network.
+                    .high1__sub.pt-2.pb-2 In in-memory computing systems, <br>such as Apache Ignite
+                    p Apache Ignite supports a co-located processing technique. The primary aim of this technique is to increase the performance of your data-intensive or compute-intensive calculations by running them straight on Ignite cluster nodes. 
+                    p In co-located processing, calculations are done on local data sets of the cluster nodes. This avoids records shuffling over the network and eliminates the impact of network latency on the performance of your applications.
+            aside.high1__picwrap 
+                img(src="/public/img/usecases/high-peformance/perf-pic.svg", alt="").high1__pic
+                .high1__picdescr.flexi 
+                    .high1__arrowline.flexi
+                        i 1
+                        p – Map Phace
+                    .high1__arrowline.flexi
+                        i 2
+                        p – Execution Phase
+                    .high1__arrowline.flexi
+                        i 3
+                        p – Reduse Phace
+    // /.high1
+
+
+
+    section.high2 
+        .container
+            .capstext Benefits Of Apache Ignite Compute APIs
+            .high2__wrap
+                .high2__block 
+                    .high2__title Broadcast or execute on specific nodes
+                    .high2__text 
+                        p — Broadcast your tasks to&nbsp;use all the CPUs of&nbsp;your distributed cluster.
+                        p.pt-1 — Or&nbsp;execute your computations on&nbsp;a&nbsp;specific group of&nbsp;nodes.
+                .high2__block 
+                    .high2__title Load balance your querie
+                    .high2__text
+                        p If&nbsp;some of&nbsp;the nodes are over-utilized, Ignite can load balance your calculations to&nbsp;the other node.
+                .high2__block 
+                    .high2__title All computations are fault-tolerant
+                    .high2__text
+                        p Some computations might take minutes or&nbsp;hours to&nbsp;complete, e.g. drug discovery or&nbsp;logistics planning. You don&rsquo;t need to&nbsp;start from the very beginning if&nbsp;something goes wrong.
+    // /.high2
+
+
+
+    section.highicons.container 
+        h2.h4 Sample Data- And Compute-Intensive Tasks That <br>Leverage High Performance Computing
+        .highicons__wrap.pt-5 
+            .highicons__item
+                .highicons__iconwrap.flexi 
+                    img(src="/public/img/usecases/high-peformance/icon-perf1.svg", alt="").highicons__icon
+                .highicons__title Finance
+                .highicons__descr e.g. fraud-detection, risk management, financial modeling
+            .highicons__item
+                .highicons__iconwrap.flexi 
+                    img(src="/public/img/usecases/high-peformance/icon-perf2.svg", alt="").highicons__icon
+                .highicons__title Retail & Hospitality
+                .highicons__descr e.g. recommendation systems, 360 customer experience
+            .highicons__item
+                .highicons__iconwrap.flexi 
+                    img(src="/public/img/usecases/high-peformance/icon-perf3.svg", alt="").highicons__icon
+                .highicons__title Media & Entertainment
+                .highicons__descr e.g. creating animations, rendering special effects
+            .highicons__item
+                .highicons__iconwrap.flexi 
+                    img(src="/public/img/usecases/high-peformance/icon-perf4.svg", alt="").highicons__icon
+                .highicons__title Logistic and transportation
+                .highicons__descr e.g. logistics planning, detecting potential hazardous situations
+            .highicons__item
+                .highicons__iconwrap.flexi 
+                    img(src="/public/img/usecases/high-peformance/icon-perf5.svg", alt="").highicons__icon
+                .highicons__title Biotech
+                .highicons__descr e.g. drugs and vaccines discovery, sequencing DNA
+    // /.highicons
+
+
+
+    section.highcases.container
+        h2.h4 High Performance Computing Ignite <br>User Stories
+        .highcases__one.flexi.pt-2.pb-4
+            .highcases__topleft
+                .highcases__subtitle.pb-2 Personalized websites with dynamically changing content
+                p.pb-3 Whenever you visit Amazon, Walmart, Booking.com, or other websites, you see personalized content, such as relevant deals made especially for you.
+                p Personalized content considering your age, location, preferences, and previous interactions is being processed and displayed in few seconds thanks to high-performance computing tasks that process gigabytes of data within a second.
+            .highcases__topright
+                +powvideo(
+                    "https://www.youtube.com/watch?v=qYd9GGRC4L0",
+                    "/public/img/usecases/high-peformance/video-1.png",
+                    "",
+                    "An Ignite Compute Grid <br>In The Cloud"
+                )
+                    p <strong>HomeAway,</strong> rental website with personalized offer
+            
+        .highcases__two.pt-4.pb-4
+            .highcases__subtitle.pb-2 Data-driven modelling and simulations
+            p To create a new vaccine or drug you have to run thousands or millions <br>of simulations to come up with the best formula.
+            .highcases__twowrap.flexi.pt-5
+                .highcases__twoitem
+                    +powvideo(
+                        "https://www.youtube.com/watch?v=PFHb-UuhGkk",
+                        "/public/img/usecases/high-peformance/video-2.png",
+                        "",
+                        "Data Driven Drug Discovery"
+                    )
+                    p <strong>E-Therapeutics</strong> uses Apache Ignite capabilities for drug discovery
+                .highcases__twoitem
+                    +powvideo(
+                        "https://www.youtube.com/watch?v=NUxdoL-K9Ys",
+                        "/public/img/usecases/high-peformance/video-3.png",
+                        "",
+                        "How nference.ai Leverages Ignite For Distributed Analytics In The Bioinformatics Domain",
+                        "comvideo__txt--small"
+                    )
+                        p <strong>nference.ai:</strong> high performance compute APIs used to&nbsp;define different statistical analyses and execute numerical data in&nbsp;real-time
+    
+        .highcases__one.flexi.pt-4.pb-4
+            .highcases__topleft
+                .highcases__subtitle.pb-2 Logistic and transportation companies use advanced calculations for logistics planning
+                p <strong>Dutch Railways</strong> have thousands of different trains to deliver cargo and people across the country. They need to calculate how all those trains should be moving in real time. These calculations also happen with high compute APIs.
+            .highcases__topright
+                +powvideo(
+                    "https://www.youtube.com/watch?v=wkCW8YC8eKU",
+                    "/public/img/usecases/high-peformance/video-4.png",
+                    "",
+                    "Detecting Potential Hazardous Situations In The Dutch Railway Planning Using Apache Ignite",
+                    "comvideo__txt--small"
+                )
+
+        .highcases__two.pt-4
+            .highcases__subtitle.pb-2 Real-time analytics to enable fast and precise decisions
+            p High performance computing allows to process unlimited data sets and analyze <br>them in seconds.
+            .highcases__twowrap.flexi.pt-5
+                .highcases__twoitem
+                    +powvideo(
+                        "https://www.youtube.com/watch?v=jF9T2cJB6t0",
+                        "/public/img/usecases/high-peformance/video-5.png",
+                        "",
+                        "High Performance Exposure Management With Apache Ignite",
+                        "comvideo__txt--small"
+                    )
+                    p <strong>JPMorgan Chase</strong> use Apache Ignite for heavy computations which help to&nbsp;make effective exposure management.
+                .highcases__twoitem
+                    +powvideo(
+                        "https://www.youtube.com/watch?v=B8A8yR_e6VM",
+                        "/public/img/usecases/high-peformance/video-6.png",
+                        "",
+                        "Real Time Exposure Management Using Ignite",
+                        ""
+                    )
+
+
+
+
+    section.native-bottom.container
+        .native-bottom__grid 
+            article.nativebotblock
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-rocket.svg", alt="").nativebotblock__icon
+                    span Ready to Start?
+                p.nativebotblock__text Discover our quick start guide and build <br>your first application in 5-10 minutes
+                a.nativebotblock__link.arrowlink(href="https://ignite.apache.org/docs/latest/", target="_blank") Quick Start Guide
+            article.nativebotblock.nativebotblock--learn
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-docs.svg", alt="").nativebotblock__icon
+                    span Want to View More Use-Cases?
+                p.nativebotblock__text Check out success stories from <br>different industries across the world
+                a.nativebotblock__link.arrowlink(href="/use-cases/provenusecases.html") Companies Stories
\ No newline at end of file
diff --git a/src/use-cases/in-memory-cache.pug b/src/use-cases/in-memory-cache.pug
new file mode 100644
index 0000000..5bca34b
--- /dev/null
+++ b/src/use-cases/in-memory-cache.pug
@@ -0,0 +1,150 @@
+extend ../_components/base.pug
+
+block pagetitle
+    | Multi-Tier Storage   
+
+block css 
+    link(rel="stylesheet", href="../css/native-persistence.css")
+    link(rel="stylesheet", href="../css/in-memory-cache.css")
+
+
+
+block main
+    - global.pageHref = "usecases"
+    - config.hdrClassName = "hdr__blue"
+    include ../_components/header.pug
+
+
+    section.innerhero
+        .container.innerhero__cont
+            .innerhero__main.innerhero__main--long
+                .innerhero__pre.pb-5 Apache Ignite
+                h1.h1.innerhero__h1 Distributed <br>In-Memory Cache
+                .innerhero__descr.pt-2.h5.
+                    Improve the performance and scalability of&nbsp;your applications, <br>
+                    databases, and microservices with Apache Ignite
+                .innerhero__action 
+                    a.button.innerhero__button(href="https://ignite.apache.org/docs/latest/index") Start Coding
+            img.innerhero__pic.innerhero__pic--inmemory(src="/public/img/usecases/in-memory-hero.svg", alt="Distributed In-Memory Cache")
+    // /.innerhero
+
+
+
+    section.inmememor1.container
+        header.blockheader.blockheader--spl.flexi
+            h2.capstext.pb-3 What Is In-Memory Cache
+            .inmememor1__text
+                p In-memory cache is&nbsp;a&nbsp;storage layer placed between applications and databases. The cache keeps your hot data in&nbsp;memory to&nbsp;offload existing databases and accelerate applications.
+    // /.inmememor1
+    
+
+    section.inmememor-adv
+        .container
+            header.blockheader.blockheader--spl.flexi
+                h2.h4 Advantages of Distributed In-Memory Cache
+                .blockheader__right.fz20.
+                    A distributed in-memory cache is <strong>the most straightforward and scalable</strong> way to accelerate your existing applications and databases, thanks to:                
+            .inmememor-adv__wrap
+                .inmememor-adv__item 
+                    h3.h4 Speed
+                    .inmememor-adv__text Memory as a storage layer provides the&nbsp;lowest latency and highest throughput. Laws of physics.
+                .inmememor-adv__item 
+                    h3.h4 Scale
+                    .inmememor-adv__text Horizontal scalability lets you grow the&nbsp;cluster unlimitedly to accommodate <br>data size and throughput.
+    // /.inmememor-adv
+
+
+
+    section.inmememor-api.container
+        header.blockheader.blockheader--spl.flexi
+            h2.h4.blockheader__left.blockheader__left--full Unlike Standard In-Memory Caches, Apache Ignite <br>Supports Essential Developers APIs
+        .inmememor-api__wrap.flexi
+            .inmememor-api__item
+                img.inmememor-api__icon(src="/public/img/features/in-memory/01-ACID-Transactions.svg", alt="")
+                p.fz20.pt-3 ACID transactions <br>to&nbsp;ensure consistency <br>of&nbsp;data
+            .inmememor-api__item
+                img.inmememor-api__icon(src="/public/img/features/in-memory/02-sql.svg", alt="")
+                p.fz20.pt-3 SQL queries execution
+            .inmememor-api__item
+                img.inmememor-api__icon(src="/public/img/features/in-memory/03-user.svg", alt="")
+                p.fz20.pt-3 Custom computations, <br>e.g. on Java, available
+    // /.inmememor-api
+
+
+
+    section.inmememor2.container 
+        h2.h4 Read-Through / Write-Through Caching
+        p.fz20.pt-5
+            strong How It Works
+        .inmememor2__work.flexi.pt-2
+            .inmememor2__left
+                p
+                    em The read-through/write-through caching strategy can be <br>classified as&nbsp;an&nbsp;in-memory, data-grid type of&nbsp;deployment.
+            .inmememor2__right 
+                p When Apache Ignite is&nbsp;deployed as&nbsp;a&nbsp;data grid, the application layer begins to&nbsp;treat Ignite as&nbsp;the primary store.
+                p As&nbsp;applications write to&nbsp;and read from the data grid, Ignite ensures that all underlying external databases stay updated and are consistent with the in-memory data.
+        .inmememor2__picwrap
+            picture
+                source(media="(min-width: 1024px)", srcset="/public/img/features/in-memory/write-through-caching.svg", sizes="")
+                img(src="/public/img/features/in-memory/write-through-caching-mob.svg", alt="")
+        p.fz20
+            strong How It Works
+        .inmememor2__work.flexi.pt-3
+            .inmememor2__left.inmememor2__left--icon
+                p This strategy is recommended for architectures that need to:
+                ul.dashlist.pt-1
+                    li accelerate disk-based databases;
+                    li create a shared caching layer across various data sources.
+            .inmememor2__right
+                p Ignite integrates with many databases out-of-the-box and, in&nbsp;write-through or&nbsp;write-behind mode, can synchronize all changes to&nbsp;the databases.
+                p The strategy also applies to&nbsp;ACID&nbsp;transactions: Ignite will coordinate and commit a&nbsp;transaction across its in-memory cluster as&nbsp;well as&nbsp;to&nbsp;a&nbsp;relational database.
+                p Read-through capability implies that, if&nbsp;a&nbsp;record is&nbsp;missing from memory, a&nbsp;cache can read the data from an&nbsp;external database. Ignite fully supports this capability for key-value APIs.
+                p When you use Ignite SQL, you must preload the dataset into memory&mdash;because Ignite SQL can query on-disk data only if&nbsp;the data is&nbsp;stored in&nbsp;native persistence.
+    // /.inmememor2
+
+
+
+    section.inmememor3.container.pt-5
+        h2.h4 Cache-Aside Deployment
+        .inmememor2__picwrap
+            picture
+                source(media="(min-width: 1024px)", srcset="/public/img/features/in-memory/cache-aside-deployment.svg", sizes="")
+                img(src="/public/img/features/in-memory/cache-aside-deployment-mob.svg", alt="")
+        p.fz20.pt-3
+            strong When It Works
+        .inmememor2__work.flexi.pt-3
+            .inmememor2__left
+                p This strategy works well in two cases:
+                ul.pt-1
+                    li 1. The cached data is relatively static, i.e. not updated frequently
+                    li 2. A temporary data lag is allowed between the primary store and the cache
+            .inmememor2__right
+                p It&rsquo;s usually assumed that changes will be&nbsp;fully replicated eventually and, <br>thus, the cache and the primary store will become consistent.
+
+        .inmememor3__bottom
+            h3.fz20 Cach-Aside Deployment And Native Persistence
+            .inmememor3__botwrap.flexi.pt-3
+                .inmememor2__left
+                    p When Apache Ignite is&nbsp;deployed in&nbsp;a&nbsp;cache-aside configuration, its native persistence can be&nbsp;used as&nbsp;a&nbsp;disk store for Ignite datasets. Native persistence allows for elimination of&nbsp;the time-consuming cache warm-up step.
+                    p As&nbsp;native persistence maintains a&nbsp;full copy of&nbsp;data on&nbsp;disk, you can cache a&nbsp;subset of&nbsp;records in&nbsp;memory. If&nbsp;a&nbsp;required data record is&nbsp;missing from memory, then Ignite reads the record from the disk automatically, regardless of&nbsp;which API you use&nbsp;&mdash; whether SQL, key-value, or&nbsp;scan queries.
+                .inmememor2__right
+                    ul.inmememor3__checklist
+                        li Seconds needed for recovery
+                        li Full copy of cached records is duplicated on disk
+                        li Use any API: SQL, key-value, or scan queries
+    // /.inmememor3
+
+    section.native-bottom.container
+        .native-bottom__grid 
+            article.nativebotblock
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-rocket.svg", alt="").nativebotblock__icon
+                    span Ready to Start?
+                p.nativebotblock__text Discover our quick start guide and build your first application in 5-10 minutes
+                a.nativebotblock__link.arrowlink(href="/docs/quick-start.html", target="_blank") Quick Start Guide 
+            article.nativebotblock.nativebotblock--learn
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-docs.svg", alt="").nativebotblock__icon
+                    span Want to View More Use-Cases?
+                p.nativebotblock__text Read In-Memory Data Grid article
+                a.nativebotblock__link.arrowlink(href="#", target="_blank") In-Memory Data Grid
diff --git a/src/use-cases/in-memory-data-grid.pug b/src/use-cases/in-memory-data-grid.pug
new file mode 100644
index 0000000..bf7fca5
--- /dev/null
+++ b/src/use-cases/in-memory-data-grid.pug
@@ -0,0 +1,179 @@
+extend ../_components/base.pug
+
+block pagetitle
+    | In-Memory Data Grid 
+
+block css 
+    link(rel="stylesheet", href="../css/native-persistence.css")
+    link(rel="stylesheet", href="../css/compute-apis.css")
+    link(rel="stylesheet", href="../css/digital-hub.css")
+    link(rel="stylesheet", href="../css/database.css")
+    link(rel="stylesheet", href="../css/datagrid.css")
+  
+
+
+
+block main
+    - global.pageHref = "usecases"
+    - config.hdrClassName = "hdr__blue"
+    include ../_components/header.pug
+
+
+    section.innerhero
+        .container.innerhero__cont
+            .innerhero__main
+               
+                h1.h1.innerhero__h1 In-Memory Data Grid
+                .h1.pt-2 With Apache Ignite 
+                .innerhero__descr.pt-2.h5.
+                    Use an advanced read-through / write-through cache<br> that is deployed on top of one or several databases
+                .innerhero__action 
+                    a.button.innerhero__button(href="https://ignite.apache.org/docs/latest/index") Start Coding
+            img.innerhero__pic.innerhero__pic--datagrid(src="/public/img/usecases/datagrid/hero-image.svg", alt="hero-image")
+    // /.innerhero
+
+    section.grid1 
+       .container
+         h2.grid1__h2.h4 In-memory data grid with Apache Ignite <strong>accelerates and scales</strong> your existing databases and data stores.
+    // /.grid1
+
+    section.hub1.grid2 
+       .container
+          h2.compute2__h2 In-Memory Data Grid Overview
+          .hub1__block.flexi
+            .hub1__info
+              h3.h5.hub1__title What is in-memory data-grid?
+              p.hub1__text An in-memory data grid (IMDG) is an advanced read-through/write-through cache that is deployed on top of multiple databases. 
+              p.hub1__text Applications write to and read from the grid, and the grid propagates changes to the underlying data stores in a consistent way.
+              h3.h5.hub1__title.hub1__titleend How does an in-memory data grid work?
+              p.hub1__text Co-location is the main IMDG feature. It organizes related data for storage in the same node and enables low latency with high throughput computing.
+              p.hub1__text Co-located applications can access in-memory data without network movement.
+              p.hub1__text In in-memory data grid queries are processed at high speeds and scaled to multiple nodes, because there's no distance between data and applications.
+            img.hub1__image(src="/public/img/usecases/datagrid/image.svg", alt="image")
+    // /.hub1 
+  
+
+   
+
+    section.base3
+       .container
+           h2.base3__h2.h4 Apache Ignite as a data grid supports a variety of developer APIs
+           .base3__blocks.flexi
+              .base3__block
+                h3.base3__h3 Essential Developer APIs
+                .base3__images.flexi
+                    .base3__item.flexi
+                       img.base3__image(src="/img/features/03-distributed-SQL.svg", alt="sql")
+                       .base3__subtext SQL
+                    .base3__item.flexi
+                       img.base3__image(src="/img/features/05-key-value-APIs.svg", alt="apis")
+                       .base3__subtext Key-value
+                    .base3__item.flexi
+                       img.base3__image(src="/img/features/04-ACID-transactions.svg", alt="acid")
+                       .base3__subtext ACID<br> transactions
+                p.base3__text Enable you to request, join, and group distributed datasets.
+              .base3__block
+                h3.base3__h3 High Performance Computing APIs
+                .base3__images.flexi
+                    .base3__item.flexi
+                       img.base3__image(src="/img/features/06-compute-APIs.svg", alt="sql")
+                       .base3__subtext Compute
+                    .base3__item.flexi
+                       img.base3__image(src="/img/features/07-machine-learning.svg", alt="apis")
+                       .base3__subtext Machine<br> learning
+                    .base3__item.flexi
+                       img.base3__image(src="/img/features/08-services.svg", alt="acid")
+                       .base3__subtext Services
+                p.base3__text Execute logic close to the data, thus eliminating expensive data shuffling over the network.
+              .base3__block
+                h3.base3__h3 Real-Time Streaming APIs
+                .base3__images.flexi
+                    .base3__item.flexi
+                       img.base3__image(src="/img/features/09-streaming.svg", alt="sql")
+                       .base3__subtext Streaming
+                    .base3__item.flexi
+                       img.base3__image(src="/img/features/10-continuous-queries.svg", alt="apis")
+                       .base3__subtext Continuous<br> Queries
+                    .base3__item.flexi
+                       img.base3__image(src="/img/features/11-messaging.svg", alt="acid")
+                       .base3__subtext Messaging
+                p.base3__text.base3__textend Allow the seamless implementation of event-driven architectures.
+    // /.base3 
+    section.grid4 
+       .container
+          .grid4__blocks.flexi
+            h2.grid4__h2.h5 Native Persistence And In-Memory Data
+            .grid4__block
+               p.grid4__text When <a href="/arch/native-persistence.html">Native Persistence</a> is enabled, Ignite stores both data and indexes<br> on disk, thus eliminating the time-consuming cache warm-up step.
+               p.grid4__text.pt-1 Native Persistence keeps a full copy of data on disk, so you are free<br> to cache a subset of records in memory.
+               p.grid4__text.pt-1 If a required data record is missing from memory, Ignite reads the record from the disk automatically.
+    // /.grid4
+
+    section.grid5
+       .container
+          h2.grid5__h2.h4 In-memory data grid is frequently used when a business works with large datasets at low latency and high throughput.
+          .grid5__blocks.flexi
+             article.native2item.grid5__item
+               p.grid5__text Increase the performance and scalability of real-time applications and external databases.
+             article.native2item.grid5__item
+               p.grid5__text Support
+                 a(href="https://ignite.apache.org/use-cases/high-performance-computing.html" target="_blank") high-performance computing.
+             article.native2item.grid5__item
+               p.grid5__text Cache data that is scattered across databases.
+
+    // /.grid5                
+
+
+
+    section.hub5 
+      .container
+         h2.compute2__h2 In-Memory Data Grid Ignite User Stories
+         .highcases__two
+            .hub5__twowrap.flexi.pt-5
+                .hub5__item
+                    +powvideo(
+                        "https://www.youtube.com/watch?v=78UE11GrWzk&t=2586s ",
+                        "/public/img/usecases/database/one-video.png",
+                        "",
+                        "Leveraging In Memory Data Grid For Faster Time To Market ",
+                        "comvideo__txt--white hub5__video"
+                    )
+                    h3.h4.hub5__title Agilent Technologies Inc.
+                    p.hub5__text.base5__text improved its online channel by implementing in-memory solutions. They leveraged in-memory data grid to achieve faster time-to-market, and data flexibility across digital channels.
+                .hub5__item
+                    +powvideo(
+                        "https://www.youtube.com/watch?v=CPmwnjDJ1Sk&feature=emb_imp_woyt",
+                        "/public/img/usecases/database/two-video.png",
+                        "",
+                        "Embracing The Service Consumption Shift In Banking",
+                        "comvideo__txt--white comvideo__txthub hub5__video"
+                    )
+                    h3.h4.hub5__title ING Bank
+                    p.hub5__text.base5__text.base5__textend used in-memory computing platforms to meet increasing demand for performance and scalability.
+          
+              
+
+
+
+    
+
+   
+    section.native-bottom.container
+        .native-bottom__grid 
+            article.nativebotblock
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-rocket.svg", alt="").nativebotblock__icon
+                    span Ready to Start?
+                p.nativebotblock__text Discover our quick start guide and build your first<br> application in 5-10 minutes
+                a.nativebotblock__link.arrowlink(href="https://ignite.apache.org/docs/latest/", target="_blank") Quick Start Guide
+            article.nativebotblock.nativebotblock--learn
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-docs.svg", alt="").nativebotblock__icon
+                    span Want to View More Use-Cases?
+                p.nativebotblock__text Read the In-Memory Database article
+                a.nativebotblock__link.arrowlink(href="https://ignite.apache.org/use-cases/in-memory-database.html", target="_blank") In-Memory Database
+
+
+
+
+
diff --git a/src/use-cases/in-memory-database.pug b/src/use-cases/in-memory-database.pug
new file mode 100644
index 0000000..d999c85
--- /dev/null
+++ b/src/use-cases/in-memory-database.pug
@@ -0,0 +1,184 @@
+extend ../_components/base.pug
+
+block pagetitle
+    | In-Memory Database 
+
+block css 
+    link(rel="stylesheet", href="../css/native-persistence.css")
+    link(rel="stylesheet", href="../css/compute-apis.css")
+    link(rel="stylesheet", href="../css/digital-hub.css")
+    link(rel="stylesheet", href="../css/database.css")
+
+  
+
+
+
+block main
+    - global.pageHref = "usecases"
+    - config.hdrClassName = "hdr__blue"
+    include ../_components/header.pug
+
+
+    section.innerhero
+        .container.innerhero__cont
+            .innerhero__main
+                
+                h1.h1.innerhero__h1 In-Memory Database
+                .h1.pt-2 With Apache Ignite 
+                .innerhero__descr.pt-2.h5.
+                    In-memory database that scales horizontally across memory<br> and disk with full SQL support
+                .innerhero__action 
+                    a.button.innerhero__button(href="https://ignite.apache.org/docs/latest/index") Start Coding
+            img.innerhero__pic.innerhero__pic--database(src="/public/img/usecases/database/hero-image.svg", alt="hero-image")
+    // /.innerhero
+
+    
+    section.hub1 
+       .container
+          h2.compute2__h2 In-Memory Database Overview
+          .hub1__block.flexi
+            .hub1__info
+              h3.h5.hub1__title What is an in-memory database?
+              p.hub1__text An in-memory database (IMDB) is a data management system that stores data primarily in the computer’s main memory. 
+              h3.h5.hub1__title.hub1__titleend How an in-memory database works?
+              p.hub1__text In-memory databases rely on spinning disks for data storage. IMDBs allow mission-critical applications to benefit from faster response times than disk-based databases.
+            img.hub1__image(src="/public/img/usecases/database/image.svg", alt="image")
+    // /.hub1 
+    section.base1
+       .container
+           h2.base1__h2.h5 Apache Ignite as a distributed in-memory database scales horizontally across memory and disk with no compromises
+           .base1__blocks.flexi
+              .base1__block
+                 p.base1__text Apache Ignite works with memory, disk, and Intel Optane as active storage tiers. 
+                 p.base1__text.pt-1 This <a href="/arch/multi-tier-storage.html">multi-tier</a> architecture combines, in one system, the advantages of in-memory computing with disk durability and strong consistency.
+              .base1__block
+                .base1__item.flexi
+                   .compute2-points__item.fz20
+                   h3.base1__black Speed of memory
+                .base1__item.flexi
+                   .compute2-points__item.fz20 
+                   h3.base1__black Strong consistency
+                .base1__item.flexi
+                   .compute2-points__item.fz20
+                   h3.base1__black Durability of disk     
+    // /.base1
+
+    section.compute2
+     .container
+       h2.compute2__h2 Advantages Of Ignite Multi-Tiered Architecture
+       .compute2__grid.flexi.hub2__grid 
+            .compute2item.hub2item
+              .compute2-points__item.fz20
+              .compute2item__block
+                h3.fz20.compute2item__title Instantaneous cluster restarts
+                p.compute2__text.base2__text Ignite becomes fully operational from disk upon a cluster startup or restarts without requiring to preload or warm up the memory tier.
+          
+            .compute2item.hub2item
+              .compute2-points__item.fz20
+              .compute2item__block
+                h3.fz20.compute2item__title Multi-tiered storage
+                p.compute2__text.base2__text Ignite treats disk as an active storage layer allowing to cache a subset of the data in memory and query both in-memory and disk-only records with SQL and all other available
+                
+            
+    // /.compute2
+
+    section.base3
+       .container
+           h2.base3__h2.h4 Apache Ignite as a data grid supports a variety of developer APIs
+           .base3__blocks.flexi
+              .base3__block
+                h3.base3__h3 Essential Developer APIs
+                .base3__images.flexi
+                    .base3__item.flexi
+                       img.base3__image(src="/img/features/03-distributed-SQL.svg", alt="sql")
+                       .base3__subtext SQL
+                    .base3__item.flexi
+                       img.base3__image(src="/img/features/05-key-value-APIs.svg", alt="apis")
+                       .base3__subtext Key-value
+                    .base3__item.flexi
+                       img.base3__image(src="/img/features/04-ACID-transactions.svg", alt="acid")
+                       .base3__subtext ACID<br> transactions
+                p.base3__text Enable you to request, join, and group distributed datasets.
+              .base3__block
+                h3.base3__h3 High Performance Computing APIs
+                .base3__images.flexi
+                    .base3__item.flexi
+                       img.base3__image(src="/img/features/06-compute-APIs.svg", alt="sql")
+                       .base3__subtext Compute
+                    .base3__item.flexi
+                       img.base3__image(src="/img/features/07-machine-learning.svg", alt="apis")
+                       .base3__subtext Machine<br> learning
+                    .base3__item.flexi
+                       img.base3__image(src="/img/features/08-services.svg", alt="acid")
+                       .base3__subtext Services
+                p.base3__text Execute logic close to the data, thus eliminating expensive data shuffling over the network.
+              .base3__block
+                h3.base3__h3 Real-Time Streaming APIs
+                .base3__images.flexi
+                    .base3__item.flexi
+                       img.base3__image(src="/img/features/09-streaming.svg", alt="sql")
+                       .base3__subtext Streaming
+                    .base3__item.flexi
+                       img.base3__image(src="/img/features/10-continuous-queries.svg", alt="apis")
+                       .base3__subtext Continuous<br> Queries
+                    .base3__item.flexi
+                       img.base3__image(src="/img/features/11-messaging.svg", alt="acid")
+                       .base3__subtext Messaging
+                p.base3__text.base3__textend Allow the seamless implementation of event-driven architectures.
+              
+
+
+
+    section.hub5 
+      .container
+         h2.compute2__h2 In-Memory Database Ignite User Stories
+         .highcases__two
+            .hub5__twowrap.flexi.pt-5
+                .hub5__item
+                    +powvideo(
+                        "https://www.youtube.com/watch?v=-t-Syy9blXQ",
+                        "/public/img/usecases/database/one-video.png",
+                        "",
+                        "Apache Ignite As A Hybrid Transactional-Analytical Processing Solution At A Large Investment Bank",
+                        "comvideo__txt--white hub5__video"
+                    )
+                    h3.h4.hub5__title BNP Paribas
+                    p.hub5__text.base5__text with the help of Apache Ignite managed to design, build, and optimize a hybrid transactional-analytical processing (HTAP) solution. This enabled the bank to make key business decisions in real-time.
+                .hub5__item
+                    +powvideo(
+                        "https://www.youtube.com/watch?v=B8A8yR_e6VM&t=2s",
+                        "/public/img/usecases/datagrid/two-video.png",
+                        "",
+                        "Real Time Exposure Management Using Ignite",
+                        "comvideo__txt--white hub5__video"
+                    )
+                    h3.h4.hub5__title JP MorganChase
+                    p.hub5__text.base5__text faced an increasing need to apply transformations to large datasets in real-time. To meet this need, their team selected Ignite to achieve persistence, caching and integrated compute.
+          
+              
+
+
+
+    
+
+   
+    section.native-bottom.container
+        .native-bottom__grid 
+            article.nativebotblock
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-rocket.svg", alt="").nativebotblock__icon
+                    span Ready to Start?
+                p.nativebotblock__text Discover our quick start guide and build your first<br> application in 5-10 minutes
+                a.nativebotblock__link.arrowlink(href="https://ignite.apache.org/docs/latest/", target="_blank") Quick Start Guide
+            article.nativebotblock.nativebotblock--learn
+                h3.h4.nativebotblock__title
+                    img(src="/public/img/features/native-docs.svg", alt="").nativebotblock__icon
+                    span Want to View More Use-Cases?
+                p.nativebotblock__text Read the In-Memory Cache article
+                a.nativebotblock__link.arrowlink(href="https://ignite.apache.org/use-cases/in-memory-cache.html", target="_blank") In-Memory Cache
+
+
+
+
+
+
diff --git a/src/use-cases/index.pug b/src/use-cases/index.pug
new file mode 100644
index 0000000..cff781c
--- /dev/null
+++ b/src/use-cases/index.pug
@@ -0,0 +1,102 @@
+extend ../_components/base.pug
+
+block pagetitle
+    | Use Cases 
+
+block css 
+    link(rel="stylesheet", href="../css/usecases.css")
+
+
+
+block main
+    - global.pageHref = "usecases.html"
+    - config.hdrClassName = "hdr__blue"
+    include ../_components/header.pug
+    
+    section.innerhero
+        .container.innerhero__cont
+            .innerhero__main
+                .innerhero__pre.pb-3 Apache Ignite
+                h1.h1.innerhero__h1 Use Cases
+                .innerhero__descr.pt-2.h5.
+                    With plenty of capabilities, Apache Ignite finds its route in many use-cases, ranging from a basic distributed cache, distributed database for hybrid transactional/analytical processing, to a sophisticated digital integration hub.
+            img.innerhero__pic.innerhero__pic--usecase(src="/public/img/usecases/head-bg.svg", alt="Apache Ignite Use Cases")
+
+
+
+    section.usecase2#usecase2
+        .container 
+            p.blockcapslead Widespread use-cases
+            header.blockheader.flexi
+                h2.h4.blockheader__left Application Acceleration<br> And Scale Out
+                .blockheader__right.fz20
+                    p Accelerate your existing applications by 100x or more by using in-memory computing. There are several deployment options.
+            .usecase2__wrap
+                .usecasecard.cardsimple
+                    h4.cardsimple__title In-Memory Cache
+                    .cardsimple__text Cache data with extra capabilities: query with SQL and update atomically by using ACID transactions.
+                    .cardsimple__bottom
+                        a(href="/use-cases/in-memory-cache.html").cardsimple__button.button.button--shadow Learn More
+                .usecasecard.cardsimple
+                    h4.cardsimple__title In-Memory Data Grid
+                    .cardsimple__text Use an advanced read-through / write-through cache that is deployed on top of one or several databases.
+                    .cardsimple__bottom
+                        a(href="/use-cases/in-memory-data-grid.html").cardsimple__button.button.button--shadow Learn More
+                .usecasecard.cardsimple
+                    h4.cardsimple__title In-Memory Database
+                    .cardsimple__text Use Apache Ignite as an ultra-fast and horizontally scalable in-memory database.
+                    .cardsimple__bottom
+                        a(href="/use-cases/in-memory-database.html").cardsimple__button.button.button--shadow Learn More
+                .usecasecard.cardsimple
+                    h4.cardsimple__title High-Performance Computing
+                    .cardsimple__text.cardsimple__text--long Execute kilobyte-size custom code over petabytes of data. Turn your Ignite database into a distributed supercomputer for low-latency calculations, complex analytics, and machine learning.
+                    .cardsimple__bottom
+                        a(href="/use-cases/high-performance-computing.html").cardsimple__button.button.button--shadow Learn More
+    // /.usecase2
+
+
+
+
+    section.usecase3
+        .container
+            .blockheader.usecase3__block.flexi
+                h2.h4.blockheader__left Distributed Database For HTAP Workloads
+                .blockheader__right.fz20
+                    p Build modern applications that support transactional and analytical workloads by using Ignite as&nbsp;a&nbsp;database that scales beyond available memory capacity. 
+                    p Ignite allocates memory for your hot data and goes to disk whenever applications query cold records.
+            .blockheader.usecase3__block.flexi
+                h2.h4.blockheader__left Digital Integration Hub
+                .blockheader__right.fz20
+                    p Аn advanced platform architecture that aggregates multiple back-end systems and databases into a low-latency and shared data store.
+                    a(href="/use-cases/digital-integration-hub.html").blockheader__button.button.button--shadow Learn More
+    // /.usecase3
+
+
+
+    section.usecase4
+        .container
+            p.blockcapslead Other use-cases
+            .usecase4__wrap
+
+                .usecasecard.cardsimple
+                    h4.cardsimple__title Key-Value Store
+                    .cardsimple__text Access the cluster with key-value requests or take advantage of APIs available exclusively in Ignite.
+                    .cardsimple__bottom
+                        a(href="/use-cases/key-value-store.html").cardsimple__button.button Learn More
+                .usecasecard.cardsimple
+                    h4.cardsimple__title Apache Spark Performance Acceleration
+                    .cardsimple__text Accelerate the performance of Apache Spark® by keeping data in a shared Apache Ignite® in-memory cluster.
+                    .cardsimple__bottom
+                        a(href="/use-cases/spark-acceleration.html").cardsimple__button.button Learn More
+                .usecasecard.cardsimple
+                    h4.cardsimple__title Apache Hadoop Performance Acceleration
+                    .cardsimple__text Get real-time analytics across Apache™ Hadoop® operational and&nbsp;historical data silos.
+                    .cardsimple__bottom
+                        a(href="/use-cases/hadoop-acceleration.html").cardsimple__button.button Learn More
+    // /.usecase4
+
+
+            
+
+
+                
\ No newline at end of file
diff --git a/src/use-cases/provenusecases.pug b/src/use-cases/provenusecases.pug
new file mode 100644
index 0000000..67f5356
--- /dev/null
+++ b/src/use-cases/provenusecases.pug
@@ -0,0 +1,80 @@
+extend ../_components/base.pug
+
+block pagetitle
+    | Powered By 
+
+block css 
+    link(rel="stylesheet", href="../css/usecases.css")
+
+
+block main
+    - global.pageHref = "use-cases/provenusecases.html"
+    - config.hdrClassName = "hdr__grey"
+    include ../_components/header.pug
+
+
+    section.grayhero 
+        .container 
+            h1.grayhero__h1.h1.
+                Apache Ignite Is Chosen
+                By&nbsp;Leading Companies
+                Across The World
+            .grayhero__logos.flexi
+                span.grayhero__logo
+                    img(src="/public/img/poweredby/logos/microsoft.svg", alt="") 
+                span.grayhero__logo
+                    img(src="/public/img/poweredby/logos/netflix.svg", alt="") 
+                span.grayhero__logo
+                    img(src="/public/img/poweredby/logos/apple.png", alt="") 
+                span.grayhero__logo
+                    img(src="/public/img/poweredby/logos/dreamworks.png", alt="") 
+                span.grayhero__logo
+                    img(src="/public/img/poweredby/logos/yahoo.svg", alt="") 
+                span.grayhero__logo
+                    img(src="/public/img/poweredby/logos/bloomberg.svg", alt="")
+                span.grayhero__logo
+                    img(src="/public/img/poweredby/logos/sberbank.svg", alt="") 
+                span.grayhero__logo
+                    img(src="/public/img/poweredby/logos/paypal.svg", alt="") 
+                span.grayhero__logo
+                    img(src="/public/img/poweredby/logos/banco-do-brasil.svg", alt="")
+    // /.grayhero
+
+
+
+    section.powered2.container
+        h2.h4 Explore Featured Stories
+        p.powered2__descr.h5.pt-2 You can find dozens of&nbsp;Apache Ignite case-studies across various industries:
+        .powered2__grid.pt-5
+            .powered2item eCommerce
+            .powered2item Pharma & Healthcare
+            .powered2item Financial Services
+            .powered2item Banking
+            .powered2item Internet of things
+            .powered2item Logistics & Transportation
+            .powered2item Retail
+            .powered2item Leisure & Hospitality
+            .powered2item Entertainment
+            .powered2item Defense
+            .powered2item Gaming
+            .powered2item Biotech
+            .powered2item Software & SaaS
+            .powered2item Telecommunications
+    // /.powered2
+
+    section.poweredbanner.container
+        .poweredbanner__bg.flexi
+            .poweredbanner__left.flexi 
+                h3.h4 Do&nbsp;you have an&nbsp;Apache Ignite use-case to&nbsp;share?
+                p.pt-1.fz20 Reach&nbsp;us out on&nbsp;the Ignite dev list, and we&rsquo;ll add it&nbsp;to&nbsp;this page
+            .poweredbanner__right
+                a.button(href="#").poweredbanner__button Lets go
+    // /.poweredbanner
+
+
+    include ../_components/powered-videos.pug
+
+
+
+
+